import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
import os
import glob
pos = open("positive_emoji_v2.csv").read().split(",")
neg = open("negative_emoji_v2.csv").read().split(",")
print("Positive emoji: {}\n\nNegative emoji: {}\n".format("".join(pos), "".join(neg)))
files = sorted(glob.glob("egypt tweets/egypt_tweets*.csv"))
print(files)
pd.set_option('display.max_colwidth', -1)
Positive emoji: 👊🚂🚄🌝☺️🌟👚⛄♔🍼💞🎻🍬✨🍀☺😙🚤🎽🎡🏠💍✏🌛💎🌾🎠📣🌑🐰🍺😛👍🙆🚗🌚🌉👔🍎📝💄💻:D✎🎁💰📹😃😝🏨💒🌼💑🤣🌻😚🙋🌽🍷♨💫♛🍓🏃🚀🌞😇💐📺🐏🍚😅🎆🐥🙏💝🐪🍭🐶😁▲😺🏂😏🍟🍉🏈🏤🎊🎉🌴😻🆗❥🍧👠🌲🍩💙🏄🐵☕⚫🏊☼🎂🐈🐎🏰💟💛🌸📶🐱🍌:)🎶🎿🐡😋👗✒🙌😮🙂🌱💃🐔🍔💌💼🌔🐋👨🚓💖✈👰🔝🍦🎼👭🍒🏀🍑🔅🎈💗🐕💬❄💪🍃🐫🎷🎇👖♬📚🎸✔🔭👤🎎☆🚼🍴👕💓🌹☀🌈😆💜🗻💚🔆🐤👯🌺🌰✿👑🥧🍨🌿🎀😊🎒🍸💘😘♩😂👸❅🎵🌊📢🔊👣🍊💕😸👫⚓🌌🍂😉🌕🍇😜👜🍰🌒✊🎃🍪😌🎧🐇☻🌇⛵🐧🍆♥👛🚢🎓♪🐣🐬🎩👶🔔💡♕🚴🌳🍁🐦🚲👢🤗♡😀🍜🌷🚵🚌😗🗽📷🙊💇🎪👟🌜🏉🎤❀💳👡👋🆒👄👅👌🐠🎮🏩✌😄🎥🎬⛳🚿🌘🏡🍵🌠🏁🎅🚣✓🍅🌅🍕🍹✅🐩🆓💋😍🎺🤩🎄🎾😎❤🏆🗼🚨🎹🍍 Negative emoji: 👿😟↪🔨💣�📍💥🐸💉👺🐍😵🤐🚛🌵😦😧🙈☹👾:(😶😞🌚❗☠🐜😢😏😒😓🔙🙁📌🐴😰✂👮🔪😤😔🥀✋😥😣🙇🐁😭📵😑😴⛔🔞👐😿😲🙎😷⏩⚠😯⌛🔱😡😱😕😾🔓😪🚑💔🐲😐😖😳😩😬🚫❓🌋🙍💀😼🐛🤔😫🆘😨😠👎 ['egypt tweets/egypt_tweets_2010.csv', 'egypt tweets/egypt_tweets_2011.csv', 'egypt tweets/egypt_tweets_2012.csv', 'egypt tweets/egypt_tweets_2013.csv', 'egypt tweets/egypt_tweets_2014.csv', 'egypt tweets/egypt_tweets_2015.csv', 'egypt tweets/egypt_tweets_2016.csv', 'egypt tweets/egypt_tweets_2017.csv', 'egypt tweets/egypt_tweets_2018.csv', 'egypt tweets/egypt_tweets_2019.csv']
%%time
useful_cols = ["username", "fullname", "tweet_url", "timestamp", "text"]
for f in files:
df = pd.read_csv(f, sep=";")
df["tweet_url"] = "https://twitter.com" + df["tweet_url"]
hashtags = {}
feels = np.zeros(len(df))
for i in range(len(df)):
text = df.text[i]
html = df.html[i]
if type(text) != str:
continue
feel = sum([e in html for e in pos]) - sum([e in html for e in neg])
feels[i] = feel
for word in text.split():
if word[0] == "#":
if word not in hashtags:
hashtags[word] = 1
else:
hashtags[word] += 1
hashtags_by_popularity = sorted(hashtags.items(), key=lambda kv: kv[1], reverse=True)
print("{} - {} tweets".format(f, len(df)))
result_df = pd.DataFrame(hashtags_by_popularity, columns=["Hashtag", "Count"])
display(result_df[:20])
df["feels"] = feels
femin = df[df.text.str.contains(r"(?i)femin|(?i)haras ", na=False)]
display(femin)
print("Positive feels: {}. Negative feels: {}".format(
sum(feels > 0),
sum(feels < 0)
))
print("Positive tweets")
display(df[df.feels > 0])
print("Negative tweets")
display(df[df.feels < 0])
egypt tweets/egypt_tweets_2010.csv - 1074 tweets
Hashtag | Count | |
---|---|---|
0 | #Jobs | 11 |
1 | #Job | 11 |
2 | #TweetMyJOBS | 11 |
3 | #Egypt | 8 |
4 | #IOETI | 5 |
5 | # | 3 |
6 | #fb | 3 |
7 | #Luxor | 2 |
8 | #AmenazoComoBrozo | 2 |
9 | #TwitteandoEnLos90s | 2 |
10 | #84 | 1 |
11 | #cairotoluxor | 1 |
12 | #Ioeti | 1 |
13 | #xfactor | 1 |
14 | #Egypt? | 1 |
15 | #fffflickr | 1 |
16 | #egypt | 1 |
17 | #TwitterOff | 1 |
18 | #FacebookOff | 1 |
19 | #5538886992 | 1 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels |
---|
Positive feels: 12. Negative feels: 0 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
54 | Mo7amedFouad | Mohamed Fouad | 19411566 | 20092390651985920 | https://twitter.com/Mo7amedFouad/status/20092390651985920 | 2010-12-29 12:22:53 | 1293625373 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | It is snowing in Assiut :D http://yfrog.com/h6szxxj | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">It is snowing in Assiut :D http://yfrog.com/h6szxxj</p> | 1.0 |
114 | Mo7amedFouad | Mohamed Fouad | 19411566 | 18801201197875200 | https://twitter.com/Mo7amedFouad/status/18801201197875200 | 2010-12-25 22:52:10 | 1293317530 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Cairo.... Kelaket .. Mosh faker kam mara :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">Cairo.... Kelaket .. Mosh faker kam mara :D</p> | 1.0 |
157 | sp990 | Sandeep Paruchuri | 15237536 | 18136411924332544 | https://twitter.com/sp990/status/18136411924332544 | 2010-12-24 02:50:32 | 1293159032 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @lowgarage my parents and sister :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="19832484" dir="ltr" href="/lowgarage"><s>@</s><b>lowgarage</b></a> my parents and sister :)</p> | 1.0 |
174 | sp990 | Sandeep Paruchuri | 15237536 | 17864555564638208 | https://twitter.com/sp990/status/17864555564638208 | 2010-12-23 08:50:16 | 1293094216 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ahw glad to hear someone is reading them :) hopefully see you soon! | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="9808242" dir="ltr" href="/ahw"><s>@</s><b>ahw</b></a> glad to hear someone is reading them :) hopefully see you soon!</p> | 1.0 |
190 | sp990 | Sandeep Paruchuri | 15237536 | 17665087430991872 | https://twitter.com/sp990/status/17665087430991872 | 2010-12-22 19:37:39 | 1293046659 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sharadsk owned. +1 for android -using prepaid vodafone on 3g right now :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2634287101" dir="ltr" href="/SharadSk"><s>@</s><b>sharadsk</b></a> owned. +1 for android -using prepaid vodafone on 3g right now :)</p> | 1.0 |
533 | Mo7amedFouad | Mohamed Fouad | 19411566 | 9824824230674432 | https://twitter.com/Mo7amedFouad/status/9824824230674432 | 2010-12-01 04:23:15 | 1291177395 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 5 days of work, fun and relax :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">5 days of work, fun and relax :)</p> | 1.0 |
812 | Mo7amedFouad | Mohamed Fouad | 19411566 | 4540729514790912 | https://twitter.com/Mo7amedFouad/status/4540729514790912 | 2010-11-16 14:26:08 | 1289917568 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | PES at Glateria Roma :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">PES at Glateria Roma :D</p> | 1.0 |
874 | Mo7amedFouad | Mohamed Fouad | 19411566 | 2933124761657345 | https://twitter.com/Mo7amedFouad/status/2933124761657345 | 2010-11-12 03:58:06 | 1289534286 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | In the way ro cairo :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">In the way ro cairo :D</p> | 1.0 |
951 | Azziskandar | Azlan iskandar | 66763297 | 27843640319 | https://twitter.com/Azziskandar/status/27843640319 | 2010-10-19 15:28:25 | 1287502105 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | RT @NikolaHassan: @Azziskandar haha yes CHAMP. @yiulin's champ :) wowzas u bz w lots of tourneys... We bz w lots ... http://tmi.me/2ohw8 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">RT <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="45290969" dir="ltr" href="/nikolahassan"><s>@</s><b>NikolaHassan</b></a>: <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="66763297" dir="ltr" href="/Azziskandar"><s>@</s><b>Azziskandar</b></a> haha yes CHAMP. <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="41062783" dir="ltr" href="/yiulin"><s>@</s><b>yiulin</b></a>'s champ :) wowzas u bz w lots of tourneys... We bz w lots ... http://tmi.me/2ohw8</p> | 1.0 |
991 | yumipou | yumipou | 13249452 | 26856882692 | https://twitter.com/yumipou/status/26856882692 | 2010-10-09 16:23:49 | 1286641429 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 遺跡から帰って来ました。カッコよかったー “@kanabunsan: 見れました~!楽しそうで羨ましい~♪ RT @yumipou: ナイル川クルーズ船の様子。回線が弱いのでアップできるかな? http://flic.kr/p/8HzsZd” | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">遺跡から帰って来ました。カッコよかったー “@kanabunsan: 見れました~!楽しそうで羨ましい~♪ RT <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="13249452" dir="ltr" href="/yumipou"><s>@</s><b>yumipou</b></a>: ナイル川クルーズ船の様子。回線が弱いのでアップできるかな? http://flic.kr/p/8HzsZd”</p> | 1.0 |
1059 | sakana96 | yumi | 144647577 | 25391657015 | https://twitter.com/sakana96/status/25391657015 | 2010-09-24 10:21:32 | 1285323692 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 大冒険です♪(v^_^)vRT @katahaba3: @sakana96 なにしに行ってるんすか?(笑) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">大冒険です♪(v^_^)vRT <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="152655705" dir="ltr" href="/katahaba3"><s>@</s><b>katahaba3</b></a>: <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="144647577" dir="ltr" href="/sakana96"><s>@</s><b>sakana96</b></a> なにしに行ってるんすか?(笑)</p> | 1.0 |
1061 | galihpepe | galihpermanaputra | 113615170 | 25350397276 | https://twitter.com/galihpepe/status/25350397276 | 2010-09-23 23:01:03 | 1285282863 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | selamat pagi semesta :) (@ King Tut's Tomb) http://4sq.com/9BLtxr | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">selamat pagi semesta :) (@ King Tut's Tomb) http://4sq.com/9BLtxr</p> | 1.0 |
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels |
---|
egypt tweets/egypt_tweets_2011.csv - 26390 tweets
Hashtag | Count | |
---|---|---|
0 | #Egypt | 2056 |
1 | #Jan25 | 1945 |
2 | #assiut | 95 |
3 | #noscaf | 79 |
4 | #jan25 | 65 |
5 | #egypt | 63 |
6 | #fb | 45 |
7 | #Egypt's | 34 |
8 | #tahrir | 29 |
9 | #SLnight | 23 |
10 | #qik | 23 |
11 | #3skrny | 23 |
12 | #sohag | 22 |
13 | #Tahrir | 21 |
14 | #benisuef | 14 |
15 | #gensaku_ha_eromanga | 13 |
16 | #Egypt: | 13 |
17 | #minia | 12 |
18 | #KAERITAI | 12 |
19 | #fuckscaf | 11 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels |
---|
Positive feels: 285. Negative feels: 39 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4 | ariffismail | عارف اسماعيل | 67850923 | 153231697742270467 | https://twitter.com/ariffismail/status/153231697742270467 | 2011-12-31 21:50:58 | 1325368258 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Currently in Luxor,Egypt! Naisss :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Currently in Luxor,Egypt! Naisss :D</p> | 1.0 |
24 | ariffismail | عارف اسماعيل | 67850923 | 153231697742270467 | https://twitter.com/ariffismail/status/153231697742270467 | 2011-12-31 21:50:58 | 1325368258 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Currently in Luxor,Egypt! Naisss :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Currently in Luxor,Egypt! Naisss :D</p> | 1.0 |
109 | Alaa_Soliman | A'laa Soliman | 247097206 | 153057887827144704 | https://twitter.com/Alaa_Soliman/status/153057887827144704 | 2011-12-31 10:20:18 | 1325326818 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ZokaAAbdElrazek "shaaah2aaa" entaaaaa geeeet ya Ramdaaan :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="445770075" dir="ltr" href="/ZokaAAbdElrazek"><s>@</s><b>ZokaAAbdElrazek</b></a> "shaaah2aaa" entaaaaa geeeet ya Ramdaaan :)</p> | 1.0 |
131 | Amir_Rafla | Amir Rafla | 103968941 | 152991880219598848 | https://twitter.com/Amir_Rafla/status/152991880219598848 | 2011-12-31 05:58:01 | 1325311081 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Looking forward for a prosperous 2012 with lots of challenges ahead :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Looking forward for a prosperous 2012 with lots of challenges ahead :)</p> | 1.0 |
132 | Amir_Rafla | Amir Rafla | 103968941 | 152991802918580224 | https://twitter.com/Amir_Rafla/status/152991802918580224 | 2011-12-31 05:57:42 | 1325311062 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Despite everything still believe 2011 was a great year: Lots of broken barriers, full of Hope in the future. :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Despite everything still believe 2011 was a great year: Lots of broken barriers, full of Hope in the future. :)</p> | 1.0 |
165 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 152846600283234305 | https://twitter.com/ProfAhmed65/status/152846600283234305 | 2011-12-30 20:20:43 | 1325276443 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @alaanourfr اكونت وهمي ولا بجد :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="451746211" dir="ltr" href="/alaanourfr"><s>@</s><b>alaanourfr</b></a> اكونت وهمي ولا بجد :)</p> | 1.0 |
202 | mostafasaad91 | Mostafa Saad | 240313798 | 152788687669825537 | https://twitter.com/mostafasaad91/status/152788687669825537 | 2011-12-30 16:30:36 | 1325262636 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @HaysamElMasrY والله زهقت يا هيثم قلت إفك حبتين\nهزاكر بع الصلاة و خلاص :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="104147896" dir="ltr" href="/HaysamElMasrY"><s>@</s><b>HaysamElMasrY</b></a> والله زهقت يا هيثم قلت إفك حبتين\nهزاكر بع الصلاة و خلاص :)</p> | 1.0 |
240 | JrAttwa | ATTWA | 134974988 | 152709569418768386 | https://twitter.com/JrAttwa/status/152709569418768386 | 2011-12-30 11:16:13 | 1325243773 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @_Moe_Ibrahim_ hahahahaha la ya man lastoo antaaaaa, asl el taree2 5atr we'll donia btmatr :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="238631164" dir="ltr" href="/_Moe_Ibrahim_"><s>@</s><b>_Moe_Ibrahim_</b></a> hahahahaha la ya man lastoo antaaaaa, asl el taree2 5atr we'll donia btmatr :D</p> | 1.0 |
436 | chikamarukuuun | 盗撮犯 | 79779803 | 152334731617386496 | https://twitter.com/chikamarukuuun/status/152334731617386496 | 2011-12-29 10:26:44 | 1325154404 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | ジョジョーッ!俺は人間をやめるニャ♪ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">ジョジョーッ!俺は人間をやめるニャ♪</p> | 1.0 |
457 | angelosays | ☮ Angelo Plessas ☍ | 7706172 | 152309822644170752 | https://twitter.com/angelosays/status/152309822644170752 | 2011-12-29 08:47:46 | 1325148466 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Luxor-ized | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Luxor-ized<img alt="👨" aria-label="Emoji: Man" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f468.png" title="Man"/></p> | 1.0 |
484 | _Hiro15 | '#Hiro. | 247328353 | 152270725498150912 | https://twitter.com/_Hiro15/status/152270725498150912 | 2011-12-29 06:12:24 | 1325139144 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Florindaaa_x gefeliciteerd schat | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="nl">@Florindaaa_x gefeliciteerd schat <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
485 | _Hiro15 | '#Hiro. | 247328353 | 152270594065444865 | https://twitter.com/_Hiro15/status/152270594065444865 | 2011-12-29 06:11:53 | 1325139113 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Julia__015 gefeliciteerd | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="nl">@Julia__015 gefeliciteerd <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
503 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 152139721135505408 | https://twitter.com/ProfAhmed65/status/152139721135505408 | 2011-12-28 21:31:50 | 1325107910 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ELMorshed1 يااااواااااد يامؤمن :)) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="840648110" dir="ltr" href="/elmorshed1"><s>@</s><b>ELMorshed1</b></a> يااااواااااد يامؤمن :))</p> | 1.0 |
558 | _Hiro15 | '#Hiro. | 247328353 | 152104825704820736 | https://twitter.com/_Hiro15/status/152104825704820736 | 2011-12-28 19:13:11 | 1325099591 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @RUBBB_ wanneer zou je naar delfr komen | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="nl"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="257842451" dir="ltr" href="/RUBBB_"><s>@</s><b>RUBBB_</b></a> wanneer zou je naar delfr komen <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
589 | _Hiro15 | '#Hiro. | 247328353 | 152100305901846530 | https://twitter.com/_Hiro15/status/152100305901846530 | 2011-12-28 18:55:13 | 1325098513 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | “@arontjes: "@Captain015: Precies 250 followers :)" coole boy :p”weet ik toch | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">“@arontjes: "<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="976195406" dir="ltr" href="/captain015"><s>@</s><b>Captain015</b></a>: Precies 250 followers :)" coole boy :p”weet ik toch</p> | 1.0 |
594 | _Hiro15 | '#Hiro. | 247328353 | 152100074401435649 | https://twitter.com/_Hiro15/status/152100074401435649 | 2011-12-28 18:54:18 | 1325098458 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Precies 250 followers :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Precies 250 followers :)</p> | 1.0 |
711 | _Hiro15 | '#Hiro. | 247328353 | 151993637515968512 | https://twitter.com/_Hiro15/status/151993637515968512 | 2011-12-28 11:51:21 | 1325073081 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Charoooo_x egypte :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="fr">@Charoooo_x egypte :)</p> | 1.0 |
741 | mostafasaad91 | Mostafa Saad | 240313798 | 151943506942885888 | https://twitter.com/mostafasaad91/status/151943506942885888 | 2011-12-28 08:32:09 | 1325061129 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MAIEPANAGA تسلميلي\nطيب وصلتي لحاجة؟؟؟ :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="210749616" dir="ltr" href="/MAIEPANAGA"><s>@</s><b>MAIEPANAGA</b></a> تسلميلي\nطيب وصلتي لحاجة؟؟؟ :)</p> | 1.0 |
815 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 151758711491264512 | https://twitter.com/ProfAhmed65/status/151758711491264512 | 2011-12-27 20:17:51 | 1325017071 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @FouadLeBatrawi هو حماده نزل جدول :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@FouadLeBatrawi هو حماده نزل جدول :)</p> | 1.0 |
816 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 151756910436171776 | https://twitter.com/ProfAhmed65/status/151756910436171776 | 2011-12-27 20:10:41 | 1325016641 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ayaabdullah اعملي ينسووون :)) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="94379247" dir="ltr" href="/ayaabdullah"><s>@</s><b>ayaabdullah</b></a> اعملي ينسووون :))</p> | 1.0 |
908 | Kareem_Tawadros | Kareem Tawadros | 41808998 | 151583010897137664 | https://twitter.com/Kareem_Tawadros/status/151583010897137664 | 2011-12-27 08:39:40 | 1324975180 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MariemMagdy :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2556963852" dir="ltr" href="/MariemMagdy"><s>@</s><b>MariemMagdy</b></a> :D</p> | 1.0 |
1026 | Hasanbn6iflah | حسن بن طفله | 226635250 | 151225861272637440 | https://twitter.com/Hasanbn6iflah/status/151225861272637440 | 2011-12-26 09:00:29 | 1324890029 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | طريق القاهرة - الفيوم \nمقفول من اهالي عزبة عبدالعظيم ، يريدون غاز انابيب ..\nتوافق هذا مع وصول مرشح الرئاسة حازم ابو اسماعيل .. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">طريق القاهرة - الفيوم \nمقفول من اهالي عزبة عبدالعظيم ، يريدون غاز انابيب ..\nتوافق هذا مع وصول مرشح الرئاسة حازم ابو اسماعيل <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/> ..</p> | 1.0 |
1027 | Hasanbn6iflah | حسن بن طفله | 226635250 | 151223747314061312 | https://twitter.com/Hasanbn6iflah/status/151223747314061312 | 2011-12-26 08:52:05 | 1324889525 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @aalomaire \nبالتوفيق | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="240918696" dir="ltr" href="/aalomaire"><s>@</s><b>aalomaire</b></a> \nبالتوفيق <img alt="🌹" aria-label="Emoji: Rose" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f339.png" title="Rose"/></p> | 1.0 |
1141 | msmakhlouf | Mohammed Makhlouf | 61301205 | 150914450491326464 | https://twitter.com/msmakhlouf/status/150914450491326464 | 2011-12-25 12:23:03 | 1324815783 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Coffee :) (@ Cilantro Assiut University) http://4sq.com/vIB6Fy | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Coffee :) (@ Cilantro Assiut University) <a class="twitter-timeline-link" data-expanded-url="http://4sq.com/vIB6Fy" dir="ltr" href="http://t.co/V0EWe8qS" rel="nofollow noopener" target="_blank" title="http://4sq.com/vIB6Fy"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">4sq.com/vIB6Fy</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
1270 | Hasanbn6iflah | حسن بن طفله | 226635250 | 150581467016200192 | https://twitter.com/Hasanbn6iflah/status/150581467016200192 | 2011-12-24 14:19:54 | 1324736394 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | مساكم الله بالخير \n\nوأخص إخواني مفاتيح السعدون \n\nرحلة جميلة اليوم قضيتها بين الجامعة وبحيرة قارون ..\nبنزل لكم صور بعد شوي .. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مساكم الله بالخير <img alt="🌹" aria-label="Emoji: Rose" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f339.png" title="Rose"/>\n\nوأخص إخواني مفاتيح السعدون <img alt="🌹" aria-label="Emoji: Rose" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f339.png" title="Rose"/>\n\nرحلة جميلة اليوم قضيتها بين الجامعة وبحيرة قارون ..\nبنزل لكم صور بعد شوي ..</p> | 1.0 |
1352 | moumeneng | Moumen Raafat | 50140699 | 150339096173219840 | https://twitter.com/moumeneng/status/150339096173219840 | 2011-12-23 22:16:48 | 1324678608 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | “#BroTip : Rules for texting a girl... \n1. Dont take 40 minutes to reply 2. use good grammar 3. Ask questions 4. Use the :) face.” | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">“<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/BroTip?src=hash"><s>#</s><b>BroTip</b></a> : Rules for texting a girl... \n1. Dont take 40 minutes to reply 2. use good grammar 3. Ask questions 4. Use the :) face.”</p> | 1.0 |
1358 | Hasanbn6iflah | حسن بن طفله | 226635250 | 150299802037522432 | https://twitter.com/Hasanbn6iflah/status/150299802037522432 | 2011-12-23 19:40:39 | 1324669239 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @salemalhamar @botaleb1975 \nماعندهم العجيري هني عندهم الحج حنفي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="294272565" dir="ltr" href="/salemalhamar"><s>@</s><b>salemalhamar</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="246615111" dir="ltr" href="/botaleb1975"><s>@</s><b>botaleb1975</b></a> \nماعندهم العجيري هني عندهم الحج حنفي <img alt="😜" aria-label="Emoji: Face with stuck-out tongue and winking eye" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61c.png" title="Face with stuck-out tongue and winking eye"/></p> | 1.0 |
1383 | Hasanbn6iflah | حسن بن طفله | 226635250 | 150252702088175618 | https://twitter.com/Hasanbn6iflah/status/150252702088175618 | 2011-12-23 16:33:30 | 1324658010 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @salemalhamar \nدكتور شرقان ما طخ للحين ؟!؟\n | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="294272565" dir="ltr" href="/salemalhamar"><s>@</s><b>salemalhamar</b></a> \nدكتور شرقان ما طخ للحين ؟!؟\n<img alt="😜" aria-label="Emoji: Face with stuck-out tongue and winking eye" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61c.png" title="Face with stuck-out tongue and winking eye"/><img alt="😝" aria-label="Emoji: Face with stuck-out tongue and tightly-closed eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61d.png" title="Face with stuck-out tongue and tightly-closed eyes"/></p> | 2.0 |
1526 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 149996869802672128 | https://twitter.com/ProfAhmed65/status/149996869802672128 | 2011-12-22 23:36:55 | 1324597015 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الفار في ارض الاستعمااااااار :))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الفار في ارض الاستعمااااااار :)))</p> | 1.0 |
1528 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 149985634449231872 | https://twitter.com/ProfAhmed65/status/149985634449231872 | 2011-12-22 22:52:16 | 1324594336 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MnaEssam فعلا معدل رجولة الستات زاد بعد الثورة...انا شايف اني المجلس لازم يربي شنبو ,ربلها الشنب تعلمها الادب:))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="238918977" dir="ltr" href="/MnaEssam"><s>@</s><b>MnaEssam</b></a> فعلا معدل رجولة الستات زاد بعد الثورة...انا شايف اني المجلس لازم يربي شنبو ,ربلها الشنب تعلمها الادب:)))</p> | 1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
22093 | Mo7amedFouad | Mohamed Fouad | 19411566 | 62204696219226112 | https://twitter.com/Mo7amedFouad/status/62204696219226112 | 2011-04-24 17:22:09 | 1303665729 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @HadeelMostafa hageeb racing one mosh ely howa bet3 3am 7amada :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="776991248" dir="ltr" href="/hadeelmostafa"><s>@</s><b>HadeelMostafa</b></a> hageeb racing one mosh ely howa bet3 3am 7amada :D</p> | 1.0 |
22094 | Mo7amedFouad | Mohamed Fouad | 19411566 | 62204498642345984 | https://twitter.com/Mo7amedFouad/status/62204498642345984 | 2011-04-24 17:21:22 | 1303665682 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Menat_Allah ma ana ma3rftesh feeen el bet3 daah !!! :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="nl"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="250979483" dir="ltr" href="/Menat_AllaH"><s>@</s><b>Menat_Allah</b></a> ma ana ma3rftesh feeen el bet3 daah !!! :D</p> | 1.0 |
22115 | Mo7amedFouad | Mohamed Fouad | 19411566 | 62139763993489409 | https://twitter.com/Mo7amedFouad/status/62139763993489409 | 2011-04-24 13:04:08 | 1303650248 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Home :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Home :D</p> | 1.0 |
22384 | Mo7amedFouad | Mohamed Fouad | 19411566 | 59923149952794624 | https://twitter.com/Mo7amedFouad/status/59923149952794624 | 2011-04-18 10:16:06 | 1303121766 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | At Assiut University giving session on @phonegap with @ahmedhosnycs :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">At Assiut University giving session on <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="15715860" dir="ltr" href="/phonegap"><s>@</s><b>phonegap</b></a> with <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="273669402" dir="ltr" href="/ahmedhosnycs"><s>@</s><b>ahmedhosnycs</b></a> :)</p> | 1.0 |
22609 | abeya22 | abeya elbanhawy | 18798574 | 58167656326500353 | https://twitter.com/abeya22/status/58167656326500353 | 2011-04-13 14:00:24 | 1302703224 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اللهم لا شماتة :))) #shamata | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اللهم لا شماتة :))) <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/shamata?src=hash"><s>#</s><b>shamata</b></a></p> | 1.0 |
22783 | mahagohar | Maha Gohar | 240863994 | 56273001984950272 | https://twitter.com/mahagohar/status/56273001984950272 | 2011-04-08 08:31:43 | 1302251503 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | “@Bardees: Life is about change, sometimes it's painful, sometimes it's beautiful, but most of the time it's both.”\nI love it :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">“<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="21515181" dir="ltr" href="/Bardees"><s>@</s><b>Bardees</b></a>: Life is about change, sometimes it's painful, sometimes it's beautiful, but most of the time it's both.”\nI love it :)</p> | 1.0 |
22941 | Mo7amedFouad | Mohamed Fouad | 19411566 | 54894714289266688 | https://twitter.com/Mo7amedFouad/status/54894714289266688 | 2011-04-04 13:14:54 | 1301922894 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @tarekadel89 @OsamaAlagha @ahmedhosnycs it was great :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="193877724" dir="ltr" href="/tarekadel89"><s>@</s><b>tarekadel89</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="20600108" dir="ltr" href="/OsamaAlagha"><s>@</s><b>OsamaAlagha</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="273669402" dir="ltr" href="/ahmedhosnycs"><s>@</s><b>ahmedhosnycs</b></a> it was great :D</p> | 1.0 |
22942 | Mo7amedFouad | Mohamed Fouad | 19411566 | 54888108159803393 | https://twitter.com/Mo7amedFouad/status/54888108159803393 | 2011-04-04 12:48:39 | 1301921319 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Just finished my session on HTML5 :) #win | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Just finished my session on HTML5 :) <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/win?src=hash"><s>#</s><b>win</b></a></p> | 1.0 |
23068 | Ahmed_Kudo | Ahmed | 166545982 | 53821436934111232 | https://twitter.com/Ahmed_Kudo/status/53821436934111232 | 2011-04-01 14:10:05 | 1301667005 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MasrElNahrdaEG محصلتش عندنا :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2430308652" dir="ltr" href="/MasrElNahrdaEG"><s>@</s><b>MasrElNahrdaEG</b></a> محصلتش عندنا :)</p> | 1.0 |
23190 | Ahmed_Kudo | Ahmed | 166545982 | 53184613878730752 | https://twitter.com/Ahmed_Kudo/status/53184613878730752 | 2011-03-30 19:59:34 | 1301515174 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Bkra agazaaaaaaaaa :))))) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">Bkra agazaaaaaaaaa :)))))</p> | 1.0 |
23559 | chikamarukuuun | 盗撮犯 | 79779803 | 51715729376030720 | https://twitter.com/chikamarukuuun/status/51715729376030720 | 2011-03-26 18:42:45 | 1301164965 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | サラサラヘアーにフケのアクセントをプラスして女子力アップ☆ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">サラサラヘアーにフケのアクセントをプラスして女子力アップ☆</p> | 1.0 |
23623 | chikamarukuuun | 盗撮犯 | 79779803 | 51249965112111105 | https://twitter.com/chikamarukuuun/status/51249965112111105 | 2011-03-25 11:51:58 | 1301053918 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | じゃあここは?ベッケンバウア~♪とかやってろよ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">じゃあここは?ベッケンバウア~♪とかやってろよ</p> | 1.0 |
23832 | chikamarukuuun | 盗撮犯 | 79779803 | 50221813237694464 | https://twitter.com/chikamarukuuun/status/50221813237694464 | 2011-03-22 15:46:28 | 1300808788 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | タナカ(ゼイビアックス()だけを タナカ(ゼイビアックス()だけを 好きでいたよ タナカ(ゼイビアックス()だけと タナカ(ゼイビアックス()だけと ガラる単語だよ♪ライブ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">タナカ(ゼイビアックス()だけを タナカ(ゼイビアックス()だけを 好きでいたよ タナカ(ゼイビアックス()だけと タナカ(ゼイビアックス()だけと ガラる単語だよ♪ライブ</p> | 1.0 |
23924 | chikamarukuuun | 盗撮犯 | 79779803 | 49701750977994752 | https://twitter.com/chikamarukuuun/status/49701750977994752 | 2011-03-21 05:19:55 | 1300684795 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | テッテケテ~!英一さんの秘密に迫るニャ♪ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">テッテケテ~!英一さんの秘密に迫るニャ♪</p> | 1.0 |
24049 | Ahmed_Kudo | Ahmed | 166545982 | 49087296619823104 | https://twitter.com/Ahmed_Kudo/status/49087296619823104 | 2011-03-19 12:38:18 | 1300538298 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Rana_Elnahal @dostornews انا في المنيا ومفيش غياب ولا حاجة والدنيا زي الفل متصدقيش :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@Rana_Elnahal <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="137718974" dir="ltr" href="/DostorNews"><s>@</s><b>dostornews</b></a> انا في المنيا ومفيش غياب ولا حاجة والدنيا زي الفل متصدقيش :)</p> | 1.0 |
24050 | Ahmed_Kudo | Ahmed | 166545982 | 49086656950702080 | https://twitter.com/Ahmed_Kudo/status/49086656950702080 | 2011-03-19 12:35:45 | 1300538145 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @El_GindY احلي حاجة انا رحت الساعة ٨ الصبح وخلصت في دقايق والدنيا فاااااضية معرفش اي الاخبار حالياً بس اللي واثق فيه ان كل الناس سعيدة :)))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="139770999" dir="ltr" href="/El_GindY"><s>@</s><b>El_GindY</b></a> احلي حاجة انا رحت الساعة ٨ الصبح وخلصت في دقايق والدنيا فاااااضية معرفش اي الاخبار حالياً بس اللي واثق فيه ان كل الناس سعيدة :))))</p> | 1.0 |
24051 | Mo7amedFouad | Mohamed Fouad | 19411566 | 49064743247413248 | https://twitter.com/Mo7amedFouad/status/49064743247413248 | 2011-03-19 11:08:41 | 1300532921 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Ree_MoU @hadeelmostafa @menat_allah @zenabhafez @ashouric bas keda men 3eny :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1146748777" dir="ltr" href="/Ree_MoU"><s>@</s><b>Ree_MoU</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="776991248" dir="ltr" href="/hadeelmostafa"><s>@</s><b>hadeelmostafa</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="250979483" dir="ltr" href="/Menat_AllaH"><s>@</s><b>menat_allah</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="73558411" dir="ltr" href="/ZenabHafez"><s>@</s><b>zenabhafez</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="808689780" dir="ltr" href="/Ashouric"><s>@</s><b>ashouric</b></a> bas keda men 3eny :D</p> | 1.0 |
24892 | chikamarukuuun | 盗撮犯 | 79779803 | 45020024657805313 | https://twitter.com/chikamarukuuun/status/45020024657805313 | 2011-03-08 07:16:24 | 1299568584 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @____Pico 公園デートとかしたいですね☆ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2854653974" dir="ltr" href="/____PICO"><s>@</s><b>____Pico</b></a> 公園デートとかしたいですね☆</p> | 1.0 |
24976 | chikamarukuuun | 盗撮犯 | 79779803 | 44595840026808321 | https://twitter.com/chikamarukuuun/status/44595840026808321 | 2011-03-07 03:10:51 | 1299467451 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | イサームさーんだよー♪ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">イサームさーんだよー♪</p> | 1.0 |
25040 | Mo7amedFouad | Mohamed Fouad | 19411566 | 44126310821412865 | https://twitter.com/Mo7amedFouad/status/44126310821412865 | 2011-03-05 20:05:06 | 1299355506 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Estimation time :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Estimation time :)</p> | 1.0 |
25056 | chikamarukuuun | 盗撮犯 | 79779803 | 44028322384052224 | https://twitter.com/chikamarukuuun/status/44028322384052224 | 2011-03-05 13:35:44 | 1299332144 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 魔法少女まどか☆クンニ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">魔法少女まどか☆クンニ</p> | 1.0 |
25058 | chikamarukuuun | 盗撮犯 | 79779803 | 44027112558039040 | https://twitter.com/chikamarukuuun/status/44027112558039040 | 2011-03-05 13:30:56 | 1299331856 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | はかせるオムツ♪クンニーマン♪ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">はかせるオムツ♪クンニーマン♪</p> | 1.0 |
25180 | Mo7amedFouad | Mohamed Fouad | 19411566 | 43462722993659905 | https://twitter.com/Mo7amedFouad/status/43462722993659905 | 2011-03-04 00:08:15 | 1299197295 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Clean quite city #Assiut :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Clean quite city <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Assiut?src=hash"><s>#</s><b>Assiut</b></a> :)</p> | 1.0 |
25187 | chikamarukuuun | 盗撮犯 | 79779803 | 43448327001481216 | https://twitter.com/chikamarukuuun/status/43448327001481216 | 2011-03-03 23:11:03 | 1299193863 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | レーッツゴーレッツ童貞ジャー♪ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">レーッツゴーレッツ童貞ジャー♪</p> | 1.0 |
25296 | chikamarukuuun | 盗撮犯 | 79779803 | 42839550988521472 | https://twitter.com/chikamarukuuun/status/42839550988521472 | 2011-03-02 06:51:59 | 1299048719 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | 週刊アフラーシステム創刊。毎号付いてくるアフラーパーツを全て集めるとアフラーガンが完成!創刊号は特別価格770円。サテライト♪ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">週刊アフラーシステム創刊。毎号付いてくるアフラーパーツを全て集めるとアフラーガンが完成!創刊号は特別価格770円。サテライト♪</p> | 1.0 |
25437 | Mo7amedFouad | Mohamed Fouad | 19411566 | 41238577014775808 | https://twitter.com/Mo7amedFouad/status/41238577014775808 | 2011-02-25 20:50:17 | 1298667017 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | With the guys playing estimation :) — at Queen http://gowal.la/c/3Ci2w | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">With the guys playing estimation :) — at Queen http://gowal.la/c/3Ci2w</p> | 1.0 |
25756 | Mo7amedFouad | Mohamed Fouad | 19411566 | 34333482226286593 | https://twitter.com/Mo7amedFouad/status/34333482226286593 | 2011-02-06 19:31:54 | 1297020714 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | With the guys playing TAWLA w el sha3b bytzher :D #just4fun http://yfrog.com/h37szyfj | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">With the guys playing TAWLA w el sha3b bytzher :D <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/just4fun?src=hash"><s>#</s><b>just4fun</b></a> http://yfrog.com/h37szyfj</p> | 1.0 |
25807 | Mo7amedFouad | Mohamed Fouad | 19411566 | 33242680561500160 | https://twitter.com/Mo7amedFouad/status/33242680561500160 | 2011-02-03 19:17:27 | 1296760647 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Woow I so missed driving :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Woow I so missed driving :)</p> | 1.0 |
26029 | Mo7amedFouad | Mohamed Fouad | 19411566 | 28161598916919296 | https://twitter.com/Mo7amedFouad/status/28161598916919296 | 2011-01-20 18:47:03 | 1295549223 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Going home after beautiful week at work :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Going home after beautiful week at work :)</p> | 1.0 |
26323 | Mo7amedFouad | Mohamed Fouad | 19411566 | 22037093572153345 | https://twitter.com/Mo7amedFouad/status/22037093572153345 | 2011-01-03 21:10:27 | 1294089027 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Ree_MoU shokran 3ala el mosharka ely mosh 3atfaya 5allls deh :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1146748777" dir="ltr" href="/Ree_MoU"><s>@</s><b>Ree_MoU</b></a> shokran 3ala el mosharka ely mosh 3atfaya 5allls deh :D</p> | 1.0 |
285 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
123 | avenseenafauzi | ανєη ƒαυzι △⃒⃘ | 47399012 | 153012328118497280 | https://twitter.com/avenseenafauzi/status/153012328118497280 | 2011-12-31 07:19:16 | 1325315956 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | Where is the mummy? :( (@ Tomb Of Ramses Iv) http://4sq.com/svFMow | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Where is the mummy? :( (@ Tomb Of Ramses Iv) <a class="twitter-timeline-link" data-expanded-url="http://4sq.com/svFMow" dir="ltr" href="http://t.co/zqT6rZEH" rel="nofollow noopener" target="_blank" title="http://4sq.com/svFMow"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">4sq.com/svFMow</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
349 | _Hiro15 | '#Hiro. | 247328353 | 152417437109850112 | https://twitter.com/_Hiro15/status/152417437109850112 | 2011-12-29 15:55:23 | 1325174123 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @robert_015_ soz :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@robert_015_ soz :(</p> | -1.0 |
584 | mostafasaad91 | Mostafa Saad | 240313798 | 152101280565837825 | https://twitter.com/mostafasaad91/status/152101280565837825 | 2011-12-28 18:59:05 | 1325098745 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MAIEPANAGA مممممم :(\nولا يهمك لو روحتي في مرة تانية ابقي اعرفي plz\nمعلش حتعبك D: | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="210749616" dir="ltr" href="/MAIEPANAGA"><s>@</s><b>MAIEPANAGA</b></a> مممممم :(\nولا يهمك لو روحتي في مرة تانية ابقي اعرفي plz\nمعلش حتعبك D:</p> | -1.0 |
1353 | moumeneng | Moumen Raafat | 50140699 | 150336625631694848 | https://twitter.com/moumeneng/status/150336625631694848 | 2011-12-23 22:06:59 | 1324678019 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Wanna go home. But maybe I can't make it tomorrow. I'm so exhausted :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Wanna go home. But maybe I can't make it tomorrow. I'm so exhausted :(</p> | -1.0 |
1404 | shalabyjunior | Shalaby | 51121990 | 150239841152536576 | https://twitter.com/shalabyjunior/status/150239841152536576 | 2011-12-23 15:42:24 | 1324654944 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | RT @Djabha_PTS: لافتة بالتحرير: يا"سلفي"ويا "إخواني".. إنت فالح تاكل ودانى http://fb.me/1AL08j45z #ikhwan #salafi #tahrir #scafpigs | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">RT <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="364054027" dir="ltr" href="/Djabha_PTS"><s>@</s><b>Djabha_PTS</b></a>: لافتة بالتحرير: يا"سلفي"ويا "إخواني".. إنت فالح تاكل ودانى <a class="twitter-timeline-link" data-expanded-url="http://fb.me/1AL08j45z" dir="ltr" href="http://t.co/BIdvIcm0" rel="nofollow noopener" target="_blank" title="http://fb.me/1AL08j45z"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">fb.me/1AL08j45z</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a> <img alt="👎" aria-label="Emoji: Thumbs down sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44e.png" title="Thumbs down sign"/><img alt="👎" aria-label="Emoji: Thumbs down sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44e.png" title="Thumbs down sign"/><img alt="👂" aria-label="Emoji: Ear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f442.png" title="Ear"/><img alt="👂" aria-label="Emoji: Ear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f442.png" title="Ear"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ikhwan?src=hash"><s>#</s><b>ikhwan</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/salafi?src=hash"><s>#</s><b>salafi</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/tahrir?src=hash"><s>#</s><b>tahrir</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/scafpigs?src=hash"><s>#</s><b>scafpigs</b></a></p> | -1.0 |
1965 | Kareem_Tawadros | Kareem Tawadros | 41808998 | 148735239815036930 | https://twitter.com/Kareem_Tawadros/status/148735239815036930 | 2011-12-19 12:03:39 | 1324296219 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | :S :S :( :(\n"@hfakhry: خلاص كده يا مصر مادام الناس دي هي العقليات اللي بتحكمنا وبيغسلوا دماغ الأغلبية.. يبقا عليه العوض." | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">:S :S :( :(\n"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="48094796" dir="ltr" href="/hfakhry"><s>@</s><b>hfakhry</b></a>: خلاص كده يا مصر مادام الناس دي هي العقليات اللي بتحكمنا وبيغسلوا دماغ الأغلبية.. يبقا عليه العوض."</p> | -1.0 |
3590 | thebassyouni | •••{Bas~you~uni} | 61592296 | 143451826438680576 | https://twitter.com/thebassyouni/status/143451826438680576 | 2011-12-04 22:09:15 | 1323036555 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I Miss my smile..... :((( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I Miss my smile..... :(((</p> | -1.0 |
3785 | PhoOMo | phumu avril matidza | 108601246 | 142899075107397632 | https://twitter.com/PhoOMo/status/142899075107397632 | 2011-12-03 09:32:49 | 1322904769 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | :( edzi dza 15 ndi dzi ise gai? RT @Vhuhwavho: A liche zwa u nwa RT @PhoOMo: Mcim hei foundry i co mbavha uri a i difhi! Khwine ndi lich | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">:( edzi dza 15 ndi dzi ise gai? RT <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="608898673" dir="ltr" href="/Vhuhwavho"><s>@</s><b>Vhuhwavho</b></a>: A liche zwa u nwa RT <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="108601246" dir="ltr" href="/PhoOMo"><s>@</s><b>PhoOMo</b></a>: Mcim hei foundry i co mbavha uri a i difhi! Khwine ndi lich</p> | -1.0 |
4835 | Syndrome93 | Syndrome® | 253231908 | 139156828033523713 | https://twitter.com/Syndrome93/status/139156828033523713 | 2011-11-23 01:42:27 | 1322012547 | 1 | 1 | 1 | 0 | NaN | NaN | NaN | مش قادر انسى الشاب اللى عينه كانت متصفية في ايده وبيسألنى "عينى مش شايف بيها يا كابتن.. فيها حاجة؟" وكدبت عليه وقلتله عينك هتبقى تمام :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مش قادر انسى الشاب اللى عينه كانت متصفية في ايده وبيسألنى "عينى مش شايف بيها يا كابتن.. فيها حاجة؟" وكدبت عليه وقلتله عينك هتبقى تمام :(</p> | -1.0 |
5454 | alexseif | Alex Seif | 14891138 | 137525709194268672 | https://twitter.com/alexseif/status/137525709194268672 | 2011-11-18 13:40:58 | 1321623658 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Ramsees train station parking lot flooded and no electricity = no coffee :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Ramsees train station parking lot flooded and no electricity = no coffee :(</p> | -1.0 |
6363 | baJau90 | AiMaNHaJam | 351766496 | 134676014293987328 | https://twitter.com/baJau90/status/134676014293987328 | 2011-11-10 16:57:18 | 1320944238 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @NaquiyahMN "smua owg ada angan masing2,, ada yg nk kawen,, ada yg nk celebrate ngn bf n gf,, ak dok ternganga g keje"\nSIANNYE KAU!!! :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="292863290" dir="ltr" href="/NaquiyahMN"><s>@</s><b>NaquiyahMN</b></a> "smua owg ada angan masing2,, ada yg nk kawen,, ada yg nk celebrate ngn bf n gf,, ak dok ternganga g keje"\nSIANNYE KAU!!! :(</p> | -1.0 |
6389 | baJau90 | AiMaNHaJam | 351766496 | 134667309112500227 | https://twitter.com/baJau90/status/134667309112500227 | 2011-11-10 16:22:43 | 1320942163 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @AANodame asal bkn y macho punya?? :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="357431739" dir="ltr" href="/AANodame"><s>@</s><b>AANodame</b></a> asal bkn y macho punya?? :(</p> | -1.0 |
6490 | knitcritter | Spacefrog | 200187914 | 134286626359742464 | https://twitter.com/knitcritter/status/134286626359742464 | 2011-11-09 15:10:01 | 1320851401 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | On the way home :( will miss you white desert.. | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">On the way home :( will miss you white desert..</p> | -1.0 |
6690 | baJau90 | AiMaNHaJam | 351766496 | 133756374147543040 | https://twitter.com/baJau90/status/133756374147543040 | 2011-11-08 04:02:59 | 1320724979 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @AANodame hahaha..profile pic tuka da ke? :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tl"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="357431739" dir="ltr" href="/AANodame"><s>@</s><b>AANodame</b></a> hahaha..profile pic tuka da ke? :(</p> | -1.0 |
6708 | msmakhlouf | Mohammed Makhlouf | 61301205 | 133651883574304768 | https://twitter.com/msmakhlouf/status/133651883574304768 | 2011-11-07 21:07:46 | 1320700066 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Again the coffee quality is slipping :( (@ Cilantro Assiut University) http://4sq.com/so3Xk4 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Again the coffee quality is slipping :( (@ Cilantro Assiut University) <a class="twitter-timeline-link" data-expanded-url="http://4sq.com/so3Xk4" dir="ltr" href="http://t.co/ooMonBXa" rel="nofollow noopener" target="_blank" title="http://4sq.com/so3Xk4"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">4sq.com/so3Xk4</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
7148 | PoProstuPodroz | Po prostu podróż | 380229257 | 132479263940157440 | https://twitter.com/PoProstuPodroz/status/132479263940157440 | 2011-11-04 15:28:12 | 1320420492 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Zapeszyłem... :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pl">Zapeszyłem... :(</p> | -1.0 |
7975 | mostafasaad91 | Mostafa Saad | 240313798 | 129608765778558976 | https://twitter.com/mostafasaad91/status/129608765778558976 | 2011-10-27 17:21:52 | 1319736112 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @omarelzuhry أنا فل\n\nبس خائف من السنادي :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1356316196" dir="ltr" href="/omarelzuhry"><s>@</s><b>omarelzuhry</b></a> أنا فل\n\nبس خائف من السنادي :(</p> | -1.0 |
8110 | Lufuno45 | Lufuno Nethengwe 🌎 | 31118841 | 129248211494899712 | https://twitter.com/Lufuno45/status/129248211494899712 | 2011-10-26 17:29:09 | 1319650149 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Dem #Indians... #Dewali... even burnin sum stinkin eish... RT @PhulusoN: These fireworks nxa | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Dem <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Indians?src=hash"><s>#</s><b>Indians</b></a>... <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Dewali?src=hash"><s>#</s><b>Dewali</b></a>... even burnin sum stinkin eish... RT <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3000841240" dir="ltr" href="/PhulusoN"><s>@</s><b>PhulusoN</b></a>: These fireworks <img alt="☹" aria-label="Emoji: Frowning face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2639.png" title="Frowning face"/>nxa</p> | -1.0 |
8138 | msmakhlouf | Mohammed Makhlouf | 61301205 | 129162963549564928 | https://twitter.com/msmakhlouf/status/129162963549564928 | 2011-10-26 11:50:24 | 1319629824 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Sleepy and still have a 3 hours class ... Oh crap :( (@ Faculty of Computer and Information Sciences w/ @ashouric) http://4sq.com/skGzrx | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Sleepy and still have a 3 hours class ... Oh crap :( (@ Faculty of Computer and Information Sciences w/ <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="808689780" dir="ltr" href="/Ashouric"><s>@</s><b>ashouric</b></a>) <a class="twitter-timeline-link" data-expanded-url="http://4sq.com/skGzrx" dir="ltr" href="http://t.co/kvRnarHP" rel="nofollow noopener" target="_blank" title="http://4sq.com/skGzrx"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">4sq.com/skGzrx</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
8358 | FanzoneDanny | Danny Jackson | 84554979 | 128219272538357761 | https://twitter.com/FanzoneDanny/status/128219272538357761 | 2011-10-23 21:20:31 | 1319404831 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | I'm so gutted I'm not watching MOTD! :( ..... Oh an so pissed! | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I'm so gutted I'm not watching MOTD! :( ..... Oh an so pissed!</p> | -1.0 |
9079 | Umami5 | Mark Gaffney | 57369390 | 125202711196073984 | https://twitter.com/Umami5/status/125202711196073984 | 2011-10-15 13:33:47 | 1318685627 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @inaweoftheclaw an oasis of wifi in the desert, suffering withdrawals! Just enough time to catch second half of game. No beer anywhere :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="211986761" dir="ltr" href="/inaweoftheclaw"><s>@</s><b>inaweoftheclaw</b></a> an oasis of wifi in the desert, suffering withdrawals! Just enough time to catch second half of game. No beer anywhere :(</p> | -1.0 |
10093 | mostafasaad91 | Mostafa Saad | 240313798 | 121695009845153792 | https://twitter.com/mostafasaad91/status/121695009845153792 | 2011-10-05 21:15:25 | 1317849325 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | المهم يا سيدي خلاص تقريبا والله اعلم كدهو الموبايل رااااااح\n\nكله راح ... كله راح ... كله أتكسر كله اتغير\n:(( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المهم يا سيدي خلاص تقريبا والله اعلم كدهو الموبايل رااااااح\n\nكله راح ... كله راح ... كله أتكسر كله اتغير\n:((</p> | -1.0 |
10467 | mostafasaad91 | Mostafa Saad | 240313798 | 120783520686817280 | https://twitter.com/mostafasaad91/status/120783520686817280 | 2011-10-03 08:53:30 | 1317632010 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @dooda1990 دكتور حيوان يا عم ... كسفنييييييي\n:( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@dooda1990 دكتور حيوان يا عم ... كسفنييييييي\n:(</p> | -1.0 |
10582 | mostafasaad91 | Mostafa Saad | 240313798 | 120520875391979520 | https://twitter.com/mostafasaad91/status/120520875391979520 | 2011-10-02 15:29:50 | 1317569390 | 3 | 0 | 0 | 0 | NaN | NaN | NaN | @omarelzuhry :( حاجة خرة التنين يا نيموووووووو والله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1356316196" dir="ltr" href="/omarelzuhry"><s>@</s><b>omarelzuhry</b></a> :( حاجة خرة التنين يا نيموووووووو والله</p> | -1.0 |
11010 | mostafasaad91 | Mostafa Saad | 240313798 | 118461758896746497 | https://twitter.com/mostafasaad91/status/118461758896746497 | 2011-09-26 23:07:38 | 1317078458 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | داخل أنام عشان عندي موووووزاكرة الصبح access :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">داخل أنام عشان عندي موووووزاكرة الصبح access :(</p> | -1.0 |
11668 | msmakhlouf | Mohammed Makhlouf | 61301205 | 116430854703681536 | https://twitter.com/msmakhlouf/status/116430854703681536 | 2011-09-21 08:37:33 | 1316594253 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Mo7amedFouad Education is doomed man ... It is all gone :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="19411566" dir="ltr" href="/Mo7amedFouad"><s>@</s><b>Mo7amedFouad</b></a> Education is doomed man ... It is all gone :(</p> | -1.0 |
12547 | msmakhlouf | Mohammed Makhlouf | 61301205 | 113537778016452608 | https://twitter.com/msmakhlouf/status/113537778016452608 | 2011-09-13 09:01:30 | 1315904490 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @KarimGomaa nope :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="33176959" dir="ltr" href="/KarimGomaa"><s>@</s><b>KarimGomaa</b></a> nope :(</p> | -1.0 |
12675 | Israa_Samir | إسراء | 198273022 | 113013409896857601 | https://twitter.com/Israa_Samir/status/113013409896857601 | 2011-09-11 22:17:51 | 1315779471 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @SunnyMonroeBR hello ? :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1641645590" dir="ltr" href="/SunnyMonroeBR"><s>@</s><b>SunnyMonroeBR</b></a> hello ? :(</p> | -1.0 |
12689 | Israa_Samir | إسراء | 198273022 | 113011928351248384 | https://twitter.com/Israa_Samir/status/113011928351248384 | 2011-09-11 22:11:58 | 1315779118 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | رحم الله الشهدا بتوع الثورات العربيه :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">رحم الله الشهدا بتوع الثورات العربيه :(</p> | -1.0 |
12690 | SherifElma7y | ShiXo ™ | 254537511 | 113011838714777600 | https://twitter.com/SherifElma7y/status/113011838714777600 | 2011-09-11 22:11:36 | 1315779096 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Very bad MODE :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Very bad MODE :(</p> | -1.0 |
13267 | iFlama | Gεοvαηηι ☠ | 75377012 | 110153098730799104 | https://twitter.com/iFlama/status/110153098730799104 | 2011-09-04 00:51:59 | 1315097519 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Estoy muy adolorido de mi cuerpo :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">Estoy muy adolorido de mi cuerpo :(</p> | -1.0 |
13600 | Mo7amedFouad | Mohamed Fouad | 19411566 | 108295685387984896 | https://twitter.com/Mo7amedFouad/status/108295685387984896 | 2011-08-29 21:51:18 | 1314654678 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | El bomb 5els :( !!! | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">El bomb 5els :( !!!</p> | -1.0 |
15412 | Beardieroy | Roy | 161601282 | 100614978691809280 | https://twitter.com/Beardieroy/status/100614978691809280 | 2011-08-08 17:10:54 | 1312823454 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Ik ben verbrand:( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="nl">Ik ben verbrand:(</p> | -1.0 |
15947 | HaysamElMasrY | we.Live.weLove.weLie | 104147896 | 98569419906752512 | https://twitter.com/HaysamElMasrY/status/98569419906752512 | 2011-08-03 01:42:35 | 1312335755 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Haytha_m :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="217231152" dir="ltr" href="/Haytha_m"><s>@</s><b>Haytha_m</b></a> :(</p> | -1.0 |
18187 | Ahmed_Kudo | Ahmed | 166545982 | 90165282122907649 | https://twitter.com/Ahmed_Kudo/status/90165282122907649 | 2011-07-10 21:07:33 | 1310332053 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MidooDj اكذوبه انا قدام امن الدوله مفيش :(( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="122771789" dir="ltr" href="/MidooDj"><s>@</s><b>MidooDj</b></a> اكذوبه انا قدام امن الدوله مفيش :((</p> | -1.0 |
19919 | News_MiddleEast | Middle East News | 259223535 | 77646649618464768 | https://twitter.com/News_MiddleEast/status/77646649618464768 | 2011-06-06 08:02:58 | 1307347378 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #EGYPT: The downside of Rafah�s reopening - IRIN http://bit.ly/lsG40x | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/EGYPT?src=hash"><s>#</s><b>EGYPT</b></a>: The downside of Rafah�s reopening - IRIN http://bit.ly/lsG40x</p> | -1.0 |
19997 | Ahmed_Kudo | Ahmed | 166545982 | 77324493554581504 | https://twitter.com/Ahmed_Kudo/status/77324493554581504 | 2011-06-05 10:42:50 | 1307270570 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @EtisalatMisr هو فرع المنيا هيتفتح امتي بقي انا زهقت كل محتاج حاجة اسافر القاهرة :((( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="137270270" dir="ltr" href="/EtisalatMisr"><s>@</s><b>EtisalatMisr</b></a> هو فرع المنيا هيتفتح امتي بقي انا زهقت كل محتاج حاجة اسافر القاهرة :(((</p> | -1.0 |
22405 | KareemElansary | Kareem Elansary | 60447564 | 59751111833296896 | https://twitter.com/KareemElansary/status/59751111833296896 | 2011-04-17 22:52:29 | 1303080749 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @yassermakram delwa2ty 7ateen "kafan" 3la mad5al el mo7afza 3shan hy2tilo el mo7afiz lw da5al qina ,, w bokra hywa2afo matar luxor :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="39048320" dir="ltr" href="/yassermakram"><s>@</s><b>yassermakram</b></a> delwa2ty 7ateen "kafan" 3la mad5al el mo7afza 3shan hy2tilo el mo7afiz lw da5al qina ,, w bokra hywa2afo matar luxor :(</p> | -1.0 |
22844 | mahagohar | Maha Gohar | 240863994 | 55746611854315520 | https://twitter.com/mahagohar/status/55746611854315520 | 2011-04-06 21:40:02 | 1302126002 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | “@DostorNews: #jan25 #egypt تأجيل عرض الجزء الثاني من فيلم Monsters Inc إلى 2013 http://dlvr.it/MflFp ”\n@Bardees :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">“<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="137718974" dir="ltr" href="/DostorNews"><s>@</s><b>DostorNews</b></a>: <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/jan25?src=hash"><s>#</s><b>jan25</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> تأجيل عرض الجزء الثاني من فيلم Monsters Inc إلى 2013 <a class="twitter-timeline-link" data-expanded-url="http://dlvr.it/MflFp" dir="ltr" href="http://t.co/t0uvq9D" rel="nofollow noopener" target="_blank" title="http://dlvr.it/MflFp"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">dlvr.it/MflFp</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a>”\n<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="21515181" dir="ltr" href="/Bardees"><s>@</s><b>Bardees</b></a> :(</p> | -1.0 |
egypt tweets/egypt_tweets_2012.csv - 63049 tweets
Hashtag | Count | |
---|---|---|
0 | #MT2 | 893 |
1 | #Egypt | 339 |
2 | #egypt | 268 |
3 | #منوعات | 244 |
4 | #roki_demon | 167 |
5 | #loveless_nipple | 147 |
6 | #مصر | 138 |
7 | #Jan25 | 128 |
8 | #densyousya_roki | 105 |
9 | #البارجيل | 102 |
10 | #مرسي | 101 |
11 | #la_mur_kyo | 97 |
12 | #صورفنانين | 93 |
13 | #PT | 81 |
14 | # | 74 |
15 | #hosiiitioku | 74 |
16 | #News | 74 |
17 | #المنيا | 66 |
18 | #عن | 62 |
19 | #luxor | 55 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels |
---|
Positive feels: 3954. Negative feels: 447 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
11 | MostafaMoussa00 | MO̸O̸Տվ | 266182302 | 285892763302633472 | https://twitter.com/MostafaMoussa00/status/285892763302633472 | 2012-12-31 23:38:41 | 1356997121 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Ah_FariDD happy new yeaaaaar :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="772703448" dir="ltr" href="/Ah_FariDD"><s>@</s><b>Ah_FariDD</b></a> happy new yeaaaaar :)</p> | 1.0 |
16 | zeinaels | ž | 253235636 | 285884616705974272 | https://twitter.com/zeinaels/status/285884616705974272 | 2012-12-31 23:06:18 | 1356995178 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @youssefhamza happy birthday | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="223975025" dir="ltr" href="/youssefhamza"><s>@</s><b>youssefhamza</b></a> happy birthday<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
31 | MostafaMoussa00 | MO̸O̸Տվ | 266182302 | 285892763302633472 | https://twitter.com/MostafaMoussa00/status/285892763302633472 | 2012-12-31 23:38:41 | 1356997121 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Ah_FariDD happy new yeaaaaar :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="772703448" dir="ltr" href="/Ah_FariDD"><s>@</s><b>Ah_FariDD</b></a> happy new yeaaaaar :)</p> | 1.0 |
36 | zeinaels | ž | 253235636 | 285884616705974272 | https://twitter.com/zeinaels/status/285884616705974272 | 2012-12-31 23:06:18 | 1356995178 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @youssefhamza happy birthday | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="223975025" dir="ltr" href="/youssefhamza"><s>@</s><b>youssefhamza</b></a> happy birthday<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
42 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285879206812999680 | https://twitter.com/OGamalM/status/285879206812999680 | 2012-12-31 22:44:48 | 1356993888 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | @MazenRef3at gamda fash5 :D :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tr"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="328293359" dir="ltr" href="/MazenRef3at"><s>@</s><b>MazenRef3at</b></a> gamda fash5 :D :D</p> | 1.0 |
47 | 3abbodda | d-_-b | 603368139 | 285869905188900864 | https://twitter.com/3abbodda/status/285869905188900864 | 2012-12-31 22:07:51 | 1356991671 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy New Year :) Welcome 2013 ;) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy New Year :) Welcome 2013 ;)</p> | 1.0 |
54 | maiessamali | ميّ | 247302387 | 285864233361604608 | https://twitter.com/maiessamali/status/285864233361604608 | 2012-12-31 21:45:18 | 1356990318 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @abdelnaby2310 tyb happy new year ya 3m el baye5 :P :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@abdelnaby2310 tyb happy new year ya 3m el baye5 :P :D</p> | 1.0 |
59 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285860268007882753 | https://twitter.com/kw_535/status/285860268007882753 | 2012-12-31 21:29:33 | 1356989373 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ❀ ابدوا السنة الجديده بالدعاء ❀\nاللهم اجعل لي في هذه السنه كل خير ولاتفجعني بأهلي و لا بأحبائي وجعلها سنة تحقيق امنيات ” | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">❀ ابدوا السنة الجديده بالدعاء ❀\nاللهم اجعل لي في هذه السنه كل خير ولاتفجعني بأهلي و لا بأحبائي وجعلها سنة تحقيق امنيات ”</p> | 1.0 |
61 | orionesque | Geoff @Orionesque | 12870202 | 285857850994081792 | https://twitter.com/orionesque/status/285857850994081792 | 2012-12-31 21:19:57 | 1356988797 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Bit early, but bed is calling... So Happy New Year all :) #gettingtoooldforthisshit | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Bit early, but bed is calling... So Happy New Year all :) <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/gettingtoooldforthisshit?src=hash"><s>#</s><b>gettingtoooldforthisshit</b></a></p> | 1.0 |
73 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285846082066477056 | https://twitter.com/kw_535/status/285846082066477056 | 2012-12-31 20:33:11 | 1356985991 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @s7aaaaab\n\nمعّك حق انك تباهين بـ حلاك \nدام خدّك ورّد وأنفاسك شذا \n\nومن كثر ما الله من القبله عطاك \nكل من شافك يقول انتي كذا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1032920602854809600" dir="ltr" href="/s7aaaaab"><s>@</s><b>s7aaaaab</b></a>\n\nمعّك حق انك تباهين بـ حلاك \nدام خدّك ورّد وأنفاسك شذا \n\nومن كثر ما الله من القبله عطاك \nكل من شافك يقول انتي كذا <img alt="👍" aria-label="Emoji: Thumbs up sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44d.png" title="Thumbs up sign"/></p> | 1.0 |
77 | maiessamali | ميّ | 247302387 | 285844022499618816 | https://twitter.com/maiessamali/status/285844022499618816 | 2012-12-31 20:25:00 | 1356985500 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @abdelnaby2310 eh hwa el 3eb bzbt?! :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tl">@abdelnaby2310 eh hwa el 3eb bzbt?! :D</p> | 1.0 |
93 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285821995789205504 | https://twitter.com/OGamalM/status/285821995789205504 | 2012-12-31 18:57:28 | 1356980248 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MazenRef3at mra tnya isa :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="328293359" dir="ltr" href="/MazenRef3at"><s>@</s><b>MazenRef3at</b></a> mra tnya isa :)</p> | 1.0 |
111 | 3abwa | صيدلى مطحون | 276923102 | 285795047679602688 | https://twitter.com/3abwa/status/285795047679602688 | 2012-12-31 17:10:23 | 1356973823 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Marmaar_87 \n.. hagi isA 2day ... :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="404521762" dir="ltr" href="/Marmaar_87"><s>@</s><b>Marmaar_87</b></a> \n.. hagi isA 2day ... :D</p> | 1.0 |
119 | 3abwa | صيدلى مطحون | 276923102 | 285789895253979136 | https://twitter.com/3abwa/status/285789895253979136 | 2012-12-31 16:49:55 | 1356972595 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @M_Moqaddem\nربنا يبارك فيك :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@M_Moqaddem\nربنا يبارك فيك :)</p> | 1.0 |
120 | 3abwa | صيدلى مطحون | 276923102 | 285789409637433347 | https://twitter.com/3abwa/status/285789409637433347 | 2012-12-31 16:47:59 | 1356972479 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @slam_sela7 @M_Moqaddem\n:) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@slam_sela7 @M_Moqaddem\n:)</p> | 1.0 |
146 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285748492184477696 | https://twitter.com/kw_535/status/285748492184477696 | 2012-12-31 14:05:24 | 1356962724 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | طموحي انتي مثل منتي طموحي \nأنثئ اذا جيتك واذا غبت رجال\n\n... | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">طموحي انتي مثل منتي طموحي \nأنثئ اذا جيتك واذا غبت رجال\n\n...<img alt="✔" aria-label="Emoji: Heavy check mark" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2714.png" title="Heavy check mark"/></p> | 1.0 |
151 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285745604003520512 | https://twitter.com/kw_535/status/285745604003520512 | 2012-12-31 13:53:55 | 1356962035 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | آنا معش كل ما خانش الوقت\nعيبن علي آن كان خيبت ظنش\n\n بس قولي؛ *العنقا* تراني تضايقت\nوماني بـ عجمي ان تخليت عنش♡' | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">آنا معش كل ما خانش الوقت\nعيبن علي آن كان خيبت ظنش\n\n بس قولي؛ *العنقا* تراني تضايقت\nوماني بـ عجمي ان تخليت عنش♡'</p> | 1.0 |
160 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285741802399617024 | https://twitter.com/kw_535/status/285741802399617024 | 2012-12-31 13:38:49 | 1356961129 | 0 | 2 | 0 | 0 | NaN | NaN | NaN | تعآلي مَ حوُلش سوَى قلب مَغليش\n مَ دام ريح ا̄ﻟشوُق صوُبي تهبّش ، \nۈلا تزعلين إذا الخلاآيق تعاآديِش \nغصبنْ عَلى كل آلعواذل احبش ♡ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">تعآلي مَ حوُلش سوَى قلب مَغليش\n مَ دام ريح ا̄ﻟشوُق صوُبي تهبّش ، \nۈلا تزعلين إذا الخلاآيق تعاآديِش \nغصبنْ عَلى كل آلعواذل احبش ♡</p> | 1.0 |
166 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285739726726639619 | https://twitter.com/kw_535/status/285739726726639619 | 2012-12-31 13:30:34 | 1356960634 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | ٱضم طيفه داخلي وآصرخ بـ همس .. انا عجزت انساااه / وآحب غيره ..♡̨̐ ! | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ٱضم طيفه داخلي وآصرخ بـ همس .. انا عجزت انساااه / وآحب غيره ..♡̨̐ !</p> | 1.0 |
216 | Xaw13 | Maxime C | 21933498 | 285661955216269312 | https://twitter.com/Xaw13/status/285661955216269312 | 2012-12-31 08:21:32 | 1356942092 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Last day of 2012 spent on the Nile... :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Last day of 2012 spent on the Nile... :)</p> | 1.0 |
272 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285567245390852097 | https://twitter.com/OGamalM/status/285567245390852097 | 2012-12-31 02:05:11 | 1356919511 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @A7medAlii شغلت ال nim buzz يا أبو علي الباقي عليك :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1075817222" dir="ltr" href="/A7MEDALII"><s>@</s><b>A7medAlii</b></a> شغلت ال nim buzz يا أبو علي الباقي عليك :D</p> | 1.0 |
315 | MarinaAttalla | SarenaMarinaツ | 355115265 | 285531230148124673 | https://twitter.com/MarinaAttalla/status/285531230148124673 | 2012-12-30 23:42:04 | 1356910924 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @Antonious95 more than 120 per day .. high rate :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@Antonious95 more than 120 per day .. high rate :)</p> | 1.0 |
350 | MarinaAttalla | SarenaMarinaツ | 355115265 | 285481542380306433 | https://twitter.com/MarinaAttalla/status/285481542380306433 | 2012-12-30 20:24:38 | 1356899078 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @petersamirhanna aywa ma ana 3arfa ma hea bt7sl m3aya kteer :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="et">@petersamirhanna aywa ma ana 3arfa ma hea bt7sl m3aya kteer :D</p> | 1.0 |
395 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285443078955859968 | https://twitter.com/OGamalM/status/285443078955859968 | 2012-12-30 17:51:47 | 1356889907 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Yallakora لأ طبعا أبو ستة !!! :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="111967510" dir="ltr" href="/Yallakora"><s>@</s><b>Yallakora</b></a> لأ طبعا أبو ستة !!! :D</p> | 1.0 |
405 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285427822573543424 | https://twitter.com/OGamalM/status/285427822573543424 | 2012-12-30 16:51:10 | 1356886270 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @m92beh مش قولتلك هنكسب٨ ٩ اهو ٣ في الشوط الاول :D :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="184986332" dir="ltr" href="/m92beh"><s>@</s><b>m92beh</b></a> مش قولتلك هنكسب٨ ٩ اهو ٣ في الشوط الاول :D :D</p> | 1.0 |
507 | Nahla_Rakha | Nahla Rakha | 294880350 | 285292865582682112 | https://twitter.com/Nahla_Rakha/status/285292865582682112 | 2012-12-30 07:54:54 | 1356854094 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | good morning :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">good morning :)</p> | 1.0 |
537 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285231390323273728 | https://twitter.com/kw_535/status/285231390323273728 | 2012-12-30 03:50:37 | 1356839437 | 0 | 2 | 0 | 0 | NaN | NaN | NaN | معلومة قيمة : -\nهل تعلم لماذا نشرب الشاي؟\n\nلأننا لا نستطيع ان نأكله !\nهههههههههههههههه\nعاد خلونا نشوفكم لاتقاطعون\n\nتصبحون ع خير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">معلومة قيمة : -\nهل تعلم لماذا نشرب الشاي؟\n\nلأننا لا نستطيع ان نأكله !<img alt="😝" aria-label="Emoji: Face with stuck-out tongue and tightly-closed eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61d.png" title="Face with stuck-out tongue and tightly-closed eyes"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>\nهههههههههههههههه\nعاد خلونا نشوفكم لاتقاطعون<img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>\n\nتصبحون ع خير</p> | 1.0 |
538 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285231161347825664 | https://twitter.com/kw_535/status/285231161347825664 | 2012-12-30 03:49:42 | 1356839382 | 0 | 2 | 0 | 0 | NaN | NaN | NaN | ماتلاحظون يوم دخل البرد انقطعت كلمة شاور تايم !!! النظافه من الايمان ياخي \nههههههههههههه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ماتلاحظون يوم دخل البرد انقطعت كلمة شاور تايم !!! النظافه من الايمان ياخي <img alt="☺" aria-label="Emoji: Smiling face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/263a.png" title="Smiling face"/> \nههههههههههههه<img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/></p> | 2.0 |
544 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285226392956858369 | https://twitter.com/kw_535/status/285226392956858369 | 2012-12-30 03:30:45 | 1356838245 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | في الصين و اليابان الطالبات الي اوزانهم ثقيله ما ينجحون و يعيدون السنه \n\nلو عندنا هالنظام كان كل البنات في الروضه\n\nههههههههههههه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">في الصين و اليابان الطالبات الي اوزانهم ثقيله ما ينجحون و يعيدون السنه \n\nلو عندنا هالنظام كان كل البنات في الروضه<img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/>\n\nههههههههههههه<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 2.0 |
553 | Simolution | islam abbas | 126748348 | 285222953396867072 | https://twitter.com/Simolution/status/285222953396867072 | 2012-12-30 03:17:05 | 1356837425 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | @BbyLawyer @ALshBeSoO @Dodzydo ده انا هطلع عليك القديم والجديد، اصبر بس اخلص رز مع الملايكه، اما الحقه احسن يبرد :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1090080791063875585" dir="ltr" href="/BbyLawyer"><s>@</s><b>BbyLawyer</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="436493918" dir="ltr" href="/ALshBeSoO"><s>@</s><b>ALshBeSoO</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="333808101" dir="ltr" href="/Dodzydo"><s>@</s><b>Dodzydo</b></a> ده انا هطلع عليك القديم والجديد، اصبر بس اخلص رز مع الملايكه، اما الحقه احسن يبرد :D</p> | 1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
62079 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155838963163205634 | https://twitter.com/ProfAhmed65/status/155838963163205634 | 2012-01-08 02:31:18 | 1325989878 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @rohamhanem طبعا تنامي لاني النوم سلطان :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@rohamhanem طبعا تنامي لاني النوم سلطان :D</p> | 1.0 |
62081 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155836804392681473 | https://twitter.com/ProfAhmed65/status/155836804392681473 | 2012-01-08 02:22:44 | 1325989364 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @msheshtawy مش جايلي نوم :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="80274550" dir="ltr" href="/msheshtawy"><s>@</s><b>msheshtawy</b></a> مش جايلي نوم :D</p> | 1.0 |
62094 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155785133402763264 | https://twitter.com/ProfAhmed65/status/155785133402763264 | 2012-01-07 22:57:24 | 1325977044 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @rehab_7emdan علي الفوز ههههههههه سبيهم موهومين :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="339121822" dir="ltr" href="/rehab_7emdan"><s>@</s><b>rehab_7emdan</b></a> علي الفوز ههههههههه سبيهم موهومين :D</p> | 1.0 |
62098 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155779205278334976 | https://twitter.com/ProfAhmed65/status/155779205278334976 | 2012-01-07 22:33:51 | 1325975631 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sandyahmed4 :D بس الاغنيه كويسه جدا ليها هدف :))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="842665633" dir="ltr" href="/sandyahmed4"><s>@</s><b>sandyahmed4</b></a> :D بس الاغنيه كويسه جدا ليها هدف :)))</p> | 2.0 |
62099 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155777640945549312 | https://twitter.com/ProfAhmed65/status/155777640945549312 | 2012-01-07 22:27:38 | 1325975258 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sandyahmed4 كليب جامد عشان فيه شاجي :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="842665633" dir="ltr" href="/sandyahmed4"><s>@</s><b>sandyahmed4</b></a> كليب جامد عشان فيه شاجي :D</p> | 1.0 |
62101 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155773732248485888 | https://twitter.com/ProfAhmed65/status/155773732248485888 | 2012-01-07 22:12:06 | 1325974326 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #KanNfsi كان نفسي اذاكر بس مش عارف من الهاتش تاج دا :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/KanNfsi?src=hash"><s>#</s><b>KanNfsi</b></a> كان نفسي اذاكر بس مش عارف من الهاتش تاج دا :D</p> | 1.0 |
62104 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155772389622423552 | https://twitter.com/ProfAhmed65/status/155772389622423552 | 2012-01-07 22:06:46 | 1325974006 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @DiZZY_RIM اكيد بيظغتو البط :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@DiZZY_RIM اكيد بيظغتو البط :D</p> | 1.0 |
62107 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155769573512187905 | https://twitter.com/ProfAhmed65/status/155769573512187905 | 2012-01-07 21:55:35 | 1325973335 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @YoustinaAmine اشربي ينسوون كتيير :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="298729757" dir="ltr" href="/YoustinaAmine"><s>@</s><b>YoustinaAmine</b></a> اشربي ينسوون كتيير :D</p> | 1.0 |
62117 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155764942186872832 | https://twitter.com/ProfAhmed65/status/155764942186872832 | 2012-01-07 21:37:10 | 1325972230 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #KanNfsi اكووون بات مان وانا صغير :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/KanNfsi?src=hash"><s>#</s><b>KanNfsi</b></a> اكووون بات مان وانا صغير :)</p> | 1.0 |
62120 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155762420688760832 | https://twitter.com/ProfAhmed65/status/155762420688760832 | 2012-01-07 21:27:09 | 1325971629 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #3okasha انا نفسي عوكاشه يسيبو من السياسه ويمثل دا هيبقا احسن من حسن حسني :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/3okasha?src=hash"><s>#</s><b>3okasha</b></a> انا نفسي عوكاشه يسيبو من السياسه ويمثل دا هيبقا احسن من حسن حسني :)</p> | 1.0 |
62288 | GnehFlYoum | جنيه في اليوم | 348737334 | 155226122978721792 | https://twitter.com/GnehFlYoum/status/155226122978721792 | 2012-01-06 09:56:06 | 1325843766 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | جنبه في اليوم دلوقتي بتساعد في توزيع البطاطين في قرية النزلة بالفيوم :) http://yfrog.com/kivzfjsvj | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">جنبه في اليوم دلوقتي بتساعد في توزيع البطاطين في قرية النزلة بالفيوم :) <a class="twitter-timeline-link" data-expanded-url="http://yfrog.com/kivzfjsvj" dir="ltr" href="http://t.co/NJBHAcpP" rel="nofollow noopener" target="_blank" title="http://yfrog.com/kivzfjsvj"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">yfrog.com/kivzfjsvj</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
62341 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155116340628303872 | https://twitter.com/ProfAhmed65/status/155116340628303872 | 2012-01-06 02:39:52 | 1325817592 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Fastooka. الناس الي علي الصفحه دووول فوتوشوب كلهم قوتوشوب :)) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="983595907" dir="ltr" href="/fastooka"><s>@</s><b>Fastooka</b></a>. الناس الي علي الصفحه دووول فوتوشوب كلهم قوتوشوب :))</p> | 1.0 |
62358 | shalabyjunior | Shalaby | 51121990 | 155013209076662272 | https://twitter.com/shalabyjunior/status/155013209076662272 | 2012-01-05 19:50:03 | 1325793003 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عموما سهله اصل انا بلدياته بس عايش ف اسيوط هاسأل الجماعه ف البلد و اكدلك :) @CVirus | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عموما سهله اصل انا بلدياته بس عايش ف اسيوط هاسأل الجماعه ف البلد و اكدلك :) <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="8991212" dir="ltr" href="/CVirus"><s>@</s><b>CVirus</b></a></p> | 1.0 |
62512 | ivanmoore_46 | Ivan Moore | 150286434 | 154551171250524161 | https://twitter.com/ivanmoore_46/status/154551171250524161 | 2012-01-04 13:14:05 | 1325682845 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Is at Luxor airport :) can't wait to get home | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Is at Luxor airport :) can't wait to get home</p> | 1.0 |
62609 | chikamarukuuun | 盗撮犯 | 79779803 | 154295621191335937 | https://twitter.com/chikamarukuuun/status/154295621191335937 | 2012-01-03 20:18:37 | 1325621917 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | あっちの垢でフォローし直しますね♪ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">あっちの垢でフォローし直しますね♪</p> | 1.0 |
62697 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 154204276254703616 | https://twitter.com/ProfAhmed65/status/154204276254703616 | 2012-01-03 14:15:39 | 1325600139 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Fastooka انا كنت فاكرك بتحبي الحاجه التانيه اكتر :) ربنا يوفقك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="983595907" dir="ltr" href="/fastooka"><s>@</s><b>Fastooka</b></a> انا كنت فاكرك بتحبي الحاجه التانيه اكتر :) ربنا يوفقك</p> | 1.0 |
62725 | nourk517 | Nour Khalil | 386705224 | 154140451757232128 | https://twitter.com/nourk517/status/154140451757232128 | 2012-01-03 10:02:02 | 1325584922 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Done w/ the cruise it was excellent loved it all! Now flying to Cairo for more shopping :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Done w/ the cruise it was excellent loved it all! Now flying to Cairo for more shopping :)</p> | 1.0 |
62727 | nourk517 | Nour Khalil | 386705224 | 154137929835487233 | https://twitter.com/nourk517/status/154137929835487233 | 2012-01-03 09:52:00 | 1325584320 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @carla_touma hahahaha oui :) manque de tweets n'est pas? Je pars au Caire ojd | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="fr"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="340190338" dir="ltr" href="/carla_touma"><s>@</s><b>carla_touma</b></a> hahahaha oui :) manque de tweets n'est pas? Je pars au Caire ojd</p> | 1.0 |
62730 | avenseenafauzi | ανєη ƒαυzι △⃒⃘ | 47399012 | 154134370112905216 | https://twitter.com/avenseenafauzi/status/154134370112905216 | 2012-01-03 09:37:52 | 1325583472 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I just love this pic on the cruise. @ Nilen -På vej til Luxor http://instagr.am/p/eFwrG/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="da">I just love this pic on the cruise. <img alt="🚢" aria-label="Emoji: Ship" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6a2.png" title="Ship"/> @ Nilen -På vej til Luxor <a class="twitter-timeline-link" data-expanded-url="http://instagr.am/p/eFwrG/" dir="ltr" href="http://t.co/w4tYJIiy" rel="nofollow noopener" target="_blank" title="http://instagr.am/p/eFwrG/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagr.am/p/eFwrG/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
62839 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153863994090860545 | https://twitter.com/ProfAhmed65/status/153863994090860545 | 2012-01-02 15:43:29 | 1325519009 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #Babasaid فيل بيعدي يابني خس شويه حراااام عليك صحتك :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Babasaid?src=hash"><s>#</s><b>Babasaid</b></a> فيل بيعدي يابني خس شويه حراااام عليك صحتك :)</p> | 1.0 |
62842 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153860015533465600 | https://twitter.com/ProfAhmed65/status/153860015533465600 | 2012-01-02 15:27:40 | 1325518060 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #MamaSaidماما عاوز اروح التحرير.,ايه تحرير يابني ارحمني هو بيت سيتك التحرير دا:)) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/MamaSaid%D9%85%D8%A7%D9%85%D8%A7?src=hash"><s>#</s><b>MamaSaidماما</b></a> عاوز اروح التحرير.,ايه تحرير يابني ارحمني هو بيت سيتك التحرير دا:))</p> | 1.0 |
62843 | RaoufLotfy | Raouf D-Lotfy | 99255354 | 153855680149852161 | https://twitter.com/RaoufLotfy/status/153855680149852161 | 2012-01-02 15:10:28 | 1325517028 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I'll miss this place so much. Gouna was amazing :)pic.twitter.com/YkVBFL8X | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I'll miss this place so much. Gouna was amazing :)<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/YkVBFL8X">pic.twitter.com/YkVBFL8X</a></p> | 1.0 |
62933 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153610056741568512 | https://twitter.com/ProfAhmed65/status/153610056741568512 | 2012-01-01 22:54:26 | 1325458466 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @YasminMahfouz بالسليكوون :))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="79563256" dir="ltr" href="/YasminMahfouz"><s>@</s><b>YasminMahfouz</b></a> بالسليكوون :)))</p> | 1.0 |
62936 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153592971781083136 | https://twitter.com/ProfAhmed65/status/153592971781083136 | 2012-01-01 21:46:32 | 1325454392 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Fastooka معلش عديها الراجل محروووق :)) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="983595907" dir="ltr" href="/fastooka"><s>@</s><b>Fastooka</b></a> معلش عديها الراجل محروووق :))</p> | 1.0 |
62942 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153583314828132352 | https://twitter.com/ProfAhmed65/status/153583314828132352 | 2012-01-01 21:08:10 | 1325452090 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Fastooka لا خو متوتر وخايف مش متوقع باسم ههههههه :))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="983595907" dir="ltr" href="/fastooka"><s>@</s><b>Fastooka</b></a> لا خو متوتر وخايف مش متوقع باسم ههههههه :)))</p> | 1.0 |
62943 | thebassyouni | •••{Bas~you~uni} | 61592296 | 153578868169641984 | https://twitter.com/thebassyouni/status/153578868169641984 | 2012-01-01 20:50:30 | 1325451030 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MadiFierce Hi madi please lma song bt3t Xtina tnzel 2b3tly el link :)))) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1621294614" dir="ltr" href="/MadiFierce"><s>@</s><b>MadiFierce</b></a> Hi madi please lma song bt3t Xtina tnzel 2b3tly el link :))))</p> | 1.0 |
62944 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153571680084701186 | https://twitter.com/ProfAhmed65/status/153571680084701186 | 2012-01-01 20:21:56 | 1325449316 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @DrBassemYoussef. اخر كلام :))) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar">@DrBassemYoussef. اخر كلام :)))</p> | 1.0 |
62947 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153563393264070657 | https://twitter.com/ProfAhmed65/status/153563393264070657 | 2012-01-01 19:49:00 | 1325447340 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MennaTeeAmr كدا عمر هيفرح قوي :))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@MennaTeeAmr كدا عمر هيفرح قوي :)))</p> | 1.0 |
62951 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153558785498165249 | https://twitter.com/ProfAhmed65/status/153558785498165249 | 2012-01-01 19:30:42 | 1325446242 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @belalfadl يامي يامي خاف ياعيد يامي يامي :))) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="162248086" dir="ltr" href="/belalfadl"><s>@</s><b>belalfadl</b></a> يامي يامي خاف ياعيد يامي يامي :)))</p> | 1.0 |
62982 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 153478486386933760 | https://twitter.com/ProfAhmed65/status/153478486386933760 | 2012-01-01 14:11:37 | 1325427097 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Fastooka طب نبعت نجبها من برااا الثقافه دي:) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="983595907" dir="ltr" href="/fastooka"><s>@</s><b>Fastooka</b></a> طب نبعت نجبها من برااا الثقافه دي:)</p> | 1.0 |
3954 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
18 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285880255942639617 | https://twitter.com/OGamalM/status/285880255942639617 | 2012-12-31 22:48:59 | 1356994139 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @MazenRef3at sna ht5ls feha ta3lem :( :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hu"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="328293359" dir="ltr" href="/MazenRef3at"><s>@</s><b>MazenRef3at</b></a> sna ht5ls feha ta3lem :( :(</p> | -1.0 |
38 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285880255942639617 | https://twitter.com/OGamalM/status/285880255942639617 | 2012-12-31 22:48:59 | 1356994139 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @MazenRef3at sna ht5ls feha ta3lem :( :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hu"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="328293359" dir="ltr" href="/MazenRef3at"><s>@</s><b>MazenRef3at</b></a> sna ht5ls feha ta3lem :( :(</p> | -1.0 |
200 | maiessamali | ميّ | 247302387 | 285691449612324865 | https://twitter.com/maiessamali/status/285691449612324865 | 2012-12-31 10:18:44 | 1356949124 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Maggie_Ahmed t3bana shwya el youmen dol w waraya balawy fl 7esas w kda :/ bgd sry :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="864985309" dir="ltr" href="/Maggie_Ahmed"><s>@</s><b>Maggie_Ahmed</b></a> t3bana shwya el youmen dol w waraya balawy fl 7esas w kda :/ bgd sry :(</p> | -1.0 |
611 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285143737829580801 | https://twitter.com/OGamalM/status/285143737829580801 | 2012-12-29 22:02:19 | 1356818539 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | #PT أصل احنا محرومين أوي :(( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/PT?src=hash"><s>#</s><b>PT</b></a> أصل احنا محرومين أوي :((</p> | -1.0 |
633 | OGamalM | Omar Gamal Mokhtar | 499086732 | 285104510010015744 | https://twitter.com/OGamalM/status/285104510010015744 | 2012-12-29 19:26:26 | 1356809186 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @m92beh مبروك يا عم :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="184986332" dir="ltr" href="/m92beh"><s>@</s><b>m92beh</b></a> مبروك يا عم :(</p> | -1.0 |
662 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285042918698405888 | https://twitter.com/kw_535/status/285042918698405888 | 2012-12-29 15:21:42 | 1356794502 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وضعي مع النوم حالياً.!! https://twitter.com/BaderHB/status/284103192889937920/photo/1pic.twitter.com/vS89wK7z ” | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وضعي مع النوم حالياً.!!<img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/> <a class="twitter-timeline-link" data-expanded-url="https://twitter.com/BaderHB/status/284103192889937920/photo/1" dir="ltr" href="http://t.co/vS89wK7z" rel="nofollow noopener" target="_blank" title="https://twitter.com/BaderHB/status/284103192889937920/photo/1"><span class="tco-ellipsis"></span><span class="invisible">https://twitter.com/BaderHB/status/284103192889937920/photo/1</span><span class="js-display-url">pic.twitter.com/vS89wK7z</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a>”</p> | -1.0 |
748 | And13ew | Andreas | 587784712 | 284973103719800832 | https://twitter.com/And13ew/status/284973103719800832 | 2012-12-29 10:44:17 | 1356777857 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يا ترى #باسم يوسف كان حلو امبارح ولا لا عشان انا محضرتوووووش :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يا ترى <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A8%D8%A7%D8%B3%D9%85?src=hash"><s>#</s><b>باسم</b></a> يوسف كان حلو امبارح ولا لا عشان انا محضرتوووووش :(</p> | -1.0 |
994 | zeinaels | ž | 253235636 | 284628038308741120 | https://twitter.com/zeinaels/status/284628038308741120 | 2012-12-28 11:53:07 | 1356695587 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @NiallOfficial its awkward how fans send in 12598328258 tweets, and they neverr think of answering mee, it would mean the world omg :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="105119490" dir="ltr" href="/NiallOfficial"><s>@</s><b>NiallOfficial</b></a> its awkward how fans send in 12598328258 tweets, and they neverr think of answering mee, it would mean the world omg :(</p> | -1.0 |
1201 | HosnyMakhlouf | Hosny Makhlouf | 335317834 | 284265271156420610 | https://twitter.com/HosnyMakhlouf/status/284265271156420610 | 2012-12-27 11:51:36 | 1356609096 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #WhenIWasLittle I use to borrow mom/dad's phone to play snakes " | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/WhenIWasLittle?src=hash"><s>#</s><b>WhenIWasLittle</b></a> I use to borrow mom/dad's phone to play snakes <img alt="🐍" aria-label="Emoji: Snake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f40d.png" title="Snake"/>"</p> | -1.0 |
1349 | OGamalM | Omar Gamal Mokhtar | 499086732 | 283979842205138944 | https://twitter.com/OGamalM/status/283979842205138944 | 2012-12-26 16:57:25 | 1356541045 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يا رب افرجها :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يا رب افرجها :(</p> | -1.0 |
1639 | iAbutalebz | المشاغب أبو طالب | 360740198 | 283544140380258304 | https://twitter.com/iAbutalebz/status/283544140380258304 | 2012-12-25 12:06:05 | 1356437165 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | حتي الجو برد دلوقتي وانا مروح من الشغل :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حتي الجو برد دلوقتي وانا مروح من الشغل :(</p> | -1.0 |
2400 | iprakadpra | 🎩 IBRAHIM XIII 🇪🇬 | 216939164 | 282175985758117888 | https://twitter.com/iprakadpra/status/282175985758117888 | 2012-12-21 17:29:32 | 1356110972 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #ميركاتو_ميلان_الشتوي_2012 اتمنى قدوم سوبر ماريو او اي لاعب يشارك في الابطال . بس اتوقع كالعاده الميلان سيتجه لفيا لانخفاض تكلفته :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D9%8A%D8%B1%D9%83%D8%A7%D8%AA%D9%88_%D9%85%D9%8A%D9%84%D8%A7%D9%86_%D8%A7%D9%84%D8%B4%D8%AA%D9%88%D9%8A_2012?src=hash"><s>#</s><b>ميركاتو_ميلان_الشتوي_2012</b></a> اتمنى قدوم سوبر ماريو او اي لاعب يشارك في الابطال . بس اتوقع كالعاده الميلان سيتجه لفيا لانخفاض تكلفته :(</p> | -1.0 |
2551 | iprakadpra | 🎩 IBRAHIM XIII 🇪🇬 | 216939164 | 281930680403902464 | https://twitter.com/iprakadpra/status/281930680403902464 | 2012-12-21 01:14:46 | 1356052486 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اشوف الزمالك واخد بطولة :(( احسن انا اتعقدت :(( #قول_حاجه_وحشتك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اشوف الزمالك واخد بطولة :(( احسن انا اتعقدت :(( <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%82%D9%88%D9%84_%D8%AD%D8%A7%D8%AC%D9%87_%D9%88%D8%AD%D8%B4%D8%AA%D9%83?src=hash"><s>#</s><b>قول_حاجه_وحشتك</b></a></p> | -1.0 |
2556 | iprakadpra | 🎩 IBRAHIM XIII 🇪🇬 | 216939164 | 281927131452297216 | https://twitter.com/iprakadpra/status/281927131452297216 | 2012-12-21 01:00:40 | 1356051640 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | البلد حصل فيها ثوره ومفيش حاجه اتغيرت :(( #عيشنا_و_شوفنا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">البلد حصل فيها ثوره ومفيش حاجه اتغيرت :(( <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%B9%D9%8A%D8%B4%D9%86%D8%A7_%D9%88_%D8%B4%D9%88%D9%81%D9%86%D8%A7?src=hash"><s>#</s><b>عيشنا_و_شوفنا</b></a></p> | -1.0 |
2873 | OGamalM | Omar Gamal Mokhtar | 499086732 | 281410625647833088 | https://twitter.com/OGamalM/status/281410625647833088 | 2012-12-19 14:48:16 | 1355928496 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @SherifMakhlouf بس هتخلصوا :( أنا هكلوا كتير أوي :/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="181120303" dir="ltr" href="/SherifMakhlouf"><s>@</s><b>SherifMakhlouf</b></a> بس هتخلصوا :( أنا هكلوا كتير أوي :/</p> | -1.0 |
2874 | OGamalM | Omar Gamal Mokhtar | 499086732 | 281410023542898688 | https://twitter.com/OGamalM/status/281410023542898688 | 2012-12-19 14:45:52 | 1355928352 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @SherifMakhlouf عامل ايه يا عم في آخر أيامك في التعليم :( ؟؟ بحسد اه :'( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="181120303" dir="ltr" href="/SherifMakhlouf"><s>@</s><b>SherifMakhlouf</b></a> عامل ايه يا عم في آخر أيامك في التعليم :( ؟؟ بحسد اه :'(</p> | -1.0 |
3179 | lilacchaos_ | Gilan | 361672858 | 280826114430103552 | https://twitter.com/lilacchaos_/status/280826114430103552 | 2012-12-18 00:05:37 | 1355789137 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | @NeamaHamdy ah w gabo bardo valentine's day hehe bs mshoftosh :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="64089228" dir="ltr" href="/NeamaHamdy"><s>@</s><b>NeamaHamdy</b></a> ah w gabo bardo valentine's day hehe bs mshoftosh :(</p> | -1.0 |
3300 | lilacchaos_ | Gilan | 361672858 | 280647176718282752 | https://twitter.com/lilacchaos_/status/280647176718282752 | 2012-12-17 12:14:35 | 1355746475 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Sherybery94 idk but I felt so bad :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@Sherybery94 idk but I felt so bad :(</p> | -1.0 |
3304 | lilacchaos_ | Gilan | 361672858 | 280646264662654978 | https://twitter.com/lilacchaos_/status/280646264662654978 | 2012-12-17 12:10:58 | 1355746258 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Sherybery94 7th Jan :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@Sherybery94 7th Jan :(</p> | -1.0 |
3309 | lilacchaos_ | Gilan | 361672858 | 280645081655025664 | https://twitter.com/lilacchaos_/status/280645081655025664 | 2012-12-17 12:06:16 | 1355745976 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Hagar_Mohamed04 mesh fhmaky :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tl">@Hagar_Mohamed04 mesh fhmaky :(</p> | -1.0 |
3441 | lilacchaos_ | Gilan | 361672858 | 280438363415248897 | https://twitter.com/lilacchaos_/status/280438363415248897 | 2012-12-16 22:24:50 | 1355696690 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @mahamo5a cuz I'm in bad one :( 2mt7anna yom el 2rb3 dah :"( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@mahamo5a cuz I'm in bad one :( 2mt7anna yom el 2rb3 dah :"(</p> | -1.0 |
3717 | lilacchaos_ | Gilan | 361672858 | 279991650774827009 | https://twitter.com/lilacchaos_/status/279991650774827009 | 2012-12-15 16:49:46 | 1355590186 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Israaaaaaa0 @Call_Me_Semi ahh kay . I feel sorry for her :(( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@Israaaaaaa0 @Call_Me_Semi ahh kay . I feel sorry for her :((</p> | -1.0 |
3720 | lilacchaos_ | Gilan | 361672858 | 279990622662832130 | https://twitter.com/lilacchaos_/status/279990622662832130 | 2012-12-15 16:45:41 | 1355589941 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Call_Me_Semi what abt ur mob :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@Call_Me_Semi what abt ur mob :(</p> | -1.0 |
3900 | lilacchaos_ | Gilan | 361672858 | 279652759844823040 | https://twitter.com/lilacchaos_/status/279652759844823040 | 2012-12-14 18:23:08 | 1355509388 | 3 | 0 | 1 | 0 | NaN | NaN | NaN | @EsraaNabil97 @Call_Me_Semi lazem n vote l 1D 3shan lw the wanted fazo the wanted fans hyshmto fena :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="788052074" dir="ltr" href="/EsraaNabil97"><s>@</s><b>EsraaNabil97</b></a> @Call_Me_Semi lazem n vote l 1D 3shan lw the wanted fazo the wanted fans hyshmto fena :(</p> | -1.0 |
4055 | lilacchaos_ | Gilan | 361672858 | 279355339592327169 | https://twitter.com/lilacchaos_/status/279355339592327169 | 2012-12-13 22:41:17 | 1355438477 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | Haylor on her birthday #1 https://twitter.com/WW1DUpdates/status/279354242442076160/photo/1pic.twitter.com/VJEJJFyr 5nt2ny ya harry :@ :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Haylor on her birthday #1 <a class="twitter-timeline-link" data-expanded-url="https://twitter.com/WW1DUpdates/status/279354242442076160/photo/1" dir="ltr" href="http://t.co/VJEJJFyr" rel="nofollow noopener" target="_blank" title="https://twitter.com/WW1DUpdates/status/279354242442076160/photo/1"><span class="tco-ellipsis"></span><span class="invisible">https://twitter.com/WW1DUpdates/status/279354242442076160/photo/1</span><span class="js-display-url">pic.twitter.com/VJEJJFyr</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a> 5nt2ny ya harry :@ :(</p> | -1.0 |
4077 | lilacchaos_ | Gilan | 361672858 | 279341510347063297 | https://twitter.com/lilacchaos_/status/279341510347063297 | 2012-12-13 21:46:20 | 1355435180 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @EsraaNabil97 sry bbe mesh bft7 FB 5ales :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="788052074" dir="ltr" href="/EsraaNabil97"><s>@</s><b>EsraaNabil97</b></a> sry bbe mesh bft7 FB 5ales :(</p> | -1.0 |
4269 | iadly2 | adly | 301574481 | 279010300110446592 | https://twitter.com/iadly2/status/279010300110446592 | 2012-12-12 23:50:13 | 1355356213 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Mahmoudlabeb la :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="219672430" dir="ltr" href="/Mahmoudlabeb"><s>@</s><b>Mahmoudlabeb</b></a> la :(</p> | -1.0 |
4692 | a7meedramadan | King of Egypt | 288816881 | 278243082737176577 | https://twitter.com/a7meedramadan/status/278243082737176577 | 2012-12-10 21:01:35 | 1355173295 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لا بس بجد انا حزين :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لا بس بجد انا حزين :(</p> | -1.0 |
4766 | OGamalM | Omar Gamal Mokhtar | 499086732 | 278194876762431488 | https://twitter.com/OGamalM/status/278194876762431488 | 2012-12-10 17:50:01 | 1355161801 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @AliMaher2312 @midoahm @elhady2092 @a7medalii @ahmedabdelazim1 @samezat العالمي بيتكبر علينا ومش عايز يرد ليه :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="286722752" dir="ltr" href="/AliMaher2312"><s>@</s><b>AliMaher2312</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="162385414" dir="ltr" href="/midoahm"><s>@</s><b>midoahm</b></a> @elhady2092 <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1075817222" dir="ltr" href="/A7MEDALII"><s>@</s><b>a7medalii</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="250896032" dir="ltr" href="/ahmedabdelazim1"><s>@</s><b>ahmedabdelazim1</b></a> @samezat العالمي بيتكبر علينا ومش عايز يرد ليه :(</p> | -1.0 |
5265 | 3bdo_osama07 | abdo osama | 469881986 | 277529194831941633 | https://twitter.com/3bdo_osama07/status/277529194831941633 | 2012-12-08 21:44:50 | 1355003090 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Lolla_elmo5per أنا اللى مزعلنى انى مكملتش الكلمه :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@Lolla_elmo5per أنا اللى مزعلنى انى مكملتش الكلمه :(</p> | -1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
53172 | hebaadarweesh | هيباتيا🐻 | 262922072 | 180705674085412864 | https://twitter.com/hebaadarweesh/status/180705674085412864 | 2012-03-16 17:22:44 | 1331918564 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @iDhooom c# :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="89476262" dir="ltr" href="/iDhooom"><s>@</s><b>iDhooom</b></a> c# :(</p> | -1.0 |
53759 | hebaadarweesh | هيباتيا🐻 | 262922072 | 179226607851012096 | https://twitter.com/hebaadarweesh/status/179226607851012096 | 2012-03-12 15:25:27 | 1331565927 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @AmirMoeSoliman LOOOL maho ada2e l m5leny msh 3arfa a3mel zeft diet :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2195329565" dir="ltr" href="/amirmoesoliman"><s>@</s><b>AmirMoeSoliman</b></a> LOOOL maho ada2e l m5leny msh 3arfa a3mel zeft diet :(</p> | -1.0 |
54237 | baahr | بحر نصرالدين بحر | 48950306 | 177574721859223552 | https://twitter.com/baahr/status/177574721859223552 | 2012-03-08 02:01:27 | 1331172087 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MidooDj هاااااااار اسود :( خير خير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="122771789" dir="ltr" href="/MidooDj"><s>@</s><b>MidooDj</b></a> هاااااااار اسود :( خير خير</p> | -1.0 |
54238 | baahr | بحر نصرالدين بحر | 48950306 | 177574408951574528 | https://twitter.com/baahr/status/177574408951574528 | 2012-03-08 02:00:12 | 1331172012 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Salma_ts2al totally agree with u salma :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2511468588" dir="ltr" href="/Salma_ts2al"><s>@</s><b>Salma_ts2al</b></a> totally agree with u salma :(</p> | -1.0 |
54605 | Ramiiaz | رامي حبيبات | 341565295 | 176330868955160577 | https://twitter.com/Ramiiaz/status/176330868955160577 | 2012-03-04 15:38:49 | 1330875529 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ten_n0 @__Zidan والله ببص بأدب :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3411011799" dir="ltr" href="/ten_n0"><s>@</s><b>ten_n0</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2184372818" dir="ltr" href="/__zidan"><s>@</s><b>__Zidan</b></a> والله ببص بأدب :(</p> | -1.0 |
54944 | baahr | بحر نصرالدين بحر | 48950306 | 175561956000935937 | https://twitter.com/baahr/status/175561956000935937 | 2012-03-02 12:43:26 | 1330692206 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @EsraaHussin اسراء اسف :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="175156873" dir="ltr" href="/EsraaHussin"><s>@</s><b>EsraaHussin</b></a> اسراء اسف :(</p> | -1.0 |
56123 | HazemSHokry | Hazem | 153918738 | 172006551769452545 | https://twitter.com/HazemSHokry/status/172006551769452545 | 2012-02-21 17:15:32 | 1329844532 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">:(</p> | -1.0 |
56499 | HithamEsam | Hitham Esam | 136221289 | 171175988967903233 | https://twitter.com/HithamEsam/status/171175988967903233 | 2012-02-19 10:15:10 | 1329646510 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | work :( (@ Informatique Assiut) http://4sq.com/wRoVya | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">work :( (@ Informatique Assiut) <a class="twitter-timeline-link" data-expanded-url="http://4sq.com/wRoVya" dir="ltr" href="http://t.co/LqBnXfNX" rel="nofollow noopener" target="_blank" title="http://4sq.com/wRoVya"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">4sq.com/wRoVya</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
56643 | AmiraKhairat | Amira Khairat | 153561663 | 170827862235021313 | https://twitter.com/AmiraKhairat/status/170827862235021313 | 2012-02-18 11:11:50 | 1329563510 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Alhamdulellah | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">Alhamdulellah <img alt="😰" aria-label="Emoji: Face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f630.png" title="Face with open mouth and cold sweat"/></p> | -1.0 |
56737 | AmiraKhairat | Amira Khairat | 153561663 | 170571493103767552 | https://twitter.com/AmiraKhairat/status/170571493103767552 | 2012-02-17 18:13:07 | 1329502387 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | COPYCAT | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">COPYCAT <img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/></p> | -1.0 |
56763 | AmiraKhairat | Amira Khairat | 153561663 | 170501064221667328 | https://twitter.com/AmiraKhairat/status/170501064221667328 | 2012-02-17 13:33:16 | 1329485596 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ingyelshazly_ DIh 7atyb2aa a5rety y3ny ragel 3agouz almany :( ??? Hahahaha #foreveralone | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="239531288" dir="ltr" href="/ingyelshazly_"><s>@</s><b>ingyelshazly_</b></a> DIh 7atyb2aa a5rety y3ny ragel 3agouz almany :( ??? Hahahaha <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/foreveralone?src=hash"><s>#</s><b>foreveralone</b></a></p> | -1.0 |
56782 | AmiraKhairat | Amira Khairat | 153561663 | 170477225152479232 | https://twitter.com/AmiraKhairat/status/170477225152479232 | 2012-02-17 11:58:32 | 1329479912 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Lasheenology HAHAHA! I wasn't trying to be annoying, u asked where the sun go? I told u gat 3ndy :( 5alas I'm sorry! I'll try to be nice :* | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="245876389" dir="ltr" href="/Lasheenology"><s>@</s><b>Lasheenology</b></a> HAHAHA! I wasn't trying to be annoying, u asked where the sun go? I told u gat 3ndy :( 5alas I'm sorry! I'll try to be nice :*</p> | -1.0 |
57369 | MerihanELSokary | MerihanEl-Sokary 🇪🇬 | 359105340 | 169041513102311424 | https://twitter.com/MerihanELSokary/status/169041513102311424 | 2012-02-13 12:53:32 | 1329137612 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | #Nefsy Azaker :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="eu"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Nefsy?src=hash"><s>#</s><b>Nefsy</b></a> Azaker :(</p> | -1.0 |
57378 | MerihanELSokary | MerihanEl-Sokary 🇪🇬 | 359105340 | 169032023250436096 | https://twitter.com/MerihanELSokary/status/169032023250436096 | 2012-02-13 12:15:49 | 1329135349 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Bad Mood :( :'( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Bad Mood :( :'(</p> | -1.0 |
58339 | AmiraKhairat | Amira Khairat | 153561663 | 166579232984678400 | https://twitter.com/AmiraKhairat/status/166579232984678400 | 2012-02-06 17:49:18 | 1328550558 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | SAND STORM | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">SAND STORM <img alt="😖" aria-label="Emoji: Confounded face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f616.png" title="Confounded face"/></p> | -1.0 |
58932 | thebassyouni | •••{Bas~you~uni} | 61592296 | 165187585075982336 | https://twitter.com/thebassyouni/status/165187585075982336 | 2012-02-02 21:39:23 | 1328218763 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @5orm rbna m3ko :((((( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="sl"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="159644072" dir="ltr" href="/5orm"><s>@</s><b>5orm</b></a> rbna m3ko :(((((</p> | -1.0 |
59449 | MoatazMekki | Moataz Mekki | 147330965 | 163926453929517056 | https://twitter.com/MoatazMekki/status/163926453929517056 | 2012-01-30 10:08:06 | 1327918086 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | Shaklohom at3een el sekka fe3lan :( abo omm el menya :@ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">Shaklohom at3een el sekka fe3lan :( abo omm el menya :@</p> | -1.0 |
59451 | mansour_mohamed | بقول اني منييح | 203271191 | 163925592067149824 | https://twitter.com/mansour_mohamed/status/163925592067149824 | 2012-01-30 10:04:41 | 1327917881 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | @Sarah_Gheita my tweeeeeeeeet :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="251738110" dir="ltr" href="/Sarah_Gheita"><s>@</s><b>Sarah_Gheita</b></a> my tweeeeeeeeet :(</p> | -1.0 |
59921 | Syndrome93 | Syndrome® | 253231908 | 162636927563079682 | https://twitter.com/Syndrome93/status/162636927563079682 | 2012-01-26 20:43:59 | 1327610639 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @BASSAMSARHAN Enta m3 mohab ? E3tzerlo 3anny :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="249135929" dir="ltr" href="/BASSAMSARHAN"><s>@</s><b>BASSAMSARHAN</b></a> Enta m3 mohab ? E3tzerlo 3anny :(</p> | -1.0 |
60392 | shaykhon1 | انا طابور خامس | 246797257 | 161494426340966400 | https://twitter.com/shaykhon1/status/161494426340966400 | 2012-01-23 17:04:06 | 1327338246 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | @walaahamdi yes | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="113894401" dir="ltr" href="/walaahamdi"><s>@</s><b>walaahamdi</b></a> yes<img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="🔫" aria-label="Emoji: Water pistol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f52b.png" title="Water pistol"/></p> | -1.0 |
60630 | Emiherbst | Emi Herbst | 153151597 | 160746563554115586 | https://twitter.com/Emiherbst/status/160746563554115586 | 2012-01-21 15:32:21 | 1327159941 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MSchenquerman con gusto!! Pero estamos lejitos :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="159603024" dir="ltr" href="/MSchenquerman"><s>@</s><b>MSchenquerman</b></a> con gusto!! Pero estamos lejitos :(</p> | -1.0 |
60634 | Emiherbst | Emi Herbst | 153151597 | 160740549253529600 | https://twitter.com/Emiherbst/status/160740549253529600 | 2012-01-21 15:08:28 | 1327158508 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @mfaingold es de Egipto ! Me cope con los atardeceres se ve..\nTe extraño feiguex! :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="268293004" dir="ltr" href="/mfaingold"><s>@</s><b>mfaingold</b></a> es de Egipto ! Me cope con los atardeceres se ve..\nTe extraño feiguex! :(</p> | -1.0 |
61237 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 158291203459256320 | https://twitter.com/ProfAhmed65/status/158291203459256320 | 2012-01-14 20:55:38 | 1326574538 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كنت بحب اقرا في الاقتصاد والبورصه والحجات التجاريه دي بعد امتحان القانون التجاري كرهت كل الحجات دي :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كنت بحب اقرا في الاقتصاد والبورصه والحجات التجاريه دي بعد امتحان القانون التجاري كرهت كل الحجات دي :(</p> | -1.0 |
61242 | Alaa_Soliman | A'laa Soliman | 247097206 | 158282751924117504 | https://twitter.com/Alaa_Soliman/status/158282751924117504 | 2012-01-14 20:22:03 | 1326572523 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "CFA scholarship exam on Monday & i just know 2day :( ...! " | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">"CFA scholarship exam on Monday & i just know 2day :( ...! "</p> | -1.0 |
61644 | HaysamElMasrY | we.Live.weLove.weLie | 104147896 | 157054196800167936 | https://twitter.com/HaysamElMasrY/status/157054196800167936 | 2012-01-11 11:00:13 | 1326279613 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | المحامي بيقولي متخفش مش هتخلي عنك :( يبقي هيتخلي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المحامي بيقولي متخفش مش هتخلي عنك :( يبقي هيتخلي</p> | -1.0 |
61679 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 156901270916046848 | https://twitter.com/ProfAhmed65/status/156901270916046848 | 2012-01-11 00:52:32 | 1326243152 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عاوز انااااام ومش جيلي نوم ,متيجي بقا :(( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عاوز انااااام ومش جيلي نوم ,متيجي بقا :((</p> | -1.0 |
62118 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155764425255690240 | https://twitter.com/ProfAhmed65/status/155764425255690240 | 2012-01-07 21:35:07 | 1325972107 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #KanNfsi اجيب عربيه 128 :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/KanNfsi?src=hash"><s>#</s><b>KanNfsi</b></a> اجيب عربيه 128 :(</p> | -1.0 |
62130 | thebassyouni | •••{Bas~you~uni} | 61592296 | 155714037320138754 | https://twitter.com/thebassyouni/status/155714037320138754 | 2012-01-07 18:14:54 | 1325960094 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MadiFierce bgd z3lan 3leha ya madi 3yzha trg3 zy ma kant 2010 in bionic era :(( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1621294614" dir="ltr" href="/MadiFierce"><s>@</s><b>MadiFierce</b></a> bgd z3lan 3leha ya madi 3yzha trg3 zy ma kant 2010 in bionic era :((</p> | -1.0 |
62164 | thebassyouni | •••{Bas~you~uni} | 61592296 | 155607939997118464 | https://twitter.com/thebassyouni/status/155607939997118464 | 2012-01-07 11:13:18 | 1325934798 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MadiFierce anta mt2ked an dh Xtina mnzrha b2aaa wo7esh awai :((((( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1621294614" dir="ltr" href="/MadiFierce"><s>@</s><b>MadiFierce</b></a> anta mt2ked an dh Xtina mnzrha b2aaa wo7esh awai :(((((</p> | -1.0 |
62340 | ProfAhmed65 | هـــــوبـــــا | 292246253 | 155121175113109504 | https://twitter.com/ProfAhmed65/status/155121175113109504 | 2012-01-06 02:59:04 | 1325818744 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Fastooka الاتنين بيلبسو ابيض وحظهم وحش :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="983595907" dir="ltr" href="/fastooka"><s>@</s><b>Fastooka</b></a> الاتنين بيلبسو ابيض وحظهم وحش :(</p> | -1.0 |
447 rows × 17 columns
egypt tweets/egypt_tweets_2013.csv - 169867 tweets
Hashtag | Count | |
---|---|---|
0 | #عن | 844 |
1 | #مصر | 582 |
2 | #MT2 | 568 |
3 | # | 429 |
4 | #حقيقة | 414 |
5 | #منير | 292 |
6 | #egypt | 247 |
7 | #خاتم_حلمي | 236 |
8 | #prt | 229 |
9 | #مرسى | 203 |
10 | #مرسي | 198 |
11 | #PRT | 189 |
12 | #Egypt | 179 |
13 | #هع | 178 |
14 | #offline | 167 |
15 | #pt | 157 |
16 | #اسيوط | 149 |
17 | #PT | 141 |
18 | #البارجيل | 129 |
19 | #اه_والله | 107 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
148243 | sarcasmad | Mohammad | 343951922 | 316472903296225280 | https://twitter.com/sarcasmad/status/316472903296225280 | 2013-03-26 08:53:14 | 1364287994 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "@_Hasnaaaa: If you tell a muslim woman to take her hijab off, You're doing feminism wrong." | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">"@_Hasnaaaa: If you tell a muslim woman to take her hijab off, You're doing feminism wrong."</p> | 0.0 |
Positive feels: 21690. Negative feels: 1738 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | hassan_el3ntbly | Hassan | 188490580 | 418169558156185600 | https://twitter.com/hassan_el3ntbly/status/418169558156185600 | 2013-12-31 23:59:26 | 1388534366 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Memo_OAttia هابى نيو يير ان شاء الله :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="452344722" dir="ltr" href="/Memo_OAttia"><s>@</s><b>Memo_OAttia</b></a> هابى نيو يير ان شاء الله :)</p> | 1.0 |
6 | hassan_el3ntbly | Hassan | 188490580 | 418168504186306561 | https://twitter.com/hassan_el3ntbly/status/418168504186306561 | 2013-12-31 23:55:15 | 1388534115 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @TasneemSh_ ana koyes el7andulillah mlnash d3wa belkolya delwa2ty :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">@TasneemSh_ ana koyes el7andulillah mlnash d3wa belkolya delwa2ty :D</p> | 1.0 |
10 | mansour_mohamed | بقول اني منييح | 203271191 | 418167600976506880 | https://twitter.com/mansour_mohamed/status/418167600976506880 | 2013-12-31 23:51:39 | 1388533899 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @mansour_mohamed انتي كل سنة وانتي طيبة لوحدك :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="203271191" dir="ltr" href="/mansour_mohamed"><s>@</s><b>mansour_mohamed</b></a> انتي كل سنة وانتي طيبة لوحدك :)</p> | 1.0 |
12 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 418167010586288128 | https://twitter.com/AhmedTarekabofa/status/418167010586288128 | 2013-12-31 23:49:19 | 1388533759 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @esraa_owis dh fen ybnte ar7mene :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="836034439" dir="ltr" href="/esraa_owis"><s>@</s><b>esraa_owis</b></a> dh fen ybnte ar7mene :D</p> | 1.0 |
13 | abdel3alwa7sh | Al-Wahsh | 285302733 | 418166231632715776 | https://twitter.com/abdel3alwa7sh/status/418166231632715776 | 2013-12-31 23:46:13 | 1388533573 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "I miss staying up late talking to you about everything. " | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">"I miss staying up late talking to you about everything. <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="📱" aria-label="Emoji: Mobile phone" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4f1.png" title="Mobile phone"/>"</p> | 1.0 |
19 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 418165621751562240 | https://twitter.com/AhmedTarekabofa/status/418165621751562240 | 2013-12-31 23:43:48 | 1388533428 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @esraa_owis :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="836034439" dir="ltr" href="/esraa_owis"><s>@</s><b>esraa_owis</b></a> :D</p> | 1.0 |
21 | hassan_el3ntbly | Hassan | 188490580 | 418169558156185600 | https://twitter.com/hassan_el3ntbly/status/418169558156185600 | 2013-12-31 23:59:26 | 1388534366 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Memo_OAttia هابى نيو يير ان شاء الله :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="452344722" dir="ltr" href="/Memo_OAttia"><s>@</s><b>Memo_OAttia</b></a> هابى نيو يير ان شاء الله :)</p> | 1.0 |
26 | hassan_el3ntbly | Hassan | 188490580 | 418168504186306561 | https://twitter.com/hassan_el3ntbly/status/418168504186306561 | 2013-12-31 23:55:15 | 1388534115 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @TasneemSh_ ana koyes el7andulillah mlnash d3wa belkolya delwa2ty :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">@TasneemSh_ ana koyes el7andulillah mlnash d3wa belkolya delwa2ty :D</p> | 1.0 |
30 | mansour_mohamed | بقول اني منييح | 203271191 | 418167600976506880 | https://twitter.com/mansour_mohamed/status/418167600976506880 | 2013-12-31 23:51:39 | 1388533899 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @mansour_mohamed انتي كل سنة وانتي طيبة لوحدك :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="203271191" dir="ltr" href="/mansour_mohamed"><s>@</s><b>mansour_mohamed</b></a> انتي كل سنة وانتي طيبة لوحدك :)</p> | 1.0 |
32 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 418167010586288128 | https://twitter.com/AhmedTarekabofa/status/418167010586288128 | 2013-12-31 23:49:19 | 1388533759 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @esraa_owis dh fen ybnte ar7mene :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="836034439" dir="ltr" href="/esraa_owis"><s>@</s><b>esraa_owis</b></a> dh fen ybnte ar7mene :D</p> | 1.0 |
33 | abdel3alwa7sh | Al-Wahsh | 285302733 | 418166231632715776 | https://twitter.com/abdel3alwa7sh/status/418166231632715776 | 2013-12-31 23:46:13 | 1388533573 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "I miss staying up late talking to you about everything. " | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">"I miss staying up late talking to you about everything. <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="📱" aria-label="Emoji: Mobile phone" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4f1.png" title="Mobile phone"/>"</p> | 1.0 |
39 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 418165621751562240 | https://twitter.com/AhmedTarekabofa/status/418165621751562240 | 2013-12-31 23:43:48 | 1388533428 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @esraa_owis :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="836034439" dir="ltr" href="/esraa_owis"><s>@</s><b>esraa_owis</b></a> :D</p> | 1.0 |
43 | Ashraket_Essam | Ashraket. | 1398419688 | 418165297749979136 | https://twitter.com/Ashraket_Essam/status/418165297749979136 | 2013-12-31 23:42:30 | 1388533350 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وفيها ايام لما افتكرها مبتخلنيش اعمل حاجة غير انى ابتسم وافرح من قلبى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وفيها ايام لما افتكرها مبتخلنيش اعمل حاجة غير انى ابتسم وافرح من قلبى <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/></p> | 1.0 |
45 | Arwaaaa__ | Arwa | 563269598 | 418165169609793537 | https://twitter.com/Arwaaaa__/status/418165169609793537 | 2013-12-31 23:42:00 | 1388533320 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لغاية الساعة 3 بحس راسي سخنت :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لغاية الساعة 3 بحس راسي سخنت :D</p> | 1.0 |
50 | hassan_el3ntbly | Hassan | 188490580 | 418164715647672320 | https://twitter.com/hassan_el3ntbly/status/418164715647672320 | 2013-12-31 23:40:11 | 1388533211 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @noovatic طالما زيي بيقى كدة انت فالسليم :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="176257552" dir="ltr" href="/noovatic"><s>@</s><b>noovatic</b></a> طالما زيي بيقى كدة انت فالسليم :D</p> | 1.0 |
52 | hassan_el3ntbly | Hassan | 188490580 | 418164555291062273 | https://twitter.com/hassan_el3ntbly/status/418164555291062273 | 2013-12-31 23:39:33 | 1388533173 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @TasneemSh_ ana koyes el7amdulillah , enty 3amla esh ? :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">@TasneemSh_ ana koyes el7amdulillah , enty 3amla esh ? :D</p> | 1.0 |
56 | hassan_el3ntbly | Hassan | 188490580 | 418163816468578304 | https://twitter.com/hassan_el3ntbly/status/418163816468578304 | 2013-12-31 23:36:37 | 1388532997 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @noovatic و اى حاجة تسمعيها تكتبيها كدة :@ افرضى الراجل بيشتم نفسه مثلا :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="176257552" dir="ltr" href="/noovatic"><s>@</s><b>noovatic</b></a> و اى حاجة تسمعيها تكتبيها كدة :@ افرضى الراجل بيشتم نفسه مثلا :D</p> | 1.0 |
58 | Ahmed3_11 | Ahmed Yasser | 1552343162 | 418163666832596992 | https://twitter.com/Ahmed3_11/status/418163666832596992 | 2013-12-31 23:36:01 | 1388532961 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @AhmedGELsherif Eshta :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tr"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1465481952" dir="ltr" href="/AhmedGELsherif"><s>@</s><b>AhmedGELsherif</b></a> Eshta :D</p> | 1.0 |
62 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418163159938375680 | https://twitter.com/WSaifelnasr/status/418163159938375680 | 2013-12-31 23:34:01 | 1388532841 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @habO_0sh \nكل عام انتي وأﻷسره الكريمه\nبخير وسعاده \nآمييييين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1053196262" dir="ltr" href="/habO_0sh"><s>@</s><b>habO_0sh</b></a> \nكل عام انتي وأﻷسره الكريمه\nبخير وسعاده \nآمييييين <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
65 | hassan_el3ntbly | Hassan | 188490580 | 418162783029854208 | https://twitter.com/hassan_el3ntbly/status/418162783029854208 | 2013-12-31 23:32:31 | 1388532751 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @TasneemSh_ tasneeem , happy new year w ya rab tokon sana 7elwa 3aleky insha'allah :'),wallah fr7teny :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">@TasneemSh_ tasneeem , happy new year w ya rab tokon sana 7elwa 3aleky insha'allah :'),wallah fr7teny :D</p> | 1.0 |
69 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418162413826244608 | https://twitter.com/WSaifelnasr/status/418162413826244608 | 2013-12-31 23:31:03 | 1388532663 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @berofery \nبصراحه الحمدلله انها خلصت !!\nوكل عام وأنتي بخير واﻷسره الكريمه بأحسن حالpic.twitter.com/I9xMZ8tyZb | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@berofery \nبصراحه الحمدلله انها خلصت !!\nوكل عام وأنتي بخير واﻷسره الكريمه بأحسن حال<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/I9xMZ8tyZb">pic.twitter.com/I9xMZ8tyZb</a></p> | 1.0 |
85 | iHamole | 7aMoOle | 304667103 | 418161115252924416 | https://twitter.com/iHamole/status/418161115252924416 | 2013-12-31 23:25:53 | 1388532353 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @NadoooshM ثانكس ع التوضيح :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3178635463" dir="ltr" href="/nadoooshm"><s>@</s><b>NadoooshM</b></a> ثانكس ع التوضيح :D</p> | 1.0 |
90 | YumnaSherief | الأغا | 1104748830 | 418160535650435072 | https://twitter.com/YumnaSherief/status/418160535650435072 | 2013-12-31 23:23:35 | 1388532215 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @glagxypop wnty 7bbty w sa7bty daymn | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@glagxypop wnty 7bbty w sa7bty daymn <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
95 | Ahmed3_11 | Ahmed Yasser | 1552343162 | 418159831535845376 | https://twitter.com/Ahmed3_11/status/418159831535845376 | 2013-12-31 23:20:47 | 1388532047 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @AhmedGELsherif 5las yba el5ames elgay 3andk anta :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tl"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1465481952" dir="ltr" href="/AhmedGELsherif"><s>@</s><b>AhmedGELsherif</b></a> 5las yba el5ames elgay 3andk anta :D</p> | 1.0 |
97 | YumnaSherief | الأغا | 1104748830 | 418159329947435008 | https://twitter.com/YumnaSherief/status/418159329947435008 | 2013-12-31 23:18:47 | 1388531927 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @MariOoOmGamal yarb tb2e mbsouta 3ltool :) kol sana wnty a7la | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1260553620" dir="ltr" href="/MariOoOmGamal"><s>@</s><b>MariOoOmGamal</b></a> yarb tb2e mbsouta 3ltool :) kol sana wnty a7la <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 2.0 |
98 | hassan_el3ntbly | Hassan | 188490580 | 418159293230485504 | https://twitter.com/hassan_el3ntbly/status/418159293230485504 | 2013-12-31 23:18:39 | 1388531919 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @noovatic اول مره تقولى جمله عدله من اول المنشن الملعون دة :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="176257552" dir="ltr" href="/noovatic"><s>@</s><b>noovatic</b></a> اول مره تقولى جمله عدله من اول المنشن الملعون دة :D</p> | 1.0 |
100 | Ahmed3_11 | Ahmed Yasser | 1552343162 | 418158755881422848 | https://twitter.com/Ahmed3_11/status/418158755881422848 | 2013-12-31 23:16:31 | 1388531791 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @AhmedGELsherif w nta gay t2oly dlw2ty ba3d m gbnaha :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pl"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1465481952" dir="ltr" href="/AhmedGELsherif"><s>@</s><b>AhmedGELsherif</b></a> w nta gay t2oly dlw2ty ba3d m gbnaha :D</p> | 1.0 |
103 | doaahesham6 | doaa hesham | 1143888655 | 418158295975985152 | https://twitter.com/doaahesham6/status/418158295975985152 | 2013-12-31 23:14:41 | 1388531681 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | قررت اعمل حاجة :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">قررت اعمل حاجة :)</p> | 1.0 |
108 | hassan_el3ntbly | Hassan | 188490580 | 418157474953576448 | https://twitter.com/hassan_el3ntbly/status/418157474953576448 | 2013-12-31 23:11:25 | 1388531485 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | @MriamM_ ya rab insha'allah :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="358353893" dir="ltr" href="/MriamM_"><s>@</s><b>MriamM_</b></a> ya rab insha'allah :D</p> | 1.0 |
111 | Eslam_Esmail1 | حسكا | 1672520426 | 418157057276383232 | https://twitter.com/Eslam_Esmail1/status/418157057276383232 | 2013-12-31 23:09:46 | 1388531386 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @ahmed_mohsen41 التراااااااااس اهلاااااااااوي.......هو ده الكلام | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@ahmed_mohsen41 التراااااااااس اهلاااااااااوي.......هو ده الكلام <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
169493 | sarcasmad | Mohammad | 343951922 | 286418210209816576 | https://twitter.com/sarcasmad/status/286418210209816576 | 2013-01-02 10:26:37 | 1357122397 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا عايز دبووس الاهلي وبرشلونه :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا عايز دبووس الاهلي وبرشلونه :D</p> | 1.0 |
169510 | sarcasmad | Mohammad | 343951922 | 286394265519673344 | https://twitter.com/sarcasmad/status/286394265519673344 | 2013-01-02 08:51:28 | 1357116688 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @hyamprod You are exactly what you tolerate. You are what you put up with. You are what you accept. You are what you stand for. :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@hyamprod You are exactly what you tolerate. You are what you put up with. You are what you accept. You are what you stand for. :D</p> | 1.0 |
169515 | iAbutalebz | المشاغب أبو طالب | 360740198 | 286377723830599680 | https://twitter.com/iAbutalebz/status/286377723830599680 | 2013-01-02 07:45:44 | 1357112744 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @mariom_maya صباح الجمال :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="457628357" dir="ltr" href="/mariom_maya"><s>@</s><b>mariom_maya</b></a> صباح الجمال :)</p> | 1.0 |
169519 | iAbutalebz | المشاغب أبو طالب | 360740198 | 286371847652642816 | https://twitter.com/iAbutalebz/status/286371847652642816 | 2013-01-02 07:22:23 | 1357111343 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @moslma_msrya :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="713917980" dir="ltr" href="/moslma_msrya"><s>@</s><b>moslma_msrya</b></a> :)</p> | 1.0 |
169521 | iAbutalebz | المشاغب أبو طالب | 360740198 | 286370046366851073 | https://twitter.com/iAbutalebz/status/286370046366851073 | 2013-01-02 07:15:14 | 1357110914 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | السلام عليكم ورحمة الله وبركاته اسعد الله صباحكم بالخير واجمل ابتسامة تنور الوجوه صباح الخير :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">السلام عليكم ورحمة الله وبركاته اسعد الله صباحكم بالخير واجمل ابتسامة تنور الوجوه صباح الخير :)</p> | 1.0 |
169556 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286297765137494016 | https://twitter.com/kw_535/status/286297765137494016 | 2013-01-02 02:28:01 | 1357093681 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | قمة المعاناة :\nعندما تريد أن تشكو " لميّت " ما يفعله\n" الأحياء " بك ✭♩ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">قمة المعاناة :\nعندما تريد أن تشكو " لميّت " ما يفعله\n" الأحياء " بك ✭♩</p> | 1.0 |
169574 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286293698029957120 | https://twitter.com/kw_535/status/286293698029957120 | 2013-01-02 02:11:51 | 1357092711 | 1 | 2 | 1 | 0 | NaN | NaN | NaN | لآ تستغرب إلعآقل ليآ صآر مجنون \nفي ذآ إلزمن نص إلعرب مستخفه \nإللي تولع في هوى شخص مزيون \nوإللي يعآني الحظ يصفق بـ كفه\n\n | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لآ تستغرب إلعآقل ليآ صآر مجنون \nفي ذآ إلزمن نص إلعرب مستخفه \nإللي تولع في هوى شخص مزيون \nوإللي يعآني الحظ يصفق بـ كفه\n\n<img alt="👌" aria-label="Emoji: Ok hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c.png" title="Ok hand sign"/></p> | 1.0 |
169580 | 3abwa | صيدلى مطحون | 276923102 | 286284179249979392 | https://twitter.com/3abwa/status/286284179249979392 | 2013-01-02 01:34:01 | 1357090441 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أجعل ثقتك فى الله أكبر من أى شئ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أجعل ثقتك فى الله أكبر من أى شئ <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
169615 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286235033746939904 | https://twitter.com/kw_535/status/286235033746939904 | 2013-01-01 22:18:44 | 1357078724 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بعض البنات pic.twitter.com/PjaP1xRr”” | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بعض البنات <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> <a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/PjaP1xRr">pic.twitter.com/PjaP1xRr</a>””</p> | 1.0 |
169626 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286229498553311232 | https://twitter.com/OGamalM/status/286229498553311232 | 2013-01-01 21:56:45 | 1357077405 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Mustarinho حسدوك علي التلت أيام الاجازة :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="98217456" dir="ltr" href="/Mustarinho"><s>@</s><b>Mustarinho</b></a> حسدوك علي التلت أيام الاجازة :D</p> | 1.0 |
169628 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286229210484314112 | https://twitter.com/OGamalM/status/286229210484314112 | 2013-01-01 21:55:36 | 1357077336 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Mustarinho ألف سلامة :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="98217456" dir="ltr" href="/Mustarinho"><s>@</s><b>Mustarinho</b></a> ألف سلامة :)</p> | 1.0 |
169636 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286226588876546048 | https://twitter.com/kw_535/status/286226588876546048 | 2013-01-01 21:45:11 | 1357076711 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ࿐ ✿ ࿐\nبعض البشر ترتاح لاشفت نكه \nمن زود طيبه والعسل في كلامه \nوبعض البشر نشبه تبي منه فكه\nمع ثقل دمه جامعن به غشامه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">࿐ <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>✿<img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> ࿐\nبعض البشر ترتاح لاشفت نكه \nمن زود طيبه والعسل في كلامه \nوبعض البشر نشبه تبي منه فكه\nمع ثقل دمه جامعن به غشامه</p> | 2.0 |
169653 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286215626714931200 | https://twitter.com/kw_535/status/286215626714931200 | 2013-01-01 21:01:37 | 1357074097 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | '\n\n أنا لا أملك كل شيء..ولكن بستطاعتي أن\nأجعل من الحجر مصدر بهجة ، | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">'\n\n أنا لا أملك كل شيء..ولكن بستطاعتي أن\nأجعل من الحجر مصدر بهجة ، <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/></p> | 1.0 |
169658 | Muss6afa | م . مصطفى النصيري ⛽️ | 248793109 | 286215065844191233 | https://twitter.com/Muss6afa/status/286215065844191233 | 2013-01-01 20:59:23 | 1357073963 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الكلام على الشفااايف و الركب #ترتجف | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الكلام على الشفااايف و الركب <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AA%D8%B1%D8%AA%D8%AC%D9%81?src=hash"><s>#</s><b>ترتجف</b></a> <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
169689 | 96Pautorres | paula torres | 740555826 | 286181783412822016 | https://twitter.com/96Pautorres/status/286181783412822016 | 2013-01-01 18:47:08 | 1357066028 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | Q tl esta la loca de @Carlutabu !!!:) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">Q tl esta la loca de <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="567555986" dir="ltr" href="/Carlutabu"><s>@</s><b>Carlutabu</b></a> !!!:)</p> | 1.0 |
169694 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286167047996592129 | https://twitter.com/OGamalM/status/286167047996592129 | 2013-01-01 17:48:35 | 1357062515 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @2otta93 @leloyasser خلاص يا قطة الواد مفشوخ كفاية حرام ، عيزين نظبط لعب كده كل ليلة امتحان عنده :D :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="235925316" dir="ltr" href="/2otta93"><s>@</s><b>2otta93</b></a> @leloyasser خلاص يا قطة الواد مفشوخ كفاية حرام ، عيزين نظبط لعب كده كل ليلة امتحان عنده :D :D</p> | 1.0 |
169696 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286165567805734912 | https://twitter.com/OGamalM/status/286165567805734912 | 2013-01-01 17:42:42 | 1357062162 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @ahmedabdelazim1 @alimaher2312 اه الشرعي ده كان دلع فشخ أحلي راوند :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="250896032" dir="ltr" href="/ahmedabdelazim1"><s>@</s><b>ahmedabdelazim1</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="286722752" dir="ltr" href="/AliMaher2312"><s>@</s><b>alimaher2312</b></a> اه الشرعي ده كان دلع فشخ أحلي راوند :D</p> | 1.0 |
169697 | 96Pautorres | paula torres | 740555826 | 286165110878240769 | https://twitter.com/96Pautorres/status/286165110878240769 | 2013-01-01 17:40:53 | 1357062053 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #tarde en el barco!!!:) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/tarde?src=hash"><s>#</s><b>tarde</b></a> en el barco!!!:)</p> | 1.0 |
169698 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286163424063393792 | https://twitter.com/OGamalM/status/286163424063393792 | 2013-01-01 17:34:11 | 1357061651 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ahmedabdelazim1 @alimaher2312 حاضر :'( هنتركب صح :D ؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="250896032" dir="ltr" href="/ahmedabdelazim1"><s>@</s><b>ahmedabdelazim1</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="286722752" dir="ltr" href="/AliMaher2312"><s>@</s><b>alimaher2312</b></a> حاضر :'( هنتركب صح :D ؟</p> | 1.0 |
169738 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286122604748734464 | https://twitter.com/kw_535/status/286122604748734464 | 2013-01-01 14:51:59 | 1357051919 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | رقص بعض البنات بالعروس :) \nتعبتي روحج صراحه \nhttp://www.mob-3.com/wp-content/uploads/213.gif …” | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">رقص بعض البنات بالعروس :) \nتعبتي روحج صراحه <img alt="😄" aria-label="Emoji: Smiling face with open mouth and smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f604.png" title="Smiling face with open mouth and smiling eyes"/><img alt="✌" aria-label="Emoji: Victory hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270c.png" title="Victory hand"/>\n<a class="twitter-timeline-link" data-expanded-url="http://www.mob-3.com/wp-content/uploads/213.gif" dir="ltr" href="http://t.co/pd5PifxD" rel="nofollow noopener" target="_blank" title="http://www.mob-3.com/wp-content/uploads/213.gif"><span class="tco-ellipsis"></span><span class="invisible">http://www.</span><span class="js-display-url">mob-3.com/wp-content/upl</span><span class="invisible">oads/213.gif</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a>”</p> | 3.0 |
169743 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286115081199181824 | https://twitter.com/OGamalM/status/286115081199181824 | 2013-01-01 14:22:05 | 1357050125 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @LeloYasser ربنا معاك ان شاء الله أنا ليا ذكري طين فاناتومي أولي ببشرك يعني :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@LeloYasser ربنا معاك ان شاء الله أنا ليا ذكري طين فاناتومي أولي ببشرك يعني :D</p> | 1.0 |
169744 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286113770739228672 | https://twitter.com/OGamalM/status/286113770739228672 | 2013-01-01 14:16:53 | 1357049813 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @LeloYasser درية هتعمل الصح معاكو :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@LeloYasser درية هتعمل الصح معاكو :D</p> | 1.0 |
169750 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286104486496317440 | https://twitter.com/OGamalM/status/286104486496317440 | 2013-01-01 13:39:59 | 1357047599 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Ehab_Rajab ههههههههههه :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="568880107" dir="ltr" href="/Ehab_Rajab"><s>@</s><b>Ehab_Rajab</b></a> ههههههههههه :D</p> | 1.0 |
169751 | DanniJungenstam | Daniella Jungenstam | 560322407 | 286102795034173440 | https://twitter.com/DanniJungenstam/status/286102795034173440 | 2013-01-01 13:33:16 | 1357047196 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ The Three Corners Ocean View http://instagr.am/p/T8WTgemNp5/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><img alt="👍" aria-label="Emoji: Thumbs up sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44d.png" title="Thumbs up sign"/><img alt="🌍" aria-label="Emoji: Earth globe europe-africa" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f30d.png" title="Earth globe europe-africa"/><img alt="💋" aria-label="Emoji: Kiss mark" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f48b.png" title="Kiss mark"/> @ The Three Corners Ocean View <a class="twitter-timeline-link" data-expanded-url="http://instagr.am/p/T8WTgemNp5/" dir="ltr" href="http://t.co/65ZoimxR" rel="nofollow noopener" target="_blank" title="http://instagr.am/p/T8WTgemNp5/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagr.am/p/T8WTgemNp5/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
169759 | OGamalM | Omar Gamal Mokhtar | 499086732 | 286090728730394624 | https://twitter.com/OGamalM/status/286090728730394624 | 2013-01-01 12:45:19 | 1357044319 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MazenRef3at m3lsh y mezo knt nmt 3yzo dlw2ty :D ? | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="328293359" dir="ltr" href="/MazenRef3at"><s>@</s><b>MazenRef3at</b></a> m3lsh y mezo knt nmt 3yzo dlw2ty :D ?</p> | 1.0 |
169764 | zeinaels | ž | 253235636 | 286067896109637632 | https://twitter.com/zeinaels/status/286067896109637632 | 2013-01-01 11:14:35 | 1357038875 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #HarryIsAmazingAndWeLoveHim | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HarryIsAmazingAndWeLoveHim?src=hash"><s>#</s><b>HarryIsAmazingAndWeLoveHim</b></a> <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
169768 | zeinaels | ž | 253235636 | 286059077421899776 | https://twitter.com/zeinaels/status/286059077421899776 | 2013-01-01 10:39:33 | 1357036773 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | happyy birthdayy popsss | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">happyy birthdayy popsss <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
169814 | AhmedBaghdady21 | Ahmed Baghdady | 731700044 | 285947304605777920 | https://twitter.com/AhmedBaghdady21/status/285947304605777920 | 2013-01-01 03:15:24 | 1357010124 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @AhmedBMarwan wa7sh :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">@AhmedBMarwan wa7sh :D</p> | 1.0 |
169825 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285928541563015171 | https://twitter.com/kw_535/status/285928541563015171 | 2013-01-01 02:00:51 | 1357005651 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | قل للمواجع روسنا مابها كيف ••• نشرب غثاها مثل شرب القهااوي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="👍" aria-label="Emoji: Thumbs up sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44d.png" title="Thumbs up sign"/>قل للمواجع روسنا مابها كيف ••• نشرب غثاها مثل شرب القهااوي<img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/></p> | 2.0 |
169826 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 285928360360693761 | https://twitter.com/kw_535/status/285928360360693761 | 2013-01-01 02:00:08 | 1357005608 | 1 | 3 | 0 | 0 | NaN | NaN | NaN | @Q5566\nقل للمواجع روسنا مابها كيف ••• نشرب غثاها مثل شرب القهااوي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2490233567" dir="ltr" href="/Q5566"><s>@</s><b>Q5566</b></a>\n<img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="👍" aria-label="Emoji: Thumbs up sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44d.png" title="Thumbs up sign"/>قل للمواجع روسنا مابها كيف ••• نشرب غثاها مثل شرب القهااوي<img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/></p> | 2.0 |
21690 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
44 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 418165169915965440 | https://twitter.com/AhmedTarekabofa/status/418165169915965440 | 2013-12-31 23:42:00 | 1388533320 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @esraa_owis يا بختكم ناس ليها حفﻻت وناس ليه قنا وكليات :-[ :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="836034439" dir="ltr" href="/esraa_owis"><s>@</s><b>esraa_owis</b></a> يا بختكم ناس ليها حفﻻت وناس ليه قنا وكليات :-[ :(</p> | -1.0 |
102 | hassan_el3ntbly | Hassan | 188490580 | 418158382324142081 | https://twitter.com/hassan_el3ntbly/status/418158382324142081 | 2013-12-31 23:15:02 | 1388531702 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @noovatic ولا حلو ولا نيله دا زفت الزفت ، هباب الهباب والله :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="176257552" dir="ltr" href="/noovatic"><s>@</s><b>noovatic</b></a> ولا حلو ولا نيله دا زفت الزفت ، هباب الهباب والله :(</p> | -1.0 |
114 | hassan_el3ntbly | Hassan | 188490580 | 418156687527526400 | https://twitter.com/hassan_el3ntbly/status/418156687527526400 | 2013-12-31 23:08:17 | 1388531297 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @noovatic عماره خرا :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="176257552" dir="ltr" href="/noovatic"><s>@</s><b>noovatic</b></a> عماره خرا :(</p> | -1.0 |
119 | hassan_el3ntbly | Hassan | 188490580 | 418155738239094784 | https://twitter.com/hassan_el3ntbly/status/418155738239094784 | 2013-12-31 23:04:31 | 1388531071 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @noovatic انا فعلا بحبها و نقصت فيها درجة و نص ، بس كرهتها اول مادخلت هندسة :(( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="176257552" dir="ltr" href="/noovatic"><s>@</s><b>noovatic</b></a> انا فعلا بحبها و نقصت فيها درجة و نص ، بس كرهتها اول مادخلت هندسة :((</p> | -1.0 |
158 | iHamole | 7aMoOle | 304667103 | 418149188422340608 | https://twitter.com/iHamole/status/418149188422340608 | 2013-12-31 22:38:30 | 1388529510 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا مغيرتش هدومى ليه سنة :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا مغيرتش هدومى ليه سنة :(</p> | -1.0 |
190 | GasserOsayed | جاســـــــــر | 285172657 | 418144529263648768 | https://twitter.com/GasserOsayed/status/418144529263648768 | 2013-12-31 22:19:59 | 1388528399 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | awL post 3awz aktbo al sana yn3aL De!! Qena m3a e7tramii L as7abii alli feha >:( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tl">awL post 3awz aktbo al sana yn3aL De!! Qena m3a e7tramii L as7abii alli feha >:(</p> | -1.0 |
319 | BassemHermila | bassem. | 564093379 | 418131014310199297 | https://twitter.com/BassemHermila/status/418131014310199297 | 2013-12-31 21:26:16 | 1388525176 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | el mafrood akon fel kenesa delwa2ty :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht">el mafrood akon fel kenesa delwa2ty :(</p> | -1.0 |
457 | WouterStenhuis | wouter | 360178482 | 418096964241469440 | https://twitter.com/WouterStenhuis/status/418096964241469440 | 2013-12-31 19:10:58 | 1388517058 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | “@EredivisieMemes: Darts pic.twitter.com/Up7uYiMbIe” @marc_owen_boone @SdenBoer_ niett! | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="de">“<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="798844526" dir="ltr" href="/EredivisieMemes"><s>@</s><b>EredivisieMemes</b></a>: Darts <a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/Up7uYiMbIe">pic.twitter.com/Up7uYiMbIe</a>” <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="490568259" dir="ltr" href="/marc_owen_boone"><s>@</s><b>marc_owen_boone</b></a> @SdenBoer_ niett!<img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/></p> | -1.0 |
678 | mkhegy | المركب بتغرق ياقبطان | 256941581 | 418030375047536640 | https://twitter.com/mkhegy/status/418030375047536640 | 2013-12-31 14:46:22 | 1388501182 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 2013 امشي بقى :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">2013 امشي بقى :(</p> | -1.0 |
731 | YumnaSherief | الأغا | 1104748830 | 418006170117627904 | https://twitter.com/YumnaSherief/status/418006170117627904 | 2013-12-31 13:10:11 | 1388495411 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | طب انا قاعدة مستنية :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">طب انا قاعدة مستنية :(</p> | -1.0 |
814 | YumnaSherief | الأغا | 1104748830 | 417984381731749888 | https://twitter.com/YumnaSherief/status/417984381731749888 | 2013-12-31 11:43:37 | 1388490217 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عايزه اقعد اذاكر انهاردة . خلاص باقى بكره بس :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عايزه اقعد اذاكر انهاردة . خلاص باقى بكره بس :(</p> | -1.0 |
839 | omnia_elbahrawy | Omnia el bahrawy | 142385677 | 417976346628071424 | https://twitter.com/omnia_elbahrawy/status/417976346628071424 | 2013-12-31 11:11:41 | 1388488301 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ThatDouche_ I don't think I ammmm. | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@ThatDouche_ I don't think I ammmm. <img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/><img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/></p> | -1.0 |
854 | biomy | mostafa ragab | 69235302 | 417973238376169472 | https://twitter.com/biomy/status/417973238376169472 | 2013-12-31 10:59:20 | 1388487560 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لما تنزل الشغل غصب عنك يو فيييييل لايك "احنا خدامين الجزم يا معالي الباشا" … #عصفور - ستايل. :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لما تنزل الشغل غصب عنك يو فيييييل لايك "احنا خدامين الجزم يا معالي الباشا" … <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%B9%D8%B5%D9%81%D9%88%D8%B1?src=hash"><s>#</s><b>عصفور</b></a> - ستايل. :(</p> | -1.0 |
966 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417904225273012225 | https://twitter.com/AhmedTarekabofa/status/417904225273012225 | 2013-12-31 06:25:06 | 1388471106 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | صحابي كلهم بيقولو اني ال بخرجهم من الزعل لكن انا بقي مين يخرجني من ال انا فيه\n#يارب :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صحابي كلهم بيقولو اني ال بخرجهم من الزعل لكن انا بقي مين يخرجني من ال انا فيه\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%8A%D8%A7%D8%B1%D8%A8?src=hash"><s>#</s><b>يارب</b></a> :(</p> | -1.0 |
972 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417903307571879936 | https://twitter.com/AhmedTarekabofa/status/417903307571879936 | 2013-12-31 06:21:27 | 1388470887 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | :(#ياربpic.twitter.com/yI0Wg4zJOr | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">:(<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%8A%D8%A7%D8%B1%D8%A8?src=hash"><s>#</s><b>يارب</b></a><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/yI0Wg4zJOr">pic.twitter.com/yI0Wg4zJOr</a></p> | -1.0 |
977 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417902122446118912 | https://twitter.com/AhmedTarekabofa/status/417902122446118912 | 2013-12-31 06:16:44 | 1388470604 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @AhmedShinko7 ana 3awz chklta :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="fi"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1463544558" dir="ltr" href="/AhmedShinko7"><s>@</s><b>AhmedShinko7</b></a> ana 3awz chklta :(</p> | -1.0 |
979 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417901510019018752 | https://twitter.com/AhmedTarekabofa/status/417901510019018752 | 2013-12-31 06:14:18 | 1388470458 | 2 | 1 | 0 | 0 | NaN | NaN | NaN | @AhmedShinko7 @MK_Sara_96 والله ما بكدب :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1463544558" dir="ltr" href="/AhmedShinko7"><s>@</s><b>AhmedShinko7</b></a> @MK_Sara_96 والله ما بكدب :(</p> | -1.0 |
988 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417897943472279552 | https://twitter.com/AhmedTarekabofa/status/417897943472279552 | 2013-12-31 06:00:08 | 1388469608 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @AhmedShinko7 والله معارف حاله اكتئاب :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1463544558" dir="ltr" href="/AhmedShinko7"><s>@</s><b>AhmedShinko7</b></a> والله معارف حاله اكتئاب :(</p> | -1.0 |
989 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417897710331904000 | https://twitter.com/AhmedTarekabofa/status/417897710331904000 | 2013-12-31 05:59:12 | 1388469552 | 1 | 2 | 0 | 0 | NaN | NaN | NaN | @AhmedShinko7 @MK_Sara_96 طب يا اخي انا اعرفك من كام سنه مجبتليش حته ماندولين ليه بس كده :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1463544558" dir="ltr" href="/AhmedShinko7"><s>@</s><b>AhmedShinko7</b></a> @MK_Sara_96 طب يا اخي انا اعرفك من كام سنه مجبتليش حته ماندولين ليه بس كده :(</p> | -1.0 |
998 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417890503255158784 | https://twitter.com/AhmedTarekabofa/status/417890503255158784 | 2013-12-31 05:30:34 | 1388467834 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @MK_Sara_96 يعني هو احنا ال نفعين انا ف كليه العذاب )حقوق:( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@MK_Sara_96 يعني هو احنا ال نفعين انا ف كليه العذاب )حقوق:(</p> | -1.0 |
1001 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417888206361989120 | https://twitter.com/AhmedTarekabofa/status/417888206361989120 | 2013-12-31 05:21:27 | 1388467287 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كليه حقوق ارحميني :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كليه حقوق ارحميني :(</p> | -1.0 |
1018 | omnia_elbahrawy | Omnia el bahrawy | 142385677 | 417860848099799040 | https://twitter.com/omnia_elbahrawy/status/417860848099799040 | 2013-12-31 03:32:44 | 1388460764 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | My teeth really hurt | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My teeth really hurt <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
1084 | hassan_el3ntbly | Hassan | 188490580 | 417815001261694976 | https://twitter.com/hassan_el3ntbly/status/417815001261694976 | 2013-12-31 00:30:33 | 1388449833 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @AsmaaAShihab نامى لحد اخر واحد :'D انا هبدا 2-1 :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@AsmaaAShihab نامى لحد اخر واحد :'D انا هبدا 2-1 :(</p> | -1.0 |
1098 | RaoufLotfy | Raouf D-Lotfy | 99255354 | 417812839429312512 | https://twitter.com/RaoufLotfy/status/417812839429312512 | 2013-12-31 00:21:58 | 1388449318 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | We're cute like that @ Offshore http://instagram.com/p/ikNJV4TI9J/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">We're cute like that <img alt="💥" aria-label="Emoji: Collision symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a5.png" title="Collision symbol"/> @ Offshore <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/ikNJV4TI9J/" dir="ltr" href="http://t.co/vKbi15FW5O" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/ikNJV4TI9J/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/ikNJV4TI9J/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
1209 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 417794999208902657 | https://twitter.com/AhmedTarekabofa/status/417794999208902657 | 2013-12-30 23:11:04 | 1388445064 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يارب انا تعبان وانت ال عالم بالي ف خلقك :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يارب انا تعبان وانت ال عالم بالي ف خلقك :(</p> | -1.0 |
1251 | ZenabHafez | Zeinab | 73558411 | 417789857315172352 | https://twitter.com/ZenabHafez/status/417789857315172352 | 2013-12-30 22:50:38 | 1388443838 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | صداع لا مثيل له | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صداع لا مثيل له <img alt="😰" aria-label="Emoji: Face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f630.png" title="Face with open mouth and cold sweat"/></p> | -1.0 |
1368 | YumnaSherief | الأغا | 1104748830 | 417770999481135104 | https://twitter.com/YumnaSherief/status/417770999481135104 | 2013-12-30 21:35:42 | 1388439342 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | و انا كمان عايزة اتكلم .. اعمل ايه طيب .. ؟ :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">و انا كمان عايزة اتكلم .. اعمل ايه طيب .. ؟ :(</p> | -1.0 |
1417 | Simolution | islam abbas | 126748348 | 417765593249775616 | https://twitter.com/Simolution/status/417765593249775616 | 2013-12-30 21:14:13 | 1388438053 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | انا زعلان علي نفسي عشان مش بكتب زي الاول ومش عارف أفكر من كتر الإرهاق والتعب بسبب ضغط الشغل ده :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا زعلان علي نفسي عشان مش بكتب زي الاول ومش عارف أفكر من كتر الإرهاق والتعب بسبب ضغط الشغل ده :(</p> | -1.0 |
1425 | YumnaSherief | الأغا | 1104748830 | 417764825113317376 | https://twitter.com/YumnaSherief/status/417764825113317376 | 2013-12-30 21:11:10 | 1388437870 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @ahmad_eskander انا مقدرش اقراه تانى ابدا لانى بعيش فى حالة الكتاب و مش عايزه اكتئب :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1043034515092852736" dir="ltr" href="/ahmad_eskander"><s>@</s><b>ahmad_eskander</b></a> انا مقدرش اقراه تانى ابدا لانى بعيش فى حالة الكتاب و مش عايزه اكتئب :(</p> | -1.0 |
1448 | YumnaSherief | الأغا | 1104748830 | 417763529144668161 | https://twitter.com/YumnaSherief/status/417763529144668161 | 2013-12-30 21:06:01 | 1388437561 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @ahmad_eskander ايوه :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1043034515092852736" dir="ltr" href="/ahmad_eskander"><s>@</s><b>ahmad_eskander</b></a> ايوه :(</p> | -1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
167708 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 289325638031122432 | https://twitter.com/kw_535/status/289325638031122432 | 2013-01-10 10:59:42 | 1357815582 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | تحصل على الرَّاحة بتقديم الأتعاب \nما فيه شيّ وانت مرتاح .. ياتيك ! \n\nإن كان ما جاهدت في بَذل الأسباب \nمحدٍ يجي ويحب خشمك ويعطيك ( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">تحصل على الرَّاحة بتقديم الأتعاب \nما فيه شيّ وانت مرتاح .. ياتيك ! \n\nإن كان ما جاهدت في بَذل الأسباب \nمحدٍ يجي ويحب خشمك ويعطيك ( <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
167709 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 289325459731275776 | https://twitter.com/kw_535/status/289325459731275776 | 2013-01-10 10:58:59 | 1357815539 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | لـ البيع ( قلب ) يحب و يود و يصون \nقناعته بـ ( التضحيه و الأمانه ) \n\nكل شي عنده ممكن يطوف ويهون \nإلا ( الهجر و المهزله و الخيانه ) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لـ البيع ( قلب ) يحب و يود و يصون \nقناعته بـ ( التضحيه و الأمانه ) \n\nكل شي عنده ممكن يطوف ويهون \nإلا ( الهجر و المهزله و الخيانه ) <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
168079 | mahmoudfaek | فائق | 746447911 | 288681402378104832 | https://twitter.com/mahmoudfaek/status/288681402378104832 | 2013-01-08 16:19:44 | 1357661984 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @KotoRady طيب مبيحصلش معايا الكلام ده :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@KotoRady طيب مبيحصلش معايا الكلام ده :(</p> | -1.0 |
168102 | sarcasmad | Mohammad | 343951922 | 288641760136159233 | https://twitter.com/sarcasmad/status/288641760136159233 | 2013-01-08 13:42:12 | 1357652532 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | TE Data بتربيني :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">TE Data بتربيني :(</p> | -1.0 |
168107 | alaatiemor | عَــــلاَء تَيِمُور | 247901452 | 288631930579206144 | https://twitter.com/alaatiemor/status/288631930579206144 | 2013-01-08 13:03:09 | 1357650189 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @ShMndoraa. Momken yaaaah :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="de"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="614158191" dir="ltr" href="/ShMndoraa"><s>@</s><b>ShMndoraa</b></a>. Momken yaaaah :(</p> | -1.0 |
168132 | lilacchaos_ | Gilan | 361672858 | 288617405452804096 | https://twitter.com/lilacchaos_/status/288617405452804096 | 2013-01-08 12:05:26 | 1357646726 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الواحد خايف النتيجه طلعت :( .. يا رب خير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الواحد خايف النتيجه طلعت :( .. يا رب خير</p> | -1.0 |
168183 | diaa_hameed | وأَعِفُ عِندَ المَغنمِ | 146291050 | 288549589265563648 | https://twitter.com/diaa_hameed/status/288549589265563648 | 2013-01-08 07:35:57 | 1357630557 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "@mido22essam: @diaa_hameed https://www.facebook.com/Esam.Fattah/posts/555506287794368 …" الشاب ده محتاج اللي يكتشفه :( @mfathypress | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"@mido22essam: <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="146291050" dir="ltr" href="/diaa_hameed"><s>@</s><b>diaa_hameed</b></a> <a class="twitter-timeline-link" data-expanded-url="https://www.facebook.com/Esam.Fattah/posts/555506287794368" dir="ltr" href="https://t.co/fBohPZWd" rel="nofollow noopener" target="_blank" title="https://www.facebook.com/Esam.Fattah/posts/555506287794368"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">facebook.com/Esam.Fattah/po</span><span class="invisible">sts/555506287794368</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a>" الشاب ده محتاج اللي يكتشفه :( <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="352545891" dir="ltr" href="/mfathypress"><s>@</s><b>mfathypress</b></a></p> | -1.0 |
168188 | alaatiemor | عَــــلاَء تَيِمُور | 247901452 | 288507947519188992 | https://twitter.com/alaatiemor/status/288507947519188992 | 2013-01-08 04:50:29 | 1357620629 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | @ShMndoraa ah wallahy :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="614158191" dir="ltr" href="/ShMndoraa"><s>@</s><b>ShMndoraa</b></a> ah wallahy :(</p> | -1.0 |
168200 | OGamalM | Omar Gamal Mokhtar | 499086732 | 288487928122982400 | https://twitter.com/OGamalM/status/288487928122982400 | 2013-01-08 03:30:56 | 1357615856 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | حمادتي تعبت أوي اه يا حمادتي :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حمادتي تعبت أوي اه يا حمادتي :(</p> | -1.0 |
168203 | OGamalM | Omar Gamal Mokhtar | 499086732 | 288487059440693249 | https://twitter.com/OGamalM/status/288487059440693249 | 2013-01-08 03:27:29 | 1357615649 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @HeshamHaleem انا مرمي اهو في القطر :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="56995204" dir="ltr" href="/HeshamHaleem"><s>@</s><b>HeshamHaleem</b></a> انا مرمي اهو في القطر :(</p> | -1.0 |
168250 | lilacchaos_ | Gilan | 361672858 | 288386099867426816 | https://twitter.com/lilacchaos_/status/288386099867426816 | 2013-01-07 20:46:18 | 1357591578 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Israaaaaaa0 mesh naf3 3la l.mob :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht">@Israaaaaaa0 mesh naf3 3la l.mob :(</p> | -1.0 |
168347 | sarcasmad | Mohammad | 343951922 | 288252449658122240 | https://twitter.com/sarcasmad/status/288252449658122240 | 2013-01-07 11:55:14 | 1357559714 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @iWala2 hey doctor, i feel pain in my teeth in the left side ... i can't eat on it :( what should i do? | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="238071283" dir="ltr" href="/iWala2"><s>@</s><b>iWala2</b></a> hey doctor, i feel pain in my teeth in the left side ... i can't eat on it :( what should i do?</p> | -1.0 |
168435 | hanynasr8 | هاني نصر | 1030375592 | 288030716770521088 | https://twitter.com/hanynasr8/status/288030716770521088 | 2013-01-06 21:14:08 | 1357506848 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أربعين جيكا النهاردة .. الله يرحمك ياصاحبى :( @T4CT -- خيرت الشاطر (@khairatAlshater) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أربعين جيكا النهاردة .. الله يرحمك ياصاحبى :( @T4CT -- خيرت الشاطر (<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="111228756" dir="ltr" href="/khairatAlshater"><s>@</s><b>khairatAlshater</b></a>)</p> | -1.0 |
168454 | diaa_hameed | وأَعِفُ عِندَ المَغنمِ | 146291050 | 287993351305830400 | https://twitter.com/diaa_hameed/status/287993351305830400 | 2013-01-06 18:45:40 | 1357497940 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | الناس كلها بتتفرج علي برشلونه و أنا باكل شيبسي ديليتس بالأمر :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الناس كلها بتتفرج علي برشلونه و أنا باكل شيبسي ديليتس بالأمر :(</p> | -1.0 |
168508 | lilacchaos_ | Gilan | 361672858 | 287934144560910337 | https://twitter.com/lilacchaos_/status/287934144560910337 | 2013-01-06 14:50:24 | 1357483824 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Israaaaaaa0 akeeeed b3edn 3n any bored now :( :( ! | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@Israaaaaaa0 akeeeed b3edn 3n any bored now :( :( !</p> | -1.0 |
168760 | nassarahmed18 | ahmed nassar | 249734207 | 287479009569292288 | https://twitter.com/nassarahmed18/status/287479009569292288 | 2013-01-05 08:41:51 | 1357375311 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | T7aleeel l2a :( (@ Assiut University Hospital) http://4sq.com/139B75v | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">T7aleeel l2a :( (@ Assiut University Hospital) <a class="twitter-timeline-link" data-expanded-url="http://4sq.com/139B75v" dir="ltr" href="http://t.co/urCEkeFS" rel="nofollow noopener" target="_blank" title="http://4sq.com/139B75v"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">4sq.com/139B75v</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
168830 | sarcasmad | Mohammad | 343951922 | 287314676944089088 | https://twitter.com/sarcasmad/status/287314676944089088 | 2013-01-04 21:48:51 | 1357336131 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | All girls free ... البنات مش ببلاش يا باسم :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">All girls free ... البنات مش ببلاش يا باسم :(</p> | -1.0 |
168835 | MostafaElsawi | Ⓜostafa £lsawi | 76227708 | 287312230649851904 | https://twitter.com/MostafaElsawi/status/287312230649851904 | 2013-01-04 21:39:08 | 1357335548 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الاهم من كده هيا فين :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الاهم من كده هيا فين :(</p> | -1.0 |
168867 | iAbutalebz | المشاغب أبو طالب | 360740198 | 287251275417018369 | https://twitter.com/iAbutalebz/status/287251275417018369 | 2013-01-04 17:36:55 | 1357321015 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | النور قاطع من اكثر من ساعة والايفون حيفصل شحن :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">النور قاطع من اكثر من ساعة والايفون حيفصل شحن :(</p> | -1.0 |
168899 | iAbutalebz | المشاغب أبو طالب | 360740198 | 287208587137269762 | https://twitter.com/iAbutalebz/status/287208587137269762 | 2013-01-04 14:47:17 | 1357310837 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @shadybarakat11 :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="498670314" dir="ltr" href="/shadybarakat11"><s>@</s><b>shadybarakat11</b></a> :(</p> | -1.0 |
168900 | iAbutalebz | المشاغب أبو طالب | 360740198 | 287206843816763392 | https://twitter.com/iAbutalebz/status/287206843816763392 | 2013-01-04 14:40:22 | 1357310422 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | وكملت النهضة المياه قطعت :( كفاية نهضة لحد كدة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وكملت النهضة المياه قطعت :( كفاية نهضة لحد كدة</p> | -1.0 |
168901 | iAbutalebz | المشاغب أبو طالب | 360740198 | 287205496954437632 | https://twitter.com/iAbutalebz/status/287205496954437632 | 2013-01-04 14:35:01 | 1357310101 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ينفع كدة كل ما اشتغل يقطع النور واعيد شغلي من الاول ما كفاية نهضة لحد كدة :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ينفع كدة كل ما اشتغل يقطع النور واعيد شغلي من الاول ما كفاية نهضة لحد كدة :(</p> | -1.0 |
168902 | iAbutalebz | المشاغب أبو طالب | 360740198 | 287203889340616705 | https://twitter.com/iAbutalebz/status/287203889340616705 | 2013-01-04 14:28:37 | 1357309717 | 3 | 0 | 0 | 0 | NaN | NaN | NaN | ولا زالت النهضة مستمرة النور قطع :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ولا زالت النهضة مستمرة النور قطع :(</p> | -1.0 |
168937 | iAbutalebz | المشاغب أبو طالب | 360740198 | 287167682938290176 | https://twitter.com/iAbutalebz/status/287167682938290176 | 2013-01-04 12:04:45 | 1357301085 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | شبعنا منها والله :( “@rania3265: @love_life2012 مش كفايه نهضه بقه” | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">شبعنا منها والله :( “<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="275857702" dir="ltr" href="/rania3265"><s>@</s><b>rania3265</b></a>: <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1954266612" dir="ltr" href="/love_life2012"><s>@</s><b>love_life2012</b></a> مش كفايه نهضه بقه”</p> | -1.0 |
168952 | sameh_nathan | sameh nathan | 256647677 | 287147232468291584 | https://twitter.com/sameh_nathan/status/287147232468291584 | 2013-01-04 10:43:29 | 1357296209 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @NancyNabiil nothing but i can't handle lies anymore :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="307584986" dir="ltr" href="/NancyNabiil"><s>@</s><b>NancyNabiil</b></a> nothing but i can't handle lies anymore :(</p> | -1.0 |
169201 | chikamarukuuun | 盗撮犯 | 79779803 | 286682383326011392 | https://twitter.com/chikamarukuuun/status/286682383326011392 | 2013-01-03 03:56:21 | 1357185381 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | それでも、苦しいやついるんだよ!!\n\n死ね、クソクズニート!!! | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">それでも、苦しいやついるんだよ!!\n\n死ね、クソクズニート!!!<img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/><img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/><img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/></p> | -1.0 |
169253 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286605355008524288 | https://twitter.com/kw_535/status/286605355008524288 | 2013-01-02 22:50:16 | 1357167016 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | انــــــا\n\nأنا ليا أقفيــت ماعــودت لو أنـــك\nمن نار فرقاك تدعيني علئ ألجنة\n\nمايقنــد ألراس لاهيلك ولابنّك\nوسط ألشحم منتك ياراعي ألمنة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انــــــا\n\nأنا ليا أقفيــت ماعــودت لو أنـــك\nمن نار فرقاك تدعيني علئ ألجنة\n\nمايقنــد ألراس لاهيلك ولابنّك\nوسط ألشحم منتك ياراعي ألمنة<img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
169254 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286605212091817984 | https://twitter.com/kw_535/status/286605212091817984 | 2013-01-02 22:49:42 | 1357166982 | 0 | 2 | 0 | 0 | NaN | NaN | NaN | لاتِدَوّر زَلّتِي وانت خابِرني كَفو\nكانگ تَبي الفَرقٱ [ قِلها ] ..\n "وفارِق".. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لاتِدَوّر زَلّتِي وانت خابِرني كَفو\nكانگ تَبي الفَرقٱ [ قِلها ] ..<img alt="👇" aria-label="Emoji: Down pointing backhand index" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f447.png" title="Down pointing backhand index"/>\n "وفارِق"..<img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
169340 | sarcasmad | Mohammad | 343951922 | 286513219730800640 | https://twitter.com/sarcasmad/status/286513219730800640 | 2013-01-02 16:44:09 | 1357145049 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @Jaouhar_Bieber Exams Exams Exams :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">@Jaouhar_Bieber Exams Exams Exams :(</p> | -1.0 |
169623 | kw_535 | حـمد الــــعـــجـمي | 496896774 | 286230133977796608 | https://twitter.com/kw_535/status/286230133977796608 | 2013-01-01 21:59:16 | 1357077556 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | \n\nليتك تحس بحرقة الشووق وتضييق\nعشاإن تعرف وييش سويت فيناإ\n\nالناإس تهديناإ على الشعر تصفيق\nواحناإ ورى ذيك القواإفي بكيينآإ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>\n\nليتك تحس بحرقة الشووق وتضييق\nعشاإن تعرف وييش سويت فيناإ\n\nالناإس تهديناإ على الشعر تصفيق\nواحناإ ورى ذيك القواإفي بكيينآإ</p> | -2.0 |
1738 rows × 17 columns
egypt tweets/egypt_tweets_2014.csv - 257063 tweets
Hashtag | Count | |
---|---|---|
0 | # | 558 |
1 | #prt | 530 |
2 | #مصر | 512 |
3 | #3alahwa | 433 |
4 | #egypt | 410 |
5 | #لوليتا_وابوغزالة_والفولورز_بزيادة | 347 |
6 | #عن | 337 |
7 | #Egypt | 278 |
8 | #ثانوية_عامة | 245 |
9 | #luxor | 214 |
10 | #حقيقة | 210 |
11 | #تويب_تقولة_كل_سنة_وانت_طيب | 209 |
12 | #عمرو_دياب | 190 |
13 | #PRT | 178 |
14 | #بحس_بالسعاده_لما | 177 |
15 | #في_البرازيل | 175 |
16 | #انتخبوا_العرص | 174 |
17 | #EMABiggestFans1D | 172 |
18 | #Selfie | 164 |
19 | #الزمالك | 163 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
169371 | NourAla2 | Nour Alaa | 115362615 | 469919094305603584 | https://twitter.com/NourAla2/status/469919094305603584 | 2014-05-23 19:13:37 | 1400872417 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #Sisi_syndrom old male with estrogenic speech, feminine face and finding himself around females . | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Sisi_syndrom?src=hash"><s>#</s><b>Sisi_syndrom</b></a> old male with estrogenic speech, feminine face and finding himself around females .</p> | 0.0 |
184185 | M7Elgameel | Ma7MoUd | 247832893 | 462652851903528960 | https://twitter.com/M7Elgameel/status/462652851903528960 | 2014-05-03 18:00:10 | 1399140010 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @SherySweets 3m9man y3ni b3eedan 3n l 3ak l olteh...you r full of Femininity | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="27978669" dir="ltr" href="/sherysweets"><s>@</s><b>SherySweets</b></a> 3m9man y3ni b3eedan 3n l 3ak l olteh...you r full of Femininity</p> | 0.0 |
253621 | OhMyRino | Rénade | 63230398 | 419647068228304896 | https://twitter.com/OhMyRino/status/419647068228304896 | 2014-01-05 01:50:32 | 1388886632 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Atefvich I like guys that are somehow in touch with their feminine side what's wrong with that :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="248379523" dir="ltr" href="/Atefvich"><s>@</s><b>Atefvich</b></a> I like guys that are somehow in touch with their feminine side what's wrong with that :D</p> | 1.0 |
Positive feels: 36053. Negative feels: 5756 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | sheriftion | H | 2451461688 | 550440906407829505 | https://twitter.com/sheriftion/status/550440906407829505 | 2014-12-31 23:58:33 | 1420070313 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الساعه 2 وعندي شغل الساعه 8 .. انا بقول انام بقي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الساعه 2 وعندي شغل الساعه 8 .. انا بقول انام بقي <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
7 | sheriftion | H | 2451461688 | 550440305687015424 | https://twitter.com/sheriftion/status/550440305687015424 | 2014-12-31 23:56:10 | 1420070170 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 لا خلاص حصل خير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 لا خلاص حصل خير <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
10 | sheriftion | H | 2451461688 | 550439769738838017 | https://twitter.com/sheriftion/status/550439769738838017 | 2014-12-31 23:54:02 | 1420070042 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sherif_taya_74 :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@sherif_taya_74 :D</p> | 1.0 |
11 | sheriftion | H | 2451461688 | 550439485251792896 | https://twitter.com/sheriftion/status/550439485251792896 | 2014-12-31 23:52:54 | 1420069974 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 ياض .. ويا حومار شكلي انا اللي هعملك بلوك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 ياض .. ويا حومار <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> شكلي انا اللي هعملك بلوك <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
13 | sheriftion | H | 2451461688 | 550439068287655936 | https://twitter.com/sheriftion/status/550439068287655936 | 2014-12-31 23:51:15 | 1420069875 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @girlls90 @Abeer_EweeS | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@girlls90 <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> <img alt="🏃" aria-label="Emoji: Runner" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3c3.png" title="Runner"/><img alt="🏃" aria-label="Emoji: Runner" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3c3.png" title="Runner"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 2.0 |
14 | Mo7amedOsama_95 | Mohamed Osama | 302320368 | 550438881485942786 | https://twitter.com/Mo7amedOsama_95/status/550438881485942786 | 2014-12-31 23:50:30 | 1420069830 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #AIESECer and proud to be :D .. \n#Mo7amedOsama_95 @ Porto Café http://instagram.com/p/xSkfOEPGu2/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/AIESECer?src=hash"><s>#</s><b>AIESECer</b></a> and proud to be :D .. \n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Mo7amedOsama_95?src=hash"><s>#</s><b>Mo7amedOsama_95</b></a> @ Porto Café <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/xSkfOEPGu2/" dir="ltr" href="http://t.co/sahagjH4qQ" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/xSkfOEPGu2/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/xSkfOEPGu2/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
15 | sheriftion | H | 2451461688 | 550438651461910529 | https://twitter.com/sheriftion/status/550438651461910529 | 2014-12-31 23:49:35 | 1420069775 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @girlls90 @Abeer_EweeS مخلاص بقي pic.twitter.com/2jz7l0E1ur | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@girlls90 <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> مخلاص بقي <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/2jz7l0E1ur">pic.twitter.com/2jz7l0E1ur</a></p> | 1.0 |
17 | sheriftion | H | 2451461688 | 550438201840893953 | https://twitter.com/sheriftion/status/550438201840893953 | 2014-12-31 23:47:48 | 1420069668 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 *حاتط رجل علي رجل* شكرا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 *حاتط رجل علي رجل* شكرا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
18 | zozamansour2 | زهرة * * | 2584555070 | 550438109578788866 | https://twitter.com/zozamansour2/status/550438109578788866 | 2014-12-31 23:47:26 | 1420069646 | 1 | 2 | 4 | 0 | NaN | NaN | NaN | -بابا عايزين نحتفل برأس السنة \n-جبتلكم النهاردة يوسفى وموز وتفاح\n-شوكرا جدا يا حاج ع المفأجاه السعيدة دى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">-بابا عايزين نحتفل برأس السنة <img alt="🎅" aria-label="Emoji: Father Christmas" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f385.png" title="Father Christmas"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/>\n-جبتلكم النهاردة يوسفى وموز وتفاح\n-شوكرا جدا يا حاج ع المفأجاه السعيدة دى <img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/></p> | 1.0 |
21 | sheriftion | H | 2451461688 | 550440906407829505 | https://twitter.com/sheriftion/status/550440906407829505 | 2014-12-31 23:58:33 | 1420070313 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الساعه 2 وعندي شغل الساعه 8 .. انا بقول انام بقي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الساعه 2 وعندي شغل الساعه 8 .. انا بقول انام بقي <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
27 | sheriftion | H | 2451461688 | 550440305687015424 | https://twitter.com/sheriftion/status/550440305687015424 | 2014-12-31 23:56:10 | 1420070170 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 لا خلاص حصل خير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 لا خلاص حصل خير <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
30 | sheriftion | H | 2451461688 | 550439769738838017 | https://twitter.com/sheriftion/status/550439769738838017 | 2014-12-31 23:54:02 | 1420070042 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sherif_taya_74 :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@sherif_taya_74 :D</p> | 1.0 |
31 | sheriftion | H | 2451461688 | 550439485251792896 | https://twitter.com/sheriftion/status/550439485251792896 | 2014-12-31 23:52:54 | 1420069974 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 ياض .. ويا حومار شكلي انا اللي هعملك بلوك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 ياض .. ويا حومار <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> شكلي انا اللي هعملك بلوك <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
33 | sheriftion | H | 2451461688 | 550439068287655936 | https://twitter.com/sheriftion/status/550439068287655936 | 2014-12-31 23:51:15 | 1420069875 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @girlls90 @Abeer_EweeS | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@girlls90 <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> <img alt="🏃" aria-label="Emoji: Runner" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3c3.png" title="Runner"/><img alt="🏃" aria-label="Emoji: Runner" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3c3.png" title="Runner"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 2.0 |
34 | Mo7amedOsama_95 | Mohamed Osama | 302320368 | 550438881485942786 | https://twitter.com/Mo7amedOsama_95/status/550438881485942786 | 2014-12-31 23:50:30 | 1420069830 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #AIESECer and proud to be :D .. \n#Mo7amedOsama_95 @ Porto Café http://instagram.com/p/xSkfOEPGu2/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/AIESECer?src=hash"><s>#</s><b>AIESECer</b></a> and proud to be :D .. \n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Mo7amedOsama_95?src=hash"><s>#</s><b>Mo7amedOsama_95</b></a> @ Porto Café <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/xSkfOEPGu2/" dir="ltr" href="http://t.co/sahagjH4qQ" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/xSkfOEPGu2/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/xSkfOEPGu2/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
35 | sheriftion | H | 2451461688 | 550438651461910529 | https://twitter.com/sheriftion/status/550438651461910529 | 2014-12-31 23:49:35 | 1420069775 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @girlls90 @Abeer_EweeS مخلاص بقي pic.twitter.com/2jz7l0E1ur | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@girlls90 <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> مخلاص بقي <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/2jz7l0E1ur">pic.twitter.com/2jz7l0E1ur</a></p> | 1.0 |
37 | sheriftion | H | 2451461688 | 550438201840893953 | https://twitter.com/sheriftion/status/550438201840893953 | 2014-12-31 23:47:48 | 1420069668 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 *حاتط رجل علي رجل* شكرا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 *حاتط رجل علي رجل* شكرا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
38 | zozamansour2 | زهرة * * | 2584555070 | 550438109578788866 | https://twitter.com/zozamansour2/status/550438109578788866 | 2014-12-31 23:47:26 | 1420069646 | 1 | 2 | 4 | 0 | NaN | NaN | NaN | -بابا عايزين نحتفل برأس السنة \n-جبتلكم النهاردة يوسفى وموز وتفاح\n-شوكرا جدا يا حاج ع المفأجاه السعيدة دى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">-بابا عايزين نحتفل برأس السنة <img alt="🎅" aria-label="Emoji: Father Christmas" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f385.png" title="Father Christmas"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/>\n-جبتلكم النهاردة يوسفى وموز وتفاح\n-شوكرا جدا يا حاج ع المفأجاه السعيدة دى <img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/></p> | 1.0 |
40 | sheriftion | H | 2451461688 | 550437338099482625 | https://twitter.com/sheriftion/status/550437338099482625 | 2014-12-31 23:44:22 | 1420069462 | 1 | 1 | 1 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 كان ف دماغي ريبلاي بس نسيته من كتر الضحك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 كان ف دماغي ريبلاي بس نسيته من كتر الضحك <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
41 | sheriftion | H | 2451461688 | 550436960448569344 | https://twitter.com/sheriftion/status/550436960448569344 | 2014-12-31 23:42:52 | 1420069372 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @girlls90 @Abeer_EweeS | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@girlls90 <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
43 | sheriftion | H | 2451461688 | 550435145057333249 | https://twitter.com/sheriftion/status/550435145057333249 | 2014-12-31 23:35:39 | 1420068939 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sherif_taya_74 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@sherif_taya_74 <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
52 | Hesho_1 | Hashem | 164527240 | 550432563400310784 | https://twitter.com/Hesho_1/status/550432563400310784 | 2014-12-31 23:25:24 | 1420068324 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @nadaalisayed ينفع واحد غيره خريج هندسه ازرق العينين عريض المنكبين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2228032196" dir="ltr" href="/nadaalisayed"><s>@</s><b>nadaalisayed</b></a> ينفع واحد غيره خريج هندسه ازرق العينين عريض المنكبين <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/></p> | 1.0 |
54 | JigsawPolice | المخلبي بن ذاعات | 804781261 | 550430601627443202 | https://twitter.com/JigsawPolice/status/550430601627443202 | 2014-12-31 23:17:36 | 1420067856 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | فقره الساحر بقي في رأس السنة :D @ Arabia Cafe, Luxor http://instagram.com/p/xSguOZudV5/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">فقره الساحر بقي في رأس السنة :D @ Arabia Cafe, Luxor <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/xSguOZudV5/" dir="ltr" href="http://t.co/IkHwbcL7N9" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/xSguOZudV5/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/xSguOZudV5/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
57 | sheriftion | H | 2451461688 | 550428330894557184 | https://twitter.com/sheriftion/status/550428330894557184 | 2014-12-31 23:08:35 | 1420067315 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sherif_taya_74 :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@sherif_taya_74 :D</p> | 1.0 |
64 | sheriftion | H | 2451461688 | 550426832705978370 | https://twitter.com/sheriftion/status/550426832705978370 | 2014-12-31 23:02:38 | 1420066958 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | ليه مصر متبقاش زي دبي حتي ولو يوم واحد بس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ليه مصر متبقاش زي دبي حتي ولو يوم واحد بس <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
74 | sheriftion | H | 2451461688 | 550421371264962561 | https://twitter.com/sheriftion/status/550421371264962561 | 2014-12-31 22:40:55 | 1420065655 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | مدد مدد ع المزز اللي ف الشارع | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مدد مدد ع المزز اللي ف الشارع <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
76 | sheriftion | H | 2451461688 | 550421028313509888 | https://twitter.com/sheriftion/status/550421028313509888 | 2014-12-31 22:39:34 | 1420065574 | 2 | 4 | 1 | 0 | NaN | NaN | NaN | هيا دبي والفيوم ايه .. ماهم واحد pic.twitter.com/E0UEOUJDIf | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هيا دبي والفيوم ايه .. ماهم واحد <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/E0UEOUJDIf">pic.twitter.com/E0UEOUJDIf</a></p> | 1.0 |
77 | sheriftion | H | 2451461688 | 550420705830268928 | https://twitter.com/sheriftion/status/550420705830268928 | 2014-12-31 22:38:17 | 1420065497 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sherif_taya_74 عاااااااا :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@sherif_taya_74 عاااااااا :D</p> | 1.0 |
79 | sheriftion | H | 2451461688 | 550420138684870659 | https://twitter.com/sheriftion/status/550420138684870659 | 2014-12-31 22:36:02 | 1420065362 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @mahaehab44 لا وربنا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2864149457" dir="ltr" href="/mahaehab44"><s>@</s><b>mahaehab44</b></a> لا وربنا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
82 | sheriftion | H | 2451461688 | 550419798493249536 | https://twitter.com/sheriftion/status/550419798493249536 | 2014-12-31 22:34:40 | 1420065280 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @mahaehab44 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2864149457" dir="ltr" href="/mahaehab44"><s>@</s><b>mahaehab44</b></a> <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
256907 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418231410517082112 | https://twitter.com/WSaifelnasr/status/418231410517082112 | 2014-01-01 04:05:13 | 1388549113 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | (((بين كبريائ وبين خجلك أفتقدنا طريق ألسعاده)))\n | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">(((بين كبريائ وبين خجلك أفتقدنا طريق ألسعاده)))\n<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
256910 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418230100287832065 | https://twitter.com/WSaifelnasr/status/418230100287832065 | 2014-01-01 04:00:00 | 1388548800 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عن رأي أنا\n\n(أﻷنوثه &أﻷناقه &ألرقي =4/3 جمال ألمرأه)\n\nأما الربع الباقي وأﻷخير\n\nفهو ------\n\nكل يختاره حسبما يراه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عن رأي أنا\n\n(أﻷنوثه &أﻷناقه &ألرقي =4/3 جمال ألمرأه)\n\nأما الربع الباقي وأﻷخير\n\nفهو ------\n\nكل يختاره حسبما يراه <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
256925 | Mariam_Fayek | Mar.I.Am | 236848419 | 418212383795208192 | https://twitter.com/Mariam_Fayek/status/418212383795208192 | 2014-01-01 02:49:36 | 1388544576 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @frhgzy @NadineMaged1 u know it | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="252072986" dir="ltr" href="/frhgzy"><s>@</s><b>frhgzy</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="718831004" dir="ltr" href="/NadineMaged1"><s>@</s><b>NadineMaged1</b></a> u know it<img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/></p> | 1.0 |
256929 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418207986251988992 | https://twitter.com/WSaifelnasr/status/418207986251988992 | 2014-01-01 02:32:08 | 1388543528 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | @SoHamdy \nينادي ملك بألسماء ماتت من كنا نكرمك\nما أجلها فأعمل عمﻷ صالحا نكرمك من أجله ■\nأستحلف بألله كل أبن ان يرضي والديه بكبرهما\n♡ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1486184058" dir="ltr" href="/SoHamdy"><s>@</s><b>SoHamdy</b></a> \nينادي ملك بألسماء ماتت من كنا نكرمك\nما أجلها فأعمل عمﻷ صالحا نكرمك من أجله ■\nأستحلف بألله كل أبن ان يرضي والديه بكبرهما\n<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>♡</p> | 2.0 |
256931 | nou1199 | Naznaz | 1327046132 | 418207712305217537 | https://twitter.com/nou1199/status/418207712305217537 | 2014-01-01 02:31:03 | 1388543463 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وبصلها و راح قالها معلش مش هقدر اكون بطل الرواية بتآعتك :)) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وبصلها و راح قالها معلش مش هقدر اكون بطل الرواية بتآعتك :))</p> | 1.0 |
256938 | nou1199 | Naznaz | 1327046132 | 418206298749292545 | https://twitter.com/nou1199/status/418206298749292545 | 2014-01-01 02:25:26 | 1388543126 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | واضحك و كآن الضحكة بجد ، مش محتاجه طبطبة من حد :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">واضحك و كآن الضحكة بجد ، مش محتاجه طبطبة من حد :)</p> | 1.0 |
256942 | nou1199 | Naznaz | 1327046132 | 418205545062203392 | https://twitter.com/nou1199/status/418205545062203392 | 2014-01-01 02:22:26 | 1388542946 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أذا اردت شيئآ بشدة ، فآطلق سراحه ، فآن عاد آليك فهو ملكك ، و آن لم يعد فهو لم يكن ملك لك من آلبدآية .. وده أللي انا بعمله دلوقتي :)) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أذا اردت شيئآ بشدة ، فآطلق سراحه ، فآن عاد آليك فهو ملكك ، و آن لم يعد فهو لم يكن ملك لك من آلبدآية .. وده أللي انا بعمله دلوقتي :))</p> | 1.0 |
256945 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418204770915340288 | https://twitter.com/WSaifelnasr/status/418204770915340288 | 2014-01-01 02:19:21 | 1388542761 | 1 | 1 | 1 | 0 | NaN | NaN | NaN | @SoHamdy \nاللهم أصلح حالنا أجمعين ■\nكل عام حضرتك واﻷسره الكريمه\nبخير وصحه وراحه بال\nآمييييييييييين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1486184058" dir="ltr" href="/SoHamdy"><s>@</s><b>SoHamdy</b></a> \nاللهم أصلح حالنا أجمعين ■\nكل عام حضرتك واﻷسره الكريمه\nبخير وصحه وراحه بال\nآمييييييييييين <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
256958 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418193148758999040 | https://twitter.com/WSaifelnasr/status/418193148758999040 | 2014-01-01 01:33:10 | 1388539990 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | @haneen_elmasre \nكل سنه حضرتك واﻷسره\nبخير وصحه وراحه بال \nاللهم آمييييييين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@haneen_elmasre \nكل سنه حضرتك واﻷسره\nبخير وصحه وراحه بال <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>\nاللهم آمييييييين</p> | 1.0 |
256961 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418190813987098624 | https://twitter.com/WSaifelnasr/status/418190813987098624 | 2014-01-01 01:23:54 | 1388539434 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @RooRita2244 \n\nكل سنه وانتي وأﻷسره الكريمه بخير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="711901888" dir="ltr" href="/RooRita2244"><s>@</s><b>RooRita2244</b></a> \n\nكل سنه وانتي وأﻷسره الكريمه بخير <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
256962 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418190493831671808 | https://twitter.com/WSaifelnasr/status/418190493831671808 | 2014-01-01 01:22:37 | 1388539357 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Shy_jmeel \nكل عام أنتي وأﻷسره الكريمه \nبخير وصحه وسعاده\nآميييييين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@Shy_jmeel \nكل عام أنتي وأﻷسره الكريمه \nبخير وصحه وسعاده\nآميييييين<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
256968 | islamsaaleh | الصَاآلح | 234916028 | 418189673002205184 | https://twitter.com/islamsaaleh/status/418189673002205184 | 2014-01-01 01:19:22 | 1388539162 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | My favo charcter @ Sohag http://instagram.com/p/im4gq5BBQj/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My favo charcter <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/im4gq5BBQj/" dir="ltr" href="http://t.co/XEci75SW8q" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/im4gq5BBQj/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/im4gq5BBQj/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
256973 | hassan_el3ntbly | Hassan | 188490580 | 418187342609154049 | https://twitter.com/hassan_el3ntbly/status/418187342609154049 | 2014-01-01 01:10:06 | 1388538606 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Mondaline انبسطى و فرفشي و زقطتى و افرحى :D الله يسعدك ان شاء الله ديما :') | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="473993914" dir="ltr" href="/Mondaline"><s>@</s><b>Mondaline</b></a> انبسطى و فرفشي و زقطتى و افرحى :D الله يسعدك ان شاء الله ديما :')</p> | 1.0 |
256977 | fatmakamal93 | فاطمة | 630990529 | 418186601504997376 | https://twitter.com/fatmakamal93/status/418186601504997376 | 2014-01-01 01:07:09 | 1388538429 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | A day to remember :) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">A day to remember :)</p> | 1.0 |
256980 | hassan_el3ntbly | Hassan | 188490580 | 418184242154446848 | https://twitter.com/hassan_el3ntbly/status/418184242154446848 | 2014-01-01 00:57:47 | 1388537867 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Mondaline انا كويس الحمدلله :D كيفيك انت؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="473993914" dir="ltr" href="/Mondaline"><s>@</s><b>Mondaline</b></a> انا كويس الحمدلله :D كيفيك انت؟</p> | 1.0 |
256990 | fatmakamal93 | فاطمة | 630990529 | 418182199670996993 | https://twitter.com/fatmakamal93/status/418182199670996993 | 2014-01-01 00:49:40 | 1388537380 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @sa3dodaaa kol sana w enti 6yba y mrmr :* ♡ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1954173690" dir="ltr" href="/sa3dodaaa"><s>@</s><b>sa3dodaaa</b></a> kol sana w enti 6yba y mrmr :* ♡</p> | 1.0 |
256991 | hassan_el3ntbly | Hassan | 188490580 | 418182101062909952 | https://twitter.com/hassan_el3ntbly/status/418182101062909952 | 2014-01-01 00:49:17 | 1388537357 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Mondaline mondaaaa :') ezayeeeek wallah wa7shany kteer happy new year :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="473993914" dir="ltr" href="/Mondaline"><s>@</s><b>Mondaline</b></a> mondaaaa :') ezayeeeek wallah wa7shany kteer happy new year :D</p> | 1.0 |
257002 | FelopaterS | †Felopater©™† | 249032776 | 418180394107039744 | https://twitter.com/FelopaterS/status/418180394107039744 | 2014-01-01 00:42:30 | 1388536950 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Hana_Hicham 2asef :) o happy New year xD | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1036226253064482818" dir="ltr" href="/hana_hicham"><s>@</s><b>Hana_Hicham</b></a> 2asef :) o happy New year xD</p> | 1.0 |
257012 | lilacchaos_ | Gilan | 361672858 | 418178132324405249 | https://twitter.com/lilacchaos_/status/418178132324405249 | 2014-01-01 00:33:30 | 1388536410 | 0 | 3 | 3 | 0 | NaN | NaN | NaN | "@LittleMixOffic: Happy new year everyone! Here's to an amazing 2014! :D Zayn&Perrie Xx pic.twitter.com/IraeUts5Li" الله :') | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2411773057" dir="ltr" href="/littlemixoffic"><s>@</s><b>LittleMixOffic</b></a>: Happy new year everyone! Here's to an amazing 2014! :D Zayn&Perrie Xx <a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/IraeUts5Li">pic.twitter.com/IraeUts5Li</a>" الله :')</p> | 1.0 |
257015 | Arwaaaa__ | Arwa | 563269598 | 418177551283269632 | https://twitter.com/Arwaaaa__/status/418177551283269632 | 2014-01-01 00:31:12 | 1388536272 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @mahmoudmorgan75 ليه كدة ياخي ؟ :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="967732046" dir="ltr" href="/mahmoudmorgan75"><s>@</s><b>mahmoudmorgan75</b></a> ليه كدة ياخي ؟ :D</p> | 1.0 |
257019 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418176335060942848 | https://twitter.com/WSaifelnasr/status/418176335060942848 | 2014-01-01 00:26:22 | 1388535982 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أنه أﻷحتياج \n\nأعنيه بصدق\n\nأبكيه بصمت\n\nأتحمله بوجع\n\nأخفيه بكبرياء\n\nأستغناه بتقوي الله\n\n♡ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أنه أﻷحتياج \n\nأعنيه بصدق\n\nأبكيه بصمت\n\nأتحمله بوجع\n\nأخفيه بكبرياء\n\nأستغناه بتقوي الله\n\n<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>♡</p> | 2.0 |
257024 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 418174808963448832 | https://twitter.com/AhmedTarekabofa/status/418174808963448832 | 2014-01-01 00:20:18 | 1388535618 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | غيرتلي حالي :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">غيرتلي حالي :D</p> | 1.0 |
257026 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418174524547682304 | https://twitter.com/WSaifelnasr/status/418174524547682304 | 2014-01-01 00:19:10 | 1388535550 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يقولون\nألحاجه أم أﻷختراع\n\nواضيف قائﻷ\nالحاجه أم ألتنازل\n\n♡ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يقولون\nألحاجه أم أﻷختراع\n\nواضيف قائﻷ\nالحاجه أم ألتنازل\n\n<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>♡</p> | 2.0 |
257027 | mostafaalamaar | موستافااا | 187792899 | 418174363318620162 | https://twitter.com/mostafaalamaar/status/418174363318620162 | 2014-01-01 00:18:32 | 1388535512 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Mozakra #style :Dpic.twitter.com/8alWSU50eY | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hu">Mozakra <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/style?src=hash"><s>#</s><b>style</b></a> :D<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/8alWSU50eY">pic.twitter.com/8alWSU50eY</a></p> | 1.0 |
257028 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418174007574540288 | https://twitter.com/WSaifelnasr/status/418174007574540288 | 2014-01-01 00:17:07 | 1388535427 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | من لا يغار لا يستحق\n\n1)عشق أنثي\n\n2)لقب رجل\n\n3)أحترام المحيطون به\n\n | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">من لا يغار لا يستحق\n\n1)عشق أنثي\n\n2)لقب رجل\n\n3)أحترام المحيطون به\n\n<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
257029 | mostafaalamaar | موستافااا | 187792899 | 418173946773925888 | https://twitter.com/mostafaalamaar/status/418173946773925888 | 2014-01-01 00:16:52 | 1388535412 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #Blackberry #style :Dpic.twitter.com/u7EKJSCteG | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Blackberry?src=hash"><s>#</s><b>Blackberry</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/style?src=hash"><s>#</s><b>style</b></a> :D<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/u7EKJSCteG">pic.twitter.com/u7EKJSCteG</a></p> | 1.0 |
257030 | fatmakamal93 | فاطمة | 630990529 | 418173920735690752 | https://twitter.com/fatmakamal93/status/418173920735690752 | 2014-01-01 00:16:46 | 1388535406 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بداية مختلفة :) | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بداية مختلفة :)</p> | 1.0 |
257042 | saberyehiaa | بتاع الدودج 💨🏎 | 901721256 | 418172095332634624 | https://twitter.com/saberyehiaa/status/418172095332634624 | 2014-01-01 00:09:31 | 1388534971 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يمكن كرهتهم و يمكن ندمت وكرهت اني حبتهم (بمناسبة 2014 دي #مسج حبيت اوصلها و يارب #الحمار يفهم) :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يمكن كرهتهم و يمكن ندمت وكرهت اني حبتهم (بمناسبة 2014 دي <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%B3%D8%AC?src=hash"><s>#</s><b>مسج</b></a> حبيت اوصلها و يارب <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AD%D9%85%D8%A7%D8%B1?src=hash"><s>#</s><b>الحمار</b></a> يفهم) :D</p> | 1.0 |
257049 | mansour_mohamed | بقول اني منييح | 203271191 | 418171262859759616 | https://twitter.com/mansour_mohamed/status/418171262859759616 | 2014-01-01 00:06:12 | 1388534772 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @WlldatHeart انتي :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="67610226" dir="ltr" href="/WlldatHeart"><s>@</s><b>WlldatHeart</b></a> انتي :D</p> | 1.0 |
257061 | WSaifelnasr | Waly Saifelnasr | 1747183608 | 418169885232226304 | https://twitter.com/WSaifelnasr/status/418169885232226304 | 2014-01-01 00:00:44 | 1388534444 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ألذوجه تحتاج غألبأ في ألتعامل معها ألي عدد من\nألجنسيات مثل\n\nمعامله الفرنسي\n\nدلع ألبناني\n\nأنفاق ألخليجي\n\nرجوله ألمصري\n\nأخلاق أليباني\n\n | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ألذوجه تحتاج غألبأ في ألتعامل معها ألي عدد من\nألجنسيات مثل\n\nمعامله الفرنسي\n\nدلع ألبناني\n\nأنفاق ألخليجي\n\nرجوله ألمصري\n\nأخلاق أليباني\n\n<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
36053 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | mariam_ebrahem | مَرِيَمْـ | 2646969915 | 550439778970513410 | https://twitter.com/mariam_ebrahem/status/550439778970513410 | 2014-12-31 23:54:04 | 1420070044 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يا جدعان حد يسفرنى هناك بقى خلاص هموت مش كدا pic.twitter.com/7ScK2kQMK6 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يا جدعان حد يسفرنى هناك بقى خلاص هموت مش كدا <img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/7ScK2kQMK6">pic.twitter.com/7ScK2kQMK6</a></p> | -2.0 |
29 | mariam_ebrahem | مَرِيَمْـ | 2646969915 | 550439778970513410 | https://twitter.com/mariam_ebrahem/status/550439778970513410 | 2014-12-31 23:54:04 | 1420070044 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يا جدعان حد يسفرنى هناك بقى خلاص هموت مش كدا pic.twitter.com/7ScK2kQMK6 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يا جدعان حد يسفرنى هناك بقى خلاص هموت مش كدا <img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/7ScK2kQMK6">pic.twitter.com/7ScK2kQMK6</a></p> | -2.0 |
143 | Hesho_1 | Hashem | 164527240 | 550410916681236481 | https://twitter.com/Hesho_1/status/550410916681236481 | 2014-12-31 21:59:23 | 1420063163 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | سانتا ابن المتناكه مطلعليش | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">سانتا ابن المتناكه مطلعليش <img alt="😠" aria-label="Emoji: Angry face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f620.png" title="Angry face"/></p> | -1.0 |
147 | Simolution | islam abbas | 126748348 | 550410597746356224 | https://twitter.com/Simolution/status/550410597746356224 | 2014-12-31 21:58:07 | 1420063087 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @M_Hegazy0 عارف | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="357537946" dir="ltr" href="/M_Hegazy0"><s>@</s><b>M_Hegazy0</b></a> عارف <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/></p> | -1.0 |
159 | sheriftion | H | 2451461688 | 550408456587706369 | https://twitter.com/sheriftion/status/550408456587706369 | 2014-12-31 21:49:36 | 1420062576 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عايز اعمل تويته كدا لكل اصحابي اللي اتعرفت عليهم ف 2014 بس للاسف مش فاضي :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عايز اعمل تويته كدا لكل اصحابي اللي اتعرفت عليهم ف 2014 بس للاسف مش فاضي :(</p> | -1.0 |
162 | yournoghtmare | Error101 | 932301992 | 550407889589121024 | https://twitter.com/yournoghtmare/status/550407889589121024 | 2014-12-31 21:47:21 | 1420062441 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 2alk new year 2al | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">2alk new year 2al <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
177 | Arwaaaa__ | Arwa | 563269598 | 550406024365350912 | https://twitter.com/Arwaaaa__/status/550406024365350912 | 2014-12-31 21:39:56 | 1420061996 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | هو انا كان ممكن بحتفل فاسوان بس معلش بقا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هو انا كان ممكن بحتفل فاسوان بس معلش بقا <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
185 | Arwaaaa__ | Arwa | 563269598 | 550402027604680705 | https://twitter.com/Arwaaaa__/status/550402027604680705 | 2014-12-31 21:24:04 | 1420061044 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Arwaaaa__ غير كدة سنة زبالة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="563269598" dir="ltr" href="/Arwaaaa__"><s>@</s><b>Arwaaaa__</b></a> غير كدة سنة زبالة <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
205 | mariam_ebrahem | مَرِيَمْـ | 2646969915 | 550393905058156544 | https://twitter.com/mariam_ebrahem/status/550393905058156544 | 2014-12-31 20:51:47 | 1420059107 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | I want a christmas gift | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I want a christmas gift <img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/></p> | -1.0 |
212 | YasmeMostafa40 | YaSmEen | 2937202361 | 550389937749884928 | https://twitter.com/YasmeMostafa40/status/550389937749884928 | 2014-12-31 20:36:01 | 1420058161 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ياااااااارب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ياااااااارب <img alt="😣" aria-label="Emoji: Persevering face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f623.png" title="Persevering face"/></p> | -1.0 |
214 | YasmeMostafa40 | YaSmEen | 2937202361 | 550388326801604609 | https://twitter.com/YasmeMostafa40/status/550388326801604609 | 2014-12-31 20:29:37 | 1420057777 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا وقت فراغ فـــ حياة الناس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا وقت فراغ فـــ حياة الناس <img alt="👏" aria-label="Emoji: Clapping hands sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44f.png" title="Clapping hands sign"/><img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
356 | Omda1981m | 🇪🇬محمدماهر(777) | 618397880 | 550315646861713409 | https://twitter.com/Omda1981m/status/550315646861713409 | 2014-12-31 15:40:49 | 1420040449 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | هو التواجد الامني حلو مفيش كلام\nبس مش لدرجه المشوار اللي بياخد 10دقايق اخدو في ساعه وربع\nالشوارع كلها مقفله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هو التواجد الامني حلو مفيش كلام<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/>\nبس مش لدرجه المشوار اللي بياخد 10دقايق اخدو في ساعه وربع<img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/>\nالشوارع كلها مقفله<img alt="👮" aria-label="Emoji: Police officer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f46e.png" title="Police officer"/><img alt="😱" aria-label="Emoji: Face screaming in fear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f631.png" title="Face screaming in fear"/></p> | -2.0 |
413 | ahmedshaker2006 | Ahmed Shaker Aman | 2932802019 | 550290110181548032 | https://twitter.com/ahmedshaker2006/status/550290110181548032 | 2014-12-31 13:59:20 | 1420034360 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | قال رسول الله صلي الله عليه وسلم :(البرﻻيبلي والذنب ﻻينسي والديان ﻻيموت إعمل ماشئت كماتدين تدان) صدق رسول الله صلي الله عليه وسلم | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">قال رسول الله صلي الله عليه وسلم :(البرﻻيبلي والذنب ﻻينسي والديان ﻻيموت إعمل ماشئت كماتدين تدان) صدق رسول الله صلي الله عليه وسلم</p> | -1.0 |
501 | abbas74_ | Expired. | 1863601014 | 550231048421117952 | https://twitter.com/abbas74_/status/550231048421117952 | 2014-12-31 10:04:39 | 1420020279 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | قال يعني لما ابتسم وشي هيتعدل | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">قال يعني لما ابتسم وشي هيتعدل <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
510 | HossamHossam899 | حسام القاضي | 2698714972 | 550228074244341761 | https://twitter.com/HossamHossam899/status/550228074244341761 | 2014-12-31 09:52:50 | 1420019570 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عاوز اشتم شتايم والفاظ خارجه عن الحياء . بس مش ذنبكم انكم تقروا الفاظ زي كدا :( . | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عاوز اشتم شتايم والفاظ خارجه عن الحياء . بس مش ذنبكم انكم تقروا الفاظ زي كدا :( .</p> | -1.0 |
538 | Hesho_1 | Hashem | 164527240 | 550213953281077248 | https://twitter.com/Hesho_1/status/550213953281077248 | 2014-12-31 08:56:43 | 1420016203 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @shabosaif الفاظك يا دكتوره | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@shabosaif الفاظك يا دكتوره <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
539 | Hesho_1 | Hashem | 164527240 | 550213841809059840 | https://twitter.com/Hesho_1/status/550213841809059840 | 2014-12-31 08:56:17 | 1420016177 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | المهم اني حالياً انسان مشوش ما بين شرموطه سابتني واتجوزت وما بين الاكس اللي عايز ارجعلها بس خايف تكون اتغيرت والبسها | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المهم اني حالياً انسان مشوش ما بين شرموطه سابتني واتجوزت وما بين الاكس اللي عايز ارجعلها بس خايف تكون اتغيرت والبسها <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
545 | Hesho_1 | Hashem | 164527240 | 550212455977480192 | https://twitter.com/Hesho_1/status/550212455977480192 | 2014-12-31 08:50:46 | 1420015846 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Littlehossam انا فعلا كبتنت رحيم | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="358412194" dir="ltr" href="/LittleHossam"><s>@</s><b>Littlehossam</b></a> انا فعلا كبتنت رحيم <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
546 | Hesho_1 | Hashem | 164527240 | 550212289367130113 | https://twitter.com/Hesho_1/status/550212289367130113 | 2014-12-31 08:50:06 | 1420015806 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | حد يشجعني ويخليني اخد قرار اني ابعتلها بوكيه ورد. انهارده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حد يشجعني ويخليني اخد قرار اني ابعتلها بوكيه ورد. انهارده <img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/></p> | -1.0 |
630 | Hesho_1 | Hashem | 164527240 | 550073056568565761 | https://twitter.com/Hesho_1/status/550073056568565761 | 2014-12-30 23:36:51 | 1419982611 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @RaneemNadyy مليش دعوه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@RaneemNadyy مليش دعوه <img alt="😱" aria-label="Emoji: Face screaming in fear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f631.png" title="Face screaming in fear"/></p> | -1.0 |
638 | Hesho_1 | Hashem | 164527240 | 550066210025783296 | https://twitter.com/Hesho_1/status/550066210025783296 | 2014-12-30 23:09:38 | 1419980978 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @RaneemNadyy وبكل الحب بقولك ذاكري | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@RaneemNadyy وبكل الحب بقولك ذاكري <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
650 | Hesho_1 | Hashem | 164527240 | 550073056568565761 | https://twitter.com/Hesho_1/status/550073056568565761 | 2014-12-30 23:36:51 | 1419982611 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @RaneemNadyy مليش دعوه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@RaneemNadyy مليش دعوه <img alt="😱" aria-label="Emoji: Face screaming in fear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f631.png" title="Face screaming in fear"/></p> | -1.0 |
658 | Hesho_1 | Hashem | 164527240 | 550066210025783296 | https://twitter.com/Hesho_1/status/550066210025783296 | 2014-12-30 23:09:38 | 1419980978 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @RaneemNadyy وبكل الحب بقولك ذاكري | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@RaneemNadyy وبكل الحب بقولك ذاكري <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
694 | sheriftion | H | 2451461688 | 550050750160990208 | https://twitter.com/sheriftion/status/550050750160990208 | 2014-12-30 22:08:12 | 1419977292 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بكره الايموشن دا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بكره الايموشن دا <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/></p> | -1.0 |
747 | sheriftion | H | 2451461688 | 550036878045757440 | https://twitter.com/sheriftion/status/550036878045757440 | 2014-12-30 21:13:05 | 1419973985 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @@girlls90 علي فكره ، مش هسلم عليك تاني | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@@girlls90 علي فكره ، مش هسلم عليك تاني <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
752 | ebramkw | Ebram Kamal William | 283425693 | 550035447448363009 | https://twitter.com/ebramkw/status/550035447448363009 | 2014-12-30 21:07:24 | 1419973644 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @mahmoudnafifi ايوه صح للأسف | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="247769594" dir="ltr" href="/mahmoudnafifi"><s>@</s><b>mahmoudnafifi</b></a> ايوه صح للأسف <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
769 | Hesho_1 | Hashem | 164527240 | 550029130876878848 | https://twitter.com/Hesho_1/status/550029130876878848 | 2014-12-30 20:42:18 | 1419972138 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @AsmGhaniim كويس انك مشيتي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@AsmGhaniim كويس انك مشيتي <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
772 | sheriftion | H | 2451461688 | 550028304653512704 | https://twitter.com/sheriftion/status/550028304653512704 | 2014-12-30 20:39:01 | 1419971941 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @hmagdy336 الريال يسطاا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2445935332" dir="ltr" href="/hmagdy336"><s>@</s><b>hmagdy336</b></a> الريال يسطاا <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
787 | BeckEugenie | Nini | 443987002 | 550021908365070337 | https://twitter.com/BeckEugenie/status/550021908365070337 | 2014-12-30 20:13:36 | 1419970416 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Sans* ma valise | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="fr">Sans* ma valise <img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/></p> | -1.0 |
835 | mennagamal16 | Menna Allah | 597802099 | 549998209700233216 | https://twitter.com/mennagamal16/status/549998209700233216 | 2014-12-30 18:39:26 | 1419964766 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | @HebaSheha اممممم ربنا يستر والله فالحوار ده.. كل ما الواحد بيقرب بيحس بمدي المعاناه. كتبتي اي صح؟؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2653289291" dir="ltr" href="/HebaSheha"><s>@</s><b>HebaSheha</b></a> اممممم ربنا يستر والله فالحوار ده.. كل ما الواحد بيقرب بيحس بمدي المعاناه. <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/> كتبتي اي صح؟؟</p> | -1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
254570 | ahmednageh_ | ناجِح . | 1452913722 | 419230743588769792 | https://twitter.com/ahmednageh_/status/419230743588769792 | 2014-01-03 22:16:12 | 1388787372 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | تصبحون علي خير :(\nو علي اخبار سعيده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">تصبحون علي خير :(\nو علي اخبار سعيده</p> | -1.0 |
254574 | ziadmahgoup | Ziad Mahgoup | 450756000 | 419230139940368384 | https://twitter.com/ziadmahgoup/status/419230139940368384 | 2014-01-03 22:13:48 | 1388787228 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بكره اول امتحان :( يا رب استر #مدخل_قانون #مدني #حقوق #اولي_حقوق | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بكره اول امتحان :( يا رب استر <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%AF%D8%AE%D9%84_%D9%82%D8%A7%D9%86%D9%88%D9%86?src=hash"><s>#</s><b>مدخل_قانون</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%AF%D9%86%D9%8A?src=hash"><s>#</s><b>مدني</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AD%D9%82%D9%88%D9%82?src=hash"><s>#</s><b>حقوق</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%88%D9%84%D9%8A_%D8%AD%D9%82%D9%88%D9%82?src=hash"><s>#</s><b>اولي_حقوق</b></a></p> | -1.0 |
254607 | ahmednageh_ | ناجِح . | 1452913722 | 419222682870513664 | https://twitter.com/ahmednageh_/status/419222682870513664 | 2014-01-03 21:44:11 | 1388785451 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بجد بندم احيانا علي أني بعامل ناس بطريقه معينه و بعد كده بلاقي رد فعل يصدمني :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بجد بندم احيانا علي أني بعامل ناس بطريقه معينه و بعد كده بلاقي رد فعل يصدمني :(</p> | -1.0 |
254625 | FallingSlowly93 | Amany | 339952197 | 419218787750379520 | https://twitter.com/FallingSlowly93/status/419218787750379520 | 2014-01-03 21:28:42 | 1388784522 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @NemoElhaddad انا لسه بدرى جدااا على ما اقول الكلمة دى :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="246494327" dir="ltr" href="/NemoElhaddad"><s>@</s><b>NemoElhaddad</b></a> انا لسه بدرى جدااا على ما اقول الكلمة دى :(</p> | -1.0 |
254866 | lo0000OolaMaher | لومومبا ʚϊɞ | 287643588 | 419093964923600896 | https://twitter.com/lo0000OolaMaher/status/419093964923600896 | 2014-01-03 13:12:42 | 1388754762 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Ho0oS 3ayeza abla btates :( eshm3na 3esha !? Keda hyb2o talata | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="161528115" dir="ltr" href="/Ho0oS"><s>@</s><b>Ho0oS</b></a> 3ayeza abla btates :( eshm3na 3esha !? Keda hyb2o talata</p> | -1.0 |
254916 | Muhamad_hammad | Mohamed hammad | 397573674 | 419081774770425856 | https://twitter.com/Muhamad_hammad/status/419081774770425856 | 2014-01-03 12:24:15 | 1388751855 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بحبش اتحط فـ الامر الواقع :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بحبش اتحط فـ الامر الواقع :(</p> | -1.0 |
255072 | mansour_mohamed | بقول اني منييح | 203271191 | 419001663991869440 | https://twitter.com/mansour_mohamed/status/419001663991869440 | 2014-01-03 07:05:56 | 1388732756 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @_AgendA_ صباحك فل، اوعدنا يا رب :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="246199618" dir="ltr" href="/_AgendA_"><s>@</s><b>_AgendA_</b></a> صباحك فل، اوعدنا يا رب :(</p> | -1.0 |
255191 | nou1199 | Naznaz | 1327046132 | 418907713360658432 | https://twitter.com/nou1199/status/418907713360658432 | 2014-01-03 00:52:36 | 1388710356 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ولو فيا حاجات فكراك .. تاخدها معاك بالمرة :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ولو فيا حاجات فكراك .. تاخدها معاك بالمرة :(</p> | -1.0 |
255203 | MahmoUdEhabII | مَـاهُوْو | 703852008 | 418905761931333632 | https://twitter.com/MahmoUdEhabII/status/418905761931333632 | 2014-01-03 00:44:51 | 1388709891 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @MhDaian أربعة وعشين :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="565367460" dir="ltr" href="/MhDaian"><s>@</s><b>MhDaian</b></a> أربعة وعشين :(</p> | -1.0 |
255209 | MahmoUdEhabII | مَـاهُوْو | 703852008 | 418904405187244032 | https://twitter.com/MahmoUdEhabII/status/418904405187244032 | 2014-01-03 00:39:27 | 1388709567 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @MhDaian خلقة أمي دي مش هتشوفها إلا في شهر 2 :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="565367460" dir="ltr" href="/MhDaian"><s>@</s><b>MhDaian</b></a> خلقة أمي دي مش هتشوفها إلا في شهر 2 :(</p> | -1.0 |
255245 | Muhamad_hammad | Mohamed hammad | 397573674 | 418899352749629440 | https://twitter.com/Muhamad_hammad/status/418899352749629440 | 2014-01-03 00:19:23 | 1388708363 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الاجاازة بتنزف مني :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الاجاازة بتنزف مني :(</p> | -1.0 |
255330 | ziadmahgoup | Ziad Mahgoup | 450756000 | 418888211470249984 | https://twitter.com/ziadmahgoup/status/418888211470249984 | 2014-01-02 23:35:06 | 1388705706 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | نفسي اعرف مين ابن الكلب اللي قال " علي وشك يبان يا مداغ اللبان " ؟ يجي يشوف اللي بيحصل معانا :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نفسي اعرف مين ابن الكلب اللي قال " علي وشك يبان يا مداغ اللبان " ؟ يجي يشوف اللي بيحصل معانا :(</p> | -1.0 |
255686 | hassan_el3ntbly | Hassan | 188490580 | 418728380914483200 | https://twitter.com/hassan_el3ntbly/status/418728380914483200 | 2014-01-02 13:00:00 | 1388667600 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بالمنظر ده الواحد يشيل السنه اسهل والله :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بالمنظر ده الواحد يشيل السنه اسهل والله :(</p> | -1.0 |
255721 | Simolution | islam abbas | 126748348 | 418710169066168320 | https://twitter.com/Simolution/status/418710169066168320 | 2014-01-02 11:47:38 | 1388663258 | 1 | 1 | 1 | 0 | NaN | NaN | NaN | "@thegaafar: بلاغ للنائب العام ضد شركة KIA .. عشان بيشاركو في تكوين الأنارKIA في مصر :("حضرتك ممكن تقدم بلاغ ل شركةNokia وهما هيتصرفوا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="159649419" dir="ltr" href="/thegaafar"><s>@</s><b>thegaafar</b></a>: بلاغ للنائب العام ضد شركة KIA .. عشان بيشاركو في تكوين الأنارKIA في مصر :("حضرتك ممكن تقدم بلاغ ل شركةNokia وهما هيتصرفوا</p> | -1.0 |
255900 | AbodystaR1 | Abdallah Gamal | 911138328 | 418609503580721152 | https://twitter.com/AbodystaR1/status/418609503580721152 | 2014-01-02 05:07:37 | 1388639257 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الحب الجميل الصادق تبقى ذكراه إلى الأبد\nو الحب الكاذب ينتهي إلى آخر نقطة\nفي قاع الجرح " | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الحب الجميل الصادق تبقى ذكراه إلى الأبد\nو الحب الكاذب ينتهي إلى آخر نقطة\nفي قاع الجرح <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>"</p> | -1.0 |
255901 | MuhammedTarekkk | Muhamed Tarek | 956034866 | 418609486732206080 | https://twitter.com/MuhammedTarekkk/status/418609486732206080 | 2014-01-02 05:07:33 | 1388639253 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | امتحان فلسفة\nادعولى :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">امتحان فلسفة\nادعولى :(</p> | -1.0 |
256129 | AyaElmorsy | AYA | 464021804 | 418532077072826369 | https://twitter.com/AyaElmorsy/status/418532077072826369 | 2014-01-01 23:59:57 | 1388620797 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | El organic da le3bty asln . | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">El organic da le3bty asln <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/>.</p> | -1.0 |
256211 | booitsnotaghost | Amina Ferrara | 94856095 | 418514051204141056 | https://twitter.com/booitsnotaghost/status/418514051204141056 | 2014-01-01 22:48:20 | 1388616500 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Last night in Gouna :-( I don't want to go back to Cairo! | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Last night in Gouna :-( I don't want to go back to Cairo! <img alt="😣" aria-label="Emoji: Persevering face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f623.png" title="Persevering face"/></p> | -1.0 |
256390 | rozagbreel | fairouz | 428586873 | 418460108348481536 | https://twitter.com/rozagbreel/status/418460108348481536 | 2014-01-01 19:13:59 | 1388603639 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Yomnalismo ايه يا مرا ما تقعدي في بيتكوا وبطلي صياعة وسايباني متلقحة في الاقصر كده!:( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@Yomnalismo ايه يا مرا ما تقعدي في بيتكوا وبطلي صياعة وسايباني متلقحة في الاقصر كده!:(</p> | -1.0 |
256462 | rozagbreel | fairouz | 428586873 | 418440032534687744 | https://twitter.com/rozagbreel/status/418440032534687744 | 2014-01-01 17:54:12 | 1388598852 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @EslamAdel55 ya mama ya Esso!:( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1088501777891246082" dir="ltr" href="/EslamAdel55"><s>@</s><b>EslamAdel55</b></a> ya mama ya Esso!:(</p> | -1.0 |
256504 | boktoor | البقطري | 335880958 | 418424308487446528 | https://twitter.com/boktoor/status/418424308487446528 | 2014-01-01 16:51:43 | 1388595103 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @AntarcticZara و انتي طيبه يا ساره...انا عارف اني ندل :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@AntarcticZara و انتي طيبه يا ساره...انا عارف اني ندل :(</p> | -1.0 |
256552 | Aghaaby | אגאבי | 1932480392 | 418405610536050688 | https://twitter.com/Aghaaby/status/418405610536050688 | 2014-01-01 15:37:25 | 1388590645 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | مانا طول الوقت مش مبينة وبفصل مابتحكم فى اللى جوايا \n\nاشمعنى النهاردة :( :( >_< | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مانا طول الوقت مش مبينة وبفصل مابتحكم فى اللى جوايا \n\nاشمعنى النهاردة :( :( >_<</p> | -1.0 |
256575 | ZenabHafez | Zeinab | 73558411 | 418397721155100672 | https://twitter.com/ZenabHafez/status/418397721155100672 | 2014-01-01 15:06:04 | 1388588764 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @MazenRef3at اه والله ا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="328293359" dir="ltr" href="/MazenRef3at"><s>@</s><b>MazenRef3at</b></a> اه والله ا<img alt="😰" aria-label="Emoji: Face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f630.png" title="Face with open mouth and cold sweat"/></p> | -1.0 |
256642 | doaahesham6 | doaa hesham | 1143888655 | 418374841528770560 | https://twitter.com/doaahesham6/status/418374841528770560 | 2014-01-01 13:35:09 | 1388583309 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وحشنى البيت نفسى اروح :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وحشنى البيت نفسى اروح :(</p> | -1.0 |
256662 | mansour_mohamed | بقول اني منييح | 203271191 | 418367558388310016 | https://twitter.com/mansour_mohamed/status/418367558388310016 | 2014-01-01 13:06:13 | 1388581573 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 1st missed chance in #2014 :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">1st missed chance in #2014 :(</p> | -1.0 |
256732 | FallingSlowly93 | Amany | 339952197 | 418345657502810112 | https://twitter.com/FallingSlowly93/status/418345657502810112 | 2014-01-01 11:39:11 | 1388576351 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @rahafmostafa4 :((( ربنا يقومه بالسﻻمة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="751759479658733568" dir="ltr" href="/RahafMostafa4"><s>@</s><b>rahafmostafa4</b></a> :((( ربنا يقومه بالسﻻمة</p> | -1.0 |
256801 | halaomar31 | Hala eltwisy | 1294519610 | 418309459807830016 | https://twitter.com/halaomar31/status/418309459807830016 | 2014-01-01 09:15:21 | 1388567721 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "@nadamohammad200: الناموس سايب البيت كله ومش لاقى حد يقرصه غيرى .. وشى بقى شوارع .." الناموس نفخني :(((((((( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="183827413" dir="ltr" href="/nadamohammad200"><s>@</s><b>nadamohammad200</b></a>: الناموس سايب البيت كله ومش لاقى حد يقرصه غيرى .. وشى بقى شوارع .." الناموس نفخني :((((((((</p> | -1.0 |
256824 | AhmedTarekabofa | ﮼أبوفريده | 835510759 | 418290798036525056 | https://twitter.com/AhmedTarekabofa/status/418290798036525056 | 2014-01-01 08:01:12 | 1388563272 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يا سﻻم بقي لو كوبايه قهوه فرنساوي زياااده :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يا سﻻم بقي لو كوبايه قهوه فرنساوي زياااده :(</p> | -1.0 |
256870 | AhMeD_AlBoShii | ﮼بوشا | 258244256 | 418263658117234688 | https://twitter.com/AhMeD_AlBoShii/status/418263658117234688 | 2014-01-01 06:13:21 | 1388556801 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | فقدت صاحب ليا في اول السنادي :(( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">فقدت صاحب ليا في اول السنادي :((</p> | -1.0 |
256941 | mahmouddmostafa | Don Mahmoud | 516785387 | 418205700394065921 | https://twitter.com/mahmouddmostafa/status/418205700394065921 | 2014-01-01 02:23:03 | 1388542983 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | عايز اسيب البلد دي اللي كل حاجة فيها فاسدة...حتى الثورة اللي كنت حاطط عليها امل كبير تنظف البلد...في نظري اﻻن فشلت :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عايز اسيب البلد دي اللي كل حاجة فيها فاسدة...حتى الثورة اللي كنت حاطط عليها امل كبير تنظف البلد...في نظري اﻻن فشلت :(</p> | -1.0 |
5756 rows × 17 columns
egypt tweets/egypt_tweets_2015.csv - 166366 tweets
Hashtag | Count | |
---|---|---|
0 | #كليب_ليث | 2358 |
1 | #LaithAbuJoda | 1737 |
2 | #3alahwa | 709 |
3 | #Laith_At_SakyatAlsawy | 609 |
4 | #مباشر | 602 |
5 | #مصر | 490 |
6 | #Egypt | 480 |
7 | #ليث_في_يوم_اليتيم | 476 |
8 | #egypt | 423 |
9 | #البورصة_المصرية | 404 |
10 | #LaithAbuJodaClip | 385 |
11 | #الساقية_هتولع_مع_ليث | 367 |
12 | #حفلة_ليث_أبوجودة_فالساقية | 337 |
13 | #حفله_ليث_أبوجوده_فالساقيه | 332 |
14 | #أبو_ليث_نور_مصر | 278 |
15 | #ليث_أبوجودة_في_يوم_اليتيم | 278 |
16 | #FiZo | 273 |
17 | #luxor | 256 |
18 | #الله_يسامحنا | 256 |
19 | # | 251 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
125007 | BkkarNub | Muhammad Hassan | 1481645000 | 569888848186093568 | https://twitter.com/BkkarNub/status/569888848186093568 | 2015-02-23 15:57:44 | 1424707064 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #Communist #feminist #atheist #truepic.twitter.com/lruE60l2Pw | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Communist?src=hash"><s>#</s><b>Communist</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/feminist?src=hash"><s>#</s><b>feminist</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/atheist?src=hash"><s>#</s><b>atheist</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/true?src=hash"><s>#</s><b>true</b></a><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/lruE60l2Pw">pic.twitter.com/lruE60l2Pw</a></p> | 0.0 |
Positive feels: 33535. Negative feels: 7341 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 3omarfawzi | الأستاذ | 3028029377 | 682712816273457152 | https://twitter.com/3omarfawzi/status/682712816273457152 | 2015-12-31 23:59:54 | 1451606394 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الصحاب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الصحاب <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 1.0 |
3 | M0ussa10 | Mo7amed_Moussa | 3031844805 | 682708457066229760 | https://twitter.com/M0ussa10/status/682708457066229760 | 2015-12-31 23:42:34 | 1451605354 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | هو النميس ايه غير بنأدمين وديجيهات .. وشوية حاجات فوق بعض | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هو النميس ايه غير بنأدمين وديجيهات .. وشوية حاجات فوق بعض <img alt="😄" aria-label="Emoji: Smiling face with open mouth and smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f604.png" title="Smiling face with open mouth and smiling eyes"/></p> | 1.0 |
4 | ChooCh63725283 | ChoÖoCh | 4503649889 | 682707789081395200 | https://twitter.com/ChooCh63725283/status/682707789081395200 | 2015-12-31 23:39:55 | 1451605195 | 1 | 1 | 1 | 0 | NaN | NaN | NaN | @nermenakhaled حبيييبي انتي والله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2966797589" dir="ltr" href="/nermenakhaled"><s>@</s><b>nermenakhaled</b></a> حبيييبي <img alt="💗" aria-label="Emoji: Growing heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f497.png" title="Growing heart"/>انتي والله<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 2.0 |
6 | Hemoz_Mohamed | HeMoZ | 379142910 | 682705633846652929 | https://twitter.com/Hemoz_Mohamed/status/682705633846652929 | 2015-12-31 23:31:21 | 1451604681 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt https://www.instagram.com/p/_-YcTdrBhv/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="da"><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-YcTdrBhv/" dir="ltr" href="https://t.co/mqrnxJtuRE" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-YcTdrBhv/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-YcTdrBhv/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
7 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682702553382043648 | https://twitter.com/AmmarElhussine/status/682702553382043648 | 2015-12-31 23:19:07 | 1451603947 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | علمنا علي عيال كتيير في الرقص | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">علمنا علي عيال كتيير في الرقص <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
8 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682702407709659136 | https://twitter.com/AmmarElhussine/status/682702407709659136 | 2015-12-31 23:18:32 | 1451603912 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | احسن راس سنه قضيتها السنادي شكللها سنه سعيده وحللوه ومفرفشه ومدلعه وكل حاااجه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">احسن راس سنه قضيتها السنادي شكللها سنه سعيده وحللوه ومفرفشه ومدلعه وكل حاااجه <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 2.0 |
9 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682702040854872064 | https://twitter.com/AmmarElhussine/status/682702040854872064 | 2015-12-31 23:17:05 | 1451603825 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @hagoor_elhuseny انا مقضيه ف كافتريه ورقص ودلع بلد ايه بس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3430269472" dir="ltr" href="/hagoor_elhuseny"><s>@</s><b>hagoor_elhuseny</b></a> انا مقضيه ف كافتريه ورقص ودلع بلد ايه بس <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
10 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682701879646752768 | https://twitter.com/AmmarElhussine/status/682701879646752768 | 2015-12-31 23:16:26 | 1451603786 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | خربناها مع ايوزيزو شغلناااه في الكافتريا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">خربناها مع ايوزيزو شغلناااه في الكافتريا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
11 | isma3iil_ | محمّد | 1043224430 | 682698758979624960 | https://twitter.com/isma3iil_/status/682698758979624960 | 2015-12-31 23:04:02 | 1451603042 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يشعر بالفتي مع 4 اخرين \nهابي نيو يير @ رباب https://www.instagram.com/p/_-VTw_R1Lq/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يشعر بالفتي مع 4 اخرين <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\nهابي نيو يير <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/> @ رباب <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-VTw_R1Lq/" dir="ltr" href="https://t.co/Sj9WW406Ys" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-VTw_R1Lq/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-VTw_R1Lq/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
12 | biancapeeters1 | bianca peeters | 785496445 | 682697773175730176 | https://twitter.com/biancapeeters1/status/682697773175730176 | 2015-12-31 23:00:07 | 1451602807 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Our waiter for tonight #thethreecorners #elgouna #egypt… https://www.instagram.com/p/_-U3g7kAsCERNme99k05i_eMHRjC9oSNBxwHU0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Our waiter for tonight <img alt="😜" aria-label="Emoji: Face with stuck-out tongue and winking eye" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61c.png" title="Face with stuck-out tongue and winking eye"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/thethreecorners?src=hash"><s>#</s><b>thethreecorners</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/elgouna?src=hash"><s>#</s><b>elgouna</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-U3g7kAsCERNme99k05i_eMHRjC9oSNBxwHU0/" dir="ltr" href="https://t.co/fbi0UJaYjw" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-U3g7kAsCERNme99k05i_eMHRjC9oSNBxwHU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-U3g7kAsCER</span><span class="invisible">Nme99k05i_eMHRjC9oSNBxwHU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
13 | EngPeterwagdy51 | Peter Wagdy | 2935628795 | 682697199088713732 | https://twitter.com/EngPeterwagdy51/status/682697199088713732 | 2015-12-31 22:57:50 | 1451602670 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #Welcome_2016 \nيارب تكون سنة جديدة بداية فرحة جديدة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Welcome_2016?src=hash"><s>#</s><b>Welcome_2016</b></a> \nيارب تكون سنة جديدة بداية فرحة جديدة <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/></p> | 1.0 |
20 | 3omarfawzi | الأستاذ | 3028029377 | 682712816273457152 | https://twitter.com/3omarfawzi/status/682712816273457152 | 2015-12-31 23:59:54 | 1451606394 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الصحاب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الصحاب <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 1.0 |
23 | M0ussa10 | Mo7amed_Moussa | 3031844805 | 682708457066229760 | https://twitter.com/M0ussa10/status/682708457066229760 | 2015-12-31 23:42:34 | 1451605354 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | هو النميس ايه غير بنأدمين وديجيهات .. وشوية حاجات فوق بعض | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هو النميس ايه غير بنأدمين وديجيهات .. وشوية حاجات فوق بعض <img alt="😄" aria-label="Emoji: Smiling face with open mouth and smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f604.png" title="Smiling face with open mouth and smiling eyes"/></p> | 1.0 |
24 | ChooCh63725283 | ChoÖoCh | 4503649889 | 682707789081395200 | https://twitter.com/ChooCh63725283/status/682707789081395200 | 2015-12-31 23:39:55 | 1451605195 | 1 | 1 | 1 | 0 | NaN | NaN | NaN | @nermenakhaled حبيييبي انتي والله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2966797589" dir="ltr" href="/nermenakhaled"><s>@</s><b>nermenakhaled</b></a> حبيييبي <img alt="💗" aria-label="Emoji: Growing heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f497.png" title="Growing heart"/>انتي والله<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 2.0 |
26 | Hemoz_Mohamed | HeMoZ | 379142910 | 682705633846652929 | https://twitter.com/Hemoz_Mohamed/status/682705633846652929 | 2015-12-31 23:31:21 | 1451604681 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt https://www.instagram.com/p/_-YcTdrBhv/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="da"><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-YcTdrBhv/" dir="ltr" href="https://t.co/mqrnxJtuRE" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-YcTdrBhv/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-YcTdrBhv/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
27 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682702553382043648 | https://twitter.com/AmmarElhussine/status/682702553382043648 | 2015-12-31 23:19:07 | 1451603947 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | علمنا علي عيال كتيير في الرقص | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">علمنا علي عيال كتيير في الرقص <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
28 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682702407709659136 | https://twitter.com/AmmarElhussine/status/682702407709659136 | 2015-12-31 23:18:32 | 1451603912 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | احسن راس سنه قضيتها السنادي شكللها سنه سعيده وحللوه ومفرفشه ومدلعه وكل حاااجه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">احسن راس سنه قضيتها السنادي شكللها سنه سعيده وحللوه ومفرفشه ومدلعه وكل حاااجه <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 2.0 |
29 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682702040854872064 | https://twitter.com/AmmarElhussine/status/682702040854872064 | 2015-12-31 23:17:05 | 1451603825 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @hagoor_elhuseny انا مقضيه ف كافتريه ورقص ودلع بلد ايه بس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3430269472" dir="ltr" href="/hagoor_elhuseny"><s>@</s><b>hagoor_elhuseny</b></a> انا مقضيه ف كافتريه ورقص ودلع بلد ايه بس <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
30 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682701879646752768 | https://twitter.com/AmmarElhussine/status/682701879646752768 | 2015-12-31 23:16:26 | 1451603786 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | خربناها مع ايوزيزو شغلناااه في الكافتريا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">خربناها مع ايوزيزو شغلناااه في الكافتريا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
31 | isma3iil_ | محمّد | 1043224430 | 682698758979624960 | https://twitter.com/isma3iil_/status/682698758979624960 | 2015-12-31 23:04:02 | 1451603042 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يشعر بالفتي مع 4 اخرين \nهابي نيو يير @ رباب https://www.instagram.com/p/_-VTw_R1Lq/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يشعر بالفتي مع 4 اخرين <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\nهابي نيو يير <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/> @ رباب <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-VTw_R1Lq/" dir="ltr" href="https://t.co/Sj9WW406Ys" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-VTw_R1Lq/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-VTw_R1Lq/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
32 | biancapeeters1 | bianca peeters | 785496445 | 682697773175730176 | https://twitter.com/biancapeeters1/status/682697773175730176 | 2015-12-31 23:00:07 | 1451602807 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Our waiter for tonight #thethreecorners #elgouna #egypt… https://www.instagram.com/p/_-U3g7kAsCERNme99k05i_eMHRjC9oSNBxwHU0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Our waiter for tonight <img alt="😜" aria-label="Emoji: Face with stuck-out tongue and winking eye" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61c.png" title="Face with stuck-out tongue and winking eye"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/thethreecorners?src=hash"><s>#</s><b>thethreecorners</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/elgouna?src=hash"><s>#</s><b>elgouna</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-U3g7kAsCERNme99k05i_eMHRjC9oSNBxwHU0/" dir="ltr" href="https://t.co/fbi0UJaYjw" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-U3g7kAsCERNme99k05i_eMHRjC9oSNBxwHU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-U3g7kAsCER</span><span class="invisible">Nme99k05i_eMHRjC9oSNBxwHU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
33 | EngPeterwagdy51 | Peter Wagdy | 2935628795 | 682697199088713732 | https://twitter.com/EngPeterwagdy51/status/682697199088713732 | 2015-12-31 22:57:50 | 1451602670 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #Welcome_2016 \nيارب تكون سنة جديدة بداية فرحة جديدة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Welcome_2016?src=hash"><s>#</s><b>Welcome_2016</b></a> \nيارب تكون سنة جديدة بداية فرحة جديدة <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/></p> | 1.0 |
45 | maram_tawfik | Maram 🎀 | 2218099011 | 682688325887651841 | https://twitter.com/maram_tawfik/status/682688325887651841 | 2015-12-31 22:22:35 | 1451600555 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | @mostafasharaf17 happy new year ya 7Ag | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="874994846439809024" dir="ltr" href="/mostafasharaf17"><s>@</s><b>mostafasharaf17</b></a> happy new year ya 7Ag <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💜" aria-label="Emoji: Purple heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49c.png" title="Purple heart"/></p> | 2.0 |
48 | Mohamed_A7med__ | Mohamed Ahmed | 1692464046 | 682685656942948352 | https://twitter.com/Mohamed_A7med__/status/682685656942948352 | 2015-12-31 22:11:58 | 1451599918 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy new year. @ نادي نقابة المهندسين باسيوط https://www.instagram.com/p/_-Oq98mLbhn0LGbcsuRsnldUrof1l16aJkK1o0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">Happy new year. <img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💞" aria-label="Emoji: Revolving hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49e.png" title="Revolving hearts"/><img alt="🙋" aria-label="Emoji: Happy person raising one hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64b.png" title="Happy person raising one hand"/> @ نادي نقابة المهندسين باسيوط <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-Oq98mLbhn0LGbcsuRsnldUrof1l16aJkK1o0/" dir="ltr" href="https://t.co/41qfCEo7xe" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-Oq98mLbhn0LGbcsuRsnldUrof1l16aJkK1o0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-Oq98mLbhn0</span><span class="invisible">LGbcsuRsnldUrof1l16aJkK1o0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
53 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682682840170016768 | https://twitter.com/AmmarElhussine/status/682682840170016768 | 2015-12-31 22:00:47 | 1451599247 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | ارقص ارقص \n\nكل سنه ونتو طيبيننن | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ارقص ارقص <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> \n\nكل سنه ونتو طيبيننن <img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/></p> | 2.0 |
67 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682672592831004673 | https://twitter.com/AmmarElhussine/status/682672592831004673 | 2015-12-31 21:20:04 | 1451596804 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | حفله جااااامده في جاردينيا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حفله جااااامده في جاردينيا <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 1.0 |
69 | Esraa3010 | إسـراء | 2590374800 | 682671003055570945 | https://twitter.com/Esraa3010/status/682671003055570945 | 2015-12-31 21:13:45 | 1451596425 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ونسيت النار شغالة مرتين انهرده ولا لينا دخول مطابخ ايام الامتحانات بردو | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ونسيت النار شغالة مرتين انهرده<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> ولا لينا دخول مطابخ ايام الامتحانات بردو<img alt="👆" aria-label="Emoji: Up pointing backhand index" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f446.png" title="Up pointing backhand index"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
72 | Esraa3010 | إسـراء | 2590374800 | 682670319476338689 | https://twitter.com/Esraa3010/status/682670319476338689 | 2015-12-31 21:11:02 | 1451596262 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | نزلت نص ساعة بس كنت هعمل ٣ حوادث الحمد للهعشان نقول ملناش سواقة ايام الامتحاناتولا غيرو والله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نزلت نص ساعة بس كنت هعمل ٣ حوادث الحمد لله<img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>عشان نقول ملناش سواقة ايام الامتحانات<img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/>ولا غيرو والله<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
103 | karimadel773 | Karim Abd el nasser | 3596100322 | 682663847136722944 | https://twitter.com/karimadel773/status/682663847136722944 | 2015-12-31 20:45:19 | 1451594719 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وهتفضل اهم امنيه فى بدايه كل سنه ان ربنا يخليلى ماما وبابا وميحرمنيش منهم ... ويطول فى عمرهم ويبقي مبسوطين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وهتفضل اهم امنيه فى بدايه كل سنه ان ربنا يخليلى ماما وبابا وميحرمنيش منهم ... ويطول فى عمرهم ويبقي مبسوطين <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 1.0 |
154 | magdaanter | ماجدةعنتر | 3387812554 | 682653399993708544 | https://twitter.com/magdaanter/status/682653399993708544 | 2015-12-31 20:03:48 | 1451592228 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #ChahineInPatioNewCairo\nابدااااااع♡♡ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ChahineInPatioNewCairo?src=hash"><s>#</s><b>ChahineInPatioNewCairo</b></a>\nابدااااااع♡<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>♡<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 2.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
166036 | Mina_Magdy_B | MiИA | 226020906 | 550645286184701952 | https://twitter.com/Mina_Magdy_B/status/550645286184701952 | 2015-01-01 13:30:41 | 1420119041 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "@7azla2om: مرتضي منصور هايحمّل نفرين من ميدان لبنان بدل مؤمن وباتشيكو في الأتوبيس " | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="42937359" dir="ltr" href="/7azla2om"><s>@</s><b>7azla2om</b></a>: مرتضي منصور هايحمّل نفرين من ميدان لبنان بدل مؤمن وباتشيكو في الأتوبيس <img alt="😄" aria-label="Emoji: Smiling face with open mouth and smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f604.png" title="Smiling face with open mouth and smiling eyes"/>"</p> | 1.0 |
166039 | Mina_Magdy_B | MiИA | 226020906 | 550644148387471361 | https://twitter.com/Mina_Magdy_B/status/550644148387471361 | 2015-01-01 13:26:10 | 1420118770 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "@M_TAWAKOL: الزمالكاوية الي هنا احب اقولهم......... \n\nواقولهم لية انا اهرب احسن " | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="751134348041154560" dir="ltr" href="/m_tawakol"><s>@</s><b>M_TAWAKOL</b></a>: الزمالكاوية الي هنا احب اقولهم......... \n\nواقولهم لية انا اهرب احسن <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>"</p> | 1.0 |
166041 | loaaha | آلاء 🕊🌲 | 538296969 | 550644031110516737 | https://twitter.com/loaaha/status/550644031110516737 | 2015-01-01 13:25:42 | 1420118742 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | سيبيه الحب ده انتي أولى بيه #لو_بتحبيه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">سيبيه الحب ده انتي أولى بيه <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%84%D9%88_%D8%A8%D8%AA%D8%AD%D8%A8%D9%8A%D9%87?src=hash"><s>#</s><b>لو_بتحبيه</b></a></p> | 1.0 |
166046 | Mina_Magdy_B | MiИA | 226020906 | 550642207129358339 | https://twitter.com/Mina_Magdy_B/status/550642207129358339 | 2015-01-01 13:18:27 | 1420118307 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "@Mad_Darsh: الزمالك رجل واحد .. شعب واحد .. ستة واحد .. و باتشيكو غفلهم وهرب يوم واحد pic.twitter.com/hGOP62xrdb" | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="152763573" dir="ltr" href="/Mad_Darsh"><s>@</s><b>Mad_Darsh</b></a>: الزمالك رجل واحد .. شعب واحد .. ستة واحد .. و باتشيكو غفلهم وهرب يوم واحد <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> <a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/hGOP62xrdb">pic.twitter.com/hGOP62xrdb</a>"</p> | 1.0 |
166068 | Basant__Atef | Basant Atef | 584857632 | 550636877527912448 | https://twitter.com/Basant__Atef/status/550636877527912448 | 2015-01-01 12:57:16 | 1420117036 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | @Adel226Marwa عاأأاااااااا انشكححححت | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2513023156" dir="ltr" href="/Adel226Marwa"><s>@</s><b>Adel226Marwa</b></a> عاأأاااااااا انشكححححت <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😻" aria-label="Emoji: Smiling cat face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f63b.png" title="Smiling cat face with heart-shaped eyes"/><img alt="😻" aria-label="Emoji: Smiling cat face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f63b.png" title="Smiling cat face with heart-shaped eyes"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💚" aria-label="Emoji: Green heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49a.png" title="Green heart"/><img alt="💛" aria-label="Emoji: Yellow heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49b.png" title="Yellow heart"/><img alt="💜" aria-label="Emoji: Purple heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49c.png" title="Purple heart"/><img alt="💓" aria-label="Emoji: Beating heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f493.png" title="Beating heart"/><img alt="💕" aria-label="Emoji: Two hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f495.png" title="Two hearts"/><img alt="💗" aria-label="Emoji: Growing heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f497.png" title="Growing heart"/><img alt="💞" aria-label="Emoji: Revolving hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49e.png" title="Revolving hearts"/><img alt="💟" aria-label="Emoji: Heart decoration" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49f.png" title="Heart decoration"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/><img alt="🌷" aria-label="Emoji: Tulip" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f337.png" title="Tulip"/><img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/><img alt="🌹" aria-label="Emoji: Rose" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f339.png" title="Rose"/><img alt="🌼" aria-label="Emoji: Blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33c.png" title="Blossom"/><img alt="🌻" aria-label="Emoji: Sunflower" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33b.png" title="Sunflower"/><img alt="🌺" aria-label="Emoji: Hibiscus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33a.png" title="Hibiscus"/></p> | 20.0 |
166071 | Basant__Atef | Basant Atef | 584857632 | 550634824755871744 | https://twitter.com/Basant__Atef/status/550634824755871744 | 2015-01-01 12:49:07 | 1420116547 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | @Adel226Marwa يا دولا يكفي اني موجودة في حياتك عشان تتفائلي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2513023156" dir="ltr" href="/Adel226Marwa"><s>@</s><b>Adel226Marwa</b></a> يا دولا يكفي اني موجودة في حياتك عشان تتفائلي <img alt="😜" aria-label="Emoji: Face with stuck-out tongue and winking eye" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61c.png" title="Face with stuck-out tongue and winking eye"/><img alt="😜" aria-label="Emoji: Face with stuck-out tongue and winking eye" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61c.png" title="Face with stuck-out tongue and winking eye"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 2.0 |
166098 | Helpawy_ | Helpawy | 290744652 | 550621713864863744 | https://twitter.com/Helpawy_/status/550621713864863744 | 2015-01-01 11:57:01 | 1420113421 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @3nanElSamaa يارب ♡:-) | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar">@3nanElSamaa يارب ♡:-)</p> | 1.0 |
166100 | rim3bdelra7eem | Rim ツ | 605787344 | 550620279651975168 | https://twitter.com/rim3bdelra7eem/status/550620279651975168 | 2015-01-01 11:51:19 | 1420113079 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | فيش حد يجيبلي طبق زلابيا بالشيكولاته | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">فيش حد يجيبلي طبق زلابيا بالشيكولاته <img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 2.0 |
166103 | mugadallah | Muhamed Gadallah | 101523663 | 550618294315532288 | https://twitter.com/mugadallah/status/550618294315532288 | 2015-01-01 11:43:26 | 1420112606 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ادم بيتصور #selfe :D\n#instafun #instaphoto #kids @ طهطا Tahta http://instagram.com/p/xT2EzIypFh/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ادم بيتصور <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/selfe?src=hash"><s>#</s><b>selfe</b></a> :D\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/instafun?src=hash"><s>#</s><b>instafun</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/instaphoto?src=hash"><s>#</s><b>instaphoto</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/kids?src=hash"><s>#</s><b>kids</b></a> @ طهطا Tahta <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/xT2EzIypFh/" dir="ltr" href="http://t.co/DgiCVPZsYr" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/xT2EzIypFh/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/xT2EzIypFh/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
166109 | ss516149313 | البت الروشة | 2857537019 | 550607870161846273 | https://twitter.com/ss516149313/status/550607870161846273 | 2015-01-01 11:02:00 | 1420110120 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | - سُبحان الله . \n- الحمدلله .\n- لا إله إلا الله . \n- اللهُ أكبر .\n- سُبحان الله و بحمدهِ .\n- سُبحان الله العظيم ." | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">- سُبحان الله <img alt="💜" aria-label="Emoji: Purple heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49c.png" title="Purple heart"/>. \n- الحمدلله <img alt="🍃" aria-label="Emoji: Leaf fluttering in wind" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f343.png" title="Leaf fluttering in wind"/>.\n- لا إله إلا الله <img alt="🍈" aria-label="Emoji: Melon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f348.png" title="Melon"/>. \n- اللهُ أكبر <img alt="💎" aria-label="Emoji: Gem stone" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f48e.png" title="Gem stone"/>.\n- سُبحان الله و بحمدهِ <img alt="❄" aria-label="Emoji: Snowflake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2744.png" title="Snowflake"/>.\n- سُبحان الله العظيم <img alt="🌿" aria-label="Emoji: Herb" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33f.png" title="Herb"/>."</p> | 5.0 |
166153 | SherifZaki94 | Sherif Zaki | 1012849651 | 550574921810599937 | https://twitter.com/SherifZaki94/status/550574921810599937 | 2015-01-01 08:51:05 | 1420102265 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy New Year #gouna @mbrazzz @ El Gouna, Egypt http://instagram.com/p/xTiWfMk5xQ/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy New Year <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/gouna?src=hash"><s>#</s><b>gouna</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="927552284908810241" dir="ltr" href="/mbrazzz"><s>@</s><b>mbrazzz</b></a> @ El Gouna, Egypt <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/xTiWfMk5xQ/" dir="ltr" href="http://t.co/fl5d5dG4Y6" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/xTiWfMk5xQ/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/xTiWfMk5xQ/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
166160 | HappyGeddan | Heba 🇪🇬 | 236070179 | 550569174876319745 | https://twitter.com/HappyGeddan/status/550569174876319745 | 2015-01-01 08:28:15 | 1420100895 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | After months of nonstop work.. am in a vacation heading to sahl7ashish\nElly 3ayez 7ashish y2oly | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">After months of nonstop work.. am in a vacation <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/> heading to sahl7ashish\nElly 3ayez 7ashish y2oly <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/><img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/></p> | 1.0 |
166197 | ebramkw | Ebram Kamal William | 283425693 | 550549959121313792 | https://twitter.com/ebramkw/status/550549959121313792 | 2015-01-01 07:11:53 | 1420096313 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @TheDeel_ wenty taybaaa ya HODHOD, we happy new year :D | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="29566782" dir="ltr" href="/TheDeel_"><s>@</s><b>TheDeel_</b></a> wenty taybaaa ya HODHOD, we happy new year :D</p> | 1.0 |
166225 | a7madesma3il | احمد أحياناً | 876249811 | 550534049258029056 | https://twitter.com/a7madesma3il/status/550534049258029056 | 2015-01-01 06:08:40 | 1420092520 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أخر تغريدة من الاراضي المصرية\nاشوفكم علي خير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أخر تغريدة من الاراضي المصرية\nاشوفكم علي خير<img alt="✈️" aria-label="Emoji: Airplane" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2708.png" title="Airplane"/></p> | 1.0 |
166229 | M7modMorsy | M.O.R.S.Y | 870638077 | 550526447442739200 | https://twitter.com/M7modMorsy/status/550526447442739200 | 2015-01-01 05:38:28 | 1420090708 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Me without the #Douglas :D #SemiFormal \n#After_Presentation \n\nTakenBy @alaamaaged @… http://instagram.com/p/xTMTsSi-oY/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Me without the <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Douglas?src=hash"><s>#</s><b>Douglas</b></a> <img alt="👨" aria-label="Emoji: Man" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f468.png" title="Man"/><img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/><img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/> :D <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/SemiFormal?src=hash"><s>#</s><b>SemiFormal</b></a> <img alt="👔" aria-label="Emoji: Necktie" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f454.png" title="Necktie"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/After_Presentation?src=hash"><s>#</s><b>After_Presentation</b></a> <img alt="🎓" aria-label="Emoji: Graduation cap" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f393.png" title="Graduation cap"/>\n\nTakenBy <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="711294331" dir="ltr" href="/ALaaMaaged"><s>@</s><b>alaamaaged</b></a> <img alt="📷" aria-label="Emoji: Camera" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4f7.png" title="Camera"/><img alt="😀" aria-label="Emoji: Grinning face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f600.png" title="Grinning face"/> @… <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/xTMTsSi-oY/" dir="ltr" href="http://t.co/laV3sTgImh" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/xTMTsSi-oY/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/xTMTsSi-oY/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 7.0 |
166261 | YasmeMostafa40 | YaSmEen | 2937202361 | 550501534581391363 | https://twitter.com/YasmeMostafa40/status/550501534581391363 | 2015-01-01 03:59:28 | 1420084768 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لا اله الا الله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لا اله الا الله <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/></p> | 1.0 |
166263 | YasmeMostafa40 | YaSmEen | 2937202361 | 550500228554829824 | https://twitter.com/YasmeMostafa40/status/550500228554829824 | 2015-01-01 03:54:16 | 1420084456 | 0 | 3 | 0 | 0 | NaN | NaN | NaN | في فرق بين حد هيموت ويعرف مالك وميقدرش يسيبك زعلان ،،، وما بين حد يسألك كده عشان بس يبقي اسمه عمل اللي عليه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">في فرق بين حد هيموت ويعرف مالك وميقدرش يسيبك زعلان ،،، وما بين حد يسألك كده عشان بس يبقي اسمه عمل اللي عليه <img alt="👍" aria-label="Emoji: Thumbs up sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44d.png" title="Thumbs up sign"/></p> | 1.0 |
166278 | mema_mahfouz | ﮼لوزه ﮼ | 911125424 | 550493755493847040 | https://twitter.com/mema_mahfouz/status/550493755493847040 | 2015-01-01 03:28:33 | 1420082913 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أجمل 11 ساعة ف حياتي (@ Church Of St. Anthony - كنيسة الأنبا أنطونيوس in Minya) https://www.swarmapp.com/c/446anWvQMgj | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">أجمل 11 ساعة ف حياتي <img alt="💜" aria-label="Emoji: Purple heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49c.png" title="Purple heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> (@ Church Of St. Anthony - كنيسة الأنبا أنطونيوس in Minya) <a class="twitter-timeline-link" data-expanded-url="https://www.swarmapp.com/c/446anWvQMgj" dir="ltr" href="https://t.co/CG8SdSRsRR" rel="nofollow noopener" target="_blank" title="https://www.swarmapp.com/c/446anWvQMgj"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">swarmapp.com/c/446anWvQMgj</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
166286 | Moelsharief | ترالالي™ | 261595678 | 550472305714159616 | https://twitter.com/Moelsharief/status/550472305714159616 | 2015-01-01 02:03:19 | 1420077799 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @aHMedRoMeo96 النهاردة عملتها :D | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3007214051" dir="ltr" href="/aHMedRoMeo96"><s>@</s><b>aHMedRoMeo96</b></a> النهاردة عملتها :D</p> | 1.0 |
166287 | Shenaaaaaz | shahemohamed | 2662844842 | 550471744344305664 | https://twitter.com/Shenaaaaaz/status/550471744344305664 | 2015-01-01 02:01:05 | 1420077665 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @myriamfares وأنتى بخير وبسعادة ع طول | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="208235152" dir="ltr" href="/myriamfares"><s>@</s><b>myriamfares</b></a> وأنتى بخير وبسعادة ع طول <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
166288 | Shenaaaaaz | shahemohamed | 2662844842 | 550471475657199616 | https://twitter.com/Shenaaaaaz/status/550471475657199616 | 2015-01-01 02:00:01 | 1420077601 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @CAROLE_SAMAHA وأنتى بخير وألف سعادة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="159068666" dir="ltr" href="/CAROLE_SAMAHA"><s>@</s><b>CAROLE_SAMAHA</b></a> وأنتى بخير وألف سعادة <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
166289 | Shenaaaaaz | shahemohamed | 2662844842 | 550470930838081536 | https://twitter.com/Shenaaaaaz/status/550470930838081536 | 2015-01-01 01:57:51 | 1420077471 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @SamoZaen جامد مفيش كلام دة انت إلا نورك مغطى بالتوفيق | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="128878194" dir="ltr" href="/SamoZaen"><s>@</s><b>SamoZaen</b></a> جامد مفيش كلام دة انت إلا نورك مغطى بالتوفيق <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
166291 | Shenaaaaaz | shahemohamed | 2662844842 | 550470248869421056 | https://twitter.com/Shenaaaaaz/status/550470248869421056 | 2015-01-01 01:55:09 | 1420077309 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @assihallani ديما بالنجاح كل عام وأنت بخير | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="812613596" dir="ltr" href="/assihallani"><s>@</s><b>assihallani</b></a> ديما بالنجاح <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/> كل عام وأنت بخير</p> | 1.0 |
166293 | Shenaaaaaz | shahemohamed | 2662844842 | 550469799470714880 | https://twitter.com/Shenaaaaaz/status/550469799470714880 | 2015-01-01 01:53:22 | 1420077202 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @mokarimstar يا بختك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="827066696" dir="ltr" href="/mokarimstar"><s>@</s><b>mokarimstar</b></a> يا بختك <img alt="☺" aria-label="Emoji: Smiling face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/263a.png" title="Smiling face"/> <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 2.0 |
166306 | karimnagatiiii | naجaty | 1124870342 | 550461842087505920 | https://twitter.com/karimnagatiiii/status/550461842087505920 | 2015-01-01 01:21:44 | 1420075304 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كل لما بشوف الصورة ديه بتفشخ ضحك pic.twitter.com/A9Wbm6mYaJ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل لما بشوف الصورة ديه بتفشخ ضحك <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/A9Wbm6mYaJ">pic.twitter.com/A9Wbm6mYaJ</a></p> | 1.0 |
166344 | Hesho_1 | Hashem | 164527240 | 550447414642233345 | https://twitter.com/Hesho_1/status/550447414642233345 | 2015-01-01 00:24:25 | 1420071865 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @nadaalisayed لا هو ممكن يغير كليته عادي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2228032196" dir="ltr" href="/nadaalisayed"><s>@</s><b>nadaalisayed</b></a> لا هو ممكن يغير كليته عادي <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
166353 | sheriftion | H | 2451461688 | 550443062208761856 | https://twitter.com/sheriftion/status/550443062208761856 | 2015-01-01 00:07:07 | 1420070827 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sherif_taya_74 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@sherif_taya_74 <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
166356 | sheriftion | H | 2451461688 | 550442514009047040 | https://twitter.com/sheriftion/status/550442514009047040 | 2015-01-01 00:04:56 | 1420070696 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @sherif_taya_74 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">@sherif_taya_74 <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
166360 | sheriftion | H | 2451461688 | 550442086265528321 | https://twitter.com/sheriftion/status/550442086265528321 | 2015-01-01 00:03:14 | 1420070594 | 3 | 5 | 0 | 0 | NaN | NaN | NaN | يارب اللي ما يعملش ريتويت للتويته دي بطنه توجعه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يارب اللي ما يعملش ريتويت للتويته دي بطنه توجعه <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
166364 | sheriftion | H | 2451461688 | 550441422122668035 | https://twitter.com/sheriftion/status/550441422122668035 | 2015-01-01 00:00:36 | 1420070436 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Abeer_EweeS @girlls90 انتي حظك حلو ان انا نعسان | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="192579915" dir="ltr" href="/Abeer_EweeS"><s>@</s><b>Abeer_EweeS</b></a> @girlls90 انتي حظك حلو ان انا نعسان <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
33535 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5 | hamdy_mahmoud33 | hamdy mahmoud | 719091109 | 682707772140474368 | https://twitter.com/hamdy_mahmoud33/status/682707772140474368 | 2015-12-31 23:39:51 | 1451605191 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | joooooo ya joooooo #happynewyear2016 @ نادى القوات المسلحه بالمنيا https://www.instagram.com/p/_-ZaUTQTcs/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">joooooo ya joooooo <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happynewyear2016?src=hash"><s>#</s><b>happynewyear2016</b></a> <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> @ نادى القوات المسلحه بالمنيا <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-ZaUTQTcs/" dir="ltr" href="https://t.co/tcCH0dJN98" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-ZaUTQTcs/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-ZaUTQTcs/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
25 | hamdy_mahmoud33 | hamdy mahmoud | 719091109 | 682707772140474368 | https://twitter.com/hamdy_mahmoud33/status/682707772140474368 | 2015-12-31 23:39:51 | 1451605191 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | joooooo ya joooooo #happynewyear2016 @ نادى القوات المسلحه بالمنيا https://www.instagram.com/p/_-ZaUTQTcs/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">joooooo ya joooooo <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happynewyear2016?src=hash"><s>#</s><b>happynewyear2016</b></a> <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> @ نادى القوات المسلحه بالمنيا <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-ZaUTQTcs/" dir="ltr" href="https://t.co/tcCH0dJN98" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-ZaUTQTcs/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-ZaUTQTcs/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
63 | 1_ikarem | كريم | 774087685 | 682673129269899272 | https://twitter.com/1_ikarem/status/682673129269899272 | 2015-12-31 21:22:12 | 1451596932 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اول يوم في سنه الجديده امتحان،، احيه ،، فين الhappy في الموضوع ياعني | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اول يوم في سنه الجديده امتحان،، احيه <img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/><img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/>،، فين الhappy في الموضوع ياعني <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -2.0 |
64 | 1_ikarem | كريم | 774087685 | 682672976135909376 | https://twitter.com/1_ikarem/status/682672976135909376 | 2015-12-31 21:21:35 | 1451596895 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | مش قايل انا happy new year ياعم،، عندي امتحان بكره يا ولاد المره | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مش قايل انا happy new year ياعم،، عندي امتحان بكره يا ولاد المره <img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/><img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/></p> | -1.0 |
209 | Esraa3010 | إسـراء | 2590374800 | 682645508691738625 | https://twitter.com/Esraa3010/status/682645508691738625 | 2015-12-31 19:32:26 | 1451590346 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اول حاجة هتتعمل بعد الامتحان ان شاء الله ..نجري نصلح موبايلنا كفااية كدااا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اول حاجة هتتعمل بعد الامتحان ان شاء الله ..نجري نصلح موبايلنا <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> كفااية كدااا <img alt="😣" aria-label="Emoji: Persevering face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f623.png" title="Persevering face"/><img alt="😣" aria-label="Emoji: Persevering face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f623.png" title="Persevering face"/></p> | -2.0 |
243 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682605355663233024 | https://twitter.com/AmmarElhussine/status/682605355663233024 | 2015-12-31 16:52:53 | 1451580773 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | استهلكت 80% من الباقه في اقل من اربع اياز فقط | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">استهلكت 80% من الباقه في اقل من اربع اياز فقط <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
252 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682579438773645312 | https://twitter.com/AmmarElhussine/status/682579438773645312 | 2015-12-31 15:09:54 | 1451574594 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @meko_abdo زمالكاويه في بيت اهلاويه حاله استثنائيه يتري ايه اللي حببك في الزمالك رغم ان عيلتك اهلاويه ؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1523635945" dir="ltr" href="/meko_abdo"><s>@</s><b>meko_abdo</b></a> زمالكاويه في بيت اهلاويه حاله استثنائيه <img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/> يتري ايه اللي حببك في الزمالك رغم ان عيلتك اهلاويه ؟</p> | -1.0 |
267 | 3omarfawzi | الأستاذ | 3028029377 | 682556224840294400 | https://twitter.com/3omarfawzi/status/682556224840294400 | 2015-12-31 13:37:39 | 1451569059 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | خدت مني حتي صورتك يبقي ايه يفكرني بيكي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">خدت مني حتي صورتك يبقي ايه يفكرني بيكي <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -2.0 |
268 | 3omarfawzi | الأستاذ | 3028029377 | 682555166923599876 | https://twitter.com/3omarfawzi/status/682555166923599876 | 2015-12-31 13:33:27 | 1451568807 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | قولولها بحب غيرها و مستحيل ارجعلها | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">قولولها بحب غيرها و مستحيل ارجعلها <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -2.0 |
295 | maram_tawfik | Maram 🎀 | 2218099011 | 682498087189884928 | https://twitter.com/maram_tawfik/status/682498087189884928 | 2015-12-31 09:46:38 | 1451555198 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الواحد بعد ما يتشجع ويقرر انه يرد \nيجي يرد ع حد تاني خالص | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الواحد بعد ما يتشجع ويقرر انه يرد \nيجي يرد ع حد تاني خالص<img alt="😏" aria-label="Emoji: Smirking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60f.png" title="Smirking face"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
327 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682412089957289984 | https://twitter.com/AmmarElhussine/status/682412089957289984 | 2015-12-31 04:04:55 | 1451534695 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 2015 اخر يوم في \n\nاتمني الناس اللي زعلانه مني تسماحني | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">2015 اخر يوم في \n\nاتمني الناس اللي زعلانه مني تسماحني <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
331 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682394909760983044 | https://twitter.com/AmmarElhussine/status/682394909760983044 | 2015-12-31 02:56:39 | 1451530599 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كيف انساك وانسي هوااك لا لا لا انا ما بقدر | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كيف انساك وانسي هوااك لا لا لا انا ما بقدر <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
335 | maram_tawfik | Maram 🎀 | 2218099011 | 682388643453997056 | https://twitter.com/maram_tawfik/status/682388643453997056 | 2015-12-31 02:31:45 | 1451529105 | 2 | 1 | 1 | 0 | NaN | NaN | NaN | 2016 هتكون سنه ...... \nنتيجه 3ث هتكون فيها \n#ياربpic.twitter.com/gz0ahHelkV | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">2016 هتكون سنه ...... \nنتيجه 3ث هتكون فيها <img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%8A%D8%A7%D8%B1%D8%A8?src=hash"><s>#</s><b>يارب</b></a><img alt="👐" aria-label="Emoji: Open hands sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f450.png" title="Open hands sign"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/gz0ahHelkV">pic.twitter.com/gz0ahHelkV</a></p> | -1.0 |
340 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682383216221798404 | https://twitter.com/AmmarElhussine/status/682383216221798404 | 2015-12-31 02:10:11 | 1451527811 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | شايل هموم الناس ومين يشيل همى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">شايل هموم الناس ومين يشيل همى <img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/></p> | -1.0 |
349 | maram_tawfik | Maram 🎀 | 2218099011 | 682356599348944897 | https://twitter.com/maram_tawfik/status/682356599348944897 | 2015-12-31 00:24:25 | 1451521465 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | شوكولاته اللي بترقع في البوء واللي فيها مفرقعات | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">شوكولاته اللي بترقع في البوء واللي فيها مفرقعات <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
362 | Mahmoud_FCB | Mahmoud | 2385325680 | 682340895706857473 | https://twitter.com/Mahmoud_FCB/status/682340895706857473 | 2015-12-30 23:22:01 | 1451517721 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | الحمد لله \nاشكر الله \nواشكر الناس اللي ربنا سببهم لانقاذ حياتي \nالحمد الله حتي يبلغ الحمد منتهاه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الحمد لله \nاشكر الله \nواشكر الناس اللي ربنا سببهم لانقاذ حياتي \nالحمد الله حتي يبلغ الحمد منتهاه <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
373 | 3liAshraf | Ali Ashraf | 519792934 | 682295004266676224 | https://twitter.com/3liAshraf/status/682295004266676224 | 2015-12-30 20:19:40 | 1451506780 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #insta #playing #football #back #performance #injury @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt https://www.instagram.com/p/_7dtU0L6R9/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="da"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/insta?src=hash"><s>#</s><b>insta</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/playing?src=hash"><s>#</s><b>playing</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/football?src=hash"><s>#</s><b>football</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/back?src=hash"><s>#</s><b>back</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/performance?src=hash"><s>#</s><b>performance</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/injury?src=hash"><s>#</s><b>injury</b></a> <img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/><img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/><img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/> @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_7dtU0L6R9/" dir="ltr" href="https://t.co/KyPRH0nwxL" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_7dtU0L6R9/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_7dtU0L6R9/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
375 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682292026545668096 | https://twitter.com/AmmarElhussine/status/682292026545668096 | 2015-12-30 20:07:50 | 1451506070 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | دموعك غاليه علينا ي شيكا \n\nمش عارف من غيرك هنعمل ايه والله ي مستر اسيست | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">دموعك غاليه علينا ي شيكا <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/>\n\nمش عارف من غيرك هنعمل ايه والله ي مستر اسيست <img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -3.0 |
390 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682266549537865729 | https://twitter.com/AmmarElhussine/status/682266549537865729 | 2015-12-30 18:26:35 | 1451499995 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @Mookaa_8 لا اله الا الله هوا نااقص | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@Mookaa_8 لا اله الا الله هوا نااقص <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -2.0 |
395 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682263009981558785 | https://twitter.com/AmmarElhussine/status/682263009981558785 | 2015-12-30 18:12:32 | 1451499152 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | محمد صبحي خرااااا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">محمد صبحي خرااااا <img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/><img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/></p> | -2.0 |
396 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682261255474835456 | https://twitter.com/AmmarElhussine/status/682261255474835456 | 2015-12-30 18:05:33 | 1451498733 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ولسه الاسماعيلي بيللعب لعب عشوائي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ولسه الاسماعيلي بيللعب لعب عشوائي <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
406 | maram_tawfik | Maram 🎀 | 2218099011 | 682245960722952193 | https://twitter.com/maram_tawfik/status/682245960722952193 | 2015-12-30 17:04:47 | 1451495087 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اصل الغباء ملهاش اخر | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اصل الغباء ملهاش اخر <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
419 | donia_yahia | النُوبِيّــــةْ ☮♈ | 1375119998 | 682225712523264002 | https://twitter.com/donia_yahia/status/682225712523264002 | 2015-12-30 15:44:19 | 1451490259 | 0 | 5 | 2 | 0 | NaN | NaN | NaN | كفايانا سوشيال ميديا بقى\rعاوزين نعرف ناس جديدة يبقى نزود نشاطاتنا في الحياة \rعاوزين نحكي مع اصحابنا طاب ما نتقابل ونفطر مع بعض مثلا\rبسيطة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كفايانا سوشيال ميديا بقى\rعاوزين نعرف ناس جديدة يبقى نزود نشاطاتنا في الحياة \rعاوزين نحكي مع اصحابنا طاب ما نتقابل ونفطر مع بعض مثلا\rبسيطة<img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
445 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682201570046558208 | https://twitter.com/AmmarElhussine/status/682201570046558208 | 2015-12-30 14:08:23 | 1451484503 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @hagoor_elhuseny وهوا فيه حد بيذاكر من كتاب اي الغباء ده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3430269472" dir="ltr" href="/hagoor_elhuseny"><s>@</s><b>hagoor_elhuseny</b></a> وهوا فيه حد بيذاكر من كتاب اي الغباء ده <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
448 | Esraa3010 | إسـراء | 2590374800 | 682199036389146624 | https://twitter.com/Esraa3010/status/682199036389146624 | 2015-12-30 13:58:19 | 1451483899 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | *بتحاول تنام ومتفكرش ف امتحان فات وامتحان جاي انيل*\n*بتحاول تتنام وتتمنى لو الوقت يقف * \nعديها ع خير يااارب :'( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">*بتحاول تنام ومتفكرش ف امتحان فات وامتحان جاي انيل*<img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>\n*بتحاول تتنام وتتمنى لو الوقت يقف * <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>\nعديها ع خير يااارب :'(</p> | -1.0 |
449 | Esraa3010 | إسـراء | 2590374800 | 682197754987343872 | https://twitter.com/Esraa3010/status/682197754987343872 | 2015-12-30 13:53:14 | 1451483594 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا اسفة بجد يا جماعة ع اللى بعملوا فيكو ف الامتحانات \nقدركوا ..استحملوني بقى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا اسفة بجد يا جماعة ع اللى بعملوا فيكو ف الامتحانات <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/>\nقدركوا ..استحملوني بقى<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | -1.0 |
480 | aliee6682 | mahamed mohj | 2845774030 | 682161374089375744 | https://twitter.com/aliee6682/status/682161374089375744 | 2015-12-30 11:28:40 | 1451474920 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | " والله داعش تختفي حسبي الله ونعم الوكيل فيهم \nويعم الأمان فكل مكان \n#اشياء_تتمناها_تختفي_بسنه_2016" | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">" والله داعش تختفي حسبي الله ونعم الوكيل فيهم \nويعم الأمان فكل مكان <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D8%B4%D9%8A%D8%A7%D8%A1_%D8%AA%D8%AA%D9%85%D9%86%D8%A7%D9%87%D8%A7_%D8%AA%D8%AE%D8%AA%D9%81%D9%8A_%D8%A8%D8%B3%D9%86%D9%87_2016?src=hash"><s>#</s><b>اشياء_تتمناها_تختفي_بسنه_2016</b></a>"</p> | -2.0 |
492 | Mahmoud_FCB | Mahmoud | 2385325680 | 682144051362181120 | https://twitter.com/Mahmoud_FCB/status/682144051362181120 | 2015-12-30 10:19:50 | 1451470790 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ﻣَﺎ ﻛَﺎﻥَ ﺍﻟﻠَّﻪُ ﻟِﻴُﻌَﺬِّﺑَﻬُﻢْ ﻭَﺃَﻧﺖَ ﻓِﻴﻬِﻢْ ۚ ﻭَﻣَﺎ ﻛَﺎﻥَ ﺍﻟﻠَّﻪُ ﻣُﻌَﺬِّﺑَﻬُﻢْ ﻭَﻫُﻢْ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ﻣَﺎ ﻛَﺎﻥَ ﺍﻟﻠَّﻪُ ﻟِﻴُﻌَﺬِّﺑَﻬُﻢْ ﻭَﺃَﻧﺖَ ﻓِﻴﻬِﻢْ ۚ ﻭَﻣَﺎ ﻛَﺎﻥَ ﺍﻟﻠَّﻪُ ﻣُﻌَﺬِّﺑَﻬُﻢْ ﻭَﻫُﻢْ <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
503 | eed454560 | احمد حمودي | 4241077576 | 682112187708604417 | https://twitter.com/eed454560/status/682112187708604417 | 2015-12-30 08:13:13 | 1451463193 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الناس مش بتبص لغلطتها .!\nبيبصوا لرد فعلنا بس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الناس مش بتبص لغلطتها .!\nبيبصوا لرد فعلنا بس <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
520 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682046850833223680 | https://twitter.com/AmmarElhussine/status/682046850833223680 | 2015-12-30 03:53:35 | 1451447615 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #لولا_السوشيال_ميديا_كنا والله كانت احلي عيشه وكنا نقعدو لمه حللوه وكنا نحكي احلي حكاوي دلوقتي نقعد مع بعض وكل واحد ماسك موبايلو | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%84%D9%88%D9%84%D8%A7_%D8%A7%D9%84%D8%B3%D9%88%D8%B4%D9%8A%D8%A7%D9%84_%D9%85%D9%8A%D8%AF%D9%8A%D8%A7_%D9%83%D9%86%D8%A7?src=hash"><s>#</s><b>لولا_السوشيال_ميديا_كنا</b></a> والله كانت احلي عيشه وكنا نقعدو لمه حللوه وكنا نحكي احلي حكاوي دلوقتي نقعد مع بعض وكل واحد ماسك موبايلو <img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/><img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/></p> | -1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
165043 | ahmedfa72303202 | ČHÊ fahmy | 1002548460 | 551220834426429441 | https://twitter.com/ahmedfa72303202/status/551220834426429441 | 2015-01-03 03:37:42 | 1420256262 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @noodykhaleed ومرديش عليكي ليسا ؟؟pic.twitter.com/jTaa4vM4IP | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@noodykhaleed ومرديش عليكي ليسا ؟؟<img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/jTaa4vM4IP">pic.twitter.com/jTaa4vM4IP</a></p> | -1.0 |
165077 | Yassern291 | Yasser Nabil 📨📝 | 148362368 | 551186723594829825 | https://twitter.com/Yassern291/status/551186723594829825 | 2015-01-03 01:22:10 | 1420248130 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | You will never walk alone #Gerrard :(pic.twitter.com/52Bo5vZLkN | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">You will never walk alone <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Gerrard?src=hash"><s>#</s><b>Gerrard</b></a> :(<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/52Bo5vZLkN">pic.twitter.com/52Bo5vZLkN</a></p> | -1.0 |
165094 | Arwaaaa__ | Arwa | 563269598 | 551167648428744704 | https://twitter.com/Arwaaaa__/status/551167648428744704 | 2015-01-03 00:06:22 | 1420243582 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | @FootballFunnys لا حول و لا قوة الا بالله ، شوف الفُجر ياخي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="365953260" dir="ltr" href="/FootballFunnys"><s>@</s><b>FootballFunnys</b></a> لا حول و لا قوة الا بالله ، شوف الفُجر ياخي <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
165097 | Arwaaaa__ | Arwa | 563269598 | 551164642165526529 | https://twitter.com/Arwaaaa__/status/551164642165526529 | 2015-01-02 23:54:25 | 1420242865 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | انا ارفض الامتحانات في البرد ده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا ارفض الامتحانات في البرد ده <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
165138 | 7ssan91 | Ahmed Hassan | 587790146 | 551141628464074752 | https://twitter.com/7ssan91/status/551141628464074752 | 2015-01-02 22:22:58 | 1420237378 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وحدي لكن نعسان | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وحدي لكن نعسان <img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/></p> | -1.0 |
165198 | BeckEugenie | Nini | 443987002 | 551116140353945600 | https://twitter.com/BeckEugenie/status/551116140353945600 | 2015-01-02 20:41:41 | 1420231301 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Dernier jour demain pic.twitter.com/rsfLFCopeO | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="fr">Dernier jour demain <img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/rsfLFCopeO">pic.twitter.com/rsfLFCopeO</a></p> | -1.0 |
165215 | ahmedfa72303202 | ČHÊ fahmy | 1002548460 | 551105467540594691 | https://twitter.com/ahmedfa72303202/status/551105467540594691 | 2015-01-02 19:59:17 | 1420228757 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عايز اكل حلاوه مولد انا مكلتش خاااااااالص | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عايز اكل حلاوه مولد انا مكلتش خاااااااالص <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😫" aria-label="Emoji: Tired face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62b.png" title="Tired face"/></p> | -2.0 |
165227 | mariam_ebrahem | مَرِيَمْـ | 2646969915 | 551097603103129600 | https://twitter.com/mariam_ebrahem/status/551097603103129600 | 2015-01-02 19:28:02 | 1420226882 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | الحاجة الى برتبلها و اقول خلاص اكيد هتحصل مش بتحصل ....مفيش احلى من الحاجة الى تحصل صدفة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الحاجة الى برتبلها و اقول خلاص اكيد هتحصل مش بتحصل ....مفيش احلى من الحاجة الى تحصل صدفة <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/></p> | -1.0 |
165273 | erin_EEW | •Ërîñ• | 2880819917 | 551069268461502464 | https://twitter.com/erin_EEW/status/551069268461502464 | 2015-01-02 17:35:26 | 1420220126 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #نحن المواطنون المطحونون في هذه #الدولة :(\n#الثانوية_العامة\n#هابي_نيو_يير\n#السنة_الجديدةpic.twitter.com/iYI0MzjdJF | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%86%D8%AD%D9%86?src=hash"><s>#</s><b>نحن</b></a> المواطنون المطحونون في هذه <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AF%D9%88%D9%84%D8%A9?src=hash"><s>#</s><b>الدولة</b></a> :(\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AB%D8%A7%D9%86%D9%88%D9%8A%D8%A9_%D8%A7%D9%84%D8%B9%D8%A7%D9%85%D8%A9?src=hash"><s>#</s><b>الثانوية_العامة</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%87%D8%A7%D8%A8%D9%8A_%D9%86%D9%8A%D9%88_%D9%8A%D9%8A%D8%B1?src=hash"><s>#</s><b>هابي_نيو_يير</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%B3%D9%86%D8%A9_%D8%A7%D9%84%D8%AC%D8%AF%D9%8A%D8%AF%D8%A9?src=hash"><s>#</s><b>السنة_الجديدة</b></a><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/iYI0MzjdJF">pic.twitter.com/iYI0MzjdJF</a></p> | -1.0 |
165298 | karimnagatiiii | naجaty | 1124870342 | 551048567511871488 | https://twitter.com/karimnagatiiii/status/551048567511871488 | 2015-01-02 16:13:11 | 1420215191 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Electrostatics | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">Electrostatics <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -2.0 |
165321 | hegazovic74 | حجازي | 186785586 | 551041562583793664 | https://twitter.com/hegazovic74/status/551041562583793664 | 2015-01-02 15:45:21 | 1420213521 | 1 | 16 | 2 | 0 | NaN | NaN | NaN | الحاجه اللي بتيجي بسهوله بتروح بسهوله\nاما الحاجه اللي بتيجي بصعوبه فبتروح بسهوله برضه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الحاجه اللي بتيجي بسهوله بتروح بسهوله\nاما الحاجه اللي بتيجي بصعوبه فبتروح بسهوله برضه <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
165361 | YasmeMostafa40 | YaSmEen | 2937202361 | 551023230782545921 | https://twitter.com/YasmeMostafa40/status/551023230782545921 | 2015-01-02 14:32:30 | 1420209150 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بقى صعبه الاقيها | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بقى صعبه الاقيها <img alt="😕" aria-label="Emoji: Confused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f615.png" title="Confused face"/></p> | -1.0 |
165494 | hegazovic74 | حجازي | 186785586 | 550954633834024960 | https://twitter.com/hegazovic74/status/550954633834024960 | 2015-01-02 09:59:55 | 1420192795 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @saramamduh انا بكلمك والموبايل في ال USB اصلا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="923111953173745664" dir="ltr" href="/SaraMamduh"><s>@</s><b>saramamduh</b></a> انا بكلمك والموبايل في ال USB اصلا <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
165500 | hegazovic74 | حجازي | 186785586 | 550952530625462272 | https://twitter.com/hegazovic74/status/550952530625462272 | 2015-01-02 09:51:34 | 1420192294 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @saramamduh يعني 200 جنيه ولا حاجه لأ شكرا مش عاوز اشحن | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="923111953173745664" dir="ltr" href="/SaraMamduh"><s>@</s><b>saramamduh</b></a> يعني 200 جنيه ولا حاجه لأ شكرا مش عاوز اشحن <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
165509 | hagarassem19 | Hagar. | 727491745 | 550942102449041408 | https://twitter.com/hagarassem19/status/550942102449041408 | 2015-01-02 09:10:07 | 1420189807 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بس انت اصلا معفن مش شويت اللبس و المنظرة دول اللي هينضفوك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بس انت اصلا معفن مش شويت اللبس و المنظرة دول اللي هينضفوك<img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
165515 | erin_EEW | •Ërîñ• | 2880819917 | 550938560581599232 | https://twitter.com/erin_EEW/status/550938560581599232 | 2015-01-02 08:56:03 | 1420188963 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | بليييييييييز :(pic.twitter.com/SN8QxKwkEV | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بليييييييييز :(<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/SN8QxKwkEV">pic.twitter.com/SN8QxKwkEV</a></p> | -1.0 |
165556 | hegazovic74 | حجازي | 186785586 | 550854365339484161 | https://twitter.com/hegazovic74/status/550854365339484161 | 2015-01-02 03:21:29 | 1420168889 | 0 | 7 | 1 | 0 | NaN | NaN | NaN | ممكن شخص واحد يغنيك عن الكل والكل ميقدرش يغنيك عن شخص واحد وعجبي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ممكن شخص واحد يغنيك عن الكل والكل ميقدرش يغنيك عن شخص واحد وعجبي <img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/></p> | -1.0 |
165557 | hegazovic74 | حجازي | 186785586 | 550853351244828673 | https://twitter.com/hegazovic74/status/550853351244828673 | 2015-01-02 03:17:27 | 1420168647 | 0 | 1 | 3 | 0 | NaN | NaN | NaN | بحس اني لو دخلت الأمتحان من غير دقن مش هعرف احل وهشيل الماده\nامتحانات = مفيش حلاقه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بحس اني لو دخلت الأمتحان من غير دقن مش هعرف احل وهشيل الماده\nامتحانات = مفيش حلاقه <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
165559 | hegazovic74 | حجازي | 186785586 | 550849340135464960 | https://twitter.com/hegazovic74/status/550849340135464960 | 2015-01-02 03:01:31 | 1420167691 | 0 | 4 | 0 | 0 | NaN | NaN | NaN | احساس انك طول مرحتش تكلمه هو مش هييجي يكلمك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">احساس انك طول مرحتش تكلمه هو مش هييجي يكلمك <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
165571 | Simolution | islam abbas | 126748348 | 550829007311495168 | https://twitter.com/Simolution/status/550829007311495168 | 2015-01-02 01:40:43 | 1420162843 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @BasemKenawY أصلا عادي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="147943708" dir="ltr" href="/BasemKenawY"><s>@</s><b>BasemKenawY</b></a> أصلا عادي <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
165595 | Simolution | islam abbas | 126748348 | 550811654137856001 | https://twitter.com/Simolution/status/550811654137856001 | 2015-01-02 00:31:46 | 1420158706 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | انا برج المكتب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا برج المكتب <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
165715 | sheriftion | H | 2451461688 | 550774007088566272 | https://twitter.com/sheriftion/status/550774007088566272 | 2015-01-01 22:02:10 | 1420149730 | 2 | 0 | 1 | 0 | NaN | NaN | NaN | حسبي الله pic.twitter.com/vd06j6RUfo | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حسبي الله <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="http://t.co/vd06j6RUfo">pic.twitter.com/vd06j6RUfo</a></p> | -1.0 |
165749 | MidoDahy | Mido Dahy | 524288394 | 550758774882172928 | https://twitter.com/MidoDahy/status/550758774882172928 | 2015-01-01 21:01:39 | 1420146099 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Listen to علشان يشبهلك - محمد منير by Safrota #np on #SoundCloud\nhttps://soundcloud.com/safrota/track-4 كان نفسى أضمك وبقوه :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">Listen to علشان يشبهلك - محمد منير by Safrota <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/np?src=hash"><s>#</s><b>np</b></a> on <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/SoundCloud?src=hash"><s>#</s><b>SoundCloud</b></a>\n<a class="twitter-timeline-link" data-expanded-url="https://soundcloud.com/safrota/track-4" dir="ltr" href="https://t.co/x0uXzX4MXA" rel="nofollow noopener" target="_blank" title="https://soundcloud.com/safrota/track-4"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">soundcloud.com/safrota/track-4</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a> كان نفسى أضمك وبقوه :(</p> | -1.0 |
165811 | Helpawy_ | Helpawy | 290744652 | 550739302502924289 | https://twitter.com/Helpawy_/status/550739302502924289 | 2015-01-01 19:44:16 | 1420141456 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | :( | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">:(</p> | -1.0 |
165823 | Arwaaaa__ | Arwa | 563269598 | 550726041833332736 | https://twitter.com/Arwaaaa__/status/550726041833332736 | 2015-01-01 18:51:35 | 1420138295 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لا متهزروش متهزروش يا سبيرز ! تشيلسي هيقلبوها ، انا بضحك ليه ليه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لا متهزروش متهزروش يا سبيرز ! تشيلسي هيقلبوها ، انا بضحك ليه ليه <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
165829 | OGamalM | Omar Gamal Mokhtar | 499086732 | 550723765303525377 | https://twitter.com/OGamalM/status/550723765303525377 | 2015-01-01 18:42:32 | 1420137752 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 4 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">4 <img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/></p> | -1.0 |
165879 | lizylizaveta | Елизавета Куренкова | 294516859 | 550703770775347200 | https://twitter.com/lizylizaveta/status/550703770775347200 | 2015-01-01 17:23:05 | 1420132985 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Casper )))) @ Mamamia Restaurant http://instagram.com/p/xUc8hQihET/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">Casper <img alt="🐨" aria-label="Emoji: Koala" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f428.png" title="Koala"/><img alt="😱" aria-label="Emoji: Face screaming in fear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f631.png" title="Face screaming in fear"/>)))) @ Mamamia Restaurant <a class="twitter-timeline-link" data-expanded-url="http://instagram.com/p/xUc8hQihET/" dir="ltr" href="http://t.co/uh7lj2EZAX" rel="nofollow noopener" target="_blank" title="http://instagram.com/p/xUc8hQihET/"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">instagram.com/p/xUc8hQihET/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
165932 | sheriftion | H | 2451461688 | 550687309902118912 | https://twitter.com/sheriftion/status/550687309902118912 | 2015-01-01 16:17:40 | 1420129060 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | @karemkhmis اي خدمه | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar">@karemkhmis اي خدمه <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
166022 | Arwaaaa__ | Arwa | 563269598 | 550648798947848192 | https://twitter.com/Arwaaaa__/status/550648798947848192 | 2015-01-01 13:44:38 | 1420119878 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | احنا معندناش دفاع علي فكرة \rانا مش عارفة اقول ايه و الله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">احنا معندناش دفاع علي فكرة <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/> \rانا مش عارفة اقول ايه و الله</p> | -1.0 |
166074 | erin_EEW | •Ërîñ• | 2880819917 | 550634180875649024 | https://twitter.com/erin_EEW/status/550634180875649024 | 2015-01-01 12:46:33 | 1420116393 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | @mername53409406 بتهدديني يعني\nطب انا مبخافش\nواعملي بلوك\nوبعدين انتي هتخسريني بسبب مينا عطا!!! :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1710254388" dir="ltr" href="/mername53409406"><s>@</s><b>mername53409406</b></a> بتهدديني يعني\nطب انا مبخافش\nواعملي بلوك\nوبعدين انتي هتخسريني بسبب مينا عطا!!! :(</p> | -1.0 |
7341 rows × 17 columns
egypt tweets/egypt_tweets_2016.csv - 51681 tweets
Hashtag | Count | |
---|---|---|
0 | #egypt | 598 |
1 | #متسمعش_وبس | 444 |
2 | #Egypt | 379 |
3 | #travel | 331 |
4 | #luxor | 256 |
5 | #Luxor | 238 |
6 | #friends | 223 |
7 | #bama2016platinumedition_ranasamaha | 170 |
8 | #زعيم_تويتر_فولورز_مكيف | 139 |
9 | #سنة_حلوة_ياشاهين | 139 |
10 | #HBDMohammadChahine | 139 |
11 | #happy | 138 |
12 | #love | 135 |
13 | #MarwanYoussef | 133 |
14 | #BAMA2016PlatinumEdition_RanaSamaha | 130 |
15 | #traveling | 127 |
16 | # | 125 |
17 | #شاهين_هرم_مصر_الرابع | 123 |
18 | #insta | 121 |
19 | #thisisegypt | 118 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels |
---|
Positive feels: 10978. Negative feels: 1761 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | TheOceanRoamer | TheOceanRoamer | 87554294 | 815339322152886273 | https://twitter.com/TheOceanRoamer/status/815339322152886273 | 2016-12-31 23:30:17 | 1483227017 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Love is, making sure all is well. #nye at lamaisonbleue_elgouna @ La Maison Bleue, El Gouna https://www.instagram.com/p/BOszQcWBTK8/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Love <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> is, making sure all is well. <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/nye?src=hash"><s>#</s><b>nye</b></a> at lamaisonbleue_elgouna @ La Maison Bleue, El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOszQcWBTK8/" dir="ltr" href="https://t.co/1JwS0uDQUo" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOszQcWBTK8/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOszQcWBTK8/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
9 | abnlshimy | Mohamed Ahmed Shimy | 4860581757 | 815312204350324739 | https://twitter.com/abnlshimy/status/815312204350324739 | 2016-12-31 21:42:31 | 1483220551 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Abn 2alby @ Luxor, Egypt https://www.instagram.com/p/BOsm7UIAA8U/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Abn 2alby <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> @ Luxor, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsm7UIAA8U/" dir="ltr" href="https://t.co/3jlM7nWbvn" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsm7UIAA8U/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsm7UIAA8U/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
21 | TheOceanRoamer | TheOceanRoamer | 87554294 | 815339322152886273 | https://twitter.com/TheOceanRoamer/status/815339322152886273 | 2016-12-31 23:30:17 | 1483227017 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Love is, making sure all is well. #nye at lamaisonbleue_elgouna @ La Maison Bleue, El Gouna https://www.instagram.com/p/BOszQcWBTK8/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Love <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> is, making sure all is well. <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/nye?src=hash"><s>#</s><b>nye</b></a> at lamaisonbleue_elgouna @ La Maison Bleue, El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOszQcWBTK8/" dir="ltr" href="https://t.co/1JwS0uDQUo" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOszQcWBTK8/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOszQcWBTK8/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
29 | abnlshimy | Mohamed Ahmed Shimy | 4860581757 | 815312204350324739 | https://twitter.com/abnlshimy/status/815312204350324739 | 2016-12-31 21:42:31 | 1483220551 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Abn 2alby @ Luxor, Egypt https://www.instagram.com/p/BOsm7UIAA8U/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Abn 2alby <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> @ Luxor, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsm7UIAA8U/" dir="ltr" href="https://t.co/3jlM7nWbvn" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsm7UIAA8U/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsm7UIAA8U/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
43 | Shawky_ | Shawky | 2364596634 | 815292300511379457 | https://twitter.com/Shawky_/status/815292300511379457 | 2016-12-31 20:23:26 | 1483215806 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Sweet \n#egypt #iphoneonlyphoto #assuit #mobilephotography #streetphotography #street… https://www.instagram.com/p/BOsd4EvAhXm/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Sweet <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/iphoneonlyphoto?src=hash"><s>#</s><b>iphoneonlyphoto</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/assuit?src=hash"><s>#</s><b>assuit</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mobilephotography?src=hash"><s>#</s><b>mobilephotography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/streetphotography?src=hash"><s>#</s><b>streetphotography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/street?src=hash"><s>#</s><b>street</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsd4EvAhXm/" dir="ltr" href="https://t.co/bpE49MpOvt" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsd4EvAhXm/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsd4EvAhXm/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
53 | EhabFaw14180233 | Ehab Fawzy | 3222490020 | 815263268046393344 | https://twitter.com/EhabFaw14180233/status/815263268046393344 | 2016-12-31 18:28:04 | 1483208884 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | #آخر تلات #ساعات ف 2016 \nكل سنة وإنتوا طيبين جميعاً \n#merry_christmas \n#happy_new_year… https://www.instagram.com/p/BOsQqZyBMuM/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A2%D8%AE%D8%B1?src=hash"><s>#</s><b>آخر</b></a> تلات <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%B3%D8%A7%D8%B9%D8%A7%D8%AA?src=hash"><s>#</s><b>ساعات</b></a> ف 2016 <img alt="😉" aria-label="Emoji: Winking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f609.png" title="Winking face"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>\nكل سنة وإنتوا طيبين جميعاً <img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/merry_christmas?src=hash"><s>#</s><b>merry_christmas</b></a> <img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="🎅" aria-label="Emoji: Father Christmas" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f385.png" title="Father Christmas"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happy_new_year?src=hash"><s>#</s><b>happy_new_year</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsQqZyBMuM/" dir="ltr" href="https://t.co/ej71EyM8ii" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsQqZyBMuM/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsQqZyBMuM/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 3.0 |
54 | RoroBeRaeki | Raeki.Sun | 584328551 | 815259797163491329 | https://twitter.com/RoroBeRaeki/status/815259797163491329 | 2016-12-31 18:14:17 | 1483208057 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Hi Girls !!! We are Dayang Dayang Semalam \n#egyptian… https://www.instagram.com/p/BOsPF-ojDMKXF0pUsSBkjlgDMjQPr6AdCl8vqE0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Hi Girls !!! We are Dayang Dayang Semalam <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egyptian?src=hash"><s>#</s><b>egyptian</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsPF-ojDMKXF0pUsSBkjlgDMjQPr6AdCl8vqE0/" dir="ltr" href="https://t.co/h7h0xOdlQp" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsPF-ojDMKXF0pUsSBkjlgDMjQPr6AdCl8vqE0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsPF-ojDMKX</span><span class="invisible">F0pUsSBkjlgDMjQPr6AdCl8vqE0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
56 | MardonaNo14 | MaRadONa | 1277510460 | 815256719337070593 | https://twitter.com/MardonaNo14/status/815256719337070593 | 2016-12-31 18:02:03 | 1483207323 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | HaPpY NeW YeaR \nMerry Christmas @ Egypt https://www.instagram.com/p/BOsNshBA0IXu98rA1VXXzz6hqjy0XqaoBVqhpw0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><img alt="⭐️" aria-label="Emoji: Medium star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2b50.png" title="Medium star"/><img alt="🌟" aria-label="Emoji: Glowing star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f31f.png" title="Glowing star"/><img alt="⭐️" aria-label="Emoji: Medium star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2b50.png" title="Medium star"/>HaPpY NeW YeaR <img alt="⭐️" aria-label="Emoji: Medium star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2b50.png" title="Medium star"/><img alt="🌟" aria-label="Emoji: Glowing star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f31f.png" title="Glowing star"/><img alt="⭐️" aria-label="Emoji: Medium star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2b50.png" title="Medium star"/>\n<img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="💫" aria-label="Emoji: Dizzy symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4ab.png" title="Dizzy symbol"/><img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/>Merry Christmas <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="💫" aria-label="Emoji: Dizzy symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4ab.png" title="Dizzy symbol"/><img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsNshBA0IXu98rA1VXXzz6hqjy0XqaoBVqhpw0/" dir="ltr" href="https://t.co/Sgcbn8ptot" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsNshBA0IXu98rA1VXXzz6hqjy0XqaoBVqhpw0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsNshBA0IXu</span><span class="invisible">98rA1VXXzz6hqjy0XqaoBVqhpw0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
57 | Ramy_Abdelghany | Ramy Abdel Ghany | 219417100 | 815254380840685568 | https://twitter.com/Ramy_Abdelghany/status/815254380840685568 | 2016-12-31 17:52:45 | 1483206765 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy new year @ Moevenpick Resort & Spa El Gouna https://www.instagram.com/p/BOsModzgqh-er36RXlL7VY8KDSc3cRSgxYnIy40/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy new year <img alt="🎆" aria-label="Emoji: Fireworks" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f386.png" title="Fireworks"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/> @ Moevenpick Resort & Spa El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsModzgqh-er36RXlL7VY8KDSc3cRSgxYnIy40/" dir="ltr" href="https://t.co/YiPLgJKaBv" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsModzgqh-er36RXlL7VY8KDSc3cRSgxYnIy40/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsModzgqh-e</span><span class="invisible">r36RXlL7VY8KDSc3cRSgxYnIy40/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
60 | c4zii | محـــــمڊ | 3247744639 | 815247709175103488 | https://twitter.com/c4zii/status/815247709175103488 | 2016-12-31 17:26:15 | 1483205175 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أوزيل الموسيقا .\n#تأثيراتي #المانيا \n_________\n#الالماني\n#كاس_العالم\n#مسعود_اوزيل\n#ozil… https://www.instagram.com/p/BOsJlnCBF4Q/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar">أوزيل الموسيقا .<img alt="🙉" aria-label="Emoji: Hear-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f649.png" title="Hear-no-evil monkey"/><img alt="💓" aria-label="Emoji: Beating heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f493.png" title="Beating heart"/><img alt="🎶" aria-label="Emoji: Multiple musical notes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b6.png" title="Multiple musical notes"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AA%D8%A3%D8%AB%D9%8A%D8%B1%D8%A7%D8%AA%D9%8A?src=hash"><s>#</s><b>تأثيراتي</b></a><img alt="🔰" aria-label="Emoji: Japanese symbol for beginner" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f530.png" title="Japanese symbol for beginner"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D9%85%D8%A7%D9%86%D9%8A%D8%A7?src=hash"><s>#</s><b>المانيا</b></a> \n_________\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%A7%D9%84%D9%85%D8%A7%D9%86%D9%8A?src=hash"><s>#</s><b>الالماني</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%83%D8%A7%D8%B3_%D8%A7%D9%84%D8%B9%D8%A7%D9%84%D9%85?src=hash"><s>#</s><b>كاس_العالم</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%B3%D8%B9%D9%88%D8%AF_%D8%A7%D9%88%D8%B2%D9%8A%D9%84?src=hash"><s>#</s><b>مسعود_اوزيل</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ozil?src=hash"><s>#</s><b>ozil</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsJlnCBF4Q/" dir="ltr" href="https://t.co/UEqSYOE2Fq" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsJlnCBF4Q/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsJlnCBF4Q/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
61 | foafoa10 | فهد عمر | 2984514181 | 815246121232572416 | https://twitter.com/foafoa10/status/815246121232572416 | 2016-12-31 17:19:56 | 1483204796 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | هدف ليو الثاني \n.\nleobonatini\nهلالي حاب تستمتع..ضيفني وعلي… https://www.instagram.com/p/BOsI39ch29G/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هدف ليو الثاني <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/>\n.\nleobonatini\n<img alt="🔹" aria-label="Emoji: Small blue diamond" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f539.png" title="Small blue diamond"/>هلالي حاب تستمتع..ضيفني وعلي… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsI39ch29G/" dir="ltr" href="https://t.co/VNG1pLKXty" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsI39ch29G/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsI39ch29G/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
70 | MoAliiii | Mohammed Ali Mohammed | 378831863 | 815230614332997632 | https://twitter.com/MoAliiii/status/815230614332997632 | 2016-12-31 16:18:19 | 1483201099 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | سواء سنة حلوة أو سنة وحشة احمد ربنا انك لسة عايش وقادر تأدي صلاتك\nالحمد لله حمدا كثيرا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">سواء سنة حلوة أو سنة وحشة احمد ربنا انك لسة عايش وقادر تأدي صلاتك\nالحمد لله حمدا كثيرا <img alt="🙌" aria-label="Emoji: Person raising both hands in celebration" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64c.png" title="Person raising both hands in celebration"/></p> | 1.0 |
71 | fatmaseif35 | fatmaseif | 715851544701304833 | 815229871051993088 | https://twitter.com/fatmaseif35/status/815229871051993088 | 2016-12-31 16:15:22 | 1483200922 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لولاكي لولا ماحبيت \nلولاكي لولا لولا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لولاكي لولا ماحبيت \nلولاكي لولا لولا<img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/></p> | 1.0 |
73 | MoustafaElsouly | سوشيال 👨💻 | 372072554 | 815216899780812801 | https://twitter.com/MoustafaElsouly/status/815216899780812801 | 2016-12-31 15:23:49 | 1483197829 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy New Start .. Happy New Challenge @ Feed - فييد https://www.instagram.com/p/BOr7lh2hch1/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy New Start .. Happy New Challenge<img alt="✌️" aria-label="Emoji: Victory hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270c.png" title="Victory hand"/> @ Feed - فييد <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOr7lh2hch1/" dir="ltr" href="https://t.co/9IsFinDkK5" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOr7lh2hch1/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOr7lh2hch1/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
81 | KhaledKhorshid | KK | 201871869 | 815203551450398720 | https://twitter.com/KhaledKhorshid/status/815203551450398720 | 2016-12-31 14:30:47 | 1483194647 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | With #horus #visitegypt @ Temple of Edfu https://www.instagram.com/p/BOr1hLlglpd6yushqTylCcGOywuDojEEaFXPLc0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">With <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/horus?src=hash"><s>#</s><b>horus</b></a> <img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/visitegypt?src=hash"><s>#</s><b>visitegypt</b></a> @ Temple of Edfu <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOr1hLlglpd6yushqTylCcGOywuDojEEaFXPLc0/" dir="ltr" href="https://t.co/xSW2dD1cfJ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOr1hLlglpd6yushqTylCcGOywuDojEEaFXPLc0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOr1hLlglpd6</span><span class="invisible">yushqTylCcGOywuDojEEaFXPLc0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
85 | XBeRLLiNNX | BeRLiN | 383156580 | 815199951953203201 | https://twitter.com/XBeRLLiNNX/status/815199951953203201 | 2016-12-31 14:16:28 | 1483193788 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الحب كله اقسم بالله @ صيدلية الرحمه https://www.instagram.com/p/BOrz4WjDsM-24Zhd_nuiAz64eYH5kpyp1pjbog0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الحب كله اقسم بالله <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> @ صيدلية الرحمه <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOrz4WjDsM-24Zhd_nuiAz64eYH5kpyp1pjbog0/" dir="ltr" href="https://t.co/6W9fFMSXEx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOrz4WjDsM-24Zhd_nuiAz64eYH5kpyp1pjbog0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOrz4WjDsM-2</span><span class="invisible">4Zhd_nuiAz64eYH5kpyp1pjbog0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
100 | fatmaseif35 | fatmaseif | 715851544701304833 | 815190448058892289 | https://twitter.com/fatmaseif35/status/815190448058892289 | 2016-12-31 13:38:42 | 1483191522 | 2 | 0 | 1 | 0 | NaN | NaN | NaN | هل الفرعون صغير جاهز للاحتفال \n@DondonZHaMed @LX7JGfBaBJcKaiO \nجاهزين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هل الفرعون صغير جاهز للاحتفال \n<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="896976540" dir="ltr" href="/DondonZHaMed"><s>@</s><b>DondonZHaMed</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="746900453510754304" dir="ltr" href="/LX7JGfBaBJcKaiO"><s>@</s><b>LX7JGfBaBJcKaiO</b></a> \nجاهزين <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
109 | SpillieTheKid | Steven Spillebeen | 293733396 | 815170855919644672 | https://twitter.com/SpillieTheKid/status/815170855919644672 | 2016-12-31 12:20:51 | 1483186851 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy 2017 my Friends! :) @ El Gouna https://www.instagram.com/p/BOrmo_QDIXk/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy 2017 my Friends! :) @ El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOrmo_QDIXk/" dir="ltr" href="https://t.co/jK1GiK6FKQ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOrmo_QDIXk/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOrmo_QDIXk/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
114 | fatmaseif35 | fatmaseif | 715851544701304833 | 815145119699628032 | https://twitter.com/fatmaseif35/status/815145119699628032 | 2016-12-31 10:38:35 | 1483180715 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | صباح اخر يوم في سنه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صباح اخر يوم في سنه <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
117 | mhmoudism | Mahmoud. | 704793660 | 815132103155314688 | https://twitter.com/mhmoudism/status/815132103155314688 | 2016-12-31 09:46:52 | 1483177612 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | أغنية كوكاكولا معلقة في دماغي و مش عارف اذاكر | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أغنية كوكاكولا معلقة في دماغي و مش عارف اذاكر<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
119 | RaniaZayan | Rania Zayan | 239416257 | 815096256519356418 | https://twitter.com/RaniaZayan/status/815096256519356418 | 2016-12-31 07:24:25 | 1483169065 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | Bonjour @ El Gouna, Egypt https://www.instagram.com/p/BOrEuRNF85JRTILQenc2UtghULvksTSQ2QhdOY0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="fr">Bonjour <img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/> @ El Gouna, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOrEuRNF85JRTILQenc2UtghULvksTSQ2QhdOY0/" dir="ltr" href="https://t.co/C4SKXb8RKy" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOrEuRNF85JRTILQenc2UtghULvksTSQ2QhdOY0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOrEuRNF85JR</span><span class="invisible">TILQenc2UtghULvksTSQ2QhdOY0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
120 | temo_shady | Shady | 815086254270320640 | 815092459172663296 | https://twitter.com/temo_shady/status/815092459172663296 | 2016-12-31 07:09:20 | 1483168160 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اول منشور ليا ...\nHappy new year | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">اول منشور ليا ...\nHappy new year <img alt="✌" aria-label="Emoji: Victory hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270c.png" title="Victory hand"/><img alt="✌" aria-label="Emoji: Victory hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270c.png" title="Victory hand"/><img alt="💗" aria-label="Emoji: Growing heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f497.png" title="Growing heart"/><img alt="💗" aria-label="Emoji: Growing heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f497.png" title="Growing heart"/></p> | 2.0 |
150 | fatmaseif35 | fatmaseif | 715851544701304833 | 814899129637892097 | https://twitter.com/fatmaseif35/status/814899129637892097 | 2016-12-30 18:21:07 | 1483122067 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الاراده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الاراده <img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/></p> | 1.0 |
170 | fatmaseif35 | fatmaseif | 715851544701304833 | 814899129637892097 | https://twitter.com/fatmaseif35/status/814899129637892097 | 2016-12-30 18:21:07 | 1483122067 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الاراده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الاراده <img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/></p> | 1.0 |
180 | c4zii | محـــــمڊ | 3247744639 | 814865164604321792 | https://twitter.com/c4zii/status/814865164604321792 | 2016-12-30 16:06:09 | 1483113969 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #سقراط وضع الحروف على النقاط . #90_سنة_فخر_اتحادي .\n_______________\nalittihad.fc_… https://www.instagram.com/p/BOpbnPihhcf/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%B3%D9%82%D8%B1%D8%A7%D8%B7?src=hash"><s>#</s><b>سقراط</b></a> وضع الحروف على النقاط . <img alt="🎬" aria-label="Emoji: Clapper board" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3ac.png" title="Clapper board"/><img alt="🎶" aria-label="Emoji: Multiple musical notes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b6.png" title="Multiple musical notes"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/90_%D8%B3%D9%86%D8%A9_%D9%81%D8%AE%D8%B1_%D8%A7%D8%AA%D8%AD%D8%A7%D8%AF%D9%8A?src=hash"><s>#</s><b>90_سنة_فخر_اتحادي</b></a> .<img alt="💛" aria-label="Emoji: Yellow heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49b.png" title="Yellow heart"/>\n_______________\nalittihad.fc_… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOpbnPihhcf/" dir="ltr" href="https://t.co/zTQJGSExgK" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOpbnPihhcf/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOpbnPihhcf/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 3.0 |
186 | AhmdAbdElHakem | A. | 1151003419 | 814848893099921408 | https://twitter.com/AhmdAbdElHakem/status/814848893099921408 | 2016-12-30 15:01:29 | 1483110089 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Peace ya man @ الغنايم https://www.instagram.com/p/BOpUPRljaMrSMpx8tsGl-XFE_umNVwNNTB4bhQ0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Peace ya man <img alt="✌️" aria-label="Emoji: Victory hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270c.png" title="Victory hand"/> @ الغنايم <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOpUPRljaMrSMpx8tsGl-XFE_umNVwNNTB4bhQ0/" dir="ltr" href="https://t.co/f5peUYHM8B" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOpUPRljaMrSMpx8tsGl-XFE_umNVwNNTB4bhQ0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOpUPRljaMrS</span><span class="invisible">Mpx8tsGl-XFE_umNVwNNTB4bhQ0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
227 | JanaAhmed555 | Jana Ahmed | 812871676249731072 | 814649522202755073 | https://twitter.com/JanaAhmed555/status/814649522202755073 | 2016-12-30 01:49:16 | 1483062556 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | كل شئ هيبقا عادي\nلازم قلبك يفضل هادي\nجوجو | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل شئ هيبقا عادي\nلازم قلبك يفضل هادي\nجوجو<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
229 | mariaaligaber | 🌺🌻Maria🌻🌺 | 1543733636 | 814615439972114434 | https://twitter.com/mariaaligaber/status/814615439972114434 | 2016-12-29 23:33:50 | 1483054430 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بحبها الصغننة دي ^^ @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt https://www.instagram.com/p/BOnqE59Dmp6/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">بحبها الصغننة دي ^^<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOnqE59Dmp6/" dir="ltr" href="https://t.co/Su5phu7kPz" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOnqE59Dmp6/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOnqE59Dmp6/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
233 | dondondido | dondon dido🍒 | 1452429678 | 814594314399576068 | https://twitter.com/dondondido/status/814594314399576068 | 2016-12-29 22:09:53 | 1483049393 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الصمت شئ جميل فى زمن ده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الصمت شئ جميل فى زمن ده<img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/><img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/></p> | 1.0 |
237 | osamaelsadek97 | OZAMA ! | 334360651 | 814590388786831360 | https://twitter.com/osamaelsadek97/status/814590388786831360 | 2016-12-29 21:54:17 | 1483048457 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | Costa y costaaaa @ Cavello https://www.instagram.com/p/BOneryAjdSX/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">Costa y costaaaa <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Cavello <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOneryAjdSX/" dir="ltr" href="https://t.co/daT7nW9OCd" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOneryAjdSX/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOneryAjdSX/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
51557 | nadernasser52 | nader52 | 3115953076 | 682976947631165440 | https://twitter.com/nadernasser52/status/682976947631165440 | 2016-01-01 17:29:28 | 1451669368 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #الكريسماس\nولع الخميس بليل والمطر طفاه الجمعه الصبح pic.twitter.com/Akv6OJjGjG | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D9%83%D8%B1%D9%8A%D8%B3%D9%85%D8%A7%D8%B3?src=hash"><s>#</s><b>الكريسماس</b></a>\nولع الخميس بليل والمطر طفاه الجمعه الصبح <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/Akv6OJjGjG">pic.twitter.com/Akv6OJjGjG</a></p> | 1.0 |
51564 | donia_yahia | النُوبِيّــــةْ ☮♈ | 1375119998 | 682956919607287808 | https://twitter.com/donia_yahia/status/682956919607287808 | 2016-01-01 16:09:53 | 1451664593 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | "@Omar_offical: Quote لي اكتر حاجه بتحبها .." الوضوح و الصراحة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="759839547945463808" dir="ltr" href="/omar_offical"><s>@</s><b>Omar_offical</b></a>: Quote لي اكتر حاجه بتحبها ..<img alt="💓" aria-label="Emoji: Beating heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f493.png" title="Beating heart"/>" الوضوح و الصراحة <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/></p> | 2.0 |
51565 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682956791483871236 | https://twitter.com/AmmarElhussine/status/682956791483871236 | 2016-01-01 16:09:22 | 1451664562 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @greathug عاملين خط وماشيين عليه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="4755553637" dir="ltr" href="/greathug"><s>@</s><b>greathug</b></a> عاملين خط وماشيين عليه <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51567 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682956479138234368 | https://twitter.com/AmmarElhussine/status/682956479138234368 | 2016-01-01 16:08:08 | 1451664488 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الواحد مش عاوز حاجه في السنه الجديده غير انو يسعد ابوه وامه وبسسسس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الواحد مش عاوز حاجه في السنه الجديده غير انو يسعد ابوه وامه وبسسسس <img alt="👍" aria-label="Emoji: Thumbs up sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44d.png" title="Thumbs up sign"/><img alt="👆" aria-label="Emoji: Up pointing backhand index" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f446.png" title="Up pointing backhand index"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💕" aria-label="Emoji: Two hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f495.png" title="Two hearts"/></p> | 3.0 |
51568 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682955814471118848 | https://twitter.com/AmmarElhussine/status/682955814471118848 | 2016-01-01 16:05:29 | 1451664329 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بعد ساعه هنتفرج علي ماتش الزعيم الهلال والشباب في نصف نهائي كاس ولي العهد | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بعد ساعه هنتفرج علي ماتش الزعيم الهلال والشباب في نصف نهائي كاس ولي العهد <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/></p> | 2.0 |
51571 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682952162075357184 | https://twitter.com/AmmarElhussine/status/682952162075357184 | 2016-01-01 15:50:58 | 1451663458 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Oum_Kulthum حفله اي بلا قرف ده كايروكي احسن منك بمراااحل | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3129408047" dir="ltr" href="/Oum_Kulthum"><s>@</s><b>Oum_Kulthum</b></a> حفله اي بلا قرف ده كايروكي احسن منك بمراااحل <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51579 | dado_samir | Dado samir | 1583696191 | 682938007746416640 | https://twitter.com/dado_samir/status/682938007746416640 | 2016-01-01 14:54:44 | 1451660084 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | صوتك مفيش اي شعر يقدر حبيبتي يوصفه ♡ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صوتك مفيش اي شعر يقدر حبيبتي يوصفه ♡</p> | 1.0 |
51581 | dado_samir | Dado samir | 1583696191 | 682936816895422464 | https://twitter.com/dado_samir/status/682936816895422464 | 2016-01-01 14:50:00 | 1451659800 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | انا بعشق السما عشان زيك مسامحه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا بعشق السما عشان زيك مسامحه <img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
51584 | Mariamhatem28 | Mariaaam. | 1973137560 | 682932510767071232 | https://twitter.com/Mariamhatem28/status/682932510767071232 | 2016-01-01 14:32:53 | 1451658773 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | A well spent day @ Wadi El Rayan - Fayoum https://www.instagram.com/p/___nK9TMZsr95gHrUv9wH5vITzuSTvqD-HIq00/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">A well spent day<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="🌲" aria-label="Emoji: Evergreen tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f332.png" title="Evergreen tree"/><img alt="🎅" aria-label="Emoji: Father Christmas" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f385.png" title="Father Christmas"/> @ Wadi El Rayan - Fayoum <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/___nK9TMZsr95gHrUv9wH5vITzuSTvqD-HIq00/" dir="ltr" href="https://t.co/QhQJ5lImzR" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/___nK9TMZsr95gHrUv9wH5vITzuSTvqD-HIq00/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/___nK9TMZsr9</span><span class="invisible">5gHrUv9wH5vITzuSTvqD-HIq00/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
51585 | AbdAllahMMonir | منير | 175143485 | 682930065403940864 | https://twitter.com/AbdAllahMMonir/status/682930065403940864 | 2016-01-01 14:23:10 | 1451658190 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | This is not about the new year ... @ المدينة الجامعية بجامعة أسيوط https://www.instagram.com/p/__-gDqHXL9/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">This is not about the new year ... <img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/> @ المدينة الجامعية بجامعة أسيوط <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/__-gDqHXL9/" dir="ltr" href="https://t.co/XSwOppF6Q7" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/__-gDqHXL9/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/__-gDqHXL9/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 3.0 |
51591 | 3omarfawzi | الأستاذ | 3028029377 | 682927131488337921 | https://twitter.com/3omarfawzi/status/682927131488337921 | 2016-01-01 14:11:30 | 1451657490 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 16 يوم عالجيش | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">16 يوم عالجيش <img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/></p> | 2.0 |
51592 | magdaanter | ماجدةعنتر | 3387812554 | 682926975103700992 | https://twitter.com/magdaanter/status/682926975103700992 | 2016-01-01 14:10:53 | 1451657453 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @Mohammad_Cha كل سنه وانتى طيب يامحمد \nوعبال ميه سنه \n\n♡♡♡·♡ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">@Mohammad_Cha كل سنه وانتى طيب يامحمد \nوعبال ميه سنه \n\n♡<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>♡<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>♡<img alt="♥" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>·♡</p> | 2.0 |
51593 | 3omarfawzi | الأستاذ | 3028029377 | 682923969708699648 | https://twitter.com/3omarfawzi/status/682923969708699648 | 2016-01-01 13:58:57 | 1451656737 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | ده دليل عالخرا اللي فحياتنا اللي انا لسه كاتبوا \n"@mirahossam22: المهم يعنى الحياه بيض" | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ده دليل عالخرا اللي فحياتنا اللي انا لسه كاتبوا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\n"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="4481812647" dir="ltr" href="/mirahossam22"><s>@</s><b>mirahossam22</b></a>: المهم يعنى الحياه بيض"</p> | 1.0 |
51603 | Hemoz_Mohamed | HeMoZ | 379142910 | 682896487525838849 | https://twitter.com/Hemoz_Mohamed/status/682896487525838849 | 2016-01-01 12:09:44 | 1451650184 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | جمعةمباركة باذن الله @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt https://www.instagram.com/p/__vO6FLBta/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">جمعةمباركة باذن الله <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/> @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/__vO6FLBta/" dir="ltr" href="https://t.co/qVkzWUW4ow" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/__vO6FLBta/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/__vO6FLBta/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
51608 | a7md_7mrr | أخماد | 2888891129 | 682884415857414144 | https://twitter.com/a7md_7mrr/status/682884415857414144 | 2016-01-01 11:21:46 | 1451647306 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الكانانانا في الكريييش ... انديمولاااانا في الكريييش . بنغني نوبي … https://www.instagram.com/p/__pqwqDgYtgmN6EdBrhUcKQgoXj4whueGntuE0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الكانانانا في الكريييش ... انديمولاااانا في الكريييش . بنغني نوبي <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/__pqwqDgYtgmN6EdBrhUcKQgoXj4whueGntuE0/" dir="ltr" href="https://t.co/QT5VJYV0o9" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/__pqwqDgYtgmN6EdBrhUcKQgoXj4whueGntuE0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/__pqwqDgYtgm</span><span class="invisible">N6EdBrhUcKQgoXj4whueGntuE0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
51609 | ixlowdii_ | خلود | 479273608 | 682881806161604608 | https://twitter.com/ixlowdii_/status/682881806161604608 | 2016-01-01 11:11:24 | 1451646684 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وإن طال شُوق العالمين لبعضهم\nفالشوق نحوكَ لا يُحاط مداهُ. @ Temple of Queen Hatshepsut https://www.instagram.com/p/__ojmRGxtQ/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وإن طال شُوق العالمين لبعضهم\nفالشوق نحوكَ لا يُحاط مداهُ<img alt="💛" aria-label="Emoji: Yellow heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49b.png" title="Yellow heart"/>. @ Temple of Queen Hatshepsut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/__ojmRGxtQ/" dir="ltr" href="https://t.co/8O2rncOic2" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/__ojmRGxtQ/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/__ojmRGxtQ/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
51612 | ixlowdii_ | خلود | 479273608 | 682877983728734208 | https://twitter.com/ixlowdii_/status/682877983728734208 | 2016-01-01 10:56:13 | 1451645773 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ River Nile, Luxor https://www.instagram.com/p/__m0WkGxqT/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><img alt="💃🏽" aria-label="Emoji: Dancer (medium skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483-1f3fd.png" title="Dancer (medium skin tone)"/><img alt="🎼" aria-label="Emoji: Musical score" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3bc.png" title="Musical score"/> @ River Nile, Luxor <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/__m0WkGxqT/" dir="ltr" href="https://t.co/JvX0l0TGa7" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/__m0WkGxqT/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/__m0WkGxqT/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
51618 | ixlowdii_ | خلود | 479273608 | 682864393638510592 | https://twitter.com/ixlowdii_/status/682864393638510592 | 2016-01-01 10:02:13 | 1451642533 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | He's doing my plate @ Luxor Nile https://www.instagram.com/p/__go2_Gxtj/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">He's doing my plate <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="🌚" aria-label="Emoji: New moon with face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f31a.png" title="New moon with face"/> @ Luxor Nile <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/__go2_Gxtj/" dir="ltr" href="https://t.co/Ozn70SU2G7" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/__go2_Gxtj/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/__go2_Gxtj/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
51620 | ixlowdii_ | خلود | 479273608 | 682863735246073856 | https://twitter.com/ixlowdii_/status/682863735246073856 | 2016-01-01 09:59:36 | 1451642376 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | مصنع سيتي فرست للالباستر @ Luxor Temple https://www.instagram.com/p/__gVsgGxs7/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مصنع سيتي فرست للالباستر <img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/> @ Luxor Temple <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/__gVsgGxs7/" dir="ltr" href="https://t.co/KtfasHQMqU" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/__gVsgGxs7/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/__gVsgGxs7/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
51630 | mayar_mahmod | MayaR. | 427354990 | 682846118913437697 | https://twitter.com/mayar_mahmod/status/682846118913437697 | 2016-01-01 08:49:36 | 1451638176 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | لا اله الا انت سبحانك اني كنت من الظالمين. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لا اله الا انت سبحانك اني كنت من الظالمين<img alt="💛" aria-label="Emoji: Yellow heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49b.png" title="Yellow heart"/>.</p> | 1.0 |
51638 | Esraa3010 | إسـراء | 2590374800 | 682807834254426113 | https://twitter.com/Esraa3010/status/682807834254426113 | 2016-01-01 06:17:28 | 1451629048 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الله كريييييييييييييم | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الله كريييييييييييييم <img alt="🙆" aria-label="Emoji: Face with ok gesture" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f646.png" title="Face with ok gesture"/><img alt="🙆" aria-label="Emoji: Face with ok gesture" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f646.png" title="Face with ok gesture"/></p> | 1.0 |
51643 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682786693225775104 | https://twitter.com/AmmarElhussine/status/682786693225775104 | 2016-01-01 04:53:27 | 1451624007 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | مهرجان " اديني رمضان " مثلا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مهرجان " اديني رمضان " مثلا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51646 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682782493829914624 | https://twitter.com/AmmarElhussine/status/682782493829914624 | 2016-01-01 04:36:46 | 1451623006 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @mido_ahm25 بيتزا وفراخ دول يقلبو بطن الواحد | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="574741930" dir="ltr" href="/mido_ahm25"><s>@</s><b>mido_ahm25</b></a> بيتزا وفراخ دول يقلبو بطن الواحد <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51649 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682780144185020416 | https://twitter.com/AmmarElhussine/status/682780144185020416 | 2016-01-01 04:27:26 | 1451622446 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #ماذا_تعلمت_من_2015 : المحن | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%A7%D8%B0%D8%A7_%D8%AA%D8%B9%D9%84%D9%85%D8%AA_%D9%85%D9%86_2015?src=hash"><s>#</s><b>ماذا_تعلمت_من_2015</b></a> : المحن <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51650 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682779303608737792 | https://twitter.com/AmmarElhussine/status/682779303608737792 | 2016-01-01 04:24:06 | 1451622246 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | @mido_ahm25 يعني لازم اكتبهالك كدا "بيتزا بالفراخ " عندي ي سيدي ال 'ب' | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="574741930" dir="ltr" href="/mido_ahm25"><s>@</s><b>mido_ahm25</b></a> <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> يعني لازم اكتبهالك كدا "بيتزا بالفراخ " عندي ي سيدي ال 'ب' <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51660 | katherineellis1 | Katherine Ellis | 169408043 | 682761034336219136 | https://twitter.com/katherineellis1/status/682761034336219136 | 2016-01-01 03:11:30 | 1451617890 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ El Gouna , Hurghada https://www.instagram.com/p/_-xhTjIaK3/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><img alt="🦄" aria-label="Emoji: Unicorn face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f984.png" title="Unicorn face"/><img alt="💃🏻" aria-label="Emoji: Dancer (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483-1f3fb.png" title="Dancer (light skin tone)"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🌟" aria-label="Emoji: Glowing star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f31f.png" title="Glowing star"/><img alt="💐" aria-label="Emoji: Bouquet" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f490.png" title="Bouquet"/> @ El Gouna , Hurghada <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-xhTjIaK3/" dir="ltr" href="https://t.co/b3ANsYQyNt" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-xhTjIaK3/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-xhTjIaK3/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 4.0 |
51666 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682758158482280450 | https://twitter.com/AmmarElhussine/status/682758158482280450 | 2016-01-01 03:00:04 | 1451617204 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #جاردينيا pic.twitter.com/N2aMcshfL3 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AC%D8%A7%D8%B1%D8%AF%D9%8A%D9%86%D9%8A%D8%A7?src=hash"><s>#</s><b>جاردينيا</b></a> <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/N2aMcshfL3">pic.twitter.com/N2aMcshfL3</a></p> | 1.0 |
51667 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682756365971025920 | https://twitter.com/AmmarElhussine/status/682756365971025920 | 2016-01-01 02:52:57 | 1451616777 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @mido_ahm25 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="574741930" dir="ltr" href="/mido_ahm25"><s>@</s><b>mido_ahm25</b></a> <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51677 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682722917575200768 | https://twitter.com/AmmarElhussine/status/682722917575200768 | 2016-01-01 00:40:02 | 1451608802 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يوووم جاامد والحمدلله انبسطنا ورقصنا وهايصنا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يوووم جاامد والحمدلله انبسطنا ورقصنا وهايصنا <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/></p> | 2.0 |
51678 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 682722019910221824 | https://twitter.com/AmmarElhussine/status/682722019910221824 | 2016-01-01 00:36:28 | 1451608588 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | نيو افاتار | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نيو افاتار <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 1.0 |
10978 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6 | sir_abdallah | عبدالله الشريف | 1538462605 | 815314113836498944 | https://twitter.com/sir_abdallah/status/815314113836498944 | 2016-12-31 21:50:07 | 1483221007 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | إتخاذ الذكريات والموالد أعياداً حدث في الإسلام منكر لم يشرعه الله تعالى. \n\nقال العلامة محمد بن… https://www.instagram.com/p/BOsny4KDZaX/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><img alt="🚫" aria-label="Emoji: No entry sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6ab.png" title="No entry sign"/> إتخاذ الذكريات والموالد أعياداً حدث في الإسلام منكر لم يشرعه الله تعالى. \n\nقال العلامة محمد بن… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsny4KDZaX/" dir="ltr" href="https://t.co/iM4Mt6COW3" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsny4KDZaX/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsny4KDZaX/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
26 | sir_abdallah | عبدالله الشريف | 1538462605 | 815314113836498944 | https://twitter.com/sir_abdallah/status/815314113836498944 | 2016-12-31 21:50:07 | 1483221007 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | إتخاذ الذكريات والموالد أعياداً حدث في الإسلام منكر لم يشرعه الله تعالى. \n\nقال العلامة محمد بن… https://www.instagram.com/p/BOsny4KDZaX/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><img alt="🚫" aria-label="Emoji: No entry sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6ab.png" title="No entry sign"/> إتخاذ الذكريات والموالد أعياداً حدث في الإسلام منكر لم يشرعه الله تعالى. \n\nقال العلامة محمد بن… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOsny4KDZaX/" dir="ltr" href="https://t.co/iM4Mt6COW3" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOsny4KDZaX/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOsny4KDZaX/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
122 | Hammam____ | Hammam | 416615064 | 815083010303389696 | https://twitter.com/Hammam____/status/815083010303389696 | 2016-12-31 06:31:47 | 1483165907 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #saturday #work again \nقد تلتقي بعد الغياب بنفسك الأولي فتعجب من… https://www.instagram.com/p/BOq-s_SDSl7xEsYbFo-j9lnStPow87SC0X0zZM0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/saturday?src=hash"><s>#</s><b>saturday</b></a> <img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/work?src=hash"><s>#</s><b>work</b></a> again \nقد تلتقي بعد الغياب بنفسك الأولي فتعجب من… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOq-s_SDSl7xEsYbFo-j9lnStPow87SC0X0zZM0/" dir="ltr" href="https://t.co/RdRsq972tq" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOq-s_SDSl7xEsYbFo-j9lnStPow87SC0X0zZM0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOq-s_SDSl7x</span><span class="invisible">EsYbFo-j9lnStPow87SC0X0zZM0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
130 | littleAMR | Little lil | 2398620510 | 815001280770772992 | https://twitter.com/littleAMR/status/815001280770772992 | 2016-12-31 01:07:01 | 1483146421 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | حرام عليكي يا مصر افضل عطلان اربع ساعات وفين في العياط \nحرام والله \nولا هنا كمان\n **م… https://www.instagram.com/p/BOqZiRgB5NQ/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حرام عليكي<img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/> يا مصر افضل عطلان<img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/> اربع ساعات <img alt="😡" aria-label="Emoji: Pouting face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f621.png" title="Pouting face"/>وفين في العياط <img alt="😧" aria-label="Emoji: Anguished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f627.png" title="Anguished face"/><img alt="😧" aria-label="Emoji: Anguished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f627.png" title="Anguished face"/>\nحرام والله <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>\nولا هنا<img alt="💚" aria-label="Emoji: Green heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49a.png" title="Green heart"/> كمان\n **م… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOqZiRgB5NQ/" dir="ltr" href="https://t.co/7kH3W8741v" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOqZiRgB5NQ/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOqZiRgB5NQ/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -3.0 |
311 | dondondido | dondon dido🍒 | 1452429678 | 814495499248140288 | https://twitter.com/dondondido/status/814495499248140288 | 2016-12-29 15:37:14 | 1483025834 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | مش بعرف اخاصم حد ولا أزعل من حد بس كمان مش بنسى اي حد زعلنى "الاتنين مع بعض ! | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مش بعرف اخاصم حد ولا أزعل من حد بس كمان مش بنسى اي حد زعلنى<img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/> "الاتنين مع بعض !<img alt="😶" aria-label="Emoji: Face without mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f636.png" title="Face without mouth"/><img alt="👊" aria-label="Emoji: Fisted hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44a.png" title="Fisted hand sign"/></p> | -1.0 |
340 | rim3bdelra7eem | Rim ツ | 605787344 | 814406047679021057 | https://twitter.com/rim3bdelra7eem/status/814406047679021057 | 2016-12-29 09:41:47 | 1483004507 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | هاللو من جوه المعمل \nمحدش يسال بائسه ليه .. هي امتحانات العملي بتعمل فيا كده @ Assiut… https://www.instagram.com/p/BOmK21Wg6jc/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هاللو من جوه المعمل <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\nمحدش يسال بائسه ليه .. هي امتحانات العملي بتعمل فيا كده <img alt="🐸" aria-label="Emoji: Frog face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f438.png" title="Frog face"/> @ Assiut… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOmK21Wg6jc/" dir="ltr" href="https://t.co/scjznkVxBD" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOmK21Wg6jc/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOmK21Wg6jc/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
433 | ahmedmamo797 | ahmed 3bnaby | 713877061421690880 | 814092797582131201 | https://twitter.com/ahmedmamo797/status/814092797582131201 | 2016-12-28 12:57:02 | 1482929822 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الواحد بقي كل يوم حالته في النازل | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الواحد بقي كل يوم حالته في النازل<img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/><img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/></p> | -2.0 |
447 | josebaluna | Sebastian Luna | 309537732 | 814054185255768064 | https://twitter.com/josebaluna/status/814054185255768064 | 2016-12-28 10:23:36 | 1482920616 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | Last day #redsea #gouna #egypt #kite #kiteboarding #kiteboard #kitesurf #kitesurfing @… https://www.instagram.com/p/BOjq2SNAJbk/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Last day <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/redsea?src=hash"><s>#</s><b>redsea</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/gouna?src=hash"><s>#</s><b>gouna</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/kite?src=hash"><s>#</s><b>kite</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/kiteboarding?src=hash"><s>#</s><b>kiteboarding</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/kiteboard?src=hash"><s>#</s><b>kiteboard</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/kitesurf?src=hash"><s>#</s><b>kitesurf</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/kitesurfing?src=hash"><s>#</s><b>kitesurfing</b></a> @… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOjq2SNAJbk/" dir="ltr" href="https://t.co/y3p2EAjXVO" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOjq2SNAJbk/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOjq2SNAJbk/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
567 | sir_abdallah | عبدالله الشريف | 1538462605 | 813487796438630400 | https://twitter.com/sir_abdallah/status/813487796438630400 | 2016-12-26 20:52:59 | 1482785579 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | صلاةُ النَّفلِ إذا أُقيمتِ الصَّلاةُ \nالفَرْعُ الأول: \nافتتاحُ صَلاةِ نافلةٍ إذا أُقيمتِ… https://www.instagram.com/p/BOfpSIYjm7O/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><img alt="🔘" aria-label="Emoji: Radio button" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f518.png" title="Radio button"/> صلاةُ النَّفلِ إذا أُقيمتِ الصَّلاةُ <img alt="🔘" aria-label="Emoji: Radio button" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f518.png" title="Radio button"/>\n<img alt="1⃣" aria-label="Emoji: Keycap digit one" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/31-20e3.png" title="Keycap digit one"/>الفَرْعُ الأول: \n<img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/>افتتاحُ صَلاةِ نافلةٍ إذا أُقيمتِ… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOfpSIYjm7O/" dir="ltr" href="https://t.co/EqDTyFeUvv" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOfpSIYjm7O/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOfpSIYjm7O/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
587 | sir_abdallah | عبدالله الشريف | 1538462605 | 813487796438630400 | https://twitter.com/sir_abdallah/status/813487796438630400 | 2016-12-26 20:52:59 | 1482785579 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | صلاةُ النَّفلِ إذا أُقيمتِ الصَّلاةُ \nالفَرْعُ الأول: \nافتتاحُ صَلاةِ نافلةٍ إذا أُقيمتِ… https://www.instagram.com/p/BOfpSIYjm7O/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><img alt="🔘" aria-label="Emoji: Radio button" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f518.png" title="Radio button"/> صلاةُ النَّفلِ إذا أُقيمتِ الصَّلاةُ <img alt="🔘" aria-label="Emoji: Radio button" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f518.png" title="Radio button"/>\n<img alt="1⃣" aria-label="Emoji: Keycap digit one" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/31-20e3.png" title="Keycap digit one"/>الفَرْعُ الأول: \n<img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/>افتتاحُ صَلاةِ نافلةٍ إذا أُقيمتِ… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOfpSIYjm7O/" dir="ltr" href="https://t.co/EqDTyFeUvv" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOfpSIYjm7O/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOfpSIYjm7O/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
600 | EngMOoooo | مْوٌلَآنٰاّ | 876798696 | 813454160188166144 | https://twitter.com/EngMOoooo/status/813454160188166144 | 2016-12-26 18:39:19 | 1482777559 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | If You Are Against Me ,, You Are Killed .. @ El Gouna https://www.instagram.com/p/BOfZ_HJBYBy/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">If You Are Against Me ,, You Are Killed <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><span data-original-codepoint="U+fe0f"></span> .. @ El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOfZ_HJBYBy/" dir="ltr" href="https://t.co/gWmaaTaa2j" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOfZ_HJBYBy/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOfZ_HJBYBy/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
712 | Esraag744 | إِسْرَاء 🎓🐾 | 807829118771404800 | 812917465437106176 | https://twitter.com/Esraag744/status/812917465437106176 | 2016-12-25 07:06:41 | 1482649601 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | pic.twitter.com/eBjSkOsUSW | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/><img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/><img alt="🙇" aria-label="Emoji: Person bowing deeply" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f647.png" title="Person bowing deeply"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/eBjSkOsUSW">pic.twitter.com/eBjSkOsUSW</a></p> | -3.0 |
749 | 98ff487e13e643f | Mohamed Bn Gharieb | 3613487777 | 812773734939578368 | https://twitter.com/98ff487e13e643f/status/812773734939578368 | 2016-12-24 21:35:33 | 1482615333 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | حياتنا من غير صدمات ومشاكل مايبقاااش ليها طعم \n\nبس لو كترت الصدمات والمشاكل \n\nمش بيتحس بطعم الحياه من اساسه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حياتنا من غير صدمات ومشاكل مايبقاااش ليها طعم \n\nبس لو كترت الصدمات والمشاكل \n\nمش بيتحس بطعم الحياه من اساسه<img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/></p> | -1.0 |
769 | 98ff487e13e643f | Mohamed Bn Gharieb | 3613487777 | 812773734939578368 | https://twitter.com/98ff487e13e643f/status/812773734939578368 | 2016-12-24 21:35:33 | 1482615333 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | حياتنا من غير صدمات ومشاكل مايبقاااش ليها طعم \n\nبس لو كترت الصدمات والمشاكل \n\nمش بيتحس بطعم الحياه من اساسه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حياتنا من غير صدمات ومشاكل مايبقاااش ليها طعم \n\nبس لو كترت الصدمات والمشاكل \n\nمش بيتحس بطعم الحياه من اساسه<img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/></p> | -1.0 |
826 | fatmaseif35 | fatmaseif | 715851544701304833 | 812598454933405696 | https://twitter.com/fatmaseif35/status/812598454933405696 | 2016-12-24 09:59:03 | 1482573543 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | نتخيل ونحلم ثم نصحو ع الواقع والعادات والتقاليد | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نتخيل ونحلم ثم نصحو ع الواقع والعادات والتقاليد <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
981 | ahmedmamo797 | ahmed 3bnaby | 713877061421690880 | 812079182276595712 | https://twitter.com/ahmedmamo797/status/812079182276595712 | 2016-12-22 23:35:39 | 1482449739 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الظاهر \n2016 لسه ما خلصتش اللي عندها | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الظاهر \n2016 لسه ما خلصتش اللي عندها<img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/><img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/></p> | -1.0 |
1001 | ahmedmamo797 | ahmed 3bnaby | 713877061421690880 | 812079182276595712 | https://twitter.com/ahmedmamo797/status/812079182276595712 | 2016-12-22 23:35:39 | 1482449739 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الظاهر \n2016 لسه ما خلصتش اللي عندها | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الظاهر \n2016 لسه ما خلصتش اللي عندها<img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/><img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/></p> | -1.0 |
1042 | M03tazF0uad | معتز | 709139330472738820 | 811930583425290240 | https://twitter.com/M03tazF0uad/status/811930583425290240 | 2016-12-22 13:45:10 | 1482414310 | 1 | 0 | 2 | 0 | NaN | NaN | NaN | "@dodoyoussef26: عمرك ماهتكون بائس اكتر من واحد معندوش شبكه ف اوضته " | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3400695977" dir="ltr" href="/dodoyoussef26"><s>@</s><b>dodoyoussef26</b></a>: عمرك ماهتكون بائس اكتر من واحد معندوش شبكه ف اوضته <img alt="😖" aria-label="Emoji: Confounded face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f616.png" title="Confounded face"/><img alt="😖" aria-label="Emoji: Confounded face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f616.png" title="Confounded face"/><img alt="😖" aria-label="Emoji: Confounded face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f616.png" title="Confounded face"/><img alt="😖" aria-label="Emoji: Confounded face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f616.png" title="Confounded face"/>"<img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/></p> | -2.0 |
1085 | sir_abdallah | عبدالله الشريف | 1538462605 | 811809837793345537 | https://twitter.com/sir_abdallah/status/811809837793345537 | 2016-12-22 05:45:22 | 1482385522 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أداء صلاة النافلة في البيت \n\nعن جابر ـ رضي الله عنه ـ قال: \nقال رسول الله صلى الله عليه وسلم… https://www.instagram.com/p/BOTuPIYD-2S/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><img alt="⏪" aria-label="Emoji: Left-pointing double triangle" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/23ea.png" title="Left-pointing double triangle"/> أداء صلاة النافلة في البيت <img alt="⏩" aria-label="Emoji: Right-pointing double triangle" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/23e9.png" title="Right-pointing double triangle"/>\n\nعن جابر ـ رضي الله عنه ـ قال: \nقال رسول الله صلى الله عليه وسلم… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOTuPIYD-2S/" dir="ltr" href="https://t.co/3qLZq6XzCu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOTuPIYD-2S/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOTuPIYD-2S/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
1096 | Ahmedya97494032 | Ahmed yasser | 808989836262645760 | 811719577864437763 | https://twitter.com/Ahmedya97494032/status/811719577864437763 | 2016-12-21 23:46:43 | 1482364003 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بيبقا حاجه جواك ومش عارف تعبر عنها @ Sinnuris, Al Fayyum, Egypt https://www.instagram.com/p/BOTFMSCA1VOa5ydgvQTEOyyy8o6urbIqgVkpQ40/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">بيبقا حاجه جواك ومش عارف تعبر عنها<img alt="😯" aria-label="Emoji: Hushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62f.png" title="Hushed face"/><img alt="😯" aria-label="Emoji: Hushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62f.png" title="Hushed face"/> @ Sinnuris, Al Fayyum, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOTFMSCA1VOa5ydgvQTEOyyy8o6urbIqgVkpQ40/" dir="ltr" href="https://t.co/8vLfRsZPuH" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOTFMSCA1VOa5ydgvQTEOyyy8o6urbIqgVkpQ40/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOTFMSCA1VOa</span><span class="invisible">5ydgvQTEOyyy8o6urbIqgVkpQ40/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1116 | Ahmedya97494032 | Ahmed yasser | 808989836262645760 | 811719577864437763 | https://twitter.com/Ahmedya97494032/status/811719577864437763 | 2016-12-21 23:46:43 | 1482364003 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بيبقا حاجه جواك ومش عارف تعبر عنها @ Sinnuris, Al Fayyum, Egypt https://www.instagram.com/p/BOTFMSCA1VOa5ydgvQTEOyyy8o6urbIqgVkpQ40/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">بيبقا حاجه جواك ومش عارف تعبر عنها<img alt="😯" aria-label="Emoji: Hushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62f.png" title="Hushed face"/><img alt="😯" aria-label="Emoji: Hushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62f.png" title="Hushed face"/> @ Sinnuris, Al Fayyum, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOTFMSCA1VOa5ydgvQTEOyyy8o6urbIqgVkpQ40/" dir="ltr" href="https://t.co/8vLfRsZPuH" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOTFMSCA1VOa5ydgvQTEOyyy8o6urbIqgVkpQ40/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOTFMSCA1VOa</span><span class="invisible">5ydgvQTEOyyy8o6urbIqgVkpQ40/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1148 | 3lomangy_tefa | جندى مقاتل تيفااا😂👮 | 3342361402 | 811612787298418692 | https://twitter.com/3lomangy_tefa/status/811612787298418692 | 2016-12-21 16:42:22 | 1482338542 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | المفشوخين فى القسم \nوالفاينل الاربع الجاى \nواخرتها يا علوم @… https://www.instagram.com/p/BOSUoMkAMsO1otUnF23C4XU1lgEvDFNU7iOSy00/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المفشوخين فى القسم <img alt="🐸" aria-label="Emoji: Frog face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f438.png" title="Frog face"/><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/>\nوالفاينل الاربع الجاى <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\nواخرتها يا علوم <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> @… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOSUoMkAMsO1otUnF23C4XU1lgEvDFNU7iOSy00/" dir="ltr" href="https://t.co/Ws1pp4Fwpx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOSUoMkAMsO1otUnF23C4XU1lgEvDFNU7iOSy00/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOSUoMkAMsO1</span><span class="invisible">otUnF23C4XU1lgEvDFNU7iOSy00/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1190 | KaremTito7 | Karem ElRaWy | 2891265900 | 811345112991154180 | https://twitter.com/KaremTito7/status/811345112991154180 | 2016-12-20 22:58:43 | 1482274723 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | -\n\n بس ورب العزهٓ ي بنتي \n\n لو كان عَشقك مآ كان سابك حتي لو كُنتي ليه نارّ " !\n\n- | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">-\n\n بس ورب العزهٓ ي بنتي <img alt="✊🏻" aria-label="Emoji: Raised fist (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270a-1f3fb.png" title="Raised fist (light skin tone)"/>\n\n لو كان عَشقك مآ كان سابك حتي لو كُنتي ليه نارّ " <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> !\n\n-</p> | -1.0 |
1191 | KaremTito7 | Karem ElRaWy | 2891265900 | 811344905108881408 | https://twitter.com/KaremTito7/status/811344905108881408 | 2016-12-20 22:57:54 | 1482274674 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ربنا هيحاسبك ع كسرة النفس اللى كسرتها لـ إنسان حبك من غير ذنب.. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ربنا هيحاسبك ع كسرة النفس اللى كسرتها لـ إنسان حبك من غير ذنب..<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -2.0 |
1210 | KaremTito7 | Karem ElRaWy | 2891265900 | 811345112991154180 | https://twitter.com/KaremTito7/status/811345112991154180 | 2016-12-20 22:58:43 | 1482274723 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | -\n\n بس ورب العزهٓ ي بنتي \n\n لو كان عَشقك مآ كان سابك حتي لو كُنتي ليه نارّ " !\n\n- | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">-\n\n بس ورب العزهٓ ي بنتي <img alt="✊🏻" aria-label="Emoji: Raised fist (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270a-1f3fb.png" title="Raised fist (light skin tone)"/>\n\n لو كان عَشقك مآ كان سابك حتي لو كُنتي ليه نارّ " <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> !\n\n-</p> | -1.0 |
1211 | KaremTito7 | Karem ElRaWy | 2891265900 | 811344905108881408 | https://twitter.com/KaremTito7/status/811344905108881408 | 2016-12-20 22:57:54 | 1482274674 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ربنا هيحاسبك ع كسرة النفس اللى كسرتها لـ إنسان حبك من غير ذنب.. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ربنا هيحاسبك ع كسرة النفس اللى كسرتها لـ إنسان حبك من غير ذنب..<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -2.0 |
1231 | dondondido | dondon dido🍒 | 1452429678 | 811306484793479168 | https://twitter.com/dondondido/status/811306484793479168 | 2016-12-20 20:25:13 | 1482265513 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | المشاعر لا تطلب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المشاعر لا تطلب<img alt="✋🏻" aria-label="Emoji: Raised hand (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b-1f3fb.png" title="Raised hand (light skin tone)"/></p> | -1.0 |
1233 | _Madkour | Madkour | 3154508848 | 811304258452733954 | https://twitter.com/_Madkour/status/811304258452733954 | 2016-12-20 20:16:23 | 1482264983 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الworking هيموتني يا معتز :( | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الworking هيموتني يا معتز :(</p> | -1.0 |
1235 | Amani_gamal93 | Amani | 2300280110 | 811298246895239168 | https://twitter.com/Amani_gamal93/status/811298246895239168 | 2016-12-20 19:52:29 | 1482263549 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "الخاطر" اللى متعرفش تجبره ... متكسروش | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"الخاطر" اللى متعرفش تجبره ... متكسروش <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
1239 | Amani_gamal93 | Amani | 2300280110 | 811293702509432833 | https://twitter.com/Amani_gamal93/status/811293702509432833 | 2016-12-20 19:34:26 | 1482262466 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الست متحبش الراجل المدلوق والراجل بيحب الست التقيله ... \nخلينا كدا نفضل نتعوج علي بعض لحد ما نقابل بعض في دار المسنين . | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الست متحبش الراجل المدلوق والراجل بيحب الست التقيله ... \nخلينا كدا نفضل نتعوج علي بعض لحد ما نقابل بعض في دار المسنين <img alt="🐸" aria-label="Emoji: Frog face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f438.png" title="Frog face"/><img alt="😏" aria-label="Emoji: Smirking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60f.png" title="Smirking face"/>.</p> | -1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
50911 | 3omarfawzi | الأستاذ | 3028029377 | 683769834635681792 | https://twitter.com/3omarfawzi/status/683769834635681792 | 2016-01-03 22:00:07 | 1451858407 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يعني خلاااااااااااص راحت علياااا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يعني خلاااااااااااص راحت علياااا <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
50913 | JrMahmoud_ | Mahmoud Sameh | 584656413 | 683756652265263104 | https://twitter.com/JrMahmoud_/status/683756652265263104 | 2016-01-03 21:07:44 | 1451855264 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Throwback @ Porto South Beach https://www.instagram.com/p/BAF2YuaBdQW/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Throwback<img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/> @ Porto South Beach <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BAF2YuaBdQW/" dir="ltr" href="https://t.co/napeelhMbf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BAF2YuaBdQW/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BAF2YuaBdQW/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
50922 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 683740585891606528 | https://twitter.com/AmmarElhussine/status/683740585891606528 | 2016-01-03 20:03:53 | 1451851433 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | شووف الدنياا الاهلاويه انهاردا يحطو جزمه ف بؤهم بقا من اللي حصل ده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">شووف الدنياا الاهلاويه انهاردا يحطو جزمه ف بؤهم بقا من اللي حصل ده <img alt="😠" aria-label="Emoji: Angry face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f620.png" title="Angry face"/><img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/><img alt="👎" aria-label="Emoji: Thumbs down sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44e.png" title="Thumbs down sign"/></p> | -3.0 |
50925 | ad96ee1d4f314be | Eman Mohamed | 2762155752 | 683730738643103745 | https://twitter.com/ad96ee1d4f314be/status/683730738643103745 | 2016-01-03 19:24:45 | 1451849085 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لو جيت علي بالك بالصُدفه .. إبقي إرفع كفك وإدعيلي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لو جيت علي بالك بالصُدفه .. إبقي إرفع كفك وإدعيلي <img alt="👐" aria-label="Emoji: Open hands sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f450.png" title="Open hands sign"/></p> | -1.0 |
50931 | 3omarfawzi | الأستاذ | 3028029377 | 683769834635681792 | https://twitter.com/3omarfawzi/status/683769834635681792 | 2016-01-03 22:00:07 | 1451858407 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يعني خلاااااااااااص راحت علياااا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يعني خلاااااااااااص راحت علياااا <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
50933 | JrMahmoud_ | Mahmoud Sameh | 584656413 | 683756652265263104 | https://twitter.com/JrMahmoud_/status/683756652265263104 | 2016-01-03 21:07:44 | 1451855264 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Throwback @ Porto South Beach https://www.instagram.com/p/BAF2YuaBdQW/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Throwback<img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/> @ Porto South Beach <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BAF2YuaBdQW/" dir="ltr" href="https://t.co/napeelhMbf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BAF2YuaBdQW/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BAF2YuaBdQW/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
50942 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 683740585891606528 | https://twitter.com/AmmarElhussine/status/683740585891606528 | 2016-01-03 20:03:53 | 1451851433 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | شووف الدنياا الاهلاويه انهاردا يحطو جزمه ف بؤهم بقا من اللي حصل ده | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">شووف الدنياا الاهلاويه انهاردا يحطو جزمه ف بؤهم بقا من اللي حصل ده <img alt="😠" aria-label="Emoji: Angry face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f620.png" title="Angry face"/><img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/><img alt="👎" aria-label="Emoji: Thumbs down sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44e.png" title="Thumbs down sign"/></p> | -3.0 |
50945 | ad96ee1d4f314be | Eman Mohamed | 2762155752 | 683730738643103745 | https://twitter.com/ad96ee1d4f314be/status/683730738643103745 | 2016-01-03 19:24:45 | 1451849085 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لو جيت علي بالك بالصُدفه .. إبقي إرفع كفك وإدعيلي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لو جيت علي بالك بالصُدفه .. إبقي إرفع كفك وإدعيلي <img alt="👐" aria-label="Emoji: Open hands sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f450.png" title="Open hands sign"/></p> | -1.0 |
50971 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 683694188752433152 | https://twitter.com/AmmarElhussine/status/683694188752433152 | 2016-01-03 16:59:31 | 1451840371 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اسوان تفرحني الاسماعيلي يحبطني | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اسوان تفرحني الاسماعيلي يحبطني <img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/></p> | -1.0 |
51043 | 3omarfawzi | الأستاذ | 3028029377 | 683430446139576320 | https://twitter.com/3omarfawzi/status/683430446139576320 | 2016-01-02 23:31:30 | 1451777490 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | زهقان مستني الفرج | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">زهقان مستني الفرج <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😶" aria-label="Emoji: Face without mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f636.png" title="Face without mouth"/></p> | -2.0 |
51063 | 3omarfawzi | الأستاذ | 3028029377 | 683430446139576320 | https://twitter.com/3omarfawzi/status/683430446139576320 | 2016-01-02 23:31:30 | 1451777490 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | زهقان مستني الفرج | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">زهقان مستني الفرج <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😶" aria-label="Emoji: Face without mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f636.png" title="Face without mouth"/></p> | -2.0 |
51243 | Esraa3010 | إسـراء | 2590374800 | 683343818205343744 | https://twitter.com/Esraa3010/status/683343818205343744 | 2016-01-02 17:47:16 | 1451756836 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | وامانة عليك يا لييل تطول | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وامانة عليك يا لييل تطول<img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
51280 | 3omarfawzi | الأستاذ | 3028029377 | 683268618042380288 | https://twitter.com/3omarfawzi/status/683268618042380288 | 2016-01-02 12:48:27 | 1451738907 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يومين و عدو يومين و راحو و سابو قلبي مابين جراحو | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يومين و عدو يومين و راحو و سابو قلبي مابين جراحو <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
51296 | 3omarfawzi | الأستاذ | 3028029377 | 683243220051095552 | https://twitter.com/3omarfawzi/status/683243220051095552 | 2016-01-02 11:07:32 | 1451732852 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | صباح الزمالك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صباح الزمالك <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
51303 | mostafaalamaar | موستافااا | 187792899 | 683234719656353792 | https://twitter.com/mostafaalamaar/status/683234719656353792 | 2016-01-02 10:33:45 | 1451730825 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Good morning @ Luxor City, Egypy https://www.instagram.com/p/BACJChiMxGj/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Good morning <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> @ Luxor City, Egypy <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BACJChiMxGj/" dir="ltr" href="https://t.co/3A7OoLcjH4" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BACJChiMxGj/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BACJChiMxGj/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
51312 | Esraa3010 | إسـراء | 2590374800 | 683182181603258368 | https://twitter.com/Esraa3010/status/683182181603258368 | 2016-01-02 07:04:59 | 1451718299 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | نسكيب انهردة وبكرة بسرعة بسرعة بسرررررعة \nعديها ع خييير ياارب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نسكيب انهردة وبكرة بسرعة بسرعة بسرررررعة <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/>\nعديها ع خييير ياارب <img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/></p> | -2.0 |
51321 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 683134399202914304 | https://twitter.com/AmmarElhussine/status/683134399202914304 | 2016-01-02 03:55:07 | 1451706907 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @HaifaWehbe كل حاجه عندك بوووس انتي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="20837438" dir="ltr" href="/HaifaWehbe"><s>@</s><b>HaifaWehbe</b></a> كل حاجه عندك بوووس انتي <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
51323 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 683133702516375552 | https://twitter.com/AmmarElhussine/status/683133702516375552 | 2016-01-02 03:52:21 | 1451706741 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ده منظر واحد هيصحي بعد 3 ساعات | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ده منظر واحد هيصحي بعد 3 ساعات <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
51346 | 3omarfawzi | الأستاذ | 3028029377 | 683071096703324161 | https://twitter.com/3omarfawzi/status/683071096703324161 | 2016-01-01 23:43:34 | 1451691814 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اندر زيرو "@RooU_Mohamed: انا نفسيا زيرو !" | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اندر زيرو <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="427494740" dir="ltr" href="/RooU_Mohamed"><s>@</s><b>RooU_Mohamed</b></a>: انا نفسيا زيرو !"</p> | -1.0 |
51351 | 3omarfawzi | الأستاذ | 3028029377 | 683060950417731588 | https://twitter.com/3omarfawzi/status/683060950417731588 | 2016-01-01 23:03:15 | 1451689395 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا مش عارف مودي ايه ؟؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا مش عارف مودي ايه ؟؟ <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😮" aria-label="Emoji: Face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62e.png" title="Face with open mouth"/><img alt="😶" aria-label="Emoji: Face without mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f636.png" title="Face without mouth"/></p> | -1.0 |
51353 | 3omarfawzi | الأستاذ | 3028029377 | 683060052182302720 | https://twitter.com/3omarfawzi/status/683060052182302720 | 2016-01-01 22:59:41 | 1451689181 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا بشفق عليا و علي حالي و حظي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا بشفق عليا و علي حالي و حظي <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/></p> | -1.0 |
51354 | 3omarfawzi | الأستاذ | 3028029377 | 683059985396436992 | https://twitter.com/3omarfawzi/status/683059985396436992 | 2016-01-01 22:59:25 | 1451689165 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ماهو لو كان سهل تتنسي مكونتش حبيتها | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ماهو لو كان سهل تتنسي مكونتش حبيتها <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
51366 | 3omarfawzi | الأستاذ | 3028029377 | 683071096703324161 | https://twitter.com/3omarfawzi/status/683071096703324161 | 2016-01-01 23:43:34 | 1451691814 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اندر زيرو "@RooU_Mohamed: انا نفسيا زيرو !" | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اندر زيرو <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="427494740" dir="ltr" href="/RooU_Mohamed"><s>@</s><b>RooU_Mohamed</b></a>: انا نفسيا زيرو !"</p> | -1.0 |
51371 | 3omarfawzi | الأستاذ | 3028029377 | 683060950417731588 | https://twitter.com/3omarfawzi/status/683060950417731588 | 2016-01-01 23:03:15 | 1451689395 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا مش عارف مودي ايه ؟؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا مش عارف مودي ايه ؟؟ <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😮" aria-label="Emoji: Face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62e.png" title="Face with open mouth"/><img alt="😶" aria-label="Emoji: Face without mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f636.png" title="Face without mouth"/></p> | -1.0 |
51373 | 3omarfawzi | الأستاذ | 3028029377 | 683060052182302720 | https://twitter.com/3omarfawzi/status/683060052182302720 | 2016-01-01 22:59:41 | 1451689181 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انا بشفق عليا و علي حالي و حظي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا بشفق عليا و علي حالي و حظي <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/></p> | -1.0 |
51374 | 3omarfawzi | الأستاذ | 3028029377 | 683059985396436992 | https://twitter.com/3omarfawzi/status/683059985396436992 | 2016-01-01 22:59:25 | 1451689165 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ماهو لو كان سهل تتنسي مكونتش حبيتها | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ماهو لو كان سهل تتنسي مكونتش حبيتها <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
51386 | AmmarElhussine | 3aMory 👑🚫 | 627373250 | 683049930349477888 | https://twitter.com/AmmarElhussine/status/683049930349477888 | 2016-01-01 22:19:28 | 1451686768 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ده بيقول كريستيانو جي اسكندريه هيفتتح المحل بتاعه CR7 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ده بيقول كريستيانو جي اسكندريه هيفتتح المحل بتاعه CR7 <img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/><img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/><img alt="😱" aria-label="Emoji: Face screaming in fear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f631.png" title="Face screaming in fear"/></p> | -2.0 |
51625 | aukjebuylex | Auk | 468540507 | 682858646989049856 | https://twitter.com/aukjebuylex/status/682858646989049856 | 2016-01-01 09:39:22 | 1451641162 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | De laatste (@ Lagoon Rihanna Resort) https://www.swarmapp.com/c/bAQqD8YaKtn | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="no">De laatste <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/> (@ Lagoon Rihanna Resort) <a class="twitter-timeline-link" data-expanded-url="https://www.swarmapp.com/c/bAQqD8YaKtn" dir="ltr" href="https://t.co/CzHwTHe4y3" rel="nofollow noopener" target="_blank" title="https://www.swarmapp.com/c/bAQqD8YaKtn"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">swarmapp.com/c/bAQqD8YaKtn</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
51679 | AshourElkbeer | ناصر | 147821899 | 682718282298687489 | https://twitter.com/AshourElkbeer/status/682718282298687489 | 2016-01-01 00:21:37 | 1451607697 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ناس بترقص وناس بتكووون \n#الحالة_الثانية @ Makka Hospital https://www.instagram.com/p/_-eMIvGkpA/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">ناس بترقص وناس بتكووون <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AD%D8%A7%D9%84%D8%A9_%D8%A7%D9%84%D8%AB%D8%A7%D9%86%D9%8A%D8%A9?src=hash"><s>#</s><b>الحالة_الثانية</b></a> <img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/> @ Makka Hospital <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/_-eMIvGkpA/" dir="ltr" href="https://t.co/zv8a15CipP" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/_-eMIvGkpA/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/_-eMIvGkpA/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -2.0 |
51680 | 3omarfawzi | الأستاذ | 3028029377 | 682716365401276416 | https://twitter.com/3omarfawzi/status/682716365401276416 | 2016-01-01 00:14:00 | 1451607240 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | اهلا 2016 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اهلا 2016 <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
1761 rows × 17 columns
egypt tweets/egypt_tweets_2017.csv - 30528 tweets
Hashtag | Count | |
---|---|---|
0 | #egypt | 750 |
1 | #الهلال | 639 |
2 | #luxor | 409 |
3 | #Egypt | 406 |
4 | #travel | 225 |
5 | #Luxor | 215 |
6 | #photography | 159 |
7 | #_bro_9 | 157 |
8 | #friends | 155 |
9 | #رمزيات | 135 |
10 | #redsea | 122 |
11 | #love | 121 |
12 | #temple | 120 |
13 | #thisisegypt | 103 |
14 | #family | 98 |
15 | #tb | 88 |
16 | #gouna | 86 |
17 | #elgouna | 85 |
18 | #lucky | 85 |
19 | #sunset | 75 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
25697 | Basboussa628 | Jihan Jamal | 26993810 | 831205085250256897 | https://twitter.com/Basboussa628/status/831205085250256897 | 2017-02-13 18:15:10 | 1487009710 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Repost, @monaeltahawy #doriashafik #egyptianfeminist With 1500 #egyptianwomen stormed into… https://www.instagram.com/p/BQdiLAUjRBK/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Repost, <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="29979814" dir="ltr" href="/monaeltahawy"><s>@</s><b>monaeltahawy</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/doriashafik?src=hash"><s>#</s><b>doriashafik</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egyptianfeminist?src=hash"><s>#</s><b>egyptianfeminist</b></a> With 1500 <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egyptianwomen?src=hash"><s>#</s><b>egyptianwomen</b></a> stormed into… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BQdiLAUjRBK/" dir="ltr" href="https://t.co/lVwNf7TzZ6" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BQdiLAUjRBK/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BQdiLAUjRBK/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 0.0 |
Positive feels: 6895. Negative feels: 636 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | mohamed_omar72 | Mohammad Omar | 2961895120 | 947614124879634432 | https://twitter.com/mohamed_omar72/status/947614124879634432 | 2017-12-31 23:43:07 | 1514763787 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Elrahify @ Sohag https://www.instagram.com/p/BdYq3evnLqq/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hu">Elrahify<img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYq3evnLqq/" dir="ltr" href="https://t.co/RIXEZcEE6B" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYq3evnLqq/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYq3evnLqq/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
1 | mohamed_omar72 | Mohammad Omar | 2961895120 | 947613071710871553 | https://twitter.com/mohamed_omar72/status/947613071710871553 | 2017-12-31 23:38:56 | 1514763536 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | My brother and my Love and my friend and everything in my life @ Sohag https://www.instagram.com/p/BdYqY42Ht90/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My brother and my Love and my friend and everything in my life <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYqY42Ht90/" dir="ltr" href="https://t.co/yOg6Rm7jpy" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYqY42Ht90/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYqY42Ht90/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
2 | M3hmoud_B3dran | Eng/ MåHmøűđ Bãđŕāń | 361509029 | 947611823141998592 | https://twitter.com/M3hmoud_B3dran/status/947611823141998592 | 2017-12-31 23:33:59 | 1514763239 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 2017 \n @ Nida, Suhaj, Egypt https://www.instagram.com/p/BdYp0mcj1xf/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">2017 \n<img alt="👋" aria-label="Emoji: Waving hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44b.png" title="Waving hand sign"/><img alt="👋" aria-label="Emoji: Waving hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44b.png" title="Waving hand sign"/> @ Nida, Suhaj, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYp0mcj1xf/" dir="ltr" href="https://t.co/npOMK13Woo" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYp0mcj1xf/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYp0mcj1xf/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
3 | mohamed_omar72 | Mohammad Omar | 2961895120 | 947611761980649472 | https://twitter.com/mohamed_omar72/status/947611761980649472 | 2017-12-31 23:33:44 | 1514763224 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy New Years @ Sohag https://www.instagram.com/p/BdYpynMnCab/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy New Years <img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYpynMnCab/" dir="ltr" href="https://t.co/gN0l6KepL1" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYpynMnCab/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYpynMnCab/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
11 | AbdelraoufAly | ЯõõƑậ | 1252072555 | 947589457976344576 | https://twitter.com/AbdelraoufAly/status/947589457976344576 | 2017-12-31 22:05:06 | 1514757906 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #merrychristmas\n#friends4ever @ اركان -Arkan https://www.instagram.com/p/BdYfpaPD-yS/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/merrychristmas?src=hash"><s>#</s><b>merrychristmas</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/friends4ever?src=hash"><s>#</s><b>friends4ever</b></a> <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ اركان -Arkan <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYfpaPD-yS/" dir="ltr" href="https://t.co/tHUwlt6Gc0" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYfpaPD-yS/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYfpaPD-yS/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
14 | aalkharafi | Abdullah ٰ الخرافي ٰ | 229045732 | 947583674677112833 | https://twitter.com/aalkharafi/status/947583674677112833 | 2017-12-31 21:42:07 | 1514756527 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | عيدكم مبارك وتقبل الله طاعتكم واضحه الوناسه سنه حلوه علينا من غير(﷼) @ جمايكا لايكا_Jamaica Laeca https://www.instagram.com/p/BdYdBIIhQ-3/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عيدكم مبارك وتقبل الله طاعتكم واضحه الوناسه<img alt="🙂" aria-label="Emoji: Slightly smiling face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f642.png" title="Slightly smiling face"/> سنه حلوه علينا من غير(﷼) @ جمايكا لايكا_Jamaica Laeca <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYdBIIhQ-3/" dir="ltr" href="https://t.co/PVfNxOgTaz" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYdBIIhQ-3/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYdBIIhQ-3/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
16 | Abdelrh04545153 | عبرحمان🖤 | 944686795345879043 | 947579209702092800 | https://twitter.com/Abdelrh04545153/status/947579209702092800 | 2017-12-31 21:24:23 | 1514755463 | 1 | 0 | 5 | 0 | NaN | NaN | NaN | أحلي تغفيله مع احلي هدية لعيد ميلاديpic.twitter.com/Y2sGBF12jD | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أحلي تغفيله مع احلي هدية لعيد ميلادي<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/Y2sGBF12jD">pic.twitter.com/Y2sGBF12jD</a></p> | 3.0 |
17 | ahmedatta0 | أحمد عطا - Ahmed Atta | 329393716 | 947575910953373697 | https://twitter.com/ahmedatta0/status/947575910953373697 | 2017-12-31 21:11:16 | 1514754676 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | يارب تكون الحلقة عجبتكم .. ولوجي شافت بابا كانت مبسوطة \n\nHope you liked the show onsportegypt… https://www.instagram.com/p/BdYZfdRnYg3/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">يارب تكون الحلقة عجبتكم .. ولوجي شافت بابا كانت مبسوطة <img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/>\n\nHope you liked the show onsportegypt… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYZfdRnYg3/" dir="ltr" href="https://t.co/qkIp4Zsfmf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYZfdRnYg3/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYZfdRnYg3/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
20 | mohamed_omar72 | Mohammad Omar | 2961895120 | 947614124879634432 | https://twitter.com/mohamed_omar72/status/947614124879634432 | 2017-12-31 23:43:07 | 1514763787 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Elrahify @ Sohag https://www.instagram.com/p/BdYq3evnLqq/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hu">Elrahify<img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYq3evnLqq/" dir="ltr" href="https://t.co/RIXEZcEE6B" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYq3evnLqq/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYq3evnLqq/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
21 | mohamed_omar72 | Mohammad Omar | 2961895120 | 947613071710871553 | https://twitter.com/mohamed_omar72/status/947613071710871553 | 2017-12-31 23:38:56 | 1514763536 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | My brother and my Love and my friend and everything in my life @ Sohag https://www.instagram.com/p/BdYqY42Ht90/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My brother and my Love and my friend and everything in my life <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYqY42Ht90/" dir="ltr" href="https://t.co/yOg6Rm7jpy" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYqY42Ht90/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYqY42Ht90/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
22 | M3hmoud_B3dran | Eng/ MåHmøűđ Bãđŕāń | 361509029 | 947611823141998592 | https://twitter.com/M3hmoud_B3dran/status/947611823141998592 | 2017-12-31 23:33:59 | 1514763239 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 2017 \n @ Nida, Suhaj, Egypt https://www.instagram.com/p/BdYp0mcj1xf/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">2017 \n<img alt="👋" aria-label="Emoji: Waving hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44b.png" title="Waving hand sign"/><img alt="👋" aria-label="Emoji: Waving hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44b.png" title="Waving hand sign"/> @ Nida, Suhaj, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYp0mcj1xf/" dir="ltr" href="https://t.co/npOMK13Woo" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYp0mcj1xf/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYp0mcj1xf/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23 | mohamed_omar72 | Mohammad Omar | 2961895120 | 947611761980649472 | https://twitter.com/mohamed_omar72/status/947611761980649472 | 2017-12-31 23:33:44 | 1514763224 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy New Years @ Sohag https://www.instagram.com/p/BdYpynMnCab/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy New Years <img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYpynMnCab/" dir="ltr" href="https://t.co/gN0l6KepL1" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYpynMnCab/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYpynMnCab/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
31 | AbdelraoufAly | ЯõõƑậ | 1252072555 | 947589457976344576 | https://twitter.com/AbdelraoufAly/status/947589457976344576 | 2017-12-31 22:05:06 | 1514757906 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #merrychristmas\n#friends4ever @ اركان -Arkan https://www.instagram.com/p/BdYfpaPD-yS/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/merrychristmas?src=hash"><s>#</s><b>merrychristmas</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/friends4ever?src=hash"><s>#</s><b>friends4ever</b></a> <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ اركان -Arkan <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYfpaPD-yS/" dir="ltr" href="https://t.co/tHUwlt6Gc0" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYfpaPD-yS/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYfpaPD-yS/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
34 | aalkharafi | Abdullah ٰ الخرافي ٰ | 229045732 | 947583674677112833 | https://twitter.com/aalkharafi/status/947583674677112833 | 2017-12-31 21:42:07 | 1514756527 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | عيدكم مبارك وتقبل الله طاعتكم واضحه الوناسه سنه حلوه علينا من غير(﷼) @ جمايكا لايكا_Jamaica Laeca https://www.instagram.com/p/BdYdBIIhQ-3/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عيدكم مبارك وتقبل الله طاعتكم واضحه الوناسه<img alt="🙂" aria-label="Emoji: Slightly smiling face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f642.png" title="Slightly smiling face"/> سنه حلوه علينا من غير(﷼) @ جمايكا لايكا_Jamaica Laeca <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYdBIIhQ-3/" dir="ltr" href="https://t.co/PVfNxOgTaz" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYdBIIhQ-3/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYdBIIhQ-3/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
36 | Abdelrh04545153 | عبرحمان🖤 | 944686795345879043 | 947579209702092800 | https://twitter.com/Abdelrh04545153/status/947579209702092800 | 2017-12-31 21:24:23 | 1514755463 | 1 | 0 | 5 | 0 | NaN | NaN | NaN | أحلي تغفيله مع احلي هدية لعيد ميلاديpic.twitter.com/Y2sGBF12jD | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أحلي تغفيله مع احلي هدية لعيد ميلادي<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/Y2sGBF12jD">pic.twitter.com/Y2sGBF12jD</a></p> | 3.0 |
37 | ahmedatta0 | أحمد عطا - Ahmed Atta | 329393716 | 947575910953373697 | https://twitter.com/ahmedatta0/status/947575910953373697 | 2017-12-31 21:11:16 | 1514754676 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | يارب تكون الحلقة عجبتكم .. ولوجي شافت بابا كانت مبسوطة \n\nHope you liked the show onsportegypt… https://www.instagram.com/p/BdYZfdRnYg3/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">يارب تكون الحلقة عجبتكم .. ولوجي شافت بابا كانت مبسوطة <img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/>\n\nHope you liked the show onsportegypt… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYZfdRnYg3/" dir="ltr" href="https://t.co/qkIp4Zsfmf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYZfdRnYg3/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYZfdRnYg3/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
42 | El30mda_Mh_87 | ⚔️🃏🃏Mr_ÔⓂ️dà⚔️ | 2895365309 | 947565383011012609 | https://twitter.com/El30mda_Mh_87/status/947565383011012609 | 2017-12-31 20:29:26 | 1514752166 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #HappyNewYear2018 \nEl_Ômdà_ @ Opera Hotel In… https://www.instagram.com/p/BdYUtAUlVILv0da7PH6McfVAIOsOdd1-gh_qzw0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="vi"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HappyNewYear2018?src=hash"><s>#</s><b>HappyNewYear2018</b></a> <img alt="🎆" aria-label="Emoji: Fireworks" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f386.png" title="Fireworks"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🎇" aria-label="Emoji: Firework sparkler" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f387.png" title="Firework sparkler"/>\n<img alt="#⃣" aria-label="Emoji: Keycap number sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/23-20e3.png" title="Keycap number sign"/>El_Ômdà_<img alt="Ⓜ️" aria-label="Emoji: Circled latin capital letter m" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/24c2.png" title="Circled latin capital letter m"/><img alt="✍🏻" aria-label="Emoji: Writing hand (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270d-1f3fb.png" title="Writing hand (light skin tone)"/> @ Opera Hotel In… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYUtAUlVILv0da7PH6McfVAIOsOdd1-gh_qzw0/" dir="ltr" href="https://t.co/qU55hku9R4" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYUtAUlVILv0da7PH6McfVAIOsOdd1-gh_qzw0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYUtAUlVILv</span><span class="invisible">0da7PH6McfVAIOsOdd1-gh_qzw0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 4.0 |
43 | lovly_y | thourya osama | 1116221658 | 947558739007229953 | https://twitter.com/lovly_y/status/947558739007229953 | 2017-12-31 20:03:02 | 1514750582 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | #لو_سانتاكلوز_موجود_هطلب\r\rيعملي اشتراك يومي لمدة سنة ف ماكدونالدز \rعلي سندوتش جراند تشكن | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%84%D9%88_%D8%B3%D8%A7%D9%86%D8%AA%D8%A7%D9%83%D9%84%D9%88%D8%B2_%D9%85%D9%88%D8%AC%D9%88%D8%AF_%D9%87%D8%B7%D9%84%D8%A8?src=hash"><s>#</s><b>لو_سانتاكلوز_موجود_هطلب</b></a>\r\rيعملي اشتراك يومي لمدة سنة <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> ف ماكدونالدز <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\rعلي سندوتش جراند تشكن <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 2.0 |
44 | lovly_y | thourya osama | 1116221658 | 947555363250896897 | https://twitter.com/lovly_y/status/947555363250896897 | 2017-12-31 19:49:37 | 1514749777 | 0 | 2 | 0 | 0 | NaN | NaN | NaN | #لو_سانتاكلوز_موجود_هطلب\r\rيديني تيكت حفلة لعمرو دياب او شارموفز | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%84%D9%88_%D8%B3%D8%A7%D9%86%D8%AA%D8%A7%D9%83%D9%84%D9%88%D8%B2_%D9%85%D9%88%D8%AC%D9%88%D8%AF_%D9%87%D8%B7%D9%84%D8%A8?src=hash"><s>#</s><b>لو_سانتاكلوز_موجود_هطلب</b></a>\r\rيديني تيكت حفلة لعمرو دياب او شارموفز <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/></p> | 1.0 |
46 | adham_kassem96 | adham_kassem( معلول ) | 3013845210 | 947535359558250498 | https://twitter.com/adham_kassem96/status/947535359558250498 | 2017-12-31 18:30:08 | 1514745008 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 22 سنة ازاي مش عارف @ Assiut University https://www.instagram.com/p/BdYHDHSDW10/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">22 سنة ازاي مش عارف<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/> @ Assiut University <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYHDHSDW10/" dir="ltr" href="https://t.co/xUR7JWgTUg" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYHDHSDW10/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYHDHSDW10/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
49 | ShinkbAlmutlaq | شنيبان المطلق MBS 🇸🇦 | 736458690 | 947523953765113858 | https://twitter.com/ShinkbAlmutlaq/status/947523953765113858 | 2017-12-31 17:44:49 | 1514742289 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | 2018 Gala dinner at @sheratonmiramar @ El Gouna, Red Sea https://www.instagram.com/p/BdYB2XFltJy/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">2018 Gala dinner at <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="94776439" dir="ltr" href="/SheratonMiramar"><s>@</s><b>sheratonmiramar</b></a> <img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="☀️" aria-label="Emoji: Sun with rays" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2600.png" title="Sun with rays"/> @ El Gouna, Red Sea <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdYB2XFltJy/" dir="ltr" href="https://t.co/3RbH6l2Gjn" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdYB2XFltJy/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdYB2XFltJy/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
50 | Eng_RaMo | RaMo | 411229865 | 947516361089064960 | https://twitter.com/Eng_RaMo/status/947516361089064960 | 2017-12-31 17:14:39 | 1514740479 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Sunday’s Workout! \n#r4ap #nrc @ Egypt https://www.instagram.com/p/BdX-aeljRZr/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Sunday’s Workout! <img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/><img alt="🏃♂️" aria-label="Emoji: Man running" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3c3-200d-2642-fe0f.png" title="Man running"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/r4ap?src=hash"><s>#</s><b>r4ap</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/nrc?src=hash"><s>#</s><b>nrc</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdX-aeljRZr/" dir="ltr" href="https://t.co/Y0UM6JbClf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdX-aeljRZr/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdX-aeljRZr/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
56 | RamyBayern | RamyBayern | 250910371 | 947476668419051520 | https://twitter.com/RamyBayern/status/947476668419051520 | 2017-12-31 14:36:55 | 1514731015 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | What a perfect end for this year with amazing people \n#people #outing #memories #moments… https://www.instagram.com/p/BdXsW3zHfKz/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">What a perfect end for this year with amazing people <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/people?src=hash"><s>#</s><b>people</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/outing?src=hash"><s>#</s><b>outing</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/memories?src=hash"><s>#</s><b>memories</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/moments?src=hash"><s>#</s><b>moments</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdXsW3zHfKz/" dir="ltr" href="https://t.co/CnGN5A0xVb" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdXsW3zHfKz/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdXsW3zHfKz/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
57 | 3bdalla_3tta | عبدالله | 552675557 | 947463926018727936 | https://twitter.com/3bdalla_3tta/status/947463926018727936 | 2017-12-31 13:46:17 | 1514727977 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | ابو الاتش @ Vodafone Abanoub https://www.instagram.com/p/BdXmkKIn2rA/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">ابو الاتش <img alt="🙋🏿♂️" aria-label="Emoji: Man raising hand (dark skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64b-1f3ff-200d-2642-fe0f.png" title="Man raising hand (dark skin tone)"/><img alt="🤙🏾" aria-label="Emoji: Call me hand (medium dark skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f919-1f3fe.png" title="Call me hand (medium dark skin tone)"/> @ Vodafone Abanoub <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdXmkKIn2rA/" dir="ltr" href="https://t.co/A5MGpWy6HT" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdXmkKIn2rA/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdXmkKIn2rA/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
59 | Omarinho5899 | Omarinho | 4457059222 | 947461674587639808 | https://twitter.com/Omarinho5899/status/947461674587639808 | 2017-12-31 13:37:20 | 1514727440 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Hard work \n#Omarinho @ فى نادى الشبان المسلمين https://www.instagram.com/p/BdXkz_sHts4/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">Hard work <img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/><img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/><img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Omarinho?src=hash"><s>#</s><b>Omarinho</b></a> @ فى نادى الشبان المسلمين <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdXkz_sHts4/" dir="ltr" href="https://t.co/vc7vjclziV" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdXkz_sHts4/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdXkz_sHts4/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
65 | HEESSHAM1 | Hesham. | 3319808039 | 947448741941805059 | https://twitter.com/HEESSHAM1/status/947448741941805059 | 2017-12-31 12:45:57 | 1514724357 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اللهم آميـن @ Armant https://www.instagram.com/p/BdXfqbRh0ztG7RPCCW1fljJgl_1qHQSaNlfZ2A0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اللهم آميـن <img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="🙌" aria-label="Emoji: Person raising both hands in celebration" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64c.png" title="Person raising both hands in celebration"/> @ Armant <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdXfqbRh0ztG7RPCCW1fljJgl_1qHQSaNlfZ2A0/" dir="ltr" href="https://t.co/ddLPyzSxh2" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdXfqbRh0ztG7RPCCW1fljJgl_1qHQSaNlfZ2A0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdXfqbRh0ztG</span><span class="invisible">7RPCCW1fljJgl_1qHQSaNlfZ2A0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
66 | AhmedMu51071068 | Ahmed Mubark | 936755028731232256 | 947441064717275136 | https://twitter.com/AhmedMu51071068/status/947441064717275136 | 2017-12-31 12:15:27 | 1514722527 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | \nHappy new yearpic.twitter.com/JaizhwEAZ3 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/> <img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/>\nHappy new year<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="🎇" aria-label="Emoji: Firework sparkler" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f387.png" title="Firework sparkler"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/JaizhwEAZ3">pic.twitter.com/JaizhwEAZ3</a></p> | 6.0 |
68 | Faresx15 | محمد فارس .. 🔄🔄 | 3432722643 | 947427457908510721 | https://twitter.com/Faresx15/status/947427457908510721 | 2017-12-31 11:21:22 | 1514719282 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Hey Geys @ LUXOR . الأقــصــر https://www.instagram.com/p/BdXV-1mA6Tr/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Hey Geys <img alt="💛" aria-label="Emoji: Yellow heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49b.png" title="Yellow heart"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/> @ LUXOR . الأقــصــر <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdXV-1mA6Tr/" dir="ltr" href="https://t.co/cgJKE3yV53" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdXV-1mA6Tr/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdXV-1mA6Tr/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
71 | Mohammedy93 | Mohamed Yehia Khalil | 245919812 | 947420588095803392 | https://twitter.com/Mohammedy93/status/947420588095803392 | 2017-12-31 10:54:05 | 1514717645 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | A good year \n#2017bestnine @ Egypt https://www.instagram.com/p/BdXS27Sl7SJ/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">A good year <img alt="😄" aria-label="Emoji: Smiling face with open mouth and smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f604.png" title="Smiling face with open mouth and smiling eyes"/><img alt="✌🏼" aria-label="Emoji: Victory hand (medium light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270c-1f3fc.png" title="Victory hand (medium light skin tone)"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/2017bestnine?src=hash"><s>#</s><b>2017bestnine</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdXS27Sl7SJ/" dir="ltr" href="https://t.co/LqEO9bX7vi" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdXS27Sl7SJ/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdXS27Sl7SJ/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
75 | ahmadlabeeb31 | Ahmad labeeb | 2920461555 | 947371858621472768 | https://twitter.com/ahmadlabeeb31/status/947371858621472768 | 2017-12-31 07:40:27 | 1514706027 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | من الحاجات الجميلة اللي ممكن تحصلك ان يكون المكان ده جمب السكن بتاعك \n#الجزيرة #الجزيرة_كافيه… https://www.instagram.com/p/BdW8svcgaA5/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">من الحاجات الجميلة اللي ممكن تحصلك ان يكون المكان ده جمب السكن بتاعك <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AC%D8%B2%D9%8A%D8%B1%D8%A9?src=hash"><s>#</s><b>الجزيرة</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AC%D8%B2%D9%8A%D8%B1%D8%A9_%D9%83%D8%A7%D9%81%D9%8A%D9%87?src=hash"><s>#</s><b>الجزيرة_كافيه</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdW8svcgaA5/" dir="ltr" href="https://t.co/717mxhy37J" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdW8svcgaA5/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdW8svcgaA5/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
30340 | Aksam_96 | ÁkSaΜَ🔝 | 3963355877 | 816029237551501321 | https://twitter.com/Aksam_96/status/816029237551501321 | 2017-01-02 21:11:45 | 1483391505 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الجامعه وادبها \nوتاني يوم امتحانات وادبه @ Faculty of commerce… https://www.instagram.com/p/BOxs_08DbzAPZIXPwlZGMCKoQXywQCi-cgTZqU0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الجامعه وادبها <img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/>\nوتاني يوم امتحانات وادبه<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> @ Faculty of commerce… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOxs_08DbzAPZIXPwlZGMCKoQXywQCi-cgTZqU0/" dir="ltr" href="https://t.co/8ESuXD6wWZ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOxs_08DbzAPZIXPwlZGMCKoQXywQCi-cgTZqU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOxs_08DbzAP</span><span class="invisible">ZIXPwlZGMCKoQXywQCi-cgTZqU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
30344 | kamalramadan15 | kamalramadan كمال رمضان🇪🇬 | 445747966 | 816018551639142401 | https://twitter.com/kamalramadan15/status/816018551639142401 | 2017-01-02 20:29:18 | 1483388958 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | سبحان الله وبحمده \nعدد خلقه \nورضا نفسه\n وزنة عرشه \nومداد كلماته… https://www.instagram.com/p/BOxoIu2Bb4JywT2AvYQoMisK-lh-D3HdpeaeVg0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">سبحان الله وبحمده <img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/>\nعدد خلقه <img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/>\nورضا نفسه<img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/>\n وزنة عرشه <img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/>\nومداد كلماته… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOxoIu2Bb4JywT2AvYQoMisK-lh-D3HdpeaeVg0/" dir="ltr" href="https://t.co/GfnuVlyPAp" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOxoIu2Bb4JywT2AvYQoMisK-lh-D3HdpeaeVg0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOxoIu2Bb4Jy</span><span class="invisible">wT2AvYQoMisK-lh-D3HdpeaeVg0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
30345 | LAjames7 | Lynn A. James | 27061243 | 816017260313714688 | https://twitter.com/LAjames7/status/816017260313714688 | 2017-01-02 20:24:10 | 1483388650 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | On another level friend so cool! Miss you #repost @nosalikes #goals @ Egypt https://www.instagram.com/p/BOxnjQMAOFK/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">On another level friend <img alt="👏🏽" aria-label="Emoji: Clapping hands sign (medium skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44f-1f3fd.png" title="Clapping hands sign (medium skin tone)"/><img alt="👏🏽" aria-label="Emoji: Clapping hands sign (medium skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44f-1f3fd.png" title="Clapping hands sign (medium skin tone)"/><img alt="👏🏽" aria-label="Emoji: Clapping hands sign (medium skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44f-1f3fd.png" title="Clapping hands sign (medium skin tone)"/><img alt="👏🏽" aria-label="Emoji: Clapping hands sign (medium skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44f-1f3fd.png" title="Clapping hands sign (medium skin tone)"/>so cool! Miss you <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/repost?src=hash"><s>#</s><b>repost</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="98949969" dir="ltr" href="/Nosalikes"><s>@</s><b>nosalikes</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/goals?src=hash"><s>#</s><b>goals</b></a> <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOxnjQMAOFK/" dir="ltr" href="https://t.co/QDcod2zWqr" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOxnjQMAOFK/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOxnjQMAOFK/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30350 | c4zii | محـــــمڊ | 3247744639 | 815998406833225728 | https://twitter.com/c4zii/status/815998406833225728 | 2017-01-02 19:09:15 | 1483384155 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 'صنع في إيطاليا .#بيرلو\n#a_iid #تأثيراتي #jovens \n___________\n#اليوفي\n#يوفنتوس\n#بيرلو… https://www.instagram.com/p/BOxe9wgBdH2/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar">'صنع في إيطاليا .<img alt="🎶" aria-label="Emoji: Multiple musical notes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b6.png" title="Multiple musical notes"/><img alt="💓" aria-label="Emoji: Beating heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f493.png" title="Beating heart"/><img alt="👑" aria-label="Emoji: Crown" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f451.png" title="Crown"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A8%D9%8A%D8%B1%D9%84%D9%88?src=hash"><s>#</s><b>بيرلو</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/a_iid?src=hash"><s>#</s><b>a_iid</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AA%D8%A3%D8%AB%D9%8A%D8%B1%D8%A7%D8%AA%D9%8A?src=hash"><s>#</s><b>تأثيراتي</b></a><img alt="🔰" aria-label="Emoji: Japanese symbol for beginner" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f530.png" title="Japanese symbol for beginner"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/jovens?src=hash"><s>#</s><b>jovens</b></a> \n___________\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D9%8A%D9%88%D9%81%D9%8A?src=hash"><s>#</s><b>اليوفي</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%8A%D9%88%D9%81%D9%86%D8%AA%D9%88%D8%B3?src=hash"><s>#</s><b>يوفنتوس</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A8%D9%8A%D8%B1%D9%84%D9%88?src=hash"><s>#</s><b>بيرلو</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOxe9wgBdH2/" dir="ltr" href="https://t.co/noGFNmUbqA" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOxe9wgBdH2/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOxe9wgBdH2/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 3.0 |
30354 | mhmoudism | Mahmoud. | 704793660 | 815962626241036288 | https://twitter.com/mhmoudism/status/815962626241036288 | 2017-01-02 16:47:04 | 1483375624 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | https://twitter.com/dotmsr/status/815944573314809857 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="4" lang="und"><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/dotmsr/status/815944573314809857" dir="ltr" href="https://t.co/1MWcaZ9wI6" rel="nofollow noopener" target="_blank" title="https://twitter.com/dotmsr/status/815944573314809857"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/dotmsr/status/</span><span class="invisible">815944573314809857</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
30362 | mhmoudism | Mahmoud. | 704793660 | 815935907165597696 | https://twitter.com/mhmoudism/status/815935907165597696 | 2017-01-02 15:00:54 | 1483369254 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الدوري الإنجليزي بيفكرني بامتحانات الاناتومي بتاعت السنة اللي الفاتت..علي طول شغال | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الدوري الإنجليزي بيفكرني بامتحانات الاناتومي بتاعت السنة اللي الفاتت..علي طول شغال<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
30365 | ahmedse88844986 | ahmed serag | 795772102221721606 | 815933205953921024 | https://twitter.com/ahmedse88844986/status/815933205953921024 | 2017-01-02 14:50:10 | 1483368610 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اين؟؟ ذهبتي ايتهاا الضحكه التي تريح بالي وتطمئن قلبي ... @ Qena https://www.instagram.com/p/BOxBU12Buy9aZAsmVFL3j54uG2UCdzoCtw-o3g0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اين؟؟ ذهبتي ايتهاا الضحكه التي تريح بالي وتطمئن قلبي ...<img alt="☺" aria-label="Emoji: Smiling face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/263a.png" title="Smiling face"/> @ Qena <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOxBU12Buy9aZAsmVFL3j54uG2UCdzoCtw-o3g0/" dir="ltr" href="https://t.co/owOhvmoCfh" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOxBU12Buy9aZAsmVFL3j54uG2UCdzoCtw-o3g0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOxBU12Buy9a</span><span class="invisible">ZAsmVFL3j54uG2UCdzoCtw-o3g0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
30366 | a0745cec20474b4 | Thomas Kamak | 781902823697113088 | 815931767236554753 | https://twitter.com/a0745cec20474b4/status/815931767236554753 | 2017-01-02 14:44:27 | 1483368267 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | "@alwehaidy1: @hanan_1996_ \nحنان \nكل سنة وانتي طيبة " | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="4531132996" dir="ltr" href="/alwehaidy1"><s>@</s><b>alwehaidy1</b></a>: <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3368008391" dir="ltr" href="/hanan_1996_"><s>@</s><b>hanan_1996_</b></a> \nحنان \nكل سنة وانتي طيبة <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/>"</p> | 3.0 |
30375 | EmanELhowary | جعلوني صيدلانية | 401302736 | 815894581447376897 | https://twitter.com/EmanELhowary/status/815894581447376897 | 2017-01-02 12:16:41 | 1483359401 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | أنا بعشق البحر، زيك يا حبيبتي حنون وساعات زيك مجنون @ مدينة ادفو https://www.instagram.com/p/BOwvw0BDOUDnyjJ8jZLlvKwrH4vOl_Pt0s3ci00/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أنا بعشق البحر، زيك يا حبيبتي حنون وساعات زيك مجنون <img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/> @ مدينة ادفو <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOwvw0BDOUDnyjJ8jZLlvKwrH4vOl_Pt0s3ci00/" dir="ltr" href="https://t.co/kveJmAAxuC" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOwvw0BDOUDnyjJ8jZLlvKwrH4vOl_Pt0s3ci00/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOwvw0BDOUDn</span><span class="invisible">yjJ8jZLlvKwrH4vOl_Pt0s3ci00/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
30379 | MegMartin683 | Meg Amarasiriwardena | 138459811 | 815861753330352128 | https://twitter.com/MegMartin683/status/815861753330352128 | 2017-01-02 10:06:14 | 1483351574 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Egyptian cat. @ Om Kalsom Cafe https://www.instagram.com/p/BOwg1R0B_dV/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Egyptian cat. <img alt="💕" aria-label="Emoji: Two hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f495.png" title="Two hearts"/> @ Om Kalsom Cafe <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOwg1R0B_dV/" dir="ltr" href="https://t.co/StXHpf4AHV" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOwg1R0B_dV/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOwg1R0B_dV/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30384 | EmanELhowary | جعلوني صيدلانية | 401302736 | 815852753809510400 | https://twitter.com/EmanELhowary/status/815852753809510400 | 2017-01-02 09:30:28 | 1483349428 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Morning @ الاقصر https://www.instagram.com/p/BOwcve-Dq0gA8ti0b1mmSKruKyjU6bfMN-BMC00/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Morning <img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/><img alt="🎁" aria-label="Emoji: Wrapped present" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f381.png" title="Wrapped present"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎅" aria-label="Emoji: Father Christmas" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f385.png" title="Father Christmas"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/><img alt="😇" aria-label="Emoji: Smiling face with halo" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f607.png" title="Smiling face with halo"/> @ الاقصر <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOwcve-Dq0gA8ti0b1mmSKruKyjU6bfMN-BMC00/" dir="ltr" href="https://t.co/cFJtD56rT1" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOwcve-Dq0gA8ti0b1mmSKruKyjU6bfMN-BMC00/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOwcve-Dq0gA</span><span class="invisible">8ti0b1mmSKruKyjU6bfMN-BMC00/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 8.0 |
30396 | laurierojas | Laurie Rojas | 16241687 | 815808980773576704 | https://twitter.com/laurierojas/status/815808980773576704 | 2017-01-02 06:36:32 | 1483338992 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Nice way to to start the year! Best wishes to all, love from Luxor Temple. @ Luxor Temple https://www.instagram.com/p/BOwI1Tfh8Cj/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Nice way to to start the year! Best wishes to all, love from Luxor Temple. <img alt="👌" aria-label="Emoji: Ok hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c.png" title="Ok hand sign"/> @ Luxor Temple <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOwI1Tfh8Cj/" dir="ltr" href="https://t.co/0JkzeahBaI" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOwI1Tfh8Cj/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOwI1Tfh8Cj/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30398 | EmanELhowary | جعلوني صيدلانية | 401302736 | 815779971767693312 | https://twitter.com/EmanELhowary/status/815779971767693312 | 2017-01-02 04:41:16 | 1483332076 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | والصبح اذا تنفس \n#morning #Aswan #happynewyear #vacation #relaxing… https://www.instagram.com/p/BOv7pO6jTkcVV0-P-yEKXCj4DslF2P6CxPoFDQ0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">والصبح اذا تنفس <img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/morning?src=hash"><s>#</s><b>morning</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Aswan?src=hash"><s>#</s><b>Aswan</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happynewyear?src=hash"><s>#</s><b>happynewyear</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vacation?src=hash"><s>#</s><b>vacation</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/relaxing?src=hash"><s>#</s><b>relaxing</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOv7pO6jTkcVV0-P-yEKXCj4DslF2P6CxPoFDQ0/" dir="ltr" href="https://t.co/7o2KbLA2BX" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOv7pO6jTkcVV0-P-yEKXCj4DslF2P6CxPoFDQ0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOv7pO6jTkcV</span><span class="invisible">V0-P-yEKXCj4DslF2P6CxPoFDQ0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
30451 | NureenKhadr | Nureen Khadr | 2411228488 | 815640180589608960 | https://twitter.com/NureenKhadr/status/815640180589608960 | 2017-01-01 19:25:47 | 1483298747 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | started off 2017 with some sparkle & shine @ La Maison Bleue, El Gouna https://www.instagram.com/p/BOu8EnjBvJC/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">started off 2017 with some sparkle & shine <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/> @ La Maison Bleue, El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOu8EnjBvJC/" dir="ltr" href="https://t.co/EZJ1HQHEJN" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOu8EnjBvJC/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOu8EnjBvJC/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30453 | Esraag744 | إِسْرَاء 🎓🐾 | 807829118771404800 | 815635182967554048 | https://twitter.com/Esraag744/status/815635182967554048 | 2017-01-01 19:05:56 | 1483297556 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | pic.twitter.com/yWvQsj68EH | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/><img alt="💜" aria-label="Emoji: Purple heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49c.png" title="Purple heart"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/yWvQsj68EH">pic.twitter.com/yWvQsj68EH</a></p> | 4.0 |
30454 | Esraag744 | إِسْرَاء 🎓🐾 | 807829118771404800 | 815633951234592768 | https://twitter.com/Esraag744/status/815633951234592768 | 2017-01-01 19:01:02 | 1483297262 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | خير باذن الله يا حبوب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">خير باذن الله يا حبوب<img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/></p> | 1.0 |
30460 | moogewely | EL_Moo ⚽ 22 | 2423359872 | 815621427542065154 | https://twitter.com/moogewely/status/815621427542065154 | 2017-01-01 18:11:16 | 1483294276 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #tbm #tb #selfie #army #guns # # #goodevening #goodeveningpost # #airforce #egyarmy #… https://www.instagram.com/p/BOuzjDYAyw2/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/tbm?src=hash"><s>#</s><b>tbm</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/tb?src=hash"><s>#</s><b>tb</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/selfie?src=hash"><s>#</s><b>selfie</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/army?src=hash"><s>#</s><b>army</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/guns?src=hash"><s>#</s><b>guns</b></a> #<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> #<img alt="📷" aria-label="Emoji: Camera" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4f7.png" title="Camera"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/goodevening?src=hash"><s>#</s><b>goodevening</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/goodeveningpost?src=hash"><s>#</s><b>goodeveningpost</b></a> #<img alt="😉" aria-label="Emoji: Winking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f609.png" title="Winking face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/airforce?src=hash"><s>#</s><b>airforce</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egyarmy?src=hash"><s>#</s><b>egyarmy</b></a> #<img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOuzjDYAyw2/" dir="ltr" href="https://t.co/rlhZVEwdZ5" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOuzjDYAyw2/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOuzjDYAyw2/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 3.0 |
30463 | Mohammedy93 | Mohamed Yehia Khalil | 245919812 | 815617839424008193 | https://twitter.com/Mohammedy93/status/815617839424008193 | 2017-01-01 17:57:01 | 1483293421 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | First post in 2017. \nHappy New Year, everyone. I hope this year is so much better than the… https://www.instagram.com/p/BOux6nZg_po/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">First post in 2017. <img alt="😄" aria-label="Emoji: Smiling face with open mouth and smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f604.png" title="Smiling face with open mouth and smiling eyes"/> \nHappy New Year, everyone. I hope this year is so much better than the… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOux6nZg_po/" dir="ltr" href="https://t.co/nFYpGAQsUf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOux6nZg_po/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOux6nZg_po/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30482 | BauomyA | BaaTooOt 🐥 | 2916919857 | 815577259528568832 | https://twitter.com/BauomyA/status/815577259528568832 | 2017-01-01 15:15:46 | 1483283746 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | هفضل لحد امتى اخد مقالب زبالة ف الناس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هفضل لحد امتى اخد مقالب زبالة ف الناس <img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/><img alt="😏" aria-label="Emoji: Smirking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60f.png" title="Smirking face"/></p> | 1.0 |
30484 | tonyaboutros | Anthony Boutros | 274665717 | 815572049561325568 | https://twitter.com/tonyaboutros/status/815572049561325568 | 2017-01-01 14:55:03 | 1483282503 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy birthday ya Kaanté! @ DuPort Pool Club El Gouna https://www.instagram.com/p/BOudF9pAOCK/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht">Happy birthday ya Kaanté!<img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/> @ DuPort Pool Club El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOudF9pAOCK/" dir="ltr" href="https://t.co/VFU5FbR37a" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOudF9pAOCK/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOudF9pAOCK/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30486 | c4zii | محـــــمڊ | 3247744639 | 815565772172840960 | https://twitter.com/c4zii/status/815565772172840960 | 2017-01-01 14:30:07 | 1483281007 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وليس الذئب يأكل لحم ذئبـِ .\n#تأثيراتي #ماركو_رويس \n__________\n#ليفاندوفسكي\n#بايرن_ميونخ… https://www.instagram.com/p/BOuaOcrhOcW/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وليس الذئب يأكل لحم ذئبـِ .<img alt="✏" aria-label="Emoji: Pencil" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270f.png" title="Pencil"/><img alt="💭" aria-label="Emoji: Thought balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4ad.png" title="Thought balloon"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AA%D8%A3%D8%AB%D9%8A%D8%B1%D8%A7%D8%AA%D9%8A?src=hash"><s>#</s><b>تأثيراتي</b></a><img alt="🔰" aria-label="Emoji: Japanese symbol for beginner" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f530.png" title="Japanese symbol for beginner"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%A7%D8%B1%D9%83%D9%88_%D8%B1%D9%88%D9%8A%D8%B3?src=hash"><s>#</s><b>ماركو_رويس</b></a> \n__________\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%84%D9%8A%D9%81%D8%A7%D9%86%D8%AF%D9%88%D9%81%D8%B3%D9%83%D9%8A?src=hash"><s>#</s><b>ليفاندوفسكي</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A8%D8%A7%D9%8A%D8%B1%D9%86_%D9%85%D9%8A%D9%88%D9%86%D8%AE?src=hash"><s>#</s><b>بايرن_ميونخ</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOuaOcrhOcW/" dir="ltr" href="https://t.co/x1BBoHZIFF" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOuaOcrhOcW/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOuaOcrhOcW/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30489 | ahmedmamo797 | ahmed 3bnaby | 713877061421690880 | 815540729653198848 | https://twitter.com/ahmedmamo797/status/815540729653198848 | 2017-01-01 12:50:36 | 1483275036 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كل خير ان شاء الله #وجه_كلمه_ل2017 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل خير ان شاء الله<img alt="☺" aria-label="Emoji: Smiling face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/263a.png" title="Smiling face"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%88%D8%AC%D9%87_%D9%83%D9%84%D9%85%D9%87_%D9%842017?src=hash"><s>#</s><b>وجه_كلمه_ل2017</b></a></p> | 2.0 |
30494 | walidmomo8 | WaliD DiDa | 2607392245 | 815522137779896322 | https://twitter.com/walidmomo8/status/815522137779896322 | 2017-01-01 11:36:43 | 1483270603 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | احلي اخ @ قنا شارع الطرح https://www.instagram.com/p/BOuGZI7jHtmB5SYDmKb2jDDPdu9j5KcaKLYA5M0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">احلي اخ <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/> @ قنا شارع الطرح <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOuGZI7jHtmB5SYDmKb2jDDPdu9j5KcaKLYA5M0/" dir="ltr" href="https://t.co/iBlxvNQ7Yc" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOuGZI7jHtmB5SYDmKb2jDDPdu9j5KcaKLYA5M0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOuGZI7jHtmB</span><span class="invisible">5SYDmKb2jDDPdu9j5KcaKLYA5M0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
30497 | AmrAbulela | Amr Abulela #غزه | 417810810 | 815503788710699008 | https://twitter.com/AmrAbulela/status/815503788710699008 | 2017-01-01 10:23:49 | 1483266229 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | The last sunset at the year \nI wish 2017 have all the happy news for all \nT.B: Amr Abul-Ella @… https://www.instagram.com/p/BOt-DS5gGpK/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">The last sunset at the year \nI wish 2017 have all the happy news for all <img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/>\nT.B: Amr Abul-Ella @… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOt-DS5gGpK/" dir="ltr" href="https://t.co/PjwnXAV3Ut" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOt-DS5gGpK/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOt-DS5gGpK/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30499 | Heeb174 | H | 378505195 | 815497946523463680 | https://twitter.com/Heeb174/status/815497946523463680 | 2017-01-01 10:00:36 | 1483264836 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | (@ Banana Island) https://www.swarmapp.com/c/f05HFchN2MO | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tr"><img alt="🐊" aria-label="Emoji: Crocodile" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f40a.png" title="Crocodile"/><img alt="🍌" aria-label="Emoji: Banana" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f34c.png" title="Banana"/><img alt="🍌" aria-label="Emoji: Banana" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f34c.png" title="Banana"/> (@ Banana Island) <a class="twitter-timeline-link" data-expanded-url="https://www.swarmapp.com/c/f05HFchN2MO" dir="ltr" href="https://t.co/yZNt1rj85u" rel="nofollow noopener" target="_blank" title="https://www.swarmapp.com/c/f05HFchN2MO"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">swarmapp.com/c/f05HFchN2MO</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30501 | TheOceanRoamer | TheOceanRoamer | 87554294 | 815491918817796096 | https://twitter.com/TheOceanRoamer/status/815491918817796096 | 2017-01-01 09:36:39 | 1483263399 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | First Breakfast of the year. #happynewyear #2017 love u all! @ La Maison Bleue, El Gouna https://www.instagram.com/p/BOt4poMBDxE/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">First Breakfast of the year. <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happynewyear?src=hash"><s>#</s><b>happynewyear</b></a> #2017 love <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> u all! @ La Maison Bleue, El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOt4poMBDxE/" dir="ltr" href="https://t.co/Tzc1yAM5ZC" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOt4poMBDxE/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOt4poMBDxE/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30515 | UAlhelu | um hassan alhelu | 509763214 | 815455755805618176 | https://twitter.com/UAlhelu/status/815455755805618176 | 2017-01-01 07:12:57 | 1483254777 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كل عام وانتم في امانة موسى ابن جعفر \n\nكل عام وانتم للمهدي اقرب… https://www.instagram.com/p/BOtoNYrgvVpSxirwpXlvLn3nUoryecZJJH2UHU0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل عام وانتم في امانة موسى ابن جعفر <img alt="🌹" aria-label="Emoji: Rose" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f339.png" title="Rose"/>\n\nكل عام وانتم للمهدي اقرب… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOtoNYrgvVpSxirwpXlvLn3nUoryecZJJH2UHU0/" dir="ltr" href="https://t.co/GpzMIJXSwu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOtoNYrgvVpSxirwpXlvLn3nUoryecZJJH2UHU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOtoNYrgvVpS</span><span class="invisible">xirwpXlvLn3nUoryecZJJH2UHU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
30524 | MariCenti | Maria Centi | 1239664705 | 815379929097306112 | https://twitter.com/MariCenti/status/815379929097306112 | 2017-01-01 02:11:38 | 1483236698 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | • you're mad, bonkers, off your head... but I'll tell you a secret, all the best people are! •… https://www.instagram.com/p/BOtFuZCAlou/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">• you're mad, bonkers, off your head... but I'll tell you a secret, all the best people are! <img alt="🎩" aria-label="Emoji: Top hat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3a9.png" title="Top hat"/> •… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOtFuZCAlou/" dir="ltr" href="https://t.co/sDOIf0NMgu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOtFuZCAlou/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOtFuZCAlou/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
30525 | hnasr93 | حاســن 🇪🇬 | 2279292830 | 815375024706256896 | https://twitter.com/hnasr93/status/815375024706256896 | 2017-01-01 01:52:09 | 1483235529 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | سي سيد @ ساحل سليم http://ln.is/www.instagram.com/p/zE76m … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">سي سيد <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> @ ساحل سليم <a class="twitter-timeline-link" data-expanded-url="http://ln.is/www.instagram.com/p/zE76m" dir="ltr" href="https://t.co/p1oHwahPiR" rel="nofollow noopener" target="_blank" title="http://ln.is/www.instagram.com/p/zE76m"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">ln.is/www.instagram.</span><span class="invisible">com/p/zE76m</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
30527 | ahmadlegend620 | Д7MAD | 2363342774 | 815349567411683341 | https://twitter.com/ahmadlegend620/status/815349567411683341 | 2017-01-01 00:10:59 | 1483229459 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | (Happy New Year)To all of you . #2017 #happynewyear #happyholidays #2017 #familyfun… https://www.instagram.com/p/BOe3q2GgIBV/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">(Happy New Year)To all of you <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🎁" aria-label="Emoji: Wrapped present" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f381.png" title="Wrapped present"/><img alt="🎆" aria-label="Emoji: Fireworks" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f386.png" title="Fireworks"/><img alt="🎇" aria-label="Emoji: Firework sparkler" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f387.png" title="Firework sparkler"/><img alt="🎋" aria-label="Emoji: Tanabata tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38b.png" title="Tanabata tree"/>. #2017 <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happynewyear?src=hash"><s>#</s><b>happynewyear</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happyholidays?src=hash"><s>#</s><b>happyholidays</b></a> #2017<img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/familyfun?src=hash"><s>#</s><b>familyfun</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOe3q2GgIBV/" dir="ltr" href="https://t.co/SvQRFi2Rq7" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOe3q2GgIBV/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOe3q2GgIBV/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 6.0 |
6895 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
77 | Mekky90 | 🔞↙️ عمرو3mr | 211919452 | 947361037325651968 | https://twitter.com/Mekky90/status/947361037325651968 | 2017-12-31 06:57:27 | 1514703447 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | صباح الفل والياسمين (@ مؤسسة مصر الخير - فرع بنى سويف in بنى سويف) https://www.swarmapp.com/c/i1xs37gIHK9 pic.twitter.com/IUSBX3jPpI | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صباح الفل والياسمين <img alt="💥" aria-label="Emoji: Collision symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a5.png" title="Collision symbol"/> (@ مؤسسة مصر الخير - فرع بنى سويف in بنى سويف) <a class="twitter-timeline-link" data-expanded-url="https://www.swarmapp.com/c/i1xs37gIHK9" dir="ltr" href="https://t.co/dH45v15UTu" rel="nofollow noopener" target="_blank" title="https://www.swarmapp.com/c/i1xs37gIHK9"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">swarmapp.com/c/i1xs37gIHK9</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/IUSBX3jPpI">pic.twitter.com/IUSBX3jPpI</a></p> | -1.0 |
91 | OYS67 | عمر الشرف⚖ | 385999001 | 947217158857281536 | https://twitter.com/OYS67/status/947217158857281536 | 2017-12-30 21:25:43 | 1514669143 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Africa/Cairo https://www.instagram.com/p/BdV2WWdFpZmYL-u5QJW-kKAQj1F3O9b3L1ou2M0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pt"><img alt="✋🏼" aria-label="Emoji: Raised hand (medium light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b-1f3fc.png" title="Raised hand (medium light skin tone)"/> @ Africa/Cairo <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdV2WWdFpZmYL-u5QJW-kKAQj1F3O9b3L1ou2M0/" dir="ltr" href="https://t.co/3F0RZjrTlL" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdV2WWdFpZmYL-u5QJW-kKAQj1F3O9b3L1ou2M0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdV2WWdFpZmY</span><span class="invisible">L-u5QJW-kKAQj1F3O9b3L1ou2M0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
111 | OYS67 | عمر الشرف⚖ | 385999001 | 947217158857281536 | https://twitter.com/OYS67/status/947217158857281536 | 2017-12-30 21:25:43 | 1514669143 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Africa/Cairo https://www.instagram.com/p/BdV2WWdFpZmYL-u5QJW-kKAQj1F3O9b3L1ou2M0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pt"><img alt="✋🏼" aria-label="Emoji: Raised hand (medium light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b-1f3fc.png" title="Raised hand (medium light skin tone)"/> @ Africa/Cairo <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdV2WWdFpZmYL-u5QJW-kKAQj1F3O9b3L1ou2M0/" dir="ltr" href="https://t.co/3F0RZjrTlL" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdV2WWdFpZmYL-u5QJW-kKAQj1F3O9b3L1ou2M0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdV2WWdFpZmY</span><span class="invisible">L-u5QJW-kKAQj1F3O9b3L1ou2M0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
204 | ahmed__awad99 | AHmeD m.aWaD | 3128829082 | 946744207041073153 | https://twitter.com/ahmed__awad99/status/946744207041073153 | 2017-12-29 14:06:23 | 1514556383 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | #solidaritywithkarim @ Africa/Cairo https://www.instagram.com/p/BdSfRi7Hfd53veWZlBc4LDWQmr8xWbhGoEXeuw0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pt"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/solidaritywithkarim?src=hash"><s>#</s><b>solidaritywithkarim</b></a> <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/> @ Africa/Cairo <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdSfRi7Hfd53veWZlBc4LDWQmr8xWbhGoEXeuw0/" dir="ltr" href="https://t.co/gHYZi7Ztks" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdSfRi7Hfd53veWZlBc4LDWQmr8xWbhGoEXeuw0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdSfRi7Hfd53</span><span class="invisible">veWZlBc4LDWQmr8xWbhGoEXeuw0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
217 | lovly_y | thourya osama | 1116221658 | 946672951432278016 | https://twitter.com/lovly_y/status/946672951432278016 | 2017-12-29 09:23:14 | 1514539394 | 0 | 0 | 4 | 0 | NaN | NaN | NaN | ونبي يا حبيبي متبقاش تلغي الفلو من هنا لما اعملك الباك\r من هنا #سنحارب_العالم_ب #داخلين_2018_ولسةpic.twitter.com/kZU8v5r4tA | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ونبي يا حبيبي متبقاش تلغي الفلو من هنا <img alt="✖" aria-label="Emoji: Heavy multiplication x" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2716.png" title="Heavy multiplication x"/> لما اعملك الباك\r من هنا <img alt="🔙" aria-label="Emoji: Back with leftwards arrow above" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f519.png" title="Back with leftwards arrow above"/><img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%B3%D9%86%D8%AD%D8%A7%D8%B1%D8%A8_%D8%A7%D9%84%D8%B9%D8%A7%D9%84%D9%85_%D8%A8?src=hash"><s>#</s><b>سنحارب_العالم_ب</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AF%D8%A7%D8%AE%D9%84%D9%8A%D9%86_2018_%D9%88%D9%84%D8%B3%D8%A9?src=hash"><s>#</s><b>داخلين_2018_ولسة</b></a><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/kZU8v5r4tA">pic.twitter.com/kZU8v5r4tA</a></p> | -2.0 |
350 | AhmedElshlky | Ahmed.elshlky | 900723056171208704 | 945933264480595969 | https://twitter.com/AhmedElshlky/status/945933264480595969 | 2017-12-27 08:23:59 | 1514363039 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ولانك شديد الصبر ظنوا انك لا تشعر ابدا @ Ras Ghareb https://www.instagram.com/p/BdMugKAgUUnIv4a7eFr6OVh2ubWHf6cehPux4U0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ولانك شديد الصبر ظنوا انك لا تشعر ابدا <img alt="☹️" aria-label="Emoji: Frowning face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2639.png" title="Frowning face"/> @ Ras Ghareb <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdMugKAgUUnIv4a7eFr6OVh2ubWHf6cehPux4U0/" dir="ltr" href="https://t.co/kwxDz84Vv3" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdMugKAgUUnIv4a7eFr6OVh2ubWHf6cehPux4U0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdMugKAgUUnI</span><span class="invisible">v4a7eFr6OVh2ubWHf6cehPux4U0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
374 | EhabFaw14180233 | Ehab Fawzy | 3222490020 | 945712074168025089 | https://twitter.com/EhabFaw14180233/status/945712074168025089 | 2017-12-26 17:45:03 | 1514310303 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الذكري السنوية الاولي لوالدي \n#مفتقد_حنيتك @ Mir, Asyut, Egypt https://www.instagram.com/p/BdLJ6yOgbvudCEIW5t76Wn5qiTALSOsda0iuSw0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الذكري السنوية الاولي لوالدي <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D9%81%D8%AA%D9%82%D8%AF_%D8%AD%D9%86%D9%8A%D8%AA%D9%83?src=hash"><s>#</s><b>مفتقد_حنيتك</b></a> <img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/> @ Mir, Asyut, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdLJ6yOgbvudCEIW5t76Wn5qiTALSOsda0iuSw0/" dir="ltr" href="https://t.co/UUNTehqAaj" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdLJ6yOgbvudCEIW5t76Wn5qiTALSOsda0iuSw0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdLJ6yOgbvud</span><span class="invisible">CEIW5t76Wn5qiTALSOsda0iuSw0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -4.0 |
394 | EhabFaw14180233 | Ehab Fawzy | 3222490020 | 945712074168025089 | https://twitter.com/EhabFaw14180233/status/945712074168025089 | 2017-12-26 17:45:03 | 1514310303 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الذكري السنوية الاولي لوالدي \n#مفتقد_حنيتك @ Mir, Asyut, Egypt https://www.instagram.com/p/BdLJ6yOgbvudCEIW5t76Wn5qiTALSOsda0iuSw0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الذكري السنوية الاولي لوالدي <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D9%81%D8%AA%D9%82%D8%AF_%D8%AD%D9%86%D9%8A%D8%AA%D9%83?src=hash"><s>#</s><b>مفتقد_حنيتك</b></a> <img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/> @ Mir, Asyut, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdLJ6yOgbvudCEIW5t76Wn5qiTALSOsda0iuSw0/" dir="ltr" href="https://t.co/UUNTehqAaj" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdLJ6yOgbvudCEIW5t76Wn5qiTALSOsda0iuSw0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdLJ6yOgbvud</span><span class="invisible">CEIW5t76Wn5qiTALSOsda0iuSw0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -4.0 |
426 | m_batah55 | mohamed batah👑 | 709117389691080704 | 945426444796289025 | https://twitter.com/m_batah55/status/945426444796289025 | 2017-12-25 22:50:04 | 1514242204 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | كسرة النفس الي بتحصل جوايا يومياً، قادرة علي انها تهد جبل. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كسرة النفس الي بتحصل جوايا يومياً، قادرة علي انها تهد جبل.<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
446 | m_batah55 | mohamed batah👑 | 709117389691080704 | 945426444796289025 | https://twitter.com/m_batah55/status/945426444796289025 | 2017-12-25 22:50:04 | 1514242204 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | كسرة النفس الي بتحصل جوايا يومياً، قادرة علي انها تهد جبل. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كسرة النفس الي بتحصل جوايا يومياً، قادرة علي انها تهد جبل.<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
482 | eabozaid44 | Eslam Abozaid | 3064143383 | 945099031918907392 | https://twitter.com/eabozaid44/status/945099031918907392 | 2017-12-25 01:09:02 | 1514164142 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #اللّه_يرحمك_يا_شريف @ El Fashn, Bani Suwayf, Egypt https://www.instagram.com/p/BIi8LnQg4So/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca"><img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D9%84%D9%91%D9%87_%D9%8A%D8%B1%D8%AD%D9%85%D9%83_%D9%8A%D8%A7_%D8%B4%D8%B1%D9%8A%D9%81?src=hash"><s>#</s><b>اللّه_يرحمك_يا_شريف</b></a> <img alt="😪" aria-label="Emoji: Sleepy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62a.png" title="Sleepy face"/> @ El Fashn, Bani Suwayf, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BIi8LnQg4So/" dir="ltr" href="https://t.co/Wlj8RAwKk1" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BIi8LnQg4So/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BIi8LnQg4So/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
541 | ashraqatnafsi | Ahmed Ismail | 253697527 | 944920985647636481 | https://twitter.com/ashraqatnafsi/status/944920985647636481 | 2017-12-24 13:21:33 | 1514121693 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الأنتخة حلوة مفيش كلام \n#Army #Officer #Work #YaRab @ Minya, Egypt https://www.instagram.com/p/BdFhvgTgp3U/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الأنتخة حلوة مفيش كلام <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Army?src=hash"><s>#</s><b>Army</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Officer?src=hash"><s>#</s><b>Officer</b></a> <img alt="👮" aria-label="Emoji: Police officer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f46e.png" title="Police officer"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Work?src=hash"><s>#</s><b>Work</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/YaRab?src=hash"><s>#</s><b>YaRab</b></a> @ Minya, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdFhvgTgp3U/" dir="ltr" href="https://t.co/2tf7ppY7Yc" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdFhvgTgp3U/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdFhvgTgp3U/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
655 | Abdallah636 | Abdullah khaled | 3107288562 | 944204741453795328 | https://twitter.com/Abdallah636/status/944204741453795328 | 2017-12-22 13:55:27 | 1513950927 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | who I am! \n:مع نفسي وانا قايم من النوم\n:انت مين؟\n؛:انا مش عارفني \n:انت ايه الي جابك هنا… https://www.instagram.com/p/BdAcdqMnncS/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">who I am! <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/>\n:مع نفسي وانا قايم من النوم\n:انت مين؟\n؛:انا مش عارفني \n:انت ايه الي جابك هنا… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdAcdqMnncS/" dir="ltr" href="https://t.co/FoDfkIsRFu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdAcdqMnncS/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdAcdqMnncS/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
832 | Mo7a226 | ♥♥ | 2560755439 | 943127131462295553 | https://twitter.com/Mo7a226/status/943127131462295553 | 2017-12-19 14:33:25 | 1513694005 | 0 | 102 | 13 | 0 | NaN | NaN | NaN | انا زيي زيك معرفش ايه اللي حصل، ماما كانت بتهزق اخويا لقيتها فجأة بتهزقني انا pic.twitter.com/bmjKDZR2gl | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا زيي زيك معرفش ايه اللي حصل، ماما كانت بتهزق اخويا لقيتها فجأة بتهزقني انا <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/bmjKDZR2gl">pic.twitter.com/bmjKDZR2gl</a></p> | -1.0 |
852 | Mo7a226 | ♥♥ | 2560755439 | 943127131462295553 | https://twitter.com/Mo7a226/status/943127131462295553 | 2017-12-19 14:33:25 | 1513694005 | 0 | 102 | 13 | 0 | NaN | NaN | NaN | انا زيي زيك معرفش ايه اللي حصل، ماما كانت بتهزق اخويا لقيتها فجأة بتهزقني انا pic.twitter.com/bmjKDZR2gl | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا زيي زيك معرفش ايه اللي حصل، ماما كانت بتهزق اخويا لقيتها فجأة بتهزقني انا <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/bmjKDZR2gl">pic.twitter.com/bmjKDZR2gl</a></p> | -1.0 |
887 | israilov1012 | danielleIsrailov | 75863674 | 942779383051374593 | https://twitter.com/israilov1012/status/942779383051374593 | 2017-12-18 15:31:35 | 1513611095 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | If I could only get lost in the sky instead of the desert #caracal… https://www.instagram.com/p/Bc2USIaFO5zjdC_3bV9KTsS_ZvsetKoN4cBA-Q0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">If I could only get lost in the sky instead of the desert <img alt="🌵" aria-label="Emoji: Cactus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f335.png" title="Cactus"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/caracal?src=hash"><s>#</s><b>caracal</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bc2USIaFO5zjdC_3bV9KTsS_ZvsetKoN4cBA-Q0/" dir="ltr" href="https://t.co/pNYAUaYfVG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bc2USIaFO5zjdC_3bV9KTsS_ZvsetKoN4cBA-Q0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bc2USIaFO5zj</span><span class="invisible">dC_3bV9KTsS_ZvsetKoN4cBA-Q0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
907 | israilov1012 | danielleIsrailov | 75863674 | 942779383051374593 | https://twitter.com/israilov1012/status/942779383051374593 | 2017-12-18 15:31:35 | 1513611095 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | If I could only get lost in the sky instead of the desert #caracal… https://www.instagram.com/p/Bc2USIaFO5zjdC_3bV9KTsS_ZvsetKoN4cBA-Q0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">If I could only get lost in the sky instead of the desert <img alt="🌵" aria-label="Emoji: Cactus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f335.png" title="Cactus"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/caracal?src=hash"><s>#</s><b>caracal</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bc2USIaFO5zjdC_3bV9KTsS_ZvsetKoN4cBA-Q0/" dir="ltr" href="https://t.co/pNYAUaYfVG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bc2USIaFO5zjdC_3bV9KTsS_ZvsetKoN4cBA-Q0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bc2USIaFO5zj</span><span class="invisible">dC_3bV9KTsS_ZvsetKoN4cBA-Q0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
949 | Valeen_Mamdouh | قهوة سادة | 2793733287 | 942537637063163904 | https://twitter.com/Valeen_Mamdouh/status/942537637063163904 | 2017-12-17 23:30:58 | 1513553458 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | يستفزوك ويخرجوا ازفت ما فيك \nويقولولك شايف مانت عصبي وخلقك ضيق | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يستفزوك ويخرجوا ازفت ما فيك \nويقولولك شايف مانت عصبي وخلقك ضيق <img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/></p> | -1.0 |
962 | M3hmoud_B3dran | Eng/ MåHmøűđ Bãđŕāń | 361509029 | 942443174580105216 | https://twitter.com/M3hmoud_B3dran/status/942443174580105216 | 2017-12-17 17:15:37 | 1513530937 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ذات مومنت وانت ف امتحاان شفووي الانتااج\n \n-الدوك ما تجااوب يبني \n=\n @ Nida, Suhaj, Egypt https://www.instagram.com/p/Bcz7YsMjji4/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ذات مومنت وانت ف امتحاان شفووي الانتااج\n \n-الدوك ما تجااوب يبني \n=\n<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><span data-original-codepoint="U+fe0f"></span> @ Nida, Suhaj, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bcz7YsMjji4/" dir="ltr" href="https://t.co/S9lM70jWPk" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bcz7YsMjji4/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bcz7YsMjji4/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
969 | Valeen_Mamdouh | قهوة سادة | 2793733287 | 942537637063163904 | https://twitter.com/Valeen_Mamdouh/status/942537637063163904 | 2017-12-17 23:30:58 | 1513553458 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | يستفزوك ويخرجوا ازفت ما فيك \nويقولولك شايف مانت عصبي وخلقك ضيق | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يستفزوك ويخرجوا ازفت ما فيك \nويقولولك شايف مانت عصبي وخلقك ضيق <img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/></p> | -1.0 |
982 | M3hmoud_B3dran | Eng/ MåHmøűđ Bãđŕāń | 361509029 | 942443174580105216 | https://twitter.com/M3hmoud_B3dran/status/942443174580105216 | 2017-12-17 17:15:37 | 1513530937 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ذات مومنت وانت ف امتحاان شفووي الانتااج\n \n-الدوك ما تجااوب يبني \n=\n @ Nida, Suhaj, Egypt https://www.instagram.com/p/Bcz7YsMjji4/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ذات مومنت وانت ف امتحاان شفووي الانتااج\n \n-الدوك ما تجااوب يبني \n=\n<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><span data-original-codepoint="U+fe0f"></span> @ Nida, Suhaj, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bcz7YsMjji4/" dir="ltr" href="https://t.co/S9lM70jWPk" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bcz7YsMjji4/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bcz7YsMjji4/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
1127 | JasperB15 | JasperB | 273479072 | 941642227276746752 | https://twitter.com/JasperB15/status/941642227276746752 | 2017-12-15 12:12:56 | 1513339976 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Sunset in Egypt #master_landscapes\n#landscapephotography #landscapelover #landscape_captures… https://www.instagram.com/p/BcuPKT7ncdj/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Sunset in Egypt<img alt="😯" aria-label="Emoji: Hushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62f.png" title="Hushed face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/master_landscapes?src=hash"><s>#</s><b>master_landscapes</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/landscapephotography?src=hash"><s>#</s><b>landscapephotography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/landscapelover?src=hash"><s>#</s><b>landscapelover</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/landscape_captures?src=hash"><s>#</s><b>landscape_captures</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BcuPKT7ncdj/" dir="ltr" href="https://t.co/uwrHf4FrbW" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BcuPKT7ncdj/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BcuPKT7ncdj/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
1221 | AliEmadweza | Ali Emad | 941155387008540672 | 941158807044001792 | https://twitter.com/AliEmadweza/status/941158807044001792 | 2017-12-14 04:12:00 | 1513224720 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الفلوس هتغير شكلك بس مش هتغير اصلك عللي مهلك هتفهمهاا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الفلوس هتغير شكلك بس مش هتغير اصلك عللي مهلك هتفهمهاا <img alt="😄" aria-label="Emoji: Smiling face with open mouth and smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f604.png" title="Smiling face with open mouth and smiling eyes"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
1353 | EhabFaw14180233 | Ehab Fawzy | 3222490020 | 940360720142790656 | https://twitter.com/EhabFaw14180233/status/940360720142790656 | 2017-12-11 23:20:41 | 1513034441 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "مين يسمع بس ؟!" \n#english_dpt @ Assiut https://www.instagram.com/p/BclIR3SA32ElZwGV1FQmjSI0oNzZwFNzF4EKk00/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">"مين يسمع بس ؟!" <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="✋🏼" aria-label="Emoji: Raised hand (medium light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b-1f3fc.png" title="Raised hand (medium light skin tone)"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/english_dpt?src=hash"><s>#</s><b>english_dpt</b></a> @ Assiut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BclIR3SA32ElZwGV1FQmjSI0oNzZwFNzF4EKk00/" dir="ltr" href="https://t.co/1P77jwLYfO" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BclIR3SA32ElZwGV1FQmjSI0oNzZwFNzF4EKk00/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BclIR3SA32El</span><span class="invisible">ZwGV1FQmjSI0oNzZwFNzF4EKk00/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1373 | EhabFaw14180233 | Ehab Fawzy | 3222490020 | 940360720142790656 | https://twitter.com/EhabFaw14180233/status/940360720142790656 | 2017-12-11 23:20:41 | 1513034441 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "مين يسمع بس ؟!" \n#english_dpt @ Assiut https://www.instagram.com/p/BclIR3SA32ElZwGV1FQmjSI0oNzZwFNzF4EKk00/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">"مين يسمع بس ؟!" <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="✋🏼" aria-label="Emoji: Raised hand (medium light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b-1f3fc.png" title="Raised hand (medium light skin tone)"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/english_dpt?src=hash"><s>#</s><b>english_dpt</b></a> @ Assiut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BclIR3SA32ElZwGV1FQmjSI0oNzZwFNzF4EKk00/" dir="ltr" href="https://t.co/1P77jwLYfO" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BclIR3SA32ElZwGV1FQmjSI0oNzZwFNzF4EKk00/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BclIR3SA32El</span><span class="invisible">ZwGV1FQmjSI0oNzZwFNzF4EKk00/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1435 | abdulrahimshaat | Abdulrahim Mokhlef | 3340606276 | 940004727479242752 | https://twitter.com/abdulrahimshaat/status/940004727479242752 | 2017-12-10 23:46:06 | 1512949566 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Memories @ Beni Suef University https://www.instagram.com/p/Bcimg4wHlpl/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Memories <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> @ Beni Suef University <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bcimg4wHlpl/" dir="ltr" href="https://t.co/mxA1J7me6N" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bcimg4wHlpl/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bcimg4wHlpl/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
1454 | crespozamalek07 | احمد بن مورينتس | 382921060 | 939874949635985408 | https://twitter.com/crespozamalek07/status/939874949635985408 | 2017-12-10 15:10:24 | 1512918624 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ AMC Royal Hotel - Hurghada https://www.instagram.com/p/Bchrf7Shqw7EqnYRElf-HJqmKk641lzS1-f-qs0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hi"><img alt="⚠️" aria-label="Emoji: Warning sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26a0.png" title="Warning sign"/><img alt="🔞" aria-label="Emoji: No one under eighteen symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f51e.png" title="No one under eighteen symbol"/><img alt="👬" aria-label="Emoji: Men holding hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f46c.png" title="Men holding hands"/> @ AMC Royal Hotel - Hurghada <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bchrf7Shqw7EqnYRElf-HJqmKk641lzS1-f-qs0/" dir="ltr" href="https://t.co/ls2ED7eOgI" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bchrf7Shqw7EqnYRElf-HJqmKk641lzS1-f-qs0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bchrf7Shqw7E</span><span class="invisible">qnYRElf-HJqmKk641lzS1-f-qs0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1455 | abdulrahimshaat | Abdulrahim Mokhlef | 3340606276 | 940004727479242752 | https://twitter.com/abdulrahimshaat/status/940004727479242752 | 2017-12-10 23:46:06 | 1512949566 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Memories @ Beni Suef University https://www.instagram.com/p/Bcimg4wHlpl/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Memories <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> @ Beni Suef University <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bcimg4wHlpl/" dir="ltr" href="https://t.co/mxA1J7me6N" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bcimg4wHlpl/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bcimg4wHlpl/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
1474 | crespozamalek07 | احمد بن مورينتس | 382921060 | 939874949635985408 | https://twitter.com/crespozamalek07/status/939874949635985408 | 2017-12-10 15:10:24 | 1512918624 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ AMC Royal Hotel - Hurghada https://www.instagram.com/p/Bchrf7Shqw7EqnYRElf-HJqmKk641lzS1-f-qs0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hi"><img alt="⚠️" aria-label="Emoji: Warning sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26a0.png" title="Warning sign"/><img alt="🔞" aria-label="Emoji: No one under eighteen symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f51e.png" title="No one under eighteen symbol"/><img alt="👬" aria-label="Emoji: Men holding hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f46c.png" title="Men holding hands"/> @ AMC Royal Hotel - Hurghada <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bchrf7Shqw7EqnYRElf-HJqmKk641lzS1-f-qs0/" dir="ltr" href="https://t.co/ls2ED7eOgI" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bchrf7Shqw7EqnYRElf-HJqmKk641lzS1-f-qs0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bchrf7Shqw7E</span><span class="invisible">qnYRElf-HJqmKk641lzS1-f-qs0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1802 | DianeKroe | Diane Kroe | 153087575 | 938015566555688961 | https://twitter.com/DianeKroe/status/938015566555688961 | 2017-12-05 12:01:53 | 1512475313 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | My brand ambassadors are all travelling back in time at the moment! @HannahLogan21 is currently exploring Ancient #Egypt and learning all about the hieroglyphics in her #DianeKroe top! #ttot #rtw #fashion #fashionstyle #fashionista #TravelBlogger #fashiondiaries #Travelpic.twitter.com/LJprfd3TZJ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My brand ambassadors are all travelling back in time at the moment! <img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2337332804" dir="ltr" href="/Hannahlogan21"><s>@</s><b>HannahLogan21</b></a> is currently exploring Ancient <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Egypt?src=hash"><s>#</s><b>Egypt</b></a> and learning all about the hieroglyphics in her <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/DianeKroe?src=hash"><s>#</s><b>DianeKroe</b></a> top! <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ttot?src=hash"><s>#</s><b>ttot</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/rtw?src=hash"><s>#</s><b>rtw</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashion?src=hash"><s>#</s><b>fashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashionstyle?src=hash"><s>#</s><b>fashionstyle</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashionista?src=hash"><s>#</s><b>fashionista</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/TravelBlogger?src=hash"><s>#</s><b>TravelBlogger</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashiondiaries?src=hash"><s>#</s><b>fashiondiaries</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Travel?src=hash"><s>#</s><b>Travel</b></a><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/LJprfd3TZJ">pic.twitter.com/LJprfd3TZJ</a></p> | -1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
29151 | its_andje | andje borojevic | 477433127 | 820729873438298112 | https://twitter.com/its_andje/status/820729873438298112 | 2017-01-15 20:30:24 | 1484512224 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | day 2 done. 130 km/ 130 km complete! no egyptian police pick up today, boo :( was a good day,… https://www.instagram.com/p/BPTGXxqDPlP/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">day 2 done. 130 km/ 130 km complete! no egyptian police pick up today, boo :( was a good day,… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BPTGXxqDPlP/" dir="ltr" href="https://t.co/ZhIsx0AzMH" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BPTGXxqDPlP/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BPTGXxqDPlP/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
29209 | 3oss_xD | Ahmed EsÄm | 574762362 | 820492920818122752 | https://twitter.com/3oss_xD/status/820492920818122752 | 2017-01-15 04:48:51 | 1484455731 | 0 | 0 | 7 | 0 | NaN | NaN | NaN | كمان الكهربا قطعت\nبس خلاص انا قرفت اقسم بالله\n | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كمان الكهربا قطعت\nبس خلاص انا قرفت اقسم بالله\n<img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/></p> | -1.0 |
29226 | Emy_Mustafa_ | Eman Mostafa♛ | 1649509346 | 820353897764163584 | https://twitter.com/Emy_Mustafa_/status/820353897764163584 | 2017-01-14 19:36:25 | 1484422585 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ويأتيك البلاء علي انك تتعب في وقت غلط ومكان غلط \nAbdominal pain , vomiting & dizziness | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">ويأتيك البلاء علي انك تتعب في وقت غلط ومكان غلط <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/>\nAbdominal pain , vomiting & dizziness</p> | -1.0 |
29246 | Emy_Mustafa_ | Eman Mostafa♛ | 1649509346 | 820353897764163584 | https://twitter.com/Emy_Mustafa_/status/820353897764163584 | 2017-01-14 19:36:25 | 1484422585 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ويأتيك البلاء علي انك تتعب في وقت غلط ومكان غلط \nAbdominal pain , vomiting & dizziness | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">ويأتيك البلاء علي انك تتعب في وقت غلط ومكان غلط <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/>\nAbdominal pain , vomiting & dizziness</p> | -1.0 |
29304 | SaschaAleks01 | Aleksandr | 14598567 | 820237744920264706 | https://twitter.com/SaschaAleks01/status/820237744920264706 | 2017-01-14 11:54:52 | 1484394892 | 2 | 0 | 4 | 0 | NaN | NaN | NaN | Letzter Tag in Ägypten. noch etwas Sonne haschen, bevor es zurück ins kalte Kaltland geht. @… https://www.instagram.com/p/BPPmzhMD9E0/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="de">Letzter Tag in Ägypten. <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/> noch etwas Sonne haschen, bevor es zurück ins kalte Kaltland geht. @… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BPPmzhMD9E0/" dir="ltr" href="https://t.co/emHFFT7HGG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BPPmzhMD9E0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BPPmzhMD9E0/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
29506 | ayakhairy | Aya Khairy | 210013650 | 819530839017000960 | https://twitter.com/ayakhairy/status/819530839017000960 | 2017-01-12 13:05:52 | 1484226352 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | @ El Gouna https://www.instagram.com/p/BPKlVkzFvxPtzZhVxOsVa3eHvdaws3id91Dmxg0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><img alt="😴" aria-label="Emoji: Sleeping face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f634.png" title="Sleeping face"/><img alt="💤" aria-label="Emoji: Sleeping symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a4.png" title="Sleeping symbol"/><img alt="🙇🏻" aria-label="Emoji: Person bowing deeply (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f647-1f3fb.png" title="Person bowing deeply (light skin tone)"/> @ El Gouna <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BPKlVkzFvxPtzZhVxOsVa3eHvdaws3id91Dmxg0/" dir="ltr" href="https://t.co/orVLa1zP0H" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BPKlVkzFvxPtzZhVxOsVa3eHvdaws3id91Dmxg0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BPKlVkzFvxPt</span><span class="invisible">zZhVxOsVa3eHvdaws3id91Dmxg0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
29613 | mhmoudism | Mahmoud. | 704793660 | 819069158847631361 | https://twitter.com/mhmoudism/status/819069158847631361 | 2017-01-11 06:31:19 | 1484116279 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | طب والله انا ما زعلان غير علي الوقت اللي ضيعته في ال cardiac cycle | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">طب والله انا ما زعلان غير علي الوقت اللي ضيعته في ال cardiac cycle<img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
29715 | dondondido | dondon dido🍒 | 1452429678 | 818585747129245696 | https://twitter.com/dondondido/status/818585747129245696 | 2017-01-09 22:30:25 | 1484001025 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بعد عّن الله مزله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بعد عّن الله مزله<img alt="💭" aria-label="Emoji: Thought balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4ad.png" title="Thought balloon"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/></p> | -1.0 |
29735 | dondondido | dondon dido🍒 | 1452429678 | 818585747129245696 | https://twitter.com/dondondido/status/818585747129245696 | 2017-01-09 22:30:25 | 1484001025 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بعد عّن الله مزله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بعد عّن الله مزله<img alt="💭" aria-label="Emoji: Thought balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4ad.png" title="Thought balloon"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/></p> | -1.0 |
29759 | fatmaseif35 | fatmaseif | 715851544701304833 | 818484052902739972 | https://twitter.com/fatmaseif35/status/818484052902739972 | 2017-01-09 15:46:19 | 1483976779 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | جو تلج | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ar">جو تلج <img alt="😤" aria-label="Emoji: Face with look of triumph" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f624.png" title="Face with look of triumph"/><img alt="😤" aria-label="Emoji: Face with look of triumph" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f624.png" title="Face with look of triumph"/><img alt="😤" aria-label="Emoji: Face with look of triumph" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f624.png" title="Face with look of triumph"/><img alt="😤" aria-label="Emoji: Face with look of triumph" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f624.png" title="Face with look of triumph"/><img alt="😵" aria-label="Emoji: Dizzy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f635.png" title="Dizzy face"/><img alt="😵" aria-label="Emoji: Dizzy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f635.png" title="Dizzy face"/></p> | -2.0 |
29879 | dondondido | dondon dido🍒 | 1452429678 | 817877720210280450 | https://twitter.com/dondondido/status/817877720210280450 | 2017-01-07 23:36:58 | 1483832218 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عاشق سارح فى ملكوت | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عاشق سارح فى ملكوت<img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/></p> | -1.0 |
29899 | dondondido | dondon dido🍒 | 1452429678 | 817877720210280450 | https://twitter.com/dondondido/status/817877720210280450 | 2017-01-07 23:36:58 | 1483832218 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عاشق سارح فى ملكوت | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عاشق سارح فى ملكوت<img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/></p> | -1.0 |
30017 | zeusflowlegend | Marwan Mohamed | 487043647 | 817339092992225280 | https://twitter.com/zeusflowlegend/status/817339092992225280 | 2017-01-06 11:56:39 | 1483703799 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | صباح الخره .. يوم بدأ من اوله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صباح الخره .. يوم بدأ من اوله <img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/></p> | -1.0 |
30042 | MoAliiii | Mohammed Ali Mohammed | 378831863 | 817173837695582209 | https://twitter.com/MoAliiii/status/817173837695582209 | 2017-01-06 00:59:59 | 1483664399 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وموتانا يا الله الذين رحلّوا وذبلت الأشياء من بعدهم \nإجعل لهم نصيب في جنتك .. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وموتانا يا الله الذين رحلّوا وذبلت الأشياء من بعدهم \nإجعل لهم نصيب في جنتك ..<img alt="👐" aria-label="Emoji: Open hands sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f450.png" title="Open hands sign"/></p> | -1.0 |
30094 | Esraag744 | إِسْرَاء 🎓🐾 | 807829118771404800 | 817054528000454656 | https://twitter.com/Esraag744/status/817054528000454656 | 2017-01-05 17:05:54 | 1483635954 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | رحم الله ميتا ذكراه تبكيني\nمنار | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">رحم الله ميتا ذكراه تبكيني<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/>\nمنار<img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/></p> | -1.0 |
30117 | shadymohammed18 | شادي محمد الشريف🇦🇷 | 1689516282 | 816973320449097730 | https://twitter.com/shadymohammed18/status/816973320449097730 | 2017-01-05 11:43:12 | 1483616592 | 2 | 0 | 3 | 0 | NaN | NaN | NaN | @dardeery643 دردر بيدخل العمله الصعبه البلد بس انحرف pic.twitter.com/I0aVHQ3uAU | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1609339830" dir="ltr" href="/dardeery643"><s>@</s><b>dardeery643</b></a> دردر بيدخل العمله الصعبه البلد <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/>بس انحرف <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/I0aVHQ3uAU">pic.twitter.com/I0aVHQ3uAU</a></p> | -2.0 |
30147 | saroniiy | Sara | 723179916 | 816754511385595906 | https://twitter.com/saroniiy/status/816754511385595906 | 2017-01-04 21:13:44 | 1483564424 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يكفي الى هنا و ماقدر اووله عليك أكثر.. #Hamad @ Egypt https://www.instagram.com/p/BO220FiA-Iu9kSJvZhzJYj2mghp8rBphe6v3Dw0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يكفي الى هنا و ماقدر اووله عليك أكثر.. <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Hamad?src=hash"><s>#</s><b>Hamad</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BO220FiA-Iu9kSJvZhzJYj2mghp8rBphe6v3Dw0/" dir="ltr" href="https://t.co/TI6x9mE3bG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BO220FiA-Iu9kSJvZhzJYj2mghp8rBphe6v3Dw0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BO220FiA-Iu9</span><span class="invisible">kSJvZhzJYj2mghp8rBphe6v3Dw0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
30167 | saroniiy | Sara | 723179916 | 816754511385595906 | https://twitter.com/saroniiy/status/816754511385595906 | 2017-01-04 21:13:44 | 1483564424 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يكفي الى هنا و ماقدر اووله عليك أكثر.. #Hamad @ Egypt https://www.instagram.com/p/BO220FiA-Iu9kSJvZhzJYj2mghp8rBphe6v3Dw0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يكفي الى هنا و ماقدر اووله عليك أكثر.. <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Hamad?src=hash"><s>#</s><b>Hamad</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BO220FiA-Iu9kSJvZhzJYj2mghp8rBphe6v3Dw0/" dir="ltr" href="https://t.co/TI6x9mE3bG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BO220FiA-Iu9kSJvZhzJYj2mghp8rBphe6v3Dw0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BO220FiA-Iu9</span><span class="invisible">kSJvZhzJYj2mghp8rBphe6v3Dw0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
30213 | abdelrahmanmahr | Abdelrahman Mahrous | 398762923 | 816539250338516992 | https://twitter.com/abdelrahmanmahr/status/816539250338516992 | 2017-01-04 06:58:22 | 1483513102 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | اللهم يسر لي كل امر عسير... ياااا رب | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اللهم يسر لي كل امر عسير... ياااا رب <img alt="👐" aria-label="Emoji: Open hands sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f450.png" title="Open hands sign"/></p> | -1.0 |
30234 | melshakoushy | الشّوكشْ | 853578307 | 816389200710868993 | https://twitter.com/melshakoushy/status/816389200710868993 | 2017-01-03 21:02:07 | 1483477327 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | So tomorrow is the last day in luxor @ McDonalds (Luxor) https://www.instagram.com/p/BO0Qr5ylpyEtwG4NCJDlu8L6IB-sXlpoB6I1jU0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">So tomorrow is the last day in luxor <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="🙄" aria-label="Emoji: Face with rolling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f644.png" title="Face with rolling eyes"/><img alt="🙄" aria-label="Emoji: Face with rolling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f644.png" title="Face with rolling eyes"/> @ McDonalds (Luxor) <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BO0Qr5ylpyEtwG4NCJDlu8L6IB-sXlpoB6I1jU0/" dir="ltr" href="https://t.co/hGv83ZL076" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BO0Qr5ylpyEtwG4NCJDlu8L6IB-sXlpoB6I1jU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BO0Qr5ylpyEt</span><span class="invisible">wG4NCJDlu8L6IB-sXlpoB6I1jU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
30254 | melshakoushy | الشّوكشْ | 853578307 | 816389200710868993 | https://twitter.com/melshakoushy/status/816389200710868993 | 2017-01-03 21:02:07 | 1483477327 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | So tomorrow is the last day in luxor @ McDonalds (Luxor) https://www.instagram.com/p/BO0Qr5ylpyEtwG4NCJDlu8L6IB-sXlpoB6I1jU0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">So tomorrow is the last day in luxor <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="🙄" aria-label="Emoji: Face with rolling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f644.png" title="Face with rolling eyes"/><img alt="🙄" aria-label="Emoji: Face with rolling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f644.png" title="Face with rolling eyes"/> @ McDonalds (Luxor) <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BO0Qr5ylpyEtwG4NCJDlu8L6IB-sXlpoB6I1jU0/" dir="ltr" href="https://t.co/hGv83ZL076" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BO0Qr5ylpyEtwG4NCJDlu8L6IB-sXlpoB6I1jU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BO0Qr5ylpyEt</span><span class="invisible">wG4NCJDlu8L6IB-sXlpoB6I1jU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
30269 | Esraag744 | إِسْرَاء 🎓🐾 | 807829118771404800 | 816321215170224128 | https://twitter.com/Esraag744/status/816321215170224128 | 2017-01-03 16:31:58 | 1483461118 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | العالم سئ للغايه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">العالم سئ للغايه<img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/><img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/></p> | -1.0 |
30298 | melshakoushy | الشّوكشْ | 853578307 | 816210550287990784 | https://twitter.com/melshakoushy/status/816210550287990784 | 2017-01-03 09:12:14 | 1483434734 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | مكنش فيه شورتات زمان ولا ايه @ Temple of Queen Hatshepsut https://www.instagram.com/p/BOy_cc8FFhml62rmEIKxZmlgAI5LNALHwj9m2s0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">مكنش فيه شورتات زمان ولا ايه <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> @ Temple of Queen Hatshepsut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOy_cc8FFhml62rmEIKxZmlgAI5LNALHwj9m2s0/" dir="ltr" href="https://t.co/HSwuoWYvDK" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOy_cc8FFhml62rmEIKxZmlgAI5LNALHwj9m2s0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOy_cc8FFhml</span><span class="invisible">62rmEIKxZmlgAI5LNALHwj9m2s0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
30328 | Etchk | Hesham | 252244594 | 816000358027788290 | https://twitter.com/Etchk/status/816000358027788290 | 2017-01-02 19:17:00 | 1483384620 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | المفروض دول يخلصوا مذاكره انهارده وبكره ! @ Sohag https://www.instagram.com/p/BOxf3UADa8K/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المفروض دول يخلصوا مذاكره انهارده وبكره ! <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOxf3UADa8K/" dir="ltr" href="https://t.co/CgysyqW4Tx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOxf3UADa8K/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOxf3UADa8K/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
30348 | Etchk | Hesham | 252244594 | 816000358027788290 | https://twitter.com/Etchk/status/816000358027788290 | 2017-01-02 19:17:00 | 1483384620 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | المفروض دول يخلصوا مذاكره انهارده وبكره ! @ Sohag https://www.instagram.com/p/BOxf3UADa8K/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المفروض دول يخلصوا مذاكره انهارده وبكره ! <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> @ Sohag <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BOxf3UADa8K/" dir="ltr" href="https://t.co/CgysyqW4Tx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BOxf3UADa8K/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BOxf3UADa8K/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
30411 | Amani_gamal93 | Amani | 2300280110 | 815659909299793920 | https://twitter.com/Amani_gamal93/status/815659909299793920 | 2017-01-01 20:44:11 | 1483303451 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | النص الأبيض فيا إغمَقّ :( ! | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">النص الأبيض فيا إغمَقّ :( !</p> | -1.0 |
30431 | Amani_gamal93 | Amani | 2300280110 | 815659909299793920 | https://twitter.com/Amani_gamal93/status/815659909299793920 | 2017-01-01 20:44:11 | 1483303451 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | النص الأبيض فيا إغمَقّ :( ! | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">النص الأبيض فيا إغمَقّ :( !</p> | -1.0 |
30458 | khatib991 | Ahmed el-Khatib | 2819622665 | 815623641014632448 | https://twitter.com/khatib991/status/815623641014632448 | 2017-01-01 18:20:04 | 1483294804 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | pic.twitter.com/taU3f0LZYK | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/taU3f0LZYK">pic.twitter.com/taU3f0LZYK</a></p> | -1.0 |
30483 | BauomyA | BaaTooOt 🐥 | 2916919857 | 815575860161941504 | https://twitter.com/BauomyA/status/815575860161941504 | 2017-01-01 15:10:12 | 1483283412 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | كونى سؤال سهل ف امتحان فاينال | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كونى سؤال سهل ف امتحان فاينال <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/></p> | -1.0 |
30523 | yourfavfaros_ | ✞ | 3167114968 | 815398908759314432 | https://twitter.com/yourfavfaros_/status/815398908759314432 | 2017-01-01 03:27:03 | 1483241223 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | احتفلتوا براس السنه خلاص و انا ورايا امتحان كمان كام ساعه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">احتفلتوا براس السنه خلاص و انا ورايا امتحان كمان كام ساعه <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
636 rows × 17 columns
egypt tweets/egypt_tweets_2018.csv - 24094 tweets
Hashtag | Count | |
---|---|---|
0 | #egypt | 963 |
1 | #luxor | 529 |
2 | #Egypt | 507 |
3 | #travel | 277 |
4 | #Luxor | 214 |
5 | #photography | 137 |
6 | #temple | 117 |
7 | #photooftheday | 105 |
8 | #love | 103 |
9 | #2018 | 102 |
10 | #sunset | 91 |
11 | #redsea | 87 |
12 | #trip | 83 |
13 | #thisisegypt | 83 |
14 | #karnak | 81 |
15 | #sun | 81 |
16 | #sky | 79 |
17 | #picoftheday | 79 |
18 | #nile | 78 |
19 | #ElGouna | 78 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
17611 | PLeiaPrinSass | Kate Spaulding | 320244699 | 979810736116588551 | https://twitter.com/PLeiaPrinSass/status/979810736116588551 | 2018-03-30 20:00:58 | 1522440058 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Temple of #hatshepsut in #valleyofthekings - she was a true feminist - dressed as a man when she… https://www.instagram.com/p/Bg9cMDwDNLS/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Temple of <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/hatshepsut?src=hash"><s>#</s><b>hatshepsut</b></a> in <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/valleyofthekings?src=hash"><s>#</s><b>valleyofthekings</b></a> - she was a true feminist - dressed as a man when she… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bg9cMDwDNLS/" dir="ltr" href="https://t.co/AV1lb9RQjL" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bg9cMDwDNLS/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bg9cMDwDNLS/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 0.0 |
19175 | lord_mariano | FC Lord Mariano | 795711445401042949 | 971766291559264256 | https://twitter.com/lord_mariano/status/971766291559264256 | 2018-03-08 15:15:13 | 1520522113 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | O poder de uma mulher não está no seu físico, na sua beleza ou encanto feminino. \nO poder de uma… https://www.instagram.com/p/BgERB7Sj9kv/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pt">O poder de uma mulher não está no seu físico, na sua beleza ou encanto feminino. \nO poder de uma… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BgERB7Sj9kv/" dir="ltr" href="https://t.co/x74okjgdQM" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BgERB7Sj9kv/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BgERB7Sj9kv/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 0.0 |
Positive feels: 5291. Negative feels: 481 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2 | zeroo_mario | زِيِّرُو 零 | 785766612 | 1079859596569776128 | https://twitter.com/zeroo_mario/status/1079859596569776128 | 2018-12-31 21:59:25 | 1546293565 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | #HappyNewyYear #2019 @ Asyut https://www.instagram.com/p/BsEVJaTgFf1zzcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HappyNewyYear?src=hash"><s>#</s><b>HappyNewyYear</b></a> <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="⛄" aria-label="Emoji: Snowman without snow" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26c4.png" title="Snowman without snow"/><img alt="💕" aria-label="Emoji: Two hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f495.png" title="Two hearts"/> #2019 <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> @ Asyut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsEVJaTgFf1zzcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8" dir="ltr" href="https://t.co/H3Mg0gxjM7" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsEVJaTgFf1zzcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsEVJaTgFf1z</span><span class="invisible">zcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 6.0 |
5 | Mina_Magdy_B | MiИA | 226020906 | 1079855475720704001 | https://twitter.com/Mina_Magdy_B/status/1079855475720704001 | 2018-12-31 21:43:02 | 1546292582 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | While searching around for happiness around you may find the lifetime friends \n#HappyNewYear2019 @ كنيسة اﻻمير تادرس الشطبى - المنيا https://www.instagram.com/p/BsETI-LFmuqH5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">While searching around for happiness around you may find the lifetime friends <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HappyNewYear2019?src=hash"><s>#</s><b>HappyNewYear2019</b></a> @ كنيسة اﻻمير تادرس الشطبى - المنيا <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsETI-LFmuqH5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n" dir="ltr" href="https://t.co/RLdCrck1En" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsETI-LFmuqH5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsETI-LFmuqH</span><span class="invisible">5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
9 | druky89 | Druky | 98984631 | 1079842641301262336 | https://twitter.com/druky89/status/1079842641301262336 | 2018-12-31 20:52:02 | 1546289522 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #2018bestnine* en La Vida https://www.instagram.com/p/BsENb5KASF5/?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/2018bestnine?src=hash"><s>#</s><b>2018bestnine</b></a>* <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/> en La Vida <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsENb5KASF5/?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q" dir="ltr" href="https://t.co/1AbsjRDJ3M" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsENb5KASF5/?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsENb5KASF5/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
11 | Remmique_ | 🎼Akorįn🎤🔈 | 739458212 | 1079806150835462154 | https://twitter.com/Remmique_/status/1079806150835462154 | 2018-12-31 18:27:02 | 1546280822 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy Saturday Eyin Temi seems\nEjeka Sare lewon lere - Konma Sare 440 \nDope Freestyle from yours truly RemmiQue .. Feel it. Share it. Repost .\n.\nwaleturner @donotdropthemic @donl37… https://www.instagram.com/p/Brs09xiAvjT/?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy Saturday <img alt="🤗" aria-label="Emoji: Hugging face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f917.png" title="Hugging face"/><img alt="🤗" aria-label="Emoji: Hugging face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f917.png" title="Hugging face"/>Eyin Temi seems<img alt="😋" aria-label="Emoji: Face savouring delicious food" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60b.png" title="Face savouring delicious food"/><img alt="😋" aria-label="Emoji: Face savouring delicious food" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60b.png" title="Face savouring delicious food"/>\nEjeka Sare lewon lere - Konma Sare 440 \nDope Freestyle from yours truly RemmiQue .. Feel it. Share it. Repost .\n.\nwaleturner <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3364412021" dir="ltr" href="/donotdropthemic"><s>@</s><b>donotdropthemic</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="232784774" dir="ltr" href="/DONL37"><s>@</s><b>donl37</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Brs09xiAvjT/?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg" dir="ltr" href="https://t.co/vhR3JmfcyY" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Brs09xiAvjT/?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Brs09xiAvjT/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
14 | Mohamed_gh22 | Mohamed Elghorab | 2576156345 | 1079780658833051656 | https://twitter.com/Mohamed_gh22/status/1079780658833051656 | 2018-12-31 16:45:45 | 1546274745 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | والله ما حصلنا قلقاااس فعلا\n\nhttp://captainmohamed22.sarahah.com \n#محمد @ Egypt https://www.instagram.com/p/BsDxPe1FRJjEnTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">والله ما حصلنا قلقاااس فعلا\n<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\n<a class="twitter-timeline-link" data-expanded-url="http://captainmohamed22.sarahah.com" dir="ltr" href="https://t.co/bYX2CfiAQq" rel="nofollow noopener" target="_blank" title="http://captainmohamed22.sarahah.com"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">captainmohamed22.sarahah.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%AD%D9%85%D8%AF?src=hash"><s>#</s><b>محمد</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDxPe1FRJjEnTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi" dir="ltr" href="https://t.co/5dgAxHP1gc" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDxPe1FRJjEnTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDxPe1FRJjE</span><span class="invisible">nTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
17 | PAENAmarketing | PAENAmarketing | 910106869439488000 | 1079752900723818498 | https://twitter.com/PAENAmarketing/status/1079752900723818498 | 2018-12-31 14:55:27 | 1546268127 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | the #NewYearsEve 2019 \n\nWith no traditional ideas ..\nStart with Paena marketing \n\n#HappyNewYear2019 pic.twitter.com/Cssx32Y1mz @ Egypt https://www.instagram.com/p/BsDkZFUgvwd/?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><img alt="🌟" aria-label="Emoji: Glowing star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f31f.png" title="Glowing star"/> the <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/NewYearsEve?src=hash"><s>#</s><b>NewYearsEve</b></a> 2019 \n\nWith no traditional ideas ..\nStart with Paena marketing \n\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HappyNewYear2019?src=hash"><s>#</s><b>HappyNewYear2019</b></a> <a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/Cssx32Y1mz">pic.twitter.com/Cssx32Y1mz</a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDkZFUgvwd/?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh" dir="ltr" href="https://t.co/tT2PkvCeBa" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDkZFUgvwd/?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDkZFUgvwd/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
18 | IdeasGym | Ideas Gym | 309965899 | 1079749538737459201 | https://twitter.com/IdeasGym/status/1079749538737459201 | 2018-12-31 14:42:05 | 1546267325 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Python program at Ideasgym innovation lab at Assiut \n#Ideasgym #Ideasgym_Assiut\n#Summer2018 #Summer_Camp #Python #Programming @ Ideasgym Labs at Assiut Silicon Waha https://www.instagram.com/p/BsDjFfgFicP/?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Python program at Ideasgym innovation lab at Assiut <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Ideasgym?src=hash"><s>#</s><b>Ideasgym</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Ideasgym_Assiut?src=hash"><s>#</s><b>Ideasgym_Assiut</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Summer2018?src=hash"><s>#</s><b>Summer2018</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Summer_Camp?src=hash"><s>#</s><b>Summer_Camp</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Python?src=hash"><s>#</s><b>Python</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Programming?src=hash"><s>#</s><b>Programming</b></a> @ Ideasgym Labs at Assiut Silicon Waha <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDjFfgFicP/?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4" dir="ltr" href="https://t.co/dR5Vliy80f" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDjFfgFicP/?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDjFfgFicP/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
19 | Jacir_Hilmi | J A C I R △⃒⃘ | 813778285 | 1079747708108206081 | https://twitter.com/Jacir_Hilmi/status/1079747708108206081 | 2018-12-31 14:34:49 | 1546266889 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | She is my beautiful, my star, my love and my little princess. \nMy adorable sister, happy birthday \n#happybirthday #happybirthday #happybirthdaymylove #happybirthdaymylove… https://www.instagram.com/p/BsDiRFuHyTr/?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">She is my beautiful, my star, my love and my little princess. \nMy adorable sister, happy birthday <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthday?src=hash"><s>#</s><b>happybirthday</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthday?src=hash"><s>#</s><b>happybirthday</b></a><img alt="🎂" aria-label="Emoji: Birthday cake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f382.png" title="Birthday cake"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthdaymylove?src=hash"><s>#</s><b>happybirthdaymylove</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthdaymylove?src=hash"><s>#</s><b>happybirthdaymylove</b></a><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDiRFuHyTr/?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj" dir="ltr" href="https://t.co/tDrnwQNHmc" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDiRFuHyTr/?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDiRFuHyTr/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
22 | zeroo_mario | زِيِّرُو 零 | 785766612 | 1079859596569776128 | https://twitter.com/zeroo_mario/status/1079859596569776128 | 2018-12-31 21:59:25 | 1546293565 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | #HappyNewyYear #2019 @ Asyut https://www.instagram.com/p/BsEVJaTgFf1zzcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HappyNewyYear?src=hash"><s>#</s><b>HappyNewyYear</b></a> <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="⛄" aria-label="Emoji: Snowman without snow" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26c4.png" title="Snowman without snow"/><img alt="💕" aria-label="Emoji: Two hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f495.png" title="Two hearts"/> #2019 <img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/><img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> @ Asyut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsEVJaTgFf1zzcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8" dir="ltr" href="https://t.co/H3Mg0gxjM7" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsEVJaTgFf1zzcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsEVJaTgFf1z</span><span class="invisible">zcYcV_j2C8jZHXP4M5saAduq4U0/?utm_source=ig_twitter_share&igshid=3rj12m5qltw8</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 6.0 |
25 | Mina_Magdy_B | MiИA | 226020906 | 1079855475720704001 | https://twitter.com/Mina_Magdy_B/status/1079855475720704001 | 2018-12-31 21:43:02 | 1546292582 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | While searching around for happiness around you may find the lifetime friends \n#HappyNewYear2019 @ كنيسة اﻻمير تادرس الشطبى - المنيا https://www.instagram.com/p/BsETI-LFmuqH5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">While searching around for happiness around you may find the lifetime friends <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HappyNewYear2019?src=hash"><s>#</s><b>HappyNewYear2019</b></a> @ كنيسة اﻻمير تادرس الشطبى - المنيا <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsETI-LFmuqH5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n" dir="ltr" href="https://t.co/RLdCrck1En" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsETI-LFmuqH5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsETI-LFmuqH</span><span class="invisible">5xRA0J-SNUmVPEur60b95yL6l00/?utm_source=ig_twitter_share&igshid=ijg7azpnz75n</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
29 | druky89 | Druky | 98984631 | 1079842641301262336 | https://twitter.com/druky89/status/1079842641301262336 | 2018-12-31 20:52:02 | 1546289522 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #2018bestnine* en La Vida https://www.instagram.com/p/BsENb5KASF5/?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/2018bestnine?src=hash"><s>#</s><b>2018bestnine</b></a>* <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/> en La Vida <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsENb5KASF5/?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q" dir="ltr" href="https://t.co/1AbsjRDJ3M" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsENb5KASF5/?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsENb5KASF5/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=hhoy4tq9va2q</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
31 | Remmique_ | 🎼Akorįn🎤🔈 | 739458212 | 1079806150835462154 | https://twitter.com/Remmique_/status/1079806150835462154 | 2018-12-31 18:27:02 | 1546280822 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy Saturday Eyin Temi seems\nEjeka Sare lewon lere - Konma Sare 440 \nDope Freestyle from yours truly RemmiQue .. Feel it. Share it. Repost .\n.\nwaleturner @donotdropthemic @donl37… https://www.instagram.com/p/Brs09xiAvjT/?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy Saturday <img alt="🤗" aria-label="Emoji: Hugging face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f917.png" title="Hugging face"/><img alt="🤗" aria-label="Emoji: Hugging face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f917.png" title="Hugging face"/>Eyin Temi seems<img alt="😋" aria-label="Emoji: Face savouring delicious food" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60b.png" title="Face savouring delicious food"/><img alt="😋" aria-label="Emoji: Face savouring delicious food" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60b.png" title="Face savouring delicious food"/>\nEjeka Sare lewon lere - Konma Sare 440 \nDope Freestyle from yours truly RemmiQue .. Feel it. Share it. Repost .\n.\nwaleturner <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="3364412021" dir="ltr" href="/donotdropthemic"><s>@</s><b>donotdropthemic</b></a> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="232784774" dir="ltr" href="/DONL37"><s>@</s><b>donl37</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Brs09xiAvjT/?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg" dir="ltr" href="https://t.co/vhR3JmfcyY" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Brs09xiAvjT/?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Brs09xiAvjT/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=16gsqb0j5gmeg</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
34 | Mohamed_gh22 | Mohamed Elghorab | 2576156345 | 1079780658833051656 | https://twitter.com/Mohamed_gh22/status/1079780658833051656 | 2018-12-31 16:45:45 | 1546274745 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | والله ما حصلنا قلقاااس فعلا\n\nhttp://captainmohamed22.sarahah.com \n#محمد @ Egypt https://www.instagram.com/p/BsDxPe1FRJjEnTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">والله ما حصلنا قلقاااس فعلا\n<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>\n<a class="twitter-timeline-link" data-expanded-url="http://captainmohamed22.sarahah.com" dir="ltr" href="https://t.co/bYX2CfiAQq" rel="nofollow noopener" target="_blank" title="http://captainmohamed22.sarahah.com"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">captainmohamed22.sarahah.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%AD%D9%85%D8%AF?src=hash"><s>#</s><b>محمد</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDxPe1FRJjEnTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi" dir="ltr" href="https://t.co/5dgAxHP1gc" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDxPe1FRJjEnTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDxPe1FRJjE</span><span class="invisible">nTZfVfPz8728NWA0UbwR5440oI0/?utm_source=ig_twitter_share&igshid=1jfrz6p01kdpi</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
37 | PAENAmarketing | PAENAmarketing | 910106869439488000 | 1079752900723818498 | https://twitter.com/PAENAmarketing/status/1079752900723818498 | 2018-12-31 14:55:27 | 1546268127 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | the #NewYearsEve 2019 \n\nWith no traditional ideas ..\nStart with Paena marketing \n\n#HappyNewYear2019 pic.twitter.com/Cssx32Y1mz @ Egypt https://www.instagram.com/p/BsDkZFUgvwd/?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><img alt="🌟" aria-label="Emoji: Glowing star" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f31f.png" title="Glowing star"/> the <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/NewYearsEve?src=hash"><s>#</s><b>NewYearsEve</b></a> 2019 \n\nWith no traditional ideas ..\nStart with Paena marketing \n\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HappyNewYear2019?src=hash"><s>#</s><b>HappyNewYear2019</b></a> <a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/Cssx32Y1mz">pic.twitter.com/Cssx32Y1mz</a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDkZFUgvwd/?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh" dir="ltr" href="https://t.co/tT2PkvCeBa" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDkZFUgvwd/?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDkZFUgvwd/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=xbpznk6rw5eh</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
38 | IdeasGym | Ideas Gym | 309965899 | 1079749538737459201 | https://twitter.com/IdeasGym/status/1079749538737459201 | 2018-12-31 14:42:05 | 1546267325 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Python program at Ideasgym innovation lab at Assiut \n#Ideasgym #Ideasgym_Assiut\n#Summer2018 #Summer_Camp #Python #Programming @ Ideasgym Labs at Assiut Silicon Waha https://www.instagram.com/p/BsDjFfgFicP/?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Python program at Ideasgym innovation lab at Assiut <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Ideasgym?src=hash"><s>#</s><b>Ideasgym</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Ideasgym_Assiut?src=hash"><s>#</s><b>Ideasgym_Assiut</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Summer2018?src=hash"><s>#</s><b>Summer2018</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Summer_Camp?src=hash"><s>#</s><b>Summer_Camp</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Python?src=hash"><s>#</s><b>Python</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Programming?src=hash"><s>#</s><b>Programming</b></a> @ Ideasgym Labs at Assiut Silicon Waha <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDjFfgFicP/?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4" dir="ltr" href="https://t.co/dR5Vliy80f" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDjFfgFicP/?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDjFfgFicP/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1ml0o1tpjynb4</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
39 | Jacir_Hilmi | J A C I R △⃒⃘ | 813778285 | 1079747708108206081 | https://twitter.com/Jacir_Hilmi/status/1079747708108206081 | 2018-12-31 14:34:49 | 1546266889 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | She is my beautiful, my star, my love and my little princess. \nMy adorable sister, happy birthday \n#happybirthday #happybirthday #happybirthdaymylove #happybirthdaymylove… https://www.instagram.com/p/BsDiRFuHyTr/?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">She is my beautiful, my star, my love and my little princess. \nMy adorable sister, happy birthday <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthday?src=hash"><s>#</s><b>happybirthday</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthday?src=hash"><s>#</s><b>happybirthday</b></a><img alt="🎂" aria-label="Emoji: Birthday cake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f382.png" title="Birthday cake"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthdaymylove?src=hash"><s>#</s><b>happybirthdaymylove</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/happybirthdaymylove?src=hash"><s>#</s><b>happybirthdaymylove</b></a><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDiRFuHyTr/?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj" dir="ltr" href="https://t.co/tDrnwQNHmc" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDiRFuHyTr/?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDiRFuHyTr/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=te2s8tvpnxvj</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
48 | eamkaled | Captain Am | 75496418 | 1079698590497296384 | https://twitter.com/eamkaled/status/1079698590497296384 | 2018-12-31 11:19:38 | 1546255178 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | 2018? No long caption, no best nine, ‘cause you guys already the best in these 364 days It was good. @ Egypt https://www.instagram.com/p/BsDIbDQAQQ2/?utm_source=ig_twitter_share&igshid=1lbm7f98euxra … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">2018? No long caption, no best nine, ‘cause you guys already the best in these 364 days <img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/> It was good. @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDIbDQAQQ2/?utm_source=ig_twitter_share&igshid=1lbm7f98euxra" dir="ltr" href="https://t.co/GLUCeRmkdf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDIbDQAQQ2/?utm_source=ig_twitter_share&igshid=1lbm7f98euxra"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDIbDQAQQ2/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1lbm7f98euxra</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
67 | MohamedHasabal | Mohamed Hasab Allah voice over | 1947984084 | 1079650183787540480 | https://twitter.com/MohamedHasabal/status/1079650183787540480 | 2018-12-31 08:07:17 | 1546243637 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كل سنه وانتوا بخير جميعا \n.\nولو بيننا حاجه حلوه ولسه فاكرهالي رد عليا التهنئة @ Egypt https://www.instagram.com/mohamed_hasaballah/p/BsC16bxjQWg/?utm_source=ig_twitter_share&igshid=12t36a85x232m … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل سنه وانتوا بخير جميعا <img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/>\n.\nولو بيننا حاجه حلوه ولسه فاكرهالي رد عليا التهنئة <img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="💋" aria-label="Emoji: Kiss mark" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f48b.png" title="Kiss mark"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/mohamed_hasaballah/p/BsC16bxjQWg/?utm_source=ig_twitter_share&igshid=12t36a85x232m" dir="ltr" href="https://t.co/RgbyhB2hen" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/mohamed_hasaballah/p/BsC16bxjQWg/?utm_source=ig_twitter_share&igshid=12t36a85x232m"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/mohamed_hasaba</span><span class="invisible">llah/p/BsC16bxjQWg/?utm_source=ig_twitter_share&igshid=12t36a85x232m</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 4.0 |
85 | Gen_SalahShawky | النائب صلاح شوقي عقيل | 2892082342 | 1079537156895449089 | https://twitter.com/Gen_SalahShawky/status/1079537156895449089 | 2018-12-31 00:38:09 | 1546216689 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | . جعلها الله\n #سنة_جديدة_سعيدة\n عليكم جميعاً \n النائب صلاح شوقي عقيل @ Tima, Egypt https://www.instagram.com/p/BsCCfbEHQRY/?utm_source=ig_twitter_share&igshid=rdgx8vaxuq3h … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">. جعلها الله\n <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%B3%D9%86%D8%A9_%D8%AC%D8%AF%D9%8A%D8%AF%D8%A9_%D8%B3%D8%B9%D9%8A%D8%AF%D8%A9?src=hash"><s>#</s><b>سنة_جديدة_سعيدة</b></a>\n عليكم جميعاً <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/>\n النائب صلاح شوقي عقيل @ Tima, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsCCfbEHQRY/?utm_source=ig_twitter_share&igshid=rdgx8vaxuq3h" dir="ltr" href="https://t.co/mzHeatT4Jz" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsCCfbEHQRY/?utm_source=ig_twitter_share&igshid=rdgx8vaxuq3h"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsCCfbEHQRY/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=rdgx8vaxuq3h</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
88 | hh545141 | حماده يسري | 4825721727 | 1079516054622257153 | https://twitter.com/hh545141/status/1079516054622257153 | 2018-12-30 23:14:18 | 1546211658 | 0 | 4 | 0 | 0 | NaN | NaN | NaN | #100_موبايل_شاومي_هدية \nاهووووو ياشاومي احله مسا عليكم هاشتاج بقي \n يااااااااااااااااااااااااااااااااااااربpic.twitter.com/le6JUp4Pgi | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/100_%D9%85%D9%88%D8%A8%D8%A7%D9%8A%D9%84_%D8%B4%D8%A7%D9%88%D9%85%D9%8A_%D9%87%D8%AF%D9%8A%D8%A9?src=hash"><s>#</s><b>100_موبايل_شاومي_هدية</b></a> \nاهووووو ياشاومي احله مسا عليكم هاشتاج بقي <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/>\n ياااااااااااااااااااااااااااااااااااارب<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/le6JUp4Pgi">pic.twitter.com/le6JUp4Pgi</a></p> | 2.0 |
89 | OliveandBranch | OliveandBranch.com | 109048167 | 1079507807739760640 | https://twitter.com/OliveandBranch/status/1079507807739760640 | 2018-12-30 22:41:32 | 1546209692 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I really wanted to try the fresh Twinkie juice in Egypt @ Egypt https://www.instagram.com/p/BsB1KtjghPz/?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I really wanted to try the fresh Twinkie juice in Egypt <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/><img alt="🤦♀️" aria-label="Emoji: Woman facepalming" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f926-200d-2640-fe0f.png" title="Woman facepalming"/><img alt="🐪" aria-label="Emoji: Dromedary camel" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f42a.png" title="Dromedary camel"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsB1KtjghPz/?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju" dir="ltr" href="https://t.co/iev1aXklxZ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsB1KtjghPz/?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsB1KtjghPz/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
94 | RamezOmara | #مصر أم الدنيا سابقا | 496427858 | 1079456645032431617 | https://twitter.com/RamezOmara/status/1079456645032431617 | 2018-12-30 19:18:14 | 1546197494 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | My mother ,, @ Egypt https://www.instagram.com/p/BsBd6Htl8kI/?utm_source=ig_twitter_share&igshid=iegx38tuns8p … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My mother ,, <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="💓" aria-label="Emoji: Beating heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f493.png" title="Beating heart"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsBd6Htl8kI/?utm_source=ig_twitter_share&igshid=iegx38tuns8p" dir="ltr" href="https://t.co/785OGWlgO2" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsBd6Htl8kI/?utm_source=ig_twitter_share&igshid=iegx38tuns8p"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsBd6Htl8kI/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=iegx38tuns8p</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
96 | el_MeGzZz | Ahmed Magdy | 1485559292 | 1079453431574736896 | https://twitter.com/el_MeGzZz/status/1079453431574736896 | 2018-12-30 19:05:28 | 1546196728 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Billiard Time \n#sports #sport #active #fit #billiards #billiards #ball #gametime #fun #game #games #crowd #fans #play #playing #player #field #green #grass #goal #action #win #winning… https://www.instagram.com/p/BsBb5raFjb7/?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Billiard Time <img alt="🎱" aria-label="Emoji: Billiards" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b1.png" title="Billiards"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="👌" aria-label="Emoji: Ok hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c.png" title="Ok hand sign"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sports?src=hash"><s>#</s><b>sports</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sport?src=hash"><s>#</s><b>sport</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/active?src=hash"><s>#</s><b>active</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fit?src=hash"><s>#</s><b>fit</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/billiards?src=hash"><s>#</s><b>billiards</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/billiards?src=hash"><s>#</s><b>billiards</b></a><img alt="🎱" aria-label="Emoji: Billiards" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b1.png" title="Billiards"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ball?src=hash"><s>#</s><b>ball</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/gametime?src=hash"><s>#</s><b>gametime</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fun?src=hash"><s>#</s><b>fun</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/game?src=hash"><s>#</s><b>game</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/games?src=hash"><s>#</s><b>games</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/crowd?src=hash"><s>#</s><b>crowd</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fans?src=hash"><s>#</s><b>fans</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/play?src=hash"><s>#</s><b>play</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/playing?src=hash"><s>#</s><b>playing</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/player?src=hash"><s>#</s><b>player</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/field?src=hash"><s>#</s><b>field</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/green?src=hash"><s>#</s><b>green</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/grass?src=hash"><s>#</s><b>grass</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/goal?src=hash"><s>#</s><b>goal</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/action?src=hash"><s>#</s><b>action</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/win?src=hash"><s>#</s><b>win</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/winning?src=hash"><s>#</s><b>winning</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsBb5raFjb7/?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej" dir="ltr" href="https://t.co/sHANLfw3ZX" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsBb5raFjb7/?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsBb5raFjb7/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
100 | AhmadYehia10 | يِحيى | 3300191594 | 1079428323661565952 | https://twitter.com/AhmadYehia10/status/1079428323661565952 | 2018-12-30 17:25:41 | 1546190741 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | حايكه حقيقي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حايكه حقيقي<img alt="🔥" aria-label="Emoji: Fire" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f525.png" title="Fire"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
105 | HanyMahrous | Hany Mahrous | 125432672 | 1079405925692305409 | https://twitter.com/HanyMahrous/status/1079405925692305409 | 2018-12-30 15:56:41 | 1546185401 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الحمد لله مجهود وشغل سنة كاملة وربنا تممها علي خير نجحات ٢٠١٨ للانتاج فقط afafgrece @tamerhosny mostafahagagnj @nicole_hany_M josephhanymahrous wafayyassr njmusicproductions… https://www.instagram.com/p/BsBGr_9HcX4/?utm_source=ig_twitter_share&igshid=1twsck7j5d3dr … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">الحمد لله مجهود وشغل سنة كاملة وربنا تممها علي خير <img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="🥰" aria-label="Emoji: Smiling face with 3 hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f970.png" title="Smiling face with 3 hearts"/> نجحات ٢٠١٨ للانتاج فقط <img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/><img alt="🤗" aria-label="Emoji: Hugging face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f917.png" title="Hugging face"/> afafgrece <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="203846782" dir="ltr" href="/tamerhosny"><s>@</s><b>tamerhosny</b></a> mostafahagagnj <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="768610945719496704" dir="ltr" href="/nicole_hany_M"><s>@</s><b>nicole_hany_M</b></a> josephhanymahrous wafayyassr njmusicproductions… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsBGr_9HcX4/?utm_source=ig_twitter_share&igshid=1twsck7j5d3dr" dir="ltr" href="https://t.co/8ZsdzeusnR" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsBGr_9HcX4/?utm_source=ig_twitter_share&igshid=1twsck7j5d3dr"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsBGr_9HcX4/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1twsck7j5d3dr</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 4.0 |
106 | HanyMahrous | Hany Mahrous | 125432672 | 1079400298270126080 | https://twitter.com/HanyMahrous/status/1079400298270126080 | 2018-12-30 15:34:20 | 1546184060 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الحمد لله مجهود وشغل سنة وربنا تممها علي خير نجحات ٢٠١٨ afafgrece @tamerhosny mostafahagagnj @nicole_hany_M josephhanymahrous wafayyassr njmusicproductions @ Moods… https://www.instagram.com/p/BsBER1qHwkt/?utm_source=ig_twitter_share&igshid=a0ou812alzfx … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">الحمد لله مجهود وشغل سنة وربنا تممها علي خير <img alt="🎄" aria-label="Emoji: Christmas tree" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f384.png" title="Christmas tree"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="🥰" aria-label="Emoji: Smiling face with 3 hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f970.png" title="Smiling face with 3 hearts"/> نجحات ٢٠١٨ <img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/><img alt="🤗" aria-label="Emoji: Hugging face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f917.png" title="Hugging face"/> afafgrece <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="203846782" dir="ltr" href="/tamerhosny"><s>@</s><b>tamerhosny</b></a> mostafahagagnj <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="768610945719496704" dir="ltr" href="/nicole_hany_M"><s>@</s><b>nicole_hany_M</b></a> josephhanymahrous wafayyassr njmusicproductions @ Moods… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsBER1qHwkt/?utm_source=ig_twitter_share&igshid=a0ou812alzfx" dir="ltr" href="https://t.co/bpCGv60ygZ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsBER1qHwkt/?utm_source=ig_twitter_share&igshid=a0ou812alzfx"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsBER1qHwkt/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=a0ou812alzfx</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 4.0 |
108 | hh545141 | حماده يسري | 4825721727 | 1079516054622257153 | https://twitter.com/hh545141/status/1079516054622257153 | 2018-12-30 23:14:18 | 1546211658 | 0 | 4 | 0 | 0 | NaN | NaN | NaN | #100_موبايل_شاومي_هدية \nاهووووو ياشاومي احله مسا عليكم هاشتاج بقي \n يااااااااااااااااااااااااااااااااااااربpic.twitter.com/le6JUp4Pgi | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/100_%D9%85%D9%88%D8%A8%D8%A7%D9%8A%D9%84_%D8%B4%D8%A7%D9%88%D9%85%D9%8A_%D9%87%D8%AF%D9%8A%D8%A9?src=hash"><s>#</s><b>100_موبايل_شاومي_هدية</b></a> \nاهووووو ياشاومي احله مسا عليكم هاشتاج بقي <img alt="😃" aria-label="Emoji: Smiling face with open mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f603.png" title="Smiling face with open mouth"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/>\n ياااااااااااااااااااااااااااااااااااارب<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/le6JUp4Pgi">pic.twitter.com/le6JUp4Pgi</a></p> | 2.0 |
109 | OliveandBranch | OliveandBranch.com | 109048167 | 1079507807739760640 | https://twitter.com/OliveandBranch/status/1079507807739760640 | 2018-12-30 22:41:32 | 1546209692 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I really wanted to try the fresh Twinkie juice in Egypt @ Egypt https://www.instagram.com/p/BsB1KtjghPz/?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I really wanted to try the fresh Twinkie juice in Egypt <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/><img alt="🤦♀️" aria-label="Emoji: Woman facepalming" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f926-200d-2640-fe0f.png" title="Woman facepalming"/><img alt="🐪" aria-label="Emoji: Dromedary camel" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f42a.png" title="Dromedary camel"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsB1KtjghPz/?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju" dir="ltr" href="https://t.co/iev1aXklxZ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsB1KtjghPz/?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsB1KtjghPz/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1p9bbkarwdjju</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
114 | RamezOmara | #مصر أم الدنيا سابقا | 496427858 | 1079456645032431617 | https://twitter.com/RamezOmara/status/1079456645032431617 | 2018-12-30 19:18:14 | 1546197494 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | My mother ,, @ Egypt https://www.instagram.com/p/BsBd6Htl8kI/?utm_source=ig_twitter_share&igshid=iegx38tuns8p … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My mother ,, <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="💓" aria-label="Emoji: Beating heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f493.png" title="Beating heart"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsBd6Htl8kI/?utm_source=ig_twitter_share&igshid=iegx38tuns8p" dir="ltr" href="https://t.co/785OGWlgO2" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsBd6Htl8kI/?utm_source=ig_twitter_share&igshid=iegx38tuns8p"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsBd6Htl8kI/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=iegx38tuns8p</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
116 | el_MeGzZz | Ahmed Magdy | 1485559292 | 1079453431574736896 | https://twitter.com/el_MeGzZz/status/1079453431574736896 | 2018-12-30 19:05:28 | 1546196728 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Billiard Time \n#sports #sport #active #fit #billiards #billiards #ball #gametime #fun #game #games #crowd #fans #play #playing #player #field #green #grass #goal #action #win #winning… https://www.instagram.com/p/BsBb5raFjb7/?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Billiard Time <img alt="🎱" aria-label="Emoji: Billiards" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b1.png" title="Billiards"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="👌" aria-label="Emoji: Ok hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c.png" title="Ok hand sign"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sports?src=hash"><s>#</s><b>sports</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sport?src=hash"><s>#</s><b>sport</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/active?src=hash"><s>#</s><b>active</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fit?src=hash"><s>#</s><b>fit</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/billiards?src=hash"><s>#</s><b>billiards</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/billiards?src=hash"><s>#</s><b>billiards</b></a><img alt="🎱" aria-label="Emoji: Billiards" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b1.png" title="Billiards"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ball?src=hash"><s>#</s><b>ball</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/gametime?src=hash"><s>#</s><b>gametime</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fun?src=hash"><s>#</s><b>fun</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/game?src=hash"><s>#</s><b>game</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/games?src=hash"><s>#</s><b>games</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/crowd?src=hash"><s>#</s><b>crowd</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fans?src=hash"><s>#</s><b>fans</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/play?src=hash"><s>#</s><b>play</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/playing?src=hash"><s>#</s><b>playing</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/player?src=hash"><s>#</s><b>player</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/field?src=hash"><s>#</s><b>field</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/green?src=hash"><s>#</s><b>green</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/grass?src=hash"><s>#</s><b>grass</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/goal?src=hash"><s>#</s><b>goal</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/action?src=hash"><s>#</s><b>action</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/win?src=hash"><s>#</s><b>win</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/winning?src=hash"><s>#</s><b>winning</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsBb5raFjb7/?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej" dir="ltr" href="https://t.co/sHANLfw3ZX" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsBb5raFjb7/?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsBb5raFjb7/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=jcbdj5fs3mej</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
23879 | MatchaMacchiato | MatchaMacchiato | 60318266 | 948583220970442753 | https://twitter.com/MatchaMacchiato/status/948583220970442753 | 2018-01-03 15:53:58 | 1514994838 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #EgyptInForceTime ทุกที่ที่มีรามเสสที่2ก็จะมีเนเฟอตารี @ Luxor Temple https://www.instagram.com/p/BdfjkKbnBLs/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="th"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/EgyptInForceTime?src=hash"><s>#</s><b>EgyptInForceTime</b></a> ทุกที่ที่มีรามเสสที่2ก็จะมีเนเฟอตารี <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Luxor Temple <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdfjkKbnBLs/" dir="ltr" href="https://t.co/7uOMo8zdhf" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdfjkKbnBLs/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdfjkKbnBLs/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23896 | Mon3esh_Men3em | مُنعِِِش | 194379385 | 948474470326562821 | https://twitter.com/Mon3esh_Men3em/status/948474470326562821 | 2018-01-03 08:41:50 | 1514968910 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Time to say #Goodbye #Luxor @ Luxor International Airport https://www.instagram.com/p/BdeyHKulyuk/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Time to say <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Goodbye?src=hash"><s>#</s><b>Goodbye</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Luxor?src=hash"><s>#</s><b>Luxor</b></a> <img alt="✈️" aria-label="Emoji: Airplane" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2708.png" title="Airplane"/> @ Luxor International Airport <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdeyHKulyuk/" dir="ltr" href="https://t.co/wRUrqp08E1" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdeyHKulyuk/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdeyHKulyuk/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23902 | 7naw7 | حَنّوْ 🖤 | 895787629706452993 | 948435344860606464 | https://twitter.com/7naw7/status/948435344860606464 | 2018-01-03 06:06:21 | 1514959581 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | صباح الخير ..\nلضحايا المنبهات المزعجه\nللمكافحين المتخلين عن… https://www.instagram.com/p/Bdef5CgFbfnL8PcJtLL8E6hX5J_VLSWqg5mWsk0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">صباح الخير <img alt="🎀" aria-label="Emoji: Ribbon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f380.png" title="Ribbon"/> ..\nلضحايا المنبهات المزعجه\nللمكافحين المتخلين عن… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdef5CgFbfnL8PcJtLL8E6hX5J_VLSWqg5mWsk0/" dir="ltr" href="https://t.co/xWz7wnJXeU" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdef5CgFbfnL8PcJtLL8E6hX5J_VLSWqg5mWsk0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdef5CgFbfnL</span><span class="invisible">8PcJtLL8E6hX5J_VLSWqg5mWsk0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
23914 | MatchaMacchiato | MatchaMacchiato | 60318266 | 948283189092651016 | https://twitter.com/MatchaMacchiato/status/948283189092651016 | 2018-01-02 20:01:45 | 1514923305 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #EgyptInForceTime แฮปปี้!!!!!!!!!!!!!!!!!!!!! It's time for Felucca @ LUXOR . الأقــصــر https://www.instagram.com/p/BddbHwonrEM/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/EgyptInForceTime?src=hash"><s>#</s><b>EgyptInForceTime</b></a> แฮปปี้!!!!!!!!!!!!!!!!!!!!! It's time for Felucca<img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ LUXOR . الأقــصــر <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BddbHwonrEM/" dir="ltr" href="https://t.co/f42RI8VBew" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BddbHwonrEM/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BddbHwonrEM/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23919 | Omarinho5899 | Omarinho | 4457059222 | 948280536971149312 | https://twitter.com/Omarinho5899/status/948280536971149312 | 2018-01-02 19:51:12 | 1514922672 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Assiut https://www.instagram.com/p/BddZ6xPHRw4/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca"><img alt="⚽" aria-label="Emoji: Soccer ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26bd.png" title="Soccer ball"/><img alt="⚽" aria-label="Emoji: Soccer ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26bd.png" title="Soccer ball"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Assiut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BddZ6xPHRw4/" dir="ltr" href="https://t.co/xKO2Gz9Zco" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BddZ6xPHRw4/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BddZ6xPHRw4/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23934 | MatchaMacchiato | MatchaMacchiato | 60318266 | 948283189092651016 | https://twitter.com/MatchaMacchiato/status/948283189092651016 | 2018-01-02 20:01:45 | 1514923305 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #EgyptInForceTime แฮปปี้!!!!!!!!!!!!!!!!!!!!! It's time for Felucca @ LUXOR . الأقــصــر https://www.instagram.com/p/BddbHwonrEM/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/EgyptInForceTime?src=hash"><s>#</s><b>EgyptInForceTime</b></a> แฮปปี้!!!!!!!!!!!!!!!!!!!!! It's time for Felucca<img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ LUXOR . الأقــصــر <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BddbHwonrEM/" dir="ltr" href="https://t.co/f42RI8VBew" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BddbHwonrEM/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BddbHwonrEM/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23939 | Omarinho5899 | Omarinho | 4457059222 | 948280536971149312 | https://twitter.com/Omarinho5899/status/948280536971149312 | 2018-01-02 19:51:12 | 1514922672 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Assiut https://www.instagram.com/p/BddZ6xPHRw4/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca"><img alt="⚽" aria-label="Emoji: Soccer ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26bd.png" title="Soccer ball"/><img alt="⚽" aria-label="Emoji: Soccer ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26bd.png" title="Soccer ball"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Assiut <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BddZ6xPHRw4/" dir="ltr" href="https://t.co/xKO2Gz9Zco" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BddZ6xPHRw4/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BddZ6xPHRw4/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23955 | Mon3esh_Men3em | مُنعِِِش | 194379385 | 948217426277216257 | https://twitter.com/Mon3esh_Men3em/status/948217426277216257 | 2018-01-02 15:40:26 | 1514907626 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Welcome #2018 \n\nFirst Run from #Luxor \n#zayed_race #10KM #route #soon @ Luxor, Egypt https://www.instagram.com/p/Bdc9N2JFBft/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Welcome #2018 <img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/><img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/><img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/>\n\nFirst Run from <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Luxor?src=hash"><s>#</s><b>Luxor</b></a> <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/zayed_race?src=hash"><s>#</s><b>zayed_race</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/10KM?src=hash"><s>#</s><b>10KM</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/route?src=hash"><s>#</s><b>route</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/soon?src=hash"><s>#</s><b>soon</b></a> @ Luxor, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdc9N2JFBft/" dir="ltr" href="https://t.co/8VmYsKp3Cj" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdc9N2JFBft/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdc9N2JFBft/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 4.0 |
23961 | Mon3esh_Men3em | مُنعِِِش | 194379385 | 948182648589045760 | https://twitter.com/Mon3esh_Men3em/status/948182648589045760 | 2018-01-02 13:22:14 | 1514899334 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Route Measurement \n#zayed_Race #10KM #luxor @ Luxor, Egypt https://www.instagram.com/p/BdctZwqFfmM/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Route Measurement <img alt="👌" aria-label="Emoji: Ok hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c.png" title="Ok hand sign"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/zayed_Race?src=hash"><s>#</s><b>zayed_Race</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/10KM?src=hash"><s>#</s><b>10KM</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/luxor?src=hash"><s>#</s><b>luxor</b></a> <img alt="🇦🇪" aria-label="Emoji: Flag of United Arab Emirates" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1e6-1f1ea.png" title="Flag of United Arab Emirates"/> <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> @ Luxor, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdctZwqFfmM/" dir="ltr" href="https://t.co/bkyOpB4Iaz" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdctZwqFfmM/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdctZwqFfmM/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23965 | dahy_moustafa | Moustafa Dahy | 751118981919043584 | 948165941803790336 | https://twitter.com/dahy_moustafa/status/948165941803790336 | 2018-01-02 12:15:51 | 1514895351 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | معانا يااا رب @ Assiut University https://www.instagram.com/p/BdclzvrDO-f4jqZIEYrPqiCDBiv_Rv-6CXNGfU0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">معانا يااا رب <img alt="♥️" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥️" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/> @ Assiut University <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdclzvrDO-f4jqZIEYrPqiCDBiv_Rv-6CXNGfU0/" dir="ltr" href="https://t.co/WnvkinzcAF" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdclzvrDO-f4jqZIEYrPqiCDBiv_Rv-6CXNGfU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdclzvrDO-f4</span><span class="invisible">jqZIEYrPqiCDBiv_Rv-6CXNGfU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
23966 | Ma7moudghoniem | 🌺🌻بتاع صحافة واعلام 📺🎤📷 | 894680847995068416 | 948159397116698624 | https://twitter.com/Ma7moudghoniem/status/948159397116698624 | 2018-01-02 11:49:50 | 1514893790 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | اجعل لنفسك عمراً لا ينتهي\n..بأعمالك #الحسنة\n..بأخلاقك #الجميلة\n..بروعة… https://www.instagram.com/p/Bdci06yhkKX/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اجعل لنفسك عمراً لا ينتهي\n<img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/>..بأعمالك <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AD%D8%B3%D9%86%D8%A9?src=hash"><s>#</s><b>الحسنة</b></a>\n<img alt="🕊" aria-label="Emoji: Dove of peace" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f54a.png" title="Dove of peace"/>..بأخلاقك <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D8%AC%D9%85%D9%8A%D9%84%D8%A9?src=hash"><s>#</s><b>الجميلة</b></a>\n<img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/>..بروعة… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdci06yhkKX/" dir="ltr" href="https://t.co/y6LRcFYS96" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdci06yhkKX/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdci06yhkKX/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23972 | DanydelMar | Daniela del Mar | 75035059 | 948146376969465856 | https://twitter.com/DanydelMar/status/948146376969465856 | 2018-01-02 10:58:06 | 1514890686 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | La banda malandra Viajsr rompe reglas hahaha #japan #italia #spain #france #Mexico ! … https://www.instagram.com/p/Bdcc51-Drma/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">La banda malandra Viajsr rompe reglas hahaha <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/japan?src=hash"><s>#</s><b>japan</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/italia?src=hash"><s>#</s><b>italia</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/spain?src=hash"><s>#</s><b>spain</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/france?src=hash"><s>#</s><b>france</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Mexico?src=hash"><s>#</s><b>Mexico</b></a> ! <img alt="🇲🇽" aria-label="Emoji: Flag of Mexico" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1f2-1f1fd.png" title="Flag of Mexico"/><img alt="🙋🏻" aria-label="Emoji: Happy person raising one hand (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64b-1f3fb.png" title="Happy person raising one hand (light skin tone)"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdcc51-Drma/" dir="ltr" href="https://t.co/jNru9sIUEG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdcc51-Drma/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdcc51-Drma/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
23975 | RamyBayern | RamyBayern | 250910371 | 948141991342120960 | https://twitter.com/RamyBayern/status/948141991342120960 | 2018-01-02 10:40:41 | 1514889641 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Fayoum’s Graffiti \n#artist #street #graffitiart #design #streetphotography #picoftheday… https://www.instagram.com/p/Bdca6h5nFIB/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Fayoum’s Graffiti <img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😉" aria-label="Emoji: Winking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f609.png" title="Winking face"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/artist?src=hash"><s>#</s><b>artist</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/street?src=hash"><s>#</s><b>street</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/graffitiart?src=hash"><s>#</s><b>graffitiart</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/design?src=hash"><s>#</s><b>design</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/streetphotography?src=hash"><s>#</s><b>streetphotography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/picoftheday?src=hash"><s>#</s><b>picoftheday</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdca6h5nFIB/" dir="ltr" href="https://t.co/N37WCjy9NL" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdca6h5nFIB/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdca6h5nFIB/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
23977 | Joseflores669 | Jose Flores | 540299195 | 948129180801155072 | https://twitter.com/Joseflores669/status/948129180801155072 | 2018-01-02 09:49:46 | 1514886586 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Pórtate ‘18 en بنهوبص +18 https://www.instagram.com/p/BdcVFa7j6Adtl7UCj7L4galxL1bJSp7E-OM84o0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Pórtate ‘18 <img alt="💫" aria-label="Emoji: Dizzy symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4ab.png" title="Dizzy symbol"/> en بنهوبص +18 <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdcVFa7j6Adtl7UCj7L4galxL1bJSp7E-OM84o0/" dir="ltr" href="https://t.co/ZL243ueyC8" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdcVFa7j6Adtl7UCj7L4galxL1bJSp7E-OM84o0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdcVFa7j6Adt</span><span class="invisible">l7UCj7L4galxL1bJSp7E-OM84o0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
23979 | YasminH___ | Yasmin H | 350390900 | 948119348115378176 | https://twitter.com/YasminH___/status/948119348115378176 | 2018-01-02 09:10:42 | 1514884242 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Leaving this view today. Luxor you've been a dream. \n#theadventurecontinues… https://www.instagram.com/p/BdcQdHLHb_O/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Leaving this view today. Luxor you've been a dream. <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/theadventurecontinues?src=hash"><s>#</s><b>theadventurecontinues</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdcQdHLHb_O/" dir="ltr" href="https://t.co/VOwnUFo6Jv" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdcQdHLHb_O/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdcQdHLHb_O/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
23985 | DanydelMar | Daniela del Mar | 75035059 | 948073946452254720 | https://twitter.com/DanydelMar/status/948073946452254720 | 2018-01-02 06:10:17 | 1514873417 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Tráiganse su suéter porque hace un chingo de frío último día en luxor #luxor #egypt… https://www.instagram.com/p/Bdb7-Dcj8UA/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">Tráiganse su suéter porque hace un chingo de frío <img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/><img alt="🙋🏻" aria-label="Emoji: Happy person raising one hand (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64b-1f3fb.png" title="Happy person raising one hand (light skin tone)"/><img alt="💃🏽" aria-label="Emoji: Dancer (medium skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483-1f3fd.png" title="Dancer (medium skin tone)"/> último día en luxor <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/luxor?src=hash"><s>#</s><b>luxor</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdb7-Dcj8UA/" dir="ltr" href="https://t.co/L2GPvEP28u" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdb7-Dcj8UA/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdb7-Dcj8UA/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 2.0 |
23998 | JigsawPolice | المخلبي بن ذاعات | 804781261 | 947967091428208640 | https://twitter.com/JigsawPolice/status/947967091428208640 | 2018-01-01 23:05:41 | 1514847941 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #tbt #luxormuseum @ Luxor Museum https://www.instagram.com/p/BdbLYRujT4r/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/tbt?src=hash"><s>#</s><b>tbt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/luxormuseum?src=hash"><s>#</s><b>luxormuseum</b></a> <img alt="💖" aria-label="Emoji: Sparkling heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f496.png" title="Sparkling heart"/> @ Luxor Museum <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdbLYRujT4r/" dir="ltr" href="https://t.co/nEvXwfY8jF" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdbLYRujT4r/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdbLYRujT4r/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
24000 | Ali_Hellaly | Ali Hellaly | 294827838 | 947956950557392896 | https://twitter.com/Ali_Hellaly/status/947956950557392896 | 2018-01-01 22:25:23 | 1514845523 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | قاعد وحيد (@ Tekyat El Malek Farouq) https://www.swarmapp.com/c/kMR0Bc7vdVN | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">قاعد وحيد <img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/> (@ Tekyat El Malek Farouq) <a class="twitter-timeline-link" data-expanded-url="https://www.swarmapp.com/c/kMR0Bc7vdVN" dir="ltr" href="https://t.co/sdVCcKw7Hz" rel="nofollow noopener" target="_blank" title="https://www.swarmapp.com/c/kMR0Bc7vdVN"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">swarmapp.com/c/kMR0Bc7vdVN</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
24013 | mohamedshaheen_ | ■ WOLF | 273168907 | 947914237296463872 | https://twitter.com/mohamedshaheen_/status/947914237296463872 | 2018-01-01 19:35:40 | 1514835340 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Chillaxing #Gouna #2018 #newyear #elgounayachtclub @ El Gouna, Red Sea https://www.instagram.com/p/BdazWI6nY90/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Chillaxing <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Gouna?src=hash"><s>#</s><b>Gouna</b></a> #2018 <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/newyear?src=hash"><s>#</s><b>newyear</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/elgounayachtclub?src=hash"><s>#</s><b>elgounayachtclub</b></a> @ El Gouna, Red Sea <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdazWI6nY90/" dir="ltr" href="https://t.co/MzNVxTNRNA" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdazWI6nY90/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdazWI6nY90/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
24015 | mhmd3107429 | Mohamed Elking | 755311676115812352 | 947902294238081024 | https://twitter.com/mhmd3107429/status/947902294238081024 | 2018-01-01 18:48:12 | 1514832492 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Minya, Egypt https://www.instagram.com/p/Bdat6aqFRRRqq9cKWPiy42EAXa6NIS3-gTy8aU0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hu"><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/> @ Minya, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdat6aqFRRRqq9cKWPiy42EAXa6NIS3-gTy8aU0/" dir="ltr" href="https://t.co/GXKLaqCwBE" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdat6aqFRRRqq9cKWPiy42EAXa6NIS3-gTy8aU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdat6aqFRRRq</span><span class="invisible">q9cKWPiy42EAXa6NIS3-gTy8aU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
24018 | JigsawPolice | المخلبي بن ذاعات | 804781261 | 947967091428208640 | https://twitter.com/JigsawPolice/status/947967091428208640 | 2018-01-01 23:05:41 | 1514847941 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #tbt #luxormuseum @ Luxor Museum https://www.instagram.com/p/BdbLYRujT4r/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/tbt?src=hash"><s>#</s><b>tbt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/luxormuseum?src=hash"><s>#</s><b>luxormuseum</b></a> <img alt="💖" aria-label="Emoji: Sparkling heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f496.png" title="Sparkling heart"/> @ Luxor Museum <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdbLYRujT4r/" dir="ltr" href="https://t.co/nEvXwfY8jF" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdbLYRujT4r/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdbLYRujT4r/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
24020 | Ali_Hellaly | Ali Hellaly | 294827838 | 947956950557392896 | https://twitter.com/Ali_Hellaly/status/947956950557392896 | 2018-01-01 22:25:23 | 1514845523 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | قاعد وحيد (@ Tekyat El Malek Farouq) https://www.swarmapp.com/c/kMR0Bc7vdVN | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">قاعد وحيد <img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/> (@ Tekyat El Malek Farouq) <a class="twitter-timeline-link" data-expanded-url="https://www.swarmapp.com/c/kMR0Bc7vdVN" dir="ltr" href="https://t.co/sdVCcKw7Hz" rel="nofollow noopener" target="_blank" title="https://www.swarmapp.com/c/kMR0Bc7vdVN"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">swarmapp.com/c/kMR0Bc7vdVN</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
24033 | mohamedshaheen_ | ■ WOLF | 273168907 | 947914237296463872 | https://twitter.com/mohamedshaheen_/status/947914237296463872 | 2018-01-01 19:35:40 | 1514835340 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Chillaxing #Gouna #2018 #newyear #elgounayachtclub @ El Gouna, Red Sea https://www.instagram.com/p/BdazWI6nY90/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Chillaxing <img alt="✨" aria-label="Emoji: Sparkles" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2728.png" title="Sparkles"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Gouna?src=hash"><s>#</s><b>Gouna</b></a> #2018 <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/newyear?src=hash"><s>#</s><b>newyear</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/elgounayachtclub?src=hash"><s>#</s><b>elgounayachtclub</b></a> @ El Gouna, Red Sea <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdazWI6nY90/" dir="ltr" href="https://t.co/MzNVxTNRNA" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdazWI6nY90/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdazWI6nY90/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 1.0 |
24035 | mhmd3107429 | Mohamed Elking | 755311676115812352 | 947902294238081024 | https://twitter.com/mhmd3107429/status/947902294238081024 | 2018-01-01 18:48:12 | 1514832492 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Minya, Egypt https://www.instagram.com/p/Bdat6aqFRRRqq9cKWPiy42EAXa6NIS3-gTy8aU0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="hu"><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/> @ Minya, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdat6aqFRRRqq9cKWPiy42EAXa6NIS3-gTy8aU0/" dir="ltr" href="https://t.co/GXKLaqCwBE" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdat6aqFRRRqq9cKWPiy42EAXa6NIS3-gTy8aU0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdat6aqFRRRq</span><span class="invisible">q9cKWPiy42EAXa6NIS3-gTy8aU0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
24050 | EhabFaw14180233 | Ehab Fawzy | 3222490020 | 947869227662348289 | https://twitter.com/EhabFaw14180233/status/947869227662348289 | 2018-01-01 16:36:49 | 1514824609 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #اول_يوم_2018 \nبالنسبة ل2017 كانت بدايتها سودة .. فقدت فيها والدي… https://www.instagram.com/p/Bdae32gAhxVgQlHFycZX3RE0zbZgEbrz0dwR9A0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%88%D9%84_%D9%8A%D9%88%D9%85_2018?src=hash"><s>#</s><b>اول_يوم_2018</b></a> <img alt="👌🏼" aria-label="Emoji: Ok hand sign (medium light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c-1f3fc.png" title="Ok hand sign (medium light skin tone)"/>\nبالنسبة ل2017 كانت بدايتها سودة .. فقدت فيها والدي… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdae32gAhxVgQlHFycZX3RE0zbZgEbrz0dwR9A0/" dir="ltr" href="https://t.co/Ljp3NCSr34" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdae32gAhxVgQlHFycZX3RE0zbZgEbrz0dwR9A0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdae32gAhxVg</span><span class="invisible">QlHFycZX3RE0zbZgEbrz0dwR9A0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
24051 | Hooda5060 | Mahmoud Atef | 911912720651493376 | 947869205931741185 | https://twitter.com/Hooda5060/status/947869205931741185 | 2018-01-01 16:36:43 | 1514824603 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ El-Ghanayim Bahari, Asyut, Egypt https://www.instagram.com/p/Bdae3EMHezntjrEtzDYM_sUtqf8DGCmQKYVBRI0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in"><img alt="💪" aria-label="Emoji: Flexed biceps" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4aa.png" title="Flexed biceps"/><img alt="⚽" aria-label="Emoji: Soccer ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26bd.png" title="Soccer ball"/> @ El-Ghanayim Bahari, Asyut, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdae3EMHezntjrEtzDYM_sUtqf8DGCmQKYVBRI0/" dir="ltr" href="https://t.co/BjLAGlQRyX" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdae3EMHezntjrEtzDYM_sUtqf8DGCmQKYVBRI0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdae3EMHeznt</span><span class="invisible">jrEtzDYM_sUtqf8DGCmQKYVBRI0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
24055 | ahmedkhalifa__ | Ahmed Khalifa | 1240669326 | 947855593947230208 | https://twitter.com/ahmedkhalifa__/status/947855593947230208 | 2018-01-01 15:42:38 | 1514821358 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كل سنه وانتوا طيبين وبالف خير وسعادة ياارب كل سنه واحنا مع… https://www.instagram.com/p/BdaYrXgAFpEuoR-xbJpSWhQUjl_4sQspCyKuuc0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل سنه وانتوا طيبين وبالف خير وسعادة ياارب <img alt="👨" aria-label="Emoji: Man" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f468.png" title="Man"/><img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> كل سنه واحنا مع… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdaYrXgAFpEuoR-xbJpSWhQUjl_4sQspCyKuuc0/" dir="ltr" href="https://t.co/p5Cxyup9QK" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdaYrXgAFpEuoR-xbJpSWhQUjl_4sQspCyKuuc0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdaYrXgAFpEu</span><span class="invisible">oR-xbJpSWhQUjl_4sQspCyKuuc0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
24058 | yosifadam | يوسُف | 744679418 | 947850402766184449 | https://twitter.com/yosifadam/status/947850402766184449 | 2018-01-01 15:22:00 | 1514820120 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الشتا في الطور \n#تصويري @ El-Tor, Janub Sina', Egypt https://www.instagram.com/p/BdaWUOnBS-1zo_NUis3sr_Qe6KBJW10gggQ_LY0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">الشتا في الطور <img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%AA%D8%B5%D9%88%D9%8A%D8%B1%D9%8A?src=hash"><s>#</s><b>تصويري</b></a><img alt="📷" aria-label="Emoji: Camera" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4f7.png" title="Camera"/> @ El-Tor, Janub Sina', Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdaWUOnBS-1zo_NUis3sr_Qe6KBJW10gggQ_LY0/" dir="ltr" href="https://t.co/fPnyCg2AgB" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdaWUOnBS-1zo_NUis3sr_Qe6KBJW10gggQ_LY0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdaWUOnBS-1z</span><span class="invisible">o_NUis3sr_Qe6KBJW10gggQ_LY0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
24088 | omaryacine777 | O’Y 💙🇵🇸🦅 | 3358110305 | 947666962762616837 | https://twitter.com/omaryacine777/status/947666962762616837 | 2018-01-01 03:13:05 | 1514776385 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Happy new year everyone\nLet's continue to fly with our beautiful… https://www.instagram.com/p/BdZC5M_DMYr1aZuJ_cm3LhZXfXXOxqXMZx4iX00/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Happy new year everyone<img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/>\nLet's continue to fly with our beautiful… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdZC5M_DMYr1aZuJ_cm3LhZXfXXOxqXMZx4iX00/" dir="ltr" href="https://t.co/Io6n5gCs7V" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdZC5M_DMYr1aZuJ_cm3LhZXfXXOxqXMZx4iX00/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdZC5M_DMYr1</span><span class="invisible">aZuJ_cm3LhZXfXXOxqXMZx4iX00/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
24093 | mennaamahmoud66 | Menna Mahmoud | 2446491879 | 947618965739712514 | https://twitter.com/mennaamahmoud66/status/947618965739712514 | 2018-01-01 00:02:21 | 1514764941 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | لسه صاحيه ولاقيت مبعوتلى مسج طويله بزكريات حلوة مع شخصيه قريبه مني جدا الساعه 12 ومبسوطه جدا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لسه صاحيه ولاقيت مبعوتلى مسج طويله بزكريات حلوة مع شخصيه قريبه مني جدا الساعه 12 ومبسوطه جدا <img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/></p> | 1.0 |
5291 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
63 | Muostafasamy | Mostafa Samy | 229876169 | 1079676580958396417 | https://twitter.com/Muostafasamy/status/1079676580958396417 | 2018-12-31 09:52:10 | 1546249930 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Some of 2018 photos \n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n#memories #2018 #good #bye #art #mobile #photography #photo #camera #phone #architecture #night #nile #egypt #sunset #sunrise #summer #winter… https://www.instagram.com/p/BsDB6tVnPBv/?utm_source=ig_twitter_share&igshid=pgdoo1lglp1s … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Some of 2018 photos <img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/>\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/memories?src=hash"><s>#</s><b>memories</b></a> #2018 <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/good?src=hash"><s>#</s><b>good</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/bye?src=hash"><s>#</s><b>bye</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/art?src=hash"><s>#</s><b>art</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mobile?src=hash"><s>#</s><b>mobile</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photography?src=hash"><s>#</s><b>photography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photo?src=hash"><s>#</s><b>photo</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/camera?src=hash"><s>#</s><b>camera</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/phone?src=hash"><s>#</s><b>phone</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/architecture?src=hash"><s>#</s><b>architecture</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/night?src=hash"><s>#</s><b>night</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/nile?src=hash"><s>#</s><b>nile</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sunset?src=hash"><s>#</s><b>sunset</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sunrise?src=hash"><s>#</s><b>sunrise</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/summer?src=hash"><s>#</s><b>summer</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/winter?src=hash"><s>#</s><b>winter</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDB6tVnPBv/?utm_source=ig_twitter_share&igshid=pgdoo1lglp1s" dir="ltr" href="https://t.co/q4GcKOaHao" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDB6tVnPBv/?utm_source=ig_twitter_share&igshid=pgdoo1lglp1s"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDB6tVnPBv/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=pgdoo1lglp1s</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
64 | Muostafasamy | Mostafa Samy | 229876169 | 1079675566998077440 | https://twitter.com/Muostafasamy/status/1079675566998077440 | 2018-12-31 09:48:09 | 1546249689 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Some of 2018 photos \n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n#memories #2018 #good #bye #art #mobile #photography #photo #camera #phone #architecture #night #nile #egypt #sunset #sunrise #summer #winter… https://www.instagram.com/p/BsDBbaOHqIB/?utm_source=ig_twitter_share&igshid=e9u8iozi296k … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Some of 2018 photos <img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/>\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/memories?src=hash"><s>#</s><b>memories</b></a> #2018 <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/good?src=hash"><s>#</s><b>good</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/bye?src=hash"><s>#</s><b>bye</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/art?src=hash"><s>#</s><b>art</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mobile?src=hash"><s>#</s><b>mobile</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photography?src=hash"><s>#</s><b>photography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photo?src=hash"><s>#</s><b>photo</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/camera?src=hash"><s>#</s><b>camera</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/phone?src=hash"><s>#</s><b>phone</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/architecture?src=hash"><s>#</s><b>architecture</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/night?src=hash"><s>#</s><b>night</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/nile?src=hash"><s>#</s><b>nile</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sunset?src=hash"><s>#</s><b>sunset</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sunrise?src=hash"><s>#</s><b>sunrise</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/summer?src=hash"><s>#</s><b>summer</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/winter?src=hash"><s>#</s><b>winter</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDBbaOHqIB/?utm_source=ig_twitter_share&igshid=e9u8iozi296k" dir="ltr" href="https://t.co/M6V1DMjuxa" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDBbaOHqIB/?utm_source=ig_twitter_share&igshid=e9u8iozi296k"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDBbaOHqIB/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=e9u8iozi296k</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
65 | Muostafasamy | Mostafa Samy | 229876169 | 1079674739692515329 | https://twitter.com/Muostafasamy/status/1079674739692515329 | 2018-12-31 09:44:51 | 1546249491 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Some of 2018 photos \n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n#memories #2018 #good #bye #art #mobile #photography #photo #camera #phone #architecture #night #nile #egypt #sunset #sunrise #summer #winter… https://www.instagram.com/p/BsDBE-BHM0O/?utm_source=ig_twitter_share&igshid=6y7k5bzw2iig … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Some of 2018 photos <img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/>\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/memories?src=hash"><s>#</s><b>memories</b></a> #2018 <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/good?src=hash"><s>#</s><b>good</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/bye?src=hash"><s>#</s><b>bye</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/art?src=hash"><s>#</s><b>art</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mobile?src=hash"><s>#</s><b>mobile</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photography?src=hash"><s>#</s><b>photography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photo?src=hash"><s>#</s><b>photo</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/camera?src=hash"><s>#</s><b>camera</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/phone?src=hash"><s>#</s><b>phone</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/architecture?src=hash"><s>#</s><b>architecture</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/night?src=hash"><s>#</s><b>night</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/nile?src=hash"><s>#</s><b>nile</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sunset?src=hash"><s>#</s><b>sunset</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sunrise?src=hash"><s>#</s><b>sunrise</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/summer?src=hash"><s>#</s><b>summer</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/winter?src=hash"><s>#</s><b>winter</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsDBE-BHM0O/?utm_source=ig_twitter_share&igshid=6y7k5bzw2iig" dir="ltr" href="https://t.co/yYGkucQBqB" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsDBE-BHM0O/?utm_source=ig_twitter_share&igshid=6y7k5bzw2iig"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsDBE-BHM0O/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=6y7k5bzw2iig</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
66 | First_A135ENT | 1st | 247623779 | 1079663602062237697 | https://twitter.com/First_A135ENT/status/1079663602062237697 | 2018-12-31 09:00:36 | 1546246836 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | แท่งยาวๆแหลมๆ @ Temple of Karnak https://www.instagram.com/p/BsC8A-vlzBWVG2hvqoRglYFygqhP3C7tgSfC1Y0/?utm_source=ig_twitter_share&igshid=1qifpgxgzk2j7 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">แท่งยาวๆแหลมๆ<img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> @ Temple of Karnak <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsC8A-vlzBWVG2hvqoRglYFygqhP3C7tgSfC1Y0/?utm_source=ig_twitter_share&igshid=1qifpgxgzk2j7" dir="ltr" href="https://t.co/dMHGPn6WkG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsC8A-vlzBWVG2hvqoRglYFygqhP3C7tgSfC1Y0/?utm_source=ig_twitter_share&igshid=1qifpgxgzk2j7"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsC8A-vlzBWV</span><span class="invisible">G2hvqoRglYFygqhP3C7tgSfC1Y0/?utm_source=ig_twitter_share&igshid=1qifpgxgzk2j7</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
144 | TheAliveEarth | Alive Earth | 1015579117910151168 | 1079202978031157251 | https://twitter.com/TheAliveEarth/status/1079202978031157251 | 2018-12-30 02:30:15 | 1546137015 | 0 | 6 | 57 | 0 | NaN | NaN | NaN | (28.751286, 33.569214)pic.twitter.com/9k9tqcL4L9 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/> (28.751286, 33.569214)<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/9k9tqcL4L9">pic.twitter.com/9k9tqcL4L9</a></p> | -1.0 |
147 | m7med_N3em0 | Ebn(Ñ3êm_🇳.🇪.🇲.🇴🔱☯) | 942729036559798272 | 1079178966844534784 | https://twitter.com/m7med_N3em0/status/1079178966844534784 | 2018-12-30 00:54:50 | 1546131290 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | *المبدأ ثابت يا صابت يا خابت * @ Lamera patisserie https://www.instagram.com/p/Br_fiNtnO2vYMAcm9o-ArcwMn7QFhow11lBVOM0/?utm_source=ig_twitter_share&igshid=p9fb7nevvptc … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">*المبدأ ثابت يا صابت يا خابت <img alt="⛔" aria-label="Emoji: No entry" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26d4.png" title="No entry"/><img alt="⚔" aria-label="Emoji: Crossed swords" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2694.png" title="Crossed swords"/><img alt="🔥" aria-label="Emoji: Fire" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f525.png" title="Fire"/>* @ Lamera patisserie <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Br_fiNtnO2vYMAcm9o-ArcwMn7QFhow11lBVOM0/?utm_source=ig_twitter_share&igshid=p9fb7nevvptc" dir="ltr" href="https://t.co/SAOUZZD8KX" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Br_fiNtnO2vYMAcm9o-ArcwMn7QFhow11lBVOM0/?utm_source=ig_twitter_share&igshid=p9fb7nevvptc"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Br_fiNtnO2vY</span><span class="invisible">MAcm9o-ArcwMn7QFhow11lBVOM0/?utm_source=ig_twitter_share&igshid=p9fb7nevvptc</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
206 | mostafa57093687 | mostafa mahmoud | 1029604002512687109 | 1078941103712284672 | https://twitter.com/mostafa57093687/status/1078941103712284672 | 2018-12-29 09:09:39 | 1546074579 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وٌمًنِ کْتٌـر أّلَلَيِّ جّـوٌأّيِّأّ \nکْلَ مًأّ أّبًصّـ فُـيِّ مًرأّيِّأّ \nأّقُوٌلَ عٌلَيِّأّ أّلَطِلَأّقُ بًطلَ \n#elkabooos | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وٌمًنِ کْتٌـر أّلَلَيِّ جّـوٌأّيِّأّ <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/>\nکْلَ مًأّ أّبًصّـ فُـيِّ مًرأّيِّأّ <img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/> \nأّقُوٌلَ عٌلَيِّأّ أّلَطِلَأّقُ بًطل<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/>َ \n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/elkabooos?src=hash"><s>#</s><b>elkabooos</b></a></p> | -1.0 |
340 | HorseRidingHrg | HorseTrips Hurghada #HorseTrips_Hurghada | 284590315 | 1078002305067347969 | https://twitter.com/HorseRidingHrg/status/1078002305067347969 | 2018-12-26 18:59:12 | 1545850752 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Уроки верховой езды на конюшне HorseTrips Hurghada #HorseTrips_Hurghada\nПредварительная запись\n+201286281068 viber, waths app\n+201122918064 viber, waths app \n#horselessons\n#horseriding… https://www.instagram.com/p/Br3IM8Lg-ee/?utm_source=ig_twitter_share&igshid=1lcogh85gnswj … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Уроки верховой езды на конюшне HorseTrips Hurghada <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HorseTrips_Hurghada?src=hash"><s>#</s><b>HorseTrips_Hurghada</b></a>\nПредварительная запись\n+201286281068 viber, waths app\n+201122918064 viber, waths app \n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/horselessons?src=hash"><s>#</s><b>horselessons</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/horseriding?src=hash"><s>#</s><b>horseriding</b></a><img alt="🐴" aria-label="Emoji: Horse face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f434.png" title="Horse face"/>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Br3IM8Lg-ee/?utm_source=ig_twitter_share&igshid=1lcogh85gnswj" dir="ltr" href="https://t.co/1Rk15Z9you" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Br3IM8Lg-ee/?utm_source=ig_twitter_share&igshid=1lcogh85gnswj"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Br3IM8Lg-ee/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1lcogh85gnswj</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
360 | HorseRidingHrg | HorseTrips Hurghada #HorseTrips_Hurghada | 284590315 | 1078002305067347969 | https://twitter.com/HorseRidingHrg/status/1078002305067347969 | 2018-12-26 18:59:12 | 1545850752 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Уроки верховой езды на конюшне HorseTrips Hurghada #HorseTrips_Hurghada\nПредварительная запись\n+201286281068 viber, waths app\n+201122918064 viber, waths app \n#horselessons\n#horseriding… https://www.instagram.com/p/Br3IM8Lg-ee/?utm_source=ig_twitter_share&igshid=1lcogh85gnswj … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Уроки верховой езды на конюшне HorseTrips Hurghada <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HorseTrips_Hurghada?src=hash"><s>#</s><b>HorseTrips_Hurghada</b></a>\nПредварительная запись\n+201286281068 viber, waths app\n+201122918064 viber, waths app \n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/horselessons?src=hash"><s>#</s><b>horselessons</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/horseriding?src=hash"><s>#</s><b>horseriding</b></a><img alt="🐴" aria-label="Emoji: Horse face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f434.png" title="Horse face"/>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Br3IM8Lg-ee/?utm_source=ig_twitter_share&igshid=1lcogh85gnswj" dir="ltr" href="https://t.co/1Rk15Z9you" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Br3IM8Lg-ee/?utm_source=ig_twitter_share&igshid=1lcogh85gnswj"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Br3IM8Lg-ee/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1lcogh85gnswj</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
615 | ShadyElgebaly2 | S H D A D ⚠💀 | 904940732 | 1076550588953960455 | https://twitter.com/ShadyElgebaly2/status/1076550588953960455 | 2018-12-22 18:50:36 | 1545504636 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | نحن متواضعون بدون ضعف وأقوياء بدون غرور. @ Tamiya, Al Fayyum, Egypt https://www.instagram.com/p/Brs0PtTlW92/?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نحن متواضعون بدون ضعف <img alt="⚠" aria-label="Emoji: Warning sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26a0.png" title="Warning sign"/> وأقوياء بدون غرور<img alt="🔥" aria-label="Emoji: Fire" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f525.png" title="Fire"/>. @ Tamiya, Al Fayyum, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Brs0PtTlW92/?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64" dir="ltr" href="https://t.co/p4l1CVdGFM" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Brs0PtTlW92/?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Brs0PtTlW92/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
635 | ShadyElgebaly2 | S H D A D ⚠💀 | 904940732 | 1076550588953960455 | https://twitter.com/ShadyElgebaly2/status/1076550588953960455 | 2018-12-22 18:50:36 | 1545504636 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | نحن متواضعون بدون ضعف وأقوياء بدون غرور. @ Tamiya, Al Fayyum, Egypt https://www.instagram.com/p/Brs0PtTlW92/?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نحن متواضعون بدون ضعف <img alt="⚠" aria-label="Emoji: Warning sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26a0.png" title="Warning sign"/> وأقوياء بدون غرور<img alt="🔥" aria-label="Emoji: Fire" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f525.png" title="Fire"/>. @ Tamiya, Al Fayyum, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Brs0PtTlW92/?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64" dir="ltr" href="https://t.co/p4l1CVdGFM" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Brs0PtTlW92/?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Brs0PtTlW92/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1hcwbtdcjfg64</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
673 | mostafa57093687 | mostafa mahmoud | 1029604002512687109 | 1076180778378280960 | https://twitter.com/mostafa57093687/status/1076180778378280960 | 2018-12-21 18:21:06 | 1545416466 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يسئلونك عن الوداع : فقل ذهاب الورح \nوبقاء الجسد بدون حياة \nالواد ابو عيون عسلى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يسئلونك عن الوداع : فقل ذهاب الورح \nوبقاء الجسد بدون حياة <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/> \nالواد ابو عيون عسلى</p> | -1.0 |
693 | mostafa57093687 | mostafa mahmoud | 1029604002512687109 | 1076180778378280960 | https://twitter.com/mostafa57093687/status/1076180778378280960 | 2018-12-21 18:21:06 | 1545416466 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يسئلونك عن الوداع : فقل ذهاب الورح \nوبقاء الجسد بدون حياة \nالواد ابو عيون عسلى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يسئلونك عن الوداع : فقل ذهاب الورح \nوبقاء الجسد بدون حياة <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/> \nالواد ابو عيون عسلى</p> | -1.0 |
770 | ChristianTheMUA | Christian Escobar | 224049414 | 1075657959450046464 | https://twitter.com/ChristianTheMUA/status/1075657959450046464 | 2018-12-20 07:43:36 | 1545291816 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Visiting the temple of the first and only woman Pharaoh in Egypt, Hatshepsut \nLuxor, Egypt @ Temple of Hatshepsut معبد حتشبسوت https://www.instagram.com/p/BrmedEjgC8s/?utm_source=ig_twitter_share&igshid=hubc8gbmq2qx … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Visiting the temple of the first and only woman Pharaoh in Egypt, Hatshepsut \n<img alt="📍" aria-label="Emoji: Round pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cd.png" title="Round pushpin"/>Luxor, Egypt <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> @ Temple of Hatshepsut معبد حتشبسوت <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BrmedEjgC8s/?utm_source=ig_twitter_share&igshid=hubc8gbmq2qx" dir="ltr" href="https://t.co/Y97aA8KZma" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BrmedEjgC8s/?utm_source=ig_twitter_share&igshid=hubc8gbmq2qx"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BrmedEjgC8s/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=hubc8gbmq2qx</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
835 | tasneemalryan | قلبي أبيض | 962155156942016512 | 1075226415094792193 | https://twitter.com/tasneemalryan/status/1075226415094792193 | 2018-12-19 03:08:48 | 1545188928 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | البِنت إللي اتعودت تتِحمل المسئولية !\n\n1 - هتلاقي طلباتها قليلة جداا ، عشان هي متعودتش تُطلب !\n2 - مُش هتِستني منِك مُساعدة عشان هي اتعودت تعمِل حاجتها… https://www.instagram.com/p/BrjaOANlsFyEwkt62bHLJw2V7w2-O55ggW_iRs0/?utm_source=ig_twitter_share&igshid=1ifma4h20yu3n … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">البِنت إللي اتعودت تتِحمل المسئولية <img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/> !\n\n1 - هتلاقي طلباتها قليلة جداا ، عشان هي متعودتش تُطلب !\n2 - مُش هتِستني منِك مُساعدة عشان هي اتعودت تعمِل حاجتها… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BrjaOANlsFyEwkt62bHLJw2V7w2-O55ggW_iRs0/?utm_source=ig_twitter_share&igshid=1ifma4h20yu3n" dir="ltr" href="https://t.co/ZblqTHpMk8" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BrjaOANlsFyEwkt62bHLJw2V7w2-O55ggW_iRs0/?utm_source=ig_twitter_share&igshid=1ifma4h20yu3n"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BrjaOANlsFyE</span><span class="invisible">wkt62bHLJw2V7w2-O55ggW_iRs0/?utm_source=ig_twitter_share&igshid=1ifma4h20yu3n</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
910 | MuuDiiSaaD | ✨ | 900522523221250048 | 1074729957220409344 | https://twitter.com/MuuDiiSaaD/status/1074729957220409344 | 2018-12-17 18:16:03 | 1545070563 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | كل حاجة سابتك هتجيلك تاني وهترفضها مش علشان ترد كرامتك لأ بس علشان لهفتك عليها راحت .. pic.twitter.com/QLtnO6yevt | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل حاجة سابتك هتجيلك تاني وهترفضها مش علشان ترد كرامتك لأ بس علشان لهفتك عليها راحت .. <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/QLtnO6yevt">pic.twitter.com/QLtnO6yevt</a></p> | -1.0 |
918 | tasneemalryan | قلبي أبيض | 962155156942016512 | 1074691548187627520 | https://twitter.com/tasneemalryan/status/1074691548187627520 | 2018-12-17 15:43:26 | 1545061406 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يعني واحنا صغيرين شوفنا الكبار بيتجوزوا \nواحنا كبار دلوقتي بنشوف الصغار هما اللي بيتجوزوا !!\nطيب واحنا فاصل اعلاني في النص ولا اي نظامنا بالضبط @ El… https://www.instagram.com/p/Brfm8hYBAx7EUPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يعني واحنا صغيرين شوفنا الكبار بيتجوزوا \nواحنا كبار دلوقتي بنشوف الصغار هما اللي بيتجوزوا !!<img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/>\nطيب واحنا فاصل اعلاني في النص ولا اي نظامنا بالضبط <img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/> @ El… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Brfm8hYBAx7EUPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9" dir="ltr" href="https://t.co/bRRYdsxvGk" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Brfm8hYBAx7EUPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Brfm8hYBAx7E</span><span class="invisible">UPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
930 | MuuDiiSaaD | ✨ | 900522523221250048 | 1074729957220409344 | https://twitter.com/MuuDiiSaaD/status/1074729957220409344 | 2018-12-17 18:16:03 | 1545070563 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | كل حاجة سابتك هتجيلك تاني وهترفضها مش علشان ترد كرامتك لأ بس علشان لهفتك عليها راحت .. pic.twitter.com/QLtnO6yevt | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل حاجة سابتك هتجيلك تاني وهترفضها مش علشان ترد كرامتك لأ بس علشان لهفتك عليها راحت .. <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/QLtnO6yevt">pic.twitter.com/QLtnO6yevt</a></p> | -1.0 |
938 | tasneemalryan | قلبي أبيض | 962155156942016512 | 1074691548187627520 | https://twitter.com/tasneemalryan/status/1074691548187627520 | 2018-12-17 15:43:26 | 1545061406 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | يعني واحنا صغيرين شوفنا الكبار بيتجوزوا \nواحنا كبار دلوقتي بنشوف الصغار هما اللي بيتجوزوا !!\nطيب واحنا فاصل اعلاني في النص ولا اي نظامنا بالضبط @ El… https://www.instagram.com/p/Brfm8hYBAx7EUPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">يعني واحنا صغيرين شوفنا الكبار بيتجوزوا \nواحنا كبار دلوقتي بنشوف الصغار هما اللي بيتجوزوا !!<img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/>\nطيب واحنا فاصل اعلاني في النص ولا اي نظامنا بالضبط <img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/><img alt="😥" aria-label="Emoji: Disappointed but relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f625.png" title="Disappointed but relieved face"/> @ El… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Brfm8hYBAx7EUPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9" dir="ltr" href="https://t.co/bRRYdsxvGk" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Brfm8hYBAx7EUPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Brfm8hYBAx7E</span><span class="invisible">UPZV7JmtxtPaOjv98CIXTa-cz80/?utm_source=ig_twitter_share&igshid=1jxpj1o70gip9</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1163 | AhmedRede20 | Ahmed Reda | 1072969371981676550 | 1073322117054251008 | https://twitter.com/AhmedRede20/status/1073322117054251008 | 2018-12-13 21:01:48 | 1544734908 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | https://twitter.com/overthinking_11/status/1063144798733897728 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="4" lang="und"><img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/><img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/overthinking_11/status/1063144798733897728" dir="ltr" href="https://t.co/rhVevTDdwy" rel="nofollow noopener" target="_blank" title="https://twitter.com/overthinking_11/status/1063144798733897728"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/overthinking_1</span><span class="invisible">1/status/1063144798733897728</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1183 | AhmedRede20 | Ahmed Reda | 1072969371981676550 | 1073322117054251008 | https://twitter.com/AhmedRede20/status/1073322117054251008 | 2018-12-13 21:01:48 | 1544734908 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | https://twitter.com/overthinking_11/status/1063144798733897728 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="4" lang="und"><img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/><img alt="😐" aria-label="Emoji: Neutral face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f610.png" title="Neutral face"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/overthinking_11/status/1063144798733897728" dir="ltr" href="https://t.co/rhVevTDdwy" rel="nofollow noopener" target="_blank" title="https://twitter.com/overthinking_11/status/1063144798733897728"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/overthinking_1</span><span class="invisible">1/status/1063144798733897728</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1427 | sookkaarraa | 👑❤SookkAArraa❤👑 | 4049256868 | 1071888419830276099 | https://twitter.com/sookkaarraa/status/1071888419830276099 | 2018-12-09 22:04:48 | 1544393088 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | حلاوتها وجمالها ومذكراتها وورقها @ Benha University https://www.instagram.com/p/BrLsRcOFI1Mp8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حلاوتها وجمالها ومذكراتها وورقها <img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/> @ Benha University <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BrLsRcOFI1Mp8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f" dir="ltr" href="https://t.co/5TxQUKkeEa" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BrLsRcOFI1Mp8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BrLsRcOFI1Mp</span><span class="invisible">8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1447 | sookkaarraa | 👑❤SookkAArraa❤👑 | 4049256868 | 1071888419830276099 | https://twitter.com/sookkaarraa/status/1071888419830276099 | 2018-12-09 22:04:48 | 1544393088 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | حلاوتها وجمالها ومذكراتها وورقها @ Benha University https://www.instagram.com/p/BrLsRcOFI1Mp8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حلاوتها وجمالها ومذكراتها وورقها <img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/> @ Benha University <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BrLsRcOFI1Mp8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f" dir="ltr" href="https://t.co/5TxQUKkeEa" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BrLsRcOFI1Mp8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BrLsRcOFI1Mp</span><span class="invisible">8RVfXmEHm7enR4zMQnqnSgRglE0/?utm_source=ig_twitter_share&igshid=2wogbxwlgu4f</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1469 | iKaRiim | كراميلا | 780164442 | 1071745175834095618 | https://twitter.com/iKaRiim/status/1071745175834095618 | 2018-12-09 12:35:36 | 1544358936 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | Morning @ Etisalat Mini-Franchise Luxor https://www.instagram.com/p/BrKrHtRHU2W70TsiedDDPhhxFzjQzkQ0HXmUAI0/?utm_source=ig_twitter_share&igshid=1fsv2x7cu8n8c … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><img alt="😴" aria-label="Emoji: Sleeping face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f634.png" title="Sleeping face"/><img alt="😴" aria-label="Emoji: Sleeping face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f634.png" title="Sleeping face"/>Morning @ Etisalat Mini-Franchise Luxor <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BrKrHtRHU2W70TsiedDDPhhxFzjQzkQ0HXmUAI0/?utm_source=ig_twitter_share&igshid=1fsv2x7cu8n8c" dir="ltr" href="https://t.co/cIycblzjJd" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BrKrHtRHU2W70TsiedDDPhhxFzjQzkQ0HXmUAI0/?utm_source=ig_twitter_share&igshid=1fsv2x7cu8n8c"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BrKrHtRHU2W7</span><span class="invisible">0TsiedDDPhhxFzjQzkQ0HXmUAI0/?utm_source=ig_twitter_share&igshid=1fsv2x7cu8n8c</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1720 | Ahmmed_Saieed | Ahmmed Saieed | 747588926248980482 | 1070220135011627008 | https://twitter.com/Ahmmed_Saieed/status/1070220135011627008 | 2018-12-05 07:35:38 | 1543995338 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كن غريباً ؛ لا اححـد يقترب منـك\nولا تقترب من احد فانتَ في زمـن مُصاب بِمرض العلاقـات للتسلـيّـه || | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كن غريباً ؛ لا اححـد يقترب منـك<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>\nولا تقترب من احد فانتَ في زمـن مُصاب بِمرض العلاقـات للتسلـيّـه |<img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/>|</p> | -3.0 |
1749 | travelbloggerES | i am travelblogger | 2883931558 | 1069996752588103680 | https://twitter.com/travelbloggerES/status/1069996752588103680 | 2018-12-04 16:48:00 | 1543942080 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #iamtb .\n#TravelRepost alohaa_jana in ...\n المغرب / Morocco / Marruecos .\n・\n Golden hour with these endless desert views PRICELESS! Have you ever climbed up the tallest dunes in… https://www.instagram.com/p/Bq-QBO1HRoX/?utm_source=ig_twitter_share&igshid=y2gvlou0e36z … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/iamtb?src=hash"><s>#</s><b>iamtb</b></a> <img alt="🛫" aria-label="Emoji: Airplane departure" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6eb.png" title="Airplane departure"/> .\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/TravelRepost?src=hash"><s>#</s><b>TravelRepost</b></a> alohaa_jana in ...\n<img alt="📍" aria-label="Emoji: Round pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cd.png" title="Round pushpin"/><img alt="🇲🇦" aria-label="Emoji: Flag of Morocco" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1f2-1f1e6.png" title="Flag of Morocco"/> المغرب / Morocco / Marruecos .\n・\n<img alt="🇬🇧" aria-label="Emoji: Flag of United Kingdom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ec-1f1e7.png" title="Flag of United Kingdom"/> Golden hour with these endless desert views <img alt="🐪" aria-label="Emoji: Dromedary camel" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f42a.png" title="Dromedary camel"/><img alt="🌵" aria-label="Emoji: Cactus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f335.png" title="Cactus"/>PRICELESS! Have you ever climbed up the tallest dunes in… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bq-QBO1HRoX/?utm_source=ig_twitter_share&igshid=y2gvlou0e36z" dir="ltr" href="https://t.co/KU95YgDLyS" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bq-QBO1HRoX/?utm_source=ig_twitter_share&igshid=y2gvlou0e36z"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bq-QBO1HRoX/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=y2gvlou0e36z</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1769 | travelbloggerES | i am travelblogger | 2883931558 | 1069996752588103680 | https://twitter.com/travelbloggerES/status/1069996752588103680 | 2018-12-04 16:48:00 | 1543942080 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #iamtb .\n#TravelRepost alohaa_jana in ...\n المغرب / Morocco / Marruecos .\n・\n Golden hour with these endless desert views PRICELESS! Have you ever climbed up the tallest dunes in… https://www.instagram.com/p/Bq-QBO1HRoX/?utm_source=ig_twitter_share&igshid=y2gvlou0e36z … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/iamtb?src=hash"><s>#</s><b>iamtb</b></a> <img alt="🛫" aria-label="Emoji: Airplane departure" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6eb.png" title="Airplane departure"/> .\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/TravelRepost?src=hash"><s>#</s><b>TravelRepost</b></a> alohaa_jana in ...\n<img alt="📍" aria-label="Emoji: Round pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cd.png" title="Round pushpin"/><img alt="🇲🇦" aria-label="Emoji: Flag of Morocco" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1f2-1f1e6.png" title="Flag of Morocco"/> المغرب / Morocco / Marruecos .\n・\n<img alt="🇬🇧" aria-label="Emoji: Flag of United Kingdom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ec-1f1e7.png" title="Flag of United Kingdom"/> Golden hour with these endless desert views <img alt="🐪" aria-label="Emoji: Dromedary camel" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f42a.png" title="Dromedary camel"/><img alt="🌵" aria-label="Emoji: Cactus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f335.png" title="Cactus"/>PRICELESS! Have you ever climbed up the tallest dunes in… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bq-QBO1HRoX/?utm_source=ig_twitter_share&igshid=y2gvlou0e36z" dir="ltr" href="https://t.co/KU95YgDLyS" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bq-QBO1HRoX/?utm_source=ig_twitter_share&igshid=y2gvlou0e36z"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bq-QBO1HRoX/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=y2gvlou0e36z</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1778 | MoatazMOOC | Moataz 🇩🇪🇧🇪🇳🇱🐋 | 445831390 | 1069953759587889152 | https://twitter.com/MoatazMOOC/status/1069953759587889152 | 2018-12-04 13:57:09 | 1543931829 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | أنا وحشني جداً حمام السباحة \nصورة من الأرشيف مع صديق البلبطة الوحيد اللي كان بيونسني و ينزل يعوم معايا حتى لم الجو برد و الماية بقيت ساقعة @ Assiut University https://www.instagram.com/p/Bq98fjmgW8Y/?utm_source=ig_twitter_share&igshid=1rkamko4v0he5 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أنا وحشني جداً حمام السباحة <img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>\nصورة من الأرشيف مع صديق البلبطة الوحيد اللي كان بيونسني و ينزل يعوم معايا حتى لم الجو برد و الماية بقيت ساقعة <img alt="❄" aria-label="Emoji: Snowflake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2744.png" title="Snowflake"/><img alt="❄" aria-label="Emoji: Snowflake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2744.png" title="Snowflake"/> @ Assiut University <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bq98fjmgW8Y/?utm_source=ig_twitter_share&igshid=1rkamko4v0he5" dir="ltr" href="https://t.co/qVl9FyGwrA" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bq98fjmgW8Y/?utm_source=ig_twitter_share&igshid=1rkamko4v0he5"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bq98fjmgW8Y/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1rkamko4v0he5</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1789 | momen_elameen | momen elameen | 2884755831 | 1069878092745838592 | https://twitter.com/momen_elameen/status/1069878092745838592 | 2018-12-04 08:56:29 | 1543913789 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | At Work @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt https://www.instagram.com/p/Bq9aFLDn7vG/?utm_source=ig_twitter_share&igshid=1ejtfa952o486 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="da">At Work <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/> <img alt="👷♂️" aria-label="Emoji: Male construction worker" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f477-200d-2642-fe0f.png" title="Male construction worker"/> @ Ra'S Gharib, Al Bahr Al Ahmar, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bq9aFLDn7vG/?utm_source=ig_twitter_share&igshid=1ejtfa952o486" dir="ltr" href="https://t.co/taoVSCfHoH" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bq9aFLDn7vG/?utm_source=ig_twitter_share&igshid=1ejtfa952o486"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bq9aFLDn7vG/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1ejtfa952o486</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1917 | AhmedMe87574398 | احمد النايب | 919664473643855872 | 1069002202327465987 | https://twitter.com/AhmedMe87574398/status/1069002202327465987 | 2018-12-01 22:56:00 | 1543704960 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | انهرده عيد ميلادى مافيش كل سنة وانت طيب ابولمااارpic.twitter.com/G907OSxGai | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انهرده عيد ميلادى مافيش كل سنة وانت طيب ابولمااار<img alt="🙍" aria-label="Emoji: Person frowning" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64d.png" title="Person frowning"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/G907OSxGai">pic.twitter.com/G907OSxGai</a></p> | -1.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
22523 | lovly_y | thourya osama | 1116221658 | 955475191177666563 | https://twitter.com/lovly_y/status/955475191177666563 | 2018-01-22 16:20:12 | 1516638012 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | #زعيم_تويتر_فلورز_شاورما | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="🔙" aria-label="Emoji: Back with leftwards arrow above" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f519.png" title="Back with leftwards arrow above"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%B2%D8%B9%D9%8A%D9%85_%D8%AA%D9%88%D9%8A%D8%AA%D8%B1_%D9%81%D9%84%D9%88%D8%B1%D8%B2_%D8%B4%D8%A7%D9%88%D8%B1%D9%85%D8%A7?src=hash"><s>#</s><b>زعيم_تويتر_فلورز_شاورما</b></a></p> | -1.0 |
22670 | lovly_y | thourya osama | 1116221658 | 954676785496625152 | https://twitter.com/lovly_y/status/954676785496625152 | 2018-01-20 11:27:37 | 1516447657 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | واتأكد اني مش موجودة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">واتأكد اني مش موجودة <img alt="☹" aria-label="Emoji: Frowning face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2639.png" title="Frowning face"/></p> | -1.0 |
22682 | amira_abdo18 | Amira Abd El Wahed | 1229217114 | 954607851967864832 | https://twitter.com/amira_abdo18/status/954607851967864832 | 2018-01-20 06:53:42 | 1516431222 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | دعواتكم @ مستشفي الطور العام https://www.instagram.com/p/BeKXP54l0i7/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">دعواتكم <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/> @ مستشفي الطور العام <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeKXP54l0i7/" dir="ltr" href="https://t.co/z04YValgJX" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeKXP54l0i7/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeKXP54l0i7/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22807 | cassmckool | Corporate Cassie | 24288389 | 953894973660979200 | https://twitter.com/cassmckool/status/953894973660979200 | 2018-01-18 07:40:58 | 1516261258 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | It’s fucking hot #sunset #kicks #europe #nike #vscocam @ Sahara Desert https://www.instagram.com/p/BeFTEZXlhfs/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">It’s fucking hot <img alt="🙎🏻♀️" aria-label="Emoji: Woman pouting (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64e-1f3fb-200d-2640-fe0f.png" title="Woman pouting (light skin tone)"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sunset?src=hash"><s>#</s><b>sunset</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/kicks?src=hash"><s>#</s><b>kicks</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/europe?src=hash"><s>#</s><b>europe</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/nike?src=hash"><s>#</s><b>nike</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vscocam?src=hash"><s>#</s><b>vscocam</b></a> @ Sahara Desert <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeFTEZXlhfs/" dir="ltr" href="https://t.co/2tLIG8qYTG" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeFTEZXlhfs/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeFTEZXlhfs/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22824 | Omarinho5899 | Omarinho | 4457059222 | 953758077395881985 | https://twitter.com/Omarinho5899/status/953758077395881985 | 2018-01-17 22:37:00 | 1516228620 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وداعاً يا من احببتنى في كرة القدم \nوداعاً المتعة ً\nوداعاً الساحر \nوداعاً رونالدينيو \nGoodbye,… https://www.instagram.com/p/BeEU0UtHYVn/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وداعاً يا من احببتنى في كرة القدم \nوداعاً المتعة ً\nوداعاً الساحر \nوداعاً رونالدينيو <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/>\nGoodbye,… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeEU0UtHYVn/" dir="ltr" href="https://t.co/yDUHFt6NLq" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeEU0UtHYVn/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeEU0UtHYVn/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22828 | florafiorio | arya stark mochileira | 64478402 | 953727443017269248 | https://twitter.com/florafiorio/status/953727443017269248 | 2018-01-17 20:35:16 | 1516221316 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Deserto Branco em الصحراء البيضاء White Desert https://www.instagram.com/p/BeEG4jcFCwO/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Deserto Branco <img alt="🌵" aria-label="Emoji: Cactus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f335.png" title="Cactus"/><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> em الصحراء البيضاء White Desert <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeEG4jcFCwO/" dir="ltr" href="https://t.co/bXRoEBKti3" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeEG4jcFCwO/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeEG4jcFCwO/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22844 | Omarinho5899 | Omarinho | 4457059222 | 953758077395881985 | https://twitter.com/Omarinho5899/status/953758077395881985 | 2018-01-17 22:37:00 | 1516228620 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وداعاً يا من احببتنى في كرة القدم \nوداعاً المتعة ً\nوداعاً الساحر \nوداعاً رونالدينيو \nGoodbye,… https://www.instagram.com/p/BeEU0UtHYVn/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وداعاً يا من احببتنى في كرة القدم \nوداعاً المتعة ً\nوداعاً الساحر \nوداعاً رونالدينيو <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/>\nGoodbye,… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeEU0UtHYVn/" dir="ltr" href="https://t.co/yDUHFt6NLq" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeEU0UtHYVn/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeEU0UtHYVn/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22848 | florafiorio | arya stark mochileira | 64478402 | 953727443017269248 | https://twitter.com/florafiorio/status/953727443017269248 | 2018-01-17 20:35:16 | 1516221316 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Deserto Branco em الصحراء البيضاء White Desert https://www.instagram.com/p/BeEG4jcFCwO/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Deserto Branco <img alt="🌵" aria-label="Emoji: Cactus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f335.png" title="Cactus"/><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> em الصحراء البيضاء White Desert <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeEG4jcFCwO/" dir="ltr" href="https://t.co/bXRoEBKti3" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeEG4jcFCwO/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeEG4jcFCwO/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22890 | ALMAZATY_74 | jo | 909519700677267456 | 953423332313063424 | https://twitter.com/ALMAZATY_74/status/953423332313063424 | 2018-01-17 00:26:50 | 1516148810 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كيلو الكلام بشلن وجرام الفعل بملايين ♤♤ @ Girga https://www.instagram.com/p/BeB8cYwlpxGo4jY90ll-1D_4aJMdPdETdS7i-w0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كيلو الكلام بشلن وجرام الفعل بملايين ♤♤<img alt="🔞" aria-label="Emoji: No one under eighteen symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f51e.png" title="No one under eighteen symbol"/> @ Girga <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeB8cYwlpxGo4jY90ll-1D_4aJMdPdETdS7i-w0/" dir="ltr" href="https://t.co/UfnAMbWpi3" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeB8cYwlpxGo4jY90ll-1D_4aJMdPdETdS7i-w0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeB8cYwlpxGo</span><span class="invisible">4jY90ll-1D_4aJMdPdETdS7i-w0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
22891 | DianeKroe | Diane Kroe | 153087575 | 953402972310065152 | https://twitter.com/DianeKroe/status/953402972310065152 | 2018-01-16 23:05:56 | 1516143956 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | We’ve had lots of ladies asking how the Butterfly Wrap works on a curvy figure Luckily our… https://www.instagram.com/p/BeBzUHtgWGK/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">We’ve had lots of ladies asking how the Butterfly Wrap works on a curvy figure <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> Luckily our… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeBzUHtgWGK/" dir="ltr" href="https://t.co/XxYRGyoYCQ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeBzUHtgWGK/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeBzUHtgWGK/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22911 | DianeKroe | Diane Kroe | 153087575 | 953402972310065152 | https://twitter.com/DianeKroe/status/953402972310065152 | 2018-01-16 23:05:56 | 1516143956 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | We’ve had lots of ladies asking how the Butterfly Wrap works on a curvy figure Luckily our… https://www.instagram.com/p/BeBzUHtgWGK/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">We’ve had lots of ladies asking how the Butterfly Wrap works on a curvy figure <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/> Luckily our… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BeBzUHtgWGK/" dir="ltr" href="https://t.co/XxYRGyoYCQ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BeBzUHtgWGK/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BeBzUHtgWGK/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
22945 | shibabe_h | ばべ | 586033496 | 953264007397412864 | https://twitter.com/shibabe_h/status/953264007397412864 | 2018-01-16 13:53:44 | 1516110824 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | .\n.\n動画\n.\nエジプトの砂漠の上でキャンプしたときの動画\n.\n.\n#movie #sahara\n#white #desert\n.\n#cairo… Africa/Cairohttps://www.instagram.com/p/BeA0IAylG2s/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">.\n.\n動画\n.\nエジプトの砂漠の上でキャンプしたときの動画<img alt="❗" aria-label="Emoji: Red exclamation mark symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2757.png" title="Red exclamation mark symbol"/>\n.\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/movie?src=hash"><s>#</s><b>movie</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sahara?src=hash"><s>#</s><b>sahara</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/white?src=hash"><s>#</s><b>white</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/desert?src=hash"><s>#</s><b>desert</b></a>\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/cairo?src=hash"><s>#</s><b>cairo</b></a>… Africa/Cairohttps://www.instagram.com/p/BeA0IAylG2s/</p> | -1.0 |
23110 | Shreeffathy2 | Shreeffathy | 952092642803900416 | 952222190782513152 | https://twitter.com/Shreeffathy2/status/952222190782513152 | 2018-01-13 16:53:56 | 1515862436 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | وعسي ان تكرهو شيأن وهوا خيرن لكم pic.twitter.com/fwiPEtALW2 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وعسي ان تكرهو شيأن وهوا خيرن لكم <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/fwiPEtALW2">pic.twitter.com/fwiPEtALW2</a></p> | -1.0 |
23119 | khaledayad55 | Pharaoh Egypt | 396106999 | 952185419432591361 | https://twitter.com/khaledayad55/status/952185419432591361 | 2018-01-13 14:27:49 | 1515853669 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I do not trust anyone. Even if he is close to me. But with you everything changed.\n#friends… https://www.instagram.com/p/Bd5Jp1VgvD-/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I do not trust anyone. Even if he is close to me. But with you everything changed<img alt="🚚" aria-label="Emoji: Delivery truck" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f69a.png" title="Delivery truck"/><img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/>.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/friends?src=hash"><s>#</s><b>friends</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bd5Jp1VgvD-/" dir="ltr" href="https://t.co/f7VJG3jzna" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bd5Jp1VgvD-/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bd5Jp1VgvD-/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
23130 | Shreeffathy2 | Shreeffathy | 952092642803900416 | 952222190782513152 | https://twitter.com/Shreeffathy2/status/952222190782513152 | 2018-01-13 16:53:56 | 1515862436 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | وعسي ان تكرهو شيأن وهوا خيرن لكم pic.twitter.com/fwiPEtALW2 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وعسي ان تكرهو شيأن وهوا خيرن لكم <img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><img alt="🙈" aria-label="Emoji: See-no-evil monkey" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f648.png" title="See-no-evil monkey"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/fwiPEtALW2">pic.twitter.com/fwiPEtALW2</a></p> | -1.0 |
23139 | khaledayad55 | Pharaoh Egypt | 396106999 | 952185419432591361 | https://twitter.com/khaledayad55/status/952185419432591361 | 2018-01-13 14:27:49 | 1515853669 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I do not trust anyone. Even if he is close to me. But with you everything changed.\n#friends… https://www.instagram.com/p/Bd5Jp1VgvD-/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I do not trust anyone. Even if he is close to me. But with you everything changed<img alt="🚚" aria-label="Emoji: Delivery truck" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f69a.png" title="Delivery truck"/><img alt="📌" aria-label="Emoji: Pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cc.png" title="Pushpin"/>.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/friends?src=hash"><s>#</s><b>friends</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bd5Jp1VgvD-/" dir="ltr" href="https://t.co/f7VJG3jzna" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bd5Jp1VgvD-/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bd5Jp1VgvD-/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
23210 | EhabFaw14180233 | Ehab Fawzy | 3222490020 | 951790491481161728 | https://twitter.com/EhabFaw14180233/status/951790491481161728 | 2018-01-12 12:18:31 | 1515759511 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | "طلعت من الفصل التاني كمية معلومات رهيبة " \n#sociolingustics @… https://www.instagram.com/p/Bd2WD6mApVGBEeKVkn1NP1Js2OB4WDebOAza5c0/ … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">"طلعت من الفصل التاني كمية معلومات رهيبة " <img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/><img alt="🤧" aria-label="Emoji: Sneezing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f927.png" title="Sneezing face"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="✋🏼" aria-label="Emoji: Raised hand (medium light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b-1f3fc.png" title="Raised hand (medium light skin tone)"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sociolingustics?src=hash"><s>#</s><b>sociolingustics</b></a> @… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bd2WD6mApVGBEeKVkn1NP1Js2OB4WDebOAza5c0/" dir="ltr" href="https://t.co/EcETrzo6qL" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bd2WD6mApVGBEeKVkn1NP1Js2OB4WDebOAza5c0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bd2WD6mApVGB</span><span class="invisible">EeKVkn1NP1Js2OB4WDebOAza5c0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
23238 | cm_mila | Mila Celestrino | 59232833 | 951640855194013697 | https://twitter.com/cm_mila/status/951640855194013697 | 2018-01-12 02:23:55 | 1515723835 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I guess it's never too late for a #tbt . Just found it on my stuff... its my birthday and I… https://www.instagram.com/p/Bd1R5SolHJp/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> I guess it's never too late for a <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/tbt?src=hash"><s>#</s><b>tbt</b></a> . <img alt="😬" aria-label="Emoji: Grimacing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62c.png" title="Grimacing face"/>Just found it on my stuff... its my birthday and I… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bd1R5SolHJp/" dir="ltr" href="https://t.co/hCZUxPVMhq" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bd1R5SolHJp/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bd1R5SolHJp/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
23372 | oMf3L1MJVajsbdO | s̷a̷y̷e̷d̷ m̷a̷b̷r̷u̷k̷ | 946829760453279744 | 951033981318909952 | https://twitter.com/oMf3L1MJVajsbdO/status/951033981318909952 | 2018-01-10 10:12:25 | 1515579145 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | جرّبت أحساس إنّك تكلّم حد كل يوم وتبقي عارف تفاصيل حياته ويومه، وفجأه مَتبقاش عارف عنِّه حاجه\nهفضل اشيل ف قلبي و اسكت \nلحد ما الدقه الي بتنبض تسكت \nلا بنا حلم ولا بنا وعد مجرد اتنين عرفو بعض | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">جرّبت أحساس إنّك تكلّم حد كل يوم وتبقي عارف تفاصيل حياته ويومه، وفجأه مَتبقاش عارف عنِّه حاجه<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>\nهفضل اشيل ف قلبي و اسكت <img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/>\nلحد ما الدقه الي بتنبض تسكت <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>\nلا بنا حلم ولا بنا وعد مجرد اتنين عرفو بعض<img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -3.0 |
23454 | marcuskael | Marcus Ribeiro | 28123014 | 950412838002184192 | https://twitter.com/marcuskael/status/950412838002184192 | 2018-01-08 17:04:13 | 1515431053 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | O maior obelisco 29 metros de granito Realizando um sonho… https://www.instagram.com/p/BdsjkrrFUo_jTJFeyD5VEf6o2gqa7aaIkM5QCo0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pt">O maior obelisco <img alt="🙀" aria-label="Emoji: Weary cat face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f640.png" title="Weary cat face"/> 29 metros de granito <img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/><img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/><img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/><img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/> Realizando um sonho… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdsjkrrFUo_jTJFeyD5VEf6o2gqa7aaIkM5QCo0/" dir="ltr" href="https://t.co/hlZpNBVXPx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdsjkrrFUo_jTJFeyD5VEf6o2gqa7aaIkM5QCo0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdsjkrrFUo_j</span><span class="invisible">TJFeyD5VEf6o2gqa7aaIkM5QCo0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
23474 | marcuskael | Marcus Ribeiro | 28123014 | 950412838002184192 | https://twitter.com/marcuskael/status/950412838002184192 | 2018-01-08 17:04:13 | 1515431053 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | O maior obelisco 29 metros de granito Realizando um sonho… https://www.instagram.com/p/BdsjkrrFUo_jTJFeyD5VEf6o2gqa7aaIkM5QCo0/ … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pt">O maior obelisco <img alt="🙀" aria-label="Emoji: Weary cat face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f640.png" title="Weary cat face"/> 29 metros de granito <img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/><img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/><img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/><img alt="😲" aria-label="Emoji: Astonished face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f632.png" title="Astonished face"/> Realizando um sonho… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdsjkrrFUo_jTJFeyD5VEf6o2gqa7aaIkM5QCo0/" dir="ltr" href="https://t.co/hlZpNBVXPx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdsjkrrFUo_jTJFeyD5VEf6o2gqa7aaIkM5QCo0/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdsjkrrFUo_j</span><span class="invisible">TJFeyD5VEf6o2gqa7aaIkM5QCo0/</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
23657 | M3hmoud_B3dran | Eng/ MåHmøűđ Bãđŕāń | 361509029 | 949621322979708929 | https://twitter.com/M3hmoud_B3dran/status/949621322979708929 | 2018-01-06 12:39:01 | 1515242341 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Nida, Suhaj, Egypt https://www.instagram.com/p/Bdm7o1zj6mx/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><span data-original-codepoint="U+fe0f"></span> @ Nida, Suhaj, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdm7o1zj6mx/" dir="ltr" href="https://t.co/7RSBLOn7cU" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdm7o1zj6mx/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdm7o1zj6mx/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
23682 | AhmedKazpan | Ahmed kazpan | 949071913703428096 | 949419447151931392 | https://twitter.com/AhmedKazpan/status/949419447151931392 | 2018-01-05 23:16:50 | 1515194210 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | آلعين مـآتعلآشـ عن آلحآجب آعفيفي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">آلعين مـآتعلآشـ عن آلحآجب آعفيفي<img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
23702 | AhmedKazpan | Ahmed kazpan | 949071913703428096 | 949419447151931392 | https://twitter.com/AhmedKazpan/status/949419447151931392 | 2018-01-05 23:16:50 | 1515194210 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | آلعين مـآتعلآشـ عن آلحآجب آعفيفي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">آلعين مـآتعلآشـ عن آلحآجب آعفيفي<img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/></p> | -1.0 |
23754 | NahedEng | eng nahed | 949126256045404160 | 949135560815210496 | https://twitter.com/NahedEng/status/949135560815210496 | 2018-01-05 04:28:46 | 1515126526 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | " نحن اللذان لا تجمعنا صورة، ولا طريق." | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">" نحن اللذان لا تجمعنا صورة، ولا طريق."<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
23829 | M3hmoud_B3dran | Eng/ MåHmøűđ Bãđŕāń | 361509029 | 948766870148173825 | https://twitter.com/M3hmoud_B3dran/status/948766870148173825 | 2018-01-04 04:03:43 | 1515038623 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ Nida, Suhaj, Egypt https://www.instagram.com/p/Bdg3E_VjEcN/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="🙁" aria-label="Emoji: Slightly frowning face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f641.png" title="Slightly frowning face"/> @ Nida, Suhaj, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bdg3E_VjEcN/" dir="ltr" href="https://t.co/ZcfZWRgahk" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bdg3E_VjEcN/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bdg3E_VjEcN/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
23842 | alexlima17799 | Lima | 2855783751 | 948656024856166401 | https://twitter.com/alexlima17799/status/948656024856166401 | 2018-01-03 20:43:16 | 1515012196 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Just a little throwback em LUXOR . الأقــصــر https://www.instagram.com/p/BdgEqrJgg_l/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">Just a little throwback <img alt="🔙" aria-label="Emoji: Back with leftwards arrow above" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f519.png" title="Back with leftwards arrow above"/> em LUXOR . الأقــصــر <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdgEqrJgg_l/" dir="ltr" href="https://t.co/CdNGgM35Uv" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdgEqrJgg_l/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdgEqrJgg_l/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
23862 | alexlima17799 | Lima | 2855783751 | 948656024856166401 | https://twitter.com/alexlima17799/status/948656024856166401 | 2018-01-03 20:43:16 | 1515012196 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Just a little throwback em LUXOR . الأقــصــر https://www.instagram.com/p/BdgEqrJgg_l/ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">Just a little throwback <img alt="🔙" aria-label="Emoji: Back with leftwards arrow above" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f519.png" title="Back with leftwards arrow above"/> em LUXOR . الأقــصــر <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdgEqrJgg_l/" dir="ltr" href="https://t.co/CdNGgM35Uv" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdgEqrJgg_l/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdgEqrJgg_l/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
24081 | hessenbondok | Hussein Bondok | 323836082 | 947711882508603392 | https://twitter.com/hessenbondok/status/947711882508603392 | 2018-01-01 06:11:35 | 1514787095 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | هو فى ايه؟ @ كنيسة الشهيد العظيم مار جرجس ببلوط https://www.instagram.com/p/BdZWfjUgXFx/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هو فى ايه؟<img alt="👾" aria-label="Emoji: Alien monster" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f47e.png" title="Alien monster"/> @ كنيسة الشهيد العظيم مار جرجس ببلوط <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdZWfjUgXFx/" dir="ltr" href="https://t.co/Sh0DYBwWZP" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdZWfjUgXFx/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdZWfjUgXFx/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
24082 | hessenbondok | Hussein Bondok | 323836082 | 947710061962506240 | https://twitter.com/hessenbondok/status/947710061962506240 | 2018-01-01 06:04:21 | 1514786661 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | هو فى ايه؟ @ دار أبناء الكنيسة الإنجيلية باسيوط - سنتر الأولاد https://www.instagram.com/p/BdZWfjUgXFx/ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هو فى ايه؟<img alt="👾" aria-label="Emoji: Alien monster" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f47e.png" title="Alien monster"/> @ دار أبناء الكنيسة الإنجيلية باسيوط - سنتر الأولاد <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BdZWfjUgXFx/" dir="ltr" href="https://t.co/Sh0DYBwWZP" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BdZWfjUgXFx/"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BdZWfjUgXFx/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | -1.0 |
481 rows × 17 columns
egypt tweets/egypt_tweets_2019.csv - 1086986 tweets
Hashtag | Count | |
---|---|---|
0 | #NewProfilePic | 1336 |
1 | #egypt | 797 |
2 | #ﷺ | 636 |
3 | #عاجل_تحذير_ونذير_لجميع_البشر | 602 |
4 | #Quran | 589 |
5 | #TotalAFCON2019 | 534 |
6 | # | 479 |
7 | #np | 469 |
8 | #Egypt | 441 |
9 | #SaudiCapturesISISLeaderrr | 394 |
10 | #صورة_ملف_شخصي_جديدة | 388 |
11 | #المسيح_الكذاب_واخبار_البعث_الاول | 388 |
12 | #Hadith | 386 |
13 | #luxor | 373 |
14 | #bOwn | 343 |
15 | #Anghami | 339 |
16 | #NowPlaying | 335 |
17 | #FootballTogether | 334 |
18 | #علوم_طبيه_ترجع | 300 |
19 | #JeddahWorldFesttt | 292 |
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
10924 | kullanicisminiz | Çok Haklısın Betülcüm | 1109808438933114882 | 1154080572362412041 | https://twitter.com/kullanicisminiz/status/1154080572362412041 | 2019-07-24 17:27:04 | 1563989224 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | sjshsjja sorarlar abi, bende derim ki içimdeki asi feminist kız öyle diyor | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tr">sjshsjja sorarlar abi, bende derim ki içimdeki asi feminist kız öyle diyor</p> | 0.0 |
18132 | j_daneils | Ζεύς | 889552016468566018 | 1153967370010071041 | https://twitter.com/j_daneils/status/1153967370010071041 | 2019-07-24 09:57:15 | 1563962235 | 0 | 1 | 2 | 0 | NaN | NaN | NaN | Feminists : ولاد ؟ يعني ايه ولاد انا معرفش حاجة بالاسم دهhttps://twitter.com/NaadaMostafaa/status/1153477328091144193 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">Feminists : ولاد ؟ يعني ايه ولاد انا معرفش حاجة بالاسم ده<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/NaadaMostafaa/status/1153477328091144193" dir="ltr" href="https://t.co/ZRJoZ9s2u9" rel="nofollow noopener" target="_blank" title="https://twitter.com/NaadaMostafaa/status/1153477328091144193"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/NaadaMostafaa/</span><span class="invisible">status/1153477328091144193</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
34813 | Ibrahim_m__i | Dr. Awesome🎓 | 752480820 | 1153696728257667072 | https://twitter.com/Ibrahim_m__i/status/1153696728257667072 | 2019-07-23 16:01:49 | 1563897709 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | These women stars don't know single bit of truth. They are so poisoned by feeling of feminism that they just go for the side of women and not the truth. \nThey can never accept that there are girls who absolutely wrongly accuse someone for money. \nBetter play football not law.https://twitter.com/alexmorgan13/status/1153520034683076608 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="4" lang="en">These women stars don't know single bit of truth. They are so poisoned by feeling of feminism that they just go for the side of women and not the truth. \nThey can never accept that there are girls who absolutely wrongly accuse someone for money. \nBetter play football not law.<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/alexmorgan13/status/1153520034683076608" dir="ltr" href="https://t.co/nhJPLawfya" rel="nofollow noopener" target="_blank" title="https://twitter.com/alexmorgan13/status/1153520034683076608"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/alexmorgan13/s</span><span class="invisible">tatus/1153520034683076608</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
163707 | ahmed_zezo777 | زيزو 7⃣ | 767531394293694464 | 1151663387002200065 | https://twitter.com/ahmed_zezo777/status/1151663387002200065 | 2019-07-18 01:22:02 | 1563412922 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | قرار هيغير كتير هيخلي المرأه تلخد حريتها ده شيئ feminist المفروض تشجعيه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">قرار هيغير كتير هيخلي المرأه تلخد حريتها ده شيئ feminist المفروض تشجعيه <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
193422 | NanoEmad6 | Rana | 843431163775668225 | 1151231984909393921 | https://twitter.com/NanoEmad6/status/1151231984909393921 | 2019-07-16 20:47:48 | 1563310068 | 1 | 0 | 2 | 0 | NaN | NaN | NaN | الكلب عنده وفاء اكتر من البني آدمhttps://twitter.com/urfavfeministt/status/1151157006562222082 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">الكلب عنده وفاء اكتر من البني آدم<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/urfavfeministt/status/1151157006562222082" dir="ltr" href="https://t.co/LhtX6lwuB9" rel="nofollow noopener" target="_blank" title="https://twitter.com/urfavfeministt/status/1151157006562222082"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/urfavfeministt</span><span class="invisible">/status/1151157006562222082</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
238891 | Shroukmu7ammad | ⛔ | 882042177639129088 | 1150498850630754305 | https://twitter.com/Shroukmu7ammad/status/1150498850630754305 | 2019-07-14 20:14:35 | 1563135275 | 0 | 0 | 6 | 0 | NaN | NaN | NaN | يلهوي قفشوا من القهوة امال لو قالها اعمليلي اكل هيعملو ايه \nهناك فرق احبابي بين الfeminism والهطلhttps://twitter.com/Abdelrahmanouf_/status/1150167563772583936 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">يلهوي قفشوا من القهوة امال لو قالها اعمليلي اكل هيعملو ايه<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> \nهناك فرق احبابي بين الfeminism والهطل<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/Abdelrahmanouf_/status/1150167563772583936" dir="ltr" href="https://t.co/Ot0IYkQEXu" rel="nofollow noopener" target="_blank" title="https://twitter.com/Abdelrahmanouf_/status/1150167563772583936"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/Abdelrahmanouf</span><span class="invisible">_/status/1150167563772583936</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
240735 | urfavfeministt | أنا ثورة أنتو عورة | 1106536339246379010 | 1150474557167460352 | https://twitter.com/urfavfeministt/status/1150474557167460352 | 2019-07-14 18:38:03 | 1563129483 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | جدًا حزين الثريد دهhttps://twitter.com/YeFeministVoice/status/1150324624107954176 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">جدًا حزين الثريد ده<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/YeFeministVoice/status/1150324624107954176" dir="ltr" href="https://t.co/3xbSEu0k4w" rel="nofollow noopener" target="_blank" title="https://twitter.com/YeFeministVoice/status/1150324624107954176"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/YeFeministVoic</span><span class="invisible">e/status/1150324624107954176</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
255639 | nako_official12 | المعلم ناكو | 1108452370650943489 | 1150209417390022661 | https://twitter.com/nako_official12/status/1150209417390022661 | 2019-07-14 01:04:29 | 1563066269 | 0 | 1 | 4 | 0 | NaN | NaN | NaN | فعلا الحوار ده بقي مهين جدا لأى ست وحرمانها من حقوقها سواء كانت حقوق شرعيه أو اجتماعيةhttps://twitter.com/urfavfeministt/status/1150206830943096832 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">فعلا الحوار ده بقي مهين جدا لأى ست وحرمانها من حقوقها سواء كانت حقوق شرعيه أو اجتماعية<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/urfavfeministt/status/1150206830943096832" dir="ltr" href="https://t.co/QvFC1CH8az" rel="nofollow noopener" target="_blank" title="https://twitter.com/urfavfeministt/status/1150206830943096832"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/urfavfeministt</span><span class="invisible">/status/1150206830943096832</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
272914 | omerkarabay24 | ömer karabay | 1354604330 | 1150000592053579778 | https://twitter.com/omerkarabay24/status/1150000592053579778 | 2019-07-13 11:14:41 | 1563016481 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Onu yapmadınız, bunu yapmadınız, olanlarda hiç bir sorumluluğunuz yok... söylediğiniz şeyleri söyleyen feminist grup/birey fazlasıyla var. hakkaten siz niye varsınız? Olmasanız bu ülke ne kaybeder? | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tr">Onu yapmadınız, bunu yapmadınız, olanlarda hiç bir sorumluluğunuz yok... söylediğiniz şeyleri söyleyen feminist grup/birey fazlasıyla var. hakkaten siz niye varsınız? Olmasanız bu ülke ne kaybeder?</p> | 0.0 |
302033 | MaimahmoudMahm1 | mai. Mahmoud. | 1128122702626271234 | 1149382096626094080 | https://twitter.com/MaimahmoudMahm1/status/1149382096626094080 | 2019-07-11 18:17:00 | 1562869020 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | https://twitter.com/urfavfeministt/status/1149320777055051776 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="4" lang="und"><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/urfavfeministt/status/1149320777055051776" dir="ltr" href="https://t.co/uEWHrybtrv" rel="nofollow noopener" target="_blank" title="https://twitter.com/urfavfeministt/status/1149320777055051776"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/urfavfeministt</span><span class="invisible">/status/1149320777055051776</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
307182 | dareenassim | dareen | 708258984986349568 | 1149310967349727232 | https://twitter.com/dareenassim/status/1149310967349727232 | 2019-07-11 13:34:22 | 1562852062 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | نناه عشان كانت بتشوفنى وانا بحل المشاكل بالحق كانت بتقولى انت لازم تبقى اول قاضيه شكلك كداhttps://twitter.com/urfavfeministt/status/1149151038022266880 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">نناه عشان كانت بتشوفنى وانا بحل المشاكل بالحق كانت بتقولى انت لازم تبقى اول قاضيه شكلك كدا<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/urfavfeministt/status/1149151038022266880" dir="ltr" href="https://t.co/XoIeEH9Qbo" rel="nofollow noopener" target="_blank" title="https://twitter.com/urfavfeministt/status/1149151038022266880"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/urfavfeministt</span><span class="invisible">/status/1149151038022266880</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
357848 | Nada06233015 | NaDaa | 1052307967461212160 | 1148243167579430912 | https://twitter.com/Nada06233015/status/1148243167579430912 | 2019-07-08 14:51:19 | 1562597479 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Feminism is: =\n\nNot: > | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Feminism is: <img alt="👩" aria-label="Emoji: Woman" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f469.png" title="Woman"/>=<img alt="👨" aria-label="Emoji: Man" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f468.png" title="Man"/>\n\nNot: <img alt="👩" aria-label="Emoji: Woman" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f469.png" title="Woman"/>><img alt="👨" aria-label="Emoji: Man" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f468.png" title="Man"/></p> | 1.0 |
362780 | sara_atefk | سارسورااا | 979680136734879744 | 1148159324012843008 | https://twitter.com/sara_atefk/status/1148159324012843008 | 2019-07-08 09:18:09 | 1562577489 | 2 | 0 | 17 | 0 | NaN | NaN | NaN | سمعت فيديو قبل ما انام عن ال feminism ومصطفي صحاني علشان اعمله فطار و حقوق المرأه قامت جوايا وفضلت ازعقله واقوله ربنا اداك ايدي زي ليه متعملش لنفسك واخدته فتحت التلاجه وقولته البيض اهو اكسره وافطر قالي انتي مجنونه وسابني ومشي وتقريبا ماما هتيجي تعمل مني بطاطس محمره | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">سمعت فيديو قبل ما انام عن ال feminism ومصطفي صحاني علشان اعمله فطار و حقوق المرأه قامت جوايا وفضلت ازعقله واقوله ربنا اداك ايدي زي ليه متعملش لنفسك واخدته فتحت التلاجه وقولته البيض اهو اكسره وافطر قالي انتي مجنونه وسابني ومشي وتقريبا ماما هتيجي تعمل مني بطاطس محمره<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="🤦♀️" aria-label="Emoji: Woman facepalming" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f926-200d-2640-fe0f.png" title="Woman facepalming"/></p> | 1.0 |
399098 | ranademad | Ranademad | 1144198525414268928 | 1147614077134475264 | https://twitter.com/ranademad/status/1147614077134475264 | 2019-07-06 21:11:32 | 1562447492 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | وانا جدااا لاني احنا مش مهتمين بالاساس هنهتم بالكره @urfavfeministt | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وانا جدااا لاني احنا مش مهتمين بالاساس هنهتم بالكره <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="1106536339246379010" dir="ltr" href="/urfavfeministt"><s>@</s><b>urfavfeministt</b></a></p> | 0.0 |
418677 | ZeinaKorayem_ | Z’ᴋᴏʀᴀyᴇᴍ | 905828879998341122 | 1147304369567784960 | https://twitter.com/ZeinaKorayem_/status/1147304369567784960 | 2019-07-06 00:40:52 | 1562373652 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | @vxoiid \n-lowkey iconic outfits\n-soft \n-feminist bathroom debates \n-funny \n-lowkey savage bardo\n-Dr Ali | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="2749608628" dir="ltr" href="/vxoiid"><s>@</s><b>vxoiid</b></a> \n-lowkey iconic outfits\n-soft \n-feminist bathroom debates \n-funny \n-lowkey savage bardo\n-Dr Ali</p> | 0.0 |
433334 | ismaeloo_4 | K♞NIGHT | 2585777845 | 1147126761882365952 | https://twitter.com/ismaeloo_4/status/1147126761882365952 | 2019-07-05 12:55:07 | 1562331307 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الصوره دي كومنت علي بوست بعنوان (لا لتبرير الاغتصاب) لصفحه Yemeni feminist voice\nحقيقي شعب خنازير pic.twitter.com/vR2fWbN3Ia | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الصوره دي كومنت علي بوست بعنوان (لا لتبرير الاغتصاب) لصفحه Yemeni feminist voice\nحقيقي شعب خنازير <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/vR2fWbN3Ia">pic.twitter.com/vR2fWbN3Ia</a></p> | 0.0 |
434009 | hellenshinne | Ellen Shinne | 219675718 | 1147118701608439808 | https://twitter.com/hellenshinne/status/1147118701608439808 | 2019-07-05 12:23:05 | 1562329385 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Pensando aqui se esta imagem é legal para uma capa de cd ou para biografia do livro? \n#ensaiofeminino #ensaiobiografico #capadecd #escritora #ensaiofotograficofeminino #ensaiofotografico #sbtmecontrata… https://www.instagram.com/p/BziPDOVJMN9/?igshid=1b5nqkyxw8sw3 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="pt">Pensando aqui se esta imagem é legal para uma capa de cd ou para biografia do livro? <img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/><img alt="💽" aria-label="Emoji: Minidisc" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4bd.png" title="Minidisc"/><img alt="📸" aria-label="Emoji: Camera with flash" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4f8.png" title="Camera with flash"/><img alt="📙" aria-label="Emoji: Orange book" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4d9.png" title="Orange book"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ensaiofeminino?src=hash"><s>#</s><b>ensaiofeminino</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ensaiobiografico?src=hash"><s>#</s><b>ensaiobiografico</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/capadecd?src=hash"><s>#</s><b>capadecd</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/escritora?src=hash"><s>#</s><b>escritora</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ensaiofotograficofeminino?src=hash"><s>#</s><b>ensaiofotograficofeminino</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/ensaiofotografico?src=hash"><s>#</s><b>ensaiofotografico</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sbtmecontrata?src=hash"><s>#</s><b>sbtmecontrata</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BziPDOVJMN9/?igshid=1b5nqkyxw8sw3" dir="ltr" href="https://t.co/3kWUs50onx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BziPDOVJMN9/?igshid=1b5nqkyxw8sw3"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BziPDOVJMN9/</span><span class="invisible">?igshid=1b5nqkyxw8sw3</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
462495 | LUXORLight | ChristinA Ritchie | 47216901 | 1146615306376241152 | https://twitter.com/LUXORLight/status/1146615306376241152 | 2019-07-04 03:02:46 | 1562209366 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Light Codes - Masculine and Divine Feminine - The Coming Together Message https://youtu.be/-VSbSD-8huQ via @YouTube | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Light Codes - Masculine and Divine Feminine - The Coming Together Message <a class="twitter-timeline-link" data-expanded-url="https://youtu.be/-VSbSD-8huQ" dir="ltr" href="https://t.co/iv7zddMyAN" rel="nofollow noopener" target="_blank" title="https://youtu.be/-VSbSD-8huQ"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">youtu.be/-VSbSD-8huQ</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a> via <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="10228272" dir="ltr" href="/YouTube"><s>@</s><b>YouTube</b></a></p> | 0.0 |
465291 | amdmohd | AHMED M. ALY || ♌💥الهيّذامツ | 267896818 | 1146576177353678848 | https://twitter.com/amdmohd/status/1146576177353678848 | 2019-07-04 00:27:17 | 1562200037 | 0 | 1 | 9 | 0 | NaN | NaN | NaN | وشخص مريض ولازم يتعاقب والتعاطف معاه بأي شكل فكرة غير مقبولة ابداhttps://twitter.com/YeFeministVoice/status/1146108383100981248 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">وشخص مريض ولازم يتعاقب والتعاطف معاه بأي شكل فكرة غير مقبولة ابدا<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/YeFeministVoice/status/1146108383100981248" dir="ltr" href="https://t.co/zRFlI4oQTX" rel="nofollow noopener" target="_blank" title="https://twitter.com/YeFeministVoice/status/1146108383100981248"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/YeFeministVoic</span><span class="invisible">e/status/1146108383100981248</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
465894 | remonshokry1 | remon_s_tawfik | 1006645009830031361 | 1146569407147257856 | https://twitter.com/remonshokry1/status/1146569407147257856 | 2019-07-04 00:00:23 | 1562198423 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | المتحرش.https://twitter.com/YeFeministVoice/status/1146108383100981248 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">المتحرش.<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/YeFeministVoice/status/1146108383100981248" dir="ltr" href="https://t.co/CA0eZDX5xa" rel="nofollow noopener" target="_blank" title="https://twitter.com/YeFeministVoice/status/1146108383100981248"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/YeFeministVoic</span><span class="invisible">e/status/1146108383100981248</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
468007 | EzzatNaguib7 | Ezzat Naguib | 1002719526750957568 | 1146547973666611200 | https://twitter.com/EzzatNaguib7/status/1146547973666611200 | 2019-07-03 22:35:13 | 1562193313 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كلها مبررات للحيوانية اللي بقت فالشباب فالشوارع..\nمهو السعودية لبس محتشم عالاخر والاكتر نسب تحرش فالدول العربية ..https://twitter.com/YeFeministVoice/status/1146108383100981248 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">كلها مبررات للحيوانية اللي بقت فالشباب فالشوارع..\nمهو السعودية لبس محتشم عالاخر والاكتر نسب تحرش فالدول العربية ..<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/YeFeministVoice/status/1146108383100981248" dir="ltr" href="https://t.co/cxsSu0KJM7" rel="nofollow noopener" target="_blank" title="https://twitter.com/YeFeministVoice/status/1146108383100981248"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/YeFeministVoic</span><span class="invisible">e/status/1146108383100981248</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
474546 | MarwaAbdallh2 | ميمو🇦🇷🇦🇷🇦🇷 | 734518194208165889 | 1146466722859421698 | https://twitter.com/MarwaAbdallh2/status/1146466722859421698 | 2019-07-03 17:12:21 | 1562173941 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | طبعاًhttps://twitter.com/yefeministvoice/status/1146108383100981248 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">طبعاً<a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/yefeministvoice/status/1146108383100981248" dir="ltr" href="https://t.co/dQTD1rWmyV" rel="nofollow noopener" target="_blank" title="https://twitter.com/yefeministvoice/status/1146108383100981248"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/yefeministvoic</span><span class="invisible">e/status/1146108383100981248</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 0.0 |
479153 | LUXORLight | ChristinA Ritchie | 47216901 | 1146403925530202113 | https://twitter.com/LUXORLight/status/1146403925530202113 | 2019-07-03 13:02:49 | 1562158969 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Light Codes of the Divine Masculine and Divine Feminine - A Coming Together - http://eepurl.com/gww2x1 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Light Codes of the Divine Masculine and Divine Feminine - A Coming Together - <a class="twitter-timeline-link" data-expanded-url="http://eepurl.com/gww2x1" dir="ltr" href="https://t.co/RfY06pcUeV" rel="nofollow noopener" target="_blank" title="http://eepurl.com/gww2x1"><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">eepurl.com/gww2x1</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 0.0 |
499190 | obliviate_8 | Renad | 510271629 | 1146093467229204480 | https://twitter.com/obliviate_8/status/1146093467229204480 | 2019-07-02 16:29:10 | 1562084950 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | لا انت مختار فئة معينة تبص عليهم دي عليك انت، دا مش feminism دا عته\nلكن الطبيعي إن الاتنين مش عكس بعض ولا حاجة\nال feminism ضد العنف ضد المرأة، المعاملة اللي مش كويسة، الضغط اللي بيفرضه المجتمع وهكذا وكلها حاجات صح ومش بتتعارض خالص مع اللي بتقوله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لا انت مختار فئة معينة تبص عليهم دي عليك انت، دا مش feminism دا عته\nلكن الطبيعي إن الاتنين مش عكس بعض ولا حاجة\nال feminism ضد العنف ضد المرأة، المعاملة اللي مش كويسة، الضغط اللي بيفرضه المجتمع وهكذا وكلها حاجات صح ومش بتتعارض خالص مع اللي بتقوله</p> | 0.0 |
524769 | cealhada | Caroline Al-Hada | 705129729003790338 | 1145693137714778113 | https://twitter.com/cealhada/status/1145693137714778113 | 2019-07-01 13:58:24 | 1561989504 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | I can’t speak for all American feminists ... I think most Americans in general are quite unfamiliar with the complexities of the Middle East. Liberals & conservatives like. I am a pro-life from womb to tomb Christian feminist. | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I can’t speak for all American feminists ... I think most Americans in general are quite unfamiliar with the complexities of the Middle East. Liberals & conservatives like. I am a pro-life from womb to tomb Christian feminist.</p> | 0.0 |
560311 | Tasneem94O7 | Tasneem🌙 | 414650496 | 1145125239682211840 | https://twitter.com/Tasneem94O7/status/1145125239682211840 | 2019-06-30 00:21:47 | 1561854107 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | انا ممكن اتقبل ان male عادي جدا ممكن يبقى feminine شوية لكن مش لدرجة بنته تقله مام !! هنا بقى الموضوع أخد محنى جديد خطير اوي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انا ممكن اتقبل ان male عادي جدا ممكن يبقى feminine شوية لكن مش لدرجة بنته تقله مام !! هنا بقى الموضوع أخد محنى جديد خطير اوي <img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/><img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/><img alt="😳" aria-label="Emoji: Flushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f633.png" title="Flushed face"/></p> | -1.0 |
560850 | nadaatef98 | Nada عtef | 1903862923 | 1145120110618787841 | https://twitter.com/nadaatef98/status/1145120110618787841 | 2019-06-30 00:01:24 | 1561852884 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | Toxic femininity is just sad. | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Toxic femininity is just sad.</p> | 0.0 |
565152 | stadjoshi | St Adjosh | 840547196026179585 | 1145070872534933506 | https://twitter.com/stadjoshi/status/1145070872534933506 | 2019-06-29 20:45:45 | 1561841145 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Are we giving our kids mental disorder?\nThis is a "Pure Contagion" gradually seeping through the fabrics of our society/culture.\n"Forget Patriarchy, the problem is TOXIC FEMINISTS" - Candace Owens.https://youtu.be/msTGBJpfULE | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Are we giving our kids mental disorder?\nThis is a "Pure Contagion" gradually seeping through the fabrics of our society/culture.\n"Forget Patriarchy, the problem is TOXIC FEMINISTS" - Candace Owens.<a class="twitter-timeline-link u-hidden" data-expanded-url="https://youtu.be/msTGBJpfULE" dir="ltr" href="https://t.co/IHQzejdl8v" rel="nofollow noopener" target="_blank" title="https://youtu.be/msTGBJpfULE"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">youtu.be/msTGBJpfULE</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a></p> | 0.0 |
567601 | MariamEIbrhim74 | Mari Gül | 1066608967 | 1145033722930089984 | https://twitter.com/MariamEIbrhim74/status/1145033722930089984 | 2019-06-29 18:18:07 | 1561832287 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | هما ال Feminists كدا بيطلعوا من كل حته | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هما ال Feminists كدا بيطلعوا من كل حته</p> | 0.0 |
574445 | gohar_hussien | HussienGohar | 1019771496980471808 | 1144938276337397760 | https://twitter.com/gohar_hussien/status/1144938276337397760 | 2019-06-29 11:58:51 | 1561809531 | 1 | 0 | 7 | 0 | NaN | NaN | NaN | كسم اى حد feminist تمام ! | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">كسم اى حد feminist تمام !</p> | 0.0 |
575699 | WaelAdel96 | Wael | 833736760014360577 | 1144918876305670145 | https://twitter.com/WaelAdel96/status/1144918876305670145 | 2019-06-29 10:41:46 | 1561804906 | 0 | 0 | 3 | 0 | NaN | NaN | NaN | التايم لاين بقي مكب نفايات لناس اتنشن هورز وأغلبهم ستات عندهم نقص و ذكور مش هقول رجالة بين قوسين Feminist عايزه تلم الستات عليهم عشان هما اكتر ناس متحرشة وبتفكر شمال فيهم، المجتمع عنده أمراض اقسم بالله عايز سنين عشان يتعالج، ربنا يخرجنا منها سالمين. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">التايم لاين بقي مكب نفايات لناس اتنشن هورز وأغلبهم ستات عندهم نقص و ذكور مش هقول رجالة بين قوسين Feminist عايزه تلم الستات عليهم عشان هما اكتر ناس متحرشة وبتفكر شمال فيهم، المجتمع عنده أمراض اقسم بالله عايز سنين عشان يتعالج، ربنا يخرجنا منها سالمين.</p> | 0.0 |
623985 | aiya_74 | Aiya | 3313454608 | 1144085126319677441 | https://twitter.com/aiya_74/status/1144085126319677441 | 2019-06-27 03:28:44 | 1561606124 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | ف يخوانا ميطلعليش حد يقول إزاي بنت تبقي ضد بنت وازاي تيجي عليها وجو دماغ ال feminists دي بقي لأ وكمان جو انكوا تدخلوا حوار ان اي بنت عامة لو اتكلمت كدة يبقي attention seeking، لأن هو فعلا لا مش دايما بس الغلط غلط وهي غلطت، مش هنقف مع حد ونبررله ونشوفه صح تماما لكونها بنت زينا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ف يخوانا ميطلعليش حد يقول إزاي بنت تبقي ضد بنت وازاي تيجي عليها وجو دماغ ال feminists دي بقي لأ وكمان جو انكوا تدخلوا حوار ان اي بنت عامة لو اتكلمت كدة يبقي attention seeking، لأن هو فعلا لا مش دايما بس الغلط غلط وهي غلطت، مش هنقف مع حد ونبررله ونشوفه صح تماما لكونها بنت زينا <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
626158 | adoreyunho | cj | 1142215673613115394 | 1144045665498128384 | https://twitter.com/adoreyunho/status/1144045665498128384 | 2019-06-27 00:51:56 | 1561596716 | 2 | 0 | 0 | 0 | NaN | NaN | NaN | personalmente me da mucho miedo ese feminismo, porque estamos para protegernos pero nos desean la muerte no estamos seguros en ningún lado | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">personalmente me da mucho miedo ese feminismo, porque estamos para protegernos pero nos desean la muerte no estamos seguros en ningún lado</p> | 0.0 |
662284 | almonzer_amro | Gluttony #مدنياااو | 1336099946 | 1143536812691996678 | https://twitter.com/almonzer_amro/status/1143536812691996678 | 2019-06-25 15:09:56 | 1561475396 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | If you thought arguing with feminists is hard, try talking to the LGBTQ | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">If you thought arguing with feminists is hard, try talking to the LGBTQ</p> | 0.0 |
669763 | dumbbyl | booop | 1096942873797287936 | 1143411304884867073 | https://twitter.com/dumbbyl/status/1143411304884867073 | 2019-06-25 06:51:13 | 1561445473 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | minum feminax | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ht">minum feminax</p> | 0.0 |
670856 | LizardWithBeard | The Lizard Of Oz | 1083512243415728128 | 1143375898017595392 | https://twitter.com/LizardWithBeard/status/1143375898017595392 | 2019-06-25 04:30:31 | 1561437031 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | LET ME VALIDATE MY OPINIONS BY BEATING YOU WITH THEM\nVIVIAN\nWHY DON'T YOU WANT TO ACKNOWLEDGE MY SUPERIORITY!?\nYOU MUST BE SOME KIND OF FEMINAZI LEFTCUCK SNOWTARD.\nYou're the reason women don't want to fuck me this is discrimination. | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">LET ME VALIDATE MY OPINIONS BY BEATING YOU WITH THEM\nVIVIAN\nWHY DON'T YOU WANT TO ACKNOWLEDGE MY SUPERIORITY!?\nYOU MUST BE SOME KIND OF FEMINAZI LEFTCUCK SNOWTARD.\nYou're the reason women don't want to fuck me this is discrimination.</p> | 0.0 |
686012 | yourlonefriend | The Dude | 3432130071 | 1142741462838370304 | https://twitter.com/yourlonefriend/status/1142741462838370304 | 2019-06-23 10:29:30 | 1561285770 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بيتهألي مفيش feminism في حاجة زي دي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بيتهألي مفيش feminism في حاجة زي دي <img alt="😶" aria-label="Emoji: Face without mouth" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f636.png" title="Face without mouth"/></p> | -1.0 |
755925 | youssefmarwan23 | Youssef Marwan | 744188612 | 1137158352629391360 | https://twitter.com/youssefmarwan23/status/1137158352629391360 | 2019-06-08 00:44:13 | 1559954653 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | Eh ya abdelrahman enta mesh feminist wala eh | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="in">Eh ya abdelrahman enta mesh feminist wala eh</p> | 0.0 |
862602 | AmrSharafElDen | Abo Gouda | 84848668 | 1128008282386436096 | https://twitter.com/AmrSharafElDen/status/1128008282386436096 | 2019-05-13 18:45:06 | 1557773106 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | And now fucking feminists gonna blame the producers #GameofThrones | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">And now fucking feminists gonna blame the producers <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/GameofThrones?src=hash"><s>#</s><b>GameofThrones</b></a></p> | 1.0 |
894973 | Tarekmokhtar17 | Tarekmokhtar | 880470697126088704 | 1125005337688510465 | https://twitter.com/Tarekmokhtar17/status/1125005337688510465 | 2019-05-05 11:52:28 | 1557057148 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | feminism illness الله يحرقهم | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">feminism illness <img alt="🤦♂️" aria-label="Emoji: Man facepalming" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f926-200d-2642-fe0f.png" title="Man facepalming"/>الله يحرقهم <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
968334 | moatazgamal121 | MGGBT | 4766300986 | 1117492085723148288 | https://twitter.com/moatazgamal121/status/1117492085723148288 | 2019-04-14 18:17:29 | 1555265849 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الإسلام https://twitter.com/Feminism_pics/status/1117174870125756416 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">الإسلام <img alt="✅" aria-label="Emoji: White heavy check mark" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2705.png" title="White heavy check mark"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/Feminism_pics/status/1117174870125756416" dir="ltr" href="https://t.co/UvmCMqnUBJ" rel="nofollow noopener" target="_blank" title="https://twitter.com/Feminism_pics/status/1117174870125756416"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/Feminism_pics/</span><span class="invisible">status/1117174870125756416</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1020570 | eptehalelshazly | Eptehal | إبتهال | 784370451321655297 | 1111987753288376321 | https://twitter.com/eptehalelshazly/status/1111987753288376321 | 2019-03-30 13:45:14 | 1553953514 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | No one asked you to + it’s got nothing to do with feminism you just judged without watching | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">No one asked you to <img alt="🤷🏻♀️" aria-label="Emoji: Woman shrugging (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f937-1f3fb-200d-2640-fe0f.png" title="Woman shrugging (light skin tone)"/> + it’s got nothing to do with feminism you just judged without watching</p> | 0.0 |
1050039 | AbdoO_nader | Abdelrahman. | 372454596 | 1108623627073798144 | https://twitter.com/AbdoO_nader/status/1108623627073798144 | 2019-03-21 06:57:24 | 1553151444 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Women are so powerful the world would suck without them literally .. so to every mother , daughter , sister , wife or all of that you are life u don’t need feminist groups to make you aware of that you are way more important to find your voice through movements that rise and fall | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Women are so powerful the world would suck without them literally .. so to every mother , daughter , sister , wife or all of that you are life u don’t need feminist groups to make you aware of that you are way more important to find your voice through movements that rise and fall</p> | 0.0 |
Positive feels: 386225. Negative feels: 53485 Positive tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | mutahar_321 | ☆╰╮عٌأّشٍقِ♛أّلَقِأّفِّيِّهِ╰╮☆ | 856672152522825732 | 1154179453456670721 | https://twitter.com/mutahar_321/status/1154179453456670721 | 2019-07-24 23:59:59 | 1564012799 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | بربك تعرفي تسبحي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بربك تعرفي تسبحي <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
3 | bodr_1212 | بدور | 1127390744371703809 | 1154179452735242240 | https://twitter.com/bodr_1212/status/1154179452735242240 | 2019-07-24 23:59:59 | 1564012799 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #مسابقات_خالد_الشمري\nيارب توفيقك \n@khalid88990 | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%B3%D8%A7%D8%A8%D9%82%D8%A7%D8%AA_%D8%AE%D8%A7%D9%84%D8%AF_%D8%A7%D9%84%D8%B4%D9%85%D8%B1%D9%8A?src=hash"><s>#</s><b>مسابقات_خالد_الشمري</b></a>\nيارب توفيقك <img alt="💕" aria-label="Emoji: Two hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f495.png" title="Two hearts"/>\n<a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="343585835" dir="ltr" href="/khalid88990"><s>@</s><b>khalid88990</b></a></p> | 1.0 |
12 | bedobedo2022 | Abdelrhman osama | 2193788820 | 1154179450956898306 | https://twitter.com/bedobedo2022/status/1154179450956898306 | 2019-07-24 23:59:59 | 1564012799 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لا جديد https://twitter.com/AlAhlyEnglish/status/1154118839455617027 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">لا جديد <img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/AlAhlyEnglish/status/1154118839455617027" dir="ltr" href="https://t.co/c8p23IMGsF" rel="nofollow noopener" target="_blank" title="https://twitter.com/AlAhlyEnglish/status/1154118839455617027"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/AlAhlyEnglish/</span><span class="invisible">status/1154118839455617027</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
16 | nee773 | رنيم 💛 | 1098391658641739777 | 1154179449828597760 | https://twitter.com/nee773/status/1154179449828597760 | 2019-07-24 23:59:59 | 1564012799 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | وعليكم السلام صباح النور،، | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وعليكم السلام صباح النور،، <img alt="💛" aria-label="Emoji: Yellow heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f49b.png" title="Yellow heart"/></p> | 1.0 |
17 | Olafarag22 | عُلا فرج | 887399623047958528 | 1154179449572790272 | https://twitter.com/Olafarag22/status/1154179449572790272 | 2019-07-24 23:59:59 | 1564012799 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ولسة جوه القلب أمل :))\n- البحر بيضحك لية ؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ولسة جوه القلب أمل :))\n- البحر بيضحك لية ؟</p> | 1.0 |
19 | AyaElna46181046 | Oya.🌟 | 1150820174834163713 | 1154179449023270912 | https://twitter.com/AyaElna46181046/status/1154179449023270912 | 2019-07-24 23:59:58 | 1564012798 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | متجننيش انتى شايفه ان الوقت واليوم كانوا مناسببين اساسا انتى فاجئتينا خلاص بقا كفايه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">متجننيش انتى شايفه ان الوقت واليوم كانوا مناسببين اساسا انتى فاجئتينا خلاص بقا كفايه <img alt="🤦♀️" aria-label="Emoji: Woman facepalming" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f926-200d-2640-fe0f.png" title="Woman facepalming"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
24 | marwaallam_99 | Marwa Allam | 1005757569049284608 | 1154179406874775553 | https://twitter.com/marwaallam_99/status/1154179406874775553 | 2019-07-24 23:59:48 | 1564012788 | 1 | 0 | 2 | 0 | NaN | NaN | NaN | اللى فضل موجود للآخر عمره م كان غلطان ، اللى بعد من غير سبب خسر كتير وميستاهلش فعلا أى memory واوعى تفكرى تانى ولا تضايقى .. أى حد يبعد عنك انتى يا مريم فعلا فعلا خسر كتير اوى | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اللى فضل موجود للآخر عمره م كان غلطان ، اللى بعد من غير سبب خسر كتير وميستاهلش فعلا أى memory واوعى تفكرى تانى ولا تضايقى .. أى حد يبعد عنك انتى يا مريم فعلا فعلا خسر كتير اوى <img alt="♥️" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/></p> | 1.0 |
26 | RoaaElmekawl | رُؤَىَ احْمَد🍍 | 1091051882527756290 | 1154179385752248320 | https://twitter.com/RoaaElmekawl/status/1154179385752248320 | 2019-07-24 23:59:43 | 1564012783 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | مصره تهزأيي نفسك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">مصره تهزأيي نفسك <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
27 | hbdolpash | ℍℬⅅᝪℒ | 1122841302503178240 | 1154179379351707648 | https://twitter.com/hbdolpash/status/1154179379351707648 | 2019-07-24 23:59:42 | 1564012782 | 1 | 0 | 2 | 0 | NaN | NaN | NaN | متتعشميش علشان عشم مات والمعامله خد وهات | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">متتعشميش علشان عشم مات والمعامله خد وهات <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
33 | MennaHessin | Menna Hessin^🌻 | 1058115522896822273 | 1154179333583511552 | https://twitter.com/MennaHessin/status/1154179333583511552 | 2019-07-24 23:59:31 | 1564012771 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | وحقيقى حاجه قمه فى الجمال!" | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وحقيقى حاجه قمه فى الجمال!"<img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/></p> | 1.0 |
34 | thomas99_s | توماس الدين صبرى 👑 | 3986797468 | 1154179327107444736 | https://twitter.com/thomas99_s/status/1154179327107444736 | 2019-07-24 23:59:29 | 1564012769 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | تميمة الحظ الفشاخة حقى https://twitter.com/thomas99_s/status/1153810152069292032 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">تميمة الحظ الفشاخة حقى <img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/thomas99_s/status/1153810152069292032" dir="ltr" href="https://t.co/hw8yq14QsK" rel="nofollow noopener" target="_blank" title="https://twitter.com/thomas99_s/status/1153810152069292032"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/thomas99_s/sta</span><span class="invisible">tus/1153810152069292032</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
35 | maiimo2mn | Mayoshha.. | 767793480596881409 | 1154179325035520002 | https://twitter.com/maiimo2mn/status/1154179325035520002 | 2019-07-24 23:59:29 | 1564012769 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بدأ ياخد باله..\nانا فى خطرhttps://twitter.com/reemshabanaa279/status/1154026105008996354 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">بدأ ياخد باله..\nانا فى خطر<img alt="👍" aria-label="Emoji: Thumbs up sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44d.png" title="Thumbs up sign"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/reemshabanaa279/status/1154026105008996354" dir="ltr" href="https://t.co/8L7J2BKFqo" rel="nofollow noopener" target="_blank" title="https://twitter.com/reemshabanaa279/status/1154026105008996354"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/reemshabanaa27</span><span class="invisible">9/status/1154026105008996354</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
37 | az1_188 | 𝟑𝐎𝐁𝐄𝐃 ™ 🔱 | 1098394435837136896 | 1154179310670012416 | https://twitter.com/az1_188/status/1154179310670012416 | 2019-07-24 23:59:25 | 1564012765 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | عندنا قمراية هنا . | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">عندنا قمراية هنا .<img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/><img alt="🌕" aria-label="Emoji: Full moon symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f315.png" title="Full moon symbol"/></p> | 2.0 |
40 | a_gamal2040 | Λhmed Gamal | 2377219056 | 1154179290734497793 | https://twitter.com/a_gamal2040/status/1154179290734497793 | 2019-07-24 23:59:21 | 1564012761 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اللهم لك الحمد كماينبغي لجلال وجهك ولعظيم سلطانك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اللهم لك الحمد كماينبغي لجلال وجهك ولعظيم سلطانك <img alt="🙏" aria-label="Emoji: Person with folded hands" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f.png" title="Person with folded hands"/><img alt="🙌" aria-label="Emoji: Person raising both hands in celebration" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64c.png" title="Person raising both hands in celebration"/></p> | 2.0 |
42 | AlaaAde18634018 | 🌻🌹 آلاء | 977258654125772805 | 1154179274351493120 | https://twitter.com/AlaaAde18634018/status/1154179274351493120 | 2019-07-24 23:59:17 | 1564012757 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | https://twitter.com/MustafaHosny/status/1154131864728363009 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="4" lang="und"><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="🌻" aria-label="Emoji: Sunflower" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33b.png" title="Sunflower"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/MustafaHosny/status/1154131864728363009" dir="ltr" href="https://t.co/amEJWFabmj" rel="nofollow noopener" target="_blank" title="https://twitter.com/MustafaHosny/status/1154131864728363009"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/MustafaHosny/s</span><span class="invisible">tatus/1154131864728363009</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
44 | MiladVerena | Vërėnã mãmđoûh💃🐶 | 739134950398668800 | 1154179260371951618 | https://twitter.com/MiladVerena/status/1154179260371951618 | 2019-07-24 23:59:13 | 1564012753 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | انتي حقيقي اجمل ضيق ممكن ربنا يبعتة فحياة حدضيف جميل وغالي ومريح اوووووي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انتي حقيقي اجمل ضيق ممكن ربنا يبعتة فحياة حد<img alt="😊" aria-label="Emoji: Smiling face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60a.png" title="Smiling face with smiling eyes"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>ضيف جميل وغالي ومريح اوووووي</p> | 2.0 |
48 | Mido_10544 | mîdö 👨🏻🎓 | 1768309734 | 1154179234623107072 | https://twitter.com/Mido_10544/status/1154179234623107072 | 2019-07-24 23:59:07 | 1564012747 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | مهيا دي شخصية البطل يلا معلش اتدربوا كويس علشان السنه الجايه تتصدروا كويس و احنا ناخده برضو https://twitter.com/sarahabdelbaky1/status/1154117965748609025 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">مهيا دي شخصية البطل يلا معلش اتدربوا كويس علشان السنه الجايه تتصدروا كويس و احنا ناخده برضو <img alt="😉" aria-label="Emoji: Winking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f609.png" title="Winking face"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/sarahabdelbaky1/status/1154117965748609025" dir="ltr" href="https://t.co/OeAKW4NGEz" rel="nofollow noopener" target="_blank" title="https://twitter.com/sarahabdelbaky1/status/1154117965748609025"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/sarahabdelbaky</span><span class="invisible">1/status/1154117965748609025</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
50 | Ali_7ussien | على ويكا 👻 | 1090643897687179264 | 1154179204130516993 | https://twitter.com/Ali_7ussien/status/1154179204130516993 | 2019-07-24 23:59:00 | 1564012740 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | انت بتهزر اجازه ايه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">انت بتهزر اجازه ايه<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
51 | hbdolpash | ℍℬⅅᝪℒ | 1122841302503178240 | 1154179196027056131 | https://twitter.com/hbdolpash/status/1154179196027056131 | 2019-07-24 23:58:58 | 1564012738 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | لا ملهاش | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لا ملهاش <img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="👌" aria-label="Emoji: Ok hand sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c.png" title="Ok hand sign"/></p> | 2.0 |
52 | mohamedsafwat32 | møhámed śáfwät | 412305256 | 1154179189131612161 | https://twitter.com/mohamedsafwat32/status/1154179189131612161 | 2019-07-24 23:58:56 | 1564012736 | 1 | 0 | 2 | 0 | NaN | NaN | NaN | فيه\nاللي مبيشتغلش | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">فيه\nاللي مبيشتغلش <img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/></p> | 1.0 |
54 | marygerges1111 | M a R y💫 | 1061533463164174336 | 1154179179002417152 | https://twitter.com/marygerges1111/status/1154179179002417152 | 2019-07-24 23:58:54 | 1564012734 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | https://twitter.com/_sandraserag_/status/1154133397972889600 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="4" lang="und"><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/_sandraserag_/status/1154133397972889600" dir="ltr" href="https://t.co/Q3fMshgEvd" rel="nofollow noopener" target="_blank" title="https://twitter.com/_sandraserag_/status/1154133397972889600"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/_sandraserag_/</span><span class="invisible">status/1154133397972889600</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
55 | AhmedTarek1120 | Ahmed Tarek | 1084771898477686784 | 1154179173486931975 | https://twitter.com/AhmedTarek1120/status/1154179173486931975 | 2019-07-24 23:58:53 | 1564012733 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | لازم تتصدمي من الكلمه اصلا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لازم تتصدمي من الكلمه اصلا <img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/></p> | 1.0 |
56 | a7md_sh3lan | ..﮼شعلان.. | 159673435 | 1154179165987450880 | https://twitter.com/a7md_sh3lan/status/1154179165987450880 | 2019-07-24 23:58:51 | 1564012731 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | قمر قلبي في كل الحالات https://twitter.com/albawaba/status/1154105349827440640 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">قمر قلبي في كل الحالات <img alt="♥️" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥️" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><img alt="♥️" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/albawaba/status/1154105349827440640" dir="ltr" href="https://t.co/DvrkEh4LT5" rel="nofollow noopener" target="_blank" title="https://twitter.com/albawaba/status/1154105349827440640"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/albawaba/statu</span><span class="invisible">s/1154105349827440640</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
57 | MennaHessin | Menna Hessin^🌻 | 1058115522896822273 | 1154179155476570112 | https://twitter.com/MennaHessin/status/1154179155476570112 | 2019-07-24 23:58:48 | 1564012728 | 1 | 1 | 4 | 0 | NaN | NaN | NaN | كل مره بختم فيها ختمة قرآن جديدة سواء ف اسبوع او اسبوعين ع حسب كم الورد بعد كل فرض،طول مدة الختمه بفضل يوم ورا يوم كل م اخلص سوره ورا سوره وانا منبهره بإن قصه كل نبى مذكوره بنفس المعنى بس بشكل مختلف فى كل سوره تقريبا وبحس فى كل سوره انى لسه بتعرف من جديد ع قصه كل نبى.. | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل مره بختم فيها ختمة قرآن جديدة سواء ف اسبوع او اسبوعين ع حسب كم الورد بعد كل فرض،طول مدة الختمه بفضل يوم ورا يوم كل م اخلص سوره ورا سوره وانا منبهره بإن قصه كل نبى مذكوره بنفس المعنى بس بشكل مختلف فى كل سوره تقريبا وبحس فى كل سوره انى لسه بتعرف من جديد ع قصه كل نبى..<img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/><img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/></p> | 1.0 |
58 | KenzySherif_ | kankouz' | 1109755521081503744 | 1154179154151116801 | https://twitter.com/KenzySherif_/status/1154179154151116801 | 2019-07-24 23:58:48 | 1564012728 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | حب حياتيhttps://twitter.com/mohabemam12/status/1154153749469962242 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">حب حياتي<img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/mohabemam12/status/1154153749469962242" dir="ltr" href="https://t.co/DU1FglL8TM" rel="nofollow noopener" target="_blank" title="https://twitter.com/mohabemam12/status/1154153749469962242"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/mohabemam12/st</span><span class="invisible">atus/1154153749469962242</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
63 | momenmo636358 | المُؤ | 819684457280139268 | 1154179127794184192 | https://twitter.com/momenmo636358/status/1154179127794184192 | 2019-07-24 23:58:42 | 1564012722 | 0 | 1 | 0 | 0 | NaN | NaN | NaN | #بتاع_البليله_بره_الليلهpic.twitter.com/gY38Aa1nwW | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A8%D8%AA%D8%A7%D8%B9_%D8%A7%D9%84%D8%A8%D9%84%D9%8A%D9%84%D9%87_%D8%A8%D8%B1%D9%87_%D8%A7%D9%84%D9%84%D9%8A%D9%84%D9%87?src=hash"><s>#</s><b>بتاع_البليله_بره_الليله</b></a><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/gY38Aa1nwW">pic.twitter.com/gY38Aa1nwW</a></p> | 1.0 |
68 | hana_shoair | HanaShoair🥀 | 1002548849276280834 | 1154179092083892225 | https://twitter.com/hana_shoair/status/1154179092083892225 | 2019-07-24 23:58:33 | 1564012713 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | After bicycling pic.twitter.com/7tl3SzMvVs | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">After bicycling <img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/><img alt="🚲" aria-label="Emoji: Bicycle" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6b2.png" title="Bicycle"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/7tl3SzMvVs">pic.twitter.com/7tl3SzMvVs</a></p> | 2.0 |
70 | Mostafa17009460 | Mostafa sedky Abdelwahab | 1054011994557288448 | 1154179061062807552 | https://twitter.com/Mostafa17009460/status/1154179061062807552 | 2019-07-24 23:58:26 | 1564012706 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | طب اقسم بالله بسمعها وانا بشوف التويته | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">طب اقسم بالله بسمعها وانا بشوف التويته<img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/></p> | 1.0 |
73 | mayora97 | Mayar Hesham | 1011982742261829632 | 1154179054687399939 | https://twitter.com/mayora97/status/1154179054687399939 | 2019-07-24 23:58:24 | 1564012704 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | هنحققه بأذن الله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هنحققه بأذن الله<img alt="😌" aria-label="Emoji: Relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60c.png" title="Relieved face"/><img alt="😌" aria-label="Emoji: Relieved face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60c.png" title="Relieved face"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="💃" aria-label="Emoji: Dancer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f483.png" title="Dancer"/></p> | 3.0 |
79 | 123_helwa | 康復 | 3577321336 | 1154179009741238272 | https://twitter.com/123_helwa/status/1154179009741238272 | 2019-07-24 23:58:14 | 1564012694 | 1 | 2 | 0 | 0 | NaN | NaN | NaN | ماشاء الله حلوه اوى https://twitter.com/AfnanTaha93/status/1154157127121997824 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">ماشاء الله حلوه اوى <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/AfnanTaha93/status/1154157127121997824" dir="ltr" href="https://t.co/Q1eOSxOlo0" rel="nofollow noopener" target="_blank" title="https://twitter.com/AfnanTaha93/status/1154157127121997824"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/AfnanTaha93/st</span><span class="invisible">atus/1154157127121997824</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
1086813 | ronaldgabriel17 | Ronald Rond | 169354871 | 1080810416098357248 | https://twitter.com/ronaldgabriel17/status/1080810416098357248 | 2019-01-03 12:57:38 | 1546520258 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ¿Por qué te da miedo el cambio? Sin cambio no hay evolución. Imita al Universo, cambia y evoluciona. \n—\n Follow @ronaldgabriel17 ! -\n—\n#vanlife #vanlifers #vanlifeeurope… https://www.instagram.com/p/BsLFhsjHZzv/?utm_source=ig_twitter_share&igshid=umn7oileicbc … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">¿Por qué te da miedo el cambio? Sin cambio no hay evolución. Imita al Universo, cambia y evoluciona. <img alt="🕉" aria-label="Emoji: Om symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f549.png" title="Om symbol"/> <img alt="🚌" aria-label="Emoji: Bus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f68c.png" title="Bus"/> <img alt="🌻" aria-label="Emoji: Sunflower" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33b.png" title="Sunflower"/><img alt="🏔" aria-label="Emoji: Snow capped mountain" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3d4.png" title="Snow capped mountain"/>\n—\n Follow <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="169354871" dir="ltr" href="/ronaldgabriel17"><s>@</s><b>ronaldgabriel17</b></a> ! -\n—\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vanlife?src=hash"><s>#</s><b>vanlife</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vanlifers?src=hash"><s>#</s><b>vanlifers</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vanlifeeurope?src=hash"><s>#</s><b>vanlifeeurope</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsLFhsjHZzv/?utm_source=ig_twitter_share&igshid=umn7oileicbc" dir="ltr" href="https://t.co/dfER6YG8Iu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsLFhsjHZzv/?utm_source=ig_twitter_share&igshid=umn7oileicbc"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsLFhsjHZzv/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=umn7oileicbc</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086816 | judymix007 | Jude Isaac | 558122465 | 1080943483811172353 | https://twitter.com/judymix007/status/1080943483811172353 | 2019-01-03 21:46:24 | 1546551984 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #mycolors #mycousin #friendbecomefamily #newfriends #egypttrip2018 #haitiannomadtrips #haitiannomadnye #greattrip #withgreatpeople #travellife #TRAVELTRIP #lovetravels @ Valley Of… https://www.instagram.com/p/BsMCCyglHwy/?utm_source=ig_twitter_share&igshid=d1rovl7fix6u … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mycolors?src=hash"><s>#</s><b>mycolors</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mycousin?src=hash"><s>#</s><b>mycousin</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/friendbecomefamily?src=hash"><s>#</s><b>friendbecomefamily</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/newfriends?src=hash"><s>#</s><b>newfriends</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypttrip2018?src=hash"><s>#</s><b>egypttrip2018</b></a><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/haitiannomadtrips?src=hash"><s>#</s><b>haitiannomadtrips</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/haitiannomadnye?src=hash"><s>#</s><b>haitiannomadnye</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/greattrip?src=hash"><s>#</s><b>greattrip</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/withgreatpeople?src=hash"><s>#</s><b>withgreatpeople</b></a><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/travellife?src=hash"><s>#</s><b>travellife</b></a><img alt="✈️" aria-label="Emoji: Airplane" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2708.png" title="Airplane"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/TRAVELTRIP?src=hash"><s>#</s><b>TRAVELTRIP</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/lovetravels?src=hash"><s>#</s><b>lovetravels</b></a> @ Valley Of… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsMCCyglHwy/?utm_source=ig_twitter_share&igshid=d1rovl7fix6u" dir="ltr" href="https://t.co/W8zHNuVF5C" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsMCCyglHwy/?utm_source=ig_twitter_share&igshid=d1rovl7fix6u"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsMCCyglHwy/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=d1rovl7fix6u</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086823 | P_Wissam | Wissam El-gayaR | 541341840 | 1080878601728184320 | https://twitter.com/P_Wissam/status/1080878601728184320 | 2019-01-03 17:28:35 | 1546536515 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Versace ...About this reaction .. \n.\n#me #egypt #london #photo #photography #hairstyles #style #mensfashion #instagram #beard #sexy #bmw #fashion #fashionblogger… https://www.instagram.com/p/BsLkiXdD9fo/?utm_source=ig_twitter_share&igshid=cw0tb4rqa6yk … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Versace <img alt="®️" aria-label="Emoji: Registered sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/ae.png" title="Registered sign"/><img alt="🧥" aria-label="Emoji: Coat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f9e5.png" title="Coat"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>...About this reaction <img alt="🥺" aria-label="Emoji: Pleading face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f97a.png" title="Pleading face"/><img alt="👆" aria-label="Emoji: Up pointing backhand index" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f446.png" title="Up pointing backhand index"/>.. <img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/>\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/me?src=hash"><s>#</s><b>me</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/london?src=hash"><s>#</s><b>london</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photo?src=hash"><s>#</s><b>photo</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photography?src=hash"><s>#</s><b>photography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/hairstyles?src=hash"><s>#</s><b>hairstyles</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/style?src=hash"><s>#</s><b>style</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mensfashion?src=hash"><s>#</s><b>mensfashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/instagram?src=hash"><s>#</s><b>instagram</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/beard?src=hash"><s>#</s><b>beard</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sexy?src=hash"><s>#</s><b>sexy</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/bmw?src=hash"><s>#</s><b>bmw</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashion?src=hash"><s>#</s><b>fashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashionblogger?src=hash"><s>#</s><b>fashionblogger</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsLkiXdD9fo/?utm_source=ig_twitter_share&igshid=cw0tb4rqa6yk" dir="ltr" href="https://t.co/vgQHVLfaND" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsLkiXdD9fo/?utm_source=ig_twitter_share&igshid=cw0tb4rqa6yk"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsLkiXdD9fo/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=cw0tb4rqa6yk</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086826 | MohamedMoslem41 | Mohamed Moslem | 4166027482 | 1080860034643488768 | https://twitter.com/MohamedMoslem41/status/1080860034643488768 | 2019-01-03 16:14:48 | 1546532088 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | الزوج الصالح ليس الزوج المصلي والقارئ للقرآن فقط\nانما هو الزوج الذى طبق وصيه رسول الله.\n(استوصوا بالنساء خيرا) @ Egypt https://www.instagram.com/p/BsLcFuJBjd1/?utm_source=ig_twitter_share&igshid=1i77jack56e0z … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الزوج الصالح ليس الزوج المصلي والقارئ للقرآن فقط\nانما هو الزوج الذى طبق وصيه رسول الله.\n(استوصوا بالنساء خيرا)<img alt="❤" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsLcFuJBjd1/?utm_source=ig_twitter_share&igshid=1i77jack56e0z" dir="ltr" href="https://t.co/6yPzuFmxC0" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsLcFuJBjd1/?utm_source=ig_twitter_share&igshid=1i77jack56e0z"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsLcFuJBjd1/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1i77jack56e0z</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086833 | ronaldgabriel17 | Ronald Rond | 169354871 | 1080810416098357248 | https://twitter.com/ronaldgabriel17/status/1080810416098357248 | 2019-01-03 12:57:38 | 1546520258 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ¿Por qué te da miedo el cambio? Sin cambio no hay evolución. Imita al Universo, cambia y evoluciona. \n—\n Follow @ronaldgabriel17 ! -\n—\n#vanlife #vanlifers #vanlifeeurope… https://www.instagram.com/p/BsLFhsjHZzv/?utm_source=ig_twitter_share&igshid=umn7oileicbc … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">¿Por qué te da miedo el cambio? Sin cambio no hay evolución. Imita al Universo, cambia y evoluciona. <img alt="🕉" aria-label="Emoji: Om symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f549.png" title="Om symbol"/> <img alt="🚌" aria-label="Emoji: Bus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f68c.png" title="Bus"/> <img alt="🌻" aria-label="Emoji: Sunflower" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33b.png" title="Sunflower"/><img alt="🏔" aria-label="Emoji: Snow capped mountain" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3d4.png" title="Snow capped mountain"/>\n—\n Follow <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="169354871" dir="ltr" href="/ronaldgabriel17"><s>@</s><b>ronaldgabriel17</b></a> ! -\n—\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vanlife?src=hash"><s>#</s><b>vanlife</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vanlifers?src=hash"><s>#</s><b>vanlifers</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vanlifeeurope?src=hash"><s>#</s><b>vanlifeeurope</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsLFhsjHZzv/?utm_source=ig_twitter_share&igshid=umn7oileicbc" dir="ltr" href="https://t.co/dfER6YG8Iu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsLFhsjHZzv/?utm_source=ig_twitter_share&igshid=umn7oileicbc"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsLFhsjHZzv/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=umn7oileicbc</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086840 | 3bdalla_3tta | عبدالله | 552675557 | 1080745893022728192 | https://twitter.com/3bdalla_3tta/status/1080745893022728192 | 2019-01-03 08:41:14 | 1546504874 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بداية عظيمة للسنة الجديدة @ Vodafone Abanoub https://www.instagram.com/p/BsKoMBWAZ6A/?utm_source=ig_twitter_share&igshid=11r4eau9plbnp … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">بداية عظيمة للسنة الجديدة <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😁" aria-label="Emoji: Grinning face with smiling eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f601.png" title="Grinning face with smiling eyes"/> @ Vodafone Abanoub <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsKoMBWAZ6A/?utm_source=ig_twitter_share&igshid=11r4eau9plbnp" dir="ltr" href="https://t.co/kQ8PwWBuW7" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsKoMBWAZ6A/?utm_source=ig_twitter_share&igshid=11r4eau9plbnp"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsKoMBWAZ6A/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=11r4eau9plbnp</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086848 | saaamohhh | Sam | 1862053154 | 1080641538114416640 | https://twitter.com/saaamohhh/status/1080641538114416640 | 2019-01-03 01:46:34 | 1546479994 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Is Egypt on your bucket list? @ Kom Ombo Temple https://www.instagram.com/p/BsJ4u1AhuC0/?utm_source=ig_twitter_share&igshid=xohc4l7mf27h … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Is Egypt on your bucket list? <img alt="🐪" aria-label="Emoji: Dromedary camel" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f42a.png" title="Dromedary camel"/> @ Kom Ombo Temple <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsJ4u1AhuC0/?utm_source=ig_twitter_share&igshid=xohc4l7mf27h" dir="ltr" href="https://t.co/FpxoHxom0s" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsJ4u1AhuC0/?utm_source=ig_twitter_share&igshid=xohc4l7mf27h"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsJ4u1AhuC0/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=xohc4l7mf27h</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086850 | fredodabarber | Fredo Olan | 380701495 | 1080616877007630336 | https://twitter.com/fredodabarber/status/1080616877007630336 | 2019-01-03 00:08:35 | 1546474115 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Smile cabrones How’s your day going? Mine is going great, thankful for the opportunity to see this handsome Prince smile once again Thank you guys for lookingClick the “Reserve”… https://www.instagram.com/p/BsJtgxYhSlY/?utm_source=ig_twitter_share&igshid=7o4a6xfbdjah … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Smile cabrones<img alt="🤪" aria-label="Emoji: Crazy face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f92a.png" title="Crazy face"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/> How’s your day going? Mine is going great, thankful for the opportunity to see this handsome Prince smile once again<img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/> Thank you guys for looking<img alt="💯" aria-label="Emoji: Hundred points symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4af.png" title="Hundred points symbol"/><img alt="🙏🏽" aria-label="Emoji: Person with folded hands (medium skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f64f-1f3fd.png" title="Person with folded hands (medium skin tone)"/>Click the “Reserve”… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsJtgxYhSlY/?utm_source=ig_twitter_share&igshid=7o4a6xfbdjah" dir="ltr" href="https://t.co/1QiqjArZLU" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsJtgxYhSlY/?utm_source=ig_twitter_share&igshid=7o4a6xfbdjah"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsJtgxYhSlY/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=7o4a6xfbdjah</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
1086858 | SusanmundyCo | Susan Mundy | 860525492469993472 | 1080544650920906753 | https://twitter.com/SusanmundyCo/status/1080544650920906753 | 2019-01-02 19:21:34 | 1546456894 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Carole Samaha headlining in Egypt #throwback #egypt #entertainment @ Egypt https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Carole Samaha headlining in Egypt <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> <img alt="🎶" aria-label="Emoji: Multiple musical notes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b6.png" title="Multiple musical notes"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/throwback?src=hash"><s>#</s><b>throwback</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/entertainment?src=hash"><s>#</s><b>entertainment</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w" dir="ltr" href="https://t.co/UmUfiRhMO4" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsJKb8nhKe1/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086862 | SusanmundyCo | Susan Mundy | 860525492469993472 | 1080539751944413184 | https://twitter.com/SusanmundyCo/status/1080539751944413184 | 2019-01-02 19:02:06 | 1546455726 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Carole Samaha headlining #throwback #egypt #entertainment @ Egypt https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Carole Samaha headlining <img alt="🎶" aria-label="Emoji: Multiple musical notes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b6.png" title="Multiple musical notes"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/throwback?src=hash"><s>#</s><b>throwback</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/entertainment?src=hash"><s>#</s><b>entertainment</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4" dir="ltr" href="https://t.co/H02XAVbOja" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsJKb8nhKe1/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086865 | MaMomenadel | Acc Momen Adel | 2715468135 | 1080514364023730176 | https://twitter.com/MaMomenadel/status/1080514364023730176 | 2019-01-02 17:21:14 | 1546449674 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كل سنة وانت طيب يا هندسة وعقبال سنين كتير بصحة وسعادة وتكون معاك الى ربنا داعى عليها @ Egypt https://www.instagram.com/p/BsI-5bBhzSieDjc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل سنة وانت طيب يا هندسة وعقبال سنين كتير بصحة وسعادة وتكون معاك الى ربنا داعى عليها <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsI-5bBhzSieDjc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt" dir="ltr" href="https://t.co/oKV6TETeXx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsI-5bBhzSieDjc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsI-5bBhzSie</span><span class="invisible">Djc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
1086878 | SusanmundyCo | Susan Mundy | 860525492469993472 | 1080544650920906753 | https://twitter.com/SusanmundyCo/status/1080544650920906753 | 2019-01-02 19:21:34 | 1546456894 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Carole Samaha headlining in Egypt #throwback #egypt #entertainment @ Egypt https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Carole Samaha headlining in Egypt <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> <img alt="🎶" aria-label="Emoji: Multiple musical notes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b6.png" title="Multiple musical notes"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/throwback?src=hash"><s>#</s><b>throwback</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/entertainment?src=hash"><s>#</s><b>entertainment</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w" dir="ltr" href="https://t.co/UmUfiRhMO4" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsJKb8nhKe1/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=9iakz6u2kq0w</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086882 | SusanmundyCo | Susan Mundy | 860525492469993472 | 1080539751944413184 | https://twitter.com/SusanmundyCo/status/1080539751944413184 | 2019-01-02 19:02:06 | 1546455726 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Carole Samaha headlining #throwback #egypt #entertainment @ Egypt https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Carole Samaha headlining <img alt="🎶" aria-label="Emoji: Multiple musical notes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3b6.png" title="Multiple musical notes"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/throwback?src=hash"><s>#</s><b>throwback</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/entertainment?src=hash"><s>#</s><b>entertainment</b></a> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4" dir="ltr" href="https://t.co/H02XAVbOja" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsJKb8nhKe1/?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsJKb8nhKe1/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1kp7n6xwc1jg4</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086885 | MaMomenadel | Acc Momen Adel | 2715468135 | 1080514364023730176 | https://twitter.com/MaMomenadel/status/1080514364023730176 | 2019-01-02 17:21:14 | 1546449674 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | كل سنة وانت طيب يا هندسة وعقبال سنين كتير بصحة وسعادة وتكون معاك الى ربنا داعى عليها @ Egypt https://www.instagram.com/p/BsI-5bBhzSieDjc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل سنة وانت طيب يا هندسة وعقبال سنين كتير بصحة وسعادة وتكون معاك الى ربنا داعى عليها <img alt="😍" aria-label="Emoji: Smiling face with heart-shaped eyes" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60d.png" title="Smiling face with heart-shaped eyes"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="😂" aria-label="Emoji: Face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f602.png" title="Face with tears of joy"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/><img alt="🤣" aria-label="Emoji: Rolling on the floor laughing" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f923.png" title="Rolling on the floor laughing"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsI-5bBhzSieDjc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt" dir="ltr" href="https://t.co/oKV6TETeXx" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsI-5bBhzSieDjc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsI-5bBhzSie</span><span class="invisible">Djc8JPumKcXym1820RZF5PT5aw0/?utm_source=ig_twitter_share&igshid=1cju5fqte4egt</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 3.0 |
1086892 | m7med_N3em0 | Ebn(Ñ3êm_🇳.🇪.🇲.🇴🔱☯) | 942729036559798272 | 1080495797391839232 | https://twitter.com/m7med_N3em0/status/1080495797391839232 | 2019-01-02 16:07:27 | 1546445247 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | *مافياا..مافياا\n#mafya_oldunuz_silahınız_yok\n#mohamedramdanfans \n#مافيا_#mohamed_ramadan @ Bani Suwayf, Bani Suwayf, Egypt https://www.instagram.com/p/BsI11fRA2GStrFCga8qVishmszWVU1IsjhnSAk0/?utm_source=ig_twitter_share&igshid=812kf0qwyjkq … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">*مافياا..مافياا<img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/><img alt="🔥" aria-label="Emoji: Fire" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f525.png" title="Fire"/><img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="🤟🏻" aria-label="Emoji: Love-you gesture (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f91f-1f3fb.png" title="Love-you gesture (light skin tone)"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mafya_oldunuz_silah%C4%B1n%C4%B1z_yok?src=hash"><s>#</s><b>mafya_oldunuz_silahınız_yok</b></a><img alt="🔫" aria-label="Emoji: Water pistol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f52b.png" title="Water pistol"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mohamedramdanfans?src=hash"><s>#</s><b>mohamedramdanfans</b></a> \n#مافيا_#mohamed_ramadan @ Bani Suwayf, Bani Suwayf, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsI11fRA2GStrFCga8qVishmszWVU1IsjhnSAk0/?utm_source=ig_twitter_share&igshid=812kf0qwyjkq" dir="ltr" href="https://t.co/aCTSri6EsX" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsI11fRA2GStrFCga8qVishmszWVU1IsjhnSAk0/?utm_source=ig_twitter_share&igshid=812kf0qwyjkq"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsI11fRA2GSt</span><span class="invisible">rFCga8qVishmszWVU1IsjhnSAk0/?utm_source=ig_twitter_share&igshid=812kf0qwyjkq</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086893 | P_Wissam | Wissam El-gayaR | 541341840 | 1080494649855410177 | https://twitter.com/P_Wissam/status/1080494649855410177 | 2019-01-02 16:02:53 | 1546444973 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | When you focus on being a blessing, God makes sure that you are always blessed in abundance.\n.\n#me #egypt #london #photo #photography #hairstyles #style #mensfashion #instagram #beard… https://www.instagram.com/p/BsI17GEDJFC/?utm_source=ig_twitter_share&igshid=1epwlvl7qnorh … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">When you focus on being a blessing, God makes sure that you are always blessed in abundance.<img alt="🤲" aria-label="Emoji: Palms up together" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f932.png" title="Palms up together"/><img alt="🌺" aria-label="Emoji: Hibiscus" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f33a.png" title="Hibiscus"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/me?src=hash"><s>#</s><b>me</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/london?src=hash"><s>#</s><b>london</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photo?src=hash"><s>#</s><b>photo</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photography?src=hash"><s>#</s><b>photography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/hairstyles?src=hash"><s>#</s><b>hairstyles</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/style?src=hash"><s>#</s><b>style</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mensfashion?src=hash"><s>#</s><b>mensfashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/instagram?src=hash"><s>#</s><b>instagram</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/beard?src=hash"><s>#</s><b>beard</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsI17GEDJFC/?utm_source=ig_twitter_share&igshid=1epwlvl7qnorh" dir="ltr" href="https://t.co/rA7QwkBBAu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsI17GEDJFC/?utm_source=ig_twitter_share&igshid=1epwlvl7qnorh"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsI17GEDJFC/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1epwlvl7qnorh</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086903 | kodaiiseki | 古代遺跡な旅デスク | 123222752 | 1080449332640399360 | https://twitter.com/kodaiiseki/status/1080449332640399360 | 2019-01-02 13:02:49 | 1546434169 | 0 | 0 | 2 | 0 | NaN | NaN | NaN | 明けましておめでとうございます\n今年の一番人気はきっと#エジプト #ナイル川 の岸辺に#クルーズ 船が列をなしている光景が戻ってきました。今年もよろしくお願いします!\n#海外旅行 #エジプト旅行 #遺跡 #世界遺産 #船 #川 場所: Luxor, Egypt https://www.instagram.com/p/BsIgfU4lrea/?utm_source=ig_twitter_share&igshid=41gs0nbspw6o … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ja">明けましておめでとうございます<img alt="🎉" aria-label="Emoji: Party popper" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f389.png" title="Party popper"/>\n今年の一番人気はきっと#エジプト <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/%E3%83%8A%E3%82%A4%E3%83%AB%E5%B7%9D?src=hash"><s>#</s><b>ナイル川</b></a> の岸辺に#クルーズ 船<img alt="🚢" aria-label="Emoji: Ship" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6a2.png" title="Ship"/>が列をなしている光景が戻ってきました。今年もよろしくお願いします!\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/%E6%B5%B7%E5%A4%96%E6%97%85%E8%A1%8C?src=hash"><s>#</s><b>海外旅行</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/%E3%82%A8%E3%82%B8%E3%83%97%E3%83%88%E6%97%85%E8%A1%8C?src=hash"><s>#</s><b>エジプト旅行</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/%E9%81%BA%E8%B7%A1?src=hash"><s>#</s><b>遺跡</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/%E4%B8%96%E7%95%8C%E9%81%BA%E7%94%A3?src=hash"><s>#</s><b>世界遺産</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/%E8%88%B9?src=hash"><s>#</s><b>船</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/%E5%B7%9D?src=hash"><s>#</s><b>川</b></a> 場所: Luxor, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsIgfU4lrea/?utm_source=ig_twitter_share&igshid=41gs0nbspw6o" dir="ltr" href="https://t.co/TtQNl6daSu" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsIgfU4lrea/?utm_source=ig_twitter_share&igshid=41gs0nbspw6o"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsIgfU4lrea/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=41gs0nbspw6o</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086911 | judymix007 | Jude Isaac | 558122465 | 1080403640358076417 | https://twitter.com/judymix007/status/1080403640358076417 | 2019-01-02 10:01:15 | 1546423275 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #vacamode #visittempleofedfu #haitiannomadnye #haitiannomadtrips #greattimes #withgreatpeople @ Temple of Edfu https://www.instagram.com/p/BsIMjRels1W/?utm_source=ig_twitter_share&igshid=q539tzg9mci6 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/vacamode?src=hash"><s>#</s><b>vacamode</b></a><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/visittempleofedfu?src=hash"><s>#</s><b>visittempleofedfu</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/haitiannomadnye?src=hash"><s>#</s><b>haitiannomadnye</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/haitiannomadtrips?src=hash"><s>#</s><b>haitiannomadtrips</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/greattimes?src=hash"><s>#</s><b>greattimes</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/withgreatpeople?src=hash"><s>#</s><b>withgreatpeople</b></a><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Temple of Edfu <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsIMjRels1W/?utm_source=ig_twitter_share&igshid=q539tzg9mci6" dir="ltr" href="https://t.co/E6m7fO6udC" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsIMjRels1W/?utm_source=ig_twitter_share&igshid=q539tzg9mci6"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsIMjRels1W/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=q539tzg9mci6</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086920 | NouraJoesph | noura joesph minaj | 251535769 | 1080344850011246592 | https://twitter.com/NouraJoesph/status/1080344850011246592 | 2019-01-02 06:07:38 | 1546409258 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | My books wishlist for 2019 @ Egypt https://www.instagram.com/p/BsHxz-0n48v/?utm_source=ig_twitter_share&igshid=1xypkqbl1kzw0 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">My books wishlist for 2019 <img alt="💙" aria-label="Emoji: Blue heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f499.png" title="Blue heart"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsHxz-0n48v/?utm_source=ig_twitter_share&igshid=1xypkqbl1kzw0" dir="ltr" href="https://t.co/zT8JZBnn0D" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsHxz-0n48v/?utm_source=ig_twitter_share&igshid=1xypkqbl1kzw0"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsHxz-0n48v/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1xypkqbl1kzw0</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086922 | HorseRidingHrg | HorseTrips Hurghada #HorseTrips_Hurghada | 284590315 | 1080335920354811906 | https://twitter.com/HorseRidingHrg/status/1080335920354811906 | 2019-01-02 05:32:09 | 1546407129 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Пока мамы работают, дети заняты творческими занятиями на конюшне HorseTrips Hurghada #HorseTrips_Hurghada\nРисуем что? Конечно же лошадей :) @ Horsetrips Hurghada https://www.instagram.com/p/BsHtwK6gm-u/?utm_source=ig_twitter_share&igshid=1iy6fhbgcxg20 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ru">Пока мамы работают, дети заняты творческими занятиями на конюшне HorseTrips Hurghada <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/HorseTrips_Hurghada?src=hash"><s>#</s><b>HorseTrips_Hurghada</b></a>\nРисуем что? Конечно же лошадей :) @ Horsetrips Hurghada <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsHtwK6gm-u/?utm_source=ig_twitter_share&igshid=1iy6fhbgcxg20" dir="ltr" href="https://t.co/Ev3feWWi95" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsHtwK6gm-u/?utm_source=ig_twitter_share&igshid=1iy6fhbgcxg20"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsHtwK6gm-u/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1iy6fhbgcxg20</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086925 | m7med_N3em0 | Ebn(Ñ3êm_🇳.🇪.🇲.🇴🔱☯) | 942729036559798272 | 1080271696316297216 | https://twitter.com/m7med_N3em0/status/1080271696316297216 | 2019-01-02 01:16:57 | 1546391817 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | *الي..صرف..وادلع..أحسن..من..الي..حوش..ومات* @ Bani Suwayf, Bani Suwayf, Egypt https://www.instagram.com/p/BsHQiuBHVZwJHVuVBtnvhxp5M39DubFshxv4Qc0/?utm_source=ig_twitter_share&igshid=1q14tm773v1ne … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">*الي..صرف..وادلع<img alt="🌬" aria-label="Emoji: Wind blowing face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f32c.png" title="Wind blowing face"/><img alt="😎" aria-label="Emoji: Smiling face with sunglasses" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60e.png" title="Smiling face with sunglasses"/>..أحسن..من..الي..حوش..ومات<img alt="😅" aria-label="Emoji: Smiling face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f605.png" title="Smiling face with open mouth and cold sweat"/><img alt="🤙🏻" aria-label="Emoji: Call me hand (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f919-1f3fb.png" title="Call me hand (light skin tone)"/>* @ Bani Suwayf, Bani Suwayf, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsHQiuBHVZwJHVuVBtnvhxp5M39DubFshxv4Qc0/?utm_source=ig_twitter_share&igshid=1q14tm773v1ne" dir="ltr" href="https://t.co/fg9zj1UHFM" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsHQiuBHVZwJHVuVBtnvhxp5M39DubFshxv4Qc0/?utm_source=ig_twitter_share&igshid=1q14tm773v1ne"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsHQiuBHVZwJ</span><span class="invisible">HVuVBtnvhxp5M39DubFshxv4Qc0/?utm_source=ig_twitter_share&igshid=1q14tm773v1ne</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086927 | Se7enex7x | ✊🏻Śė٧ēń £x 🖤🕶 | 2961183916 | 1080245051173859328 | https://twitter.com/Se7enex7x/status/1080245051173859328 | 2019-01-01 23:31:04 | 1546385464 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | و يا سمرا بعشقگ انا متيم @ Mallawi https://www.instagram.com/p/BsHEK-nnn6d1J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="fa">و يا سمرا بعشقگ انا متيم <img alt="🖤" aria-label="Emoji: Black heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f5a4.png" title="Black heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Mallawi <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsHEK-nnn6d1J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy" dir="ltr" href="https://t.co/moe40stKTW" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsHEK-nnn6d1J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsHEK-nnn6d1</span><span class="invisible">J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086930 | P_Wissam | Wissam El-gayaR | 541341840 | 1080221233051041792 | https://twitter.com/P_Wissam/status/1080221233051041792 | 2019-01-01 21:56:26 | 1546379786 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | *New start* \n.\n#me #egypt #london #photo #photography #hairstyles #style #mensfashion #instagram #beard #sexy #bmw #fashion #fashionblogger #styleblogger\n#follow4follow… https://www.instagram.com/p/BsG5mXUjwlJ/?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">*New start* <img alt="👌🏻" aria-label="Emoji: Ok hand sign (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c-1f3fb.png" title="Ok hand sign (light skin tone)"/><img alt="🖤" aria-label="Emoji: Black heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f5a4.png" title="Black heart"/><img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/>\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/me?src=hash"><s>#</s><b>me</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/london?src=hash"><s>#</s><b>london</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photo?src=hash"><s>#</s><b>photo</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photography?src=hash"><s>#</s><b>photography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/hairstyles?src=hash"><s>#</s><b>hairstyles</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/style?src=hash"><s>#</s><b>style</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mensfashion?src=hash"><s>#</s><b>mensfashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/instagram?src=hash"><s>#</s><b>instagram</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/beard?src=hash"><s>#</s><b>beard</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sexy?src=hash"><s>#</s><b>sexy</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/bmw?src=hash"><s>#</s><b>bmw</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashion?src=hash"><s>#</s><b>fashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashionblogger?src=hash"><s>#</s><b>fashionblogger</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/styleblogger?src=hash"><s>#</s><b>styleblogger</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/follow4follow?src=hash"><s>#</s><b>follow4follow</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsG5mXUjwlJ/?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb" dir="ltr" href="https://t.co/r1OCJRuJMN" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsG5mXUjwlJ/?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsG5mXUjwlJ/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086932 | Ahmedel_ewany | العو . 🤡 | 344044059 | 1080208188853620741 | https://twitter.com/Ahmedel_ewany/status/1080208188853620741 | 2019-01-01 21:04:36 | 1546376676 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | بلكونتي .. الشتاء و هدوءه الفظيع .. كباية القهوة .. صوت أم كلثوم .. هذه المساحه الشاسعه من الظلام الدامس إللي في أخره نقط نور \nحقيقي من أحلى لحظات… https://www.instagram.com/p/BsGzp1dA-4Tqh_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بلكونتي .. الشتاء و هدوءه الفظيع <img alt="❄️" aria-label="Emoji: Snowflake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2744.png" title="Snowflake"/> .. كباية القهوة <img alt="☕" aria-label="Emoji: Hot beverage" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2615.png" title="Hot beverage"/> .. صوت أم كلثوم <img alt="🎼" aria-label="Emoji: Musical score" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3bc.png" title="Musical score"/> .. هذه المساحه الشاسعه من الظلام الدامس إللي في أخره نقط نور <img alt="🌌" aria-label="Emoji: Milky way" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f30c.png" title="Milky way"/>\nحقيقي من أحلى لحظات… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsGzp1dA-4Tqh_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l" dir="ltr" href="https://t.co/LSZGJuBbkO" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsGzp1dA-4Tqh_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsGzp1dA-4Tq</span><span class="invisible">h_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 4.0 |
1086947 | Se7enex7x | ✊🏻Śė٧ēń £x 🖤🕶 | 2961183916 | 1080245051173859328 | https://twitter.com/Se7enex7x/status/1080245051173859328 | 2019-01-01 23:31:04 | 1546385464 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | و يا سمرا بعشقگ انا متيم @ Mallawi https://www.instagram.com/p/BsHEK-nnn6d1J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="fa">و يا سمرا بعشقگ انا متيم <img alt="🖤" aria-label="Emoji: Black heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f5a4.png" title="Black heart"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/> @ Mallawi <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsHEK-nnn6d1J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy" dir="ltr" href="https://t.co/moe40stKTW" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsHEK-nnn6d1J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsHEK-nnn6d1</span><span class="invisible">J8ngnN0JD7Lh3VxCac4ICker3M0/?utm_source=ig_twitter_share&igshid=b3akgd10bswy</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 1.0 |
1086950 | P_Wissam | Wissam El-gayaR | 541341840 | 1080221233051041792 | https://twitter.com/P_Wissam/status/1080221233051041792 | 2019-01-01 21:56:26 | 1546379786 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | *New start* \n.\n#me #egypt #london #photo #photography #hairstyles #style #mensfashion #instagram #beard #sexy #bmw #fashion #fashionblogger #styleblogger\n#follow4follow… https://www.instagram.com/p/BsG5mXUjwlJ/?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">*New start* <img alt="👌🏻" aria-label="Emoji: Ok hand sign (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f44c-1f3fb.png" title="Ok hand sign (light skin tone)"/><img alt="🖤" aria-label="Emoji: Black heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f5a4.png" title="Black heart"/><img alt="🌸" aria-label="Emoji: Cherry blossom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f338.png" title="Cherry blossom"/>\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/me?src=hash"><s>#</s><b>me</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/london?src=hash"><s>#</s><b>london</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photo?src=hash"><s>#</s><b>photo</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/photography?src=hash"><s>#</s><b>photography</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/hairstyles?src=hash"><s>#</s><b>hairstyles</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/style?src=hash"><s>#</s><b>style</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/mensfashion?src=hash"><s>#</s><b>mensfashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/instagram?src=hash"><s>#</s><b>instagram</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/beard?src=hash"><s>#</s><b>beard</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/sexy?src=hash"><s>#</s><b>sexy</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/bmw?src=hash"><s>#</s><b>bmw</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashion?src=hash"><s>#</s><b>fashion</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/fashionblogger?src=hash"><s>#</s><b>fashionblogger</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/styleblogger?src=hash"><s>#</s><b>styleblogger</b></a>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/follow4follow?src=hash"><s>#</s><b>follow4follow</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsG5mXUjwlJ/?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb" dir="ltr" href="https://t.co/r1OCJRuJMN" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsG5mXUjwlJ/?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsG5mXUjwlJ/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=f7gjq7dqhmfb</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
1086952 | Ahmedel_ewany | العو . 🤡 | 344044059 | 1080208188853620741 | https://twitter.com/Ahmedel_ewany/status/1080208188853620741 | 2019-01-01 21:04:36 | 1546376676 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | بلكونتي .. الشتاء و هدوءه الفظيع .. كباية القهوة .. صوت أم كلثوم .. هذه المساحه الشاسعه من الظلام الدامس إللي في أخره نقط نور \nحقيقي من أحلى لحظات… https://www.instagram.com/p/BsGzp1dA-4Tqh_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بلكونتي .. الشتاء و هدوءه الفظيع <img alt="❄️" aria-label="Emoji: Snowflake" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2744.png" title="Snowflake"/> .. كباية القهوة <img alt="☕" aria-label="Emoji: Hot beverage" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2615.png" title="Hot beverage"/> .. صوت أم كلثوم <img alt="🎼" aria-label="Emoji: Musical score" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3bc.png" title="Musical score"/> .. هذه المساحه الشاسعه من الظلام الدامس إللي في أخره نقط نور <img alt="🌌" aria-label="Emoji: Milky way" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f30c.png" title="Milky way"/>\nحقيقي من أحلى لحظات… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsGzp1dA-4Tqh_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l" dir="ltr" href="https://t.co/LSZGJuBbkO" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsGzp1dA-4Tqh_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsGzp1dA-4Tq</span><span class="invisible">h_aiX6NfvHIV9q7LZCuuPAw2mo0/?utm_source=ig_twitter_share&igshid=1mvgfoa35bk1l</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 4.0 |
1086970 | P_Wissam | Wissam El-gayaR | 541341840 | 1080046106816495616 | https://twitter.com/P_Wissam/status/1080046106816495616 | 2019-01-01 10:20:32 | 1546338032 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | HapPy New YeaR 2019 to all my friends and my lovely followers.. I wish you a year full of love and happiness\nكل سنة وكل الناس بخير ويارب تبقي سنة سعيدة عليكم \nAll my private… https://www.instagram.com/p/BsFp9a5jnBL/?utm_source=ig_twitter_share&igshid=2l480h2mfrci … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">HapPy New YeaR 2019 <img alt="🎊" aria-label="Emoji: Confetti ball" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f38a.png" title="Confetti ball"/><img alt="🎆" aria-label="Emoji: Fireworks" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f386.png" title="Fireworks"/><img alt="🎈" aria-label="Emoji: Balloon" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f388.png" title="Balloon"/> to all my friends and my lovely followers.. I wish you a year full of love and happiness<img alt="🥰" aria-label="Emoji: Smiling face with 3 hearts" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f970.png" title="Smiling face with 3 hearts"/><img alt="💋" aria-label="Emoji: Kiss mark" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f48b.png" title="Kiss mark"/><img alt="😘" aria-label="Emoji: Face throwing a kiss" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f618.png" title="Face throwing a kiss"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\nكل سنة وكل الناس بخير ويارب تبقي سنة سعيدة عليكم <img alt="😋" aria-label="Emoji: Face savouring delicious food" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f60b.png" title="Face savouring delicious food"/><img alt="💋" aria-label="Emoji: Kiss mark" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f48b.png" title="Kiss mark"/><img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\n<img alt="⚠️" aria-label="Emoji: Warning sign" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/26a0.png" title="Warning sign"/>All my private… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsFp9a5jnBL/?utm_source=ig_twitter_share&igshid=2l480h2mfrci" dir="ltr" href="https://t.co/Mf9S7vcMj6" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsFp9a5jnBL/?utm_source=ig_twitter_share&igshid=2l480h2mfrci"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsFp9a5jnBL/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=2l480h2mfrci</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 6.0 |
1086984 | abo_elhilali | El Hlali | 812303822089502720 | 1079904728946016258 | https://twitter.com/abo_elhilali/status/1079904728946016258 | 2019-01-01 00:58:45 | 1546304325 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | Bonne années babie\n#EL Hlalipic.twitter.com/GQL3qpsc3n | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="fr">Bonne années babie<img alt="♥️" aria-label="Emoji: Heart suit" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2665.png" title="Heart suit"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/EL?src=hash"><s>#</s><b>EL</b></a> Hlali<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/GQL3qpsc3n">pic.twitter.com/GQL3qpsc3n</a></p> | 1.0 |
1086985 | lizzcoykendall | Lizz Coykendall | 97603700 | 1079897834902700032 | https://twitter.com/lizzcoykendall/status/1079897834902700032 | 2019-01-01 00:31:22 | 1546302682 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | Traveling the world with the love of my life was an absolutely incredible experience where to next? #travelegypt #candid #walklikeanegyptian @ Temple of Karnak https://www.instagram.com/p/BsEmiB4huau/?utm_source=ig_twitter_share&igshid=4jf4v371achg … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Traveling the world with the love of my life was an absolutely incredible experience<img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/><img alt="🌍" aria-label="Emoji: Earth globe europe-africa" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f30d.png" title="Earth globe europe-africa"/><img alt="✈️" aria-label="Emoji: Airplane" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2708.png" title="Airplane"/> where to next? <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/travelegypt?src=hash"><s>#</s><b>travelegypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/candid?src=hash"><s>#</s><b>candid</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/walklikeanegyptian?src=hash"><s>#</s><b>walklikeanegyptian</b></a> @ Temple of Karnak <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsEmiB4huau/?utm_source=ig_twitter_share&igshid=4jf4v371achg" dir="ltr" href="https://t.co/aZUdyV1E5D" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsEmiB4huau/?utm_source=ig_twitter_share&igshid=4jf4v371achg"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsEmiB4huau/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=4jf4v371achg</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | 2.0 |
386225 rows × 17 columns
Negative tweets
username | fullname | user_id | tweet_id | tweet_url | timestamp | timestamp_epochs | replies | retweets | likes | is_retweet | retweeter_username | retweeter_userid | retweet_id | text | html | feels | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
14 | KAbotabel | Khariaa Abotabel | 1111812254931042309 | 1154179450000629760 | https://twitter.com/KAbotabel/status/1154179450000629760 | 2019-07-24 23:59:59 | 1564012799 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | حنموت بكل عشان تغفلت....\nحنموت عشان تغفلت والله واعر بكل \nردوااا بالك تغفلوا حد راه تقتلوه ...والله قتل ينقتل يانويرتي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حنموت بكل عشان تغفلت....\nحنموت عشان تغفلت والله واعر بكل \nردوااا بالك تغفلوا حد راه تقتلوه ...والله قتل ينقتل يانويرتي <img alt="🤦♀️" aria-label="Emoji: Woman facepalming" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f926-200d-2640-fe0f.png" title="Woman facepalming"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
45 | lamia_mohamed27 | Loliiitaaaaaaaaaaaaaaa 🌚🌻💛 | 916105591319351296 | 1154179253350600705 | https://twitter.com/lamia_mohamed27/status/1154179253350600705 | 2019-07-24 23:59:12 | 1564012752 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ليه يا رب انا كنت ما صدقت هديت و هعدي و هmove on ايه ال حصل دا !! | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ليه يا رب انا كنت ما صدقت هديت و هعدي و هmove on ايه ال حصل دا <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>!!</p> | -1.0 |
49 | zozz_ali | زينب | 3380348541 | 1154179216960839681 | https://twitter.com/zozz_ali/status/1154179216960839681 | 2019-07-24 23:59:03 | 1564012743 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | حتى بعد ما شوفتيني؟ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">حتى بعد ما شوفتيني؟<img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
71 | YoMna1196 | Yomna Mahmoud | 981085409991122944 | 1154179058059681795 | https://twitter.com/YoMna1196/status/1154179058059681795 | 2019-07-24 23:58:25 | 1564012705 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | إذا كان هُناك ما هو أشد خُطورة من اﻹفراط فى المُخدرات، فمِن دون شك هو اﻹفراط فى الوعى وإدراك اﻷشياء \n\n- كافكا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">إذا كان هُناك ما هو أشد خُطورة من اﻹفراط فى المُخدرات، فمِن دون شك هو اﻹفراط فى الوعى وإدراك اﻷشياء <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>\n\n- كافكا</p> | -1.0 |
74 | KarimSaeed_dr | Karim Saeed 🌚 | 345618129 | 1154179044738523138 | https://twitter.com/KarimSaeed_dr/status/1154179044738523138 | 2019-07-24 23:58:22 | 1564012702 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | تعملها أد ايه ليالي الامتحانات ديه من مدة السنة كلها ؟ https://twitter.com/YourFavTarek/status/1154178680870121472 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">تعملها أد ايه ليالي الامتحانات ديه من مدة السنة كلها ؟ <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/YourFavTarek/status/1154178680870121472" dir="ltr" href="https://t.co/zYaXrlGjJd" rel="nofollow noopener" target="_blank" title="https://twitter.com/YourFavTarek/status/1154178680870121472"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/YourFavTarek/s</span><span class="invisible">tatus/1154178680870121472</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
85 | Drmostafa36 | Mostafa abdelsalam | 3042869883 | 1154178953789263872 | https://twitter.com/Drmostafa36/status/1154178953789263872 | 2019-07-24 23:58:00 | 1564012680 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | دلوقت ياجماعه حد يجاوبني اي ده!؟؟؟pic.twitter.com/Jd0gPfVtTY | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">دلوقت ياجماعه حد يجاوبني اي ده!؟؟؟<img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/Jd0gPfVtTY">pic.twitter.com/Jd0gPfVtTY</a></p> | -1.0 |
103 | thomas99_s | توماس الدين صبرى 👑 | 3986797468 | 1154178768753180675 | https://twitter.com/thomas99_s/status/1154178768753180675 | 2019-07-24 23:57:16 | 1564012636 | 1 | 1 | 0 | 0 | NaN | NaN | NaN | الصبر يارب https://twitter.com/andrew_ramses/status/1154176966779686912 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">الصبر يارب <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/andrew_ramses/status/1154176966779686912" dir="ltr" href="https://t.co/c3dXXJz28V" rel="nofollow noopener" target="_blank" title="https://twitter.com/andrew_ramses/status/1154176966779686912"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/andrew_ramses/</span><span class="invisible">status/1154176966779686912</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
113 | 3zzRafat | 3žž Râfât(غيبوبة😅)👮👮 | 1080819180465721349 | 1154178693524332544 | https://twitter.com/3zzRafat/status/1154178693524332544 | 2019-07-24 23:56:58 | 1564012618 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | هو غالبا كدة بنعمل تقدير لناس متستاهلش علفكرة الواحد والله مش مستني رد أو شكر من حد ميعرفوش انو خلاص مش فارقة معانا وجودهم بقي شئ مقرف فعلا وبيقولو الحاجة ويعملو عكسها بس قبل ما تشوفو عيوب الناس شوفو عيوبكو الاول فعلا الناقص ناقص قبل م تعملو فعل فكرو هيكون رد الفعل اي بعدين | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">هو غالبا كدة بنعمل تقدير لناس متستاهلش علفكرة الواحد والله مش مستني رد أو شكر من حد ميعرفوش انو خلاص مش فارقة معانا وجودهم بقي شئ مقرف فعلا وبيقولو الحاجة ويعملو عكسها بس قبل ما تشوفو عيوب الناس شوفو عيوبكو الاول <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> فعلا الناقص ناقص قبل م تعملو فعل فكرو هيكون رد الفعل اي بعدين</p> | -1.0 |
117 | hbdolpash | ℍℬⅅᝪℒ | 1122841302503178240 | 1154178671420289030 | https://twitter.com/hbdolpash/status/1154178671420289030 | 2019-07-24 23:56:53 | 1564012613 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | لا برضوا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لا برضوا <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/></p> | -1.0 |
134 | menakhaled48 | menna khaled | 787907003020615680 | 1154178522811965441 | https://twitter.com/menakhaled48/status/1154178522811965441 | 2019-07-24 23:56:18 | 1564012578 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ياااا ربي ع العالم بتوع تجميع الفولورز دول تفاهة ما بعدها اقسم بالله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ياااا ربي ع العالم بتوع تجميع الفولورز دول <img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/><img alt="😑" aria-label="Emoji: Expressionless face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f611.png" title="Expressionless face"/> تفاهة ما بعدها اقسم بالله</p> | -1.0 |
155 | __shahenda__ | ShaHenDa | 1013637325614612480 | 1154178345355137024 | https://twitter.com/__shahenda__/status/1154178345355137024 | 2019-07-24 23:55:35 | 1564012535 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | المفروض انا كدا افرح ولا ازعل عموما الله يسامحك | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">المفروض انا كدا افرح ولا ازعل عموما الله يسامحك<img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/></p> | -1.0 |
189 | Diaarefaat2 | 𝓓 𝓲𝓐 𝓐 𝓡 𝓔 𝓕 𝓐 𝓐𝓐 𝓣💙🌍 | 1047118455110082565 | 1154178079088140293 | https://twitter.com/Diaarefaat2/status/1154178079088140293 | 2019-07-24 23:54:32 | 1564012472 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | اانا تحت عييني بقا الوان من قلة النووم | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اانا تحت عييني بقا الوان من قلة النووم<img alt="😴" aria-label="Emoji: Sleeping face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f634.png" title="Sleeping face"/></p> | -1.0 |
219 | mohamedkamal731 | Kemo | 3436992459 | 1154177801198735360 | https://twitter.com/mohamedkamal731/status/1154177801198735360 | 2019-07-24 23:53:26 | 1564012406 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | نقدي للاسف | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">نقدي للاسف <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/></p> | -1.0 |
228 | hbdolpash | ℍℬⅅᝪℒ | 1122841302503178240 | 1154177654377107457 | https://twitter.com/hbdolpash/status/1154177654377107457 | 2019-07-24 23:52:51 | 1564012371 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أنا يا بنتي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أنا يا بنتي <img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
233 | NaderMo51614035 | 4ar2awy🏹 | 971466491982962694 | 1154177610718568451 | https://twitter.com/NaderMo51614035/status/1154177610718568451 | 2019-07-24 23:52:40 | 1564012360 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | حسبي الله ونعم الوكيل لو دا فعلا حقيقي .. قمة الظلم والحرقة لما يتسرق مجهودك وتعبك كدا ي من ف الارض تذكر ان عند الله يجتمع الخصوم https://twitter.com/ElbazAbdo0001/status/1153740637751185408 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">حسبي الله ونعم الوكيل لو دا فعلا حقيقي .. قمة الظلم والحرقة لما يتسرق مجهودك وتعبك كدا ي من ف الارض تذكر ان عند الله يجتمع الخصوم <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/ElbazAbdo0001/status/1153740637751185408" dir="ltr" href="https://t.co/f9qRpZnjKQ" rel="nofollow noopener" target="_blank" title="https://twitter.com/ElbazAbdo0001/status/1153740637751185408"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/ElbazAbdo0001/</span><span class="invisible">status/1153740637751185408</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
240 | hagag_yasmin | Yasmin Hagag | 722440364146237441 | 1154177529403641857 | https://twitter.com/hagag_yasmin/status/1154177529403641857 | 2019-07-24 23:52:21 | 1564012341 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ع البركه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ع البركه <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/></p> | -1.0 |
244 | hbdolpash | ℍℬⅅᝪℒ | 1122841302503178240 | 1154177472008785920 | https://twitter.com/hbdolpash/status/1154177472008785920 | 2019-07-24 23:52:07 | 1564012327 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | اه والله | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اه والله <img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
267 | DrAbdElHade | د / زفت الطين مع حضرتك | 1646827537 | 1154177325539450882 | https://twitter.com/DrAbdElHade/status/1154177325539450882 | 2019-07-24 23:51:32 | 1564012292 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | لسة فعلا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">لسة فعلا <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
317 | hbdolpash | ℍℬⅅᝪℒ | 1122841302503178240 | 1154176766686220294 | https://twitter.com/hbdolpash/status/1154176766686220294 | 2019-07-24 23:49:19 | 1564012159 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | من عنيه | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">من عنيه <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="😹" aria-label="Emoji: Cat face with tears of joy" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f639.png" title="Cat face with tears of joy"/></p> | -1.0 |
320 | FatmaMu40521028 | فاطمة..🧘🏻♀️ | 1098615734450696193 | 1154176701234077696 | https://twitter.com/FatmaMu40521028/status/1154176701234077696 | 2019-07-24 23:49:03 | 1564012143 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | ربنا يهدى الجميع | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ربنا يهدى الجميع <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
332 | hagag_yasmin | Yasmin Hagag | 722440364146237441 | 1154176638042726403 | https://twitter.com/hagag_yasmin/status/1154176638042726403 | 2019-07-24 23:48:48 | 1564012128 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | ده الهدف الأساسي راحه وسرعه ف الوصول | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ده الهدف الأساسي <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/> راحه وسرعه ف الوصول</p> | -1.0 |
367 | malshmari911 | مَ | 1148008333842026498 | 1154176216947204096 | https://twitter.com/malshmari911/status/1154176216947204096 | 2019-07-24 23:47:08 | 1564012028 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | احسني باصيح على مصر | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">احسني باصيح على مصر <img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
379 | Muhammed_Azzazi | عَزَّازيِّ | 305716579 | 1154176093378813963 | https://twitter.com/Muhammed_Azzazi/status/1154176093378813963 | 2019-07-24 23:46:38 | 1564011998 | 1 | 0 | 1 | 0 | NaN | NaN | NaN | اممممم انت CML و لا ايه امممممhttps://twitter.com/areej_mohamed22/status/1153808020511453184 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">اممممم انت CML و لا ايه اممممم<img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/areej_mohamed22/status/1153808020511453184" dir="ltr" href="https://t.co/JUBwtctS46" rel="nofollow noopener" target="_blank" title="https://twitter.com/areej_mohamed22/status/1153808020511453184"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/areej_mohamed2</span><span class="invisible">2/status/1153808020511453184</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
390 | MshMsh_elshami | Msh Msh | 1076947464882667521 | 1154175963208572928 | https://twitter.com/MshMsh_elshami/status/1154175963208572928 | 2019-07-24 23:46:07 | 1564011967 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اه والله محدش حاسس بقيمتنا خالص | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">اه والله محدش حاسس بقيمتنا خالص <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
433 | israa_ah161595 | israa ahmed | 814832986453635072 | 1154175450798796805 | https://twitter.com/israa_ah161595/status/1154175450798796805 | 2019-07-24 23:44:05 | 1564011845 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | اللهم شفاء لا يغادر سقما https://twitter.com/hager1900/status/1154072816930689024 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="4" lang="ar">اللهم شفاء لا يغادر سقما <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><a class="twitter-timeline-link u-hidden" data-expanded-url="https://twitter.com/hager1900/status/1154072816930689024" dir="ltr" href="https://t.co/DlNSmn0qdN" rel="nofollow noopener" target="_blank" title="https://twitter.com/hager1900/status/1154072816930689024"><span class="tco-ellipsis"></span><span class="invisible">https://</span><span class="js-display-url">twitter.com/hager1900/stat</span><span class="invisible">us/1154072816930689024</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
452 | RihanyEl | moatasem El Rihany | 1055735066360512512 | 1154175317663264775 | https://twitter.com/RihanyEl/status/1154175317663264775 | 2019-07-24 23:43:33 | 1564011813 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | كل نتيجة وليها مقدمات ......\nوالحالة اللي انا فيها دلوقتي وقبل النتيجة بتقول اني داخل ع اسوأ حالاتي النفسية ع الاطلاق \nبتمني ان كل حاجة ترجع لمسارها الطبيعي | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">كل نتيجة وليها مقدمات ......\nوالحالة اللي انا فيها دلوقتي وقبل النتيجة بتقول اني داخل ع اسوأ حالاتي النفسية ع الاطلاق \nبتمني ان كل حاجة ترجع لمسارها الطبيعي<img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/></p> | -1.0 |
505 | 7azem_uwk | حازم 🇦🇹 | 2615972585 | 1154174754707910656 | https://twitter.com/7azem_uwk/status/1154174754707910656 | 2019-07-24 23:41:19 | 1564011679 | 0 | 1 | 1 | 0 | NaN | NaN | NaN | +11111 | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">+11111<img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/><img alt="😭" aria-label="Emoji: Loudly crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62d.png" title="Loudly crying face"/></p> | -1.0 |
507 | karimelfarrag | Karim. | 2468501455 | 1154174746726150144 | https://twitter.com/karimelfarrag/status/1154174746726150144 | 2019-07-24 23:41:17 | 1564011677 | 1 | 0 | 0 | 0 | NaN | NaN | NaN | في الكافي بريك عادي تحت رعاية نجلاءباكس | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">في الكافي بريك عادي تحت رعاية نجلاءباكس <img alt="😷" aria-label="Emoji: Face with medical mask" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f637.png" title="Face with medical mask"/></p> | -1.0 |
530 | KarimSaeed_dr | Karim Saeed 🌚 | 345618129 | 1154174481826549761 | https://twitter.com/KarimSaeed_dr/status/1154174481826549761 | 2019-07-24 23:40:14 | 1564011614 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | و الله الذكريات ديه بتخلي قلب الواحد يmelt كده من كتر ما وحشته الحاجات ديه و الروقان و الدلع بتاع الطفولة | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">و الله الذكريات ديه بتخلي قلب الواحد يmelt كده من كتر ما وحشته الحاجات ديه و الروقان و الدلع بتاع الطفولة <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -2.0 |
565 | esoo_khalil | Esraa Khalil | 790844774085525504 | 1154174099993837573 | https://twitter.com/esoo_khalil/status/1154174099993837573 | 2019-07-24 23:38:43 | 1564011523 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ليه احساس الخوف والضعف بقي متملكني دايما\nانا عمري ما كنت كنت كدا | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ليه احساس الخوف والضعف بقي متملكني دايما<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>\nانا عمري ما كنت كنت كدا<img alt="😓" aria-label="Emoji: Face with cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f613.png" title="Face with cold sweat"/></p> | -2.0 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
1084425 | jobs_consultan | الكهرباء للاستشارات | 814025060 | 1094604472435830784 | https://twitter.com/jobs_consultan/status/1094604472435830784 | 2019-02-10 14:30:17 | 1549809017 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | pic.twitter.com/XbtXHdOjWT | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/XbtXHdOjWT">pic.twitter.com/XbtXHdOjWT</a></p> | -1.0 |
1084509 | amrgad36 | Amr Abdel aal | 704796951 | 1094025561104502784 | https://twitter.com/amrgad36/status/1094025561104502784 | 2019-02-09 00:09:54 | 1549670994 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | قولي غاب مش فاكره شكلو @ Luxor, Egypt https://www.instagram.com/p/Bto_FkaABdv/?utm_source=ig_twitter_share&igshid=g2kf34n3exrw … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">قولي غاب مش فاكره شكلو <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/> @ Luxor, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bto_FkaABdv/?utm_source=ig_twitter_share&igshid=g2kf34n3exrw" dir="ltr" href="https://t.co/gNyxdc6zsb" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bto_FkaABdv/?utm_source=ig_twitter_share&igshid=g2kf34n3exrw"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bto_FkaABdv/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=g2kf34n3exrw</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1084737 | travelbloggerES | i am travelblogger | 2883931558 | 1092701426449473536 | https://twitter.com/travelbloggerES/status/1092701426449473536 | 2019-02-05 08:28:16 | 1549355296 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | #iamtb .\n#TravelRepost snowypalmtrees ..\n مصر Egypt / Egipto .\n・\n Ready for more adventures, what is your top destination for this year ? .\n Lista para nuevas aventuras, cuál es… https://www.instagram.com/p/Btfk6ixHH0J/?utm_source=ig_twitter_share&igshid=2g0fvcggy7sx … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/iamtb?src=hash"><s>#</s><b>iamtb</b></a> <img alt="🛫" aria-label="Emoji: Airplane departure" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6eb.png" title="Airplane departure"/> .\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/TravelRepost?src=hash"><s>#</s><b>TravelRepost</b></a> <img alt="🤳" aria-label="Emoji: Selfie" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f933.png" title="Selfie"/> snowypalmtrees ..\n<img alt="📍" aria-label="Emoji: Round pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cd.png" title="Round pushpin"/><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> مصر Egypt / Egipto .\n・\n<img alt="🇬🇧" aria-label="Emoji: Flag of United Kingdom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ec-1f1e7.png" title="Flag of United Kingdom"/> Ready for more adventures, what is your top destination for this year ? .\n<img alt="🇪🇸" aria-label="Emoji: Flag of Spain" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1f8.png" title="Flag of Spain"/> Lista para nuevas aventuras, cuál es… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Btfk6ixHH0J/?utm_source=ig_twitter_share&igshid=2g0fvcggy7sx" dir="ltr" href="https://t.co/rTdNqked7T" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Btfk6ixHH0J/?utm_source=ig_twitter_share&igshid=2g0fvcggy7sx"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Btfk6ixHH0J/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=2g0fvcggy7sx</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1084763 | A7_AVG | 𓂀 | 411999069 | 1092395454321577985 | https://twitter.com/A7_AVG/status/1092395454321577985 | 2019-02-04 12:12:26 | 1549282346 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | All this wet and cold weather got man cattin’ for a holiday @ Egypt https://www.instagram.com/p/BtdZzChAEyAB2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">All this wet and cold weather got man cattin’ for a holiday <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtdZzChAEyAB2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir" dir="ltr" href="https://t.co/7PyYOGsHQq" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtdZzChAEyAB2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtdZzChAEyAB</span><span class="invisible">2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1084783 | A7_AVG | 𓂀 | 411999069 | 1092395454321577985 | https://twitter.com/A7_AVG/status/1092395454321577985 | 2019-02-04 12:12:26 | 1549282346 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | All this wet and cold weather got man cattin’ for a holiday @ Egypt https://www.instagram.com/p/BtdZzChAEyAB2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">All this wet and cold weather got man cattin’ for a holiday <img alt="😒" aria-label="Emoji: Unamused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f612.png" title="Unamused face"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtdZzChAEyAB2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir" dir="ltr" href="https://t.co/7PyYOGsHQq" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtdZzChAEyAB2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtdZzChAEyAB</span><span class="invisible">2kUEA-sMNfd3yq7Nu-cnRZoREM0/?utm_source=ig_twitter_share&igshid=cmujxjpwlpir</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1084962 | RdTo100Country | RoadTo100Countries | 296517235 | 1091299548755099649 | https://twitter.com/RdTo100Country/status/1091299548755099649 | 2019-02-01 11:37:42 | 1549021062 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #Checkout & #Follow worldofwarrick they are a part of our Road to 100 Countries Travel Movement, out here living their BEST LIFE in Egypt \nThank you for joining our travel movement from… https://www.instagram.com/p/BtVncBSAS-U/?utm_source=ig_twitter_share&igshid=6asnpuuh23yp … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Checkout?src=hash"><s>#</s><b>Checkout</b></a> & <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Follow?src=hash"><s>#</s><b>Follow</b></a> worldofwarrick they are a part of our Road to 100 Countries Travel Movement, out here living their BEST LIFE in <img alt="📍" aria-label="Emoji: Round pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cd.png" title="Round pushpin"/> Egypt \nThank you for joining our travel movement from… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtVncBSAS-U/?utm_source=ig_twitter_share&igshid=6asnpuuh23yp" dir="ltr" href="https://t.co/gp4t2gm3w1" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtVncBSAS-U/?utm_source=ig_twitter_share&igshid=6asnpuuh23yp"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtVncBSAS-U/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=6asnpuuh23yp</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085124 | Mada_El_Shora | Mohammed Hassan | 2715502601 | 1090305567619465216 | https://twitter.com/Mada_El_Shora/status/1090305567619465216 | 2019-01-29 17:47:58 | 1548784078 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | ودا حالي وانا رايح التربية العسكرية @ أسيوط مركز الفتح https://www.instagram.com/p/BtOjOk-HDPa/?utm_source=ig_twitter_share&igshid=j25bjlu0qsqf … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">ودا حالي وانا رايح التربية العسكرية <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/> @ أسيوط مركز الفتح <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtOjOk-HDPa/?utm_source=ig_twitter_share&igshid=j25bjlu0qsqf" dir="ltr" href="https://t.co/Lg3oenRK1o" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtOjOk-HDPa/?utm_source=ig_twitter_share&igshid=j25bjlu0qsqf"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtOjOk-HDPa/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=j25bjlu0qsqf</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085136 | mostafa57093687 | mostafa mahmoud | 1029604002512687109 | 1090259161441595392 | https://twitter.com/mostafa57093687/status/1090259161441595392 | 2019-01-29 14:43:34 | 1548773014 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | أّمً کْکْلَثًـوٌمً لَخِـصّـتٌـ کْکْلَ حًأّجّـةّ لَمًأّ قُأّلَتٌـ \nدٍأّمًسِـتٌـحًيِّلَ قُلَبًيِّ يِّمًيِّلَ وٌيِّحًبً غُيِّرکْ أّبًدٍأّ | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">أّمً کْکْلَثًـوٌمً لَخِـصّـتٌـ کْکْلَ حًأّجّـةّ لَمًأّ قُأّلَتٌـ \nدٍأّمًسِـتٌـحًيِّلَ قُلَبًيِّ يِّمًيِّلَ وٌيِّحًبً غُيِّرکْ أّبًدٍأّ <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
1085210 | Rana_Elkuoty | رنا الخيوطي | 727894043942891525 | 1089859554760740864 | https://twitter.com/Rana_Elkuoty/status/1089859554760740864 | 2019-01-28 12:15:41 | 1548677741 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #الواقع\n#28january @ ميدان الثقافة -سوهاج https://www.instagram.com/p/BtLYmIThnWV2tfRDfJyN9JRKmnYyghLHMcZhjU0/?utm_source=ig_twitter_share&igshid=1kcw69ui9nsbq … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D8%A7%D9%84%D9%88%D8%A7%D9%82%D8%B9?src=hash"><s>#</s><b>الواقع</b></a><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/><img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/><img alt="😕" aria-label="Emoji: Confused face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f615.png" title="Confused face"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/28january?src=hash"><s>#</s><b>28january</b></a> @ ميدان الثقافة -سوهاج <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtLYmIThnWV2tfRDfJyN9JRKmnYyghLHMcZhjU0/?utm_source=ig_twitter_share&igshid=1kcw69ui9nsbq" dir="ltr" href="https://t.co/PY1OmNrdep" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtLYmIThnWV2tfRDfJyN9JRKmnYyghLHMcZhjU0/?utm_source=ig_twitter_share&igshid=1kcw69ui9nsbq"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtLYmIThnWV2</span><span class="invisible">tfRDfJyN9JRKmnYyghLHMcZhjU0/?utm_source=ig_twitter_share&igshid=1kcw69ui9nsbq</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1085324 | Midoelm22847667 | Mido elmasry | 1074405033960239104 | 1089251934199050241 | https://twitter.com/Midoelm22847667/status/1089251934199050241 | 2019-01-26 20:01:13 | 1548532873 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وهاااتلـي حب ينفعني وهاااتلي حد يسمعني \nوهاااتلي حضن يطبطب عليااا لماا قلبي يوووجعني ... pic.twitter.com/YgTs45BLfG | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وهاااتلـي حب ينفعني وهاااتلي حد يسمعني <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/>\nوهاااتلي حضن يطبطب عليااا لماا قلبي يوووجعني ... <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/YgTs45BLfG">pic.twitter.com/YgTs45BLfG</a></p> | -2.0 |
1085344 | Midoelm22847667 | Mido elmasry | 1074405033960239104 | 1089251934199050241 | https://twitter.com/Midoelm22847667/status/1089251934199050241 | 2019-01-26 20:01:13 | 1548532873 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | وهاااتلـي حب ينفعني وهاااتلي حد يسمعني \nوهاااتلي حضن يطبطب عليااا لماا قلبي يوووجعني ... pic.twitter.com/YgTs45BLfG | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">وهاااتلـي حب ينفعني وهاااتلي حد يسمعني <img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/><img alt="😢" aria-label="Emoji: Crying face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f622.png" title="Crying face"/>\nوهاااتلي حضن يطبطب عليااا لماا قلبي يوووجعني ... <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/YgTs45BLfG">pic.twitter.com/YgTs45BLfG</a></p> | -2.0 |
1085379 | Se7enex7x | ✊🏻Śė٧ēń £x 🖤🕶 | 2961183916 | 1088930181245329408 | https://twitter.com/Se7enex7x/status/1088930181245329408 | 2019-01-25 22:42:41 | 1548456161 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Post again \nايّام ما گان في عندنا ثوره @ Mallawi https://www.instagram.com/p/BtEx-Aoh7d6GyKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">Post again <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\nايّام ما گان في عندنا ثوره <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/> @ Mallawi <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtEx-Aoh7d6GyKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg" dir="ltr" href="https://t.co/lSHvkfrwTJ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtEx-Aoh7d6GyKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtEx-Aoh7d6G</span><span class="invisible">yKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085399 | Se7enex7x | ✊🏻Śė٧ēń £x 🖤🕶 | 2961183916 | 1088930181245329408 | https://twitter.com/Se7enex7x/status/1088930181245329408 | 2019-01-25 22:42:41 | 1548456161 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Post again \nايّام ما گان في عندنا ثوره @ Mallawi https://www.instagram.com/p/BtEx-Aoh7d6GyKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="und">Post again <img alt="❤️" aria-label="Emoji: Red heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/2764.png" title="Red heart"/>\nايّام ما گان في عندنا ثوره <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><img alt="😩" aria-label="Emoji: Weary face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f629.png" title="Weary face"/> @ Mallawi <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtEx-Aoh7d6GyKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg" dir="ltr" href="https://t.co/lSHvkfrwTJ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtEx-Aoh7d6GyKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtEx-Aoh7d6G</span><span class="invisible">yKHPhDmAMma7mAI4j5YeZY46yI0/?utm_source=ig_twitter_share&igshid=niaz6e18akwg</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085418 | Kellingtondawg | Kelly O'Brien | 520847698 | 1088780838987317248 | https://twitter.com/Kellingtondawg/status/1088780838987317248 | 2019-01-25 12:49:15 | 1548420555 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Saw the Mummified body of King Tutankhamun today... #Egypt #Travel #Adventure @ Valley Of The Kings https://www.instagram.com/p/BtDuDeBFNgZ/?utm_source=ig_twitter_share&igshid=bbegjjhyizb6 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Saw the Mummified body of King Tutankhamun today... <img alt="😱" aria-label="Emoji: Face screaming in fear" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f631.png" title="Face screaming in fear"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Egypt?src=hash"><s>#</s><b>Egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Travel?src=hash"><s>#</s><b>Travel</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Adventure?src=hash"><s>#</s><b>Adventure</b></a> @ Valley Of The Kings <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BtDuDeBFNgZ/?utm_source=ig_twitter_share&igshid=bbegjjhyizb6" dir="ltr" href="https://t.co/VX0Oprg4eC" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BtDuDeBFNgZ/?utm_source=ig_twitter_share&igshid=bbegjjhyizb6"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BtDuDeBFNgZ/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=bbegjjhyizb6</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085497 | MAHMMOUDWAZERY | Mahmoud Abdo Wazery | 1082260015543656449 | 1088330473946910720 | https://twitter.com/MAHMMOUDWAZERY/status/1088330473946910720 | 2019-01-24 06:59:39 | 1548313179 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | الكثير منا لا يبتعد كُرهاً بل ألماً | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">الكثير منا لا يبتعد كُرهاً بل ألماً <img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/></p> | -1.0 |
1085582 | travelbloggerES | i am travelblogger | 2883931558 | 1088042678506397696 | https://twitter.com/travelbloggerES/status/1088042678506397696 | 2019-01-23 11:56:04 | 1548244564 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | #iamtb #TravelRepost ..\n @thirdeyetravelr ..\n مصر Egypt / Egipto .\n・\n A beautiful thing is never perfect (Egyptian proverb). Luxor Temple is one of my favourite places in the… https://www.instagram.com/p/Bs-eTplnLtc/?utm_source=ig_twitter_share&igshid=a87qrot3ctqq … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/iamtb?src=hash"><s>#</s><b>iamtb</b></a> <img alt="🛫" aria-label="Emoji: Airplane departure" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6eb.png" title="Airplane departure"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/TravelRepost?src=hash"><s>#</s><b>TravelRepost</b></a> ..\n<img alt="🤳" aria-label="Emoji: Selfie" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f933.png" title="Selfie"/> <a class="twitter-atreply pretty-link js-nav" data-mentioned-user-id="867407859272663040" dir="ltr" href="/thirdeyetravelr"><s>@</s><b>thirdeyetravelr</b></a> ..\n<img alt="📍" aria-label="Emoji: Round pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cd.png" title="Round pushpin"/><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> مصر Egypt / Egipto .\n・\n<img alt="🇬🇧" aria-label="Emoji: Flag of United Kingdom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ec-1f1e7.png" title="Flag of United Kingdom"/> A beautiful thing is never perfect (Egyptian proverb). Luxor Temple is one of my favourite places in the… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bs-eTplnLtc/?utm_source=ig_twitter_share&igshid=a87qrot3ctqq" dir="ltr" href="https://t.co/vTDKvzFqLT" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bs-eTplnLtc/?utm_source=ig_twitter_share&igshid=a87qrot3ctqq"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bs-eTplnLtc/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=a87qrot3ctqq</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085651 | GEpOVyROEbLEjpm | ahmed Nasr Abul | 1030200686011662337 | 1087709222027038721 | https://twitter.com/GEpOVyROEbLEjpm/status/1087709222027038721 | 2019-01-22 13:51:01 | 1548165061 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | بووووم \n باندينو بحاله الزيرووو\nبأكياس المصنع\nوالسعر مفاجأه \n 2014 \n(فقط 25 الف كم) رخصه ٢٦شهر \nاتوماتيك اعلى فئه فبريكة برا جوا بدهان المصنع بالكامل عداد \nجنوط سبور . بلوتوث . 2 ايرباج . فرامل . e b d . Abs. اشارات . فوج لايت. فوج لايت . \nالمعلم احمد كار الملكpic.twitter.com/ePLkGbZCnr | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">بووووم <img alt="💥" aria-label="Emoji: Collision symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a5.png" title="Collision symbol"/><img alt="💥" aria-label="Emoji: Collision symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a5.png" title="Collision symbol"/><img alt="💣" aria-label="Emoji: Bomb" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a3.png" title="Bomb"/><img alt="💣" aria-label="Emoji: Bomb" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a3.png" title="Bomb"/>\n باندينو بحاله الزيرووو\nبأكياس المصنع\nوالسعر مفاجأه \n <img alt="💦" aria-label="Emoji: Splashing sweat symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a6.png" title="Splashing sweat symbol"/>2014<img alt="💦" aria-label="Emoji: Splashing sweat symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a6.png" title="Splashing sweat symbol"/> \n(فقط <img alt="💢" aria-label="Emoji: Anger symbol" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4a2.png" title="Anger symbol"/>25 الف كم) رخصه ٢٦شهر \nاتوماتيك اعلى فئه فبريكة برا جوا بدهان المصنع بالكامل عداد \nجنوط سبور . بلوتوث . 2 ايرباج . فرامل . e b d . Abs. اشارات . فوج لايت. فوج لايت . \nالمعلم احمد كار الملك<a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/ePLkGbZCnr">pic.twitter.com/ePLkGbZCnr</a></p> | -2.0 |
1085654 | cap_mohmedsayed | ابو الدماديم 🌻🖤 | 2896396107 | 1087690782893662209 | https://twitter.com/cap_mohmedsayed/status/1087690782893662209 | 2019-01-22 12:37:45 | 1548160665 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Khaled Nsr @ LUXOR . الأقــصــر https://www.instagram.com/p/Bs7-USqH-y5/?utm_source=ig_twitter_share&igshid=ae6vvmvczxbn … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und">Khaled Nsr <img alt="👮" aria-label="Emoji: Police officer" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f46e.png" title="Police officer"/><img alt="🖤" aria-label="Emoji: Black heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f5a4.png" title="Black heart"/> @ LUXOR . الأقــصــر <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bs7-USqH-y5/?utm_source=ig_twitter_share&igshid=ae6vvmvczxbn" dir="ltr" href="https://t.co/ygV62oaO37" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bs7-USqH-y5/?utm_source=ig_twitter_share&igshid=ae6vvmvczxbn"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bs7-USqH-y5/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=ae6vvmvczxbn</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085710 | frankycebrian | se co-coloca ❤️ | 3135321933 | 1087348680972210177 | https://twitter.com/frankycebrian/status/1087348680972210177 | 2019-01-21 13:58:22 | 1548079102 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | buena gente ante todo en Egypt https://www.instagram.com/p/Bs5ixOUAUZ4VlhlZAPWsAkHAeDnmFFG0s6ANnw0/?utm_source=ig_twitter_share&igshid=1p2hbnqmtdecw … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">buena gente ante todo <img alt="😖" aria-label="Emoji: Confounded face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f616.png" title="Confounded face"/><img alt="😰" aria-label="Emoji: Face with open mouth and cold sweat" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f630.png" title="Face with open mouth and cold sweat"/> en Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bs5ixOUAUZ4VlhlZAPWsAkHAeDnmFFG0s6ANnw0/?utm_source=ig_twitter_share&igshid=1p2hbnqmtdecw" dir="ltr" href="https://t.co/8SIjAPFbg2" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bs5ixOUAUZ4VlhlZAPWsAkHAeDnmFFG0s6ANnw0/?utm_source=ig_twitter_share&igshid=1p2hbnqmtdecw"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bs5ixOUAUZ4V</span><span class="invisible">lhlZAPWsAkHAeDnmFFG0s6ANnw0/?utm_source=ig_twitter_share&igshid=1p2hbnqmtdecw</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1085788 | travelbloggerES | i am travelblogger | 2883931558 | 1086920970693214209 | https://twitter.com/travelbloggerES/status/1086920970693214209 | 2019-01-20 09:38:48 | 1547977128 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #iamtb #TravelRepost ..\n bellebaby_s ..\n مصر / Egypt / Egipto .\n・\n Colossi of Memnon .\n Colosos de Memnon .\n.\n#egypt #luxor #memnon #africa #egito #egipto #colossiofmemnon #مصر… https://www.instagram.com/p/Bs2gRF6HfWU/?utm_source=ig_twitter_share&igshid=11kq8kbc61i2f … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/iamtb?src=hash"><s>#</s><b>iamtb</b></a> <img alt="🛫" aria-label="Emoji: Airplane departure" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f6eb.png" title="Airplane departure"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/TravelRepost?src=hash"><s>#</s><b>TravelRepost</b></a> ..\n<img alt="🤳" aria-label="Emoji: Selfie" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f933.png" title="Selfie"/> bellebaby_s ..\n<img alt="📍" aria-label="Emoji: Round pushpin" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f4cd.png" title="Round pushpin"/><img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/> مصر / Egypt / Egipto .\n・\n<img alt="🇬🇧" aria-label="Emoji: Flag of United Kingdom" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ec-1f1e7.png" title="Flag of United Kingdom"/> Colossi of Memnon .\n<img alt="🇪🇸" aria-label="Emoji: Flag of Spain" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1f8.png" title="Flag of Spain"/> Colosos de Memnon .\n.\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egypt?src=hash"><s>#</s><b>egypt</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/luxor?src=hash"><s>#</s><b>luxor</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/memnon?src=hash"><s>#</s><b>memnon</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/africa?src=hash"><s>#</s><b>africa</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egito?src=hash"><s>#</s><b>egito</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/egipto?src=hash"><s>#</s><b>egipto</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/colossiofmemnon?src=hash"><s>#</s><b>colossiofmemnon</b></a> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="rtl" href="/hashtag/%D9%85%D8%B5%D8%B1?src=hash"><s>#</s><b>مصر</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bs2gRF6HfWU/?utm_source=ig_twitter_share&igshid=11kq8kbc61i2f" dir="ltr" href="https://t.co/T8Z5jwLF8p" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bs2gRF6HfWU/?utm_source=ig_twitter_share&igshid=11kq8kbc61i2f"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bs2gRF6HfWU/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=11kq8kbc61i2f</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085901 | mrjon1234 | Jonathan Koh | 233920346 | 1086195744200163328 | https://twitter.com/mrjon1234/status/1086195744200163328 | 2019-01-18 09:37:00 | 1547804220 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Wonder how heavy can this balloon carry @ Luxor Hot Air Balloon Ride https://www.instagram.com/p/BsxWfLqlXq4/?utm_source=ig_twitter_share&igshid=zhn1k1el0ins … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">Wonder how heavy can this balloon carry <img alt="🤔" aria-label="Emoji: Thinking face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f914.png" title="Thinking face"/><img alt="🤷🏻♂️" aria-label="Emoji: Man shrugging (light skin tone)" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f937-1f3fb-200d-2642-fe0f.png" title="Man shrugging (light skin tone)"/> @ Luxor Hot Air Balloon Ride <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsxWfLqlXq4/?utm_source=ig_twitter_share&igshid=zhn1k1el0ins" dir="ltr" href="https://t.co/NoV5G7XYIS" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsxWfLqlXq4/?utm_source=ig_twitter_share&igshid=zhn1k1el0ins"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsxWfLqlXq4/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=zhn1k1el0ins</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1085959 | ahmed_Zizo000 | Ahmed Abdulaziz 🔱 | 2445205502 | 1085860592903057408 | https://twitter.com/ahmed_Zizo000/status/1085860592903057408 | 2019-01-17 11:25:14 | 1547724314 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | @ El Higz Bahari, Aswan, Egypt https://www.instagram.com/p/Bsu-FR3glqdAcFeg0IKJuSd6gj38emvQ9FYsYc0/?utm_source=ig_twitter_share&igshid=3iz2vo06sos … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="tl"><img alt="🐴" aria-label="Emoji: Horse face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f434.png" title="Horse face"/><img alt="🌍" aria-label="Emoji: Earth globe europe-africa" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f30d.png" title="Earth globe europe-africa"/> @ El Higz Bahari, Aswan, Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/Bsu-FR3glqdAcFeg0IKJuSd6gj38emvQ9FYsYc0/?utm_source=ig_twitter_share&igshid=3iz2vo06sos" dir="ltr" href="https://t.co/gu0dvKvzjJ" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/Bsu-FR3glqdAcFeg0IKJuSd6gj38emvQ9FYsYc0/?utm_source=ig_twitter_share&igshid=3iz2vo06sos"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/Bsu-FR3glqdA</span><span class="invisible">cFeg0IKJuSd6gj38emvQ9FYsYc0/?utm_source=ig_twitter_share&igshid=3iz2vo06sos</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1086142 | m7med_N3em0 | Ebn(Ñ3êm_🇳.🇪.🇲.🇴🔱☯) | 942729036559798272 | 1084775277190938624 | https://twitter.com/m7med_N3em0/status/1084775277190938624 | 2019-01-14 11:32:34 | 1547465554 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | *أنا اللي يخسرني مرة، لو عاش عمره كله يراضيني أستحالة يكسبني تاني * @ Cavello https://www.instagram.com/p/BsnQiUplBmK7gB_LREUKKqgiycXpjLjeaW-xRg0/?utm_source=ig_twitter_share&igshid=1s5obqwryrj74 … | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">*أنا اللي يخسرني مرة، لو عاش عمره كله يراضيني أستحالة يكسبني تاني <img alt="✋" aria-label="Emoji: Raised hand" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/270b.png" title="Raised hand"/>* @ Cavello <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsnQiUplBmK7gB_LREUKKqgiycXpjLjeaW-xRg0/?utm_source=ig_twitter_share&igshid=1s5obqwryrj74" dir="ltr" href="https://t.co/j4CC9Z5QAR" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsnQiUplBmK7gB_LREUKKqgiycXpjLjeaW-xRg0/?utm_source=ig_twitter_share&igshid=1s5obqwryrj74"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsnQiUplBmK7</span><span class="invisible">gB_LREUKKqgiycXpjLjeaW-xRg0/?utm_source=ig_twitter_share&igshid=1s5obqwryrj74</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1086198 | DolsekaEbram | DOLssEKKKA‡💵 | 877637308962492418 | 1084446499260559360 | https://twitter.com/DolsekaEbram/status/1084446499260559360 | 2019-01-13 13:46:08 | 1547387168 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | #NewProfilePic\n3eedpic.twitter.com/BZ14EKxwas | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="und"><a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/NewProfilePic?src=hash"><s>#</s><b>NewProfilePic</b></a>\n3eed<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/><a class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" href="https://t.co/BZ14EKxwas">pic.twitter.com/BZ14EKxwas</a></p> | -1.0 |
1086205 | RdwanWww | Ahmed_M_Rdwan | 514238345 | 1084363342968512513 | https://twitter.com/RdwanWww/status/1084363342968512513 | 2019-01-13 08:15:42 | 1547367342 | 0 | 0 | 1 | 0 | NaN | NaN | NaN | دعني أخبرك أن العالم لم يكن بهذه البراءة التي تخيلتها في طفولتك، إنه كمنطقة مظلمة كنت تخشاها، لأنك تعتقد أن بها جنا يأكل الصغار\n#Rdwan | <p class="TweetTextSize js-tweet-text tweet-text tweet-text-rtl" data-aria-label-part="0" lang="ar">دعني أخبرك أن العالم لم يكن بهذه البراءة التي تخيلتها في طفولتك، إنه كمنطقة مظلمة كنت تخشاها، لأنك تعتقد أن بها جنا يأكل الصغار<img alt="💔" aria-label="Emoji: Broken heart" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f494.png" title="Broken heart"/>\n<a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/Rdwan?src=hash"><s>#</s><b>Rdwan</b></a></p> | -1.0 |
1086274 | youuussefRR | Youssef Ramadan | 752135225182973952 | 1083851842226962433 | https://twitter.com/youuussefRR/status/1083851842226962433 | 2019-01-11 22:23:10 | 1547245390 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I am lost in a desert with nth but moutains full of dark thoughts @ Egypt https://www.instagram.com/p/BsgsjwfhanU/?utm_source=ig_twitter_share&igshid=2hr523jkfus5 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I am lost in a desert with nth but moutains full of dark thoughts <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsgsjwfhanU/?utm_source=ig_twitter_share&igshid=2hr523jkfus5" dir="ltr" href="https://t.co/tORFpwQ3nb" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsgsjwfhanU/?utm_source=ig_twitter_share&igshid=2hr523jkfus5"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsgsjwfhanU/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=2hr523jkfus5</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1086294 | youuussefRR | Youssef Ramadan | 752135225182973952 | 1083851842226962433 | https://twitter.com/youuussefRR/status/1083851842226962433 | 2019-01-11 22:23:10 | 1547245390 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | I am lost in a desert with nth but moutains full of dark thoughts @ Egypt https://www.instagram.com/p/BsgsjwfhanU/?utm_source=ig_twitter_share&igshid=2hr523jkfus5 … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">I am lost in a desert with nth but moutains full of dark thoughts <img alt="😞" aria-label="Emoji: Disappointed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f61e.png" title="Disappointed face"/><img alt="😔" aria-label="Emoji: Pensive face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f614.png" title="Pensive face"/> @ Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsgsjwfhanU/?utm_source=ig_twitter_share&igshid=2hr523jkfus5" dir="ltr" href="https://t.co/tORFpwQ3nb" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsgsjwfhanU/?utm_source=ig_twitter_share&igshid=2hr523jkfus5"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsgsjwfhanU/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=2hr523jkfus5</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -2.0 |
1086440 | lizzcoykendall | Lizz Coykendall | 97603700 | 1082841646000164864 | https://twitter.com/lizzcoykendall/status/1082841646000164864 | 2019-01-09 03:29:01 | 1547004541 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | The preservation of the colors and sculptures/carving was insanely beautiful at Dendera and Abydos. Only two other people at these temples! Little know MUST SEE in Egypt #travelegypt… https://www.instagram.com/p/BsZhOK_BDui/?utm_source=ig_twitter_share&igshid=xdhyi34u5ojn … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="en">The preservation of the colors and sculptures/carving was insanely beautiful at Dendera and Abydos. Only two other people at these temples! Little know MUST SEE in Egypt <img alt="🏛" aria-label="Emoji: Classical building" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f3db.png" title="Classical building"/><img alt="🥇" aria-label="Emoji: First place medal" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f947.png" title="First place medal"/><img alt="😯" aria-label="Emoji: Hushed face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f62f.png" title="Hushed face"/> <a class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="/hashtag/travelegypt?src=hash"><s>#</s><b>travelegypt</b></a>… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsZhOK_BDui/?utm_source=ig_twitter_share&igshid=xdhyi34u5ojn" dir="ltr" href="https://t.co/0JlfD0wS1x" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsZhOK_BDui/?utm_source=ig_twitter_share&igshid=xdhyi34u5ojn"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsZhOK_BDui/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=xdhyi34u5ojn</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1086580 | rey_argantonio | Argantonio | 1348981914 | 1082075805742743552 | https://twitter.com/rey_argantonio/status/1082075805742743552 | 2019-01-07 00:45:50 | 1546821950 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Escena del juicio de Osiris en Egypt https://www.instagram.com/p/BsUE9frlmyH/?utm_source=ig_twitter_share&igshid=1fpo9nthmd5ta … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="ca">Escena del juicio de Osiris <img alt="💀" aria-label="Emoji: Skull" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f480.png" title="Skull"/> en Egypt <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsUE9frlmyH/?utm_source=ig_twitter_share&igshid=1fpo9nthmd5ta" dir="ltr" href="https://t.co/fq1KzOplSl" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsUE9frlmyH/?utm_source=ig_twitter_share&igshid=1fpo9nthmd5ta"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsUE9frlmyH/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=1fpo9nthmd5ta</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
1086969 | lauren_amh | Lauren | 36489591 | 1080061825775996928 | https://twitter.com/lauren_amh/status/1080061825775996928 | 2019-01-01 11:23:00 | 1546341780 | 0 | 0 | 0 | 0 | NaN | NaN | NaN | Days 5,6,7,8 .\nLlegamos a Aswan en el sur de Egipto, después de tanto cansancio, solo queríamos algo tranquilo. Yo juro que en esa ciudad sentía que me robaban con la vista, sigo dando… https://www.instagram.com/p/BsFxGoJAIbF/?utm_source=ig_twitter_share&igshid=ku1hphvn9dvj … | <p class="TweetTextSize js-tweet-text tweet-text" data-aria-label-part="0" lang="es">Days 5,6,7,8 <img alt="🇪🇬" aria-label="Emoji: Flag of Egypt" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f1ea-1f1ec.png" title="Flag of Egypt"/>.\nLlegamos a Aswan en el sur de Egipto, después de tanto cansancio, solo queríamos algo tranquilo. Yo juro que en esa ciudad sentía que me robaban con la vista<img alt="😨" aria-label="Emoji: Fearful face" class="Emoji Emoji--forText" draggable="false" src="https://abs.twimg.com/emoji/v2/72x72/1f628.png" title="Fearful face"/>, sigo dando… <a class="twitter-timeline-link" data-expanded-url="https://www.instagram.com/p/BsFxGoJAIbF/?utm_source=ig_twitter_share&igshid=ku1hphvn9dvj" dir="ltr" href="https://t.co/PZvV0j8BEW" rel="nofollow noopener" target="_blank" title="https://www.instagram.com/p/BsFxGoJAIbF/?utm_source=ig_twitter_share&igshid=ku1hphvn9dvj"><span class="tco-ellipsis"></span><span class="invisible">https://www.</span><span class="js-display-url">instagram.com/p/BsFxGoJAIbF/</span><span class="invisible">?utm_source=ig_twitter_share&igshid=ku1hphvn9dvj</span><span class="tco-ellipsis"><span class="invisible"> </span>…</span></a></p> | -1.0 |
53485 rows × 17 columns
CPU times: user 3min 3s, sys: 1.62 s, total: 3min 5s Wall time: 3min 5s