From d9f216346ebd237a9e696305cfd41437ea558194 Mon Sep 17 00:00:00 2001 From: Jonas Weinz Date: Mon, 11 Jun 2018 20:13:27 +0200 Subject: [PATCH] first not bad looking keras result --- .../simple_twitter_learning.ipynb | 1316 ++--- Project/simple_approach/test.csv | 4402 ++++++++++------- 2 files changed, 3345 insertions(+), 2373 deletions(-) diff --git a/Project/simple_approach/simple_twitter_learning.ipynb b/Project/simple_approach/simple_twitter_learning.ipynb index 798ec5c..2338a54 100644 --- a/Project/simple_approach/simple_twitter_learning.ipynb +++ b/Project/simple_approach/simple_twitter_learning.ipynb @@ -22,7 +22,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 32, "metadata": {}, "outputs": [], "source": [ @@ -35,8 +35,8 @@ "def emoji2sent(emoji_arr):\n", " return np.array([emoji_to_sentiment_vector(e) for e in emoji_arr])\n", "\n", - "def sent2emoji(sent_arr):\n", - " return [sentiment_vector_to_emoji(s) for s in sent_arr]" + "def sent2emoji(sent_arr, custom_target_emojis=None):\n", + " return [sentiment_vector_to_emoji(s, custom_target_emojis=custom_target_emojis) for s in sent_arr]" ] }, { @@ -1425,7 +1425,26 @@ { "data": { "text/plain": [ - "[('😂', 10182), ('😭', 3893), ('😍', 2866), ('😩', 1647), ('😊', 1450)]" + "[('😂', 10182),\n", + " ('😭', 3893),\n", + " ('😍', 2866),\n", + " ('😩', 1647),\n", + " ('😊', 1450),\n", + " ('😘', 1151),\n", + " ('🙏', 1089),\n", + " ('🙌', 1003),\n", + " ('😉', 752),\n", + " ('😁', 697),\n", + " ('😅', 651),\n", + " ('😎', 606),\n", + " ('😢', 544),\n", + " ('😒', 539),\n", + " ('😏', 478),\n", + " ('😌', 434),\n", + " ('😔', 415),\n", + " ('😋', 397),\n", + " ('😀', 392),\n", + " ('😤', 368)]" ] }, "metadata": {}, @@ -1434,7 +1453,26 @@ { "data": { "text/plain": [ - "['😂', '😭', '😍', '😩', '😊']" + "['😂',\n", + " '😭',\n", + " '😍',\n", + " '😩',\n", + " '😊',\n", + " '😘',\n", + " '🙏',\n", + " '🙌',\n", + " '😉',\n", + " '😁',\n", + " '😅',\n", + " '😎',\n", + " '😢',\n", + " '😒',\n", + " '😏',\n", + " '😌',\n", + " '😔',\n", + " '😋',\n", + " '😀',\n", + " '😤']" ] }, "metadata": {}, @@ -1443,9 +1481,9 @@ ], "source": [ "sorted_emoji_count = list(reversed(sorted(emoji_count.items(), key=operator.itemgetter(1))))\n", - "display(sorted_emoji_count[:5])\n", + "display(sorted_emoji_count[:20])\n", "\n", - "top_emojis = [x[0] for x in sorted_emoji_count[:5]]\n", + "top_emojis = [x[0] for x in sorted_emoji_count[:20]]\n", "display(top_emojis)" ] }, @@ -1465,7 +1503,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "17815 17815 17815\n" + "26197 26197 26197\n" ] } ], @@ -1576,21 +1614,25 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Train on 8000 samples, validate on 2000 samples\n", - "Epoch 1/1\n", - "8000/8000 [==============================] - 311s 39ms/step - loss: 0.0145 - val_loss: 0.0132\n" + "Train on 18861 samples, validate on 4716 samples\n", + "Epoch 1/3\n", + "18861/18861 [==============================] - 1288s 68ms/step - loss: 0.0185 - val_loss: 0.0164\n", + "Epoch 2/3\n", + "18861/18861 [==============================] - 1282s 68ms/step - loss: 0.0103 - val_loss: 0.0164\n", + "Epoch 3/3\n", + "18861/18861 [==============================] - 1333s 71ms/step - loss: 0.0063 - val_loss: 0.0166\n" ] } ], "source": [ - "clf = train(max_size=10000,layers=[(10000, 'relu'),(y1[0].shape[0],'softmax')], n_iter=1)" + "clf = train(max_size=100000,layers=[(10000, 'relu'),(5000, 'relu'),(2500, 'relu'),(y1[0].shape[0],None)], n_iter=3)" ] }, { @@ -1602,7 +1644,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -1611,26 +1653,26 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0.005192853\n", - "0.02568319204819897\n" + "0.012647177\n", + "0.03387511671001757\n" ] } ], "source": [ "print(np.linalg.norm(np.var(pred, axis=0)))\n", - "print(np.linalg.norm(np.var(labels)))\n" + "print(np.linalg.norm(np.var(labels, axis=0)))\n" ] }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 33, "metadata": {}, "outputs": [], "source": [ @@ -1638,13 +1680,13 @@ "testlist = pd.DataFrame({'text': Xt1, \n", " 'teacher': sent2emoji(yt1),\n", " 'teacher_sentiment': yt1.tolist(),\n", - " 'predict': sent2emoji(pred),\n", + " 'predict': sent2emoji(pred, custom_target_emojis=top_emojis),\n", " 'predicted_sentiment': pred.tolist()})" ] }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 34, "metadata": {}, "outputs": [ { @@ -1677,244 +1719,244 @@ " \n", " \n", " \n", - " 35056\n", - " I LOVE YOU OMG HOW DID I GET SO LUCKY\n", + " 35671\n", + " I feel like I care so much more in every situa...\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😢\n", + " [0.3881330192089081, 0.34921327233314514, 0.24...\n", + " \n", + " \n", + " 25683\n", + " I did not meat to add that '2' there...havent ...\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😂\n", + " [0.477517306804657, 0.2263115793466568, 0.2805...\n", + " \n", + " \n", + " 8985\n", + " never…\n", + " 😊\n", + " [0.7040175768989329, 0.059322033898305086, 0.2...\n", + " 😂\n", + " [0.4780172109603882, 0.24580059945583344, 0.25...\n", + " \n", + " \n", + " 5410\n", + " Lmao on me!!! Wtf was he supposed to say\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😭\n", + " [0.3319989740848541, 0.38802555203437805, 0.23...\n", + " \n", + " \n", + " 62611\n", + " This dude always help me get through my schoo...\n", + " 😊\n", + " [0.7040175768989329, 0.059322033898305086, 0.2...\n", + " 😂\n", + " [0.471467524766922, 0.19387008249759674, 0.299...\n", + " \n", + " \n", + " 48197\n", + " Happy B'Day Sir\n", + " 😊\n", + " [0.7040175768989329, 0.059322033898305086, 0.2...\n", + " 😀\n", + " [0.6342154145240784, 0.0916505753993988, 0.253...\n", + " \n", + " \n", + " 23654\n", + " You need some good old fashioned Swedish Jesus\n", + " 🙏\n", + " [0.4983755685510071, 0.08057179987004548, 0.42...\n", + " 😂\n", + " [0.4485129117965698, 0.2649095952510834, 0.266...\n", + " \n", + " \n", + " 58207\n", + " these late shifts are making me not have a soc...\n", + " 😅\n", + " [0.47186147186147187, 0.2922077922077922, 0.23...\n", + " 😢\n", + " [0.35744383931159973, 0.37891000509262085, 0.2...\n", + " \n", + " \n", + " 374\n", + " Dc this weekend\n", " 😍\n", " [0.7296744771190439, 0.05173769460607014, 0.21...\n", - " 😂\n", - " [0.5138983726501465, 0.2369314283132553, 0.249...\n", + " 😁\n", + " [0.575383186340332, 0.14427249133586884, 0.250...\n", " \n", " \n", - " 6745\n", - " Lol Palesa Blossom Mission Leomaure this guy i...\n", + " 26310\n", + " Paul lad you'll make es blush\n", + " 😊\n", + " [0.7040175768989329, 0.059322033898305086, 0.2...\n", + " 😢\n", + " [0.3773207664489746, 0.363784521818161, 0.2402...\n", + " \n", + " \n", + " 30892\n", + " Did you have a fun Halloween?\n", " 😂\n", " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 🙇\n", - " [0.42938703298568726, 0.2851070463657379, 0.28...\n", - " \n", - " \n", - " 19721\n", - " I wish I can take a video of how I am laughing...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😅\n", - " [0.4674359858036041, 0.2860119938850403, 0.246...\n", + " [0.4547549784183502, 0.2675609588623047, 0.265...\n", " \n", " \n", - " 37748\n", - " The Adulting Awards on the commitment session ...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😼\n", - " [0.5368908047676086, 0.22797922790050507, 0.23...\n", + " 11868\n", + " Hi handsome\n", + " 😍\n", + " [0.7296744771190439, 0.05173769460607014, 0.21...\n", + " 🙌\n", + " [0.6610512137413025, 0.07423651218414307, 0.20...\n", " \n", " \n", - " 43315\n", - " Good English Valencia\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.49750247597694397, 0.24948053061962128, 0.2...\n", - " \n", - " \n", - " 35986\n", - " Yeahhhh righhhhttttt\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.46295732259750366, 0.2748742699623108, 0.26...\n", - " \n", - " \n", - " 21986\n", - " Anything for my baby.\n", + " 46219\n", + " I'm not okay with this, I'm suing Snapchat\n", " 😭\n", " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😼\n", - " [0.5758423209190369, 0.19491779804229736, 0.22...\n", + " 😢\n", + " [0.38139358162879944, 0.36385539174079895, 0.2...\n", " \n", " \n", - " 50154\n", - " HBD PRETTY GIRL I LOVE YOU SM\n", - " 😍\n", - " [0.7296744771190439, 0.05173769460607014, 0.21...\n", - " 😼\n", - " [0.5453159809112549, 0.207011416554451, 0.2476...\n", - " \n", - " \n", - " 49516\n", - " Cba for these boots\n", + " 13583\n", + " My parents be so mad I be buying new stuff &am...\n", " 😭\n", " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 🙇\n", - " [0.43326714634895325, 0.28593116998672485, 0.2...\n", + " 😢\n", + " [0.393837571144104, 0.3474741280078888, 0.2423...\n", " \n", " \n", - " 16799\n", - " That rose gold one! OMG\n", - " 😍\n", - " [0.7296744771190439, 0.05173769460607014, 0.21...\n", - " 😅\n", - " [0.473838210105896, 0.2787647843360901, 0.2473...\n", + " 43843\n", + " One of the few songs that calms me down esp on...\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😢\n", + " [0.36614790558815, 0.369498074054718, 0.239036...\n", " \n", " \n", - " 50674\n", - " just ended I can't explain feelings a great ...\n", + " 63589\n", + " iPhone X Bouta Be The Last Phone We Ever Buy\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😭\n", + " [0.3337980806827545, 0.4099247455596924, 0.223...\n", + " \n", + " \n", + " 53695\n", + " Visited my main man today ❤ i miss u papa\n", " 😭\n", " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😵\n", - " [0.3780469298362732, 0.3569388687610626, 0.265...\n", + " 😁\n", + " [0.5644013285636902, 0.14413486421108246, 0.25...\n", " \n", " \n", - " 16560\n", - " //I'm a male account and I can't even ask some...\n", + " 67529\n", + " Donuts\n", " 😍\n", " [0.7296744771190439, 0.05173769460607014, 0.21...\n", - " 😅\n", - " [0.47279101610183716, 0.28100648522377014, 0.2...\n", + " 😂\n", + " [0.4482305943965912, 0.2685551047325134, 0.273...\n", " \n", " \n", - " 33071\n", - " A Lebanese Christian (I dont even know him) se...\n", + " 25493\n", + " Has anyone heard this by ? Who the fuck knew...\n", + " 😘\n", + " [0.7546600877192983, 0.05290570175438596, 0.19...\n", + " 😂\n", + " [0.41814130544662476, 0.27233976125717163, 0.2...\n", + " \n", + " \n", + " 19486\n", + " Wow superrbb\n", + " 😍\n", + " [0.7296744771190439, 0.05173769460607014, 0.21...\n", + " 🙌\n", + " [0.6488221883773804, 0.07963734865188599, 0.23...\n", + " \n", + " \n", + " 48449\n", + " Of course they don't. Their perfect model ...\n", " 😂\n", " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😹\n", - " [0.4489242136478424, 0.29896649718284607, 0.25...\n", + " 😌\n", + " [0.5793762803077698, 0.14216111600399017, 0.24...\n", " \n", " \n", - " 52543\n", - " I've seen this too many times\n", + " 4504\n", + " Please pick me. Pick me. Pick me. Please.\n", + " 😍\n", + " [0.7296744771190439, 0.05173769460607014, 0.21...\n", + " 😁\n", + " [0.526153028011322, 0.1465001106262207, 0.2909...\n", + " \n", + " \n", + " 40285\n", + " shiid no crack is wack\n", + " 😭\n", + " [0.34310532030401736, 0.4364820846905538, 0.22...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😹\n", - " [0.42817223072052, 0.31256356835365295, 0.2592...\n", + " [0.4464351236820221, 0.25675588846206665, 0.27...\n", " \n", " \n", - " 18733\n", - " HahahYESSSSS\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.46295732259750366, 0.2748742699623108, 0.26...\n", - " \n", - " \n", - " 12353\n", - " Sure.. That's so stupid ,. They just have to b...\n", + " 56741\n", + " Pj still sleeps like a newborn\n", " 😩\n", " [0.22289823008849557, 0.5912610619469026, 0.18...\n", - " 😹\n", - " [0.44481462240219116, 0.2898775637149811, 0.26...\n", + " 😢\n", + " [0.3798309564590454, 0.3601042628288269, 0.236...\n", " \n", " \n", - " 49480\n", - " Ok makes sense\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 🙇\n", - " [0.42414095997810364, 0.289501428604126, 0.286...\n", + " 22948\n", + " An opinion doesn't mean you make sense first ...\n", + " 😌\n", + " [0.6240601503759399, 0.13984962406015036, 0.23...\n", + " 😢\n", + " [0.3885924518108368, 0.35167044401168823, 0.23...\n", " \n", " \n", - " 32767\n", - " They call you bitches and act like they moved ...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😥\n", - " [0.4256601929664612, 0.3290562033653259, 0.245...\n", - " \n", - " \n", - " 32938\n", - " On Christ himself that glossy lip, smooth brow...\n", + " 68426\n", + " Missyou too\n", + " 😘\n", + " [0.7546600877192983, 0.05290570175438596, 0.19...\n", " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😬\n", - " [0.46742191910743713, 0.2577934265136719, 0.27...\n", + " [0.32084617018699646, 0.4261379539966583, 0.21...\n", " \n", " \n", - " 46800\n", - " Let her enjoy wena mahn\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.4820931553840637, 0.2597433924674988, 0.258...\n", - " \n", - " \n", - " 68700\n", - " person that scares me\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😼\n", - " [0.5506900548934937, 0.1981608271598816, 0.251...\n", - " \n", - " \n", - " 34936\n", - " Dodson put him on his back pockets\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 🙇\n", - " [0.41959047317504883, 0.2961031496524811, 0.28...\n", - " \n", - " \n", - " 63804\n", - " I can’t wait to put a countdown in my name for...\n", - " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😬\n", - " [0.47894737124443054, 0.26814648509025574, 0.2...\n", - " \n", - " \n", - " 13670\n", - " My chest hurt\n", + " 13431\n", + " I swear she did\n", " 😩\n", " [0.22289823008849557, 0.5912610619469026, 0.18...\n", - " 😅\n", - " [0.4844517707824707, 0.2778504192829132, 0.237...\n", + " 😂\n", + " [0.4509403705596924, 0.2531892657279968, 0.277...\n", " \n", " \n", - " 36792\n", - " Ready to be back in Chicago for some good eats...\n", + " 66287\n", + " It’s true, he was the mutt’s (big-d) nuts.\n", + " 😉\n", + " [0.5634451019066403, 0.0992767915844839, 0.337...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.461605042219162, 0.2754403054714203, 0.2629...\n", + " [0.43934985995292664, 0.27343544363975525, 0.2...\n", " \n", " \n", - " 54093\n", - " I didn't see this\n", + " 41980\n", + " is happening so happy\n", + " 😭\n", + " [0.34310532030401736, 0.4364820846905538, 0.22...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😵\n", - " [0.40356379747390747, 0.3449265956878662, 0.25...\n", + " [0.5246269106864929, 0.21524660289287567, 0.23...\n", " \n", " \n", - " 21937\n", - " I wonder have I met my wife yet\n", + " 34632\n", + " Saw that the first one said sosee you tmmrw a...\n", " 😂\n", " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.45527422428131104, 0.28081753849983215, 0.2...\n", - " \n", - " \n", - " 45980\n", - " why deep sorrow man\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😅\n", - " [0.4865574240684509, 0.26807573437690735, 0.24...\n", - " \n", - " \n", - " 38860\n", - " Haha I had it on earlier\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😼\n", - " [0.5328965187072754, 0.19487495720386505, 0.27...\n", - " \n", - " \n", - " 33399\n", - " this gif!!!\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😱\n", - " [0.438534677028656, 0.25870493054389954, 0.302...\n", + " 😢\n", + " [0.40898817777633667, 0.32723960280418396, 0.2...\n", " \n", " \n", " ...\n", @@ -1925,441 +1967,441 @@ " ...\n", " \n", " \n", - " 13242\n", - " Studying abroad in Italy for 3 weeks it won'...\n", - " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😵\n", - " [0.4010750651359558, 0.33369433879852295, 0.26...\n", - " \n", - " \n", - " 25032\n", - " I am weird too soo what's the problem ?\n", + " 47218\n", + " Keep it I don't want it\n", " 😂\n", " [0.46813021474490496, 0.24716181096977158, 0.2...\n", " 😂\n", - " [0.4886448383331299, 0.23002634942531586, 0.28...\n", + " [0.46869081258773804, 0.2421991378068924, 0.26...\n", " \n", " \n", - " 44255\n", - " Cuz he knows you strong\n", + " 35087\n", + " 6 years ago today we said our final good byes ...\n", + " 😢\n", + " [0.39118825100133514, 0.38451268357810414, 0.2...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 🙇\n", - " [0.42207399010658264, 0.29061537981033325, 0.2...\n", + " [0.4856921434402466, 0.25167116522789, 0.24757...\n", " \n", " \n", - " 26815\n", - " This is what having 3 dogs is like! It takes A...\n", + " 61252\n", + " amen\n", + " 🙏\n", + " [0.4983755685510071, 0.08057179987004548, 0.42...\n", + " 🙏\n", + " [0.48897236585617065, 0.09773151576519012, 0.3...\n", + " \n", + " \n", + " 39960\n", + " FACT\n", + " 😎\n", + " [0.5981432360742706, 0.10477453580901856, 0.29...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " [0.4365101754665375, 0.2751618027687073, 0.265...\n", + " \n", + " \n", + " 365\n", + " nw Finally Found Someone Hi Loydi\n", " 😅\n", - " [0.45922937989234924, 0.28813636302948, 0.2526...\n", + " [0.47186147186147187, 0.2922077922077922, 0.23...\n", + " 🙌\n", + " [0.6661455631256104, 0.07442493736743927, 0.22...\n", " \n", " \n", - " 47744\n", - " LMFAO!!!!!!!!!!\n", + " 50665\n", + " I need ur shoulder to cry on\n", + " 😢\n", + " [0.39118825100133514, 0.38451268357810414, 0.2...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 🙇\n", - " [0.4457263946533203, 0.28129613399505615, 0.27...\n", + " [0.5001665949821472, 0.18579629063606262, 0.27...\n", " \n", " \n", - " 19837\n", - " Monet.\n", - " 😍\n", - " [0.7296744771190439, 0.05173769460607014, 0.21...\n", - " 😬\n", - " [0.46295732259750366, 0.2748742699623108, 0.26...\n", + " 21007\n", + " awww you'll get me teary eyed gurl!\n", + " 😘\n", + " [0.7546600877192983, 0.05290570175438596, 0.19...\n", + " 😭\n", + " [0.32326677441596985, 0.39027056097984314, 0.1...\n", " \n", " \n", - " 17457\n", - " I don’t know why, but I kinda feel bad for the...\n", + " 18819\n", + " 〰Happy Hump Day to all my Ladies is def swe...\n", + " 😘\n", + " [0.7546600877192983, 0.05290570175438596, 0.19...\n", " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😵\n", - " [0.40437808632850647, 0.31182146072387695, 0.2...\n", + " [0.5100692510604858, 0.19811441004276276, 0.26...\n", " \n", " \n", - " 52462\n", - " Haha was howling man\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😂\n", - " [0.47637391090393066, 0.23940309882164001, 0.2...\n", - " \n", - " \n", - " 43377\n", - " Dyed my hair\n", + " 42421\n", + " Thanks.\n", " 😊\n", " [0.7040175768989329, 0.059322033898305086, 0.2...\n", - " 😅\n", - " [0.509038507938385, 0.28894180059432983, 0.202...\n", + " 😊\n", + " [0.6941412687301636, 0.07213307917118073, 0.21...\n", " \n", " \n", - " 25833\n", - " are you @ me aha I love thanksgiving, but Ch...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.45929089188575745, 0.27737101912498474, 0.2...\n", - " \n", - " \n", - " 67536\n", - " Who said there ain't no baseball in November\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.4750415086746216, 0.2561681270599365, 0.268...\n", - " \n", - " \n", - " 36246\n", - " trying to be the bigger person in this situati...\n", - " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😵\n", - " [0.41593965888023376, 0.31301191449165344, 0.2...\n", - " \n", - " \n", - " 67247\n", - " So yeah I went to Enternal Gardens and heard B...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😵\n", - " [0.40849044919013977, 0.31388798356056213, 0.2...\n", - " \n", - " \n", - " 13370\n", - " São Paulo deserves a shout instead of that r...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.4599554240703583, 0.26473745703697205, 0.27...\n", - " \n", - " \n", - " 65897\n", - " He is awesome ... remember his joke about 'pu...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😥\n", - " [0.45184966921806335, 0.3084986209869385, 0.23...\n", - " \n", - " \n", - " 59631\n", - " Yung feeling na last round 1v5 ace clutch\n", + " 38705\n", + " its okay I didn’t see you until I was in your...\n", " 😂\n", " [0.46813021474490496, 0.24716181096977158, 0.2...\n", " 😂\n", - " [0.4737370014190674, 0.2521499693393707, 0.274...\n", + " [0.4489935338497162, 0.24917839467525482, 0.28...\n", " \n", " \n", - " 1643\n", - " I remember watching family guy til i got sleep...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.46491703391075134, 0.26445358991622925, 0.2...\n", - " \n", - " \n", - " 16331\n", - " Go ahead stalk my page away\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 🙉\n", - " [0.5146245956420898, 0.20401647686958313, 0.28...\n", - " \n", - " \n", - " 3328\n", - " man you going bless the nature lmao trees don...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😥\n", - " [0.43352144956588745, 0.32003316283226013, 0.2...\n", - " \n", - " \n", - " 64995\n", - " Happy Birthday. drinks in me this weekend.\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😌\n", - " [0.6191940307617188, 0.15239886939525604, 0.22...\n", - " \n", - " \n", - " 7457\n", - " I can't read English.\n", - " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😅\n", - " [0.4581894278526306, 0.29683804512023926, 0.24...\n", - " \n", - " \n", - " 13454\n", - " I just surprised myself with that LMFAO\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😵\n", - " [0.4155941605567932, 0.3176829516887665, 0.266...\n", - " \n", - " \n", - " 68032\n", - " Thisss\n", + " 47033\n", + " Fall in with alexissdanger ⬅️\n", " 😍\n", " [0.7296744771190439, 0.05173769460607014, 0.21...\n", - " 😬\n", - " [0.4854748845100403, 0.2612924873828888, 0.253...\n", + " 😅\n", + " [0.4509217441082001, 0.2770771086215973, 0.229...\n", " \n", " \n", - " 67183\n", - " No one understands how much I love ted I just ...\n", + " 38742\n", + " Let your wild side free girl!!!!!\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😂\n", + " [0.5023915767669678, 0.22065317630767822, 0.26...\n", + " \n", + " \n", + " 67610\n", + " Can we get season 3 already!?\n", + " 😭\n", + " [0.34310532030401736, 0.4364820846905538, 0.22...\n", + " 😅\n", + " [0.49751874804496765, 0.2405281811952591, 0.23...\n", + " \n", + " \n", + " 61021\n", + " Have to quote this bih remember this nigga\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😂\n", + " [0.44404181838035583, 0.2531435489654541, 0.28...\n", + " \n", + " \n", + " 14904\n", + " He so damn\n", " 😩\n", " [0.22289823008849557, 0.5912610619469026, 0.18...\n", - " 😟\n", - " [0.43408700823783875, 0.3407832980155945, 0.22...\n", - " \n", - " \n", - " 45526\n", - " Sry mt bol sis online a jaya kr haan achi lg...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😹\n", - " [0.45702889561653137, 0.2917458713054657, 0.25...\n", - " \n", - " \n", - " 28803\n", - " Christian Organisations are lying as well, rig...\n", - " 😂\n", - " [0.46813021474490496, 0.24716181096977158, 0.2...\n", - " 😬\n", - " [0.47990110516548157, 0.26212865114212036, 0.2...\n", - " \n", - " \n", - " 11554\n", - " I’m Dead Asf\n", - " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😹\n", - " [0.44201627373695374, 0.2945305109024048, 0.26...\n", - " \n", - " \n", - " 68530\n", - " Yummy!\n", - " 😍\n", - " [0.7296744771190439, 0.05173769460607014, 0.21...\n", - " 😼\n", - " [0.5484175086021423, 0.20360249280929565, 0.24...\n", - " \n", - " \n", - " 21909\n", - " Bad news guys... the little bit of V line I ha...\n", - " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", - " 😬\n", - " [0.4582193195819855, 0.26798704266548157, 0.27...\n", - " \n", - " \n", - " 54063\n", - " The blood won't come off my neck!!!! I have a ...\n", - " 😭\n", - " [0.34310532030401736, 0.4364820846905538, 0.22...\n", " 😢\n", - " [0.39156991243362427, 0.3548761010169983, 0.25...\n", + " [0.395942747592926, 0.34198662638664246, 0.220...\n", + " \n", + " \n", + " 50994\n", + " YASSS It's time for a great show Maxloyal™♛:G...\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😍\n", + " [0.7120986580848694, 0.05822291225194931, 0.19...\n", + " \n", + " \n", + " 6973\n", + " Got to love a fish finger sarnie\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😂\n", + " [0.5202821493148804, 0.19921283423900604, 0.26...\n", + " \n", + " \n", + " 3269\n", + " say dat\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😁\n", + " [0.5501073598861694, 0.15135927498340607, 0.26...\n", + " \n", + " \n", + " 54827\n", + " If ur happy I'm happy\n", + " 😊\n", + " [0.7040175768989329, 0.059322033898305086, 0.2...\n", + " 😊\n", + " [0.6811650395393372, 0.076321542263031, 0.2262...\n", + " \n", + " \n", + " 19409\n", + " Rockstar\n", + " 😀\n", + " [0.6560364464692483, 0.08428246013667426, 0.25...\n", + " 😌\n", + " [0.6229063868522644, 0.10924336314201355, 0.23...\n", + " \n", + " \n", + " 38703\n", + " God fuck me I already fixed it once\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😢\n", + " [0.3869953751564026, 0.3528730273246765, 0.244...\n", + " \n", + " \n", + " 25133\n", + " It’s socially acceptable to listen to ANY Chr...\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😁\n", + " [0.5611444115638733, 0.16056178510189056, 0.24...\n", + " \n", + " \n", + " 15339\n", + " I thrashed p in iMessage now he wanna bet on 2k\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😂\n", + " [0.4555157423019409, 0.2545802891254425, 0.276...\n", + " \n", + " \n", + " 28082\n", + " my fatass need some lemon pepper wings w a lil...\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😔\n", + " [0.29292455315589905, 0.45915406942367554, 0.1...\n", + " \n", + " \n", + " 44462\n", + " fck off tristan yes soph collect u in 15 n w...\n", + " 😤\n", + " [0.2691131498470948, 0.4801223241590214, 0.250...\n", + " 😌\n", + " [0.5860549211502075, 0.13672666251659393, 0.24...\n", + " \n", + " \n", + " 60212\n", + " Open the bag\n", + " 😋\n", + " [0.6784741144414169, 0.04495912806539509, 0.27...\n", + " 😂\n", + " [0.45511847734451294, 0.24822814762592316, 0.2...\n", + " \n", + " \n", + " 34950\n", + " I asked people to guess my zodiac sign and thi...\n", + " 😤\n", + " [0.2691131498470948, 0.4801223241590214, 0.250...\n", + " 😂\n", + " [0.4273592531681061, 0.28500065207481384, 0.27...\n", + " \n", + " \n", + " 59462\n", + " I regret this sm\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😂\n", + " [0.43678316473960876, 0.24388131499290466, 0.2...\n", + " \n", + " \n", + " 19465\n", + " Fuck college\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😅\n", + " [0.43676847219467163, 0.30419719219207764, 0.2...\n", + " \n", + " \n", + " 8135\n", + " Aye this was my first time actually seeing it...\n", + " 😂\n", + " [0.46813021474490496, 0.24716181096977158, 0.2...\n", + " 😂\n", + " [0.45839327573776245, 0.2764120101928711, 0.26...\n", " \n", " \n", "\n", - "

1782 rows × 5 columns

\n", + "

2620 rows × 5 columns

\n", "" ], "text/plain": [ " text teacher \\\n", - "35056 I LOVE YOU OMG HOW DID I GET SO LUCKY 😍 \n", - "6745 Lol Palesa Blossom Mission Leomaure this guy i... 😂 \n", - "19721 I wish I can take a video of how I am laughing... 😂 \n", - "37748 The Adulting Awards on the commitment session ... 😂 \n", - "43315 Good English Valencia 😂 \n", - "35986 Yeahhhh righhhhttttt 😂 \n", - "21986 Anything for my baby. 😭 \n", - "50154 HBD PRETTY GIRL I LOVE YOU SM 😍 \n", - "49516 Cba for these boots 😭 \n", - "16799 That rose gold one! OMG 😍 \n", - "50674 just ended I can't explain feelings a great ... 😭 \n", - "16560 //I'm a male account and I can't even ask some... 😍 \n", - "33071 A Lebanese Christian (I dont even know him) se... 😂 \n", - "52543 I've seen this too many times 😂 \n", - "18733 HahahYESSSSS 😂 \n", - "12353 Sure.. That's so stupid ,. They just have to b... 😩 \n", - "49480 Ok makes sense 😂 \n", - "32767 They call you bitches and act like they moved ... 😂 \n", - "32938 On Christ himself that glossy lip, smooth brow... 😭 \n", - "46800 Let her enjoy wena mahn 😂 \n", - "68700 person that scares me 😂 \n", - "34936 Dodson put him on his back pockets 😂 \n", - "63804 I can’t wait to put a countdown in my name for... 😭 \n", - "13670 My chest hurt 😩 \n", - "36792 Ready to be back in Chicago for some good eats... 😂 \n", - "54093 I didn't see this 😂 \n", - "21937 I wonder have I met my wife yet 😂 \n", - "45980 why deep sorrow man 😂 \n", - "38860 Haha I had it on earlier 😂 \n", - "33399 this gif!!! 😂 \n", + "35671 I feel like I care so much more in every situa... 😂 \n", + "25683 I did not meat to add that '2' there...havent ... 😂 \n", + "8985 never… 😊 \n", + "5410 Lmao on me!!! Wtf was he supposed to say 😂 \n", + "62611 This dude always help me get through my schoo... 😊 \n", + "48197 Happy B'Day Sir 😊 \n", + "23654 You need some good old fashioned Swedish Jesus 🙏 \n", + "58207 these late shifts are making me not have a soc... 😅 \n", + "374 Dc this weekend 😍 \n", + "26310 Paul lad you'll make es blush 😊 \n", + "30892 Did you have a fun Halloween? 😂 \n", + "11868 Hi handsome 😍 \n", + "46219 I'm not okay with this, I'm suing Snapchat 😭 \n", + "13583 My parents be so mad I be buying new stuff &am... 😭 \n", + "43843 One of the few songs that calms me down esp on... 😂 \n", + "63589 iPhone X Bouta Be The Last Phone We Ever Buy 😂 \n", + "53695 Visited my main man today ❤ i miss u papa 😭 \n", + "67529 Donuts 😍 \n", + "25493 Has anyone heard this by ? Who the fuck knew... 😘 \n", + "19486 Wow superrbb 😍 \n", + "48449 Of course they don't. Their perfect model ... 😂 \n", + "4504 Please pick me. Pick me. Pick me. Please. 😍 \n", + "40285 shiid no crack is wack 😭 \n", + "56741 Pj still sleeps like a newborn 😩 \n", + "22948 An opinion doesn't mean you make sense first ... 😌 \n", + "68426 Missyou too 😘 \n", + "13431 I swear she did 😩 \n", + "66287 It’s true, he was the mutt’s (big-d) nuts. 😉 \n", + "41980 is happening so happy 😭 \n", + "34632 Saw that the first one said sosee you tmmrw a... 😂 \n", "... ... ... \n", - "13242 Studying abroad in Italy for 3 weeks it won'... 😭 \n", - "25032 I am weird too soo what's the problem ? 😂 \n", - "44255 Cuz he knows you strong 😂 \n", - "26815 This is what having 3 dogs is like! It takes A... 😂 \n", - "47744 LMFAO!!!!!!!!!! 😂 \n", - "19837 Monet. 😍 \n", - "17457 I don’t know why, but I kinda feel bad for the... 😂 \n", - "52462 Haha was howling man 😂 \n", - "43377 Dyed my hair 😊 \n", - "25833 are you @ me aha I love thanksgiving, but Ch... 😂 \n", - "67536 Who said there ain't no baseball in November 😂 \n", - "36246 trying to be the bigger person in this situati... 😭 \n", - "67247 So yeah I went to Enternal Gardens and heard B... 😂 \n", - "13370 São Paulo deserves a shout instead of that r... 😂 \n", - "65897 He is awesome ... remember his joke about 'pu... 😂 \n", - "59631 Yung feeling na last round 1v5 ace clutch 😂 \n", - "1643 I remember watching family guy til i got sleep... 😂 \n", - "16331 Go ahead stalk my page away 😂 \n", - "3328 man you going bless the nature lmao trees don... 😂 \n", - "64995 Happy Birthday. drinks in me this weekend. 😂 \n", - "7457 I can't read English. 😭 \n", - "13454 I just surprised myself with that LMFAO 😂 \n", - "68032 Thisss 😍 \n", - "67183 No one understands how much I love ted I just ... 😩 \n", - "45526 Sry mt bol sis online a jaya kr haan achi lg... 😂 \n", - "28803 Christian Organisations are lying as well, rig... 😂 \n", - "11554 I’m Dead Asf 😭 \n", - "68530 Yummy! 😍 \n", - "21909 Bad news guys... the little bit of V line I ha... 😭 \n", - "54063 The blood won't come off my neck!!!! I have a ... 😭 \n", + "47218 Keep it I don't want it 😂 \n", + "35087 6 years ago today we said our final good byes ... 😢 \n", + "61252 amen 🙏 \n", + "39960 FACT 😎 \n", + "365 nw Finally Found Someone Hi Loydi 😅 \n", + "50665 I need ur shoulder to cry on 😢 \n", + "21007 awww you'll get me teary eyed gurl! 😘 \n", + "18819 〰Happy Hump Day to all my Ladies is def swe... 😘 \n", + "42421 Thanks. 😊 \n", + "38705 its okay I didn’t see you until I was in your... 😂 \n", + "47033 Fall in with alexissdanger ⬅️ 😍 \n", + "38742 Let your wild side free girl!!!!! 😂 \n", + "67610 Can we get season 3 already!? 😭 \n", + "61021 Have to quote this bih remember this nigga 😂 \n", + "14904 He so damn 😩 \n", + "50994 YASSS It's time for a great show Maxloyal™♛:G... 😂 \n", + "6973 Got to love a fish finger sarnie 😂 \n", + "3269 say dat 😂 \n", + "54827 If ur happy I'm happy 😊 \n", + "19409 Rockstar 😀 \n", + "38703 God fuck me I already fixed it once 😂 \n", + "25133 It’s socially acceptable to listen to ANY Chr... 😂 \n", + "15339 I thrashed p in iMessage now he wanna bet on 2k 😂 \n", + "28082 my fatass need some lemon pepper wings w a lil... 😂 \n", + "44462 fck off tristan yes soph collect u in 15 n w... 😤 \n", + "60212 Open the bag 😋 \n", + "34950 I asked people to guess my zodiac sign and thi... 😤 \n", + "59462 I regret this sm 😂 \n", + "19465 Fuck college 😂 \n", + "8135 Aye this was my first time actually seeing it... 😂 \n", "\n", " teacher_sentiment predict \\\n", - "35056 [0.7296744771190439, 0.05173769460607014, 0.21... 😂 \n", - "6745 [0.46813021474490496, 0.24716181096977158, 0.2... 🙇 \n", - "19721 [0.46813021474490496, 0.24716181096977158, 0.2... 😅 \n", - "37748 [0.46813021474490496, 0.24716181096977158, 0.2... 😼 \n", - "43315 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "35986 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "21986 [0.34310532030401736, 0.4364820846905538, 0.22... 😼 \n", - "50154 [0.7296744771190439, 0.05173769460607014, 0.21... 😼 \n", - "49516 [0.34310532030401736, 0.4364820846905538, 0.22... 🙇 \n", - "16799 [0.7296744771190439, 0.05173769460607014, 0.21... 😅 \n", - "50674 [0.34310532030401736, 0.4364820846905538, 0.22... 😵 \n", - "16560 [0.7296744771190439, 0.05173769460607014, 0.21... 😅 \n", - "33071 [0.46813021474490496, 0.24716181096977158, 0.2... 😹 \n", - "52543 [0.46813021474490496, 0.24716181096977158, 0.2... 😹 \n", - "18733 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "12353 [0.22289823008849557, 0.5912610619469026, 0.18... 😹 \n", - "49480 [0.46813021474490496, 0.24716181096977158, 0.2... 🙇 \n", - "32767 [0.46813021474490496, 0.24716181096977158, 0.2... 😥 \n", - "32938 [0.34310532030401736, 0.4364820846905538, 0.22... 😬 \n", - "46800 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "68700 [0.46813021474490496, 0.24716181096977158, 0.2... 😼 \n", - "34936 [0.46813021474490496, 0.24716181096977158, 0.2... 🙇 \n", - "63804 [0.34310532030401736, 0.4364820846905538, 0.22... 😬 \n", - "13670 [0.22289823008849557, 0.5912610619469026, 0.18... 😅 \n", - "36792 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "54093 [0.46813021474490496, 0.24716181096977158, 0.2... 😵 \n", - "21937 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "45980 [0.46813021474490496, 0.24716181096977158, 0.2... 😅 \n", - "38860 [0.46813021474490496, 0.24716181096977158, 0.2... 😼 \n", - "33399 [0.46813021474490496, 0.24716181096977158, 0.2... 😱 \n", + "35671 [0.46813021474490496, 0.24716181096977158, 0.2... 😢 \n", + "25683 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "8985 [0.7040175768989329, 0.059322033898305086, 0.2... 😂 \n", + "5410 [0.46813021474490496, 0.24716181096977158, 0.2... 😭 \n", + "62611 [0.7040175768989329, 0.059322033898305086, 0.2... 😂 \n", + "48197 [0.7040175768989329, 0.059322033898305086, 0.2... 😀 \n", + "23654 [0.4983755685510071, 0.08057179987004548, 0.42... 😂 \n", + "58207 [0.47186147186147187, 0.2922077922077922, 0.23... 😢 \n", + "374 [0.7296744771190439, 0.05173769460607014, 0.21... 😁 \n", + "26310 [0.7040175768989329, 0.059322033898305086, 0.2... 😢 \n", + "30892 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "11868 [0.7296744771190439, 0.05173769460607014, 0.21... 🙌 \n", + "46219 [0.34310532030401736, 0.4364820846905538, 0.22... 😢 \n", + "13583 [0.34310532030401736, 0.4364820846905538, 0.22... 😢 \n", + "43843 [0.46813021474490496, 0.24716181096977158, 0.2... 😢 \n", + "63589 [0.46813021474490496, 0.24716181096977158, 0.2... 😭 \n", + "53695 [0.34310532030401736, 0.4364820846905538, 0.22... 😁 \n", + "67529 [0.7296744771190439, 0.05173769460607014, 0.21... 😂 \n", + "25493 [0.7546600877192983, 0.05290570175438596, 0.19... 😂 \n", + "19486 [0.7296744771190439, 0.05173769460607014, 0.21... 🙌 \n", + "48449 [0.46813021474490496, 0.24716181096977158, 0.2... 😌 \n", + "4504 [0.7296744771190439, 0.05173769460607014, 0.21... 😁 \n", + "40285 [0.34310532030401736, 0.4364820846905538, 0.22... 😂 \n", + "56741 [0.22289823008849557, 0.5912610619469026, 0.18... 😢 \n", + "22948 [0.6240601503759399, 0.13984962406015036, 0.23... 😢 \n", + "68426 [0.7546600877192983, 0.05290570175438596, 0.19... 😭 \n", + "13431 [0.22289823008849557, 0.5912610619469026, 0.18... 😂 \n", + "66287 [0.5634451019066403, 0.0992767915844839, 0.337... 😂 \n", + "41980 [0.34310532030401736, 0.4364820846905538, 0.22... 😂 \n", + "34632 [0.46813021474490496, 0.24716181096977158, 0.2... 😢 \n", "... ... ... \n", - "13242 [0.34310532030401736, 0.4364820846905538, 0.22... 😵 \n", - "25032 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", - "44255 [0.46813021474490496, 0.24716181096977158, 0.2... 🙇 \n", - "26815 [0.46813021474490496, 0.24716181096977158, 0.2... 😅 \n", - "47744 [0.46813021474490496, 0.24716181096977158, 0.2... 🙇 \n", - "19837 [0.7296744771190439, 0.05173769460607014, 0.21... 😬 \n", - "17457 [0.46813021474490496, 0.24716181096977158, 0.2... 😵 \n", - "52462 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", - "43377 [0.7040175768989329, 0.059322033898305086, 0.2... 😅 \n", - "25833 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "67536 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "36246 [0.34310532030401736, 0.4364820846905538, 0.22... 😵 \n", - "67247 [0.46813021474490496, 0.24716181096977158, 0.2... 😵 \n", - "13370 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "65897 [0.46813021474490496, 0.24716181096977158, 0.2... 😥 \n", - "59631 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", - "1643 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "16331 [0.46813021474490496, 0.24716181096977158, 0.2... 🙉 \n", - "3328 [0.46813021474490496, 0.24716181096977158, 0.2... 😥 \n", - "64995 [0.46813021474490496, 0.24716181096977158, 0.2... 😌 \n", - "7457 [0.34310532030401736, 0.4364820846905538, 0.22... 😅 \n", - "13454 [0.46813021474490496, 0.24716181096977158, 0.2... 😵 \n", - "68032 [0.7296744771190439, 0.05173769460607014, 0.21... 😬 \n", - "67183 [0.22289823008849557, 0.5912610619469026, 0.18... 😟 \n", - "45526 [0.46813021474490496, 0.24716181096977158, 0.2... 😹 \n", - "28803 [0.46813021474490496, 0.24716181096977158, 0.2... 😬 \n", - "11554 [0.34310532030401736, 0.4364820846905538, 0.22... 😹 \n", - "68530 [0.7296744771190439, 0.05173769460607014, 0.21... 😼 \n", - "21909 [0.34310532030401736, 0.4364820846905538, 0.22... 😬 \n", - "54063 [0.34310532030401736, 0.4364820846905538, 0.22... 😢 \n", + "47218 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "35087 [0.39118825100133514, 0.38451268357810414, 0.2... 😂 \n", + "61252 [0.4983755685510071, 0.08057179987004548, 0.42... 🙏 \n", + "39960 [0.5981432360742706, 0.10477453580901856, 0.29... 😂 \n", + "365 [0.47186147186147187, 0.2922077922077922, 0.23... 🙌 \n", + "50665 [0.39118825100133514, 0.38451268357810414, 0.2... 😂 \n", + "21007 [0.7546600877192983, 0.05290570175438596, 0.19... 😭 \n", + "18819 [0.7546600877192983, 0.05290570175438596, 0.19... 😂 \n", + "42421 [0.7040175768989329, 0.059322033898305086, 0.2... 😊 \n", + "38705 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "47033 [0.7296744771190439, 0.05173769460607014, 0.21... 😅 \n", + "38742 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "67610 [0.34310532030401736, 0.4364820846905538, 0.22... 😅 \n", + "61021 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "14904 [0.22289823008849557, 0.5912610619469026, 0.18... 😢 \n", + "50994 [0.46813021474490496, 0.24716181096977158, 0.2... 😍 \n", + "6973 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "3269 [0.46813021474490496, 0.24716181096977158, 0.2... 😁 \n", + "54827 [0.7040175768989329, 0.059322033898305086, 0.2... 😊 \n", + "19409 [0.6560364464692483, 0.08428246013667426, 0.25... 😌 \n", + "38703 [0.46813021474490496, 0.24716181096977158, 0.2... 😢 \n", + "25133 [0.46813021474490496, 0.24716181096977158, 0.2... 😁 \n", + "15339 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "28082 [0.46813021474490496, 0.24716181096977158, 0.2... 😔 \n", + "44462 [0.2691131498470948, 0.4801223241590214, 0.250... 😌 \n", + "60212 [0.6784741144414169, 0.04495912806539509, 0.27... 😂 \n", + "34950 [0.2691131498470948, 0.4801223241590214, 0.250... 😂 \n", + "59462 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", + "19465 [0.46813021474490496, 0.24716181096977158, 0.2... 😅 \n", + "8135 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n", "\n", " predicted_sentiment \n", - "35056 [0.5138983726501465, 0.2369314283132553, 0.249... \n", - "6745 [0.42938703298568726, 0.2851070463657379, 0.28... \n", - "19721 [0.4674359858036041, 0.2860119938850403, 0.246... \n", - "37748 [0.5368908047676086, 0.22797922790050507, 0.23... \n", - "43315 [0.49750247597694397, 0.24948053061962128, 0.2... \n", - "35986 [0.46295732259750366, 0.2748742699623108, 0.26... \n", - "21986 [0.5758423209190369, 0.19491779804229736, 0.22... \n", - "50154 [0.5453159809112549, 0.207011416554451, 0.2476... \n", - "49516 [0.43326714634895325, 0.28593116998672485, 0.2... \n", - "16799 [0.473838210105896, 0.2787647843360901, 0.2473... \n", - "50674 [0.3780469298362732, 0.3569388687610626, 0.265... \n", - "16560 [0.47279101610183716, 0.28100648522377014, 0.2... \n", - "33071 [0.4489242136478424, 0.29896649718284607, 0.25... \n", - "52543 [0.42817223072052, 0.31256356835365295, 0.2592... \n", - "18733 [0.46295732259750366, 0.2748742699623108, 0.26... \n", - "12353 [0.44481462240219116, 0.2898775637149811, 0.26... \n", - "49480 [0.42414095997810364, 0.289501428604126, 0.286... \n", - "32767 [0.4256601929664612, 0.3290562033653259, 0.245... \n", - "32938 [0.46742191910743713, 0.2577934265136719, 0.27... \n", - "46800 [0.4820931553840637, 0.2597433924674988, 0.258... \n", - "68700 [0.5506900548934937, 0.1981608271598816, 0.251... \n", - "34936 [0.41959047317504883, 0.2961031496524811, 0.28... \n", - "63804 [0.47894737124443054, 0.26814648509025574, 0.2... \n", - "13670 [0.4844517707824707, 0.2778504192829132, 0.237... \n", - "36792 [0.461605042219162, 0.2754403054714203, 0.2629... \n", - "54093 [0.40356379747390747, 0.3449265956878662, 0.25... \n", - "21937 [0.45527422428131104, 0.28081753849983215, 0.2... \n", - "45980 [0.4865574240684509, 0.26807573437690735, 0.24... \n", - "38860 [0.5328965187072754, 0.19487495720386505, 0.27... \n", - "33399 [0.438534677028656, 0.25870493054389954, 0.302... \n", + "35671 [0.3881330192089081, 0.34921327233314514, 0.24... \n", + "25683 [0.477517306804657, 0.2263115793466568, 0.2805... \n", + "8985 [0.4780172109603882, 0.24580059945583344, 0.25... \n", + "5410 [0.3319989740848541, 0.38802555203437805, 0.23... \n", + "62611 [0.471467524766922, 0.19387008249759674, 0.299... \n", + "48197 [0.6342154145240784, 0.0916505753993988, 0.253... \n", + "23654 [0.4485129117965698, 0.2649095952510834, 0.266... \n", + "58207 [0.35744383931159973, 0.37891000509262085, 0.2... \n", + "374 [0.575383186340332, 0.14427249133586884, 0.250... \n", + "26310 [0.3773207664489746, 0.363784521818161, 0.2402... \n", + "30892 [0.4547549784183502, 0.2675609588623047, 0.265... \n", + "11868 [0.6610512137413025, 0.07423651218414307, 0.20... \n", + "46219 [0.38139358162879944, 0.36385539174079895, 0.2... \n", + "13583 [0.393837571144104, 0.3474741280078888, 0.2423... \n", + "43843 [0.36614790558815, 0.369498074054718, 0.239036... \n", + "63589 [0.3337980806827545, 0.4099247455596924, 0.223... \n", + "53695 [0.5644013285636902, 0.14413486421108246, 0.25... \n", + "67529 [0.4482305943965912, 0.2685551047325134, 0.273... \n", + "25493 [0.41814130544662476, 0.27233976125717163, 0.2... \n", + "19486 [0.6488221883773804, 0.07963734865188599, 0.23... \n", + "48449 [0.5793762803077698, 0.14216111600399017, 0.24... \n", + "4504 [0.526153028011322, 0.1465001106262207, 0.2909... \n", + "40285 [0.4464351236820221, 0.25675588846206665, 0.27... \n", + "56741 [0.3798309564590454, 0.3601042628288269, 0.236... \n", + "22948 [0.3885924518108368, 0.35167044401168823, 0.23... \n", + "68426 [0.32084617018699646, 0.4261379539966583, 0.21... \n", + "13431 [0.4509403705596924, 0.2531892657279968, 0.277... \n", + "66287 [0.43934985995292664, 0.27343544363975525, 0.2... \n", + "41980 [0.5246269106864929, 0.21524660289287567, 0.23... \n", + "34632 [0.40898817777633667, 0.32723960280418396, 0.2... \n", "... ... \n", - "13242 [0.4010750651359558, 0.33369433879852295, 0.26... \n", - "25032 [0.4886448383331299, 0.23002634942531586, 0.28... \n", - "44255 [0.42207399010658264, 0.29061537981033325, 0.2... \n", - "26815 [0.45922937989234924, 0.28813636302948, 0.2526... \n", - "47744 [0.4457263946533203, 0.28129613399505615, 0.27... \n", - "19837 [0.46295732259750366, 0.2748742699623108, 0.26... \n", - "17457 [0.40437808632850647, 0.31182146072387695, 0.2... \n", - "52462 [0.47637391090393066, 0.23940309882164001, 0.2... \n", - "43377 [0.509038507938385, 0.28894180059432983, 0.202... \n", - "25833 [0.45929089188575745, 0.27737101912498474, 0.2... \n", - "67536 [0.4750415086746216, 0.2561681270599365, 0.268... \n", - "36246 [0.41593965888023376, 0.31301191449165344, 0.2... \n", - "67247 [0.40849044919013977, 0.31388798356056213, 0.2... \n", - "13370 [0.4599554240703583, 0.26473745703697205, 0.27... \n", - "65897 [0.45184966921806335, 0.3084986209869385, 0.23... \n", - "59631 [0.4737370014190674, 0.2521499693393707, 0.274... \n", - "1643 [0.46491703391075134, 0.26445358991622925, 0.2... \n", - "16331 [0.5146245956420898, 0.20401647686958313, 0.28... \n", - "3328 [0.43352144956588745, 0.32003316283226013, 0.2... \n", - "64995 [0.6191940307617188, 0.15239886939525604, 0.22... \n", - "7457 [0.4581894278526306, 0.29683804512023926, 0.24... \n", - "13454 [0.4155941605567932, 0.3176829516887665, 0.266... \n", - "68032 [0.4854748845100403, 0.2612924873828888, 0.253... \n", - "67183 [0.43408700823783875, 0.3407832980155945, 0.22... \n", - "45526 [0.45702889561653137, 0.2917458713054657, 0.25... \n", - "28803 [0.47990110516548157, 0.26212865114212036, 0.2... \n", - "11554 [0.44201627373695374, 0.2945305109024048, 0.26... \n", - "68530 [0.5484175086021423, 0.20360249280929565, 0.24... \n", - "21909 [0.4582193195819855, 0.26798704266548157, 0.27... \n", - "54063 [0.39156991243362427, 0.3548761010169983, 0.25... \n", + "47218 [0.46869081258773804, 0.2421991378068924, 0.26... \n", + "35087 [0.4856921434402466, 0.25167116522789, 0.24757... \n", + "61252 [0.48897236585617065, 0.09773151576519012, 0.3... \n", + "39960 [0.4365101754665375, 0.2751618027687073, 0.265... \n", + "365 [0.6661455631256104, 0.07442493736743927, 0.22... \n", + "50665 [0.5001665949821472, 0.18579629063606262, 0.27... \n", + "21007 [0.32326677441596985, 0.39027056097984314, 0.1... \n", + "18819 [0.5100692510604858, 0.19811441004276276, 0.26... \n", + "42421 [0.6941412687301636, 0.07213307917118073, 0.21... \n", + "38705 [0.4489935338497162, 0.24917839467525482, 0.28... \n", + "47033 [0.4509217441082001, 0.2770771086215973, 0.229... \n", + "38742 [0.5023915767669678, 0.22065317630767822, 0.26... \n", + "67610 [0.49751874804496765, 0.2405281811952591, 0.23... \n", + "61021 [0.44404181838035583, 0.2531435489654541, 0.28... \n", + "14904 [0.395942747592926, 0.34198662638664246, 0.220... \n", + "50994 [0.7120986580848694, 0.05822291225194931, 0.19... \n", + "6973 [0.5202821493148804, 0.19921283423900604, 0.26... \n", + "3269 [0.5501073598861694, 0.15135927498340607, 0.26... \n", + "54827 [0.6811650395393372, 0.076321542263031, 0.2262... \n", + "19409 [0.6229063868522644, 0.10924336314201355, 0.23... \n", + "38703 [0.3869953751564026, 0.3528730273246765, 0.244... \n", + "25133 [0.5611444115638733, 0.16056178510189056, 0.24... \n", + "15339 [0.4555157423019409, 0.2545802891254425, 0.276... \n", + "28082 [0.29292455315589905, 0.45915406942367554, 0.1... \n", + "44462 [0.5860549211502075, 0.13672666251659393, 0.24... \n", + "60212 [0.45511847734451294, 0.24822814762592316, 0.2... \n", + "34950 [0.4273592531681061, 0.28500065207481384, 0.27... \n", + "59462 [0.43678316473960876, 0.24388131499290466, 0.2... \n", + "19465 [0.43676847219467163, 0.30419719219207764, 0.2... \n", + "8135 [0.45839327573776245, 0.2764120101928711, 0.26... \n", "\n", - "[1782 rows x 5 columns]" + "[2620 rows x 5 columns]" ] }, "metadata": {}, @@ -2372,13 +2414,105 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 35, "metadata": {}, "outputs": [], "source": [ "testlist.to_csv('test.csv')" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* save classifier:" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "import pickle\n", + "clf.save(\"clf.keras\")\n", + "pickle.dump( vectorizer, open( \"vec.pickle\", \"wb\" ) )" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "## testing area\n", + "\n", + "**for just testing, start from here!**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* loading classifier and vectorizer" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "from IPython.display import clear_output, Markdown, Math\n", + "import ipywidgets as widgets\n", + "import sys\n", + "sys.path.append(\"..\")\n", + "\n", + "from Tools.Emoji_Distance import sentiment_vector_to_emoji\n", + "from Tools.Emoji_Distance import emoji_to_sentiment_vector\n", + "\n", + "def emoji2sent(emoji_arr):\n", + " return np.array([emoji_to_sentiment_vector(e) for e in emoji_arr])\n", + "\n", + "def sent2emoji(sent_arr, custom_target_emojis=None):\n", + " return [sentiment_vector_to_emoji(s, custom_target_emojis=custom_target_emojis) for s in sent_arr]" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Using TensorFlow backend.\n" + ] + } + ], + "source": [ + "import keras\n", + "import pickle\n", + "clf = keras.models.load_model(\"clf.keras\")\n", + "vectorizer = pickle.load( open( \"vec.pickle\", \"rb\" ) )" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* define lookup emojis here:" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "lookup_emojis = ['😭', '😍', '😩', '😊']" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -2388,13 +2522,13 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0bb4369d6024479691a09e906b8eb6cb", + "model_id": "99b8ccda9a8e4107ba13de24b6be3e2c", "version_major": 2, "version_minor": 0 }, @@ -2408,7 +2542,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6ae8d1bf97eb4d6a9119681d4e522a21", + "model_id": "0b13646fc5924226a9076033b7d2a0e4", "version_major": 2, "version_minor": 0 }, @@ -2440,7 +2574,7 @@ " with out:\n", " pred = clf.predict(vectorizer.transform([t.value]))\n", " \n", - " display(Markdown(\"# \" + str(sent2emoji(pred))))\n", + " display(Markdown(\"# \" + str(sent2emoji(pred, lookup_emojis))))\n", "\n", "b.on_click(handle_submit)\n", " \n", diff --git a/Project/simple_approach/test.csv b/Project/simple_approach/test.csv index a794766..dc65e5f 100644 --- a/Project/simple_approach/test.csv +++ b/Project/simple_approach/test.csv @@ -1,1783 +1,2621 @@ ,text,teacher,teacher_sentiment,predict,predicted_sentiment -35056, I LOVE YOU OMG HOW DID I GET SO LUCKY,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5138983726501465, 0.2369314283132553, 0.2491702288389206]" -6745,Lol Palesa Blossom Mission Leomaure this guy is too much ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42938703298568726, 0.2851070463657379, 0.28550592064857483]" -19721,I wish I can take a video of how I am laughing right now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4674359858036041, 0.2860119938850403, 0.24655207991600037]" -37748,The Adulting Awards on the commitment session of Adulting is awesome .Touché ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5368908047676086, 0.22797922790050507, 0.2351299375295639]" -43315, Good English Valencia ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.49750247597694397, 0.24948053061962128, 0.25301700830459595]" -35986, Yeahhhh righhhhttttt ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -21986,Anything for my baby. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5758423209190369, 0.19491779804229736, 0.229239821434021]" -50154,HBD PRETTY GIRL I LOVE YOU SM ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5453159809112549, 0.207011416554451, 0.24767255783081055]" -49516,Cba for these boots ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.43326714634895325, 0.28593116998672485, 0.2808017432689667]" -16799,That rose gold one! OMG ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.473838210105896, 0.2787647843360901, 0.24739708006381989]" -50674, just ended I can't explain feelings a great ending indeed.when Asfi cried I was literally crying gonna miss u ❤,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.3780469298362732, 0.3569388687610626, 0.2650142014026642]" -16560,"//I'm a male account and I can't even ask someone to RP with me. Most guys just spam girls with ""Wanna RP """,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.47279101610183716, 0.28100648522377014, 0.24620245397090912]" -33071,A Lebanese Christian (I dont even know him) sending me hate messages on FB since morning just because I have palestine pics on my profile,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4489242136478424, 0.29896649718284607, 0.25210925936698914]" -52543, I've seen this too many times ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.42817223072052, 0.31256356835365295, 0.2592642605304718]" -18733, HahahYESSSSS,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -12353,"Sure.. That's so stupid ,. They just have to be positive on errting n the hard work they're putting ,one day it's… ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.44481462240219116, 0.2898775637149811, 0.26530781388282776]" -49480, Ok makes sense,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42414095997810364, 0.289501428604126, 0.2863576114177704]" -32767,They call you bitches and act like they moved on but still hitting this 572!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4256601929664612, 0.3290562033653259, 0.24528354406356812]" -32938,"On Christ himself that glossy lip, smooth brown skin combo undefeated ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46742191910743713, 0.2577934265136719, 0.2747846841812134]" -46800,Let her enjoy wena mahn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4820931553840637, 0.2597433924674988, 0.2581634819507599]" -68700, person that scares me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5506900548934937, 0.1981608271598816, 0.25114914774894714]" -34936,Dodson put him on his back pockets ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.41959047317504883, 0.2961031496524811, 0.2843063473701477]" -63804,I can’t wait to put a countdown in my name for tour next month ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.47894737124443054, 0.26814648509025574, 0.2529062032699585]" -13670,My chest hurt ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4844517707824707, 0.2778504192829132, 0.2376977652311325]" -36792,Ready to be back in Chicago for some good eats and for my family ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.461605042219162, 0.2754403054714203, 0.26295459270477295]" -54093, I didn't see this,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40356379747390747, 0.3449265956878662, 0.2515096068382263]" -21937,I wonder have I met my wife yet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45527422428131104, 0.28081753849983215, 0.26390817761421204]" -45980, why deep sorrow man ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4865574240684509, 0.26807573437690735, 0.24536684155464172]" -38860, Haha I had it on earlier ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5328965187072754, 0.19487495720386505, 0.27222856879234314]" -33399, this gif!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.438534677028656, 0.25870493054389954, 0.30276036262512207]" -59327,It's tragic. Maybe in a previous life I died in one or one ran me over or something ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44590872526168823, 0.2695486545562744, 0.2845425605773926]" -18171,Graduate grad school ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.534550666809082, 0.22533664107322693, 0.24011264741420746]" -68437, So so much ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -53675, Ikr i wasnt sure mine too cus it never was on my report ever since sekolah rendah but mom said prob A… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4260933995246887, 0.30149394273757935, 0.2724127173423767]" -1408, Yes please! Thank tou for the chance! ❤,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙈,"[0.6005869507789612, 0.16832150518894196, 0.23109154403209686]" -34710,I want some tamales ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.42200928926467896, 0.3739554286003113, 0.204035222530365]" -28026, Why u on my ass like this that ain’t necessary,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4228023290634155, 0.3075038492679596, 0.2696937918663025]" -31411, Finna get on the ass now I need me some icey ass patches gotta help me,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.4123865067958832, 0.3519297242164612, 0.23568378388881683]" -44217,Cleveland ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5108453035354614, 0.2372199147939682, 0.2519347369670868]" -66571,Bruhhh so much fire ass music is droppin and I’m not awake enough to listen to it all,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5084490180015564, 0.23870782554149628, 0.2528431713581085]" -41943, Happy birthday ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6718515157699585, 0.1117878332734108, 0.2163606733083725]" -8012, My birthday is on 24th. Omg. Thank u for the opportunity.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6250640153884888, 0.158223494887352, 0.21671245992183685]" -30628, Sounds like you can't hang ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.43990474939346313, 0.2710181176662445, 0.28907713294029236]" -60258," Ayy twin dont talk about our big like that, she’s gonna get mad ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4975707530975342, 0.2546694874763489, 0.24775974452495575]" -36373, I can only pray they do ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5611535906791687, 0.1804932951927185, 0.2583530843257904]" -63490,Honestly this is Chris Browns best work,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5156642198562622, 0.22800646722316742, 0.25632935762405396]" -61110,my thoughts exactly ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4370000660419464, 0.29284578561782837, 0.2701541483402252]" -62414,“Whoever threw that paper your mom is a hoe” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.43888530135154724, 0.2677719295024872, 0.2933426797389984]" -60494, What a well CRAFTed response. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.41824379563331604, 0.270783007144928, 0.310973197221756]" -58688, Lol I’m trying to get verified lmao ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.41858726739883423, 0.28119224309921265, 0.3002204895019531]" -66391,robbie kay ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4959593713283539, 0.24599938094615936, 0.2580413222312927]" -5086,Yep I had Christmas music playing today ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5659906268119812, 0.20166650414466858, 0.23234280943870544]" -30566, Dumb ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.44024115800857544, 0.28956279158592224, 0.27019602060317993]" -47445,This as tweet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4730549156665802, 0.26070231199264526, 0.26624277234077454]" -52038, Yea they took it all sadly ☹️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.44957685470581055, 0.2779272198677063, 0.27249592542648315]" -67004,"Hoy, ang lamig! ❄ I need your hug. ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.4476719796657562, 0.2976730763912201, 0.25465497374534607]" -54747, Ok then lets start from us DDS our First lady Honeylet Duterte ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5522674322128296, 0.1977631151676178, 0.24996937811374664]" -13459,Tomorrowland Belgium 2017 | Official Aftermovie via goals ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.6043020486831665, 0.1664256453514099, 0.22927238047122955]" -20835,Naples -Manchester city ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5391106009483337, 0.20767070353031158, 0.25321877002716064]" -52920, barista: “one venti green tea latte with soy for.. Rhanielle?” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49736419320106506, 0.2452959567308426, 0.25733983516693115]" -2502, This is everything! I love that attire on Royce yes!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.523034930229187, 0.23241554200649261, 0.24454952776432037]" -12596,guilty ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4727875888347626, 0.26407042145729065, 0.2631419897079468]" -61656,Good morning to my knight and shining armor. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5164843201637268, 0.2260143756866455, 0.25750136375427246]" -51642," We do out best, don't we? ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4682464599609375, 0.2627807855606079, 0.268972784280777]" -27298,Sooo excited. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😺,"[0.5968014597892761, 0.19591383635997772, 0.20728471875190735]" -54431, Dont go off to hang yourself now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4312805235385895, 0.2731510400772095, 0.2955683767795563]" -3318,Fall in with ameerasweetboy ⬅️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.49175918102264404, 0.2738983929157257, 0.23434244096279144]" -38064, It doesnt ship to Australia can you please change this? I need this calender ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.5006772875785828, 0.25434285402297974, 0.2449798285961151]" -64034,He is my spirit animal I swearrr❤️ ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.3749545216560364, 0.33592522144317627, 0.2891201972961426]" -27159, Same ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -13132, Lmao walkout windmillin ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4525211453437805, 0.2560540735721588, 0.29142478108406067]" -50525, Drugs Are Bad Dude really tried to date rape me no homo,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.415573388338089, 0.31960052251815796, 0.26482608914375305]" -24634,Wanna be friends? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38318413496017456, 0.3797176778316498, 0.23709818720817566]" -48300,Tell me more ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45840248465538025, 0.26895320415496826, 0.2726442515850067]" -35173, Lmao join in on he convo friend ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4397067427635193, 0.27436792850494385, 0.28592535853385925]" -39966, watching Graham Norton and he is so funny and his show is good. Much love xx ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4657401442527771, 0.23535902798175812, 0.2989007234573364]" -63910, Any suggestions? w,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4379773437976837, 0.3127298653125763, 0.2492927759885788]" -14047, Oh man unfortunate his stuff slaps.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5701072812080383, 0.18694838881492615, 0.24294432997703552]" -67061, It was my 4th & 5th words this morning... not quite the first thing I said... but getting closer ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43720167875289917, 0.2881876528263092, 0.27461060881614685]" -50340, Sooo darn cute ❤️,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5471425652503967, 0.22669509053230286, 0.22616231441497803]" -5816, U MISS MY ASS NOT ME STFU jk me too,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3949263393878937, 0.3442637622356415, 0.26080989837646484]" -24583, I would come for that cake to TBH the display is amazing ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.48632127046585083, 0.2565898299217224, 0.25708895921707153]" -3954,Left ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.4284491240978241, 0.31884080171585083, 0.2527100741863251]" -47573, Fuck you ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.4449709355831146, 0.27948474884033203, 0.2755444049835205]" -42416,All this kelapa sawit.. but you still cannot find the right one for you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4654039740562439, 0.264005184173584, 0.27059081196784973]" -58646,|| Someone just compared me to Melissa. Like what??? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43629321455955505, 0.31770819425582886, 0.2459985911846161]" -40269,Impressive sting by .And they believed he’d drain the swamp!Trump signs GOP repeal of consumer banking rule ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4536643624305725, 0.27720654010772705, 0.2691291570663452]" -17740, aren't u going to give up?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44249439239501953, 0.2692206799983978, 0.28828489780426025]" -24506, These braam kids. They did the same thing to Oros,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",🙇,"[0.4240885376930237, 0.28889787197113037, 0.28701356053352356]" -7140,My Weakness ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.48290276527404785, 0.26490604877471924, 0.2521911859512329]" -61622,Why did I think about that scene from Save the Last Dance? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.38797616958618164, 0.3364458382129669, 0.27557799220085144]" -37272,Quiero que sea marzo e ir a ver the neighbourhood!!!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4616275429725647, 0.2861025631427765, 0.2522698938846588]" -48437,Love U ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5326588749885559, 0.2183033674955368, 0.2490376979112625]" -36459,soooooooooooooo.....dark concept my ass ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5606955289840698, 0.20224875211715698, 0.2370556890964508]" -62899,Before... and after! Delicious steak dinner from drewhildreth ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5625402927398682, 0.200943261384964, 0.23651646077632904]" -13254, Oh shut up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.455620676279068, 0.26399582624435425, 0.28038352727890015]" -34558,Omg man .. Lol been on this super nintendo since 9 .. I was stuck on castle 3 for maybe 40 mins ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5371577143669128, 0.20449088513851166, 0.2583514451980591]" -15718, Lmaooo a reach nice try billy never heard of a black person shooting upna school,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5543339848518372, 0.19643738865852356, 0.2492285668849945]" -60381, Yes o..na only you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5250182747840881, 0.21110306680202484, 0.26387861371040344]" -22234, More boring than the game,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4016801416873932, 0.32540184259414673, 0.2729179561138153]" -34324,How am I spending my afternoon? Singing along with the woahs in Ricky Bobby by full blast and terribly ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5119022727012634, 0.22528117895126343, 0.26281654834747314]" -23810, ”Insolent yokel” is Harold-Washington-worthy. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5050159692764282, 0.21909254789352417, 0.27589151263237]" -50737, Congrats TJ! Can’t wait to be teammates again!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5491520166397095, 0.18791618943214417, 0.26293179392814636]" -15655,The amount of co workers who have smoked me up or smoked w me on break is crazy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4534096419811249, 0.2920089066028595, 0.2545814514160156]" -32128,Just what I've imagined while reading the book ❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.48079249262809753, 0.2993388772010803, 0.21986857056617737]" -19293,Um bitch I was going to dress as a nurse if a Halloween party was organised over here () and now Shawn is a a doctor? Coinkydink,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5156952142715454, 0.22702156007289886, 0.25728321075439453]" -14771, now that you have my attention wassup?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.5882886052131653, 0.17594584822654724, 0.23576556146144867]" -31241,But heh u must relocate for me ok I don't have any desire to actually live in the states.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4171227514743805, 0.3214782476425171, 0.2613990306854248]" -60537,Damn they really gave cartman a girlfriend ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41654789447784424, 0.31752288341522217, 0.2659291625022888]" -54757," Lol. You sent a graph, guy sent a 316-paged doc with Zero ref or quote. SMH",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4725494086742401, 0.25424525141716003, 0.27320536971092224]" -55325,Queen ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😽,"[0.7440330982208252, 0.08944875746965408, 0.16651812195777893]" -2382, wildest on twitter by far ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5822277665138245, 0.16251236200332642, 0.2552598714828491]" -40775, Cum in my mouth ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.45743271708488464, 0.26980477571487427, 0.2727625370025635]" -49110,Conspiracy theories are so addicting!! I wish I had someone to talk it out with ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3794189989566803, 0.3670594096183777, 0.25352156162261963]" -48176, so how many autographs did he end up getting? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4412178099155426, 0.3093460500240326, 0.249436154961586]" -55012, What intruder would ignore u,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.42758235335350037, 0.31060171127319336, 0.26181599497795105]" -49272, No one really doesVaise learned that from other tweeps101 ways to get attention on Twitter,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4816719591617584, 0.2326870560646057, 0.28564098477363586]" -62702,Craving gumbo ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.38312068581581116, 0.36771148443222046, 0.24916782975196838]" -3219, Sounds like trouble! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.44086435437202454, 0.2774618864059448, 0.2816738188266754]" -36928, Go Browns! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.6109001040458679, 0.17007483541965485, 0.21902506053447723]" -64224,Oh how I love being LatinaI feel like this is every mom ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4625154137611389, 0.29801145195961, 0.2394731342792511]" -33234, Yes !!! Same here can't wait to watch wow all them tight clothes he will be wearing ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.4405127763748169, 0.30191928148269653, 0.25756797194480896]" -51770, hahahaha nah stop the one in the pink coat sends me west ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",🙇,"[0.4463437795639038, 0.2836395502090454, 0.2700166702270508]" -5255,"Aww my cousin just looked at me and said “You know Erin, I know you have acne but you can take some good selfies” ❤️",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4480767548084259, 0.2858775556087494, 0.2660456895828247]" -42751," continues to display stupidity every few days. Should stick to hunting & vacations, not politics ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5252336859703064, 0.22795294225215912, 0.24681341648101807]" -56411,OMG YALL!!! Get ready for a live later tonight or tomorrow! If you're into beauty products or you have family... ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.46554264426231384, 0.31634315848350525, 0.21811425685882568]" -61417,and ARMYs are all excited as ever too! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙈,"[0.6120074391365051, 0.16310741007328033, 0.22488512098789215]" -35558,I️ swear ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.42089325189590454, 0.3083578944206238, 0.2707487940788269]" -50628,"I miss staying on campus, I feel separated from everything ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.37032607197761536, 0.40665194392204285, 0.223021999001503]" -45319," You're not alone,I'm planning to pay a visit soon ..then we can celebrate each other",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6037495732307434, 0.17447565495967865, 0.22177480161190033]" -40669,Hahahah the ole dick slap ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49609798192977905, 0.22946810722351074, 0.2744339108467102]" -38836,My sister wants to remake this video and I’m all for it ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4708497226238251, 0.2894101142883301, 0.23974008858203888]" -37777,They look so happy.. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.5903144478797913, 0.15847595036029816, 0.251209557056427]" -10305,"Went to the Post Office in town today, and a little girl went in with her parents, and said; ""Not the boring Post Office!""",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4223862290382385, 0.29750707745552063, 0.28010672330856323]" -9859,wondered where all my money went forgetting that rent is a thing ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.43241629004478455, 0.2809183895587921, 0.2866653800010681]" -35942, you mean *Saint Motel not sand motel ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5012633204460144, 0.24029764533042908, 0.25843894481658936]" -61778,"How yal be having a new bf every week , & each month ?",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5062122344970703, 0.2521394193172455, 0.2416483461856842]" -22557,I swear ppl in my Chen class are dropping like flies,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4495556056499481, 0.29300016164779663, 0.25744423270225525]" -2903,Is it weird that my dad just discovered what song mashups are?? LOL he is very amazed. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48616406321525574, 0.24505555629730225, 0.2687804102897644]" -56976, Update I got there and they cancelled the all saints day tours it was for geography,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44514718651771545, 0.30031466484069824, 0.2545381188392639]" -19891,Here’s a Jungkook blanket. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.4387747645378113, 0.2921382188796997, 0.269087016582489]" -60953,Happy birthday beautiful Have a great 21st! ❤️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😘,"[0.7564002871513367, 0.06689152121543884, 0.1767081916332245]" -20389,"any solution for this problem? Allergic seafood, & now pakai aiken. ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.4479975998401642, 0.27957436442375183, 0.27242809534072876]" -26087,His face and the fact he was so beside himself that he dropped the paddle ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4668539762496948, 0.28383326530456543, 0.24931278824806213]" -38098,Fuck like you pussy jaajaj ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4382539391517639, 0.30665987730026245, 0.255086213350296]" -25643,Guess who ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4543648660182953, 0.2549576759338379, 0.2906774878501892]" -58141, that’s why he’s on PS4 ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.482301265001297, 0.2648952305316925, 0.2528035044670105]" -67238, Havey,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -8379, Not better looking then ur 15 yer old sister tho ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.43787363171577454, 0.27798402309417725, 0.28414228558540344]" -18124, I’ll get a matching tat with ya ‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.509270966053009, 0.22554419934749603, 0.2651848793029785]" -6616," while praying that's not prayer,real prayer yu don't sleep",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3885986804962158, 0.3612728714942932, 0.25012847781181335]" -30807,Movie marathon with mama and ate ❤,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5153624415397644, 0.22069458663463593, 0.26394298672676086]" -59838, ?¿ last one I won't ask anyone ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4125727117061615, 0.32241395115852356, 0.2650133967399597]" -59101,The tunes ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -59332, Truly ❤❤❤,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.38287588953971863, 0.3527720868587494, 0.2643519937992096]" -25312,"I’m not crying, you are ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4222264587879181, 0.32477089762687683, 0.2530025839805603]" -44284,Hate waking up horny ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.40563687682151794, 0.35052305459976196, 0.24384000897407532]" -25225, Don't follow me though ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5082132816314697, 0.24402186274528503, 0.24776485562324524]" -59420,Puberty hit him hard ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.47464531660079956, 0.27648451924324036, 0.2488701045513153]" -59392,Get up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -34017,I’m so warm and comfortable I don’t want to go out in that cold ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😥,"[0.438340961933136, 0.31854939460754395, 0.24310964345932007]" -27548, lol i know who would do this type of shit,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4094247817993164, 0.30191582441329956, 0.28865933418273926]" -34385, do those actually work,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.394680917263031, 0.3450106680393219, 0.26030847430229187]" -2224,Treats from my bro. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😱,"[0.44911083579063416, 0.25589555501937866, 0.29499363899230957]" -28571,1. I forgot to change the tweet about ron Weasley lol and 2. lol at my face being freaked out by the random flash ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46929413080215454, 0.26420000195503235, 0.2665058374404907]" -28068,my mans like wtf is she doing!? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.37538135051727295, 0.3422478437423706, 0.28237083554267883]" -15568, I'm in love ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5326588749885559, 0.2183033674955368, 0.2490376979112625]" -12804,"I’m so pissed I finished Stranger Things, what am I supposed to watch now",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😴,"[0.3567706346511841, 0.3941035270690918, 0.24912585318088531]" -16156,LMFAOOOO MY FAV VIDEOSHSHSHHSG THAT NOT FUNNYFOOLED HER WITH THE QUICKNESS ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5182855129241943, 0.2435106337070465, 0.23820385336875916]" -42034, Am going to need more clues xx,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40816107392311096, 0.3073126971721649, 0.2845262587070465]" -6697,Another cutie get up ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😘,"[0.7590774893760681, 0.08172179013490677, 0.1592007279396057]" -48700, has the winner been picked? x,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.47253522276878357, 0.23793546855449677, 0.2895292639732361]" -45010,Pirates ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.432297021150589, 0.28355899453163147, 0.28414395451545715]" -1867,I CANT BREATHE ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5283496379852295, 0.2152043879032135, 0.2564460337162018]" -15420,My legs look like some lil ass drum sticks ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.516852855682373, 0.2461165338754654, 0.23703067004680634]" -11694, I need insurance ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5037984848022461, 0.2552751898765564, 0.24092625081539154]" -23569, Positioning your video? did I miss a video explaining what that means feeling blonde ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45220300555229187, 0.29119861125946045, 0.25659841299057007]" -26389, nah bro they do ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46040061116218567, 0.2751307189464569, 0.26446864008903503]" -55003, that is crazy! Talk about mind games Level 2.0,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43848612904548645, 0.308824747800827, 0.25268909335136414]" -47349,Slay queens congratulating Michael Olunga yet they don't understand why ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5641790628433228, 0.20392394065856934, 0.23189696669578552]" -24963,i just saw the news on it i didn't know wendy williams fainted in that video that's happened to me before omg y'all are horrible,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44821998476982117, 0.2855733335018158, 0.2662067413330078]" -63167, Does Laura know who the dead cat is on the table?its Michael Fallon they must be related cos she looks like she's going to cry,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.45501774549484253, 0.2667534351348877, 0.27822884917259216]" -67246,Partner sis ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.416294127702713, 0.33206337690353394, 0.25164252519607544]" -50072,Somebody get my daddy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4711329936981201, 0.259268581867218, 0.26959842443466187]" -53253, Ain corror ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4330803155899048, 0.2778247892856598, 0.2890949547290802]" -19628, We hear you! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4808599054813385, 0.27152401208877563, 0.24761605262756348]" -10357," ""She mad I stole her trade!"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42644983530044556, 0.29479503631591797, 0.2787550985813141]" -25466,See if Tyrese would had him a black woman with a weave she wouldn’t have him out here making these damn videos ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.4510958790779114, 0.2793560326099396, 0.26954811811447144]" -2140, Supply Drops is like a thing that will never go away,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44992274045944214, 0.27279728651046753, 0.27727994322776794]" -9511,Hi to my first friend in shs! Thanks for being so real and lowkey mabait. Muling ibalik... lol joke ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.524440348148346, 0.18508823215961456, 0.2904713749885559]" -13662,Seeing newborn babies for the past 2 months has my ovaries and hormones all over the place. Baby fever on full effect,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5779009461402893, 0.21370598673820496, 0.20839303731918335]" -62855, How’s about sharing a vegetarian plate? Asking for a friend. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.4879305362701416, 0.27038583159446716, 0.24168364703655243]" -63114, Trueeee ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -27462,Damn lmfaoooo ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4292290210723877, 0.308745414018631, 0.2620255649089813]" -47609, Well he does look like a daddy there I must pick up this book like now,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.4141274094581604, 0.3170134723186493, 0.2688590884208679]" -31471,both of the above ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -57804,"Alan, try a jeweller for sizing willy rings. I’m sure they have a thing for that ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4913996756076813, 0.24740374088287354, 0.26119664311408997]" -38830,Bitches always telling somebody else business until they business getting told then they ready to cry somewhere,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4039851725101471, 0.3183579742908478, 0.2776569128036499]" -67162,Cannnnntttt waiiittttt 2 daysss more ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -39166, Love you my baby girl,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5575093626976013, 0.20965959131717682, 0.23283107578754425]" -67969,I really just want my umbrella back lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3915897309780121, 0.35221272706985474, 0.2561975419521332]" -31779, I do lowkey ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4248504638671875, 0.27207809686660767, 0.30307140946388245]" -29560, Holy crap! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46792733669281006, 0.2468332201242447, 0.2852395474910736]" -688, braso gaming ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -59760,the man standing in the doorway makes this so funny. he’s so hurt ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4243387281894684, 0.286013126373291, 0.289648175239563]" -57349, oh no and girl I used to eat powder as a child ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4348579943180084, 0.3079785108566284, 0.25716355443000793]" -5729,Smart Women will Always be a Turn On ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4838237166404724, 0.2387494146823883, 0.27742689847946167]" -27398, You're such a heel ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4861757755279541, 0.2616409659385681, 0.2521832287311554]" -28680, I FEEL YOU!! HAHAHAHA IM SHOOKETH FOR YOU ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.3953556418418884, 0.33488383889198303, 0.2697605490684509]" -3285, Where's mine ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -68151,Lol saw two of my exes tonight at the club they both look like garbage lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.447973370552063, 0.26628950238227844, 0.28573715686798096]" -43631,actually seen so many tweets today saying it's my bday month ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5589656829833984, 0.17519500851631165, 0.2658393085002899]" -4357, Jealous of that relationship ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4663573205471039, 0.26286810636520386, 0.2707744538784027]" -42382, He is talking about Bill Clinton lol not Hillary boys,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44562798738479614, 0.28807008266448975, 0.2663019299507141]" -767,Scared of windows nowadays ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46540340781211853, 0.27327337861061096, 0.26132312417030334]" -55637, Literally LOL too funny!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4404242932796478, 0.26423752307891846, 0.2953381836414337]" -37440,Someones saying i need to eat 1000 cals a day idk anymorr fck it im fat. go away then lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4407544434070587, 0.2939750552177429, 0.26527050137519836]" -21753, I feel like Yosuke is bi too but they’re meant to be in my book ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.41954904794692993, 0.33027347922325134, 0.25017741322517395]" -18150,Nice win I enjoyed all the dino puns as well ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5191892385482788, 0.22583019733428955, 0.25498056411743164]" -24860,The Cutest ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.4072365164756775, 0.3434097170829773, 0.24935370683670044]" -14180," Time flies, especially when your life is fallin apart ‍️",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4657260775566101, 0.28318777680397034, 0.25108614563941956]" -53837, Thank youuuu ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5684520602226257, 0.1882457733154297, 0.2433021366596222]" -30494, Sorry for saying sorry ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44981828331947327, 0.2725532352924347, 0.27762848138809204]" -48090, who hurt u,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3914550244808197, 0.36093559861183167, 0.24760939180850983]" -59400,THIS BOY REALLY LEFT ME ON READ LIKE I DONT EXIST good night to everyone except Ivan ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.39081448316574097, 0.3400843143463135, 0.26910123229026794]" -10423, we r waiting ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4657473862171173, 0.2586245834827423, 0.2756280303001404]" -56252, Hell NAh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45228371024131775, 0.29284656047821045, 0.2548697888851166]" -5899,omg I love this pup❣️ ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5066651105880737, 0.24420805275440216, 0.2491268664598465]" -16905,PLEASE WATCH THE WHOLE THING!!!!!!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43609166145324707, 0.28399690985679626, 0.2799113392829895]" -59861,Lot 1 ade pasar mlm but guess what tkde duit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47785452008247375, 0.23422233760356903, 0.2879231572151184]" -23461,Little mix favourited my tweet and my account has actually gone mental still can’t believe it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.42628005146980286, 0.31297674775123596, 0.2607432007789612]" -13374,When that Direct Deposit hit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4647316038608551, 0.27210089564323425, 0.26316747069358826]" -32036, Imagine I just ordered my upgrade for £87 a month we get fully fucking violated,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4800594747066498, 0.2712429463863373, 0.24869759380817413]" -59162,I can't ignore how fine Mgk is ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.4814257025718689, 0.2541768252849579, 0.26439744234085083]" -1449,Sick booty ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3861502707004547, 0.3421275317668915, 0.2717221975326538]" -22425, I agree and make more nipple rhythms,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5310913920402527, 0.23672695457935333, 0.232181578874588]" -7232,I was able to make myself an omelet AND sit down and enjoy it. That's how I know today is gonna be a good day ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.47904330492019653, 0.2646399736404419, 0.25631675124168396]" -51286, O Lord smh,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4280809760093689, 0.3161870837211609, 0.25573188066482544]" -38982,When your dad gets his hair cut like Jean Kirstein. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4126705229282379, 0.3281981647014618, 0.2591313123703003]" -17774,"But, what the hell do I know? ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙇,"[0.44341933727264404, 0.27975010871887207, 0.2768305540084839]" -63298, Queen of the gifs you. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6589824557304382, 0.13835929334163666, 0.20265820622444153]" -6056,My phone ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.470390260219574, 0.2752617597579956, 0.25434792041778564]" -31189,Goodnight! Tomorrow is another day. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.4497809410095215, 0.3230620324611664, 0.22715698182582855]" -19715, Oh I missed this one Marie lovely ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5631686449050903, 0.21557147800922394, 0.22125986218452454]" -50620,Keep safe guys,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5024172067642212, 0.21627679467201233, 0.2813059687614441]" -7594, had me shouting run at the tv & did so well! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40056002140045166, 0.33492311835289, 0.2645168900489807]" -19226, Hater ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48343518376350403, 0.26113513112068176, 0.2554296553134918]" -21020, What? You don't want a Russian prostitute to pee all over the place? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45712926983833313, 0.2843938171863556, 0.25847700238227844]" -50994, YASSS It's time for a great show Maxloyal™♛:Giveaway # ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6300567984580994, 0.15046316385269165, 0.2194800227880478]" -67114,Thank youuu ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5598258972167969, 0.19105297327041626, 0.2491210699081421]" -34788, I feel this. Especially when my stomach is cramping all day,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.41703954339027405, 0.32771357893943787, 0.2552468478679657]" -65064, Duuude it was LIT outchea ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4367920160293579, 0.3051731288433075, 0.25803491473197937]" -22121,I CRACKED UP IM SO SORRY ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43568530678749084, 0.3088783919811249, 0.2554362714290619]" -62536, Precisely. I️ need a nap ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3914025127887726, 0.39541375637054443, 0.2131837010383606]" -13514,They win Halloween idcidcidc ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4280405342578888, 0.29678410291671753, 0.2751753628253937]" -17508,I love my mom so much. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.5091526508331299, 0.25027719140052795, 0.24057018756866455]" -14841,Lmfao I could laugh for daysssss ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.41794463992118835, 0.30006396770477295, 0.2819913625717163]" -20608,I’m getting there fam via ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40353506803512573, 0.32411038875579834, 0.27235451340675354]" -66644,Some of my student’s works and activities I’m so proud sweeties ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.4118635058403015, 0.3100613057613373, 0.2780751585960388]" -8589,My dream car ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5623276829719543, 0.20308107137680054, 0.2345912605524063]" -37547, It’s. Required. Non-negotiable.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5192356705665588, 0.2169170081615448, 0.26384735107421875]" -44809,I can't believe I'm bout to eat this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.39016202092170715, 0.36963266134262085, 0.240205317735672]" -20148, Omfggggggg ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -38742, Let your wild side free girl!!!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4708179235458374, 0.2665305733680725, 0.26265162229537964]" -16196,It's crazy to think in a little over a month Ill be 26!? I don't want to be kicked off moms insurance ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.47600725293159485, 0.27475616335868835, 0.24923667311668396]" -35792,Be worth it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4495791792869568, 0.272138774394989, 0.278282105922699]" -37029, Good morning eonni! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5308168530464172, 0.21917568147182465, 0.2500075101852417]" -11684, Thanks Emily!!!! Miss ya and love ya too ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.48739561438560486, 0.24921678006649017, 0.2633875608444214]" -33603,Ya so crazy ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.47349897027015686, 0.25081247091293335, 0.275688499212265]" -21747, So sweet ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4792135953903198, 0.25507351756095886, 0.2657129168510437]" -66245, Blockchain Democratise dot-COM?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4413246810436249, 0.3058374226093292, 0.2528379261493683]" -47279,Do I really have to go to class? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.40415388345718384, 0.33815157413482666, 0.2576945722103119]" -7024," do not do that, I love the two bands ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5011897683143616, 0.24476934969425201, 0.2540408670902252]" -26152, I would’ve been so hard waking up like that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38430869579315186, 0.38658493757247925, 0.22910630702972412]" -20233," Yup, the devil owns my soul ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45802101492881775, 0.27384400367736816, 0.2681349813938141]" -1462,I️ don’t even wanna know what happened to me last night ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.40863072872161865, 0.3443675935268402, 0.24700166285037994]" -7759,I GET TO SEE MY MAN TONIGHT!!! I miss him so much ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.40363457798957825, 0.3589314818382263, 0.23743392527103424]" -2522, good~night,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.49689698219299316, 0.23669832944869995, 0.2664046883583069]" -22903, Ahaha he truly your emo,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.42900869250297546, 0.30427879095077515, 0.2667124271392822]" -9443,"WHAT?! Oh my gosh! To the google to find pictures!! Also, sometimes I feel like is the only one… ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.479959100484848, 0.2623860538005829, 0.2576547861099243]" -49381,No you didn't ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40356379747390747, 0.3449265956878662, 0.2515096068382263]" -3655, Oops sorry!! But yeah ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.4383701980113983, 0.261740505695343, 0.29988932609558105]" -42482, Thank you so much! (No obligation to read though! It's bound to be raw and horrible ),😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48180219531059265, 0.24893982708454132, 0.26925796270370483]" -55112, LMAO. What a FORCED smile Trump has!! He looks as fake and retarded as he truly is! Now he’s immortalized as such!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4444018602371216, 0.258442759513855, 0.2971552908420563]" -10397,Kim Jong yea big bongs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5620799660682678, 0.189846009016037, 0.24807405471801758]" -55419, Should I be concerned? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4964630603790283, 0.24983660876750946, 0.2537003755569458]" -67621,Im crying the stress is real ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4090457558631897, 0.3294391632080078, 0.2615150809288025]" -4067,"Everyone is over here talking about how “Christmas starts today.” Think again people, it’s my birthday",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4938439428806305, 0.25215160846710205, 0.25400447845458984]" -1607,Yessss lmaooo this is so me tho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5003794431686401, 0.24374108016490936, 0.2558794915676117]" -66436,He is so rugged & handsome OMG!! on insta. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😽,"[0.6999778747558594, 0.12295328080654144, 0.17706890404224396]" -43346, You Deserved A Follow ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5271799564361572, 0.2234732210636139, 0.2493467479944229]" -44813, very reassuring when the president screams no collusion ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4615205228328705, 0.2686464786529541, 0.26983293890953064]" -37650,Patiently waiting on the Thanksgiving clap backs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40786582231521606, 0.31828412413597107, 0.27385008335113525]" -17560, playing with my emotions like ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.42054879665374756, 0.34210342168807983, 0.2373477667570114]" -28833, Bruh I️ was thinking the same shit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40461674332618713, 0.32368001341819763, 0.27170330286026]" -29671,Y'all are so creative ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.507750928401947, 0.24064621329307556, 0.2516029179096222]" -21375, Trop fort ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48333969712257385, 0.26287123560905457, 0.2537890672683716]" -65287,Minseok is aging backwards!! ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.431098997592926, 0.2907167077064514, 0.27818426489830017]" -55971,HARRY FELL DURING KIWI TONIGHT ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.448705792427063, 0.2570352554321289, 0.2942589223384857]" -39647,I love seeing people GENUINELY in love.,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5228404998779297, 0.2213108241558075, 0.2558487355709076]" -26527, I can’t breath ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.46438613533973694, 0.24508245289325714, 0.2905314564704895]" -6649, Ahha I bought them both at the same time to get free delivery but they had t… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4697568118572235, 0.2637211084365845, 0.2665221095085144]" -40066,omg I love everyone who dressed up as Eric Andre for Halloween ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5160536170005798, 0.21482937037944794, 0.2691170573234558]" -35422," Okay, well if you insist. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5771932005882263, 0.1938214749097824, 0.22898533940315247]" -45130,Grandma was just tryna get her social security check. (I was lit on Halloween) ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.43804246187210083, 0.3127233684062958, 0.2492341548204422]" -19601,who's nayeon? Idk her anymore ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4463934600353241, 0.30315813422203064, 0.2504483461380005]" -67027, Good morning! ❤️ ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6092548966407776, 0.14990533888339996, 0.24083977937698364]" -31223,ooh yeahh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5628756284713745, 0.19164539873600006, 0.24547900259494781]" -38539," ""Ahahahahah look waiting for Kun to pass his goal breaking record ball not…"" in ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5073933005332947, 0.22042228281497955, 0.2721843719482422]" -24647, This gal though,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5227764844894409, 0.22055105865001678, 0.2566724121570587]" -18916, Lol Nap looks like George from Grey's & duuuude Mitch was FAT ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4312337338924408, 0.3150114119052887, 0.2537548542022705]" -24096, Mohhh so cute ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😽,"[0.6716501116752625, 0.1477767378091812, 0.1805732101202011]" -55442, Lmfao why you gotta be so funny,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4168684482574463, 0.3007446527481079, 0.2823868691921234]" -44435,“I thought you were sleeping until i got a notification that you tweeted” ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😵,"[0.4004741311073303, 0.33569252490997314, 0.2638334035873413]" -11678, i can’t decide which one looks better ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.43509694933891296, 0.29752597212791443, 0.26737716794013977]" -19563, that's a good one! I hear often about how he says he's… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5123434066772461, 0.2241818606853485, 0.263474702835083]" -30837, yo for real I hope she doesn’t turn into Lindsey Lohan or these other hoes,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.4193870723247528, 0.30000489950180054, 0.28060799837112427]" -68174, I’m just going as Tiger Woods or DUI Tiger Woods ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46131375432014465, 0.2881886661052704, 0.25049757957458496]" -67157, I am crying too...Dogs are getting beds when some human beings don't even have any,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4737227261066437, 0.28947365283966064, 0.23680371046066284]" -30935,BEAR LAUGHING OMG I'M WEAK ❤❤,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.468365341424942, 0.2585099935531616, 0.273124635219574]" -61564,Wanna go back to school but I have no idea what to go for. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.403069406747818, 0.35702523589134216, 0.23990535736083984]" -30078, lmao yep ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5232058167457581, 0.20650948584079742, 0.2702846825122833]" -34568, taylor.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45266231894493103, 0.28285548090934753, 0.2644822597503662]" -41969,Dark willow,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5481284856796265, 0.22532165050506592, 0.22654980421066284]" -14375,can't watch ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.44876134395599365, 0.2913030683994293, 0.25993549823760986]" -16236,Like biiiitch you know how this Glam & Glitz shit go ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39425915479660034, 0.3274767994880676, 0.27826404571533203]" -1290,"They came so early, I wasn’t expecting them yet",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3961562216281891, 0.3606944978237152, 0.24314923584461212]" -49208,The 3rd one ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4998229742050171, 0.24680200219154358, 0.2533750534057617]" -41224,I love Lucas’s sister! ❤️ Erica is so funny! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5555415749549866, 0.20030568540096283, 0.24415266513824463]" -28676, Thank you!! ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙌,"[0.6514566540718079, 0.11697802692651749, 0.23156534135341644]" -7078,FINALLY ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.41423895955085754, 0.3610222637653351, 0.22473876178264618]" -4513,Bruh I only have two legit weeks of college left then internship until April... then ya girl is officially a 1st gen college grad & teacher,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4551619291305542, 0.2741982638835907, 0.2706397771835327]" -61884, DONE,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -42158, Haha. Fair one! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4321848750114441, 0.2791350185871124, 0.28868013620376587]" -63288,I’m screaming ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5568197965621948, 0.1873510777950287, 0.2558290958404541]" -16091,I missed vlogs ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.44712406396865845, 0.3194519281387329, 0.23342405259609222]" -62465,love ittttt ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5326588749885559, 0.2183033674955368, 0.2490376979112625]" -32598,Song Song ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😺,"[0.6258206963539124, 0.17033573985099792, 0.20384350419044495]" -42226,"You know when someone give su something, it ain't big but the thought behind it makes u treasure it so bad then u loose it me this",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.478183776140213, 0.2600942552089691, 0.26172196865081787]" -56323, i’m gonna unfollow everyone but you and dinah ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4648023247718811, 0.2840590178966522, 0.2511386573314667]" -25334, Bestfriend tak letak tweet tegur kat sini wak just saying,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47926729917526245, 0.24845032393932343, 0.2722824215888977]" -55897, Save our season? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.3987554609775543, 0.3549991548061371, 0.2462453991174698]" -31116, So on an individual level not as a population lmao got it! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47669610381126404, 0.25513073801994324, 0.2681731581687927]" -41780,I love how katy's fans never forget about her ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5065210461616516, 0.22058287262916565, 0.27289608120918274]" -50669, We’re friends khalas keda! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4349643290042877, 0.2709672749042511, 0.29406842589378357]" -28782,rmb when taehyung scolded namjoon for not closing the door properly which caused the mosquitoes to go after tae? … ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4514522850513458, 0.2847001254558563, 0.26384761929512024]" -34456,I’m ashamed that this is literally me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4045170545578003, 0.31133273243904114, 0.28415021300315857]" -59719, Sorry behne ji ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.45768168568611145, 0.2785536050796509, 0.26376470923423767]" -6103,Gavin Hunt owns the media... hahahaha ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5016229748725891, 0.23471130430698395, 0.26366573572158813]" -37090," ""Good luck in the ratings Jake"" coming from a guy with 436 followers ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4904465079307556, 0.23135073482990265, 0.27820277214050293]" -34148, I DUNNO WHAT HAPPENED ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4714711010456085, 0.27038687467575073, 0.25814205408096313]" -29781,Someone I find really cute smiled at me today because of something i said and I feel giddy looking back on it ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.49273693561553955, 0.2739490270614624, 0.23331400752067566]" -37596,he has a better beard than you ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😱,"[0.4589962065219879, 0.2610204815864563, 0.27998340129852295]" -55331, please get a key lol I’m having withdrawals from not watching you play this game ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43572866916656494, 0.28586357831954956, 0.2784077823162079]" -6864, Where ka ron oy? it's been so long. you'll always be one of my (((real))) best friends mo cry nako :-(,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😳,"[0.38116875290870667, 0.3116573989391327, 0.3071739077568054]" -57464, Your 27 followers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4585120379924774, 0.2741992473602295, 0.2672887444496155]" -48686, cheatt,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -35616, Honestly and of all the Eminem songs?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43961086869239807, 0.2922196686267853, 0.26816946268081665]" -66099, ayo why you so sweet ❤️ my fault for losing my rose gold baby ugh shbehdhs,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44339144229888916, 0.29691141843795776, 0.25969719886779785]" -35828,Lmao if cp24 ever posted me as wanted if me so vex ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40325137972831726, 0.3128078877925873, 0.28394073247909546]" -40309,MY HEA ❤️❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4513838291168213, 0.29461154341697693, 0.25400468707084656]" -21219," Very soon, dear. In the works. ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.545274555683136, 0.21475769579410553, 0.2399677336215973]" -21005,Lmfao... a deflection Tottenham is garbage,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48607194423675537, 0.23208269476890564, 0.281845360994339]" -33546,Damn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44135117530822754, 0.2966989278793335, 0.2619498670101166]" -38391,Hiii here are pictures of me and the girl I’m always bragging about on here (I’m the one with the tits) ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5638488531112671, 0.2110561728477478, 0.2250949740409851]" -24202,"I'm so sleepy from partying last night , I'm turning into a granny I can not be out hella late",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46530744433403015, 0.27303946018218994, 0.2616531550884247]" -11428, Right as I woke up I said can I leave ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41460373997688293, 0.33295729756355286, 0.2524389326572418]" -53355,I should really get something to eat but to how my feet hurt ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.36930468678474426, 0.37273234128952026, 0.2579629719257355]" -8442,yoongi won't let go of the flowers from jimin's dad lmao boii that's not yours,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3958863914012909, 0.31869497895240784, 0.2854185700416565]" -67352, Hey that’s not true ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5012314915657043, 0.21773754060268402, 0.28103095293045044]" -45977,Imagine having a girlfriend supporting Pirates. Kana that means no supper or sex for you tonight. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.452012300491333, 0.2706620991230011, 0.2773255407810211]" -63147, I SEE QUEEN OF THE DAMNED ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6027165055274963, 0.15631309151649475, 0.24097032845020294]" -23421,Was that Kroos ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -38747,don’t fuck up & then squint and grab your nuts like you didn’t fuck up ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.42743977904319763, 0.3034963607788086, 0.2690638303756714]" -46282, And if Emily feels the same then sorry Ethan ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4650363326072693, 0.273220032453537, 0.2617436349391937]" -44592, Don’t y’all just love Stefan?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.482651025056839, 0.2700231075286865, 0.24732591211795807]" -55383,oh my GOD ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5751411318778992, 0.18262821435928345, 0.2422306090593338]" -24238,my brother gave me a chick-fil-a card as a gift that allows me to get a free chicken sandwich or 8 piece nuggets for a year ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.412600040435791, 0.30981263518333435, 0.27758729457855225]" -61188,Smash. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4987451434135437, 0.2310011088848114, 0.2702537775039673]" -46905, Was thinking of going back to Joburg that same day,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4309048056602478, 0.3083219826221466, 0.260773241519928]" -62844,No he just went in & wants me to get him out ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4345785975456238, 0.3228151798248291, 0.24260622262954712]" -47205, Bitches be like ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.4283224046230316, 0.33552324771881104, 0.23615436255931854]" -3380,Don't just hit me up when you see I got something you want ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4399704337120056, 0.32631781697273254, 0.23371173441410065]" -15659,What the heck is the basketball version of an STD?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5125550031661987, 0.22539003193378448, 0.2620549499988556]" -59581,Yooo coconut water goesss ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44746559858322144, 0.3014512062072754, 0.2510831654071808]" -10879,Arthur Trynna Get Me Onnat ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4913354218006134, 0.2286134511232376, 0.2800511121749878]" -6071,Nah cause I sat here looking at these two pics for a wjile ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.44612282514572144, 0.3106508255004883, 0.24322637915611267]" -32316, Thank you!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6514566540718079, 0.11697802692651749, 0.23156534135341644]" -42061, dont ruin my dreams ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4591085910797119, 0.2835996150970459, 0.2572918236255646]" -57630,my face is a 4my personality is a 8so basically i'm a 12 ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😹,"[0.44927212595939636, 0.28520792722702026, 0.2655199468135834]" -62718," That depends, he needs to remember everything if he forgot it ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48033323884010315, 0.26147446036338806, 0.2581923305988312]" -1402,"No, YOU treated homecoming well ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.47368910908699036, 0.26968124508857727, 0.25662970542907715]" -38552,BUY ILLUMINATE OUT ON ITUNES ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5255051255226135, 0.23168636858463287, 0.2428085207939148]" -40356,These Wendy Williams memes LITERALLY have me crying,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4361015260219574, 0.30962762236595154, 0.25427091121673584]" -24469, I need ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.4054056704044342, 0.35556814074516296, 0.23902612924575806]" -41807,Happy birthday ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6718515157699585, 0.1117878332734108, 0.2163606733083725]" -57037, Mmm girl I’m bout to break ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4903705418109894, 0.2768212556838989, 0.23280826210975647]" -37588,I have been such an emotional wreck today and Jeff has done so well with letting me cry all day . ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4935864210128784, 0.2733065187931061, 0.23310694098472595]" -59341," Linda, you believe CNN ratings are tanking?",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4684606194496155, 0.27538642287254333, 0.25615304708480835]" -21114,im dead ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4373941719532013, 0.3005567193031311, 0.2620490789413452]" -53032,I️ use to do this all the time ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4751664102077484, 0.2637607753276825, 0.2610727548599243]" -64131, Omg I've done many grammar errors lmao just ignore them and vote ❤,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4278034567832947, 0.3246583938598633, 0.247538223862648]" -50874, HAHAHAHA I DIED I SHOULD HAVE TAKEN A PHOTO OF YOU GUYS RAISING UP SHOE P… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46761393547058105, 0.24359089136123657, 0.2887950837612152]" -27465,My baby George got MVP I’m so proud ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.505588173866272, 0.2610931396484375, 0.23331870138645172]" -13628,Gorgeous ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😛,"[0.6932713389396667, 0.10740172117948532, 0.19932691752910614]" -48182,"Made maybe 6 friends my first year at my only major class, all of them are no longer mechanical engineering majors ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4487482011318207, 0.2921206057071686, 0.25913122296333313]" -63920, Ur so cute missing you too❤️ xx,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.48340365290641785, 0.2622382342815399, 0.25435811281204224]" -56727,Would you let someone tickle you for $750? — Yes ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.520983874797821, 0.23607783019542694, 0.2429383546113968]" -18397, Open my snap ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44320347905158997, 0.2740382254123688, 0.28275832533836365]" -55611,The end She fine Af ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5255027413368225, 0.21829737722873688, 0.2561999261379242]" -1226,verbatim by blackbear ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -32982," Only 159 correct the, cut off check ni Ki. Only list dekhi hai.",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4975203573703766, 0.21818768978118896, 0.2842920124530792]" -8823,get ready for christmas music now until the end of december ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46967920660972595, 0.30043527483940125, 0.2298855036497116]" -4749, Oh and Liam talking about Harry? My heart ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.5226826667785645, 0.24529416859149933, 0.2320231795310974]" -13589,I'm a broke stallion ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😓,"[0.3686858117580414, 0.41470927000045776, 0.21660493314266205]" -51354,Dora’s strapped !! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5701666474342346, 0.20713083446025848, 0.22270245850086212]" -13113,Lmfao Krystal that most childish girl I fuckin know ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4152268171310425, 0.3028954267501831, 0.281877726316452]" -31339,Had to pause the movie while I eat ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4740305542945862, 0.2691614031791687, 0.2568080723285675]" -40564,Boys Real yi made my night ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46299293637275696, 0.2778347432613373, 0.259172260761261]" -16003, RIP I just saw this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.41916826367378235, 0.34583383798599243, 0.23499798774719238]" -61243," Too funny, I think I peed a little. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5044727921485901, 0.22855155169963837, 0.2669755518436432]" -57250,Imagine Taylor knowing who you are and knowing your face- can’t relate ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.4705767333507538, 0.26108506321907043, 0.26833826303482056]" -29338,Houston why are we like this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.49640023708343506, 0.25955498218536377, 0.24404487013816833]" -44224,LOL I’m dying that he said “it’s good to mix it up” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47813180088996887, 0.23855142295360565, 0.28331679105758667]" -3908, Liam why?? I love you sm but Bella Thorne? Come on WHY NOT ZENDAYA ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4637930393218994, 0.2775118052959442, 0.25869515538215637]" -5143, I need to get my class covered! Well reminded woohoo!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4108005464076996, 0.31557828187942505, 0.27362117171287537]" -26479,Bro I wanna call in to work so bad. I can’t miss this game seven. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.37213727831840515, 0.4009262025356293, 0.22693650424480438]" -40873,good morning ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6092548966407776, 0.14990533888339996, 0.24083977937698364]" -55977, better jump in the car with jara,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44110116362571716, 0.2704012989997864, 0.28849753737449646]" -44794, gf why would you wanna move backwards like that??? you’re the pinnacle all the bod goals ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.43819865584373474, 0.34083858132362366, 0.2209627330303192]" -9348,never… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -20658, Bro I wrote the whole script from it looks COMPLETELY different. He's a fucking good ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4201132655143738, 0.29196301102638245, 0.2879237234592438]" -54668, Was giving my arm some rest plus second year is way too hectic. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.4655764698982239, 0.2650240361690521, 0.2693994641304016]" -54836," Or maybe you still a little bit trauma with ‘eleven’ word, how about 16th? ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5029119849205017, 0.2280510514974594, 0.26903700828552246]" -53705,Alex 'I'm samwise the dancing clown' me: 'samwise?? Do you mean penniwise?' he's not a pissing hobbit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49212324619293213, 0.24453046917915344, 0.2633463144302368]" -60185,I can never tell if Leslie is really mad and breathing loud or just eating. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4074892997741699, 0.32471755146980286, 0.2677931785583496]" -44169, Sometimes they don’t have vegan salad dressing so it’s just fries ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.48848554491996765, 0.26496443152427673, 0.2465500682592392]" -48808, you too then ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -5607, It actually wasn’t ‍️ u can’t believe he called u fat huh? poor baby,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41599246859550476, 0.3138452172279358, 0.27016228437423706]" -37759, if this is true ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙉,"[0.5208073258399963, 0.1997523158788681, 0.27944040298461914]" -34106, Super hot Batgirl ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6184399724006653, 0.17217308282852173, 0.20938697457313538]" -17768,Niggas love lying about being real or straight up. It’s pure comedy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3915597200393677, 0.32644304633140564, 0.2819971740245819]" -30522,Same ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -33069, Baby where have you been?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5758423209190369, 0.19491779804229736, 0.229239821434021]" -32124, Because you have a bag full of the good candy,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46368658542633057, 0.26244327425956726, 0.27387017011642456]" -59947,The hottest ever. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.48330122232437134, 0.2630707621574402, 0.2536279857158661]" -36550, Like with your license?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4531787931919098, 0.2949252426624298, 0.25189587473869324]" -7328,Why did I only found out about this right now? Gonna make me some ambrosia and nectar ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.45833462476730347, 0.2935301959514618, 0.24813519418239594]" -55823,“Hellooo” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5503921508789062, 0.1993199586868286, 0.25028789043426514]" -42337,"Just spent £8 on maccies to throw it back up, mid convo to nic, what a morning",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4658472239971161, 0.24270303547382355, 0.29144975543022156]" -19506,Syeeettt for the win talaga ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.43366995453834534, 0.2995906472206116, 0.2667394280433655]" -7063,Criiiine ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -64444, Itny bray hain tou ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4574406147003174, 0.25995030999183655, 0.28260907530784607]" -25938, Wait I’m confused ?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49777311086654663, 0.2445719987154007, 0.2576548457145691]" -2384,IM GOING TO DISNEY WORLD TOMORROW,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4278607964515686, 0.3612246513366699, 0.21091458201408386]" -38913, Gargano lost again lol good for him ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42153191566467285, 0.2882268726825714, 0.29024121165275574]" -66554,"on my way to a 9am and saw a boy covered in fake blood, quote clearly doing the walk of shame I love Halloween",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.413267582654953, 0.2857028841972351, 0.3010295331478119]" -45804,I need to start working out ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.4549850821495056, 0.34241655468940735, 0.20259840786457062]" -44455,Hopefully this game will take me away from my phone ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4458140730857849, 0.2903604507446289, 0.2638254761695862]" -65768,Have to go to Olive Garden 2ma,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😼,"[0.5251567363739014, 0.22418534755706787, 0.250657856464386]" -23733,If you didn’t laugh at first read it again ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3960542380809784, 0.33261317014694214, 0.2713325321674347]" -38805,So beautiful ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6271557211875916, 0.15021805465221405, 0.222626194357872]" -15675,My New Video ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5773224830627441, 0.18218374252319336, 0.2404937446117401]" -33776, Aww! Thank you ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😼,"[0.5575137138366699, 0.18842057883739471, 0.2540656626224518]" -24855, so no need for December then? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3935723900794983, 0.36248746514320374, 0.24394011497497559]" -51601, crazy,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4552553594112396, 0.2704693377017975, 0.2742753028869629]" -38215,Good morning ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6092548966407776, 0.14990533888339996, 0.24083977937698364]" -3882, send me a dm please queen ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.6028848886489868, 0.1583486646413803, 0.2387664020061493]" -9466, Black as shit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4286888837814331, 0.3075335621833801, 0.26377755403518677]" -7913,Shut up! Tae told jimin to cry bcs he received the flower bouquet from his dad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3847857415676117, 0.33204877376556396, 0.28316548466682434]" -66440, But Theo has more potential ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.47630220651626587, 0.2663854956626892, 0.2573123574256897]" -57434,"Got asked to stay until 8 because of the game, kinda wanted to watch the game at home but kinda broke cus of the bug, and a fight coming up",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41339564323425293, 0.33142516016960144, 0.25517913699150085]" -61278,Did a grown ass man really invite me to his motel room with a fridge full of liquor..BITCH I CAN'T It's been two days damn it.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4175918400287628, 0.3141571879386902, 0.2682510018348694]" -58642,It’s a must next year to see ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5524975061416626, 0.20127801597118378, 0.24622449278831482]" -48239, how expensive is your merch gonna be then? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4132923483848572, 0.3001391887664795, 0.28656846284866333]" -44684,Yall ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.45285308361053467, 0.27457183599472046, 0.2725750803947449]" -27317," if you and/or I don’t win a prize, something’s really off down at the club? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.42159512639045715, 0.3121226131916046, 0.2662822902202606]" -54636, Damn...now that is nice...,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5606602430343628, 0.1858649104833603, 0.2534748315811157]" -47149, think I know EXACTLY where that was taken!!! xoxoxo,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.4326501190662384, 0.2919517457485199, 0.2753981351852417]" -21474,My phone was on dnd ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43529462814331055, 0.30768510699272156, 0.2570202946662903]" -41301,lol I honestly don't know how did I get 50 likes on that shitty upload but thanks ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4070604741573334, 0.29665595293045044, 0.2962836027145386]" -19003,What’s worse than waking up ?? It’s waking up with hunger the size of Montana ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.40382200479507446, 0.3406844437122345, 0.25549352169036865]" -22246,Buzzing for my weekend away for my Birthday with ! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5835268497467041, 0.1796446144580841, 0.2368285357952118]" -53408,We gave ha water she was too mad ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.400066077709198, 0.33099526166915894, 0.2689386308193207]" -10595,i'm really a road runner ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",🙇,"[0.43649381399154663, 0.29434332251548767, 0.2691629230976105]" -4124," lmao I️ kid you not. The ice chest, foil pan or the actual pot depending on the event ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4852670133113861, 0.2564544081687927, 0.25827860832214355]" -16160, And yet is the Editor of Perhaps s… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -25548, nobody will use an angle of dressing up for Halloween. I do it every year ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5397271513938904, 0.20125991106033325, 0.25901296734809875]" -36589,springer have my kids,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.4670622944831848, 0.2735992670059204, 0.2593384087085724]" -47116,He's so adorable . ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5635910034179688, 0.21788083016872406, 0.21852821111679077]" -16899,I'm watching the Notebook for the second time today ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.421401709318161, 0.3054925799369812, 0.2731056809425354]" -48636,Whaaaat? I let you live the last time ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46691662073135376, 0.2684924006462097, 0.26459094882011414]" -43939, remember when we tried to immitate this.... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47106432914733887, 0.270475834608078, 0.25845980644226074]" -3166,"This man really called me from prison talking bout marriage and having babies I haven't seen you in 2 years, prison talk so cute",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4569610059261322, 0.3028041124343872, 0.2402348816394806]" -5369, Omg did you xx,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4221752882003784, 0.2932746410369873, 0.2845500111579895]" -10569,"Other night with my big brother. I’m actual steaming @ Preston, Lancashire ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5192176699638367, 0.23051248490810394, 0.2502698600292206]" -29157,LA fans mad another disappointing year :/ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49224886298179626, 0.23853716254234314, 0.26921403408050537]" -31580,he's so happy ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6235702037811279, 0.13543589413166046, 0.2409939169883728]" -45160, And currently drowning in my capstone paper that is not up to par ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46556398272514343, 0.2581631541252136, 0.27627289295196533]" -24672,Well idk about you but that looks more like the blade of a pencil sharpner than a razor blade to me. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.49112167954444885, 0.2589556574821472, 0.24992258846759796]" -1479,I can’t be wit u bae ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5325673818588257, 0.20211705565452576, 0.26531556248664856]" -9616,Listen to Ave Maria by Sarah Brightman on ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5483866930007935, 0.21108974516391754, 0.24052351713180542]" -9871, I’ll bring the blindfolds ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4706409275531769, 0.24250930547714233, 0.2868497669696808]" -44282,This is so cute I love SHIT like this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.499809205532074, 0.2708706557750702, 0.22932010889053345]" -3000,I don't even care lmao it's all good.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5009761452674866, 0.23863448202610016, 0.26038941740989685]" -57944, - loving the extra lhr of laid back songs... we don't change our clocks till this weekend so an extra hour of Lynn!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😺,"[0.6119481325149536, 0.18844570219516754, 0.19960613548755646]" -7395,Fight the good fight ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😆,"[0.5403441786766052, 0.1730567365884781, 0.28659915924072266]" -65334, Yeah me too....but not ex...my recent,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4534302353858948, 0.25938907265663147, 0.287180632352829]" -60525,we still crying ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4222264587879181, 0.32477089762687683, 0.2530025839805603]" -66573, That was mistake.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5002247095108032, 0.2633022367954254, 0.23647309839725494]" -55075, No lacebeards akere ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45792484283447266, 0.2716889977455139, 0.2703861594200134]" -7152,"I finished the book for a day. Really? What's this ""popping sound""? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3914535939693451, 0.35202136635780334, 0.2565250098705292]" -15577, Lol ummm this is an old Video ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45110252499580383, 0.2803356647491455, 0.2685617506504059]" -40707,Dodgers game or homework ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.45054736733436584, 0.2705957293510437, 0.27885693311691284]" -27819,"Killing me, Mr Prime Minister ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.4097334146499634, 0.3254043757915497, 0.2648622691631317]" -64267,Yasss a 100% I'm so proud to be an ARMY even more nowOur are the best ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5759018659591675, 0.18213245272636414, 0.2419656664133072]" -1037, Love you too! ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5326588749885559, 0.2183033674955368, 0.2490376979112625]" -58806,Thats some funny shit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45929500460624695, 0.2522084712982178, 0.2884964942932129]" -51389, No need to reveal yur identity .. every 1 knows,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.443820595741272, 0.28193148970603943, 0.2742479145526886]" -44738, 'Camel toe' ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4692430794239044, 0.2523874342441559, 0.2783694863319397]" -59333," HAHAHA IHY, you poked one little hole ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4691413640975952, 0.27824652194976807, 0.2526121437549591]" -53149, I just saw her costume ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.54520583152771, 0.21413260698318481, 0.24066151678562164]" -20896," *wraps you in the softest blanket, puts you in a room with all your favorite things, and stands gu… ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.5009558796882629, 0.25281020998954773, 0.24623392522335052]" -30776,Yes I wanna taste death ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4844870865345001, 0.2885206639766693, 0.22699224948883057]" -33617, Especially unknown number ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",🙇,"[0.41782572865486145, 0.2923024892807007, 0.2898717224597931]" -45651,Lol I’m not stressin bout shit this year ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41754502058029175, 0.3057929277420044, 0.27666205167770386]" -25350, Right? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4654039740562439, 0.264005184173584, 0.27059081196784973]" -34973,I wish bitches would say something to my face when they see me in public like you wanna say sm shit online but look away when u see me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.41154536604881287, 0.34824562072753906, 0.24020899832248688]" -44949,Beasley ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -17034," it is , u literally jst called me ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4934883415699005, 0.24768178164958954, 0.25882989168167114]" -27852, Sorry for joining the train of people saying this,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4302545189857483, 0.2946125864982605, 0.2751328647136688]" -38463," I’m a poor college student and I have good grades, pls help a sister out because I wanna see you and hype you up 🗣",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38122475147247314, 0.3666255474090576, 0.25214970111846924]" -5166,Couldn't score past Utd tho could they ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4548695683479309, 0.2528783679008484, 0.2922521233558655]" -12944,Lmfaoo you just made this even more hilarious. I legit busted out laughing ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.47713372111320496, 0.2427513748407364, 0.28011488914489746]" -22599,everybody needs a sydney zech in their life ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4573444724082947, 0.2997864782810211, 0.24286900460720062]" -29354,forreal ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.43320053815841675, 0.27105453610420227, 0.29574498534202576]" -62773,Pictures?,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5210950374603271, 0.23829950392246246, 0.24060551822185516]" -27868,rlly just wnna go back to dancing ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.41695404052734375, 0.3017524480819702, 0.28129351139068604]" -63739, Retiring off my shit lol,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4106157124042511, 0.3240058422088623, 0.2653783857822418]" -39224, dad's support group commercial was legit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5224940180778503, 0.20916932821273804, 0.2683366537094116]" -45969,She in there trying to hook her son up with a client. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.436064213514328, 0.3098800480365753, 0.2540557384490967]" -37186, nfs lol you gotta get jumped for the culture ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4200865626335144, 0.2815059423446655, 0.29840749502182007]" -27872,Say it louder nak ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46896228194236755, 0.28667232394218445, 0.24436542391777039]" -17487,Lmao the fact she said penis instead of dick ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39000093936920166, 0.31264737248420715, 0.2973516881465912]" -65631,i was alive when my niggas armuzinga and wafunya gave me relationship advice live on tv. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4145132005214691, 0.3004205822944641, 0.28506627678871155]" -61934,Best costume ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5537715554237366, 0.18234726786613464, 0.2638811469078064]" -15630,I hate breakfast food so sorry this ain't gonna be me unless you really really really want it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3925936818122864, 0.35111135244369507, 0.25629496574401855]" -1094,My song and my movie ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6187167167663574, 0.16016662120819092, 0.22111663222312927]" -2756,Unoy shamishyu,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -33280,We saw a Factory in Manchester along with and too not sure why it was so exciting!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4933200180530548, 0.2337026596069336, 0.2729773223400116]" -7761,Should i call it a day ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.49536293745040894, 0.2617282271385193, 0.2429088056087494]" -18467," In my defense, I clearly wasn’t listening. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39859679341316223, 0.3175513744354248, 0.28385189175605774]" -50024, Hell you do to my phone? Clicked on the picture to make it bigger and my shit froze lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4277905821800232, 0.28431084752082825, 0.28789857029914856]" -57453,Halloween at the caravan ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4974514842033386, 0.24138620495796204, 0.26116234064102173]" -24638, Which pokemon are covering the no no place? Lickatung? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4992671012878418, 0.24904955923557281, 0.25168338418006897]" -58637,Bout to pull out the Swarovski embellished lingerie ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.414046049118042, 0.32500433921813965, 0.26094961166381836]" -51177,6 visuals tho ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49303171038627625, 0.24127890169620514, 0.2656893730163574]" -29052,I think we need to get and Devin Harris on they had some chemistry on this spin. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4252319633960724, 0.32514268159866333, 0.2496253401041031]" -23983, No. It's getting annoying. Change your life n shit. Advice is good but inspiring content ? Unfollowed*,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4966181814670563, 0.24525265395641327, 0.25812917947769165]" -62984,This Man Is Something Else But He’s Right‍️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5131345987319946, 0.2355300635099411, 0.25133538246154785]" -27461,lmaooooooo man I’m so weak ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5118600726127625, 0.22832758724689484, 0.2598123252391815]" -63482, And what abt food other than that? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5466245412826538, 0.21350283920764923, 0.23987261950969696]" -39011,Fall in with tyrastarrr ⬅️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.49175918102264404, 0.2738983929157257, 0.23434244096279144]" -22295,Hair loss ya teng afterwards ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5018678903579712, 0.25440600514411926, 0.2437261939048767]" -35495,what an idiot ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47117650508880615, 0.2575337290763855, 0.2712897062301636]" -63540,that exam was fucking directly from hell ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.42069223523139954, 0.30723533034324646, 0.2720724046230316]" -67589,missing u: • BITCHABSBAB THE FIRST VERSE ITS TOO EARLY FOR THAT • omg momo’s part • BITCHABSJ I LOVE THIS IM CRYING • 10000000000/10,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4031951427459717, 0.34993618726730347, 0.24686868488788605]" -47990, BRAND NEW TRACK by & was just released! Can you please play it? ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4745219349861145, 0.26252731680870056, 0.2629508376121521]" -2631,another zoom out tapos screenshot ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48894554376602173, 0.2516155242919922, 0.2594389319419861]" -52097, NAH I AM FED UP!!!!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4363839030265808, 0.2977471947669983, 0.2658689618110657]" -11176,This is so true ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5208073258399963, 0.1997523158788681, 0.27944040298461914]" -30319,And me & my family was buying them hoes paying for nosebleeds & sitting front row ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.444531112909317, 0.2985866367816925, 0.2568822503089905]" -26298,omg honestly ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.44522950053215027, 0.3063274919986725, 0.2484430968761444]" -18858,Miami deserves her whole discography .. NO you ain’t tried !! RAP NOW ONIKA !,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😳,"[0.38087835907936096, 0.31211987137794495, 0.3070017695426941]" -2138,THE WAY HE LOOKS AT HER IM AJDKFLGH INLUV ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.47618821263313293, 0.2761138677597046, 0.2476978749036789]" -37283,"IM FINALLY LOCKSCREEN 5 MONTHS LATER, SHE REALLLY DOES LOVE ME ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.4098346531391144, 0.34962907433509827, 0.24053627252578735]" -26719, Same. 3 times. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4776407778263092, 0.2682156562805176, 0.2541436553001404]" -34587,my brotha will be excited for this ... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.5913670063018799, 0.17778731882572174, 0.23084568977355957]" -37407,When your friends know what’s up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42779338359832764, 0.2775145173072815, 0.29469212889671326]" -9517, let’s do a double date with your “big head” boo ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5615255832672119, 0.21379008889198303, 0.22468425333499908]" -20219,Journey mercy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4406146705150604, 0.28367289900779724, 0.27571243047714233]" -48908,You can only retweet this today ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.502685010433197, 0.2581306993961334, 0.23918433487415314]" -43294,This never gets old. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40430596470832825, 0.3291803300380707, 0.2665137052536011]" -24750,Does it mean you go too many concerts when venue staff recognise you? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4555363357067108, 0.28581953048706055, 0.25864407420158386]" -36336,It's annoying doing all that freaky shit and can't even nut be done had sex for 3 hours ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4369116723537445, 0.30283254384994507, 0.2602558434009552]" -60175, Lmao sicka her ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4525211453437805, 0.2560540735721588, 0.29142478108406067]" -34125, I wouldn’t snitch it would by Kaleya because she would be like I was using the… ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4913105070590973, 0.2549141049385071, 0.25377538800239563]" -6722,"Have fun babe! Bring me back a strong, tall, dark beauty ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5764086842536926, 0.17186607420444489, 0.2517252266407013]" -24883, your screen name has me cracking up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4115440249443054, 0.29552584886550903, 0.29293009638786316]" -33466," It's delicious, isn't it. I love Parkin ❤️",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5571150183677673, 0.19240419566631317, 0.2504808306694031]" -15441,I told my Ma to pray for our Dodgers cuz this is disappointing and depressing ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.44270023703575134, 0.2690219581127167, 0.2882777750492096]" -66826,No I'm not crying. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4222264587879181, 0.32477089762687683, 0.2530025839805603]" -48988, He's trying 2 play mind games with MR Mind Game ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.44342660903930664, 0.30718111991882324, 0.2493923157453537]" -52888,I’m dying ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4502759277820587, 0.2738807201385498, 0.2758433520793915]" -60003, YOOO IM JUST CRYING CAUSE I JUST WANT TO BE ‘s BFF ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4113174080848694, 0.3520788550376892, 0.23660367727279663]" -6060, Dancehall you say ?!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5785974860191345, 0.18735919892787933, 0.23404332995414734]" -58541," Hey the other night he slipped on a kiwi during kiwi, give him a break",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.44429293274879456, 0.28109198808670044, 0.27461501955986023]" -14057,This is my favorite ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6757659316062927, 0.12371279299259186, 0.2005213350057602]" -5431, Looooool mate everyone's giving me good reviews ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.45711347460746765, 0.25813043117523193, 0.2847561836242676]" -62953,"I thought being ugly was a stage bruh, I think Im stuck like this",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.417628675699234, 0.32590195536613464, 0.25646936893463135]" -28395,Hey Joc Pederson I F’n told you so mofo. The baseball gods gave the Dodgers what they deserved. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42572617530822754, 0.2824975252151489, 0.29177629947662354]" -50852, You right you right ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4654039740562439, 0.264005184173584, 0.27059081196784973]" -41326,Simply love this game just wish the exams would end!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4657379388809204, 0.3051764667034149, 0.2290855497121811]" -53695,Visited my main man today ❤ i miss u papa ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.3984338939189911, 0.3306412100791931, 0.2709248661994934]" -8807,When you wanna watch just one Gordon Ramsay video but you end up watching all of them ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.45894983410835266, 0.2983406186103821, 0.24270950257778168]" -16708, lmao tf is he talkin bout,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39554256200790405, 0.32839617133140564, 0.2760612368583679]" -54185,When you thirsty for em babes ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5283968448638916, 0.2087760865688324, 0.262827068567276]" -48601, They have no fucks to give! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44311583042144775, 0.29924145340919495, 0.2576427459716797]" -21708, me too. Maybe he got too excited,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6342612504959106, 0.16221439838409424, 0.20352435111999512]" -18700," Dear Lord! Give that kid a break, Jaeeee ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4950013756752014, 0.25931814312934875, 0.2456805557012558]" -21052,Bruh that’s cole ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4709896743297577, 0.26188424229621887, 0.26712608337402344]" -18809,If this was on CBS would have been the commentator?! Dude. I petition for that for next year!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4919857978820801, 0.2507593035697937, 0.25725486874580383]" -12264,Almost dropped my iPhone because I was looking at a guy. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4585086405277252, 0.2719112038612366, 0.2695801854133606]" -23456, Selfie of the year ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5331485271453857, 0.2148943394422531, 0.25195711851119995]" -29141,I bet all the Dodgers fans regretting praying for Houston now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4625062942504883, 0.25698161125183105, 0.28051212430000305]" -27971,"I mean, maybe they were there to record their own CK for a future episode. Anyway, this is me hoping Forget it.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5512397289276123, 0.18871891498565674, 0.26004135608673096]" -67405, Seriously though ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3962461054325104, 0.3329929709434509, 0.27076098322868347]" -67401,Waking up with a cricked neck just ain’t the pattern for today ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37625712156295776, 0.36147844791412354, 0.2622644305229187]" -5189, LMFAOOOOOOO they not gon keep disrespecting thanksgiving ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.45584097504615784, 0.292903333902359, 0.25125575065612793]" -64300,I wish. I freaking wish. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4198029339313507, 0.3769032657146454, 0.20329375565052032]" -20639,okay well thanks for making me a crying mess ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4531264305114746, 0.29910939931869507, 0.24776414036750793]" -19813, You’re welcome.,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙈,"[0.6072893738746643, 0.15073519945144653, 0.24197545647621155]" -15774,my nephew could pass as my son and it makes me have hella baby fever ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.4491060674190521, 0.2873280346393585, 0.2635658383369446]" -42731,If that nigga don't work get two niggas ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3895869553089142, 0.33280569314956665, 0.2776073217391968]" -39273, and for the super cup that wasn't even when the ball was crossed in,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5318589210510254, 0.22731085121631622, 0.240830197930336]" -10077, Curves ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4847034811973572, 0.2612684965133667, 0.2540280520915985]" -41555, Really,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.412924200296402, 0.3329651951789856, 0.2541106045246124]" -15219, Let me know what you think. I saw some Marc Jacobs powder at TJ Maxwell and almost bought it... might go back Friday. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47184693813323975, 0.24796588718891144, 0.2801871597766876]" -5767,Lmao you right ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.448835551738739, 0.26232999563217163, 0.28883451223373413]" -38750,25 days until my birthday ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5012626051902771, 0.2303617149591446, 0.2683756351470947]" -43051,Forgot my fucking earphones ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.4800166189670563, 0.2690766751766205, 0.25090670585632324]" -52016, be so dramatic ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46491190791130066, 0.2788538336753845, 0.2562342882156372]" -51932,It was a funny night w/ them ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47634896636009216, 0.25030720233917236, 0.27334389090538025]" -11364, It is indeed... some have already had a very long day... including me. Enjoy the rest of your day... ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.47999194264411926, 0.2600438594818115, 0.2599641680717468]" -40506, Stv=std jkjk,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.483040452003479, 0.26246845722198486, 0.2544911801815033]" -51182,Man fuck ‍️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.49230363965034485, 0.24844865500926971, 0.25924772024154663]" -13652,Who would of ever thought.,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.4224437475204468, 0.3223302662372589, 0.2552260160446167]" -20923, If you’ve seen even the first season you’d know that. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.40179991722106934, 0.3495861291885376, 0.24861402809619904]" -57044,I like u too ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😥,"[0.4428309202194214, 0.31504979729652405, 0.24211934208869934]" -25163,Jenni baby what happened to the cakes ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.46417397260665894, 0.2828533351421356, 0.2529725730419159]" -26832, There's a guy on our street who literally turns his house into santas grotto like this. The whole street lights up!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44849416613578796, 0.276774138212204, 0.27473172545433044]" -52859,You've obviously haven't met 99% of girls who dont give af about thanksgiving bc of Christmas ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4394470453262329, 0.3113647997379303, 0.2491881251335144]" -54243, Then was it sold less than Thuppaki ah? Then ok ... say whatever,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4388025104999542, 0.2831360101699829, 0.27806147933006287]" -11636, Kim Mingyu this curse will follow you forever. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5552064776420593, 0.1849193572998047, 0.2598741948604584]" -21672, snapchat chick ? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.41825634241104126, 0.3248851001262665, 0.2568585276603699]" -22382,this part the funniest part of the movie too ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4812587797641754, 0.22320213913917542, 0.2955390512943268]" -53469,Big haaappy 21st birthday to my bestie !!! ❤️ have the best time in Barca ino u will ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😌,"[0.6367437839508057, 0.1534276157617569, 0.20982863008975983]" -20124,Oh wow it's getting harder,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.452311247587204, 0.2959066927433014, 0.25178205966949463]" -62917,When your teacher friend knows you too well ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5104138255119324, 0.22383259236812592, 0.2657536268234253]" -47878, Or realize Donald trump is president with everything he’s said ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46269771456718445, 0.26945173740386963, 0.26785045862197876]" -18175, the best,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4770340919494629, 0.24461010098457336, 0.2783558964729309]" -41151,"those f*nsites tlaga who whitewash youngmin's skin so much....... if u listen closely, u can hear my heart slowly breaking. ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.483451247215271, 0.28295379877090454, 0.23359502851963043]" -52536,SCREAMING ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5568197965621948, 0.1873510777950287, 0.2558290958404541]" -12583," The more the merrier get it merrier,Christmas,merry Christmas. I crack myself up ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4706968665122986, 0.2629912197589874, 0.266311913728714]" -12314," Boy, you’re gonna look Mexican af in Cortez’s ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46384093165397644, 0.26058104634284973, 0.27557793259620667]" -17239,I’m sitting here looking like “wtf is y’all saying” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45617175102233887, 0.28226175904273987, 0.26156651973724365]" -60401,Plus it was a True Story ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5310558080673218, 0.21544164419174194, 0.2535025179386139]" -40467,I’m ready for thanksgiving ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3967474102973938, 0.3748154640197754, 0.2284371554851532]" -5302," If nobody sees it though, did you really workout? Lol ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3903232216835022, 0.32932034134864807, 0.2803564965724945]" -33289,"Not sure if I'm happy or sad that my overtime got cancelled. I mean i love days off, but I also love money ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45222893357276917, 0.28392142057418823, 0.2638496458530426]" -24937,"No chance have Pizza Hut just offered me a job when Andrew trolled my application and said “your dog has tits, quick math” actual kill me ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.436064213514328, 0.28515762090682983, 0.27877819538116455]" -65972,Midget dweebs ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4879920780658722, 0.25970444083213806, 0.2523035407066345]" -16741, One of my all time favorites ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5132966637611389, 0.24223966896533966, 0.24446365237236023]" -65, I can help you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3820551037788391, 0.3939928114414215, 0.22395214438438416]" -60356, Jr with the henny bottle tho. That’s me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4537384808063507, 0.27945274114608765, 0.26680877804756165]" -58372, rdy to get tik tok famous ugh ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46555936336517334, 0.2713468074798584, 0.2630937695503235]" -33464,“Come home” ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.42002856731414795, 0.36454248428344727, 0.21542896330356598]" -12037,Wanna go home but ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😓,"[0.3858243525028229, 0.42905646562576294, 0.18511925637722015]" -47031, Congrats ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5346786975860596, 0.1908653825521469, 0.2744559347629547]" -26199, my mother like shit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4344899654388428, 0.3107631206512451, 0.2547468841075897]" -38676,I HATE THEMM ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.42974814772605896, 0.3215846121311188, 0.24866721034049988]" -65500,No boy/man can take the place of mines ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.48776745796203613, 0.26132696866989136, 0.2509055733680725]" -48871, I wouldn't know ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.447797566652298, 0.27511104941368103, 0.277091383934021]" -12433,Chuckey Doak is wild afff,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47981250286102295, 0.2524493634700775, 0.26773813366889954]" -50761,"I've been waiting for that Snow Ball to happen, it was worth the wait ❤️",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4563449025154114, 0.2680184543132782, 0.27563661336898804]" -43206,How to do Hypothesis po? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39310288429260254, 0.33152589201927185, 0.275371253490448]" -44011,Swea ta gawd I woulda hit two wheels ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4173247814178467, 0.2982960343360901, 0.28437918424606323]" -39007, On godddd ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.48325270414352417, 0.2610097825527191, 0.25573742389678955]" -35424,Did the Dodgers organist just play the Rick and Morty theme? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4356080889701843, 0.2869425117969513, 0.277449369430542]" -44534,My boyfriend spoils me,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4859877824783325, 0.2521611154079437, 0.26185110211372375]" -10100,Chris Brown’s first album will forever go crazy. So many good songs on there.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4923417270183563, 0.2287793606519699, 0.2788788974285126]" -62278,It's a blonde epidemic!,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.4693177044391632, 0.2722143232822418, 0.25846803188323975]" -46244,cuffing season always skips me ‍️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4213780462741852, 0.33844754099845886, 0.24017442762851715]" -46672,Twice my favorite flops 77k sales in two days,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.5921341180801392, 0.17299988865852356, 0.2348659634590149]" -15891,Trying not to give up hope ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.48211294412612915, 0.27032655477523804, 0.24756047129631042]" -50399, lmao I bet he was talking fast asf,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42836007475852966, 0.29177048802375793, 0.2798694372177124]" -32097,Snoop Dogg has his moments here are his top 10 funniest quotes: ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5297559499740601, 0.21531100571155548, 0.2549329996109009]" -26658,"It’s 2017, yall still hiding shit from your ladies ? That’s the laughable part ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3845450282096863, 0.3099810779094696, 0.3054739534854889]" -38951,As if Tyler asked luce to tuck him in before she left,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4104622006416321, 0.32311156392097473, 0.2664262354373932]" -38692, You know what. You right ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4548923373222351, 0.2718878984451294, 0.2732197940349579]" -15151,Ride or die but I’m done for the day ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4306541085243225, 0.30584925413131714, 0.26349666714668274]" -49946,update: just left the doctor & it is strep ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.47579142451286316, 0.2791024446487427, 0.24510617554187775]" -4435,I bust the windows out your car ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4710766673088074, 0.27479884028434753, 0.25412455201148987]" -4396, SANDWICH TRIANGLE ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5167809128761292, 0.21741923689842224, 0.265799880027771]" -53224, he blocked me .. kin daft sod ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4437651038169861, 0.26373782753944397, 0.29249703884124756]" -32680, a gota,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -26086, I am so buzzing! I love having you in Sheffield ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.49347004294395447, 0.2499958723783493, 0.25653406977653503]" -64246,lmfao he’s no fun ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4527837038040161, 0.25080424547195435, 0.29641208052635193]" -24731,I need a break from twitter. I tried to retweet a text in my group chat ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.3971034288406372, 0.31761613488197327, 0.2852804660797119]" -6458,She look just like u ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.435537189245224, 0.3185577690601349, 0.24590502679347992]" -20072,These look awesome Manfrotto announces two new Element Carbon tripods: ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6000430583953857, 0.16148653626441956, 0.23847034573554993]" -54263, To the CFL maybe ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5452940464019775, 0.21566812694072723, 0.2390378713607788]" -57754,New weave loading !!!Hello Peruvian ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.5948688387870789, 0.17408621311187744, 0.23104490339756012]" -3468, congratulations! Excellent progress! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6076391935348511, 0.17060090601444244, 0.22175993025302887]" -56811, NEGRO THEM DM'S IS POPPIN. SHE AIN'T GOT TIME FOR YO A$$,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4924207925796509, 0.24453900754451752, 0.263040155172348]" -5709, Lol I tell Austin this all the time ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4428180158138275, 0.2816654145717621, 0.2755165994167328]" -44473, PP seemed to obvious.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49528101086616516, 0.2452123463153839, 0.2595067024230957]" -16852,All my SAT and transcripts were sent all my applications were submitted and I’ve never been more relieved in my life ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4699300229549408, 0.28413358330726624, 0.24593642354011536]" -14129,WHERE ARE THEY NOW LMAO ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.4525211453437805, 0.2560540735721588, 0.29142478108406067]" -55355, It was a marathon humping session !! I would win a ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4914557933807373, 0.2561137080192566, 0.2524305582046509]" -33703,His face at the end ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4801007807254791, 0.2774335741996765, 0.24246560037136078]" -57258,"i find this funny i get it, i'm weird ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4487762451171875, 0.2519488036632538, 0.2992749512195587]" -3968," Hahaha, if it’s food that’s gonna kill me and not JD I’ll be very surprised ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4145338535308838, 0.3088788688182831, 0.2765873372554779]" -24766,I say this like everyday when I see certain shit on my TL I wish this bitch would get off of here pretending.,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3956827223300934, 0.3968251347541809, 0.2074921429157257]" -1812, Life is good beshy we are so blessed ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5079558491706848, 0.23336374759674072, 0.25868046283721924]" -38385,Clean? That's some funny shit haven't ever seen you clean shit! And the house you don't own? Oh yea!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4338220953941345, 0.2805790901184082, 0.28559887409210205]" -953,I’m getting a dog for Christmas and I’ve never been more happy in my life ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4883784353733063, 0.2583330273628235, 0.25328850746154785]" -38502,Game 7 ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😹,"[0.4308602511882782, 0.30647578835487366, 0.26266393065452576]" -27424,Wish I was gonna a be home why did I have to go to school out of state. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.44752129912376404, 0.3189728856086731, 0.23350569605827332]" -40097,IM FINNA UNFOLLOW YOU ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4236163794994354, 0.3319976031780243, 0.24438606202602386]" -27113,"I got love for all types of women, but it's something about Mexican women ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5560312867164612, 0.19781184196472168, 0.24615687131881714]" -14044, Lmao i do check them! I only open the important ones ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4965102970600128, 0.243927001953125, 0.2595627009868622]" -66233, Alesha it's your turn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4239931106567383, 0.31407296657562256, 0.2619338631629944]" -14503, Same tho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4515737295150757, 0.26204878091812134, 0.2863774597644806]" -33689, WHY ARE YOU DOING THIS!?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.38231217861175537, 0.3508639931678772, 0.2668238580226898]" -7888,Why did they put 2! 3! music in the end ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5230118036270142, 0.24376121163368225, 0.2332269549369812]" -3225,Daddy ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5138749480247498, 0.21433235704898834, 0.2717927098274231]" -29727,This thread is full of trolls worth the scroll ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5098481178283691, 0.22112001478672028, 0.269031822681427]" -43739,your dog does NOT wanna be in that costume ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4338398575782776, 0.32185500860214233, 0.24430504441261292]" -46034,I'm always excited for bad things ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5437548756599426, 0.23866446316242218, 0.21758069097995758]" -50751, Oh please don't keep telling him ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5409590005874634, 0.211777463555336, 0.2472635805606842]" -61592,Hol up y’all NOT gonna tell me this NOT Tyler when he was younger BS ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4568730592727661, 0.28784942626953125, 0.2552775740623474]" -51636,Ready for thanksgiving ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3967474102973938, 0.3748154640197754, 0.2284371554851532]" -45799, They are the best kinda decisions though surprise hamsters! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5036243200302124, 0.23232492804527283, 0.26405078172683716]" -8276, Lmfao idfk he’s so funny fse,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4513602554798126, 0.27604445815086365, 0.2725953161716461]" -51824," Mom PERSONALLY thanked me for being a good friend to Maddie, by decorating her locker like Maddie d… ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.47931456565856934, 0.2631603181362152, 0.25752511620521545]" -52648,I really enjoyed this You do write like you speak ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.44966965913772583, 0.30349892377853394, 0.246831476688385]" -9346,Labyu ma ! miss you ❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.40561801195144653, 0.3572128117084503, 0.23716913163661957]" -9207, why uan come to wynwood lil bitch ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5441563129425049, 0.22550880908966064, 0.2303348332643509]" -63603, I’m Welsh!clueless!butwantyouinpowerbigtime!!Im afraidforusa,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.46127644181251526, 0.28375759720802307, 0.25496602058410645]" -61488, I hope when Apple makes a standalone display again for Mac Pro that it’s a 30” 8K display. I’ll be if it has ProMotion too.,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.45702680945396423, 0.2755906879901886, 0.26738256216049194]" -18943, Damn cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5576015710830688, 0.22018860280513763, 0.22220979630947113]" -59374, Not afraid to die.. just afraid of how I’m gonna die. And when lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4120471477508545, 0.3116828203201294, 0.2762700319290161]" -57715,"can little mix just go on ahead and release ""is your love enough"" already? ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5409300923347473, 0.20753134787082672, 0.25153857469558716]" -14298, Is that what they’re calling it these days? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4285760521888733, 0.3023146092891693, 0.2691093385219574]" -6409,Dat part ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙇,"[0.4374138414859772, 0.28945666551589966, 0.27312949299812317]" -49758,"“this is what i do, it’s really not easy” ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40074074268341064, 0.33533555269241333, 0.2639237940311432]" -33254,Wait. This gif ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.46794769167900085, 0.24603110551834106, 0.2860212028026581]" -11246,I'm such an over dramatic person ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5064211487770081, 0.2357933074235916, 0.25778549909591675]" -11454, You and me both ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -28080,Fuck ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4449709355831146, 0.27948474884033203, 0.2755444049835205]" -21563, you're a babe ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5329720973968506, 0.21645769476890564, 0.250570148229599]" -59587,Ewww is this what y’all think when I post late snaps on the road no bueno ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5188289880752563, 0.2237890213727951, 0.25738194584846497]" -27763,I WASN’T READY. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3943781852722168, 0.3887045085430145, 0.21691732108592987]" -63921, What Ian said Paul ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.447454035282135, 0.2760865092277527, 0.27645936608314514]" -30936, Danny he’s paid to buff soros helmet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5088639259338379, 0.22493959963321686, 0.26619648933410645]" -52351," While in jail, John, eat Vaseline sandwiches daily. It makes for much easier entry in your arse. You'll enjoy it!",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.429120272397995, 0.28292742371559143, 0.2879522740840912]" -5793,Harry Winks and Eriksen running Kroos and Modric like they are nothing,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4487482011318207, 0.29494714736938477, 0.25630471110343933]" -30330,Don’t be surprised when you see Houston bandwagons now,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4601663053035736, 0.27553659677505493, 0.26429712772369385]" -50187,Oh sweet Jesus ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.540779709815979, 0.20600904524326324, 0.25321123003959656]" -64439,No but a Phoenix Bird Mjekejeke came through for us ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4485687017440796, 0.3044126629829407, 0.24701857566833496]" -2295,Add a super stylish touch to your home Our Willow Coffee Table comes in a gorgeous Rose Gold - so on trend … ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.47585657238960266, 0.2543478310108185, 0.26979556679725647]" -31861,Omg this weeks episode of Tales,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4945415258407593, 0.28092026710510254, 0.22453820705413818]" -20952,"I wonder if anyone still has my video of ""the worst Halloween party ever"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4787650406360626, 0.23995929956436157, 0.2812756299972534]" -5751," I don’t see any around bud. Yeah start playing, or give them to me whatever suits you new game mode also coming with it",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43471407890319824, 0.2911899983882904, 0.27409592270851135]" -50299, Your smile is the cutest,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5258021354675293, 0.23146389424800873, 0.24273400008678436]" -18319,My stomach been hurting like shit ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.4130935072898865, 0.3302862346172333, 0.25662025809288025]" -64008,my bestie is bad ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.47343674302101135, 0.28588980436325073, 0.24067340791225433]" -62166,Next year I'm gonna be Ashley all day for Halloween ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4950273633003235, 0.2365494966506958, 0.2684231102466583]" -48376,my mama said I'm awesome sauce ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4664016664028168, 0.2453659325838089, 0.2882324159145355]" -2051," Wow, you don't sleep on the job neh Lol he isn't. He's a church dude.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3984219431877136, 0.31728318333625793, 0.2842949628829956]" -42350,"""The wonder is that every day is a new beginning."" ~ Vicki Roehrick❤️☀️",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4968932271003723, 0.21649397909641266, 0.28661277890205383]" -5931,Didn’t feel good thinking “I have to work today” but then I remembered not in the food industry anymore ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😧,"[0.3641212582588196, 0.361615926027298, 0.2742628753185272]" -26606,Ladies get ready to share everything now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40276116132736206, 0.34126392006874084, 0.2559748589992523]" -17166, Lmao I know it’s all you talked about today but I hope we get candids,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4488654136657715, 0.2778570353984833, 0.27327749133110046]" -23601,That's not even an option ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5216269493103027, 0.22757849097251892, 0.25079452991485596]" -24331,Ahh..Thank u soo much sarahMeans alottt ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6626356840133667, 0.13799737393856049, 0.19936692714691162]" -3417," RinHaru for Life, cry aberrrr Yuri on Iceeee, omgggg ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5218905210494995, 0.2319319248199463, 0.2461775839328766]" -56041,this headache won’t go away,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4140673279762268, 0.32555264234542847, 0.2603800296783447]" -18429,He fasho in the hood ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5265454053878784, 0.22396013140678406, 0.24949446320533752]" -40053,Can't relate… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4603481590747833, 0.27449581027030945, 0.26515600085258484]" -23618, dang twit did ya dirty.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43491873145103455, 0.2729162573814392, 0.292165070772171]" -66222,No guys ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4990505874156952, 0.23215417563915253, 0.26879531145095825]" -24031,Think I talk to my brother my often now were at uni then when we were living at home ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.391979455947876, 0.33823201060295105, 0.2697884738445282]" -56900,Wish I was going to BlizzCon ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.43574970960617065, 0.3384455442428589, 0.22580473124980927]" -40863,Real ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4647642970085144, 0.25912418961524963, 0.2761114835739136]" -209, I love this video ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.581549882888794, 0.18226876854896545, 0.2361813336610794]" -61826,I'm actually really sad I didn't get to see Russ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.37351900339126587, 0.38327136635780334, 0.24320966005325317]" -64340,"Kyaaah bangtan,im so proud of you",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.47805893421173096, 0.2835972309112549, 0.23834392428398132]" -40374, Thank you,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6514566540718079, 0.11697802692651749, 0.23156534135341644]" -52778,Ohmygod ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4369906485080719, 0.32515019178390503, 0.23785914480686188]" -53219, Ya saw this...nice one,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙈,"[0.5913742184638977, 0.1634519249200821, 0.2451738715171814]" -63832, You so real ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4647642970085144, 0.25912418961524963, 0.2761114835739136]" -25379,"whole of Aberlours nae got power, ideal like",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46497467160224915, 0.2864292562007904, 0.24859608709812164]" -68330, Lol this is the precise statement I want you to stop saying ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.43318426609039307, 0.27043700218200684, 0.2963787019252777]" -66289,Thinking of getting a Tattoo for every heartbreak. Ink will never dissapoint me.,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.44942420721054077, 0.29025179147720337, 0.26032400131225586]" -58318, I thought it was a lady... IT WAS A MAN! I started beating his ass! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5483498573303223, 0.22418846189975739, 0.22746162116527557]" -54581, Wow 'd and following. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.523848831653595, 0.23985785245895386, 0.23629328608512878]" -2930,Marcelo is the most overrated player I’ve seen,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45351219177246094, 0.2899019420146942, 0.2565857768058777]" -42325, Welcome to social media ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5383473634719849, 0.2130320966243744, 0.24862048029899597]" -21057,You were always scared of me leaving but you did it first. You showed me what we meant was nothing to you thank you for the life lesson ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.48835575580596924, 0.23302333056926727, 0.2786208391189575]" -34429, YAY! Can't wait! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5128744840621948, 0.2383500337600708, 0.24877557158470154]" -15469, im salty,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43163830041885376, 0.30345645546913147, 0.26490527391433716]" -44469,Drunk Ally. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.472474068403244, 0.26766321063041687, 0.2598627209663391]" -46484,One time I couldn’t figure out a math question so I asked and she did it for me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40005069971084595, 0.3175496459007263, 0.2823997139930725]" -35042, Wait. Maaayyyybe not Darvish ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.493063747882843, 0.26909711956977844, 0.23783910274505615]" -51189,"⚰⚰⚰⚰⚰ le table once. Aii I'm very angry, entlek I wanna fight the lecture ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40035542845726013, 0.3104785978794098, 0.2891659736633301]" -5033, Lol look how calm Yoongi is I would probably try to go trough wall,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46992650628089905, 0.24661782383918762, 0.2834557592868805]" -26986,This was like my first official paid photoshoot ever . Wow. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.49929770827293396, 0.2552102506160736, 0.24549204111099243]" -17312,I only go on youtube to watch The Ace Family ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4913922846317291, 0.26465049386024475, 0.24395717680454254]" -5045, Me in the last picture ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4656417965888977, 0.2531982362270355, 0.2811599373817444]" -16228,Swear I can't stop laughing. I need more of this video ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.43127545714378357, 0.2909567654132843, 0.27776768803596497]" -18026, Aww! You two are so sweet. I hope you had a great time!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5364369750022888, 0.20940616726875305, 0.25415685772895813]" -28287,"Welcome the stunning into ""Worlds Sexiest Trans 2017"" ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😛,"[0.6962769031524658, 0.10341130197048187, 0.20031185448169708]" -30948,I tossed and turned all night shit feel so unreal ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4612583816051483, 0.29378741979599, 0.2449541836977005]" -26827, I'm laughing soo hard,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5091992020606995, 0.2573975920677185, 0.23340323567390442]" -26310, Paul lad you'll make es blush ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4904867112636566, 0.24970924854278564, 0.2598040699958801]" -18405,i just walked in the house and my momma gon have the nerve to tell me i can’t stay bc she got company coming ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.44367191195487976, 0.2868559956550598, 0.2694721221923828]" -56997,When you caught yourself smiling for no apparent reason ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5053046345710754, 0.2312435358762741, 0.2634517550468445]" -45574, Good news guys farhan giving treat to all twitterati ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4879295527935028, 0.24342693388462067, 0.2686435282230377]" -41182, me either tbh,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4612133800983429, 0.26688042283058167, 0.2719061076641083]" -27580,Stop hiding that fat ass forehead rasata ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4703015089035034, 0.2440553605556488, 0.2856431007385254]" -17356,LOL THEY PUT THE TROPHIES INSIDE JK BAG ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4385499358177185, 0.2600550651550293, 0.3013949394226074]" -67417, When I get a car,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4659651219844818, 0.2739076614379883, 0.2601271867752075]" -23549," Haha this guy is awesome, reminds me of Big Daddy ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙋,"[0.6067434549331665, 0.1415967345237732, 0.2516597509384155]" -51615,"Fuck, I’m sick again ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38662275671958923, 0.3567027449607849, 0.25667449831962585]" -44057,I. AM. SCREAMING. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5568197965621948, 0.1873510777950287, 0.2558290958404541]" -7297, hahahha it kinda does look like me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43464118242263794, 0.29891151189804077, 0.2664472460746765]" -56689,university life ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4960213601589203, 0.25162747502326965, 0.25235119462013245]" -58999,THIS IS GREAT ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙋,"[0.6343585252761841, 0.12128043174743652, 0.2443610280752182]" -48666, ✌Mr. Perfect. I retweeted it for u!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.6062387228012085, 0.14975975453853607, 0.24400155246257782]" -35945, Dude my exact words I’m so ready for this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.40088191628456116, 0.33679741621017456, 0.2623206377029419]" -42894,But they haven't guest on variety shows yet!! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4823153614997864, 0.25217077136039734, 0.2655138075351715]" -60795,Who’s idea was this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4204263985157013, 0.2957494556903839, 0.2838241457939148]" -47030," Kinah , who is this ... ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -25541,Omg too cute!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😺,"[0.6241452097892761, 0.17818672955036163, 0.19766804575920105]" -35574, lea me lone,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -9162,"You know something is gonna go down when the drunkest person yelling "" orita andas con da vinchi "" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.526342511177063, 0.2174462378025055, 0.25621119141578674]" -1682,I need to go on a serious drinking ban ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.42785459756851196, 0.30865728855133057, 0.26348817348480225]" -54933, Walaikum Assalam Have a nice day ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6169020533561707, 0.14899814128875732, 0.2340998649597168]" -58324, Yo twitter name ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.42882654070854187, 0.25783032178878784, 0.3133431673049927]" -23247,Madrid are playing like Chelsea yesterday ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4129745364189148, 0.3142206072807312, 0.272804856300354]" -36253, It's very overwhelming,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4551496207714081, 0.3025473654270172, 0.24230293929576874]" -44264,Dude it takes me 45mins ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4346888065338135, 0.31416767835617065, 0.25114351511001587]" -49300,what a joke. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4141502380371094, 0.30317941308021545, 0.2826702892780304]" -41572,It's a beautiful day today in Israel! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5671692490577698, 0.20697206258773804, 0.225858673453331]" -34584,I get so happy when I'm able to fall asleep before 9:30. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😹,"[0.4530487060546875, 0.2945353388786316, 0.2524160146713257]" -37794,Back to me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -32724, How long until she accuses superchat donors of running pill mills and being too needy? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40971139073371887, 0.32201850414276123, 0.2682701349258423]" -13676, I think it’s more like everyone else has better taste ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5206034779548645, 0.22329181432724, 0.2561047077178955]" -29192, The same amount as Dodger’s fans this year,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4872009754180908, 0.23214517533779144, 0.28065383434295654]" -68358, thank you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6514566540718079, 0.11697802692651749, 0.23156534135341644]" -49164, so it’s all your fault basically dad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4137035012245178, 0.3121538460254669, 0.2741425931453705]" -48944,Demi did it better ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.42992928624153137, 0.3073115646839142, 0.26275917887687683]" -9134,They found their front doors all dirty ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4653465151786804, 0.25222331285476685, 0.28243017196655273]" -15900," Lol ahh, ok you got me there ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5392905473709106, 0.20917218923568726, 0.2515372633934021]" -51105,Everything ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -43699, will you just let us be,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46719422936439514, 0.28454411029815674, 0.24826167523860931]" -43285, Bitchhh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5007248520851135, 0.23677736520767212, 0.26249784231185913]" -8663, okay ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5771932005882263, 0.1938214749097824, 0.22898533940315247]" -62817,The plunger & plate of food ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47832348942756653, 0.2706434428691864, 0.25103309750556946]" -11102,If they were mad before they damn sure about to be mad now. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.43765753507614136, 0.2723291516304016, 0.29001328349113464]" -11276, Yes. Depends on the car and the country you're importing from. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.47010260820388794, 0.27144503593444824, 0.25845232605934143]" -56939,I'm in love with all the icons made for me they're all so perfect! I have such a good friend ♡,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙌,"[0.6670665144920349, 0.13515262305736542, 0.19778089225292206]" -15366, twins ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49008291959762573, 0.24963729083538055, 0.2602797746658325]" -8597, This is annoying but can you please retweet this tweet below? Thank you for your help ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5395351052284241, 0.2141002118587494, 0.24636462330818176]" -18855,My mom is at Disney & I’m at home trying to study. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4539783298969269, 0.32360097765922546, 0.22242075204849243]" -37058,They done fucked up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4353888928890228, 0.31930503249168396, 0.2453061044216156]" -23854,perioddddd fuck bitches thought!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4125511944293976, 0.3289032578468323, 0.25854551792144775]" -50945," just wanted to say how much of an amazing job you’ve done on voicing Ashley on Until Dawn, even though I hated her character ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4918733537197113, 0.2574951648712158, 0.2506314814090729]" -62622,Looking At All The Flicks From The Weekend ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5283499360084534, 0.23590365052223206, 0.23574642837047577]" -17945, OH WOW IT CAME TOGETHER SO WELL!! Great job! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5082581639289856, 0.23611658811569214, 0.2556252181529999]" -20601,O damn It’s safe to say I’m not getting old if this nigga pikachu still out here battling ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4169444143772125, 0.31765103340148926, 0.265404611825943]" -25358, That's shit make me smile every trip I love that shit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4840201735496521, 0.27091848850250244, 0.2450612485408783]" -44072,My boyfriend a fucking snack,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4733431339263916, 0.25849649310112, 0.26816031336784363]" -57998, thanks! i really hope so ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5344517827033997, 0.22843264043331146, 0.23711548745632172]" -61080,"Thank god for greg, if it weren’t for him I wouldn’t be able to do as I plan ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4412427842617035, 0.2786460816860199, 0.2801111042499542]" -50302," Happy november, my lady ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😘,"[0.7463663816452026, 0.08665753901004791, 0.16697607934474945]" -59054, TWICE??,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.43450963497161865, 0.29311710596084595, 0.27237334847450256]" -219,"This little man is 5 today! When I asked him this morning how he is 5 now, he told me he went to sleep and woke up 5 ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3916081190109253, 0.35561421513557434, 0.25277766585350037]" -97,"If you value your life experiences over things you own, you’re on team Kiiah! ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😹,"[0.44182682037353516, 0.29673242568969727, 0.2614407539367676]" -46603, I immediately thought of you when I saw this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.446167916059494, 0.29375746846199036, 0.2600746154785156]" -58109, At least you know ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4706558287143707, 0.26230400800704956, 0.2670402228832245]" -59445, you do you bra ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.4184829890727997, 0.34064754843711853, 0.2408694475889206]" -47701, perfect position to cave my skull in when it falls ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5696123242378235, 0.19653372466564178, 0.23385393619537354]" -22816,My Travis shirt is my fav I wear it sm ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.4522860050201416, 0.26742023229599, 0.2802938222885132]" -17932, Aaaaah you makes me hoping it ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.4491822123527527, 0.2724515199661255, 0.2783662676811218]" -55661,Please can't we heal aunt Vi and throw Darla away? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4651823937892914, 0.2520694136619568, 0.28274813294410706]" -29010,This would fasho be my little dude all nerdy lmao ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4534623920917511, 0.28034457564353943, 0.2661930024623871]" -65350, Timing different hai he posted first but observation skill. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.521777331829071, 0.20802827179431915, 0.2701943814754486]" -67743,"Idc what anyone says, you can tell Kim ain’t a real Selena fan cuz she don’t even know the song ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4633387327194214, 0.24901992082595825, 0.28764137625694275]" -49970, See? Comedy genius!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4427410662174225, 0.2843247950077057, 0.27293410897254944]" -16776,Sefolosha so dirty man ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48278746008872986, 0.24059683084487915, 0.2766157388687134]" -25124,"""dial it down everyone can see your feelings"" ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.43783098459243774, 0.3053636848926544, 0.25680530071258545]" -36560,Goodbye Philippines ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44815540313720703, 0.2883443534374237, 0.26350024342536926]" -64416,Sometimes we need to know how to respect our partner life ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙇,"[0.42673543095588684, 0.3018846809864044, 0.2713799476623535]" -62259,I'm crying ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4222264587879181, 0.32477089762687683, 0.2530025839805603]" -48422, Yes I hope so -show them YOU ARE THE MASTERS ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4954444169998169, 0.26212188601493835, 0.24243374168872833]" -179, Pls no ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4363419711589813, 0.3203182816505432, 0.24333979189395905]" -24625, What y’all doing up there today,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3978547751903534, 0.3453969955444336, 0.256748229265213]" -66696, Ahh yes I did that for all my uni houses and I was so glad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5179085731506348, 0.23706096410751343, 0.24503040313720703]" -27537, Lol poor men ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4165945053100586, 0.2933458387851715, 0.2900596261024475]" -21598, Werent her i betz herz ad a cosin off da tv hooms ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45219266414642334, 0.27882957458496094, 0.2689777910709381]" -9399, thanks for the laugh. ❤President Trump❤,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47964367270469666, 0.2429935336112976, 0.2773628830909729]" -16095, I had 2 chicken patties ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.463837206363678, 0.2827408015727997, 0.25342199206352234]" -24378,I didn’t know I’d be this excited to see Tyler live ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.5020135045051575, 0.2476702481508255, 0.2503162622451782]" -46495,I can’t get over that Wendy Williams passing out video,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4823131263256073, 0.266132116317749, 0.2515546977519989]" -42195,Yessssss It's my birthday month....It's the month of Thanksgiving andddddd I get paid 3 times In this month... ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5525880455970764, 0.1985536366701126, 0.2488582730293274]" -53358,so cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😽,"[0.6716501116752625, 0.1477767378091812, 0.1805732101202011]" -54876,When a Farah texts another Farah ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.48148074746131897, 0.2736494243144989, 0.24486985802650452]" -52550, HAVE YOU HEARD LEMON???!!! ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5069838762283325, 0.227789968252182, 0.2652261555194855]" -51403, your header pic ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😱,"[0.4467935562133789, 0.25231418013572693, 0.30089232325553894]" -11352, Not available in India sadly ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5800589919090271, 0.19172413647174835, 0.22821687161922455]" -1384,I have so many christmas presents to buy this year....Im either gonna have to get two more jobs or just give everyone socks from target ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4208683669567108, 0.3042880892753601, 0.2748435139656067]" -62069, Lol that’s fine take awhile to take down ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5157840251922607, 0.20397162437438965, 0.2802443206310272]" -47591,Happy birthday to my lil brother!!! ❤️ love you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6574109792709351, 0.12270578742027283, 0.2198832482099533]" -4605, oh it’s more than a thing!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5166931748390198, 0.21627338230609894, 0.2670333981513977]" -29264,the la law knocked off some time so I'm grateful but we still need him home now!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.45465394854545593, 0.29980039596557617, 0.2455456554889679]" -25331, Ahhh hell rip to us all then ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3847006857395172, 0.3438918888568878, 0.2714073657989502]" -53970,"im really liking this , matter of fact i love it ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.5009114742279053, 0.2527894377708435, 0.24629908800125122]" -6705,HOW DO I HIDE A PACKER WITHOUT IT BEING OBVIOUS??,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5443461537361145, 0.19529065489768982, 0.2603631615638733]" -24454,I’m so broke I can’t even get my damn nails done!?! ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.38936853408813477, 0.35727760195732117, 0.25335389375686646]" -555," they say olive, either you like em or hate em one of the objekts in food i never learn to love",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5452172756195068, 0.20396208763122559, 0.2508206069469452]" -5926, Hate to break it to you... but at 3am I am sleeping... and Europe has just 508-733M peo… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.451107919216156, 0.3100559413433075, 0.23883621394634247]" -56226, naw but I don't think they get him vertical enough. Put him in the slot & run on them… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44939354062080383, 0.29804527759552, 0.2525612711906433]" -1123, Scheduling your meetings just before ‘s world events ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4403320848941803, 0.30762460827827454, 0.2520432472229004]" -19230, overthinking sucks ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4223552644252777, 0.3020282983779907, 0.27561646699905396]" -55254, Shut ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.39944231510162354, 0.3126600384712219, 0.2878977656364441]" -21546, Nigga said Texas TO Brazil bitch he taking u traveling,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40361732244491577, 0.3338797986507416, 0.26250287890434265]" -51761,"So me its a way of life RepostBy bmw.paradise: ""So cute • by… ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5370422005653381, 0.22699278593063354, 0.23596499860286713]" -48435," Camilo removed power videos when he kew that I reported the videos, but he still got striked ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5469774007797241, 0.23077449202537537, 0.2222481667995453]" -16481, Lmao I'm sure,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4610157608985901, 0.23421107232570648, 0.3047731816768646]" -5903, CANNOT wait to see you tour again 5 years has been waaaaay too long !!!!!!!!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.3972250521183014, 0.3544071614742279, 0.2483678013086319]" -7536,I'm not crying ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4222264587879181, 0.32477089762687683, 0.2530025839805603]" -3322, y’all funny asl,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4521002471446991, 0.2679998576641083, 0.27989983558654785]" -4030, Always will be ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -18260, is not a backdoor girl! I LOVE THIS SHOW ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5261939167976379, 0.23049606382846832, 0.24330997467041016]" -10816,"When you hear someone say “man this homework was hard” but you can’t relate, cause you didn’t do it >>> ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4576074481010437, 0.29001057147979736, 0.2523820102214813]" -4401,When he wears vans and converse tho ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5145889520645142, 0.22787871956825256, 0.2575322985649109]" -22085,She was fire tho man. Damn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46024763584136963, 0.2657857835292816, 0.27396655082702637]" -63584, An eggplant is definitely not going to fit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5030155181884766, 0.25787824392318726, 0.2391061931848526]" -16618,Im loving my schedule for next semester ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😥,"[0.4400934875011444, 0.3269437849521637, 0.23296277225017548]" -10764,dude ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4774191081523895, 0.25556376576423645, 0.267017126083374]" -50869, i’m so sad you did for like five seconds and i freaked out about it lmao,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3749192953109741, 0.37533441185951233, 0.24974629282951355]" -54621, With Free WiFi Missing buddy irrudha.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.42033180594444275, 0.3244803547859192, 0.25518783926963806]" -24842, - Too fast ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5111925601959229, 0.2401016801595688, 0.24870572984218597]" -11876,great… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙋,"[0.6343585252761841, 0.12128043174743652, 0.2443610280752182]" -17228,LOOK AT THE LITTLE JIMIN AND THE CAT ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.4462805688381195, 0.2825842797756195, 0.271135151386261]" -54068,Oh my God ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5751411318778992, 0.18262821435928345, 0.2422306090593338]" -29437,Everyone is all of a sudden astros fans even fans that team got eliminated by them wow what a joke,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46112701296806335, 0.26655590534210205, 0.2723170220851898]" -54388, This is so funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48540258407592773, 0.23515063524246216, 0.2794467508792877]" -65042,Not ready for semster 2 sey... 6-10pm ???? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.42625123262405396, 0.3573167622089386, 0.21643204987049103]" -22207, I’m still working on mine too!! Jeeeeez March was such a fun adventure sjdjfnerkdk ❤️ MISS YOU ALL SO MUCH,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.43221184611320496, 0.3261653482913971, 0.24162279069423676]" -43968,Definitely me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5566666722297668, 0.19015540182590485, 0.2531779706478119]" -63402, dawg,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.47742635011672974, 0.27879244089126587, 0.24378125369548798]" -67414,The nerve that person has to say Selena's butt wasn't real ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.457984983921051, 0.27051272988319397, 0.2715023159980774]" -15348, We have to watch these again ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44876134395599365, 0.2913030683994293, 0.25993549823760986]" -38433, Awh dude same MESSAGE ME!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4443427324295044, 0.2907068729400635, 0.26495039463043213]" -49459,done ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -41253, Yes he’s famous for his split the world vine video ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5168052315711975, 0.22952862083911896, 0.2536661922931671]" -34190," Its either something you cooked, or indian food, or junk food so yallah ay w7de?",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.489473819732666, 0.25516173243522644, 0.2553645074367523]" -20741, Lol I hate sending voice notes for the same reasons...I’m cool with texting never get tired of it,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3872702717781067, 0.34670916199684143, 0.2660205066204071]" -14209, i miss okee ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😓,"[0.3582957684993744, 0.4293939769268036, 0.2123103141784668]" -66165, oml please ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4897766709327698, 0.24544326961040497, 0.26478010416030884]" -55853,In saying that about NYC may be I'm one of those strange people walking about .Thought I'd say that before any of you lot do. .RW,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4583325684070587, 0.26528236269950867, 0.2763851583003998]" -54084,HQ PLEASEEEE!!!! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.48499923944473267, 0.263270765542984, 0.2517300248146057]" -14920, Who said this,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4227522313594818, 0.3152070939540863, 0.26204076409339905]" -48264,I can’t even ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -13556, Lmao they're fucking bullies ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.45443961024284363, 0.26878660917282104, 0.27677372097969055]" -43427,Gamestop is gonna start renting out games ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.49779272079467773, 0.2513508200645447, 0.2508563697338104]" -5632, Ur beautiful baby,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6473954916000366, 0.1388753354549408, 0.21372923254966736]" -51041,Work is kicking my ass and I can’t find Courtney ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4970681071281433, 0.24807007610797882, 0.2548618018627167]" -5295, I still need a puppy in my life ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.47296929359436035, 0.2991907000541687, 0.22783993184566498]" -21836,Lolz ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5333634614944458, 0.2192896008491516, 0.24734695255756378]" -32392,You was saying you love and miss me but layed up with another man how that work?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39958512783050537, 0.34328943490982056, 0.2571254372596741]" -66265, Stanley is the man. Look at that face! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4861770570278168, 0.262306809425354, 0.2515161335468292]" -8740,Keep the romance alive... and then after 3 months just throw it out the window. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4434822201728821, 0.2837599813938141, 0.27275779843330383]" -64580,My bestie came to my Halloween party channeling the very best of and ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49117034673690796, 0.24357369542121887, 0.26525598764419556]" -51828, I mean it! It's amazing ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5790590047836304, 0.17326894402503967, 0.24767203629016876]" -41934, Hormonal imbalance ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -44966, exactly,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4150691330432892, 0.3217805027961731, 0.26315033435821533]" -10008,There are Christmas movies on TV ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😱,"[0.4430806636810303, 0.2748427093029022, 0.2820765972137451]" -67843,Baddies ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4854756295681, 0.2624000906944275, 0.2521243095397949]" -59080,The fact that “HOUSTON MF TEXAS HOE” is trending has me crying,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4611545503139496, 0.28316834568977356, 0.25567710399627686]" -49431,like the cutest thing ever ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.39343610405921936, 0.341856986284256, 0.2647068500518799]" -39494,Oh my gosh I bawl my eyes out every single time I watch PS I Love You,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.49734246730804443, 0.24268664419651031, 0.2599707841873169]" -56913,Check it out!!! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.582976758480072, 0.176172137260437, 0.24085108935832977]" -14626,Get the girls in decatur bringing up shit from 4 years ago lmao ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4156598746776581, 0.3158887028694153, 0.2684514820575714]" -28974,the cook today sent some home today for me bc she said she was thinking about me omg,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.4245409369468689, 0.32073619961738586, 0.2547228932380676]" -22724,Ayyyy man get y'all philosophical asses on‼️ y'all don't even follow your own advice tf.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4371761679649353, 0.28585290908813477, 0.2769710123538971]" -33337, For real ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4647642970085144, 0.25912418961524963, 0.2761114835739136]" -25945,Thanks for the cookies ! The team descended on them like locusts ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4859708845615387, 0.25141003727912903, 0.2626189589500427]" -7655,And for piano lessons din pala ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46320098638534546, 0.26308727264404297, 0.27371177077293396]" -43919,THIS IS THE CUTEST THING EVER ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4067992568016052, 0.3258553445339203, 0.2673453986644745]" -30976,Had the best nap just now ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.4226475954055786, 0.3398873507976532, 0.23746511340141296]" -38052,I have to contact the driver that I gave a terrible review this morning bcuz I left my keys in his car!! AWESOME! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4875231385231018, 0.2586752772331238, 0.25380152463912964]" -25198, Let also post. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5066163539886475, 0.23575076460838318, 0.25763288140296936]" -43669, this is you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -23558,“How most experienced pol. lose to most unfit candidate ever?” Trump asked reporters. “Hillary lost on purpose/she wanted me impeached.”,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40930381417274475, 0.3202529847621918, 0.2704432010650635]" -13952, thank you so much sweetheart this is all so sweet ♥️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6491506695747375, 0.13409440219402313, 0.2167549580335617]" -66600," You said, questions pochu Ab ans do ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4888678193092346, 0.23823238909244537, 0.2728998064994812]" -11449,i don’t got no hoes nomore.. ima show you ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.45362260937690735, 0.28659483790397644, 0.2597825527191162]" -10831,Oh God his fine ass ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",🙈,"[0.59859699010849, 0.16724435985088348, 0.23415859043598175]" -54526,amazing ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6552092432975769, 0.1303894817829132, 0.21440128982067108]" -65901,Exactly summer 🏖 ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.42697077989578247, 0.31399089097976685, 0.2590382993221283]" -63082,Not zaddy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -64561," Why are you mad thatWe had Russian Nazis traitored? You believe in ukie Nazis, if… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4365001320838928, 0.29829141497612, 0.26520848274230957]" -58359,Shit still has me dead asf ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41058656573295593, 0.3201153576374054, 0.2692980170249939]" -21521," he's not selling dreams this time, we can all see it. ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4833775758743286, 0.27011269330978394, 0.24650976061820984]" -58139,Jesus wept ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5400119423866272, 0.211649090051651, 0.24833886325359344]" -30451, Did Kate get down on one knee when she asked? ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46229347586631775, 0.2674894332885742, 0.27021709084510803]" -5198, last one ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -16441, Well run me my money ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.3973262310028076, 0.3565913140773773, 0.24608246982097626]" -38654,Ohh WOW ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙉,"[0.5162506103515625, 0.21210122108459473, 0.2716481685638428]" -55002,Bout 27 songs in on CB new album..oh just another 15 or so to go ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4165322482585907, 0.32846158742904663, 0.2550061047077179]" -63661, wish you were going to be there tooooo ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.41379064321517944, 0.3658410608768463, 0.22036829590797424]" -37292, Lmao I did say that first hour it’s true,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46604785323143005, 0.26502910256385803, 0.2689230442047119]" -44326,i cant ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -57032, Lmao tell me nottt,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.4401317238807678, 0.26772502064704895, 0.2921432554721832]" -58219,So emotional about Stranger Things ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.36324164271354675, 0.39006131887435913, 0.24669702351093292]" -54148,"I honestly don't know what you're talking about. I was at the gym today, ngaz'gymela kahle ngavaya. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4142037332057953, 0.3277774751186371, 0.25801873207092285]" -48910,I haven't smoked today and I'm gon try not to for the rest of the day lol kill me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.45763835310935974, 0.28744494915008545, 0.2549166679382324]" -38266, Girrrrrll!! This storyline is everything ! His interaction with everyone when they realize is making me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.471976101398468, 0.2794381380081177, 0.2485858052968979]" -13804, why did u even say u played lmaoooo,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5003305077552795, 0.2465296983718872, 0.253139853477478]" -28595, Stepped on her toe ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48623088002204895, 0.24825477600097656, 0.2655142545700073]" -59136,when text free numbers keep harassing you but your friends don’t play that ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😧,"[0.3668804168701172, 0.36607396602630615, 0.2670455873012543]" -6238,He's a horrible horrible dad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4443802237510681, 0.2866559624671936, 0.26896387338638306]" -3058,Why do I want to do this lol I love a challenge! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4293585419654846, 0.3173782527446747, 0.2532632350921631]" -19174,I needed this before Winston attacked ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5400530695915222, 0.202531099319458, 0.2574157416820526]" -19237, I sawwww this tweet coming ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4339222311973572, 0.27924996614456177, 0.28682777285575867]" -41098,Now she'll always be late ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4711902141571045, 0.2572055459022522, 0.2716042399406433]" -1522,Tacos and beer kind of night ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.425447553396225, 0.3039085566997528, 0.2706438899040222]" -13148, Haha I think every wrestler has annoying stans Kairi has been great so far in WWE. Cant wait for… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6326280832290649, 0.12637576460838318, 0.24099618196487427]" -21936,I wonder have I met my wife yet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45527422428131104, 0.28081753849983215, 0.26390817761421204]" -53134, That is great!!! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙋,"[0.6343585252761841, 0.12128043174743652, 0.2443610280752182]" -18217, Why are you so beautiful?! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6271557211875916, 0.15021805465221405, 0.222626194357872]" -33096,"LEAAA I'm missing you so much. ☹ I miss you, I miss you, I miss you. ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😓,"[0.35749417543411255, 0.43316274881362915, 0.20934313535690308]" -52446, Hehe yes ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4731450378894806, 0.26739269495010376, 0.2594622075557709]" -37796,Beeeeeeees dm me ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.47883281111717224, 0.2568538784980774, 0.26431331038475037]" -48203, Same question I’m thinking ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4033602476119995, 0.3146308362483978, 0.28200894594192505]" -34511,shorty got 20 mins to get here before I grab the keys and head out ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.526520848274231, 0.23418304324150085, 0.2392960488796234]" -48328,"stay happy, keep smiling,praying",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5731481313705444, 0.19320140779018402, 0.23365047574043274]" -18902,I loveee them ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.39141732454299927, 0.3743932247161865, 0.2341894507408142]" -61834, You're tweeting my life ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5441633462905884, 0.21665969491004944, 0.23917703330516815]" -14133,Since when did get on Twitter ? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42289620637893677, 0.27543580532073975, 0.30166804790496826]" -54802,Need coffee ️ ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😥,"[0.4477262496948242, 0.3230913579463959, 0.2291823923587799]" -12698, I'm scared of chomping hamsters tho. Those teeth hurt ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.37965622544288635, 0.3275246322154999, 0.29281920194625854]" -64259,Halloween night we became one...A year down the line we are tighter than ever!I love you Racheal,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5255316495895386, 0.21840955317020416, 0.25605884194374084]" -753, It changes the notion ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.45619824528694153, 0.2892683148384094, 0.25453341007232666]" -64626, Wendy darling ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4502038061618805, 0.29111647605895996, 0.25867968797683716]" -20542,WTF I MISS YOU SO MUCH MY OTHER HALFFFFFFF❣️❣️❣️❣️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.38162389397621155, 0.3847730755805969, 0.23360295593738556]" -65469, Yeah and smiling for no damn reason,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5011360049247742, 0.22383007407188416, 0.27503395080566406]" -38711,aye moe his shit right on point ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48247963190078735, 0.24454385042190552, 0.27297645807266235]" -46151, Try to focus we're talking about current events! Proven?! You mean you saw it on fox propaganda Trump is that you,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4286527931690216, 0.30682969093322754, 0.26451751589775085]" -48784,y’all bitches be looking like the grinch who stole christmas ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙇,"[0.4360469579696655, 0.2942242920398712, 0.26972874999046326]" -31349, You're perfect like this ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😽,"[0.699310839176178, 0.1259232610464096, 0.174765944480896]" -42678, Wow..... snitch,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4911341071128845, 0.2550217807292938, 0.2538439929485321]" -19498, What can jack play cb ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4636002779006958, 0.2579362392425537, 0.2784634828567505]" -11658, Man whattt ain't everybody just us ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4562791883945465, 0.2856290638446808, 0.2580917477607727]" -66410,i really didn't like race trac i was gone come back but nah,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.39949047565460205, 0.3548629581928253, 0.24564650654792786]" -43420, you know she livee af,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4527248740196228, 0.2706236243247986, 0.2766515016555786]" -24174, Our WHILE FAMILY !!!!!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45133766531944275, 0.29685020446777344, 0.2518121600151062]" -64379,With experience of corrupt n cheater AAPins friends too ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5337967872619629, 0.20391863584518433, 0.2622845470905304]" -2462,Smooollll ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -64437, Thanks for this I miss her so bad ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😟,"[0.43197140097618103, 0.3380865454673767, 0.22994208335876465]" -28025, Woah ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5557726621627808, 0.22254252433776855, 0.22168484330177307]" -11336, I know trynna come drink with ya soon,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4961950480937958, 0.23635876178741455, 0.26744621992111206]" -18580,I hate when people that snore fall asleep before I do ‍️ straight blowing my shit bruh,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.46944543719291687, 0.28970134258270264, 0.24085313081741333]" -23928, And now he's busy giving auditions and tweeting vague tweets about his lines getting cut ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.46741190552711487, 0.26516687870025635, 0.26742124557495117]" -41539, it is now and forever will be called the PRNDL ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49781960248947144, 0.23763146996498108, 0.2645489275455475]" -39450, Better than csgo ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4617222249507904, 0.2659463882446289, 0.2723314166069031]" -33980, Ok thank you nanbaaaa ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5719428658485413, 0.16878506541252136, 0.2592720687389374]" -42785,Or I mean dom me ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4682914614677429, 0.25620052218437195, 0.27550801634788513]" -59059, Thanks girls! We dont owe ya one - cause we WON! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49664241075515747, 0.2281166911125183, 0.275240957736969]" -32989,Pass ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4316079914569855, 0.29147014021873474, 0.2769218683242798]" -24479,Pictures of me 2 years ago ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.437048077583313, 0.33093151450157166, 0.23202036321163177]" -15806,Yikes ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43126609921455383, 0.2859717607498169, 0.2827621102333069]" -66675,That moment you realize everything was a lie ; a lie everything was. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.5006139874458313, 0.25134822726249695, 0.24803774058818817]" -27435, rt x rt fam. please rt and fave all the link in the thread please I'll help you too. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6252136826515198, 0.14874909818172455, 0.22603726387023926]" -36032, Oh I know you would,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5284494161605835, 0.21586120128631592, 0.255689412355423]" -10922, gave me the idea to play GuitarHero At the same time it's the supreme champion ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41471001505851746, 0.3137177526950836, 0.2715722620487213]" -14099, First of all “you aint shit” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4257678687572479, 0.315593421459198, 0.2586387097835541]" -27104," I mean, now that I am NOT incredibly sleep deprived I suppose that makes sense ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😧,"[0.3657298982143402, 0.36149388551712036, 0.27277618646621704]" -60311, My almost midnight thoughts tbh while looking at my merch and albums ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4533490836620331, 0.2591302990913391, 0.2875206470489502]" -64423, Weekly idol too?? Ah i cant wair for their 2x speed dance and random play dance ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.42936971783638, 0.3160441219806671, 0.2545861601829529]" -5187,That girl said a he and a home wrecker,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43292170763015747, 0.32079997658729553, 0.24627821147441864]" -43030, Soo sexy!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6244344115257263, 0.165533185005188, 0.2100324034690857]" -34686, It’s on commercials rn I’ll periscope in a tiny bit when it’s back ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.389570951461792, 0.31822729110717773, 0.2922017574310303]" -562,tryna only take the stairs at work because i’m a lazy poo... probs shouldn’t have started when i’m ill ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😴,"[0.35765618085861206, 0.3889393210411072, 0.25340452790260315]" -60966,I don’t feel well ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.41536346077919006, 0.33844441175460815, 0.24619215726852417]" -56328, duuuude you fucking wrote that... YOU WROTE THAT ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.40495961904525757, 0.34640711545944214, 0.24863329529762268]" -5706,Hella don’t wanna goto work ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.40362027287483215, 0.3493463695049286, 0.24703340232372284]" -24225,"He sang three songs. ""Weak"" by SWV. ""Use Me"" by Gucci and 2 Chainz. ""Glory to the Newborn King"" ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46476924419403076, 0.2638542056083679, 0.27137652039527893]" -23530,We finally have a HIJAB emoji!!!!!. Will Islamophobe start boycotting emojis now? . ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.49294519424438477, 0.2620820999145508, 0.24497269093990326]" -27840," Any day now.. but, supposedly the 9th!",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5403271913528442, 0.2176922708749771, 0.24198050796985626]" -64956,Dave East is so fine he really be having you outchea thinking you ready to be a stepmother ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46441730856895447, 0.29292914271354675, 0.24265360832214355]" -40678,Werpa kays Sir Dave Norms bay ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5431416630744934, 0.20389479398727417, 0.25296351313591003]" -64421,This is me and when we do something so stupid but we always be rooting each other on ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.462851881980896, 0.2753451466560364, 0.26180300116539]" -61632,"This man told me his ex wife bit his testicles and he was in so much pain, he was felt like he was going blind. he doesn't like oralsex now",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.416049987077713, 0.3156103193759918, 0.2683396637439728]" -17912,I’ve watched this more than 1756 times ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4248366057872772, 0.3257986009120941, 0.24936480820178986]" -28499, this is you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -5048,Tim Sherwood who got sacked by Spurs & relegated Aston Villa is absolutely sayin Spurs are bigger than Real Madrid.... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5128416419029236, 0.20564807951450348, 0.28151029348373413]" -3729, don't be raging cause your in the relegation zone son and I'm goi… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4244709014892578, 0.31736382842063904, 0.25816527009010315]" -27678, lie again,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49139413237571716, 0.24793319404125214, 0.2606726586818695]" -63254, I MISSED THIS ONE SOMEHOW I LOVE HER SHE'S MY WIFE SHE LOOKS SO GOOD IN YOUR STYLE ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5373711585998535, 0.22435496747493744, 0.23827388882637024]" -55936,"I got her, she got me so what’s the problem ❤️ ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5357524156570435, 0.21426649391651154, 0.2499810755252838]" -36788,Lol never fails ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4630207419395447, 0.24531443417072296, 0.2916647791862488]" -38949,"This nigga Jay got a Pitbull named Featuring Ludacris imagine the introduction, ""Hey this is my Pitbull featuring Ludacris"" ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5089974403381348, 0.24984291195869446, 0.24115966260433197]" -65795, a question that needs answers ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.41920605301856995, 0.3119179308414459, 0.26887601613998413]" -9289,"boyyyyyyyyyy, yall niggas really think yall can fool a grl huh‍️",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.41447678208351135, 0.28860342502593994, 0.2969197630882263]" -20999, Until you’re taking care of them ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4902675449848175, 0.2840626835823059, 0.2256697565317154]" -65944,Q: Why was 6 scared of 7?A: Because 7 8 9.I died when I read that. I’m such a child! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40455368161201477, 0.30589795112609863, 0.2895483672618866]" -30277, Astro?! Yayayay!!!! Thank you so much,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6442794799804688, 0.13273493945598602, 0.2229856252670288]" -25419, Lol ain’t nothing but a gthang. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4231984615325928, 0.2727338671684265, 0.30406761169433594]" -13140,SHAWN! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5070706605911255, 0.23741479218006134, 0.2555144727230072]" -32772, Bitch you nasty asf ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4183318316936493, 0.31200531125068665, 0.26966291666030884]" -7972,Fall in with NAUGHTYKITTYX - ready… ⬅️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.44040176272392273, 0.3384905457496643, 0.22110770642757416]" -54607, that’s made me splutter my café Nero latté everywhere. Brilliant.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4978801906108856, 0.23280008137226105, 0.26931971311569214]" -60815,charlotte is such a good anime i still can't move on from it,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5268769264221191, 0.21930497884750366, 0.2538181245326996]" -9547, this has actually never happened to me. Who disappointed you tsala?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4367137849330902, 0.28606122732162476, 0.27722489833831787]" -36396," haha thats for sure, pitchers out here producing on offense what ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙊,"[0.5902699828147888, 0.15095733106136322, 0.25877273082733154]" -59715,I’m feeling very adult like Bc it’s 11/02 & all my bills this month are paid! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.42388367652893066, 0.3113679587841034, 0.26474836468696594]" -56721,That fall though omg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.49386441707611084, 0.27277421951293945, 0.23336133360862732]" -9914,I really want the 11-12 France away kit ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.44382309913635254, 0.3168337643146515, 0.23934319615364075]" -3351,When doesn’t love me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47537797689437866, 0.25440695881843567, 0.27021512389183044]" -17883,Get dressed in the car time,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5049888491630554, 0.2431563436985016, 0.251854807138443]" -24090,why is finn such a sellout for mayonnaise ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46196117997169495, 0.2764834761619568, 0.26155534386634827]" -12252, Just look at the mischief in those faces lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.44088974595069885, 0.2766954004764557, 0.28241488337516785]" -374,Dc this weekend ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.557618260383606, 0.22067369520664215, 0.22170807421207428]" -41811,"I Love Her, Privacy, Only 4 Me & Pills & Automobiles by far r my favs ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6343129277229309, 0.13996578752994537, 0.2257212996482849]" -62477,I need my nails done ASAP!!! ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.39741164445877075, 0.34212204813957214, 0.2604662775993347]" -6901, When thats supposed to be its purpose even lawd ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😱,"[0.4433080852031708, 0.2704640328884125, 0.28622788190841675]" -60142,More than 5 teachers from my highschool have been arrested for being pediphiles in the past 3 yearsTHATS NOT OKAY,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5154497623443604, 0.2417662888765335, 0.2427840232849121]" -6566,Shin chan about didn't miss it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3784044682979584, 0.3859022259712219, 0.23569335043430328]" -59132,YOURE RUINING IT FOR EVERYONE SHUT UP ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40165960788726807, 0.3250065743923187, 0.2733338177204132]" -35587, She was guh,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -66111, Thank you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6514566540718079, 0.11697802692651749, 0.23156534135341644]" -31807,Hopefully we can get the whole rave fam together for seven lions ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.460756778717041, 0.27256157994270325, 0.26668164134025574]" -68191,Mother bads ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5331071019172668, 0.2193014919757843, 0.24759137630462646]" -8518,"happy 50th birthday to my hardworking, loving, and amazing kickass popo. i love and miss you. ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6649168133735657, 0.1383686363697052, 0.19671452045440674]" -33853,sounds great.. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6145232915878296, 0.143682599067688, 0.24179409444332123]" -46104,I hate being sick all day rha ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.390616774559021, 0.3648448586463928, 0.2445383369922638]" -10599,Basically ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43367570638656616, 0.29586726427078247, 0.27045708894729614]" -44772,All bs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.568943440914154, 0.20311510562896729, 0.22794143855571747]" -3759,Can you believe this trappy cunt???... .. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43488630652427673, 0.3082471489906311, 0.25686657428741455]" -40925, They save that for New Years bruh,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41497334837913513, 0.32971277832984924, 0.25531384348869324]" -25371,Why do I have to feel like a Cow tail when I eat a Cow tail,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.3862062990665436, 0.34199804067611694, 0.27179569005966187]" -59571,Just casually failing Bio.It’s fine.. I’m fine. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6287537217140198, 0.14694035053253174, 0.2243058979511261]" -18863,I hope to meet you all soon! Especially and ! You 3 are my FurHeroes!! ❤️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5742177963256836, 0.1964980512857437, 0.22928418219089508]" -27628,You better be going to Dick’s ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41311293840408325, 0.30244600772857666, 0.2844410538673401]" -54615,They earn to much rack to be playing like a FIFA glitch ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4849696755409241, 0.2602020502090454, 0.2548282742500305]" -55440,It was a new update or something? seeing hella squares with question marks,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43009141087532043, 0.28964439034461975, 0.2802642285823822]" -66974, Hahaha thanks man! But I just do them for fun la! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5259485244750977, 0.21119658648967743, 0.2628548741340637]" -17443, I might have to hit up this alex dude because i have one due too,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4935015141963959, 0.24934950470924377, 0.2571488916873932]" -53849, Oh! Hahaha but It Ends With Us was really really good and empowering tho ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😵,"[0.42080602049827576, 0.30731987953186035, 0.2718740701675415]" -10170,Bruh twitter too damn funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4222448170185089, 0.284024178981781, 0.29373103380203247]" -24289,WHAT HAS MY LIFE BECOME? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5176920890808105, 0.23277805745601654, 0.24952980875968933]" -52068, right neowwwww,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4654039740562439, 0.264005184173584, 0.27059081196784973]" -28412,"FINALLY, YES!! ASTROS ARE WORLD SERIES CHAMPS ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5119264721870422, 0.24839197099208832, 0.23968161642551422]" -66037, drink water,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4682861268520355, 0.2792834937572479, 0.2524303197860718]" -55018,"Kenta and Donghan are so adorable, help ♥️",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.45165592432022095, 0.3062518239021301, 0.24209223687648773]" -36204,I feel so tired with my life ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😓,"[0.36633506417274475, 0.4345115125179291, 0.19915351271629333]" -45417,India defeats New Zealand. NZ drop down from No. 1 position in ICC T20I rankings. Pakistan move up the No. 1 position. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4602508246898651, 0.2698741853237152, 0.2698749601840973]" -35067,Ang cute haha they're listening a lullaby song ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6451253294944763, 0.1337570995092392, 0.22111749649047852]" -42135, Lol ahh not us fam,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48188185691833496, 0.24277418851852417, 0.2753438949584961]" -40961,actually no my original tweet is a lie. i hate seeing people cry. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.496135413646698, 0.24700744450092316, 0.25685709714889526]" -54980, If he did we'd have a wedding on our hands! Getting silly now....,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42938271164894104, 0.2942553162574768, 0.27636197209358215]" -11226, She ugly asf,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4517837166786194, 0.28902432322502136, 0.2591919004917145]" -39403,"Damnnn I didn’t even realize I was scheduled tonight, I feel like such a hoe ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.4105952978134155, 0.33101314306259155, 0.2583915591239929]" -22378, Yikes she being with you still,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43126609921455383, 0.2859717607498169, 0.2827621102333069]" -67905,Ordering the tackiest diamonte covered dress for the weekend and finding out the party is a themed ‘Metal Ceilidh’ spot the scheme wain,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4656986892223358, 0.2762008607387543, 0.25810056924819946]" -58097,Chuck E Cheese is lit sis oh nooooooo ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4621524214744568, 0.2909960448741913, 0.24685150384902954]" -1177,Noooo seems presale tickets for in Amsterdam is already sold out hope I can score some Friday ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.48994672298431396, 0.24389319121837616, 0.26616010069847107]" -53, Omg don’t it’s scary all I know is that I do not want to come back to cannock lmao,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4179151952266693, 0.33030036091804504, 0.25178438425064087]" -24310,OH MY GOD ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5751411318778992, 0.18262821435928345, 0.2422306090593338]" -16316,Still love my Dodgers ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙉,"[0.507245659828186, 0.21059353649616241, 0.28216078877449036]" -54978,"It's ok if you missed, you're still the best ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.4311487674713135, 0.30928662419319153, 0.2595646381378174]" -66858, No idea but it's deffo STEPPENWOLF getting Whipped ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42559605836868286, 0.30225151777267456, 0.2721523940563202]" -42987,I love her outfit ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5791476368904114, 0.19566991925239563, 0.22518247365951538]" -22000,Goals ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.627300500869751, 0.1650269478559494, 0.20767255127429962]" -39468,The nerve of them ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4233801066875458, 0.3168160617351532, 0.25980374217033386]" -20736,"As much as you lie, you'd think you would be better at it ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47347572445869446, 0.2541840672492981, 0.2723402678966522]" -3931, he say he dey church so we de chok,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5081734657287598, 0.22046740353107452, 0.27135923504829407]" -48146,"god I’ve literally havent felt this sad in forever, I do not want to leave omfg",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38834723830223083, 0.3708531856536865, 0.24079962074756622]" -33465,None drinking ass niggas. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4548395276069641, 0.26886212825775146, 0.2762983739376068]" -6384,Atleast Madrid fans will celebrate Penaldo scoring,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4242103695869446, 0.2845883071422577, 0.29120132327079773]" -20411,Girllll ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😺,"[0.6142064332962036, 0.179633229970932, 0.20616032183170319]" -35916,Looking forward to doing mom stuff with my friends,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46334221959114075, 0.24986934661865234, 0.2867884039878845]" -39197,That foul on Oubre is laughable ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47375279664993286, 0.26312267780303955, 0.26312455534935]" -25693," Everybody swear they hate it, yet I’m still seeing “stinka ” everywhere",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.4183489680290222, 0.33014169335365295, 0.25150930881500244]" -34332, Lmao girl it’s too late now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45891308784484863, 0.2747480869293213, 0.26633888483047485]" -896,Wishing your presence rapid ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😥,"[0.4356970191001892, 0.31546878814697266, 0.24883422255516052]" -58600,New smiley updates on whatsapp tho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5236852169036865, 0.21498537063598633, 0.26132938265800476]" -40469, thanks abby but it’s all you,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5637491941452026, 0.18799914419651031, 0.24825167655944824]" -58826,Seth Rogen perfect fit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6531971096992493, 0.14672435820102692, 0.2000785917043686]" -53649, Happy birthdayyyyyyyyyyy❤️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6235702037811279, 0.13543589413166046, 0.2409939169883728]" -605, I know I saw him he is pretty cool though,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.5891071557998657, 0.16843080520629883, 0.24246205389499664]" -3206," Good luck tonight ,hope it goes well, hopefully I’ll get to see this movie ❤️",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5070797204971313, 0.22552141547203064, 0.267398864030838]" -9993,i love art ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5724141597747803, 0.18496659398078918, 0.24261927604675293]" -4268,i need to watch Miles Teller in thank you for your serviceoh & you look like john cusacks lost son ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.4332965016365051, 0.31417229771614075, 0.2525312602519989]" -4815,COME ON YOU SPURS!!!! In dreamland ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.555118203163147, 0.20708683133125305, 0.2377949208021164]" -38717, Thank you beauty!☺,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😽,"[0.7192621827125549, 0.10523831844329834, 0.17549951374530792]" -1468," Who's talking who...Ur too famous Fam...Ur tweet really that powerful...Jst like our Sehun ""only scar""...Idk wht even OMG...",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46029478311538696, 0.2774260938167572, 0.26227912306785583]" -33239,Uhmmm.... k ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -25680,"My grandma said my ass too friendly I got my favorite front desks saying ""pasito pasito "" when I walk in the docs office ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.553301215171814, 0.21154549717903137, 0.23515333235263824]" -8261,Ken has turned heel!!!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46848833560943604, 0.2749570906162262, 0.256554514169693]" -554,My body oil be staining my clothes. I just stopped caring ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.3733481168746948, 0.3419575095176697, 0.2846943438053131]" -63301,The comments ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4496144652366638, 0.2834036648273468, 0.2669818103313446]" -52229, Intimidated? By me? *shock* ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48419731855392456, 0.2346353530883789, 0.28116729855537415]" -56972,since when the fuck do pineapples symbolize that?? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4449709355831146, 0.27948474884033203, 0.2755444049835205]" -14740,I’m finna treat myself to some Texas Roadhouse. It’s been too long,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.40406253933906555, 0.35473260283470154, 0.2412048876285553]" -65486, Dora went from Nick Jr to Nick At Night ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5503292083740234, 0.21055638790130615, 0.2391144037246704]" -9199,I started crying last night bc a guy tried getting me to leave with him. S/o to everyone who calls me a hoe though. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40538012981414795, 0.32922178506851196, 0.2653980851173401]" -63053, He was trying so hard to find answer other then the Eagles are the best team ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44963377714157104, 0.27022916078567505, 0.28013700246810913]" -29184,Why did you nerf my visage ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.4486556351184845, 0.2854411005973816, 0.2659032344818115]" -40603, ohhhh goshhh!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.45770397782325745, 0.3041651248931885, 0.23813095688819885]" -37680,Will always be funny asf don’t underestimate the quiet ones ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4392344355583191, 0.28773802518844604, 0.2730275094509125]" -17326,"I told her my ex texted me and she like “tell me the scoop” I’m like wtf bitch say chisme, now that’s all she saying",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4278547763824463, 0.3034684956073761, 0.2686767280101776]" -38319,I got goosebumps watching this ❤️ I for sure need to see RUSS ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.49999934434890747, 0.23849348723888397, 0.261507123708725]" -15982," Your face, you know. Not that I'm complaining because I'm having fun as well 크크크크킄 un. . . . . How com… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4581197500228882, 0.28562667965888977, 0.25625357031822205]" -35567,Damn ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.44135117530822754, 0.2966989278793335, 0.2619498670101166]" -2669, Wow! Never heard of this but surely you are the lucky one iqeen omg Allah akbar ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5657481551170349, 0.19659028947353363, 0.23766164481639862]" -14024,He died a little ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.45097482204437256, 0.2734145224094391, 0.27561065554618835]" -1572, turtle ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5152125358581543, 0.2414093166589737, 0.24337811768054962]" -17597, I want in,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.42200928926467896, 0.3739554286003113, 0.204035222530365]" -23219,"So I just finished (yes, I finished it quickly on purpose) and I’ll just say I’M IN TEARS ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4173751473426819, 0.33757853507995605, 0.24504628777503967]" -40336,"I'll introduce you to Bob, the stylish dog ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44273367524147034, 0.26543816924095154, 0.2918281555175781]" -38548,oh my god ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5751411318778992, 0.18262821435928345, 0.2422306090593338]" -39934,This killed me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4335933029651642, 0.3035736680030823, 0.2628331482410431]" -66380, lemme know if i need to write a letter to your boss explaining why ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4173661172389984, 0.30237823724746704, 0.28025561571121216]" -26915," Liam is joining the protest. Oh boy, Bill is gonna love this!! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5253931879997253, 0.21335037052631378, 0.26125645637512207]" -57152, Cutest damn bee I've ever seen ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.3971641957759857, 0.3407003879547119, 0.26213544607162476]" -52322,vColor.bgra ;\The Dailyr Render \ Unity 5Oh man! PS path can to 3dsmax splines ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.487851083278656, 0.2605733871459961, 0.2515755891799927]" -6410,...and you thought students ray malipay pag way klase? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4741212725639343, 0.2799341678619385, 0.24594448506832123]" -24686,My son doesn’t even know...he y’all too much,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3889530897140503, 0.34753209352493286, 0.26351478695869446]" -52022,Thank you for blessing us with this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5620412230491638, 0.19389575719833374, 0.24406301975250244]" -12398,How did it go? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4486556351184845, 0.2854411005973816, 0.2659032344818115]" -61382,Hello November! The right kinda weather for getting the log burner going ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.5171580910682678, 0.24756518006324768, 0.2352767288684845]" -68646, SOME PEOPLE SAID I'M FAT AND YOU SAID I'M SKINNY? ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.44695568084716797, 0.2780965566635132, 0.27494779229164124]" -21198, Oh boy❤️❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5218513011932373, 0.22838932275772095, 0.24975937604904175]" -52370,Forget the bunny costume. This shit won Halloween. ‍️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.45410436391830444, 0.2576797902584076, 0.28821587562561035]" -11315,"I love how I clicked on this tweet notif like I click on my moms texts, right away. loving Niall since day 1 ❤️ ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.49555984139442444, 0.24959835410118103, 0.25484180450439453]" -47101,Why do guys always come up to me and say “kaleb you can’t guard me bro” like why??,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44568613171577454, 0.2869836986064911, 0.267330139875412]" -49229, Please ? ❤ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -18658, The orgasms....,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -13579,When you can literally tell your friends anything ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",🙇,"[0.4135890007019043, 0.2951265871524811, 0.29128438234329224]" -47694,I see you Sid having a suck n a munch on the tie-up toy! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙇,"[0.44510766863822937, 0.28390270471572876, 0.2709895670413971]" -19732, yay ahahha so happy for you! did the screen recording works now? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4539268910884857, 0.27365270256996155, 0.27242034673690796]" -49261,This is EVERYTHING!!! UGGGHHH! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -52580," Oh, I'm excited!!! Extra motivation + I get to read your stuff! ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6147404313087463, 0.16603347659111023, 0.21922606229782104]" -68375,Kayness ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -58309,My baby girl gets her ears pierced this month,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5010642409324646, 0.2366565465927124, 0.262279212474823]" -36681, Ey waley G! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5097498297691345, 0.2264520823955536, 0.2637980580329895]" -17789, That is so beautiful ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6271557211875916, 0.15021805465221405, 0.222626194357872]" -19926,November and I haven’t even bought one present for Christmas!!!!! Might sack it off this year ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.458620548248291, 0.272545725107193, 0.26883378624916077]" -21082, Thanks gio,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6531140804290771, 0.11856067180633545, 0.22832530736923218]" -42430,These 12 hr shifts are killing me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4758813977241516, 0.26445305347442627, 0.2596655488014221]" -25487, I agree.,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5157405734062195, 0.22331112623214722, 0.2609482705593109]" -6248,Dad’s heated seats are a blessing in this weather,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4722604751586914, 0.27578210830688477, 0.25195741653442383]" -20271,The bias and the bias wrecker ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5808237195014954, 0.18489336967468262, 0.2342829406261444]" -17502,Someone is OBSESSED with my ass ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😺,"[0.6061004400253296, 0.18786002695560455, 0.20603947341442108]" -42654,Wayback Wednesday to when this picture gave me legit hope and face. Now it just makes me sad of what might have b… ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.39548251032829285, 0.34090930223464966, 0.2636082172393799]" -36608,My pineapple ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.4425050914287567, 0.3127734065055847, 0.24472154676914215]" -63088,Somebody just snapped “San Mateo is so fuckin lit” LOLOLOL what dry ass city did you come from hun? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44800329208374023, 0.2954876720905304, 0.2565089762210846]" -63789, something nitas dad would do too,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4830569326877594, 0.26060277223587036, 0.2563403248786926]" -68194, Its morning ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.6049598455429077, 0.1669924557209015, 0.22804774343967438]" -52546, nah that's greedy,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.47335416078567505, 0.28780868649482727, 0.2388370931148529]" -5781,Have some respect for the player of the year,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5323559045791626, 0.2045142650604248, 0.2631298303604126]" -13811,...but I have to keep going ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4452521800994873, 0.31498268246650696, 0.23976515233516693]" -3090," . Good squad, best manager = success. Simple as.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5653682351112366, 0.17800118029117584, 0.25663062930107117]" -41663,Felicity already loves William so much.. really I'm fine ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.49583899974823, 0.25520846247673035, 0.24895253777503967]" -41309,basic pa more ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.6088562607765198, 0.1745835393667221, 0.21656018495559692]" -7554,Geez man practice makes perfect. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5818415284156799, 0.18472813069820404, 0.23343044519424438]" -60190,Maybe I'm ugly and just don't know it yet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4783371388912201, 0.2670482099056244, 0.25461462140083313]" -49994, yup yup ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6058089733123779, 0.1642044186592102, 0.22998662292957306]" -9886,"I’m like okay mom it was Kim K, Demi Lovato, and Desi Perkins that I saw and those bitches are twigs so ‍️",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.44962063431739807, 0.3105359673500061, 0.23984338343143463]" -18531, I'm laughing so I dam near well u know!!!!!!!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41494715213775635, 0.30223187804222107, 0.2828209400177002]" -14718,When my best friend don’t want to answer my call ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4569409489631653, 0.2923632264137268, 0.2506958246231079]" -4482,i just came to a new kitten,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.48034194111824036, 0.2741904556751251, 0.24546760320663452]" -31171, This entire convo has me dying you three need help hahaha,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.38746076822280884, 0.33450692892074585, 0.2780323326587677]" -5353, bruh how much money is getting paid by the Browns to defend them at every turn ?? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.42851942777633667, 0.30430471897125244, 0.26717591285705566]" -67610,Can we get season 3 already!?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.44547614455223083, 0.3262256681919098, 0.228298157453537]" -59995,don’t work tomorrow omm it’s goooood ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3686009645462036, 0.3908912241458893, 0.2405077964067459]" -8771,Aye how you deal with viral tweets everyday... this shit blowing me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4527800381183624, 0.27981889247894287, 0.2674010097980499]" -40090,@ me next time... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4657621383666992, 0.29946741461753845, 0.23477038741111755]" -54074, Scammers abi,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4739428162574768, 0.25556695461273193, 0.27049019932746887]" -10362,Let’s just acknowledge the fact that he brought the meaning of happiness back into my heart ❤️❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5210257768630981, 0.24256019294261932, 0.2364140897989273]" -48845," Ben ""A man like you"" pardi! ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4800622761249542, 0.2745455801486969, 0.2453920692205429]" -44988,Sadqay jaoun ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -53122,Christmas is almost here ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.5012550950050354, 0.25179481506347656, 0.246950164437294]" -37844, You were passed out at savannahs,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44557657837867737, 0.25813770294189453, 0.2962857186794281]" -22190,Don't HMU Tho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43535488843917847, 0.29289504885673523, 0.27174997329711914]" -18121, Lmfaaoooo... idk where y’all going but y’all gotta get the hell out these chea mentions. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.42191341519355774, 0.3159949779510498, 0.26209166646003723]" -51972,I don’t know who you’re trying to fool,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.43931713700294495, 0.2712523639202118, 0.2894304096698761]" -16470,I need my hair and nails doneASAP!,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.427877813577652, 0.3413134217262268, 0.23080873489379883]" -36172,Mis pies ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4804409146308899, 0.2642725110054016, 0.25528663396835327]" -2426, Haha...I always have my sense of humour finely tuned. I see what you did there though...seps only agree with other seps...,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.487735390663147, 0.2435709834098816, 0.26869356632232666]" -9106,My nephews pirate costume ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5388211011886597, 0.20914076268672943, 0.2520380914211273]" -10589,I want fish & shrimp fried rice from Que's ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.43680837750434875, 0.2947133779525757, 0.2684781849384308]" -23319,Swear every time I see a black Altima I cry a little inside cause I know it ain’t Richie ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.41367706656455994, 0.29764994978904724, 0.2886729836463928]" -50892, Right! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4654039740562439, 0.264005184173584, 0.27059081196784973]" -35914,Forgot my makeup wipes after work and now I’m at the gym with a full face I feel so gross,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😥,"[0.4402964413166046, 0.31012600660324097, 0.2495775818824768]" -39476, Please,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -39084,6 beautiful font families from Nicky Laatz for ONLY $23! That's an awesome deal!! via ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4769129157066345, 0.26955917477607727, 0.25352799892425537]" -13779,"Autumn is well arrived, and the colors are beautiful ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5525187849998474, 0.2098594754934311, 0.23762179911136627]" -18801, i will suck your big toe if you do it. after a nice hot day at work with toe jam and everything.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5515180230140686, 0.19649384915828705, 0.25198811292648315]" -2636,More like 10 ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4378310739994049, 0.3177851736545563, 0.2443837672472]" -1394, That’s what I was playing on ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4852145314216614, 0.2658250033855438, 0.2489604651927948]" -30875, Nigga do you know who I am? Of course I have ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4756094217300415, 0.24704797565937042, 0.2773425579071045]" -23781, Fuck off bacon you stupid cunt. What a coincidence it was a Muslims who's feel off ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4837968647480011, 0.2620317339897156, 0.2541714012622833]" -24195,This was the best wine I’ve ever had in my life and I️ don’t know where I️ can even find it. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.45019829273223877, 0.28411930799484253, 0.2656824290752411]" -29137, How you say “Lmaoo” you going to hell french ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4437737464904785, 0.2937626540660858, 0.26246362924575806]" -25529, yartny ice cream ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6481525301933289, 0.15580210089683533, 0.19604536890983582]" -38342, That's sad ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😫,"[0.3345559239387512, 0.4962402582168579, 0.16920387744903564]" -41002,Wanna take a nap again. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😓,"[0.38608765602111816, 0.4272066354751587, 0.18670573830604553]" -58755,This is really me tho ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.4067445695400238, 0.31598126888275146, 0.27727416157722473]" -35969, Princess Tutu All of these are good ~ ((tho I haven't seen Precure or SM much),😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.47504884004592896, 0.24414443969726562, 0.28080669045448303]" -58989, That's so rare nowadays ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.471933513879776, 0.2615288496017456, 0.2665376365184784]" -59203, Girl I told you! I don't have one bc my credit would be like -300 if I did ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4024100601673126, 0.3138059675693512, 0.28378403186798096]" -64161, I LOVE YOU FOREVER!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5036122798919678, 0.23806464672088623, 0.2583230435848236]" -43174, I don’t even wanna know,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4085080325603485, 0.37206804752349854, 0.21942389011383057]" -32632,This is so funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48540258407592773, 0.23515063524246216, 0.2794467508792877]" -4299, My dad is not having Facebook absolutely not ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48311087489128113, 0.2404632419347763, 0.2764257490634918]" -37571,yoo why can’t people just get there shit together and grow the fucc up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5350106954574585, 0.23907706141471863, 0.22591224312782288]" -67554,"Happiest 17th Birthday to the sweet and quiet little sis (not so little anymore, I cant)...… ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4866078794002533, 0.2606949806213379, 0.2526971995830536]" -62319,Everyday ❤️ ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😹,"[0.44652390480041504, 0.2980552017688751, 0.25542089343070984]" -67494,Hate my life never allowed out again ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4546172320842743, 0.27137142419815063, 0.27401140332221985]" -42355, It died after I tweeted that thooo ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4064035415649414, 0.30605530738830566, 0.28754115104675293]" -34823,WHAT ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -65767,"I wasnt able to hear the medley last night bcs I have no signal. I LISTEN JUST NOW , SO ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.457563579082489, 0.29015102982521057, 0.2522854208946228]" -205," If the smile is coming at the expense of another, your partner for that matter... You warped female. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.499596506357193, 0.2248469740152359, 0.2755565047264099]" -25939, Damn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44135117530822754, 0.2966989278793335, 0.2619498670101166]" -27066," no one can articulate the way you can, Good Sir! Whoever doesn't love you is a douche-waffle ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.469872385263443, 0.257091224193573, 0.2730364501476288]" -68493, Common sense is called common but not for them. Save these souls Happy Halloween ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42476701736450195, 0.2950393557548523, 0.28019359707832336]" -45936,Emraan pls come online & wish me for my birthday Wishing from u is d best gift for me in this day ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.4192601442337036, 0.3272923529148102, 0.253447562456131]" -4626,the inconsistency of attitudes these two faced humans have. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4803434908390045, 0.2644278407096863, 0.2552286684513092]" -66282,"Restday, overtime. Let’s go! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5573869347572327, 0.213296040892601, 0.22931697964668274]" -62627," son, go headddd ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3869514465332031, 0.37062883377075195, 0.2424197793006897]" -18989,Attention seeker 2.0 ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5735102295875549, 0.1764162927865982, 0.25007346272468567]" -49783,My niece when she was some kind of innocent and a baby ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5683783292770386, 0.1979324370622635, 0.2336893081665039]" -4826,Aww thanks ☺️ and I know I deserve the best because I AM the best ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5149427652359009, 0.20196281373500824, 0.2830943763256073]" -35910, I think Kushner may already be cooperating with FBI ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5010729432106018, 0.24607472121715546, 0.2528524398803711]" -59519, oh yes...,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5818809270858765, 0.1892232447862625, 0.22889576852321625]" -50655,Absolutely outstanding tweet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5827013850212097, 0.16450752317905426, 0.25279104709625244]" -65871,Hhh this one is in latin ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -28132,Lmaooo every dodger fan must be so mad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4564678370952606, 0.24661466479301453, 0.2969174385070801]" -22062,"Man my thoughts yesterday lmao @ job tho Shit b so borin i wish i had a job sometimes , i jus b needin company ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.41861197352409363, 0.31258177757263184, 0.26880624890327454]" -55860,Sweater weather by the neighborhood ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.43037712574005127, 0.3044683039188385, 0.26515457034111023]" -64014, why am I laughing so hard at this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48292526602745056, 0.26277050375938416, 0.25430426001548767]" -53788, New Month Uncle IloPlay me ft Why,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5804988741874695, 0.19731593132019043, 0.2221851646900177]" -52924, Shows if you’ve watched it or not ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43011435866355896, 0.32596778869628906, 0.24391786754131317]" -39803,Hot Fries and Ice Cream type of night. ☺️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5490599870681763, 0.22535710036754608, 0.22558295726776123]" -41642,How did all the fansites not miss Jimin's belly flash?? It was literally like a sec but omg everyone's so fast,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.4208703637123108, 0.33925220370292664, 0.23987744748592377]" -51760, Thanks ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6531140804290771, 0.11856067180633545, 0.22832530736923218]" -17179,My heart my heart! ❤️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.479969322681427, 0.32215702533721924, 0.19787372648715973]" -6277," man nahhh I’m coo, idk why bitches be tryna threaten me.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43986356258392334, 0.31163594126701355, 0.2485004961490631]" -42693,This is me. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -36911, Cause they bust asses okay i get it real smooth buddy,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.482898086309433, 0.2615976333618164, 0.2555042505264282]" -44028,"I just wanna be happy all November no more worries, pain, tears, drama, lies, etc. ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.44694629311561584, 0.31193384528160095, 0.24111980199813843]" -14472,Me right now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4654039740562439, 0.264005184173584, 0.27059081196784973]" -26178, He looks like a mini calf ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.4561239778995514, 0.293416291475296, 0.2504596710205078]" -12346,can't wait to hear this live in December ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.471110999584198, 0.2880766987800598, 0.24081234633922577]" -30191,Aw I remember I made my Twitter in my Econ class in hs ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.46618813276290894, 0.2486230432987213, 0.28518885374069214]" -21694, FfsI think I died Straight away Monday morning as it looks,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4884781539440155, 0.24991053342819214, 0.2616112232208252]" -35965,I'm ded i called chris zublik when i was plastered last night I always call random people when I'm goneee,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5147380232810974, 0.2354969084262848, 0.24976509809494019]" -18628," Yes, Mr. Collins? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49172741174697876, 0.24942123889923096, 0.25885137915611267]" -30653, lmao sucks. When are the riots starting lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4250175952911377, 0.27361834049224854, 0.30136412382125854]" -66381, Why im laughing its cute but weird to ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4763188660144806, 0.2594006657600403, 0.2642805278301239]" -17007, huhu kaya mo yan chloe! Hope you have a great day today ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4822867214679718, 0.24390268325805664, 0.27381059527397156]" -64588,Pinkpanda kudu nnton bominya lucu Eps 8 Because this is my first life. No sub mabok dah bakor ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4943166673183441, 0.2522677481174469, 0.2534155547618866]" -37561, your dumb ass was toooo weak when you seen that.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.45019984245300293, 0.27452167868614197, 0.2752784192562103]" -12667,So many damn games so little time ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.47810959815979004, 0.27184969186782837, 0.250040739774704]" -29691,Damn people be really seeing my tweets but don’t even like that shit smh,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3918098211288452, 0.32508543133735657, 0.2831047773361206]" -10154, Big shout out to Brandon King Smith for bringing the to the DANNY PHANTOM… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.5874726176261902, 0.1831146478652954, 0.2294127345085144]" -3011,Yesss I can’t wait to pick her up tomorrow ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.498971551656723, 0.2611699104309082, 0.23985843360424042]" -48452, Somebody up’d a boo on a nigga ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4668501317501068, 0.28749552369117737, 0.2456543892621994]" -67829,Same ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -51597,I got the cutest little Indian ever ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.5281131863594055, 0.2447526901960373, 0.22713415324687958]" -29494,"This Halloween TAKES THE CAKE for best yet! Riddim Shore house w family, bad decisions & rad memories. I love you all till next time LA.",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.45662835240364075, 0.2897314131259918, 0.25364023447036743]" -57953,Drinking a sprite and eating a Oreo mvFlurry wtf,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4361417889595032, 0.2998145520687103, 0.26404374837875366]" -42818,i was a football player for halloween,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5176965594291687, 0.23519349098205566, 0.24710999429225922]" -12984,I need some direction ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4054056704044342, 0.35556814074516296, 0.23902612924575806]" -22428,100% my reaction ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4588412940502167, 0.26049548387527466, 0.28066322207450867]" -21601,That night keeps replaying over over over ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😱,"[0.450898140668869, 0.2748972773551941, 0.2742045819759369]" -64835," I thought, both of you could share insights.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4398903548717499, 0.30106019973754883, 0.2590494453907013]" -38506,Hoseok all over my twitter help me,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.4130764901638031, 0.3124741017818451, 0.2744493782520294]" -1656,okay my theories somehow match the photos but my brain hurts so no more thinking ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46161088347435, 0.29608067870140076, 0.24230845272541046]" -7928, She requires 2 naps just to survive during the day ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5220045447349548, 0.22905555367469788, 0.2489399015903473]" -35223,you finally got your reading portion of the day ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5479083061218262, 0.23864027857780457, 0.21345137059688568]" -31175, That’s so kind of you Helen ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.5077349543571472, 0.24744975566864014, 0.24481521546840668]" -29342, Cavs are so trash,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42337045073509216, 0.28901317715644836, 0.2876163721084595]" -40631,but i guess i was too rude for a paragraph‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4611111581325531, 0.24840706586837769, 0.29048171639442444]" -62767,That hair ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.4641081392765045, 0.3359958827495575, 0.1998959630727768]" -57491,BABYSS ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -63738, The shits grosss ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.436571329832077, 0.28670534491539, 0.27672332525253296]" -7104, I know right!! Ready for a smooth showing of Insecure 2 ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41545185446739197, 0.319654256105423, 0.26489388942718506]" -18053,I asked my ex why he never pulled my hair during sex & he said because black girls snap about that shit. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.424055278301239, 0.3114195764064789, 0.2645251750946045]" -62448, so i walked in the crib and he said “bro kemba might be the best 2k player ever” ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.46207350492477417, 0.2516269385814667, 0.28629955649375916]" -63390," Scout, FYI - hide the towels! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5035803318023682, 0.23471440374851227, 0.261705219745636]" -52822," Springer is about to get married, McCullers already married (same age as me, 24) ....BRO! ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.45071396231651306, 0.27763795852661133, 0.271648108959198]" -55784,This thread ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5726985335350037, 0.17626304924488068, 0.25103840231895447]" -42353, Try again.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5754176378250122, 0.21014899015426636, 0.21443337202072144]" -10425,"he must be a ghost, cuz he’s my boo ❤️ ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.49111536145210266, 0.25994938611984253, 0.2489352822303772]" -61681, He looked so cool there ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.5906588435173035, 0.17910338938236237, 0.23023778200149536]" -36208,"Ugh Dodgers, wtf ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.44956231117248535, 0.2806224524974823, 0.26981520652770996]" -1210,Hello Everyone!! Happy Halloween!. It's was great !!! The costumes were amazing!!WHAT DID YOU WEAR??,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙋,"[0.6271634697914124, 0.1209566667675972, 0.25187987089157104]" -51709,Girllllll & somehow I make honor roll after finals ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4577730596065521, 0.27907049655914307, 0.2631564140319824]" -31999," Some kpop idols wear those to prevent their shirts from riding up while dancing, but I mean it’s probably boxers lololol ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47776883840560913, 0.236914724111557, 0.2853164076805115]" -65137, The Camera Man > The Fight ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5347055792808533, 0.20402933657169342, 0.2612651288509369]" -16106, have you SEEN this ?! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46340417861938477, 0.26083070039749146, 0.27576518058776855]" -30230, Everybody just hatin on the Dodgers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44901779294013977, 0.29753875732421875, 0.2534433901309967]" -53399, Beautiful piece.3 goons in Qatar & there’s foreigners everywhere,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5208578705787659, 0.2240581065416336, 0.2550840675830841]" -57675,Loll ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48424196243286133, 0.26339343190193176, 0.2523646354675293]" -34715, Because of Stranger Things,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3609178364276886, 0.3861329257488251, 0.2529493272304535]" -11259,Ayyyy wet pussy Wednesday ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47118890285491943, 0.2524182200431824, 0.27639293670654297]" -57149,"Spurs pick one, you either sabi or you don’t ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48946473002433777, 0.23553302884101868, 0.27500221133232117]" -29972,Drum skin design ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5808188915252686, 0.1874200850725174, 0.23176100850105286]" -50077, Props to you guys ! It was my boyfriend favorite totem ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5463491678237915, 0.2005407214164734, 0.2531101703643799]" -42816,Strawbin ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -32059,I my parents. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.39467719197273254, 0.36343079805374146, 0.24189196527004242]" -67492, Not quite sure this backs up ur claim kev ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.5957359075546265, 0.16455665230751038, 0.23970746994018555]" -32089, Well... I started a month into it. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.526442289352417, 0.23401165008544922, 0.23954607546329498]" -19900, The shit dreams/nightmares are made of ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.422441303730011, 0.322236031293869, 0.2553226947784424]" -56670, so precious!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😟,"[0.40759071707725525, 0.34295204281806946, 0.2494572252035141]" -4218,I want pizza,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4217038154602051, 0.3422803580760956, 0.23601588606834412]" -25937, I love him ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5326588749885559, 0.2183033674955368, 0.2490376979112625]" -20939,I met today and she’s just the best ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.4089905917644501, 0.3343900442123413, 0.2566194236278534]" -4328,Normal people drunk text their ex...I drunk texted my mama telling her how much I love her last night ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.44734251499176025, 0.27541089057922363, 0.2772466540336609]" -63697, ...and not that it matters but if you’ve seen lip injections you would know that clearly hers are natural. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4005635678768158, 0.30687215924263, 0.2925642728805542]" -56828, I peeps. You peeps. We all peeps. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42703956365585327, 0.29349446296691895, 0.2794659733772278]" -13475, Me every single time,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.518288791179657, 0.24589698016643524, 0.23581422865390778]" -46722," I’ll probably FaceTime you tomorrow, all high off the meds ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4110282063484192, 0.3122313618659973, 0.2767404615879059]" -15223," Well obviously. But us northerners are just better at coping with ""cold"" weather ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.44010382890701294, 0.31290507316589355, 0.24699105322360992]" -8487,cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😽,"[0.6716501116752625, 0.1477767378091812, 0.1805732101202011]" -22527,Even the famous females dogggin niggas ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42473307251930237, 0.28841593861579895, 0.28685101866722107]" -67327,Like a bad smell ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.42833051085472107, 0.31706181168556213, 0.2546076476573944]" -51595,My fava Be blowin me This man been listening to Candy Shop on repeat for like the past 10 minutes ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5613744854927063, 0.2120334506034851, 0.22659197449684143]" -32209,I hope those few ppl are faving this because they wanna be my Michele and not because they're stealing my idea ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.43200501799583435, 0.30807486176490784, 0.25992003083229065]" -35536,Can somebody help me.Anybody?.....no it looks like life isn’t for everyone ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.44423404335975647, 0.298379510641098, 0.2573864459991455]" -63017,"Girl, sis, wyd ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.42739373445510864, 0.3194977343082428, 0.25310853123664856]" -33984,You'll never follow me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙉,"[0.5165902972221375, 0.2131141871213913, 0.27029553055763245]" -24172,I just need the next three weeks to fly by because after that I’m gunna be off til the new year ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.42570996284484863, 0.3223000466823578, 0.2519899904727936]" -27363,"Correa proposing to his girlfriend during his interview But for real, was he carrying that giant rock around all game?",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😹,"[0.433810293674469, 0.3063081204891205, 0.25988155603408813]" -22661, Don't be a lil bitch old man grays gonna have to go at some point,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5320082306861877, 0.22756725549697876, 0.24042455852031708]" -41363,"my main memory from last night is a full on dramatic rendition of ‘you can’t stop the beat’ from hairspray, i was loving it",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4641258120536804, 0.2745940685272217, 0.2612800896167755]" -49136,You are amazing — Omg thank you sm! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.6035153865814209, 0.15855605900287628, 0.237928569316864]" -7775, guys look so obviously a lot of flames will be served this weekend right...don't be a bari ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.530335545539856, 0.22056813538074493, 0.24909628927707672]" -50696,Not everyone you lose is a loss ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46423888206481934, 0.27960652112960815, 0.2561546266078949]" -64337, Yea bro we only paying for it if they boo if they ain't yours then don't pull out no extra cash for them on babies ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4802696108818054, 0.24369113147258759, 0.2760393023490906]" -43929,Got one of those big box combos from Taco Bell cuz I was gonna save some for later but ummm... I kinda ate it all. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46156176924705505, 0.2858734130859375, 0.2525648772716522]" -44984,Rihanna rapping really fucks me up ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.39046812057495117, 0.3541398048400879, 0.25539201498031616]" -5565,Waaab chill ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39944320917129517, 0.31571754813194275, 0.2848391830921173]" -7110,Welp... My keys are gone with my mom about an hour away ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.42426052689552307, 0.32460954785346985, 0.25112998485565186]" -33925,Even the music video of Love Story is so emotional but beautiful. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.6064139604568481, 0.18551917374134064, 0.208066925406456]" -26056,hayssss cutie forevs god of destruction ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.665211021900177, 0.13498754799365997, 0.19980138540267944]" -12527,ang cute nung Specialized Videotape Technology ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5618272423744202, 0.20182029902935028, 0.23635242879390717]" -61568,"smedium also, don't forget about us shit, Smedium booties matter too ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4456474781036377, 0.2865753471851349, 0.2677771747112274]" -66921, next question!... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4187683165073395, 0.30920836329460144, 0.2720232605934143]" -47715, Allah kare aap hamesa aise hi hanste rahobecause all i needed is your SMILE❤ najar na lge ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6610957980155945, 0.1223345398902893, 0.216569721698761]" -51285,"I will be damned Korea have Ohio like Red Dawn, we not going at ALL ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4714961051940918, 0.267350971698761, 0.26115289330482483]" -18110," Lol you got it yo, y’all have two nice players hopefully y’all make a playoff this year tho",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4715823233127594, 0.25864627957344055, 0.2697714567184448]" -27752, They had a mf nervous as hell ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43500447273254395, 0.3121233284473419, 0.2528722286224365]" -39626,"This nigga is 46 and vmail says ""Yo, what's going on, aaaaaw forreal..... nah I'm JP leave a vmail"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42871302366256714, 0.2906021177768707, 0.2806848883628845]" -28655,I can’t wait till I can get my own place and decorate for holidays ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.48202234506607056, 0.26935645937919617, 0.24862118065357208]" -19171,Detective Conan The Movie (R18) ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5149612426757812, 0.22670914232730865, 0.25832968950271606]" -42963,"Happy Birthday, Atty. Pretty!!! ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😛,"[0.6857786774635315, 0.10417798161506653, 0.21004332602024078]" -10622, I would do my child like this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.42822980880737305, 0.30538710951805115, 0.2663831412792206]" -63413,Matching with my son ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.41837358474731445, 0.32843533158302307, 0.2531910240650177]" -33759,Omfg is Jazmine singing during the Toni Braxton tribute?? That would be epic ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4003181755542755, 0.31388500332832336, 0.28579679131507874]" -30980,It feels like it's going to snow outside. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4246894121170044, 0.31479695439338684, 0.2605136036872864]" -18227, Ik still can’t believe we did it,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.39200136065483093, 0.3371641933917999, 0.27083441615104675]" -41086,"""that grill came from the mall""",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4436437785625458, 0.3102554678916931, 0.24610081315040588]" -4530,Just want to get today done and over with ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.40060698986053467, 0.3878205120563507, 0.21157245337963104]" -39085,The door-to-doors play themselves when they ask me if someone 18 or older is home. ✌,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45056769251823425, 0.2858523428440094, 0.2635800242424011]" -56633," true, people were just jealous because they thought you said that because you banged a flight attendant ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42837443947792053, 0.2940879166126251, 0.2775377035140991]" -20107,aw weak!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5170336365699768, 0.2209382951259613, 0.2620280086994171]" -14075," x? Pls & like mine too. Tysm Since this is a saved acc, I’ll & like using my main acc",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4731970429420471, 0.27063605189323425, 0.25616690516471863]" -68000,My sleep schedule is so fucked up bc of my job ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3684103190898895, 0.3856535255908966, 0.24593615531921387]" -13577, Me too! Making it tomorrow ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😓,"[0.3697003126144409, 0.423824280500412, 0.20647545158863068]" -35409,BRING KYRIE BACK TO CAVS!! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.40684664249420166, 0.29398950934410095, 0.29916390776634216]" -21021," I agree, let me be .",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5053069591522217, 0.23270487785339355, 0.26198816299438477]" -22070, Thanks honey! ☺️ I want to dress like this all the time now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5085725784301758, 0.26322096586227417, 0.22820647060871124]" -65478,he's a smart guy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4769567847251892, 0.23064908385276794, 0.29239410161972046]" -14419,Y’all need to stop this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4168968200683594, 0.32390037178993225, 0.2592027485370636]" -26774,This gotta be the funniest/realist thread EVER! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45941102504730225, 0.2526507079601288, 0.28793832659721375]" -33563,This guy a fool ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4755697548389435, 0.23078742623329163, 0.2936427891254425]" -13644,I’m so sick. Thanks pediatrics ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.41685184836387634, 0.326572984457016, 0.25657522678375244]" -46856, Yall are verified on snap?! whaaaat?! And y'all didn't tweet about it?!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.40018925070762634, 0.30103379487991333, 0.29877692461013794]" -68560, just finished it that ending huhu,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.37954023480415344, 0.36498722434043884, 0.2554725706577301]" -52400,I think this is her new jam ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5216005444526672, 0.21935191750526428, 0.25904759764671326]" -761," woooo' Ndumi making us feel like we don't have friends , ema tuu ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😵,"[0.3849528729915619, 0.35198140144348145, 0.26306575536727905]" -9458, This isn’t even the bad stuff ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.49807772040367126, 0.2537482976913452, 0.24817395210266113]" -43095,So pretty ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.5876620411872864, 0.17516782879829407, 0.23717015981674194]" -34615,if you don’t understand this tweet then you’re lucky ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48347848653793335, 0.2527530789375305, 0.26376840472221375]" -63985,wow okay the unintended pun ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5317545533180237, 0.21485738456249237, 0.25338801741600037]" -28794,Aye cheer updates what ya gonna tweet? YOU. JUST. HIT. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4715234637260437, 0.25709691643714905, 0.27137959003448486]" -21522,Morning ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙈,"[0.6049598455429077, 0.1669924557209015, 0.22804774343967438]" -39775, My fucking chest!! Stahhhhhp this omg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5434251427650452, 0.22938351333141327, 0.22719135880470276]" -55035, lmao now look at God he's showing off beybs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4676249623298645, 0.24135646224021912, 0.29101863503456116]" -45482, I’m hoping we are talking about the same tweet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4525207579135895, 0.2864846885204315, 0.260994553565979]" -10119, I can't wait for our session ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5848589539527893, 0.19680193066596985, 0.21833911538124084]" -37189, the truth,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4803270399570465, 0.24712088704109192, 0.27255210280418396]" -14230, I knowwwwwwww ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -26444,My roommate said going out in public with me is like sitting on a city bus (cuz we stop every 2 seconds) i died man,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39564552903175354, 0.34165170788764954, 0.26270270347595215]" -6464, Actually I don’t think that would’ve worked ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4340589642524719, 0.3079594671726227, 0.25798147916793823]" -33936, Thank you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6514566540718079, 0.11697802692651749, 0.23156534135341644]" -56878,"I have an exam tomorrow, bout to study tonight, at work & right before class ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😴,"[0.36551961302757263, 0.40524351596832275, 0.229236900806427]" -17322,One day ima play his music on the aux & T up I know he gone be dying,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.42469462752342224, 0.306885302066803, 0.26842010021209717]" -13951, LMAO I can imagine your face! she weird for that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43676188588142395, 0.27703481912612915, 0.28620320558547974]" -7508,no fr ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45593056082725525, 0.2873726189136505, 0.25669682025909424]" -2769,I’m dead ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4684408903121948, 0.2564046382904053, 0.2751544713973999]" -9560,"Was surrounded by all those hair stylists, screaming I'm Sylvia ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5070948600769043, 0.25045445561408997, 0.24245060980319977]" -20425,talking to ky is funny asf bc she think she knows every damn thing with her smart ass mouth. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4308391809463501, 0.27629056572914124, 0.2928701639175415]" -3413,Why is this me... oh wait I have no mans ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47107622027397156, 0.25685450434684753, 0.2720692753791809]" -5874,Enjoying being humiliated by a team we beat comfortably a few days ago ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4580993056297302, 0.27680689096450806, 0.2650938034057617]" -31676, too many friends is problematic,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4349643290042877, 0.2709672749042511, 0.29406842589378357]" -52652,TIL how to fry an egg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4143825173377991, 0.29579535126686096, 0.2898221015930176]" -38405,I think so din ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45665284991264343, 0.276114821434021, 0.2672322690486908]" -64216, I can’t wait to see you and again as well it’s been too long,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.4251679480075836, 0.3273200988769531, 0.24751196801662445]" -66070,Can’t wait for my post-lecture nap ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.45763349533081055, 0.29492780566215515, 0.2474386990070343]" -60536,Guys my godson is so adorable ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5519478917121887, 0.21087534725666046, 0.23717671632766724]" -21320,I hate me so much,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.42974814772605896, 0.3215846121311188, 0.24866721034049988]" -38645,Ohayou!!!2M and counting naaa STREAM! SHARE! Onegaii! ^_^ … ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.4849894344806671, 0.2532201409339905, 0.2617904245853424]" -66544, I wish people actually think I'm younger than my 16 yr old sister and I hate it lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.426239937543869, 0.32176685333251953, 0.25199320912361145]" -21022, How can I please my Master what lies should I spin tomorrow or do you think I can buy my soul back? when Trump's in prison,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4186989665031433, 0.31485453248023987, 0.26644647121429443]" -47048, I changed my name back I think this is gonna be a real chill month tho. We gonna get shit done in November.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4580192565917969, 0.2707556188106537, 0.2712251543998718]" -60218,Plz give us one more chance ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5434259176254272, 0.22954443097114563, 0.22702965140342712]" -2908,I need someone to love me as much as loves ❤️,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.49116453528404236, 0.268815279006958, 0.24002014100551605]" -55318, now thats the harry i remember,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5389623641967773, 0.19920694828033447, 0.2618306875228882]" -27293, Why would he... nevermind ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -20384, That’s not a question John ! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.457645446062088, 0.27527132630348206, 0.26708319783210754]" -7211,Finally able to make my mom watch PotO ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.4318785071372986, 0.3393927216529846, 0.22872868180274963]" -29956, he so fuckin irritating!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.43937841057777405, 0.2742195725440979, 0.2864020764827728]" -25852, Your ratings suuuuuuuuuuuuuuuuuuuck. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5085770487785339, 0.23956619203090668, 0.25185680389404297]" -6197," can we have a christmas films category soon,thanks!❤️",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5308564901351929, 0.22603769600391388, 0.24310582876205444]" -26812,I would eat this everyday ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😥,"[0.41968992352485657, 0.33241787552833557, 0.24789218604564667]" -37500, What an amazing news ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙈,"[0.5939087867736816, 0.17465874552726746, 0.23143240809440613]" -9155, Hahaha true!! I didn't notice that ! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39740410447120667, 0.32232463359832764, 0.2802712023258209]" -9493, I see your still taking cold medicine. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4335842430591583, 0.3312663733959198, 0.23514936864376068]" -43393, Sami and Lucas are giving me all the feels ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5167201161384583, 0.2341962307691574, 0.24908366799354553]" -39850,Every day is 1 day closer to being home nd I dont think you understand how freaking excited I am to finally have him back ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😥,"[0.44389867782592773, 0.3136720359325409, 0.24242934584617615]" -26931,Okay not to be dramatic but this is quite possibly the cutest thing I have ever seen in my life ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😱,"[0.4528459906578064, 0.2704574167728424, 0.2766965925693512]" -12738, oh my...,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5837457180023193, 0.18082338571548462, 0.23543092608451843]" -16891,Damn devin exposing folks ☠️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4669017493724823, 0.2683480679988861, 0.2647501826286316]" -11068,Rlly don't feel like crying today but my therapist always gets me to cry anyways ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.37593576312065125, 0.34693193435668945, 0.2771323323249817]" -48124," Aww, poor wittle baby.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.484697550535202, 0.25737378001213074, 0.25792863965034485]" -57713, Ohhhh snap! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43272674083709717, 0.3054257929325104, 0.26184746623039246]" -23614,BRUUUH ELLE PARS ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4152728021144867, 0.3293743431568146, 0.25535285472869873]" -55579, also how can I get you to notice me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.38615208864212036, 0.3521932363510132, 0.26165470480918884]" -40273, Thank you sir! Off we go ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6415899395942688, 0.12005411088466644, 0.23835594952106476]" -11030, listen I was gonna change my name too it but I don't wanna be judged ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4835633337497711, 0.28095561265945435, 0.23548106849193573]" -29331,omg this made me feel way better ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4169653058052063, 0.33033251762390137, 0.2527022361755371]" -2025, I know!!! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4706558287143707, 0.26230400800704956, 0.2670402228832245]" -23400," Aint nothing wrong with ghost writing, ask 90% of DJ's nowadays ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.411518394947052, 0.3111289143562317, 0.2773526906967163]" -52659, Your streams would be lit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4567055106163025, 0.2822190821170807, 0.2610754072666168]" -31980, LMFAO YOOOO I ain’t even look at the page yea. Idk what kind of sisters they are.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.4421461820602417, 0.2612646222114563, 0.2965892255306244]" -20203, what kind of dog is this? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.523518979549408, 0.22459283471107483, 0.2518881857395172]" -58456,IM FLIPPING OUT!!!!!! ❤️❤️ I CAN NOT WAIT!!!!!!!!!!! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4602815806865692, 0.3004666566848755, 0.2392517328262329]" -40783,I want French toast,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3934073746204376, 0.3757767379283905, 0.23081588745117188]" -58995,Happiness ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.618308424949646, 0.16195134818553925, 0.21974022686481476]" -34254, Bop ain’t got no damn sense what so ever. she dgaf. Tae is ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4233907163143158, 0.3011373281478882, 0.275471955537796]" -60458,i love seeing so happy it makes my heart so happy,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😼,"[0.5592731833457947, 0.19691701233386993, 0.2438098043203354]" -60472,I really don't listen to people when they tell me about myself like bitch you don't know why I am the way that I am (did that make sense?),😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4327811300754547, 0.3131992220878601, 0.2540195882320404]" -67703,All the time ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4657621383666992, 0.29946741461753845, 0.23477038741111755]" -25973,with lovely yasmin ❤️for reservation 01015598681 ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6093141436576843, 0.16450552642345428, 0.22618035972118378]" -29100,JUNGKOOK’s. PACKBACK AND A TROPHY INSIDE HIS BAG LMAOO I CANT I don’t know if I should cry or laugh ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙇,"[0.41366422176361084, 0.29700273275375366, 0.28933313488960266]" -49220, I swear man. It’s like he just realized how dumb he was ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.44100311398506165, 0.28849849104881287, 0.2704984247684479]" -60673, Bitches ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43500816822052, 0.3265426456928253, 0.23844915628433228]" -50867, no shame ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44545093178749084, 0.24452407658100128, 0.31002500653266907]" -11036, Thank you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6514566540718079, 0.11697802692651749, 0.23156534135341644]" -37902, Lou you fucking average cannot play in the major league you had to go to China to play so shut the fuck up,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43398815393447876, 0.29586443305015564, 0.2701474726200104]" -8286,It's Antigua Independence Day ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.546974241733551, 0.2170209139585495, 0.23600490391254425]" -21166,SHAMELESS IS BACK THIS SUNDAY ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4926242530345917, 0.27897146344184875, 0.228404238820076]" -65147, Lovely,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙈,"[0.6093141436576843, 0.16450552642345428, 0.22618035972118378]" -55310,surprise you're still trash ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4803374111652374, 0.23486654460430145, 0.2847960293292999]" -38066,I’m going k mart ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4577513635158539, 0.28961557149887085, 0.25263306498527527]" -19465,Fuck college ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39087575674057007, 0.32656151056289673, 0.282562792301178]" -53164,Draca-rice I'm dead ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4864930808544159, 0.24620240926742554, 0.26730450987815857]" -68549,I added a video to a playlist Scaring 5 year old during Halloween.... Being 18 year grow up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5330989956855774, 0.20991463959217072, 0.2569863498210907]" -13276, Interview in Chinese radio. Thanks for translating ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6304377913475037, 0.14038683474063873, 0.2291753739118576]" -50611,Nature & the Norfolk countryside very much inspire me & this evening's sunset was no exception. Just amazing! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5483244061470032, 0.21228213608264923, 0.23939348757266998]" -41681,"My is such a good baby , thank you God for such a wonderful kid ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.5897963643074036, 0.1627073884010315, 0.24749626219272614]" -8296, Yes saturday (11th nov),😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5470153093338013, 0.21194690465927124, 0.2410377562046051]" -66118,Gatwe side chicks and niggas ke di power bank tsa relationship ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.4434029757976532, 0.26935458183288574, 0.28724247217178345]" -53778," Don’t get the whole candy and drinking side of it, but the Pagan side is pretty good! ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4925840497016907, 0.2457423210144043, 0.26167359948158264]" -18428,CANT GET OVER HIS JELLY FACE IN THIS ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41523462533950806, 0.31844866275787354, 0.2663167417049408]" -20283,JAKEONDAXBOX wants to share a Clash Royale deck:just got ice wizard out of wooden chest ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😺,"[0.5958907604217529, 0.20020490884780884, 0.20390428602695465]" -16214,Biker's Cafe lateeeer. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.48455676436424255, 0.26123711466789246, 0.2542060613632202]" -31324,I'm so tired,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😫,"[0.3483191728591919, 0.4710444211959839, 0.18063637614250183]" -11605, Was all part of the plan ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42835938930511475, 0.28815996646881104, 0.2834806442260742]" -49182,STOP PUTTING JESUS IN YO BIO!YOU MAKING HIM LOOK BAD!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4693973660469055, 0.2719983756542206, 0.2586042582988739]" -13041,Cry me a river. Maybe karma is your bitch .... baby get on board or get lost! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45996907353401184, 0.2842938005924225, 0.2557371258735657]" -60632,Leaving Texas Tomorrow Is Gunna Be The Hardest Thing Ever ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.3995981514453888, 0.3464924991130829, 0.2539093494415283]" -40297, u can still try to beat him❤,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5623663663864136, 0.21089933812618256, 0.22673431038856506]" -31185,Hays ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5588406920433044, 0.20815670490264893, 0.2330026626586914]" -62140,I'm so hungry ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.37475764751434326, 0.40480318665504456, 0.2204390913248062]" -13204, // I thought you had it?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.4224437475204468, 0.3223302662372589, 0.2552260160446167]" -9151, who is her ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -40176,still cant move on to ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -61984, I was scared af when we were taking those Uber’s tbh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4429405927658081, 0.2818312644958496, 0.27522820234298706]" -13614, Hey pretty lady ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6260499358177185, 0.1527455449104309, 0.22120456397533417]" -28950,I ship a loootttt of on-screen tandemmssss. Damnnnnnn ittt. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.505170464515686, 0.232782781124115, 0.262046754360199]" -6388,Im doneeeeeeee ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.4396824836730957, 0.3232400715351105, 0.23707742989063263]" -31963,true ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙉,"[0.5208073258399963, 0.1997523158788681, 0.27944040298461914]" -42932, Sameee ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -3703, Lol wth no ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.4107544422149658, 0.3165948688983917, 0.27265065908432007]" -47237,BAD BAD BAD BAD BAD BAD BAD ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.46884527802467346, 0.30787697434425354, 0.22327767312526703]" -11111, friend kubird,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5509827733039856, 0.22404049336910248, 0.22497674822807312]" -58979,ESLint just got harsher,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.488153874874115, 0.27109494805336, 0.24075117707252502]" -27899, I’m ready for spring training ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.41459423303604126, 0.345628023147583, 0.23977768421173096]" -64814,Andre go to sleeeppp — Lol I am soon ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5072005391120911, 0.21952368319034576, 0.27327585220336914]" -30957,Deepika with the gang at alibaugh for SRK's bday PICS PLEASE ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.45183515548706055, 0.27846768498420715, 0.2696971595287323]" -46758,HAPPPYYYY BIHDAAAAAAYYYYYYY ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -59538,True asf ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4724236726760864, 0.2628770172595978, 0.26469922065734863]" -14545,Wait y’all the best part of it is he told me he was gone buy me another phone after they took my money,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3966752886772156, 0.328316867351532, 0.27500787377357483]" -25781,LMAO I PROMISED MYSELF ID NEVER CRANK LIL PUMP N THEN GUCCI GANG DROPPED ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4006531536579132, 0.30212637782096863, 0.29722049832344055]" -912, I've been warning of the 'great potato attack for years now! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4838762879371643, 0.25982898473739624, 0.25629472732543945]" -6601,"I love my friends kids but the more I'm around them, the more I realize I don't want any of my own ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4309592843055725, 0.3054691553115845, 0.263571560382843]" -66568,Ugh it feels like it should be Thursday ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.42164984345436096, 0.3294360935688019, 0.24891413748264313]" -2605,Where is Lebron’s reaction to the Kyrie riding solo commercial ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.41246867179870605, 0.2870703935623169, 0.30046090483665466]" -3303,cr7 playing D on Sergio Ramos you selfish fuxk ☠️☠️☠️☠️☠️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44410789012908936, 0.30314165353775024, 0.2527504563331604]" -32827, You’d probably be like “thanks. It’s about time” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5076358914375305, 0.23208178579807281, 0.26028236746788025]" -10933,I want to see him ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.42200928926467896, 0.3739554286003113, 0.204035222530365]" -46319,What a positive way to look at it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5313612222671509, 0.214296355843544, 0.25434237718582153]" -41596,"riding wit the heat on give me motion sickness , but it’s cold af ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4217117726802826, 0.31220126152038574, 0.2660869359970093]" -28343, My point! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5274619460105896, 0.2263897806406021, 0.2461482137441635]" -51225,"sounds just like me ""wya lil boy? drop some dick off"" my favorite line.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5061700940132141, 0.2361643761396408, 0.2576655447483063]" -25183,dice game was shweet da come up was real..,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44768303632736206, 0.2878948450088501, 0.26442214846611023]" -38006,Ohh He Inna Band ! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5295514464378357, 0.2160516381263733, 0.254396915435791]" -5716,Girl just told me what she wanna do in the future then asked “should I️ even do all this because it really look like the world bout to end”,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.39800310134887695, 0.3471378684043884, 0.25485900044441223]" -65035, never ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -6888, I ALREADY TWEETED THIS ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42515063285827637, 0.30375465750694275, 0.2710946798324585]" -4671,This one right here ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4654039740562439, 0.264005184173584, 0.27059081196784973]" -10418,Looovvveee this episode ❤️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4731006920337677, 0.28025561571121216, 0.24664364755153656]" -29589,Just a couple of memes to update you all on my week ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4495447278022766, 0.29105231165885925, 0.25940293073654175]" -4659, I’m trying to enjoy it as much as the first 2 seasons but I can’t ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5226622819900513, 0.22824931144714355, 0.24908848106861115]" -57649, I love Rach and ranch ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5172686576843262, 0.22743147611618042, 0.2552998661994934]" -5496,Never made a friend at COS till Monday and it’s awesome,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5253221988677979, 0.24011074006557465, 0.23456703126430511]" -39751, Lol they have that I hate this costume look! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47846782207489014, 0.24613630771636963, 0.27539584040641785]" -50936,3 weeks til Zoeys first birthday party ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5480853915214539, 0.20873774588108063, 0.2431769222021103]" -22333,My first piss test results were almost 5x more THC than anyone they’ve ever seen ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4417463541030884, 0.2960425019264221, 0.2622111737728119]" -57884, This whole thing is such a meme,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5228583812713623, 0.21835294365882874, 0.25878867506980896]" -33488, Wow. I hope i win this one i really like it ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😥,"[0.42356640100479126, 0.32458505034446716, 0.2518485188484192]" -41951, you deserved it. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5073016881942749, 0.23958998918533325, 0.25310832262039185]" -57352, not your finest hour mate ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4364962577819824, 0.2933606505393982, 0.2701430916786194]" -1970, Done! Can you please rt and like mine too? Thank you! Good luck for both of us! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6536787152290344, 0.1330048143863678, 0.21331645548343658]" -44847,N.A.D.S ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -66048,I miss the babies in Ceres,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.3993249237537384, 0.3543996810913086, 0.24627548456192017]" -21633, I'm sooooo exited!!! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5140247941017151, 0.2474813461303711, 0.238493874669075]" -6523,Pogi ni Channing NW The Vow,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5024512410163879, 0.2371884286403656, 0.2603603005409241]" -9163,This is really cute ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.524084746837616, 0.25893864035606384, 0.21697670221328735]" -59035,ugh miss you B ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😪,"[0.36305922269821167, 0.4163527488708496, 0.22058799862861633]" -32049,OH MY GOODNESS! cannot wait to have the opportunity to read this Fran! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4804587960243225, 0.27159884572029114, 0.24794232845306396]" -32758, It would have to be if you falling out ya seat ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5569318532943726, 0.21459227800369263, 0.22847583889961243]" -12015, Incoming ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -44058,"My Uner lit, tissues lotion handsanitzer, wet wipes and chargerss nigga ready for these ashy mofos ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.42107588052749634, 0.322326123714447, 0.25659802556037903]" -17046, My boyfriend is driving me four hours to see niall for my birthday only thing better would be m&g 15,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😵,"[0.41001126170158386, 0.3132741451263428, 0.27671462297439575]" -37718,Thank you Jesus for one more day in your presence. I love you so much. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙈,"[0.6089386940002441, 0.15847045183181763, 0.23259079456329346]" -6033, what's good bro!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5043787360191345, 0.208340123295784, 0.28728118538856506]" -7353,i miss the feeling of being okay ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.4078316390514374, 0.3605000376701355, 0.23166833817958832]" -19649," Thank you Orlaíth, will do all the best! ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙊,"[0.5927133560180664, 0.14967569708824158, 0.2576109766960144]" -7604, hi! I'm so sorry for the mention. Can you help me? It would really mean the world to me! TYSM ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4714354872703552, 0.2708911895751953, 0.25767335295677185]" -10918, you and me both ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -44791,Cat vs dog ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5236760973930359, 0.20116697251796722, 0.27515697479248047]" -12767,Can someone send me some songs im getting tired of the music i have ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.40530917048454285, 0.34711623191833496, 0.24757449328899384]" -26551, I will and I can't wait for the next one ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😼,"[0.5437514781951904, 0.2211691290140152, 0.23507939279079437]" -48207, lol thanks,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😆,"[0.571685254573822, 0.15697628259658813, 0.27133849263191223]" -29529,but seriously why cant yall just be happy for ikon. it's 1 VARIETY for goodness sake can't ikon do as much,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4751393496990204, 0.2505030930042267, 0.27435749769210815]" -29749," Jobless? This is their full time job. You know they get paid for this, right? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4131980240345001, 0.3167537450790405, 0.27004826068878174]" -67791, was so horrible I cried ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3929522633552551, 0.3332473933696747, 0.2738003134727478]" -14660,How cute.. MBN ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😽,"[0.6716501116752625, 0.1477767378091812, 0.1805732101202011]" -14339, you gotta hmu with those i need content ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4079778790473938, 0.33941540122032166, 0.25260666012763977]" -14601,I cannt relate to some of yall nd that’s perfectly fine with me☺️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙇,"[0.4194616973400116, 0.2897847294807434, 0.29075363278388977]" -63645, Oy vey!! ... I your comment Dill Pickle. Oy vey!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4699442982673645, 0.25516700744628906, 0.2748887538909912]" -51207,Now that's called YAKEEN KA SAFAR Brilliant awesome awesome awesomeI am out of words ❤❤,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4741842746734619, 0.25413650274276733, 0.27167919278144836]" -57509, She's had a busy day being mischievous! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4701984226703644, 0.30161944031715393, 0.2281821221113205]" -31266,sexy b ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6255781650543213, 0.14781637489795685, 0.22660541534423828]" -14014,Papa Johns is like sbarro without that crispy chewy charred sourdough starter crust ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5233152508735657, 0.21893420815467834, 0.2577505111694336]" -10280, Cuties ❤️,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😥,"[0.43047332763671875, 0.32723477482795715, 0.2422919124364853]" -66274, Haha . But if I do and it doesn’t work out then what??? Lol,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😱,"[0.43343618512153625, 0.27123406529426575, 0.29532966017723083]" -54819,25 missed calls tanginang yern ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😟,"[0.40119320154190063, 0.3575899004936218, 0.24121695756912231]" -67783, My hate twt towards sg gov ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44648477435112, 0.3032265305519104, 0.25028857588768005]" -13677," Laughs at all my dumb jokes almost as much as I laugh at them, not sure why we just recently became friends ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4003790318965912, 0.29544728994369507, 0.30417364835739136]" -35549,Ion regret anything if it happened shid lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.41830381751060486, 0.2794632315635681, 0.30223292112350464]" -51530,I would've threw that shit back . Foh with this bs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40552252531051636, 0.3128237724304199, 0.2816537916660309]" -60722,SoOoOo many things are EASIER SAID THAN DONE ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😥,"[0.43630465865135193, 0.31036436557769775, 0.2533310353755951]" -35099, And did it with 7 more games than judge ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45697930455207825, 0.26965922117233276, 0.2733614146709442]" -2673, you don't need none! You know exactly what's being asked!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.38654154539108276, 0.33863985538482666, 0.2748185694217682]" -3185,I hate the cold so much that I can't even motivate myself to leave work and walk to my car 20feet away. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😥,"[0.44108399748802185, 0.31089141964912415, 0.2480245679616928]" -47054," this isn’t even a sub , the vast majority of tumblr just dick hunting. Lmfao like bitch do you have a j… ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.41181591153144836, 0.3087548613548279, 0.2794291377067566]" -27415,daniel drew a Woojin Park with the simpson’s family & a sparrow ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5453221797943115, 0.22202402353286743, 0.23265376687049866]" -29800," What do you like? comedy, horror, romantic , or something else come on what do you like ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44342511892318726, 0.29308778047561646, 0.2634871304035187]" -4352,Happy birthday ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6718515157699585, 0.1117878332734108, 0.2163606733083725]" -23072, You are always happy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6235702037811279, 0.13543589413166046, 0.2409939169883728]" -9921," My parents say this all the time, I didn’t know it was a Canadian thing language and phrases are fascinating",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4466158151626587, 0.28827014565467834, 0.26511403918266296]" -23385,This one! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -52946,"Hi every one .Its my first tweet. """""" Hope """"""everyone will welcome me . ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6512900590896606, 0.12403308600187302, 0.22467684745788574]" -16839, night,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😬,"[0.472586989402771, 0.27114278078079224, 0.2562702000141144]" -11355,good old days ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48076242208480835, 0.24158279597759247, 0.27765485644340515]" -32131, tbh cool ng icon mo pati header pati dimples ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49762216210365295, 0.22499214112758636, 0.2773856222629547]" -46654," I didn’t know what your twitter name was, I didn’t realize it was you until I actually drug out MALADAYYYYYY like the sims ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.39652588963508606, 0.32110896706581116, 0.28236520290374756]" -1545, Done! Can you please rt and like mine too? Thank you! Good luck for both of us! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6536787152290344, 0.1330048143863678, 0.21331645548343658]" -2571, Loveeee jimmy n Cooky ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49034279584884644, 0.24685555696487427, 0.2628016173839569]" -22831, I have my fair share of them. I Look like a self harmer after a busy service sometimes always worse the next day,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4155811667442322, 0.32245132327079773, 0.2619675397872925]" -30345,so she on punishment until sunday,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5101538896560669, 0.27292540669441223, 0.21692071855068207]" -21304, Some quality analysis ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4621974229812622, 0.27397310733795166, 0.26382946968078613]" -20093, HAHA SAME so i said i only listen idk if they play live or not. but now i can differentiate it. live gi… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5101150870323181, 0.23800861835479736, 0.2518763542175293]" -37295,New furniture tomorrow ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.4129442870616913, 0.37298348546028137, 0.21407221257686615]" -11088,Happy ko HAHAH TYL ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😼,"[0.5243037343025208, 0.2252049446105957, 0.25049129128456116]" -10906,Ajay & Rione got me laughing a little toooooo early ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48346155881881714, 0.26149797439575195, 0.2550404965877533]" -61322, I'm very excited about your new chapter and I'm so proud of you. Can't wait. I love you King❤. I'm spe… ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙈,"[0.5895789861679077, 0.18364132940769196, 0.2267797440290451]" -54015,I don't think this is funny but.... ke sono maan ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48526427149772644, 0.232747882604599, 0.28198787569999695]" -11365," happy birthday, angel! I love & miss you so much I hope your day is filled with cute d",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😺,"[0.6192156076431274, 0.17479228973388672, 0.20599211752414703]" -39323, That’s my place!!!! I’m down to go when I get paid lol,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😱,"[0.4602223336696625, 0.2570042014122009, 0.2827734351158142]" -8815, Stunning ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😽,"[0.7142519950866699, 0.11071758717298508, 0.17503046989440918]" -54644, I wish I was in this house only problem is I can’t sing loool,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.42105963826179504, 0.31419211626052856, 0.2647482752799988]" -57825, Lmaoooo that shit is gooddd I promise ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.41348323225975037, 0.337403804063797, 0.24911296367645264]" -59188, Bad moms Christmas ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😹,"[0.4391230046749115, 0.30705633759498596, 0.25382065773010254]" -56861,I just came up on a 6 pack of scantrons my days turning around ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.44260820746421814, 0.2930702269077301, 0.26432159543037415]" -46928,Can somebody just make me a meal plan so i can shred this fat off me lmao my only issue is eating right ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4377325773239136, 0.30387213826179504, 0.25839531421661377]" -8393,No one knows me better than Jenae hell she looks just like me,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4561830759048462, 0.27091118693351746, 0.27290576696395874]" -54291,I will forever despise him ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.48312830924987793, 0.2565571069717407, 0.26031461358070374]" -51091,Bro CeeHudd really a good person.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.46835723519325256, 0.25236210227012634, 0.2792806029319763]" -60902, Couldn't you have posted this from your own account? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47670117020606995, 0.26127439737319946, 0.262024462223053]" -41906,You look like Suge Knight not 2pac ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.4325959384441376, 0.3023207187652588, 0.26508331298828125]" -30637, we’re just trying to love with all our hearts no need to make it complicated!,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😥,"[0.44263383746147156, 0.3083578944206238, 0.2490082085132599]" -33968, amin ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -32443,WANT THIS SO BAD ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😟,"[0.4244275391101837, 0.3789060711860657, 0.196666419506073]" -56586,"Was talking to my mom about visiting home for break & she said ""Now am I paying for this one or is a aww mom subs always pay ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.43306130170822144, 0.3063688278198242, 0.26056987047195435]" -27478,this maaaan ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.46237099170684814, 0.2965942919254303, 0.24103470146656036]" -68009, vo pta h doctor k baare m bol Ra tha Honestly that's one of the best topic ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5712029933929443, 0.19633591175079346, 0.2324611097574234]" -63549,He’s beautiful! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6271557211875916, 0.15021805465221405, 0.222626194357872]" -13732, ion deserve this,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49635836482048035, 0.22046338021755219, 0.28317826986312866]" -66343,Honestly did this a couple of times in college ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4037186801433563, 0.3281343877315521, 0.26814693212509155]" -30838,What the actual fuck Why can’t we see the show in Australia? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.43575260043144226, 0.29815617203712463, 0.2660911977291107]" -45404, omg omg omg the baby fever just got real ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.567722499370575, 0.21636585891246796, 0.2159116417169571]" -34167,My life in a tweet ❤️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.48351147770881653, 0.25899505615234375, 0.25749343633651733]" -58260, Collect die ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.3980304002761841, 0.3339593708515167, 0.2680101990699768]" -35471, LMAO THIS IS THE KARISMA I WAS TIGHT WITH ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.43054088950157166, 0.29702872037887573, 0.2724303901195526]" -65999," Thanks, babe! ❤",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6164595484733582, 0.14676594734191895, 0.23677441477775574]" -3680, What do you mean by “ and then some “ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4682914614677429, 0.25620052218437195, 0.27550801634788513]" -13431,I swear she did ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😵,"[0.41171979904174805, 0.31189659237861633, 0.2763836979866028]" -52316, with the backpack ready like “what can brown do for you”,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.42032426595687866, 0.31829237937927246, 0.2613833546638489]" -34433, Happy birthda po.Wish you all the best ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😹,"[0.43773582577705383, 0.30217254161834717, 0.2600916624069214]" -30889,asphalt,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -15504, Okay ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😼,"[0.5771932005882263, 0.1938214749097824, 0.22898533940315247]" -49472,was not in a good mood tonight but then i binge watched bretman rock and its all good now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.5182336568832397, 0.24627405405044556, 0.2354922592639923]" -67916,this is what get when your 2009 self asked your sister to do your scrapbook project (Emma Watson part is true tho) ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😱,"[0.43462520837783813, 0.26802605390548706, 0.2973487377166748]" -52041,If only I had boo thang to do this with ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5156176686286926, 0.2408064305782318, 0.24357587099075317]" -27041, I really hope to see ya this month in Colorado. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5647585391998291, 0.21162810921669006, 0.22361338138580322]" -66729,My PC crashed due to overheating my files,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😹,"[0.4403190612792969, 0.29456499218940735, 0.26511600613594055]" -43678, Just returning the favor. You did it to me last year ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45667001605033875, 0.2714637815952301, 0.27186620235443115]" -13242, Studying abroad in Italy for 3 weeks it won't actually happen,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.4010750651359558, 0.33369433879852295, 0.26523053646087646]" -25032, I am weird too soo what's the problem ? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4886448383331299, 0.23002634942531586, 0.28132885694503784]" -44255, Cuz he knows you strong,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.42207399010658264, 0.29061537981033325, 0.2873106896877289]" -26815,This is what having 3 dogs is like! It takes A LOT of dog food ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.45922937989234924, 0.28813636302948, 0.25263428688049316]" -47744,LMFAO!!!!!!!!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙇,"[0.4457263946533203, 0.28129613399505615, 0.2729775011539459]" -19837, Monet. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.46295732259750366, 0.2748742699623108, 0.26216834783554077]" -17457,"I don’t know why, but I kinda feel bad for the Dodgers. Like it was different when it was the Indians that were in this position. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40437808632850647, 0.31182146072387695, 0.28380051255226135]" -52462, Haha was howling man ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47637391090393066, 0.23940309882164001, 0.2842230200767517]" -43377,Dyed my hair ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.509038507938385, 0.28894180059432983, 0.20201978087425232]" -25833," are you @ me aha I love thanksgiving, but Christmas omg ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.45929089188575745, 0.27737101912498474, 0.2633381485939026]" -67536, Who said there ain't no baseball in November ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4750415086746216, 0.2561681270599365, 0.2687903344631195]" -36246,trying to be the bigger person in this situation but I can feel it’s not gonna work,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😵,"[0.41593965888023376, 0.31301191449165344, 0.27104833722114563]" -67247,So yeah I went to Enternal Gardens and heard Blood Sweat and Tears playing.... skl,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.40849044919013977, 0.31388798356056213, 0.2776215374469757]" -13370, São Paulo deserves a shout instead of that relegated club ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.4599554240703583, 0.26473745703697205, 0.2753071188926697]" -65897, He is awesome ... remember his joke about 'pubic hair' and shampoo ... tears ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.45184966921806335, 0.3084986209869385, 0.23965173959732056]" -59631,Yung feeling na last round 1v5 ace clutch ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4737370014190674, 0.2521499693393707, 0.2741130292415619]" -1643,I remember watching family guy til i got sleepy argued with my sister every night we shared the tv ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.46491703391075134, 0.26445358991622925, 0.2706294357776642]" -16331,Go ahead stalk my page away ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙉,"[0.5146245956420898, 0.20401647686958313, 0.2813589870929718]" -3328, man you going bless the nature lmao trees done woke up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😥,"[0.43352144956588745, 0.32003316283226013, 0.2464454174041748]" -64995, Happy Birthday. drinks in me this weekend. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6191940307617188, 0.15239886939525604, 0.22840705513954163]" -7457, I can't read English.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4581894278526306, 0.29683804512023926, 0.2449725717306137]" -13454,I just surprised myself with that LMFAO ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😵,"[0.4155941605567932, 0.3176829516887665, 0.2667228877544403]" -68032,Thisss ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😬,"[0.4854748845100403, 0.2612924873828888, 0.2532326877117157]" -67183,No one understands how much I love ted I just wanna wrap him up in cotton wool ❤️,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😟,"[0.43408700823783875, 0.3407832980155945, 0.22512978315353394]" -45526, Sry mt bol sis online a jaya kr haan achi lgti kat MAKE WAY FOR TZH TRAILER,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😹,"[0.45702889561653137, 0.2917458713054657, 0.2512252926826477]" -28803,"Christian Organisations are lying as well, right? I'll destroy your entire propaganda campaign. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😬,"[0.47990110516548157, 0.26212865114212036, 0.2579701840877533]" -11554,I’m Dead Asf ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😹,"[0.44201627373695374, 0.2945305109024048, 0.2634531557559967]" -68530,Yummy! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😼,"[0.5484175086021423, 0.20360249280929565, 0.247979998588562]" -21909,Bad news guys... the little bit of V line I have is pretty much gone ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😬,"[0.4582193195819855, 0.26798704266548157, 0.27379360795021057]" -54063,The blood won't come off my neck!!!! I have a presentation today,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.39156991243362427, 0.3548761010169983, 0.25355395674705505]" +35671,I feel like I care so much more in every situation ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3881330192089081, 0.34921327233314514, 0.24625590443611145]" +25683,I did not meat to add that '2' there...havent seen the first seasin either..,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.477517306804657, 0.2263115793466568, 0.28050246834754944]" +8985,never… ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +5410,Lmao on me!!! Wtf was he supposed to say ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3319989740848541, 0.38802555203437805, 0.23037922382354736]" +62611, This dude always help me get through my school dayz with his music,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.471467524766922, 0.19387008249759674, 0.2999592423439026]" +48197, Happy B'Day Sir,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😀,"[0.6342154145240784, 0.0916505753993988, 0.25344666838645935]" +23654, You need some good old fashioned Swedish Jesus,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4485129117965698, 0.2649095952510834, 0.26670846343040466]" +58207,these late shifts are making me not have a social life anymore ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.35744383931159973, 0.37891000509262085, 0.23349037766456604]" +374,Dc this weekend ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.575383186340332, 0.14427249133586884, 0.2507841885089874]" +26310, Paul lad you'll make es blush ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3773207664489746, 0.363784521818161, 0.24024057388305664]" +30892, Did you have a fun Halloween?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4547549784183502, 0.2675609588623047, 0.2659752070903778]" +11868,Hi handsome ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6610512137413025, 0.07423651218414307, 0.20605367422103882]" +46219,"I'm not okay with this, I'm suing Snapchat ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38139358162879944, 0.36385539174079895, 0.23348206281661987]" +13583,My parents be so mad I be buying new stuff & still have shit in my closet that's brand new ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.393837571144104, 0.3474741280078888, 0.24239841103553772]" +43843,One of the few songs that calms me down esp on FULL volume.It effectively helps me control my strong emotions ✌,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36614790558815, 0.369498074054718, 0.2390361726284027]" +63589,iPhone X Bouta Be The Last Phone We Ever Buy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3337980806827545, 0.4099247455596924, 0.2233627736568451]" +53695,Visited my main man today ❤ i miss u papa ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5644013285636902, 0.14413486421108246, 0.2558090090751648]" +67529,Donuts ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4482305943965912, 0.2685551047325134, 0.2736265957355499]" +25493,Has anyone heard this by ? Who the fuck knew he could drop this shit ❤️ ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.41814130544662476, 0.27233976125717163, 0.27604979276657104]" +19486, Wow superrbb,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6488221883773804, 0.07963734865188599, 0.23090070486068726]" +48449," Of course they don't. Their perfect model of moral conduct is Muhammad, the a… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5793762803077698, 0.14216111600399017, 0.2462042272090912]" +4504, Please pick me. Pick me. Pick me. Please. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.526153028011322, 0.1465001106262207, 0.29096928238868713]" +40285, shiid no crack is wack,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4464351236820221, 0.25675588846206665, 0.27853986620903015]" +56741,Pj still sleeps like a newborn ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3798309564590454, 0.3601042628288269, 0.23692363500595093]" +22948, An opinion doesn't mean you make sense first off or even right ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😢,"[0.3885924518108368, 0.35167044401168823, 0.23918494582176208]" +68426, Missyou too ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😭,"[0.32084617018699646, 0.4261379539966583, 0.21212175488471985]" +13431,I swear she did ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4509403705596924, 0.2531892657279968, 0.27728739380836487]" +66287," It’s true, he was the mutt’s (big-d) nuts. ",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.43934985995292664, 0.27343544363975525, 0.2692030370235443]" +41980, is happening so happy,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5246269106864929, 0.21524660289287567, 0.23413467407226562]" +34632, Saw that the first one said sosee you tmmrw and np,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.40898817777633667, 0.32723960280418396, 0.25347787141799927]" +58805, Aww my poor baby ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4569529592990875, 0.26579272747039795, 0.27145883440971375]" +41654, Just gorgeous ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6034963726997375, 0.12104877829551697, 0.2005915641784668]" +62876,If I was able to go to Demi Lovatos concert in Columbus I’d ask her to marry me ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6452720761299133, 0.09392911195755005, 0.22546246647834778]" +67642,"Yesterday, while watching the trailers before Thor rolled, I found out smth awesomeA Wrinkle In Time is going to be on the big screen!! ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😭,"[0.33930090069770813, 0.40772026777267456, 0.2205439805984497]" +16538,Wowww I️ transitioned and got called bald head ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3179636597633362, 0.4298807382583618, 0.21240219473838806]" +44318," follow me please I'm so proud of you Liam, you’re the best. I love you 57",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5563640594482422, 0.16931907832622528, 0.24143460392951965]" +17819,"I’m not dealing with African twitter tonight, y’all will not kill me ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4438415765762329, 0.26914772391319275, 0.2686372995376587]" +30585,So sad ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😭,"[0.3209979236125946, 0.42390596866607666, 0.19016805291175842]" +53484,Why all y'alls girlfriends gotta follow me too?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4676225483417511, 0.25042176246643066, 0.27201882004737854]" +34111,I’m so proud ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😌,"[0.5924596786499023, 0.1391115039587021, 0.22164562344551086]" +53696,So sad Halloween’s over ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38494107127189636, 0.3408774733543396, 0.23259848356246948]" +5516,Only 3 more months of Pharm and Micro.. Will I survive?? ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.4149687588214874, 0.301424503326416, 0.25541213154792786]" +8953,Eunwoooo whyy,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.43962618708610535, 0.2824314832687378, 0.2664547264575958]" +6147,Worst part of this is how good Spurs are defending and then there’s 3 year 8’s chasing Edin Dzeko last night ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4767194986343384, 0.23135389387607574, 0.27851054072380066]" +44590, youre like a year late on that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3871822655200958, 0.3395352065563202, 0.2382166087627411]" +52931, Sorry ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4455568492412567, 0.29272037744522095, 0.2602755129337311]" +39931,it had to be spread ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😭,"[0.33938923478126526, 0.41661208868026733, 0.22396719455718994]" +28183,Nightmare ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3698621392250061, 0.3650975525379181, 0.22911584377288818]" +29695,Did you all REALLY think Dodgers were gonna win? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3815735876560211, 0.3539835214614868, 0.23623135685920715]" +50936,3 weeks til Zoeys first birthday party ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5022689700126648, 0.1934344470500946, 0.26689618825912476]" +52442, May be Pappu's soft bone,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.42511290311813354, 0.29017844796180725, 0.26516488194465637]" +41083,I haven't had in n out in awhile and it sounds so bomb rn ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.513197124004364, 0.21741154789924622, 0.2562010884284973]" +53596,I was doing so well until she had the baby ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.49733346700668335, 0.2380828857421875, 0.22597768902778625]" +61802,"Hate hearing that saying, always makes me tear up ",😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.33712053298950195, 0.4039487838745117, 0.2213101089000702]" +39650,sometime to be alone is better,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.5343193411827087, 0.19321691989898682, 0.23674768209457397]" +850,Yey kitakits topc summer jobbers! ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.6524381041526794, 0.0909772515296936, 0.22725215554237366]" +32207,Taking the Halloween decorations down ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4640597701072693, 0.24003520607948303, 0.27689993381500244]" +19230, overthinking sucks ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4760630428791046, 0.25958794355392456, 0.2629224956035614]" +63034, I'm off Sat thru Mon now. ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😭,"[0.34175270795822144, 0.4158250689506531, 0.21752238273620605]" +61488, I hope when Apple makes a standalone display again for Mac Pro that it’s a 30” 8K display. I’ll be if it has ProMotion too.,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4296913743019104, 0.2764556407928467, 0.2779711186885834]" +67538, thats my favorite series now ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5391080379486084, 0.18235652148723602, 0.23906755447387695]" +29140,This is like fringe English media rejecting popular and powerful Hindi and Regional media. HaHaHa ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4685666561126709, 0.20701053738594055, 0.2908506989479065]" +10111,"If I’ve unfollowed then followed you back immediately here recently.. iz cool, I was just trying to mute you.. carry on. ",😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4859246611595154, 0.21885192394256592, 0.2794702649116516]" +21114,im dead ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46347105503082275, 0.25394850969314575, 0.27390256524086]" +44336, loved your words in when you say about 1st tine you used a menstrual cup - crime scene ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😁,"[0.558506429195404, 0.1634720265865326, 0.2561151385307312]" +36536,Dodgers are dumb they should have started kershaw ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36595237255096436, 0.3723903298377991, 0.2317473590373993]" +46483," I am enjoying my day, thank you ☺ Enjoy your day too ☺ Take care too, dear best friend Love you BIG HUG ",😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.6904126405715942, 0.07478652894496918, 0.21837782859802246]" +46378,"Nov. 1, 2017 stand up for what’s right or sit down for what’s wrong!",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.4171721935272217, 0.31104251742362976, 0.261068731546402]" +41983,This b^txxxh always made my dayAko diay ning ex ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.440741628408432, 0.276119202375412, 0.2777910530567169]" +63376, Amen! Let us end it now. You are the greatest ever! Thank you ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5203890204429626, 0.16568803787231445, 0.28565049171447754]" +40017,Poor will ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4611883759498596, 0.25855404138565063, 0.2691582441329956]" +28825,I legit feel like the astros let the dodgers win the 6th game just to make it interesting for the last game...,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34496620297431946, 0.4040452241897583, 0.2225339114665985]" +47821,You can mute me now I'm gonna start my q&a thread ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3787320852279663, 0.3581514358520508, 0.23997259140014648]" +51248,Ahhh I love her so much ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5534976124763489, 0.16012156009674072, 0.24492532014846802]" +46795, Talking about having us as your parents? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4476269483566284, 0.27001336216926575, 0.2702774107456207]" +11938,Currently have the most stereotypical yet super camp builders next door! currently all singing to Stronger-jelly… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4082915782928467, 0.3221152424812317, 0.2590859532356262]" +68662, Dude ugh can't wait for tomorrow,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3396233022212982, 0.4158506393432617, 0.22187000513076782]" +47527, Lemme catch my breath ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😎,"[0.5795075297355652, 0.08320842683315277, 0.298202782869339]" +10962, has been working on this for a while now ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😅,"[0.43950021266937256, 0.28291597962379456, 0.21470803022384644]" +17007, huhu kaya mo yan chloe! Hope you have a great day today ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.44528380036354065, 0.24950692057609558, 0.2903386950492859]" +36609, what’s up? lol i need some box braids sho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46844831109046936, 0.24841906130313873, 0.27017050981521606]" +60788,I hate going to the doctor,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.38703614473342896, 0.3218058943748474, 0.2557401657104492]" +1677, should tag naomi but she's taken already ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5205848813056946, 0.1938282698392868, 0.2669841945171356]" +44350," It is, actually! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4485231935977936, 0.23468004167079926, 0.2882959842681885]" +44087,‍️Yall so trendy ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.29274365305900574, 0.43783384561538696, 0.20125812292099]" +50846,Thalaivaaaaaaaa vera level no end to ur hardwork n success keep rocking Love u sooooo sooooo much … ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.5169317722320557, 0.2090788632631302, 0.25407230854034424]" +35063, daught… ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +45373,Thanks to everyone who attended my Masterclass in Dublin for you guys rocked ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4768000543117523, 0.25510457158088684, 0.25324133038520813]" +24485,I’m talking cranberry sauce and everything ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5895364284515381, 0.13112005591392517, 0.24510827660560608]" +20399,HAPPY BIHDAY Ash ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6549153327941895, 0.08843366801738739, 0.231928288936615]" +22247, Loewe still my favorite ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙌,"[0.6557084321975708, 0.09064064919948578, 0.2076530158519745]" +4178,No filter,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.43924209475517273, 0.270050972700119, 0.27773889899253845]" +16001,My fangirl heart!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.49615606665611267, 0.24694624543190002, 0.2349293828010559]" +43729," YES!!....after 5 valentines, we're still goin'",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3788410723209381, 0.34855130314826965, 0.2470080852508545]" +48809, Hey don't run away from me because ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5109982490539551, 0.16748875379562378, 0.28456875681877136]" +25693," Everybody swear they hate it, yet I’m still seeing “stinka ” everywhere",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.4020642936229706, 0.34989863634109497, 0.2331046164035797]" +33012,Somebody gotta connect ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.47116270661354065, 0.2363637387752533, 0.2760797441005707]" +45398,I'm glad you support the movement ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😀,"[0.6221113801002502, 0.08877035975456238, 0.25770214200019836]" +56574, I am probably gonna use the rest of my money in my bank acc to see you on tour!! Totally worth it! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😢,"[0.4006904661655426, 0.33352935314178467, 0.2477618157863617]" +4701, The show must go on! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +49791,This is savage aha ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45354822278022766, 0.2426552027463913, 0.2786243259906769]" +11887,always make a cup of tea and forget about it,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😁,"[0.547024667263031, 0.15520814061164856, 0.26372504234313965]" +63686, Lmao what’s a win? ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.42977508902549744, 0.27150434255599976, 0.26363855600357056]" +5790,Real Madrid should just bring on Memphis Depay ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4518284499645233, 0.25795796513557434, 0.27926871180534363]" +30134,"Your next ride is on me download Lyft & use the code ""RDC77"" for $50 credit to save a life.",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.45371100306510925, 0.19917619228363037, 0.32058414816856384]" +50345,Happy birthday ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😍,"[0.712283194065094, 0.05335390940308571, 0.210898756980896]" +14699,Need to do a total of 200 vocab . flash cards & only did 50 ‍️,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😌,"[0.5771672129631042, 0.14621739089488983, 0.24412983655929565]" +8501, Just the looks ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46198570728302, 0.2647743225097656, 0.27113965153694153]" +52983, dead. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4527203440666199, 0.27367639541625977, 0.26372846961021423]" +49161, I've never liked any of mine either & I've gotta look at my newest for the next 9 years. Resting bitch face sucks. ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.4080143868923187, 0.3348889648914337, 0.2460843324661255]" +64088,.................. you cant then ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +9474,"One time this girl thought she was so cute, that I would let her hold like $200. where’s the “Yeet” gif? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44690802693367004, 0.266019344329834, 0.27773720026016235]" +45545,How is twitter free y’all? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45682936906814575, 0.24955573678016663, 0.2804488241672516]" +57216,See my baby! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.5205056667327881, 0.2357480674982071, 0.14990761876106262]" +11438,Downtown parking changes Nov 6th! New multi-space meter machines & ability to pay w/ smartphone More:… ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4696933627128601, 0.24666130542755127, 0.2750813066959381]" +47406,i could honestly watch zoë vlogs all day long they're just so calming and make me so happy ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.484680712223053, 0.24738070368766785, 0.26468250155448914]" +9079, fuck all that ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4209957718849182, 0.3229237198829651, 0.24495625495910645]" +35452, .Oh okay ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5069778561592102, 0.21539941430091858, 0.2576916217803955]" +38405,I think so din ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6024161577224731, 0.1259879618883133, 0.2412639856338501]" +48071,I’m still heartbroken over the chocolate chip cookie that I accidentally threw away in my Wendy’s bag 6 days ago ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.35875222086906433, 0.39094647765159607, 0.2285355031490326]" +57978,But why you had to fuck it up like that though??? ❤️ ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😢,"[0.37958306074142456, 0.37349116802215576, 0.22983378171920776]" +58651, yummy ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😍,"[0.7164174914360046, 0.054827868938446045, 0.2011183500289917]" +16496, YES SAME I want it so bad period-style Shance AU with all the dramatic tension and stoic pining...sig… ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.49711576104164124, 0.22909824550151825, 0.2545256018638611]" +51493," That's great! I published a short book of poetry but it didn't sell any, I got some to give to friends though ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6763719320297241, 0.06859631836414337, 0.21968278288841248]" +6761,Philly is so crafty after they gentrify an area and try to rename it ! Like nigga this is down the bottom not mantua ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4797878563404083, 0.2466377466917038, 0.2579778730869293]" +24114, I'm just craving a costume party....not necessarily halloween,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.5247027277946472, 0.1927553117275238, 0.2500461935997009]" +4696, Let's go ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6275834441184998, 0.10234281420707703, 0.24019965529441833]" +67343," This happens to me sometimes..But i try to b strong , atleast in my dreams ...",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4158552587032318, 0.3203967809677124, 0.2570444941520691]" +35946,She is pretty ‼️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5394349694252014, 0.19163697957992554, 0.25734275579452515]" +27246," If I was your boss at rascals,I would fire you for being so stupid while wearing the company shirt ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4611821472644806, 0.2591882646083832, 0.27122175693511963]" +14163,he talking too slick i woulda had to beat his ass ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.3048568367958069, 0.44449877738952637, 0.20421260595321655]" +48498, aww lyn this is so sad x ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.3479309678077698, 0.4012276232242584, 0.21850323677062988]" +43733,my personal deadline for getting this doujin done was December and I think that I'll be able to hit that ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.371077299118042, 0.36519935727119446, 0.23892220854759216]" +59697,Don’t make me laugh when I’m trying to argue with you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4385797679424286, 0.286624938249588, 0.2679293155670166]" +64174,The Phichit doll! I'm so happy they make... I hope they make Phichit nendo too ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5126197338104248, 0.20161190629005432, 0.2642495036125183]" +11317," So hip, SHES my spirit animal ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.44332337379455566, 0.2523925304412842, 0.28261712193489075]" +32236,It’s the 1st of the month !!! Happy November ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6385417580604553, 0.09333117306232452, 0.23817268013954163]" +51085,November is gon b all emotional for me to start I won't be able to go home for thanksgiving ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😔,"[0.30506765842437744, 0.45395714044570923, 0.20644080638885498]" +54004, Lucky you saw him,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.585374653339386, 0.14884024858474731, 0.23333141207695007]" +36779, You need a restraining order to get rid of ha ass,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.37409642338752747, 0.3743898272514343, 0.22950199246406555]" +38166,"actually nah, had this account for years. Never bought a follower on it. Got it all the way up to 111k with no hel… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44103503227233887, 0.23583756387233734, 0.299647718667984]" +2761,Looks like my Wee Precious is sugar high. Shouldn’t let her drink coke at this time like. She’s hyperactive now l… ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.431541383266449, 0.29413917660713196, 0.2673441469669342]" +34660,KKody Belinger ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +18313,Let me stop playin y’all folks heads I ain’t talkin bout nobody fr I tryin something n it worked ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.406631201505661, 0.3048993945121765, 0.2666483223438263]" +24578,I️ crack myself up at the GIFs I️ send ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5230083465576172, 0.17861996591091156, 0.2689646780490875]" +9678,Friends ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.515049397945404, 0.19370929896831512, 0.24113500118255615]" +22221, These Pakis camel Shaggers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44852253794670105, 0.25601696968078613, 0.28011831641197205]" +47507," She always advise us ""do make sure you hit the Gym"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5050313472747803, 0.1969045251607895, 0.27582791447639465]" +67922, lmao I can't believe you are walking down the street in a liama onesie ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4139684736728668, 0.28893598914146423, 0.26622724533081055]" +7586, And everytime you leave me the quicker these tears dry ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3979344069957733, 0.3266119658946991, 0.25327420234680176]" +13307, NORAH IS MY FAV!!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4517437815666199, 0.26626846194267273, 0.26432082056999207]" +51908,Dies peacefully ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44561147689819336, 0.2741904854774475, 0.2740110158920288]" +18967," Thanks for appreciating it ate, I’ll try ❤️",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6297078728675842, 0.10752816498279572, 0.23663181066513062]" +50374,@ We're ready for you ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😢,"[0.3827042877674103, 0.37210798263549805, 0.21932408213615417]" +49518,"""Bubble gum, nigga?"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.436746746301651, 0.2912904620170593, 0.2664455473423004]" +56943,When pizza is life.. these were taken seconds apart ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.39975646138191223, 0.32888761162757874, 0.24013927578926086]" +50003, I want ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5159682035446167, 0.2066059410572052, 0.24774688482284546]" +36229,Puig you have a problem ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6617752313613892, 0.07514117658138275, 0.22184592485427856]" +32135, I saw that the year she did that lol I laughed & died,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43411779403686523, 0.29772356152534485, 0.2635001838207245]" +7620,I got eight hours of sleep last night so I’m fine ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5563507080078125, 0.17304518818855286, 0.24962419271469116]" +63171, which is only right ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4018905460834503, 0.33436959981918335, 0.24195894598960876]" +29613, So damn cute ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😌,"[0.5526193976402283, 0.17209024727344513, 0.23068097233772278]" +63148,and the wings was golden crispy lmaooo I’m on some really fat shit,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.3559999167919159, 0.3906022608280182, 0.22784477472305298]" +3908, Liam why?? I love you sm but Bella Thorne? Come on WHY NOT ZENDAYA ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.574188768863678, 0.15337209403514862, 0.2429872751235962]" +39061,Thanks Alex ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😌,"[0.6208105683326721, 0.1117229014635086, 0.2377328872680664]" +16516, Thanks big homie love you bro ❤️,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😁,"[0.5800036787986755, 0.11543217301368713, 0.2666981518268585]" +64942,"Shawty just texted me, said she wanna sex me... LOL SMILEY FACE",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.43295857310295105, 0.2970883846282959, 0.26915401220321655]" +26709,I will baby ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.5205056667327881, 0.2357480674982071, 0.14990761876106262]" +38825,This! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +20216,"Make sure you go check out new music video ""I Know"" on YouTube. ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.6136770844459534, 0.10349607467651367, 0.2526549994945526]" +6834,Write this down Queen. ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😅,"[0.49591630697250366, 0.24011187255382538, 0.2269187867641449]" +37099, HMU in dm’s I produce with another kid and got a dope engineer as well,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😁,"[0.5385308265686035, 0.17937584221363068, 0.26526716351509094]" +57132,this me as a parent on Halloween ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3262040615081787, 0.40864184498786926, 0.22021767497062683]" +43994, Love it!,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +33262,Nami I want a corny guy yaz' ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4472390115261078, 0.2676849365234375, 0.2724722623825073]" +11617, year end target must be met. ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4614674150943756, 0.27463918924331665, 0.26794105768203735]" +40543,This update is taking forever ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4492764472961426, 0.2747970223426819, 0.27461788058280945]" +8752,Best Arizona hands down has to be the fruit punch one ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.46016258001327515, 0.23123638331890106, 0.28749576210975647]" +40635, Eartha could never! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +52837,Los is a ass ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4643191397190094, 0.24810460209846497, 0.27489688992500305]" +59946,I wonder when will Pepi and Mark post again. Im starting hate them bec of JB lmao ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.4616145193576813, 0.257446825504303, 0.27338144183158875]" +3554, TOMORROW!!!! Y'ALL I'M NOT FUCKING READY AT ALL!!! THEY'RE SO PERFECT OMG I HOPE EVERYTHING GOES WELL ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.41381165385246277, 0.3276541829109192, 0.2425098717212677]" +25432, This was so funny omg. I can’t wait for the next video ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.46007007360458374, 0.2609312832355499, 0.2660563290119171]" +23294, “Tissss the season to be jollly “ I’m dying ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46060535311698914, 0.2742128074169159, 0.2681565284729004]" +37440,Someones saying i need to eat 1000 cals a day idk anymorr fck it im fat. go away then lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48432669043540955, 0.2386912852525711, 0.25617480278015137]" +42454, 6 Beautiful hrs every night! Up at 3 a.m. every day....,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",🙌,"[0.6735495328903198, 0.07650171220302582, 0.22535455226898193]" +60677, A whole nother convo and we can't get into this tonight bro ctfuuu ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4562881290912628, 0.24452508985996246, 0.28040891885757446]" +37660,“Cavs only ready for the playoffs”First of all.... are they gon make it? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3244987726211548, 0.4383445978164673, 0.2156018316745758]" +14368, No you won't!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5405232310295105, 0.19315436482429504, 0.23062747716903687]" +18759,I'll actually do it this time ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.44637274742126465, 0.24984560906887054, 0.28928324580192566]" +8190,thanks love xx ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😘,"[0.7518113255500793, 0.042917631566524506, 0.1950722336769104]" +15772,Good Morning All ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6791377663612366, 0.06248137354850769, 0.22196438908576965]" +61109,Every other day i ask my daddy for money so I can spend his and save mine and he’s finally caught on,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49595245718955994, 0.196827232837677, 0.2872178852558136]" +60320, it's official: Whataburger > In&out. ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.5091263055801392, 0.2181559056043625, 0.2622087597846985]" +50891, You think you need legal frame work all you need is to be labeled a terrorist.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4545641839504242, 0.2524295151233673, 0.27066320180892944]" +32559, Stop exaggerating ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.4017685353755951, 0.3149629831314087, 0.2470684051513672]" +39900,i love this excerpt from milk & honey ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6723021268844604, 0.08397252857685089, 0.2152455747127533]" +39285,Before & after! Damn that guy is good ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😢,"[0.4081842005252838, 0.33648961782455444, 0.24818170070648193]" +33219, Really good one ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5218778252601624, 0.19605951011180878, 0.2547723054885864]" +39085,The door-to-doors play themselves when they ask me if someone 18 or older is home. ✌,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47739821672439575, 0.25247922539711, 0.2663153409957886]" +66029,Miss you Labyu ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.5821247100830078, 0.14013655483722687, 0.2428569197654724]" +23341,What do u mean ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😁,"[0.520950973033905, 0.15874795615673065, 0.28646087646484375]" +8424,Gonna stay here for tonight. Let's fight this Papang. You're stronger than you think you are. Laban tayoooo ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4738474488258362, 0.21773119270801544, 0.28488487005233765]" +45187,The funniest ldn ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.2974773049354553, 0.4733971357345581, 0.21205425262451172]" +58669,Ke Dele? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3651444911956787, 0.3712822496891022, 0.23502889275550842]" +61629,Am I the only person that needs to use a mouse when using a laptop? Literally can't deal with touch pads lmao ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48534342646598816, 0.22510096430778503, 0.2759174108505249]" +6683,Not even out of bed yet and I’m ready to get off of work today ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😔,"[0.29542091488838196, 0.44649386405944824, 0.18900826573371887]" +67036,Airport is history for KathNiel ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5124741196632385, 0.2120867222547531, 0.2622370421886444]" +21984,Anything for my baby. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5205056667327881, 0.2357480674982071, 0.14990761876106262]" +50080,It's funny how ppl think dat money suppose to come out ya ass I'm broke leave me alone ‼️‼️,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4470505714416504, 0.2754557132720947, 0.26746344566345215]" +3763,Halloween 2K17 in the books @ Western Kentucky University ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",🙌,"[0.6386205554008484, 0.09543071687221527, 0.23383542895317078]" +20111, Aw thank you I don’t even know what to do on here ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5438927412033081, 0.18146969377994537, 0.24947071075439453]" +34502,Here for ALL of it ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +7373, Thats so cute ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.5452510118484497, 0.17401330173015594, 0.23366084694862366]" +61088, next week ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.45324087142944336, 0.20445634424686432, 0.31940966844558716]" +48930, Because they’re bad people ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4270021319389343, 0.28227317333221436, 0.2638440430164337]" +57449,Hello ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😀,"[0.6235771775245667, 0.0942888855934143, 0.24794983863830566]" +43912,Women always feeding me ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.5018157958984375, 0.1915370374917984, 0.28222647309303284]" +35221, this if you’d like to see me smother with these . ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.46029892563819885, 0.2567102611064911, 0.26967477798461914]" +60033,"I feel like there's hope but then, thinking logically follows. ",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.4764466881752014, 0.22469334304332733, 0.28203973174095154]" +27323, nobody told me Kev was gone be in this shit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.408963143825531, 0.3263504207134247, 0.251194566488266]" +19221,So... it’s Christmas time ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😢,"[0.3785545229911804, 0.34801051020622253, 0.24456197023391724]" +42768, we love GOD too ❤️,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😍,"[0.7131041288375854, 0.06404060870409012, 0.21759042143821716]" +52984, Then you're just a casual nerd. Real nerds like me scoff at your inferiority ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4932364523410797, 0.2062191218137741, 0.27900639176368713]" +15780,I want a gf now a down ass female ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.42638954520225525, 0.2927745580673218, 0.26460322737693787]" +19377,"Been catcalled on my way to uni, peak",😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.43873298168182373, 0.23604020476341248, 0.2995794713497162]" +62710,"Some facebookers love to be outraged and offended. If you're looking for drama, Facebook has it in abundance ",😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.46223321557044983, 0.23721516132354736, 0.2844226062297821]" +58898, don’t have a short temper.ButI have a quick reaction to wrong action. ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.42568376660346985, 0.30078640580177307, 0.2597849369049072]" +5444, How dare they call during a sprint . You did awesome!!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4609525799751282, 0.25774791836738586, 0.2686733603477478]" +5863, Treats ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.679557204246521, 0.07825228571891785, 0.211414635181427]" +33707,A big red van nearly hit me yday when I was crossing the road in blanch. I've never called someone so many bad words in my entire life,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4285374581813812, 0.26923438906669617, 0.27734482288360596]" +32126, I love you and i miss youuu,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6597333550453186, 0.09409765899181366, 0.22318711876869202]" +31711,Bitches Be Mad When You Don't Feed Into They Bullshit ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4403055012226105, 0.2652948200702667, 0.2781049907207489]" +66349,Well that’s one way to start a Wednesday morning ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5038007497787476, 0.20290309190750122, 0.2729625999927521]" +56313, .... New Amerykah Pt. 2 is how I’m rockin out til Jan.10.2018,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5482592582702637, 0.14470511674880981, 0.2692181468009949]" +19216, Nice one.... ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😁,"[0.573072612285614, 0.13244076073169708, 0.2496301233768463]" +40521,It's just been less than 3 hours. What am I doing? ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.45599767565727234, 0.26280757784843445, 0.27639201283454895]" +63770, Thanks for the reply ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5173086524009705, 0.2026599645614624, 0.26437172293663025]" +61603, ......tomorrow my Friday ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😢,"[0.35517117381095886, 0.39210280776023865, 0.23534563183784485]" +38307, what's wrong ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3420976996421814, 0.41663700342178345, 0.2138013243675232]" +18700," Dear Lord! Give that kid a break, Jaeeee ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44642171263694763, 0.2585497498512268, 0.28087711334228516]" +58161, Congratulations Mrs. Rodon! Thanks for sharing such a great photo. We’… ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😎,"[0.6003668308258057, 0.09303197264671326, 0.2686282694339752]" +49649, Spiderman just watches ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49442407488822937, 0.2059279978275299, 0.2821325361728668]" +8671,"Bills getting paid , we eating good , feels good to have my ow shit again like fr blessed & humble",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4458419382572174, 0.2595154643058777, 0.28511711955070496]" +31870, are always here. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +8065,"""Advanced age"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4043036699295044, 0.2917059361934662, 0.2557772397994995]" +43610, NATE I STILL WANT YOUR DOG ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3255239427089691, 0.4253990352153778, 0.20679032802581787]" +4797, Notte a te ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.5298942923545837, 0.1918436735868454, 0.2563256323337555]" +40678,Werpa kays Sir Dave Norms bay ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6356207728385925, 0.09305617213249207, 0.24076512455940247]" +12826, Lmao okay I’m not the only one ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4774508476257324, 0.23846329748630524, 0.2641640901565552]" +23603,Starbucks christmas menu is out and im v happy ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4880768358707428, 0.23951458930969238, 0.2518359124660492]" +55928, Happy birthday to you hun!! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😍,"[0.7172294855117798, 0.045437105000019073, 0.19626155495643616]" +65280,I Love Tendy This Guy is Surely insane ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5298031568527222, 0.20119619369506836, 0.24742329120635986]" +1984,oh my god..!!! their convo.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4537930190563202, 0.27513647079467773, 0.2702900171279907]" +61607,bitys in my DM ion want u ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.44586682319641113, 0.24938946962356567, 0.27878138422966003]" +58069, Lmao I got you baby ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.45778536796569824, 0.24398420751094818, 0.2688109576702118]" +2522, good~night,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5939128994941711, 0.12645359337329865, 0.24236679077148438]" +53827, can’t argue with stupid!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4444294571876526, 0.2654067873954773, 0.2757524251937866]" +4593, Show me the stats that prove that pls ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.46293196082115173, 0.2615065574645996, 0.25778791308403015]" +49903, Literally ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4184972941875458, 0.31020116806030273, 0.2592976987361908]" +11096, my hero,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙏,"[0.48134806752204895, 0.0959566980600357, 0.3776770532131195]" +56119,It’s a Post Malone kinda day. Stoney album on repeat ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😌,"[0.6034750938415527, 0.13055936992168427, 0.23653504252433777]" +52381,I loveeeeee when people are rude as fuck for no reason ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.36280474066734314, 0.3661932945251465, 0.2412623167037964]" +39905, Youu talking toooo much.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45484647154808044, 0.2731517255306244, 0.26612064242362976]" +48090, who hurt u,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😤,"[0.25131914019584656, 0.4997364282608032, 0.18882572650909424]" +33114,look… ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😀,"[0.6229163408279419, 0.09536170959472656, 0.25175240635871887]" +30714, I could only have been happier if it was the ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6708246469497681, 0.07747922837734222, 0.2173866331577301]" +43563, Yesss! Let’s do drinks after work. :) let me know if you work in Burlingame ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.450635701417923, 0.2522369921207428, 0.2848116159439087]" +65157,"Yho, personal ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.49750423431396484, 0.2332455813884735, 0.21499836444854736]" +7396, Thank you! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +48673, Can I have a hug please? ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😭,"[0.34629809856414795, 0.40609192848205566, 0.21738535165786743]" +65197," Agree... Ask his ""GF""",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😀,"[0.6190367341041565, 0.09699225425720215, 0.24857279658317566]" +46168,Grandma was just tryna get her social security check. (I was lit on Halloween) ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.39758139848709106, 0.3159923851490021, 0.2504167854785919]" +26417, Dude hard for is the shiiiittt lol idk why but i like it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4338859021663666, 0.2817615866661072, 0.26289045810699463]" +5056,"I love how when my landlord came to collect rent today he saw the cheesecake I made and looked at my boyfriend and said ""you got a keeper""",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5250298380851746, 0.20556044578552246, 0.2524178922176361]" +67175,Im glad this is my baloch bhai y'all im proud n glad to have him Bye ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.439188152551651, 0.3043646216392517, 0.2460249960422516]" +15541,Something's are meant to be personal Dang Nique! Charmaine just put you out there... Somethings are better left unsaid! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5951585173606873, 0.13123980164527893, 0.24589824676513672]" +13262, bad bitch ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.46507275104522705, 0.23869889974594116, 0.27505606412887573]" +9398," look at discord pls, I need advice ",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😭,"[0.32378771901130676, 0.4409623444080353, 0.21022126078605652]" +1362,Nah I lied .... cause I'm hungry,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.400382936000824, 0.3340403437614441, 0.2611420750617981]" +27460,They can take me with you cuz im hurt ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3275548815727234, 0.4268284738063812, 0.21719640493392944]" +52532, Feel like this is the general consensus ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.39946410059928894, 0.33713412284851074, 0.2495654821395874]" +64983,GUYSSSS I NEED YOUR HELP ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44750306010246277, 0.20057381689548492, 0.30211788415908813]" +47147,Papa penny though ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5453826785087585, 0.1596846878528595, 0.2621166706085205]" +68476, Fugg freaking love this photo! They both look so Now can't wait for babies! So happy for them truly! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5750365257263184, 0.1615130752325058, 0.22543707489967346]" +61090,"And their pussy stank, they're catfishing ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43311113119125366, 0.2630715072154999, 0.27916058897972107]" +9279,The thought of giving up comes so easily sometimes ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.48584476113319397, 0.24163664877414703, 0.2566504180431366]" +58592,"Just seen a que call a delta his ""sawrah"" ... it made me smile ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.559840202331543, 0.16519694030284882, 0.25092703104019165]" +20500, FOLLOW ME CUZ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.488645076751709, 0.23141823709011078, 0.25859877467155457]" +19778, gentleman from HSBC called me and started investigation from me ..Thanks hope they find our money,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.5302742719650269, 0.17820550501346588, 0.2599550485610962]" +62223, Perfect response!,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5715981125831604, 0.1549084335565567, 0.2382608950138092]" +20519,I've cracked my phone screen today and I don't know how I've done it ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4290616810321808, 0.290502667427063, 0.26789286732673645]" +59017, Nate how big and strong is Porzingis ? Lmaoooo Harden did not make him fall that bad by pushing him ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.438487708568573, 0.27996301651000977, 0.2717573642730713]" +29286, I went straight online ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5260350704193115, 0.20550131797790527, 0.2566791772842407]" +45982,I’m in real life tears she really deadass rapping and I can’t take it seriously rn. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3400651514530182, 0.4253928065299988, 0.21668720245361328]" +58749,i want ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5159682035446167, 0.2066059410572052, 0.24774688482284546]" +49626, wait til we get wine drunk once you’re settled at your new place... then you’ll see,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4924056828022003, 0.20237962901592255, 0.27576014399528503]" +13636,Aye people born 97-99 are funny af ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5418858528137207, 0.18942983448505402, 0.25240305066108704]" +22749,Birthday month,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.5083065629005432, 0.1985233724117279, 0.2735195457935333]" +17977,Cry baby ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.5205056667327881, 0.2357480674982071, 0.14990761876106262]" +5844,Words from my side nigga ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😅,"[0.43257907032966614, 0.2992280125617981, 0.2636221945285797]" +24495,the Dominican lady that's doing my hair is cakingggggg ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😅,"[0.45973458886146545, 0.2782599925994873, 0.2490740716457367]" +13770,Okay this my mood now that I️ done had a little prosecco in me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5514087677001953, 0.15888875722885132, 0.2508603036403656]" +39308,Check it Out!📽️SR-SZN Highlights Premium2018 QB Hs(TN) commitProfile… ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😌,"[0.5897918343544006, 0.13108423352241516, 0.2458612620830536]" +15561, Had any of y’all? Because... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +18912, ur on time bb unlike me for urs ❤️ thank u ily!! hope cali is treating u great boo,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😀,"[0.6292654275894165, 0.09164111316204071, 0.2476409375667572]" +31473,someone stole another fucking pumpkin ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.3727692663669586, 0.37243688106536865, 0.23488065600395203]" +22015,Loool that look at the end though ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41419631242752075, 0.3235471844673157, 0.2536752223968506]" +27377,"Hispanics have cool cousins, creepy cousins, the cousins you didn’t know were your cousins and the cousins you pretend aren’t your cousins",😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.36059442162513733, 0.35880184173583984, 0.24292784929275513]" +32648,"track 13 — the ""like me"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4389209449291229, 0.29710009694099426, 0.2579828202724457]" +35900, oh my ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.46237772703170776, 0.2589385211467743, 0.2729373872280121]" +29109,that is so rude wtf. he'd be getting broken up with ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3348824679851532, 0.41824573278427124, 0.22098812460899353]" +21108,That about sums it up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +59420,Puberty hit him hard ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4850427806377411, 0.19961893558502197, 0.2889358699321747]" +26472,Y'all know IDGAF right ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43510812520980835, 0.28187426924705505, 0.2695038914680481]" +14325,Im a old school And I cant help it! ... ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4258767068386078, 0.2645043432712555, 0.28436800837516785]" +38885," you can talk to me about it then, you have my number ",😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😅,"[0.4288971424102783, 0.29260891675949097, 0.25627556443214417]" +7000, Yessir that’s the plan!! Thank you bro ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.45530590415000916, 0.24999535083770752, 0.27388036251068115]" +61489,Just one more glass before bed ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.47127363085746765, 0.2524290978908539, 0.27085962891578674]" +54138," WE PENSIONERS, ARE IN HELL GROCERIES IT'S ONLY A WISH",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.40222033858299255, 0.3264096975326538, 0.24574527144432068]" +50740," Sorry, he didn’t, but am sure he will soon...",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4423874020576477, 0.28376534581184387, 0.2728659212589264]" +3209,Does not give birthday treats anymore? Just realized I never got an app message & never got my drink/meal! ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.5167398452758789, 0.21159929037094116, 0.2591547667980194]" +27471, It was the prayer sway! It always worksss!,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😏,"[0.4320690631866455, 0.09952451288700104, 0.43813005089759827]" +23427, Lol where do you work? I’m looking for a second job‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.369460791349411, 0.36004406213760376, 0.23884317278862]" +23953,First draft jadual final exam dah keluar ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.44369181990623474, 0.21135303378105164, 0.30716487765312195]" +57467, Oh no Well I’m glad you like them ha!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49253806471824646, 0.2373446822166443, 0.265182763338089]" +57258,"i find this funny i get it, i'm weird ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45638230443000793, 0.2566700279712677, 0.27451542019844055]" +51320, Thanks bro appreciate it so much ❤️❤️,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5167707800865173, 0.13290037214756012, 0.3002476394176483]" +64949,Thats how we tighten our bond ?¿ ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😅,"[0.4162917733192444, 0.3059564232826233, 0.249027281999588]" +31060, Lmao it's real lit we def need a corner or too though ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4500277042388916, 0.23725323379039764, 0.28331565856933594]" +68657,Hitting them protein goals like ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😌,"[0.5782325267791748, 0.14192402362823486, 0.24998366832733154]" +15836,"if you sing along , a lil' fucking louder , to a happy song...will you be alright?-bring me the horizon-",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",🙌,"[0.6611542105674744, 0.08556541055440903, 0.23035061359405518]" +28067,Sleeping peacefully tonight. ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.41770994663238525, 0.31002604961395264, 0.24313923716545105]" +54034,Really sorry for being inactive ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.4069022238254547, 0.3312474489212036, 0.24739128351211548]" +28986, save me ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4159741997718811, 0.3086144030094147, 0.2472056746482849]" +2797, wow wow wow watch that mouth Chris ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😀,"[0.6263280510902405, 0.09456054866313934, 0.2461278736591339]" +17558,no I will not stop sir ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44192105531692505, 0.26692262291908264, 0.26330167055130005]" +1714, Well why should he he dose not talk about you on the crew chat at all but you talk about him loads and loads tho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43245571851730347, 0.26170894503593445, 0.2885073721408844]" +52520,My thoughts on these pictures is that he is my husband and that is our son. My favourite kind of view ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.6806272864341736, 0.07094157487154007, 0.21540749073028564]" +50191, Thanks SharkbiteI miss you!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6088509559631348, 0.13832148909568787, 0.22369012236595154]" +67685,why does my brain want to shut off 2 days before my midterm ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.46303755044937134, 0.2364465445280075, 0.2723482549190521]" +12202, Hell lets leave it plus nna I'm clueless when it comes to the Bible,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.432277113199234, 0.24895645678043365, 0.2928076982498169]" +1226,verbatim by blackbear ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +39754,Forever Shellz ☝,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5724267959594727, 0.11682029068470001, 0.28283289074897766]" +51739, Gorgeous!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5841270089149475, 0.1335219293832779, 0.19088849425315857]" +51202, You are welcome! can't wait to see what you do next!,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5602643489837646, 0.14762330055236816, 0.2616029381752014]" +52447, Hardest question of the day MAKE WAY FOR TZH TRAILER,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4554021954536438, 0.19470739364624023, 0.31813374161720276]" +22462, Thank you very much. It’s a stubborn thing but so am I I’ll get there. Speak again soon and see what’s spinning then.,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.47402065992355347, 0.24700261652469635, 0.2597585916519165]" +51470," No, wished it was.I normally get the kids one of those for Xmas.x",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.5070664286613464, 0.2062394618988037, 0.26743194460868835]" +46022,I’m about to take the BEST nap after this class ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.49675261974334717, 0.23368890583515167, 0.25664854049682617]" +30774,FOX5ATLANTA reports PaulFromFox5: Come back to Atlanta soon GoodDayAtlanta ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😅,"[0.48295581340789795, 0.2563890516757965, 0.247196227312088]" +54435, Last pic tho so cute ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",🙌,"[0.6489718556404114, 0.08833903074264526, 0.219923734664917]" +45235, On god ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5167338848114014, 0.17994658648967743, 0.27338555455207825]" +14419,Y’all need to stop this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.4019390046596527, 0.3190135061740875, 0.2380099892616272]" +65284, Awhhhh i miss you tooooo ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4917725622653961, 0.24993710219860077, 0.23995736241340637]" +39076,Funniest thing I've seen in timee ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33553987741470337, 0.40322643518447876, 0.22692224383354187]" +23626,Me: All I want to be is to be loved...Mum: MOVE ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4965265095233917, 0.2318977266550064, 0.24443486332893372]" +35445,🖐more days till the greatest day of the month. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.47705724835395813, 0.22404365241527557, 0.2834494709968567]" +42349, Okay you completely bodied this Eugene ❤️,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.44317302107810974, 0.2778570353984833, 0.269295871257782]" +20976, and here we go ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +13203, Good luck to trying to get that price. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6081631779670715, 0.11783364415168762, 0.23653051257133484]" +18519, I just assumed you already did.,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😅,"[0.44326040148735046, 0.2934093773365021, 0.25869569182395935]" +44584,See anyone familiar? ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5701534748077393, 0.12980878353118896, 0.2675487995147705]" +24079, Thanks Ruth ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6982937455177307, 0.06319554150104523, 0.2115325927734375]" +19389, that darn BBC! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4932596981525421, 0.22686268389225006, 0.2641248404979706]" +27599,IM CRYING ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.3297511041164398, 0.42225030064582825, 0.20348283648490906]" +55823,“Hellooo” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6542931199073792, 0.08564292639493942, 0.21727898716926575]" +64245,Another day another breakthrough ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.47958365082740784, 0.22678574919700623, 0.2759774923324585]" +16403,Vape nation god bless ☝and pray to the vape gods,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.482265830039978, 0.10653692483901978, 0.3603455126285553]" +44552, I was going to loose my head ... But read it twice Right now ✌,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34014856815338135, 0.40651458501815796, 0.21242299675941467]" +56878,"I have an exam tomorrow, bout to study tonight, at work & right before class ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.289363831281662, 0.4750369191169739, 0.19537827372550964]" +32255, It's tough. I hit 9 out of 25 which I am happy with for a 1st go. But I could hardly hold the weight of the gun lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5293200612068176, 0.19566433131694794, 0.2570275366306305]" +48816, I changed it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4667106568813324, 0.24654385447502136, 0.2758365273475647]" +26669,My husbands a div ‍️‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +7868,22 more days to go. ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😭,"[0.30956101417541504, 0.42670610547065735, 0.21290281414985657]" +12051,"Things i need....Crystal Snow single, Wings Tour Japan DVD and 4th muster tix ",😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😔,"[0.31573358178138733, 0.4432555139064789, 0.2130131721496582]" +45281, we don't know what we want,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.447746604681015, 0.26511722803115845, 0.26938891410827637]" +35924,"And that's why you don't trust garbage, terrible, awful pitchers that used to play with the Texas rangers! ",😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.3801540732383728, 0.34455281496047974, 0.24821850657463074]" +720,We appreciate the support bruv ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.485767662525177, 0.1875247210264206, 0.2910892069339752]" +22030,Meet Bruno.. our latest training puppy and super smart!! Gorgeous too ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5233272314071655, 0.2080964297056198, 0.2552669942378998]" +64816," Haha, I had the exact opposite experience in Japan. The water and seat were heated, not a fan lol. Where do I turn it off?! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4293377697467804, 0.28505584597587585, 0.26714858412742615]" +52474,"Idk if it's just me , but as SOON as I eat any dairy or specifically drink iced coffee, I be farting up a storm & I get sleepy",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.2936616837978363, 0.44823703169822693, 0.1891641914844513]" +51168,"Just have to say..dealing with the ignorance of the inbreds..called tRumptards...the ""mute"" button..brings such..relief",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.46779391169548035, 0.25212913751602173, 0.2700459361076355]" +14094,Happy ThursdaySri Rama JayamGood Morning akka and all ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.673315703868866, 0.07953052222728729, 0.22855842113494873]" +12291,You are mine day dream ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4484952390193939, 0.2809564769268036, 0.2617679536342621]" +20133,My colleague gave me 30 cubes with a msg 'for conspiring to make us fat' ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4799841642379761, 0.23800121247768402, 0.25954702496528625]" +38169," Yes, mine too. Hope u do ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5431994795799255, 0.16581393778324127, 0.26111623644828796]" +63413,Matching with my son ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.42467203736305237, 0.3209015130996704, 0.2430104911327362]" +13682,“Why you acting bratty?” MEEEEE ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.32519933581352234, 0.4279076159000397, 0.21313196420669556]" +37695, I️ was thinking that,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😊,"[0.6787402629852295, 0.07406492531299591, 0.2101198136806488]" +37799, I almost yelled yes!!! On a crowded train ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4437558352947235, 0.2533003091812134, 0.28972113132476807]" +22453,"I'm cognizant of the fact that my stresses are so trivial in the grand scheme of things, but I'm still so upset. How do I make it all stop?",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.43985894322395325, 0.24492208659648895, 0.2971404790878296]" +38922,"Since we’re alone, please choose me to be able to hug Niall, this would mean the whole world! ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😭,"[0.35400524735450745, 0.398664265871048, 0.2244689166545868]" +54581, Wow 'd and following. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5845164656639099, 0.12410694360733032, 0.25966957211494446]" +7759,I GET TO SEE MY MAN TONIGHT!!! I miss him so much ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38831502199172974, 0.3710530996322632, 0.2319732904434204]" +59779, I wouldn’t go to group and they’d tell me they were gonna keep me longer if I didn’t start participating ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4144824743270874, 0.26853322982788086, 0.28816255927085876]" +60228,Where’s Jose I need him to help me study for my test ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3172987103462219, 0.38600561022758484, 0.2354893684387207]" +62146,SUPER HELLA AF jealous of anyone that got to see Post Malone ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.39288321137428284, 0.3455415368080139, 0.24359947443008423]" +31429,When they are too much.. and instantly you snap with their dramas. ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😁,"[0.512977123260498, 0.16914339363574982, 0.2820488512516022]" +48226,When you know what's right and are the gatekeeper you know every trick in the book ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45656800270080566, 0.24695272743701935, 0.27706727385520935]" +63370,Laid Up & Watched Netflix . ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4762856960296631, 0.25449448823928833, 0.22555217146873474]" +27202," 1,000. gotta free the family. ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4612899124622345, 0.2501222491264343, 0.2770856022834778]" +5689, I felt it for you. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.3046993017196655, 0.4492138624191284, 0.21585509181022644]" +30503, I have no idea who you are. Came upon this by accident. But you appear to be a major league asshole POS. Bye,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.44521987438201904, 0.2651391625404358, 0.2738872170448303]" +54006,I don’t feel good at all ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3618123233318329, 0.38771766424179077, 0.22481894493103027]" +47285,Gotcha! ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😏,"[0.45444291830062866, 0.08437824249267578, 0.4115576446056366]" +11645,His Smile After Hitting That huge Six ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.5956685543060303, 0.12678363919258118, 0.24637332558631897]" +49890,The way I got curved ‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.503383994102478, 0.17049889266490936, 0.2842599153518677]" +41011, george,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5615324974060059, 0.16800542175769806, 0.24877014756202698]" +28157,Idwc pisses me off cause 1. Hes usually right bout black women i fuck with 2. He always trying pawn me off on white women ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4166465997695923, 0.3147472143173218, 0.25864720344543457]" +52470, YASSS It's time for a great show CDSavageSquad:Porsche giveaway sen ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😍,"[0.7120986580848694, 0.05822291225194931, 0.1983570158481598]" +58903, You're funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45497480034828186, 0.27077680826187134, 0.2733498811721802]" +7017,Wanna go home naaa,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😢,"[0.3580286204814911, 0.3945094347000122, 0.2206602394580841]" +59561, The coolest one around yo ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5501709580421448, 0.16627287864685059, 0.25625813007354736]" +43095,So pretty ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5394349694252014, 0.19163697957992554, 0.25734275579452515]" +53450, I sure will when you see my request my name starts with a E and ends with a N I won't say the full name… ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.44295358657836914, 0.2679099142551422, 0.27634257078170776]" +63319,And why did it have to sting me in my pinky ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😅,"[0.416996568441391, 0.3190673589706421, 0.2540035545825958]" +3867,You know LONDON but you go to Hampstead to get cheaper items ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5706300139427185, 0.1492781639099121, 0.25009047985076904]" +44855,Listen here. You are beautiful. Look at that profile picture. are you real? ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5500085949897766, 0.16341839730739594, 0.2514280378818512]" +44695,Anyways I love this fake relationship so much y'all can stay mad I guess. ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.5118139386177063, 0.17819370329380035, 0.27592480182647705]" +45838, Amen,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.48897236585617065, 0.09773151576519012, 0.3680305480957031]" +41827,Words can't even describe how much I miss my babe just wanna be w him right now ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3486865758895874, 0.41350117325782776, 0.20564725995063782]" +20722, YASSS It's time for show R6RiCo : ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😊,"[0.6952530145645142, 0.06878440082073212, 0.21170300245285034]" +4162,Demi Lovato is going on tour and I am DETERMINED to see her if she comes to Texas ♥️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.542851984500885, 0.1748967468738556, 0.2623439431190491]" +49060,That's fucked up ‍️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3726806938648224, 0.3788904845714569, 0.2297283411026001]" +47413," We miss you too, ate Camille! We hope you can visit us soon ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6636380553245544, 0.08534765988588333, 0.22916635870933533]" +34501, In France you love muslims and immigrants to not be considered as fascist ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.48898208141326904, 0.23278121650218964, 0.26752641797065735]" +41649, only an Asian would go this far.... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5407087206840515, 0.18298733234405518, 0.2583818733692169]" +20920, it really is ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😅,"[0.4188983738422394, 0.3080568015575409, 0.24357905983924866]" +30216, Keep holding onto that Took y’all 100+ Years,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5623698234558105, 0.1652250736951828, 0.24944272637367249]" +56682, people have found out about my diet coke addiction.,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.37344682216644287, 0.3651036322116852, 0.23467031121253967]" +10493,I'm doing starting today! I love this . ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.5914139151573181, 0.14039291441440582, 0.23658537864685059]" +9047, This shits got me crying like a lil bitch ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3324746787548065, 0.4206930994987488, 0.21684491634368896]" +5087,I don’t think I ever been more upset than the time Jim’s Steak ran outta steak ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3878837823867798, 0.34229663014411926, 0.25100165605545044]" +64008,my bestie is bad ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5157942175865173, 0.20372457802295685, 0.2563977539539337]" +18791,The funniest shit I heard was Charlemagne said Wendy William's had seen the angel from the Crossroads video. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41987308859825134, 0.30876776576042175, 0.25832974910736084]" +64764, Good morning! Here too! So no work !,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",🙌,"[0.6262702941894531, 0.098207026720047, 0.2376740574836731]" +39971,Guess who’s hair is a uniform color again!!! Back to jet black ! ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😢,"[0.37146908044815063, 0.3725777268409729, 0.230192631483078]" +21661,I want the last word ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3450430929660797, 0.4079192280769348, 0.21700924634933472]" +51904, he hates vegetables ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.2930799424648285, 0.4757813811302185, 0.18712294101715088]" +30697,I made my boyfriend watch Mean Girls with me when we were in Colorado and he can literally quote it better than I can. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5371585488319397, 0.1901099681854248, 0.25622591376304626]" +57542,"Been working so much, trying to pay for school and rent. Like I'm tempted to get another job to try and buy Demi tickets, cuz I'm broke. ",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😭,"[0.3473559617996216, 0.4034258723258972, 0.22509384155273438]" +4897,Anybody can go to the warriors and fit in ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4777810275554657, 0.24468696117401123, 0.2692892551422119]" +1640,shet gusto ko mag thailand ☹️ take me back ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😢,"[0.383945107460022, 0.3430037200450897, 0.249836266040802]" +26353,I hate when niggas twitters private !!!!!!!!!! Yeah Juan this is for you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43516263365745544, 0.27427127957344055, 0.2682490646839142]" +3837,i cant wait to get my nails done,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.42200058698654175, 0.30558061599731445, 0.23691082000732422]" +26126, our Mc Lido Hotel JHB South R120 at computicket ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.44314101338386536, 0.2649361789226532, 0.2756240665912628]" +48314,Nah FAM ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4727541506290436, 0.22880350053310394, 0.27831411361694336]" +24424,"Right, like come on ",😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.38768965005874634, 0.3651428520679474, 0.22130087018013]" +58036, lmao my boy done grew up on me,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.498216837644577, 0.2230832278728485, 0.26100119948387146]" +38394, ur a cracker now? ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😁,"[0.53500896692276, 0.1882299780845642, 0.25515833497047424]" +50235,i can’t wait to buy a house with michael ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5160484313964844, 0.21424372494220734, 0.25883740186691284]" +4849," That's usually the case for super fun games, especially ",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.5833276510238647, 0.13598677515983582, 0.2507667541503906]" +19702,Jade Brady your competition is heating up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45073407888412476, 0.2564816474914551, 0.2778709828853607]" +42112,Why are you being so dramatic. A little fight has never really hurt nobody. sa ipateng ka rona. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.40932387113571167, 0.32213905453681946, 0.25606536865234375]" +18926," Sir,When u sick doc ask tp eat only such dish, our economy is sick thats why govt ask to eat only khichdi.",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4717603325843811, 0.2453768402338028, 0.27268531918525696]" +16841, MY FAVORITE ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6557084321975708, 0.09064064919948578, 0.2076530158519745]" +63018,They had a bread stand set up today with roasted red pepper humus out... bihhhh,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.46264439821243286, 0.25081077218055725, 0.275154173374176]" +24824, saumya mam sorry to you what happened to your father we pray that he is happy wherever he is : we love mam ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.48712673783302307, 0.18080221116542816, 0.30399036407470703]" +68092, Sorry ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😅,"[0.4455568492412567, 0.29272037744522095, 0.2602755129337311]" +66633,"Ik I’m growing up I can’t sleep all day or all night unless I get my luh baby cuffed up next to me, if she ain’t I’m on the run ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😎,"[0.6012896299362183, 0.10754692554473877, 0.25815075635910034]" +68052,Meanwhile Param-Harshita will be conversing over their dresscode for today’s chat session! bff wala same pinch… ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😁,"[0.5473844408988953, 0.18126311898231506, 0.24977520108222961]" +35864, what about every other arizona team? least the dodgers made the play offs last 4/5 ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3757135272026062, 0.36093616485595703, 0.24013108015060425]" +56407,Wow girl byeeeeee we ain’t got time for that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.473773717880249, 0.22082717716693878, 0.28266939520835876]" +7645, Mxim! You're never getting an oreo mcflurry from me,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😁,"[0.5343016982078552, 0.19293487071990967, 0.2562180161476135]" +50912,Walking dead new frontier so lit .. Episode 5 tomorrow.. And some dota 2 new patch.. After work ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.5068544745445251, 0.1976184993982315, 0.265938937664032]" +38354,Dats hard ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43037956953048706, 0.2512845993041992, 0.2933752238750458]" +25824,Hate this 1st of the month shite but ............ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3720940351486206, 0.3652465343475342, 0.23861858248710632]" +56559,Really? Where’s there 3 countries missing that have had teams win the European Cup? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48765987157821655, 0.24015551805496216, 0.26574134826660156]" +47191,I remember twitter funerals ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4544220268726349, 0.2422986924648285, 0.28406187891960144]" +14123,The laugh I let out when I read this ⚰️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5631433129310608, 0.1634920835494995, 0.2484722137451172]" +5000, Haha I have no idea . We do share a brain ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4569084644317627, 0.22878727316856384, 0.28273725509643555]" +9020,looks great ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😁,"[0.541911244392395, 0.13416613638401031, 0.29157936573028564]" +46946,chris browns new album ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6533109545707703, 0.08081239461898804, 0.2249361276626587]" +53698,And i thought they were on vacation ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.42897167801856995, 0.3026737570762634, 0.257376104593277]" +63340,I Can’t Wait Till My Schedule Changes Next Week ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3636679947376251, 0.376723974943161, 0.22849518060684204]" +3297,Did I just hear Sevilla or Moscow fans singing a version of Will Grigg on fire? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4672603905200958, 0.2442382574081421, 0.27959224581718445]" +15538,I love fries ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6187967658042908, 0.12014473974704742, 0.2295704185962677]" +49132, If you ever need someone to interview concerning the subject of (TNG) slash... ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.593582808971405, 0.125328928232193, 0.24728506803512573]" +15626, love you,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +67656,Black on black hate is disgusting ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😭,"[0.313432514667511, 0.43241047859191895, 0.20389655232429504]" +49263,Trying on a shirt that I haven't worn in two years wasn't fun ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😢,"[0.3627457916736603, 0.3942050337791443, 0.22587528824806213]" +28463, Hope it's mine you'll be thinking of ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.603846549987793, 0.11180461943149567, 0.24808114767074585]" +66929,Can't fold or cry when you go through shit the struggle suppose to make you go harder ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4485788643360138, 0.26372599601745605, 0.27565523982048035]" +41919,hes still with the army necklace ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5764409899711609, 0.1355292946100235, 0.26033535599708557]" +32535, What?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +1107, You're pro-life?Interesting.,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3853802978992462, 0.3391488790512085, 0.24253174662590027]" +2089,shet too much beauty in 2 pics ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6160113215446472, 0.1137719601392746, 0.2390422821044922]" +6549,Bitchhhhhhhh thanksgiving is this month ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.42756974697113037, 0.3075568974018097, 0.2586055397987366]" +5130,A month ago I wouldn’t have found this funny but I started watching friends like a week ago and it’s hilarious ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.42029303312301636, 0.3144056499004364, 0.2572749853134155]" +4627, can't wait to see you sister!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5602639317512512, 0.1687578409910202, 0.23536989092826843]" +10589,I want fish & shrimp fried rice from Que's ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3685019910335541, 0.3713260293006897, 0.22942033410072327]" +3468, congratulations! Excellent progress! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😎,"[0.6055586338043213, 0.09438590705394745, 0.2731841206550598]" +60688,"People really upset cause people celebrating they hometown team for winning the World Series, Dumb ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4265962541103363, 0.278374582529068, 0.2760356068611145]" +63887,im high off you babe ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.5030779838562012, 0.2330835461616516, 0.25596514344215393]" +68477, with her fan ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5319327712059021, 0.15003623068332672, 0.275839626789093]" +22082, never that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +12293,I’m done with Tyrese ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😌,"[0.5913475155830383, 0.13013076782226562, 0.24056589603424072]" +4005,I want a Dog for Christmas ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3462299406528473, 0.4062637686729431, 0.213115394115448]" +7931, Sir seemed to having a good company Looking Adorable & Handsome as always ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5233929753303528, 0.20929847657680511, 0.2171243131160736]" +56698, It is ok to be biased towards our teams,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5622789263725281, 0.1480364203453064, 0.2659114897251129]" +25966,Y'all outta control ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3760531544685364, 0.361616313457489, 0.2395876944065094]" +23671,My mum was right about every one of them! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3638170063495636, 0.39753878116607666, 0.22124895453453064]" +44877,iam waiting for a grandslam!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😎,"[0.6043842434883118, 0.09903974831104279, 0.2554582953453064]" +40334,We know bitch mind ya business ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5037516951560974, 0.21398243308067322, 0.2644157409667969]" +42446, So sad..,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3209979236125946, 0.42390596866607666, 0.19016805291175842]" +26127,"Get outta work early, nap with mama bear it is",😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😢,"[0.36409762501716614, 0.3783034086227417, 0.2287643551826477]" +67494,Hate my life never allowed out again ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36622944474220276, 0.3593018352985382, 0.2329617440700531]" +44166, I love Pamela's face moving from being Joan to herself ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.5039063096046448, 0.19497713446617126, 0.28175756335258484]" +43245, I think your phones broken ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4303029179573059, 0.27910906076431274, 0.266055166721344]" +59237,He has my heart oh my god his smileeee ♥️ he makes my heart so happy ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.46482428908348083, 0.27904653549194336, 0.23961138725280762]" +52339,Really need gym but really want bed ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😔,"[0.3214535117149353, 0.44301357865333557, 0.20218876004219055]" +67356,Thank You God for waking me up today ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.6075587272644043, 0.11907768249511719, 0.24309223890304565]" +21855,It's so relaxing knowing that I don't have to do a repeat of last year and stay up all night watching the exits of Beddow for drunk people ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5480208992958069, 0.1725466549396515, 0.2521836757659912]" +7531, the guy will start to feel sharp headche and stomach acge immediately..,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.3363582193851471, 0.4010763168334961, 0.22520732879638672]" +2897, say na river plate ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4460676610469818, 0.25189611315727234, 0.28493139147758484]" +19649," Thank you Orlaíth, will do all the best! ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6278020143508911, 0.10256977379322052, 0.23980453610420227]" +22178, H-town ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😅,"[0.4832211136817932, 0.2550472319126129, 0.2465621829032898]" +5804,This Spurs game ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4404144585132599, 0.2856442332267761, 0.269194096326828]" +21061," Of course so sorry, that was near you.. so much bad news its hard to keep up ",😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4514511227607727, 0.2461315393447876, 0.2819524109363556]" +54249," toooootally late, lol but happy birthday babe! ",😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6320397257804871, 0.1035311371088028, 0.23829874396324158]" +35551, Beating LA ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5126563906669617, 0.191239595413208, 0.26657792925834656]" +34256,"happy birthday gf!! celebrate accordingly, love u always ❤️ ",😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😘,"[0.7483744025230408, 0.04331696406006813, 0.19030892848968506]" +17103,time 2 bulk ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.44116634130477905, 0.2653041481971741, 0.282493531703949]" +601,It’s November so that means January is two months away,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😁,"[0.5227122902870178, 0.16784706711769104, 0.2722266614437103]" +10577,There are so many sins I can never ever atone for ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😤,"[0.27220994234085083, 0.48155540227890015, 0.19811096787452698]" +50069,She needs to put her arms down jk don’t @ me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44070932269096375, 0.23517315089702606, 0.29845744371414185]" +46982,I should've named my son,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.39756834506988525, 0.3412017822265625, 0.22956937551498413]" +32024,"I want a baby, actually won't boys ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4627649486064911, 0.2461227923631668, 0.2711274325847626]" +19511, I hope she's putting small doses of arsenic in his dinner every night ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😎,"[0.5922768712043762, 0.1177757978439331, 0.2567163407802582]" +13214,"IDGAF how inadequate you made me feel, I'm handsome and I got hella kings to tell me so ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😅,"[0.4279460608959198, 0.3011070787906647, 0.260764479637146]" +31996, there's a dance off scene between two cheerleaders in like the 8th episode and that's when i decided i'd had enough ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4150969684123993, 0.3093239665031433, 0.2624208331108093]" +56266,That shit look fun as hell to me ‍️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4416819214820862, 0.25362297892570496, 0.28499889373779297]" +46799,Missed a whole exam ☹️ KMS,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4454250633716583, 0.2942163646221161, 0.2598001956939697]" +58424,Honestly karma is so real,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😢,"[0.349752813577652, 0.38344481587409973, 0.23246777057647705]" +18314,I never like these kinda hashtags. Please come up with something new team. ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.5183085203170776, 0.20998282730579376, 0.2555157542228699]" +60359,Last night was a spooky one here’s to the end of spooky szn it’s time to be thankful ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.5756091475486755, 0.13957944512367249, 0.2594640254974365]" +34444, Bihh I’m dead ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45239391922950745, 0.25399884581565857, 0.2764424979686737]" +8716,Entire tl is all about you what have you done?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4504077136516571, 0.2594117820262909, 0.26771309971809387]" +44640, That’s a joke that never gets old ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43180620670318604, 0.26326504349708557, 0.27683472633361816]" +16197," Hi Tyler, thanks for following me. Ive written about 12 Christian Childrens Books! They are better than Disney CartoonsJs!",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5334487557411194, 0.17709065973758698, 0.2641485631465912]" +555," they say olive, either you like em or hate em one of the objekts in food i never learn to love",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4634142518043518, 0.2691901922225952, 0.25797581672668457]" +14254, You know it,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4670252501964569, 0.20194599032402039, 0.2885521352291107]" +58895,On To The Next One!!!!!! Robin Hood The Musical: A Tale of Love and Revenge.… ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6243375539779663, 0.11409011483192444, 0.2322196364402771]" +61108,this so sweet ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.45917925238609314, 0.28345000743865967, 0.25952062010765076]" +28248,Ex-Mariners ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.36741307377815247, 0.35890868306159973, 0.24502632021903992]" +23156,I don’t ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.45231273770332336, 0.2441103309392929, 0.28449714183807373]" +30615,Don’t know who dis is but she look iconic af ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.42958399653434753, 0.29716384410858154, 0.2689955234527588]" +2904,i ain’t make it to Taco Bell FML ‍️,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4317008852958679, 0.24885214865207672, 0.2950797975063324]" +14370,BUSS THAT PUSSY OPEN LIKE A COCONUT ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.4489315152168274, 0.24908225238323212, 0.27560779452323914]" +41754, You need to bring Jihoon along for the obvs reasons . Bring them to Murni!! Or are there b… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4528501331806183, 0.2678656578063965, 0.26143234968185425]" +58149," Nah u Assume, explode, and then argue. Then u ask the question. That shit work. Ion know why im still single tho fam ",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4421675503253937, 0.26583486795425415, 0.2740122377872467]" +38929,Only 4 perfs left of Dirty Rotten Scoundrels Absolutely LOVE this show. A new fave don't miss it! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5654205083847046, 0.16847768425941467, 0.24182230234146118]" +32280,think the same! ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.471995085477829, 0.25285521149635315, 0.26278629899024963]" +20233," Yup, the devil owns my soul ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4339907169342041, 0.2589067220687866, 0.27517518401145935]" +37199, YASSS It's time for a great show smokay_420: ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😊,"[0.7001132965087891, 0.06732846796512604, 0.20997396111488342]" +57935,I got away from a speeding ticket because of this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41659364104270935, 0.28427526354789734, 0.2695792019367218]" +14677,The last one got me gone ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37199947237968445, 0.35967588424682617, 0.23652836680412292]" +45264," my dad just said the only thing i know in english its ""okay"" fuck me ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3690769374370575, 0.37778204679489136, 0.2313232421875]" +68619, help pls,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.46424558758735657, 0.10692892968654633, 0.4001348614692688]" +36692,Someone make plans w me tonight ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4912806749343872, 0.2134057879447937, 0.26463836431503296]" +63701,if my boyfriend think ima stop being friends w a dude cause he said so... he's absolutely right ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38584592938423157, 0.3499372899532318, 0.2417314052581787]" +49156,"Dear white people, we want the land and our language back . ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4546210765838623, 0.2382717728614807, 0.2849675118923187]" +55622,"Hey I would really appreciate a new pair of sneakers, i’m really struggling to buy some I hate to ask and i hope you understand",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.4876709580421448, 0.2207345962524414, 0.2711173892021179]" +15571, Omg lmao your reply’s are crazy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37951213121414185, 0.35533761978149414, 0.2415449023246765]" +31864,Smile. It intimidates those who wish to destroy you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6603829264640808, 0.08114252984523773, 0.2182772159576416]" +16591, take out a loan ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +65808, Now eagerly awaiting pictures when you plan that day trip ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😌,"[0.5825195908546448, 0.14094378054141998, 0.24555644392967224]" +24152, ❤️ Outstanding!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4544300138950348, 0.2240917831659317, 0.29112109541893005]" +31419,out of college early due to me and my friends not having nothing to do during study ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38798192143440247, 0.3527091145515442, 0.2370736002922058]" +67982,Yep bakit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47484320402145386, 0.2457592636346817, 0.2692239582538605]" +37143, you don’t need these hoes ❤️ I got you back fuck those who cheat,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3685295283794403, 0.3731722831726074, 0.2314159870147705]" +50371,My to brother ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😅,"[0.45155102014541626, 0.2831297218799591, 0.2674204409122467]" +30523,"Now I gotta hear all these shitty Angel, Giant and Padre fans say shit all year like their teams actually were good this year ",😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😅,"[0.42422056198120117, 0.3010619878768921, 0.26512524485588074]" +11315,"I love how I clicked on this tweet notif like I click on my moms texts, right away. loving Niall since day 1 ❤️ ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5624340176582336, 0.16812896728515625, 0.24655738472938538]" +30390,Had brownies and ice cream earlier ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.665644109249115, 0.07630985975265503, 0.22811678051948547]" +62622,Looking At All The Flicks From The Weekend ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.6773062348365784, 0.0696663111448288, 0.22085532546043396]" +46304,Saturday was too fun for my liking ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.5117732882499695, 0.21780429780483246, 0.2584913372993469]" +59804,Did y’all see that ring? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4636915326118469, 0.2709724009037018, 0.24673056602478027]" +8064,"Jah Jah please work on me, father God still work on me ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😢,"[0.40165629982948303, 0.32300901412963867, 0.2540842294692993]" +62789, Slow yo role shorty ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43530821800231934, 0.28333020210266113, 0.2681128680706024]" +62870,Really ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4188983738422394, 0.3080568015575409, 0.24357905983924866]" +11389,MAKE WAY FOR TZH TRAILER ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.48124241828918457, 0.1750146448612213, 0.3100287914276123]" +13070, Yea how to text people back to apparently ‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.39815202355384827, 0.33621764183044434, 0.2516759932041168]" +59132,YOURE RUINING IT FOR EVERYONE SHUT UP ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36136171221733093, 0.3266547620296478, 0.2544071674346924]" +37343,yes i was like wtf ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4418282210826874, 0.28556758165359497, 0.267131507396698]" +53143,My Sub 3... ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😢,"[0.38023701310157776, 0.37243586778640747, 0.22769364714622498]" +46462,Lmaoooo my sis said “she need a refund on the good pussy she gave up “ bc he turned out not to be shit ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3611111342906952, 0.38725098967552185, 0.2298589050769806]" +50987, many I could list. ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.4433520436286926, 0.25201812386512756, 0.28375568985939026]" +60983, Ohh. Well u could take a bubble bath. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😭,"[0.33038029074668884, 0.4182519316673279, 0.2156202793121338]" +58579," My entire family since 1987 for weddings, baby showers, family reunions, Easter, Christmas and thanksgiving ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4320701062679291, 0.2979137599468231, 0.2568794786930084]" +27961,To writers- have any small town boys in your stories? Totally just listened to “Small Town Boy” and thought of this ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4951271414756775, 0.23268406093120575, 0.2629179060459137]" +34763, DELETE TGIS IM NEVER GONNA UNSEE THIS ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4876061975955963, 0.2216038852930069, 0.2616962790489197]" +21139,a week ago already ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.45902562141418457, 0.2738479673862457, 0.2704697549343109]" +6238,He's a horrible horrible dad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34440338611602783, 0.4031198024749756, 0.2189338505268097]" +64582,me two.. ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +21804, - Constellations ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.47373250126838684, 0.25036394596099854, 0.26149001717567444]" +67187, I need some more lip scrub ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.445792555809021, 0.2545035779476166, 0.26546818017959595]" +4115,farmers and farmers Girona and Spurs back to back. See my life ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4440317153930664, 0.26511767506599426, 0.27967002987861633]" +43761,they might shoot the whole damn crowd if you fuck with me! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.5151419639587402, 0.19890718162059784, 0.2619836926460266]" +44781, its a drake line,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4557126462459564, 0.24519506096839905, 0.2800176441669464]" +58208,Me: I am drawing our love ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6666191816329956, 0.08753038942813873, 0.21862190961837769]" +19093, I spotted taejin at the back ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5358721017837524, 0.144927978515625, 0.28810110688209534]" +46627, I love you too to momma T I had a rough day but I'm good now pray for me tho ❤️,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.5245038866996765, 0.19222474098205566, 0.2578577697277069]" +52737,STOPPPPP ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4757731854915619, 0.24964070320129395, 0.26017722487449646]" +9158, Maybe just a tad ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😁,"[0.5404106974601746, 0.14409665763378143, 0.27952954173088074]" +727,Maybe Spurrier should be Tennessee’s AD...... ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.49748435616493225, 0.17937283217906952, 0.2895071506500244]" +22859, haha definitely not complaining. so much cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5193710923194885, 0.1737818866968155, 0.26902252435684204]" +1118," I know, I ❤️it and this one too! It makes me SO happy! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5466392636299133, 0.1769171506166458, 0.24547040462493896]" +56109, Yup gotta be ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5173500180244446, 0.16288504004478455, 0.2866198420524597]" +3199,Im really sorry ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😭,"[0.3415861129760742, 0.42813876271247864, 0.20403510332107544]" +57742,Boy I stg I gotta supportive mother & father ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.45048680901527405, 0.25896841287612915, 0.28203219175338745]" +11842, gatto Gollum,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +53114,Ugh I was really looking forward to the trip this weekend ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6253212094306946, 0.1073298454284668, 0.24081888794898987]" +46404,ion even need a phone no more tbh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43091049790382385, 0.2740809917449951, 0.26664283871650696]" +17570, Awe we miss you too anak ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😅,"[0.418226420879364, 0.32367628812789917, 0.2436031997203827]" +44190,2018 is continuing V2 Resell is still alive,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5095561146736145, 0.16814060509204865, 0.28871577978134155]" +41668, i love you so much❤️❤️❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +25559, My pleasure ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6148613691329956, 0.10451334714889526, 0.2525203824043274]" +11156, Same acrylic nail you know.. I am screaming ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4071289300918579, 0.31852659583091736, 0.2620086073875427]" +52150,This lady been starring at me since I got to this place ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",🙌,"[0.6258373856544495, 0.10085999965667725, 0.2424497902393341]" +6756,missing my lay baby this morning,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.3457334339618683, 0.4080774188041687, 0.21979478001594543]" +19898,Poorly foxy best get better soon kids could t cope without her ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.507533848285675, 0.19331751763820648, 0.27139246463775635]" +6010, Yes. He really is,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5190402865409851, 0.1931426078081131, 0.26223161816596985]" +7024," do not do that, I love the two bands ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.5907566547393799, 0.13877081871032715, 0.2375524342060089]" +49758,"“this is what i do, it’s really not easy” ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5130636096000671, 0.18706144392490387, 0.26686543226242065]" +55892, would you be interested in a role like this???? ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😌,"[0.5780062675476074, 0.15131129324436188, 0.2437918484210968]" +58546,I wish I had more nerdy friends no one wants to Thor with me ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😔,"[0.30897223949432373, 0.4417935609817505, 0.2045508623123169]" +62158,I’m waitinnng ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +45008, Lovveee you guys to the moon and back❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙌,"[0.6740103363990784, 0.07806745171546936, 0.22032460570335388]" +22054, Omg no.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4436056613922119, 0.28391918540000916, 0.2555289566516876]" +25416,Waiting for the result.. to you.,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.6019467115402222, 0.1122572273015976, 0.252916157245636]" +63113,GEEZUS. I’m trying this! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4500013291835785, 0.2864544093608856, 0.2659330368041992]" +18045,I'm just tryna be loved and spoiled that's all ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4955487549304962, 0.23264779150485992, 0.25665974617004395]" +38382, iwe nana I'm thinking about you,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.5899156332015991, 0.1321834921836853, 0.240354984998703]" +55908, Their words are too rude. i cant stand anymore:( huhu fighting exolss!!!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3299109637737274, 0.4106115698814392, 0.21971678733825684]" +34508, Exactly ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.45028504729270935, 0.26724106073379517, 0.27584221959114075]" +46111, I’m weak! 🗣,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4460917115211487, 0.26770028471946716, 0.274514377117157]" +66244,We think evra is playing. But nigga is actually mad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41821935772895813, 0.30308324098587036, 0.26272934675216675]" +21945,Seeing Kev always puts me in a good mood ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.4657839834690094, 0.26746466755867004, 0.2498151659965515]" +19867,Do you ! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +66953,I want group homes like in every state,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.39982011914253235, 0.34107547998428345, 0.2431875765323639]" +45919,A Photographer and Settling Down ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5112897157669067, 0.20947495102882385, 0.26144373416900635]" +15455,"Yes, I'm like thirsty.. if I get 10 likes in 15 minutes, I delete it ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49997568130493164, 0.19493478536605835, 0.27342191338539124]" +49608,"Date last night ""wow very conservative nurse"" Ya dude, these are blue scrubs w/ sneakers. So comfy. Someone asked if I had just left work ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5096378326416016, 0.19964003562927246, 0.2685187757015228]" +18049, my tosh my knees my shoulder my head,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5269399285316467, 0.16383279860019684, 0.277787983417511]" +22167, Niiice! ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +22136,Is the woman of the year going to do the worst choice of the year too? Please don't ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.44300585985183716, 0.2712823152542114, 0.2741294801235199]" +39438, No more face time ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4393445551395416, 0.2699298858642578, 0.28018346428871155]" +39866,World Series 2017: Los Angeles Dodgers vs. Houston Astros Game 7!!4K live stream!Please share! (via FOX... ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.47044357657432556, 0.208038792014122, 0.29866161942481995]" +32670,"Our Country, just another day. ",😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.45915189385414124, 0.27158254384994507, 0.26003551483154297]" +15675,My New Video ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5489711761474609, 0.16288290917873383, 0.24679595232009888]" +44921,I need a good quote ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.46431484818458557, 0.24808067083358765, 0.26911187171936035]" +28006, No I'm so glad you got to meet Kennedy tho. She just joined and is already awesome in the lab. Enjoy the meeting!,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😀,"[0.6196403503417969, 0.09371493756771088, 0.2546851634979248]" +12704,Dustin a funny lil nigga ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45935630798339844, 0.27033135294914246, 0.27033305168151855]" +2483,Why do I feel guilt when I need to take of from work?? Everyone else does it consecutively and with ease ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3970712721347809, 0.3379225730895996, 0.22590401768684387]" +6190,I may be using the Disney Now app to watch the Proud Family.,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.46418413519859314, 0.26577994227409363, 0.27120471000671387]" +17068,Just had chloe think real hard about this one ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43931084871292114, 0.2697760760784149, 0.27688726782798767]" +62551, u know ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4670252501964569, 0.20194599032402039, 0.2885521352291107]" +7538, who's rattled your cage today??,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.5037937164306641, 0.22650299966335297, 0.2593189477920532]" +38968, I love this one sorry ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5854827761650085, 0.15596775710582733, 0.22269397974014282]" +37053, That’s what im saying ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47488105297088623, 0.2433835119009018, 0.25894516706466675]" +28966, On me that’s a given lmao I didn’t even have to put it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43290257453918457, 0.26038679480552673, 0.2810917794704437]" +41002,Wanna take a nap again. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3503398001194, 0.40834489464759827, 0.21832990646362305]" +52264," Unfortunately, it's a different James ",😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4482945501804352, 0.2606837749481201, 0.27857547998428345]" +25372, I thinks she was horrified of crota and she became blind. Byf where you at? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4317294657230377, 0.2960364818572998, 0.26006799936294556]" +59705, I can't wait anymore for your new album!! ❤ I love u,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4101720154285431, 0.3505191206932068, 0.1970672607421875]" +16493, Don’t do that .. I️ don’t need to get fussed out she can see your tweets but no mine cause we blocked each other ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.42889660596847534, 0.282264769077301, 0.2683824300765991]" +67401,Waking up with a cricked neck just ain’t the pattern for today ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3280327618122101, 0.4212293028831482, 0.21174517273902893]" +49792, Myself ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +48294," There isn't that much OCD in the world , for your mind to be like thatJust relax & do things 1 day and w… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49007001519203186, 0.2286045402288437, 0.26770782470703125]" +47542, What's happening here you 2 ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.46791619062423706, 0.2636687457561493, 0.2523139715194702]" +61521,Guiiiiiiise! I️ have a half pound of snickerdoodles. Someone save me from myself ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4358632266521454, 0.2703295350074768, 0.27043870091438293]" +20718, This is me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +44752,"I don’t even remember coming on last night, it’s all a blur after that ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5659374594688416, 0.15543949604034424, 0.2519386112689972]" +32667, You know I’m definitely coming to get him cause I gotta pick my turkey up ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4640601575374603, 0.22483591735363007, 0.2841516137123108]" +59192,We see Chris loves pizza just as much as you ❤️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6009019017219543, 0.11711181700229645, 0.24551483988761902]" +51692, this is why I walk around with my eyes closed so stop asking ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4473784267902374, 0.2666114866733551, 0.27104681730270386]" +57975," As if to imply there is an equal English term for all terms in a text, as an example. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38183271884918213, 0.3539588451385498, 0.23757094144821167]" +23018,. did you guys know about ? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4709693193435669, 0.2483096569776535, 0.2684692442417145]" +18572,Attn Merry Christmas ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6671673655509949, 0.07533635199069977, 0.20529255270957947]" +18775, Haays ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +63109, Thank you ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +5875, Do they have something in Tahiti?,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +55804,damn joey really just roasted me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3698039650917053, 0.37270140647888184, 0.23012778162956238]" +59387, yeah,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4975059926509857, 0.19411879777908325, 0.2598218023777008]" +57704, are you gonna post pics of your costume im ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5004506707191467, 0.2170722484588623, 0.26430320739746094]" +4018, I love this hashtag,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6354809403419495, 0.11272844672203064, 0.22503387928009033]" +46442, I know you want to grow your hair long! ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😢,"[0.3747764229774475, 0.3563465178012848, 0.2383197844028473]" +6741, Straight to the point. Do you like Klare-unnie? ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😢,"[0.36831703782081604, 0.3764091730117798, 0.2292032241821289]" +45219, Schade ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.44791847467422485, 0.24695411324501038, 0.28221678733825684]" +66963, Lets go ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4368368983268738, 0.22518698871135712, 0.3003106713294983]" +49201, Ne be,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47469791769981384, 0.2494196593761444, 0.25986939668655396]" +10558, Lol please share! via DM,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46564674377441406, 0.23884639143943787, 0.2722858190536499]" +27650, Oh joy sounds like a great night for them!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.582362711429596, 0.14108934998512268, 0.24915078282356262]" +22648, Let's go on to win this ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.5238423347473145, 0.20197628438472748, 0.24756431579589844]" +23230, London is white ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.379334956407547, 0.3546806871891022, 0.2407788336277008]" +38423,Almost ten in the shoebox it's not easy even hustling that much ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5768475532531738, 0.1296532154083252, 0.25562146306037903]" +49654,When your dad tells you he hasn’t smoked a cigarette in 10 days ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😢,"[0.4021590054035187, 0.335933655500412, 0.24493038654327393]" +51949,I am soo happy ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6693047881126404, 0.0926113873720169, 0.22427618503570557]" +48263,i've got 10 friend requests on my current acc guys please im not sure if im keeping this acc yet,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4069236218929291, 0.3260672688484192, 0.2526012063026428]" +16431, Good luck! The struggle is too real ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.496236115694046, 0.18870820105075836, 0.28370401263237]" +58765,I just love 's good morning/goodnight tweets ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😊,"[0.6983156204223633, 0.06083099916577339, 0.21534204483032227]" +8157,Walked back into work like why tf did I walk in here ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33077752590179443, 0.4197027385234833, 0.2222404181957245]" +28497,Morning View ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.6778300404548645, 0.07277840375900269, 0.2219945192337036]" +66205, because she doesn’t have a penis ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3756711184978485, 0.3493131995201111, 0.24683240056037903]" +21836,Lolz ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45573729276657104, 0.25755414366722107, 0.2767627239227295]" +45372," Oh lol, I never knew .. Idk why I thought it was a Saturday last year",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4364159405231476, 0.29485079646110535, 0.26140153408050537]" +49499, Lol shes dreamin right now of gettin rough wi me ...... n so are u x,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3585314154624939, 0.37936919927597046, 0.23271754384040833]" +27088,A snippet from my TEDxCUD talk. Full version should be out soon. I'm blessed and humbled ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4940282702445984, 0.2264423817396164, 0.26786378026008606]" +27272,Love it ! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +60278, thanks for your wish ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.5650803446769714, 0.16543316841125488, 0.23171597719192505]" +2628,SO hyped for WW2 ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4855503737926483, 0.24291542172431946, 0.2614171802997589]" +59141,Stranger Things nailed their choice of music. Honestly. ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4639696776866913, 0.27094414830207825, 0.26896610856056213]" +64510, Amazing ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.7021326422691345, 0.06476391851902008, 0.21250846982002258]" +6034,people be so mad when they only hyu when they need something but you don't reply,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3779841959476471, 0.35662680864334106, 0.23888906836509705]" +44342,I don't even have anyone to go to these homecoming events with ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5400866866111755, 0.17806483805179596, 0.2605966329574585]" +165, How do you spew this stuff with a straight face?! Are you kidding me? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43964943289756775, 0.24856036901474, 0.30435997247695923]" +38499,I miss y’all too ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5171481966972351, 0.2837722897529602, 0.1993439495563507]" +57283,"My sister is telling one of her friends about her personal growth over the years ""I learned that every action doesn't need a reaction"" ",😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😢,"[0.38324353098869324, 0.34922200441360474, 0.24358874559402466]" +65150,honestly it’s hard AF finding someone you vibe w/ literally the second you meet ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😢,"[0.3781503736972809, 0.3704257309436798, 0.22879379987716675]" +61400,I ain’t trynna make friends bitch I’m trynna eat ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😭,"[0.3513937294483185, 0.39659133553504944, 0.22266119718551636]" +36983,Netflix adicionou Frozen aaaaa vou assistir ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.6866585612297058, 0.06742480397224426, 0.2084992229938507]" +11290,Reminiscing on all of the vacations/trips/getaways I've been on in 2017 Let's these last two months be full of adventure ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😢,"[0.3663288652896881, 0.36986640095710754, 0.23774901032447815]" +16048,tagaytay boooound ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +66013, i love my two moms ❤,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5055392384529114, 0.23236462473869324, 0.2207825481891632]" +25899,yeooo this is why is my wce ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5961466431617737, 0.1357988864183426, 0.2360042929649353]" +32304,Will she just be my babygirl already ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😉,"[0.5536797642707825, 0.0995953381061554, 0.3080945909023285]" +24479,Pictures of me 2 years ago ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4755013585090637, 0.26414787769317627, 0.2581687867641449]" +31562,this is me omyghad ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +22466,Gonna make a new version of “Rally Round the Flag” but change red black and green to red white and blue .,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4498831629753113, 0.23543302714824677, 0.29148441553115845]" +2010,THANK YOU FOR GOOD VIBES BABY ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6648910045623779, 0.08720096945762634, 0.20434865355491638]" +35282,Watching the World Series just makes me sad there’s no more baseball until April ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.466086208820343, 0.24794156849384308, 0.2500048279762268]" +60978, Hey Mark I love Cracker barrel too; you inspired me to try the dumplings. LOVE THEM ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😊,"[0.7023283243179321, 0.06431037187576294, 0.22075572609901428]" +37967, morning handsome ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6513941884040833, 0.10691697895526886, 0.21718180179595947]" +57028, Oh don’t make me think Taylor ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4561239182949066, 0.2687751054763794, 0.27447211742401123]" +63659,Get you a man that cooks for you ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.44002094864845276, 0.2600622773170471, 0.26638537645339966]" +11659, Don't feel bad you are at least taller than me ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😔,"[0.3086778223514557, 0.44115984439849854, 0.2060292661190033]" +7469, She's cute ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6362391710281372, 0.11038947105407715, 0.21415609121322632]" +13556, Lmao they're fucking bullies ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38481593132019043, 0.35239309072494507, 0.24671322107315063]" +60972, But ur white ? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3801542818546295, 0.35459935665130615, 0.24077707529067993]" +59778, You can stop being salty bro,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4017940163612366, 0.3243841230869293, 0.25508540868759155]" +9681,It’s good though ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6219074130058289, 0.1075628399848938, 0.22773748636245728]" +11844,Spotify decided to play only dirty songs while my co-worker was in here. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4389633238315582, 0.28105679154396057, 0.26965197920799255]" +8975, shawarma rice next time ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😅,"[0.4273544251918793, 0.28908905386924744, 0.2720049321651459]" +48378, It’s them not u ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +52229, Intimidated? By me? *shock* ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43919554352760315, 0.2687656283378601, 0.2731478810310364]" +33844,My life good rn ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😅,"[0.4660997986793518, 0.26715967059135437, 0.24889656901359558]" +37058,They done fucked up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3726806938648224, 0.3788904845714569, 0.2297283411026001]" +49564,Boy fuck you alone killed me I ain’t read shit else ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3951917290687561, 0.3407852053642273, 0.24768361449241638]" +36637, It's beautiful! Can't wait for next beautiful attack.. WTF,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5863720178604126, 0.1401003897190094, 0.22810602188110352]" +41016," My hair is so straight , I don’t like it anymore ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3461449444293976, 0.3991415500640869, 0.22607380151748657]" +19891,Here’s a Jungkook blanket. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4175289273262024, 0.3144684433937073, 0.2526906430721283]" +28535," You need a break! Relax for a week! Cancel EVERYTHING and go on a spontaneous trip, it'll be fun ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41327306628227234, 0.31965574622154236, 0.2534340023994446]" +58454,In loveee ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4722886383533478, 0.25205907225608826, 0.2611124813556671]" +46124,My tag boyfriend + girlfriend for hire + happy break up = anshaket ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5191452503204346, 0.1997852921485901, 0.25965195894241333]" +30894," sorry, gonna have to figure this one out",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34129688143730164, 0.4060869514942169, 0.22334742546081543]" +65161, on online shopping to be exact. The total amount drives me crazy. It even exceeds a return AA flight tix to seoul (if bought last min),😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4177052676677704, 0.2972501814365387, 0.26805368065834045]" +4106,Some of this Chris Brown album is decent I can’t even lie ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5512644648551941, 0.16235888004302979, 0.2563886046409607]" +61757,“You know how your mouth waters when you barbecue a steak? I wonder if vegetarians feel that way when they cut the grass..” that is Vern ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4516243040561676, 0.2491111159324646, 0.2789093554019928]" +2992,It took us two fking hours to put up this plastic/paper thing ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.43708494305610657, 0.27402305603027344, 0.27501553297042847]" +40669,Hahahah the ole dick slap ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4446740448474884, 0.24214713275432587, 0.2895829975605011]" +19425,why is the greenery on the top... ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +49711, That’s Messi’s beard ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5885688662528992, 0.13484373688697815, 0.24297326803207397]" +40142, Love it Cheers bro,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5090954899787903, 0.19008797407150269, 0.26251691579818726]" +25306,"""all plaid w the pots, ric flair w the thots (WOO!), its ludacris how much she drop"" -- ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😅,"[0.4133855700492859, 0.2976405918598175, 0.26765260100364685]" +29778,Have fun !❣️✈️ ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4401072561740875, 0.2682434022426605, 0.2759288549423218]" +66853,"❤️Love cannot be contained. Love knows no barriers, no bounds. Love connects… ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5879167914390564, 0.1560674011707306, 0.21538352966308594]" +29755, Capital punishment should make a come back ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😅,"[0.4261850416660309, 0.30035555362701416, 0.2616574168205261]" +10809, Oh my bae so innocent like a kid luv u .. good night ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4902293384075165, 0.24222587049007416, 0.26375073194503784]" +54362,I literally went 10 hours without a blunt and I'm googling shit ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.35346928238868713, 0.407566100358963, 0.21814748644828796]" +55031, Congrats ulit and have a safe flight! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6675012111663818, 0.07833177596330643, 0.2226049304008484]" +141," Her voice honestly reminds me of cruella or something she ridiculous, wa… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43316981196403503, 0.28917577862739563, 0.26405733823776245]" +3843,Madrid fans wya? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44590383768081665, 0.2281375527381897, 0.3006894588470459]" +60050, some fans said in comments I've read that maybe Taka loves 69. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47960618138313293, 0.20591072738170624, 0.28843972086906433]" +33350,I missed the twttr world Miss ka ba? Putangina,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3598933219909668, 0.3872009217739105, 0.23515087366104126]" +28064,Amen❤️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙏,"[0.48897236585617065, 0.09773151576519012, 0.3680305480957031]" +46233,61 days til I'm 23 ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5361195802688599, 0.14283840358257294, 0.26040542125701904]" +32443,WANT THIS SO BAD ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.41172412037849426, 0.31132280826568604, 0.23650729656219482]" +27112, Commented ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +2468, That's me. Now I've done it myself and I feel so bad. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.31998497247695923, 0.4264546036720276, 0.2108631432056427]" +33177, Ah good time for a spelling mistake. Can't wait to again in December ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38770732283592224, 0.3622015416622162, 0.2326725423336029]" +60903, Omg your smile ❤️,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5333406329154968, 0.184162899851799, 0.25127747654914856]" +55730, Of of ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +14975,i’m too hyped over Donald singing just cant wait to be king ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😁,"[0.5562272667884827, 0.1717732846736908, 0.250972181558609]" +44440,Yesss gooooool ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.40033552050590515, 0.26476553082466125, 0.2971343994140625]" +12238,Got me some .. can't wait to rock this tank ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36123278737068176, 0.36952483654022217, 0.219575434923172]" +4501, thanks babe ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😊,"[0.6955059170722961, 0.06670518219470978, 0.1995028555393219]" +22061, Maryssa is a pretty girl ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5684085488319397, 0.15798188745975494, 0.24199581146240234]" +50283, Haha ised to be more but i deleted a 800 off IG and deleted all my messages awhile ago but i dont fuck with anybody ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4036146104335785, 0.32748129963874817, 0.2562159299850464]" +37671, So really it’s not that bad because nobody else can count to four either ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4577050507068634, 0.2532045245170593, 0.2778826653957367]" +7762,Abram spotted! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6060360670089722, 0.11173881590366364, 0.2553766667842865]" +38939, Thank you ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +59254,Just wanna get in my bed ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3738712668418884, 0.3963591158390045, 0.2230563461780548]" +58166,This Insidious triple feature on AMC right now ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.46710899472236633, 0.24882541596889496, 0.2718954086303711]" +51503, You know the love is real when two friends call each other nerds ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.522299587726593, 0.18873362243175507, 0.2579216957092285]" +24672,Well idk about you but that looks more like the blade of a pencil sharpner than a razor blade to me. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44300562143325806, 0.2826835811138153, 0.26962482929229736]" +40256, LMFAOOOO ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4342609941959381, 0.30998721718788147, 0.25687313079833984]" +65829," That's exactly what that bar says tho. ..... and, U're so welcum.",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4415493905544281, 0.2574223577976227, 0.28110772371292114]" +14572, I literally died laughing because she’s so right ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.366695374250412, 0.3779033422470093, 0.22976988554000854]" +49859,Recent Most are from today ✏ ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.5128352642059326, 0.2136298567056656, 0.23420867323875427]" +50056," Lolol, now that u point it out, it really is a Tsusumu-san’s cosplay ! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36430367827415466, 0.37631019949913025, 0.22914865612983704]" +3956," sex is nice and all, but I just LOVE the pin-up style ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5940556526184082, 0.13349691033363342, 0.24487531185150146]" +63764,Ya LYING!! Ya know Beyoncé can't fucking act bro ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4464912712574005, 0.24510769546031952, 0.2879255414009094]" +31714,thats true ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5362184643745422, 0.1671564280986786, 0.2516270577907562]" +10551,His sweater gonna say where my ho’s at my sweater gonna say ho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5409371256828308, 0.18731138110160828, 0.24956926703453064]" +53845,That yhu make it thru to alive Happy New Monthlet be safe… ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.6083717942237854, 0.11924956738948822, 0.24184545874595642]" +2226,My Birthday Cake ❤️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36381348967552185, 0.36399224400520325, 0.23645588755607605]" +55080, Thank you ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +62966,I crack the screen on every iPhone I purchase ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.45517849922180176, 0.2499220371246338, 0.27369430661201477]" +61650,"whoever hit shordy petty, I would've came out n confessed once I seen her condition, world is so fucked up, I pray for mines everyday ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4279586672782898, 0.27176666259765625, 0.27871760725975037]" +19488,My back is sore,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3800322115421295, 0.3475588858127594, 0.23684555292129517]" +28744,Well played.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43541714549064636, 0.31137675046920776, 0.25019046664237976]" +28123,You wrong for that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3420976996421814, 0.41663700342178345, 0.2138013243675232]" +62224,Haha! Thanks Itza! Appreciate it. ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😎,"[0.5939886569976807, 0.11018049716949463, 0.2575390934944153]" +67836,I had a sword fight with j.k rowling ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.44915542006492615, 0.27001628279685974, 0.2719222903251648]" +2509, Who cares where it's from it has big bobs and is T H I C C ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.43630045652389526, 0.2553604543209076, 0.28597092628479004]" +13055,Thank you Claudia for retweeting my poem! ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.49703699350357056, 0.2355005294084549, 0.2475627362728119]" +21201, Omfg if I actually had the ability to pump out 31 drawings in a single day... ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4585888683795929, 0.24812035262584686, 0.2765679359436035]" +29612, IT’S NOT MY FAULT THE DODGERS LOST THO ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.444403737783432, 0.2713281214237213, 0.2648482322692871]" +43141,excited na ko sa saturday / worship night,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5966657400131226, 0.14222855865955353, 0.22261759638786316]" +66290, is so insfiring I'm emo ryt now ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4195311367511749, 0.301662415266037, 0.2637579143047333]" +4355, Bollox ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +68495, arman pure ho gaye....? Anyway Munna looking cool ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.44480305910110474, 0.24559037387371063, 0.2871704399585724]" +55906,Aweee a little you ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6050569415092468, 0.11235757172107697, 0.2543071508407593]" +43341,ooooo bitch im tryna go home,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3634530007839203, 0.39262232184410095, 0.22500470280647278]" +64293,Hahahah... funniest thing heard in recent times... u r great bro.. ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.434194415807724, 0.2622620463371277, 0.28114429116249084]" +25275, Lovely isn't it . Considering it myself ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5655328631401062, 0.16193048655986786, 0.24903860688209534]" +39744,Whattttt did I do to deserve u ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.46387413144111633, 0.2605589032173157, 0.2553195655345917]" +29492,Goodmorning . ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5754584670066833, 0.14253853261470795, 0.24863013625144958]" +55675,It's a reason to not date niggas in ya town bc them n them mothers run down on u when it's all over ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4335205554962158, 0.2824268937110901, 0.27104467153549194]" +33421, Ill be good for EDC ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😁,"[0.5552560687065125, 0.17596092820167542, 0.24818241596221924]" +25639,some ppl just so interested in my life they gotta report it to others. sorry i’m happy and you’re miserable drowning in your sorrows✌,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4489497244358063, 0.263106107711792, 0.2797378897666931]" +1861, I think this is temporary formula bcz of nehraji farewell ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.516588568687439, 0.17144055664539337, 0.2824493646621704]" +1682,I need to go on a serious drinking ban ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44788286089897156, 0.23498421907424927, 0.28937938809394836]" +61425,Pretty sure I just got blacklisted from Devil. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4484140872955322, 0.26676350831985474, 0.27629896998405457]" +46268,No holding back. . ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5602518916130066, 0.14616872370243073, 0.2615125775337219]" +56892,I just keep him satisfied through the weekend ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",🙌,"[0.6497757434844971, 0.08784866333007812, 0.23578223586082458]" +15884,"Oh lord, the fake account replies ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4412374198436737, 0.23996929824352264, 0.2979573905467987]" +3871, You're preaching to the choir man.Go on Fox&Friends or Hannity and tell them that,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.4066583812236786, 0.32312795519828796, 0.24762097001075745]" +11255,Broke out the uggs today. It's so cold ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.36412322521209717, 0.379779189825058, 0.22792702913284302]" +26100,I don’t want that nigga so quit bringing him up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41062912344932556, 0.31405797600746155, 0.26129141449928284]" +56290,SHE LOOOOOKKKSSSS AMAZZING LIKE WOW MAMI SALICE! ❤️❤️❤️❤️❤️ ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😌,"[0.616462767124176, 0.11254812777042389, 0.24195584654808044]" +12889, It’s cold enough ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38530945777893066, 0.35281360149383545, 0.23430603742599487]" +57379,I will seriously never get the chance to see I’m broke as hell. So sad.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3583892583847046, 0.4072949290275574, 0.21927353739738464]" +60252, thankyouuuhehe,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +29802, Shoot I️ volunteer to go with you ! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.43640559911727905, 0.29808589816093445, 0.24983158707618713]" +11168, So tat v dont become aunty national ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4476751685142517, 0.25011053681373596, 0.27954038977622986]" +53565," I want to join although I'm very fucking far behind (stalking you and replying to all your tweets, can you tell I miss you? )",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4554256498813629, 0.26591140031814575, 0.27207809686660767]" +17087,The type of boyfriend/girlfriend i want ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36313191056251526, 0.38548827171325684, 0.22153478860855103]" +32548,It's like this: your Kdrama crush vs the guy who fed you hopia for 5 years straight. ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😢,"[0.3780687153339386, 0.3372255861759186, 0.25461214780807495]" +62531,can I just say y'all coming @ me for that post - I legit just said they were cute and even clarified I didn't think they were dating chill,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44354864954948425, 0.26718494296073914, 0.2697136104106903]" +38301,the weekend de sza ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6478267312049866, 0.0850214809179306, 0.23364809155464172]" +10521,I threw my phone! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3681430220603943, 0.354756623506546, 0.2373221516609192]" +3293,got to be under baby all day ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5251802802085876, 0.18097074329853058, 0.2634786069393158]" +26224,thanks for the pic gonna put it to good use later,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6620526909828186, 0.07586320489645004, 0.22820046544075012]" +7089,Happy All Saints Day! ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",🙌,"[0.6594352126121521, 0.08586983382701874, 0.23073038458824158]" +61427, I mean you can if you want I don’t mind ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44878479838371277, 0.26131317019462585, 0.2770998775959015]" +37189, the truth,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4602576792240143, 0.2699737846851349, 0.2621902823448181]" +15387,goodmorning ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5754584670066833, 0.14253853261470795, 0.24863013625144958]" +15816,"its jinminkook, the mighty trio. dont ever doubt ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47456008195877075, 0.25652453303337097, 0.25489839911460876]" +56469,I GOT MY BABY WILL ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.549849271774292, 0.17670473456382751, 0.22679755091667175]" +7774,wait wuuut? did i just spoiled myself ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4542468786239624, 0.2811249792575836, 0.25378528237342834]" +56073, Honestly I know I’m still gonna be friends with everyone but I’m really gonna miss Ron. He was my fav manager ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.41192933917045593, 0.3228481113910675, 0.24854767322540283]" +1045, Oh pls don't me ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4546194076538086, 0.26614609360694885, 0.2687617242336273]" +21210, constantly inspiring me man!!!,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.46704787015914917, 0.18529565632343292, 0.30957698822021484]" +51489, waiting to cyu onscreen once again,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😎,"[0.6043842434883118, 0.09903974831104279, 0.2554582953453064]" +6901, When thats supposed to be its purpose even lawd ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.45000171661376953, 0.2786962389945984, 0.2542217969894409]" +6833,It’s crazy to think my baby sister is bout to be 21 ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.3959014415740967, 0.33032751083374023, 0.2568773925304413]" +11706,A king ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.6929416060447693, 0.060714758932590485, 0.20070263743400574]" +35270, Dying omg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46244969964027405, 0.2720645070075989, 0.2699812054634094]" +18562,Love how humble they are ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.4743935167789459, 0.07154719531536102, 0.40713366866111755]" +22748, WOW YOU GUYS ARE CRAZY SKHUMBA HAD TO SAY EMPTY ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5057851076126099, 0.21487243473529816, 0.2637549638748169]" +48675, Ahahah i'm popular only on tumblr i tried following more people at some times like the 2 years of d&e… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47608333826065063, 0.24422317743301392, 0.27676165103912354]" +50452,realy?… ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😎,"[0.5945386290550232, 0.11439770460128784, 0.25844573974609375]" +36364,"Tomorrow, Restore will be serving delicious Garden Minestrone Soup, and a mouthwatering Greek Pasta Salad!",😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.48863500356674194, 0.2251949906349182, 0.2764745354652405]" +24799,That moment when Brie Bella likes your photo!!!!!! ❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙌,"[0.6485929489135742, 0.08057673275470734, 0.23064574599266052]" +39896, bruh Eddie found that dude Trippy on Worldstar & proceeded to tag me in it. Like his music is trashhhhhh,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4303017854690552, 0.29140523076057434, 0.2676999568939209]" +19174,I needed this before Winston attacked ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.511254072189331, 0.19577649235725403, 0.2683377265930176]" +29335,I Hate overthinking about things ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.40129631757736206, 0.33137211203575134, 0.24887293577194214]" +67905,Ordering the tackiest diamonte covered dress for the weekend and finding out the party is a themed ‘Metal Ceilidh’ spot the scheme wain,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4720880687236786, 0.19520701467990875, 0.3037428557872772]" +27051,Amen ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.48897236585617065, 0.09773151576519012, 0.3680305480957031]" +8676," Just need to find a job, place to live, roommates ect",😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.41418689489364624, 0.3039492666721344, 0.25156477093696594]" +14373, Because you have like 50 of them that you haven’t signed ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4515443742275238, 0.2551441192626953, 0.27895739674568176]" +49296,And she said it’s how she feels about me! I’m crying...,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.35210248827934265, 0.40064918994903564, 0.22567471861839294]" +59539, haha.. Of course.. but kal Rajma Chawal banaye the.. so emotions me beh gaya.. ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.4763372242450714, 0.24184492230415344, 0.2696167528629303]" +54428, so if the exams were marked like the assignments = gg,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.4141738712787628, 0.2393883764743805, 0.30867257714271545]" +55741, Go boo,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",🙌,"[0.6632019281387329, 0.10647572576999664, 0.22357404232025146]" +27859,Omg look at L ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5108961462974548, 0.1988433599472046, 0.2596666216850281]" +64733, the caption ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4566284716129303, 0.24211084842681885, 0.2802637815475464]" +37309, I'm calling Astros..it's time. ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😅,"[0.39765986800193787, 0.3027909994125366, 0.254231333732605]" +56123,The gallows ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +22773,-And I mean getting stoned in the biblical sense!,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4493253827095032, 0.2604624927043915, 0.27401986718177795]" +20220,Its me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +5738,"Confess your love for me, testify ❤️",😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +6009, My notifs going mad cause tom tweeted his acc and Zoe replied ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.4812629222869873, 0.18506793677806854, 0.29753774404525757]" +29665,I pray for her health. But Wendy Williams really just dropped ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33707910776138306, 0.4342923164367676, 0.21713417768478394]" +39893,pus-on,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +11881,She’s just needed a on her @ Gili Islands ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5444229245185852, 0.18361662328243256, 0.24946731328964233]" +17411, Lmao first off I do and Your just salty because Your losing ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4542551338672638, 0.2561344504356384, 0.27631431818008423]" +55714,When's the dvd out come on you fucking spurs ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😢,"[0.4061078727245331, 0.333699107170105, 0.2502101957798004]" +21695, I do exceedingly nice seething ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😁,"[0.573072612285614, 0.13244076073169708, 0.2496301233768463]" +23532, Sending so much prayer!! ♥️,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😏,"[0.4508911371231079, 0.0872424989938736, 0.4190548062324524]" +50551, Sure. Am all done. ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.45032450556755066, 0.2693732678890228, 0.27561917901039124]" +4251,Can't believe my dad has managed to get 18 months free on Netflix ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4140610992908478, 0.3119297921657562, 0.2256881296634674]" +66024,To make my life even worse got a job interview for a sports coaching job Wednesday but need to take my qualifications which are in the bin,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.3599326014518738, 0.3681222200393677, 0.227696031332016]" +33144, unreal,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5962997078895569, 0.13635709881782532, 0.23425182700157166]" +35254, With pleasure xxx,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5605775713920593, 0.14712758362293243, 0.2612728476524353]" +60697,Happy birthday !!! Stay pretty and fab!!! Miss youuuuu ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😍,"[0.7371575236320496, 0.048432160168886185, 0.20191463828086853]" +40003,Missing my baby ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5225030183792114, 0.2133042812347412, 0.23890778422355652]" +10431, yeah I hate you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41122010350227356, 0.31385350227355957, 0.24923229217529297]" +48644,I'm terrified ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😔,"[0.27685829997062683, 0.45945167541503906, 0.1982889175415039]" +49960,Amen ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.48897236585617065, 0.09773151576519012, 0.3680305480957031]" +66606,Im scared but I've still try ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.38604995608329773, 0.348049521446228, 0.24051621556282043]" +19236,Oh My God!! I am crying. ❤️❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3447508215904236, 0.4024465084075928, 0.2257024049758911]" +15375, I love her ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +66289,Thinking of getting a Tattoo for every heartbreak. Ink will never dissapoint me.,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.398281991481781, 0.3379303514957428, 0.24813005328178406]" +50533, show me later ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",🙌,"[0.666541337966919, 0.07758472859859467, 0.2261471152305603]" +47705, Happy Gorgeous ❤ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6410295963287354, 0.10049620270729065, 0.18885654211044312]" +17546,Happy birthday from Argentina. Have an amazing day ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.7041084170341492, 0.06559910625219345, 0.21474504470825195]" +66504,“It’s November I’m tryina get stuffed” biiiitch me too tf,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4441331624984741, 0.2730726897716522, 0.2728291451931]" +46352,We are currently reliant on fossil fuels for 91% of our electricity ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4415700137615204, 0.26713165640830994, 0.27595990896224976]" +50030,I️ need these bitches to come on ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4696158468723297, 0.2476389855146408, 0.2542567849159241]" +34956,"Happy bday to my best bud, hope it's a good one ",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😊,"[0.6807940006256104, 0.0649542361497879, 0.2182426154613495]" +46154, Good comedy ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.453233927488327, 0.25720375776290894, 0.2739187180995941]" +10324,Like he should ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46029892563819885, 0.2567102611064911, 0.26967477798461914]" +49084,Why did Dance Academy have to go so hard with Sammy's death,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44362372159957886, 0.2605443000793457, 0.2762865126132965]" +53331,‍️she don't approve of my antics y'all ‍️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.597650408744812, 0.12922054529190063, 0.2439960539340973]" +19653,And modi was the first person to walk on the surface of moon. ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😁,"[0.5268388986587524, 0.13981330394744873, 0.2986341416835785]" +1365," pls : meet-up in York (2/12, 10:30am at Cosy Club). Message me/ if you’re interested ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5632166266441345, 0.16122853755950928, 0.2494276762008667]" +21956," YES! It’s so bad for me now. I’m like come ON, I’m only 25. Hahaha",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44657471776008606, 0.28808772563934326, 0.2657305598258972]" +44106,The best part of having a minivan for 11 months is a lot of space ... anyone want to take a nap????,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.48890775442123413, 0.23786653578281403, 0.2561517655849457]" +908,Good news ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5703833699226379, 0.14993391931056976, 0.24242892861366272]" +67337,Pmo.Personalized.Girlfriend is triggered ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.30707138776779175, 0.4432573616504669, 0.20916467905044556]" +41499,Neon party ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6142158508300781, 0.12061098217964172, 0.2236189842224121]" +58527,"Lord, You are amazing! ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😎,"[0.5913578867912292, 0.10759222507476807, 0.27242106199264526]" +17869,want my brushes to come in already,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4785131514072418, 0.2692810893058777, 0.24922075867652893]" +40080,Not a good start for the Boys in Blue ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5069676041603088, 0.197379931807518, 0.27584558725357056]" +8487,cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6362391710281372, 0.11038947105407715, 0.21415609121322632]" +29338,Houston why are we like this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4796282649040222, 0.21272172033786774, 0.2849988639354706]" +8741, Go all the way - ban home depot. ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4354693591594696, 0.23586232960224152, 0.303031325340271]" +33989, EONNI I MISS U SO MUCHHHH TOO,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😅,"[0.4754604697227478, 0.2603957951068878, 0.24239397048950195]" +17740, aren't u going to give up?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4904642105102539, 0.1772245317697525, 0.29810482263565063]" +63024,‘the most exercise i do is clear rail’only Jade ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48479124903678894, 0.2272544503211975, 0.27162468433380127]" +54550, I am old too so I rest on weekends at home watching Netflix these days ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5490670204162598, 0.17645466327667236, 0.251328706741333]" +55811,AND WHEN HAS A SOMALI EVER CLAIMED EGYPT? EGYPT????? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4481140375137329, 0.26202288269996643, 0.279228538274765]" +58716,with my bffl having deep convos ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😭,"[0.33083590865135193, 0.4185393452644348, 0.21716085076332092]" +28886,Had to stay before we came up ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5437475442886353, 0.16348321735858917, 0.2641311287879944]" +30876,U mean British Columbia? District of Columbia? Either am reassured since I live in Colombia NOT Columbia … ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48178234696388245, 0.20056022703647614, 0.28715091943740845]" +33178, Happy Halloween bb! ! You have a same buzz cut as eleven,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😁,"[0.5442512631416321, 0.16932906210422516, 0.24957579374313354]" +22802, Awwwww.Thank you so much friend!❤️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5762869715690613, 0.15612179040908813, 0.22983625531196594]" +5450,i treat shayd nicer than anybody tbh ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4395800530910492, 0.25251513719558716, 0.28934890031814575]" +57606,Tryna cuff a chick that gonna steal my sweatshirts and not give them back when I ask nicely ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😅,"[0.4229404330253601, 0.3075072765350342, 0.2558802366256714]" +49244, Lol will do,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.44888439774513245, 0.2758867144584656, 0.2678724229335785]" +16713,One out away and they are all giddy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6165937781333923, 0.10082194209098816, 0.24890193343162537]" +68037, Wow that must be so cool for you to see ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😁,"[0.5385695695877075, 0.1534089297056198, 0.2746589183807373]" +40071, Yeppers way to go Luke’s marketing team!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6493945717811584, 0.08476141095161438, 0.23563241958618164]" +4257, Were they for you or for the kids? Is what she may ask ‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47879722714424133, 0.250881165266037, 0.26376429200172424]" +64131, Omg I've done many grammar errors lmao just ignore them and vote ❤,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37308987975120544, 0.35779866576194763, 0.24511423707008362]" +65318, I'm the purple and you the green one Booboo hihihihi ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44850996136665344, 0.21838437020778656, 0.3048571050167084]" +14030,me intentionally showing up late so everyone can see the look i have on ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.5333201885223389, 0.18964439630508423, 0.25646349787712097]" +58257, Just be glad it didn't delete your bank account ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.44698694348335266, 0.253378689289093, 0.2821604907512665]" +42119,Fave ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.49222883582115173, 0.2433348447084427, 0.2459457516670227]" +4037, Enjoy missy ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😊,"[0.6931880116462708, 0.057468313723802567, 0.21761390566825867]" +6984, Good morning Martin miss ya too ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6718280911445618, 0.08154496550559998, 0.22613570094108582]" +43336,Don't forget to get your tickets here: RSVP for the JHB leg of ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5591084957122803, 0.14514343440532684, 0.2565895617008209]" +41471, Your boyfriend ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38359305262565613, 0.36274123191833496, 0.23569393157958984]" +47298,Did she say effortry?!?!? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44600117206573486, 0.2783355712890625, 0.26660075783729553]" +64083, Lmao the fuck ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44571420550346375, 0.26467016339302063, 0.273979514837265]" +40695,How is Houston already winning ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😎,"[0.5822319388389587, 0.09956441819667816, 0.288296639919281]" +54987,Wow wow wow ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙌,"[0.6488221883773804, 0.07963734865188599, 0.23090070486068726]" +18109, A shorty told me she take a couple shots before she go ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4393041729927063, 0.2931053340435028, 0.26588597893714905]" +34546,"dude said ""got room"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46283477544784546, 0.24445801973342896, 0.27517619729042053]" +46749, Leyvels girl❤❤Wish I was as confident as you. Slay girl,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.5064210891723633, 0.22106300294399261, 0.25896620750427246]" +67035, me on Sat night ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.30204641819000244, 0.4602612555027008, 0.20160150527954102]" +28166,"goodbye tulog, hello school works (plates), goodbye 8hrs sleep, hello 3hrs sleep ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.42778584361076355, 0.3049326539039612, 0.22629311680793762]" +37939, we threw them all away tho ):,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4427949786186218, 0.2529968321323395, 0.28342002630233765]" +36969,Brian McCann Is so absurdly slow ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43367430567741394, 0.26211017370224, 0.2771998941898346]" +51095,Hello November Hubby made this ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6170045733451843, 0.10350978374481201, 0.24732032418251038]" +4421,Tee deleted her tweet cause she know she sounded like a damn stalker or a lesbo. Whichever you prefer ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.47296035289764404, 0.247312530875206, 0.2742692530155182]" +29894, that’s nice i wish i was dixie cups ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😢,"[0.410614937543869, 0.32812803983688354, 0.25049087405204773]" +12606,Stop doing this to ROMAn abramovich's team ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43626314401626587, 0.2821419835090637, 0.2680324614048004]" +40701,Happy Birthday Sharukh Sir ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😊,"[0.6754338145256042, 0.06567969918251038, 0.23059824109077454]" +49624, Thank you! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +916, I'm sooo excited hehehe Iesh and Beef reunited,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😢,"[0.4046267569065094, 0.3229207694530487, 0.2556173503398895]" +50572,Old rice ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4175199568271637, 0.2956237196922302, 0.26710355281829834]" +13311,Thank you barista friends ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5824869871139526, 0.13378340005874634, 0.24882295727729797]" +34737, Jong oppaaaa it's awkward.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44662705063819885, 0.2662341594696045, 0.2760188579559326]" +26844, I followed the story hawu I asked around these streets as well issa confirmed ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6173334121704102, 0.10281901061534882, 0.2445647120475769]" +58248,"After what's in the gift?, What's this? What's this? - Let me tease you about a new projet that comes soon ",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.525842010974884, 0.18548926711082458, 0.2689351439476013]" +46345,Shout out to for FREE TACOS!!! Come on 4 pm!!! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😁,"[0.5487822890281677, 0.1426851898431778, 0.26058512926101685]" +57745,"Riverdale fans, watch Lili Reinhart run around NYFW while talking all about Betty Cooper, Veronica Lodge and more ❤ ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4502982497215271, 0.2685326635837555, 0.27586790919303894]" +64557,It’s finally November ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",🙌,"[0.6412092447280884, 0.09531447291374207, 0.21535786986351013]" +52005,He looks so great & so happy. Warms my heart to see that for sure.❤️ ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.544998824596405, 0.18060879409313202, 0.25041988492012024]" +27389, Fuck you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4209957718849182, 0.3229237198829651, 0.24495625495910645]" +1219,Why this bitch think she can mug me might make me call my shooter in the Atl she a come with da drac ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44585737586021423, 0.26977863907814026, 0.27355077862739563]" +16870, I was dying.... she even went ahead to grab her ass ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.4461688697338104, 0.2647841274738312, 0.2771066129207611]" +8076,Thankful for another 24,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😉,"[0.517075777053833, 0.08512774109840393, 0.35199394822120667]" +38747,don’t fuck up & then squint and grab your nuts like you didn’t fuck up ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3836180865764618, 0.35157161951065063, 0.24638810753822327]" +7143, LSD when listening to music?? lol You gonna hear the boiling sounds in your brain then not music.. ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5310842394828796, 0.1907425969839096, 0.2513410151004791]" +1450, Appreciate you bro! ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4417530298233032, 0.22178488969802856, 0.29607561230659485]" +37497,Dry Ice ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4624367952346802, 0.2605366110801697, 0.27054429054260254]" +6937,jusko butterbeer ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +25772,DAWGGGGG PLEASE STOP NOW ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4017685353755951, 0.3149629831314087, 0.2470684051513672]" +31013,too much love can kill you. ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4394169747829437, 0.3133459687232971, 0.213538259267807]" +8594,It's too cold I just need a hug.,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.3247469961643219, 0.4322582185268402, 0.2047266960144043]" +29331,omg this made me feel way better ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.40120312571525574, 0.330798864364624, 0.25443509221076965]" +23976,Can't believe I'm taking advice from tia‍️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.32630184292793274, 0.4407258927822113, 0.21494531631469727]" +35296, smart ass meets smart ass . let them have they concert at home blair,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4353637397289276, 0.2806270122528076, 0.26798054575920105]" +59571,Just casually failing Bio.It’s fine.. I’m fine. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5269940495491028, 0.17454609274864197, 0.2498408555984497]" +31113, Look at this. LOOKATIT ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😀,"[0.6229163408279419, 0.09536170959472656, 0.25175240635871887]" +55990, I love your little gems of insight ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😌,"[0.6195755004882812, 0.1179247498512268, 0.23300322890281677]" +46817, My dil is theek?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.47464418411254883, 0.24964238703250885, 0.2612258493900299]" +17597, I want in,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5159682035446167, 0.2066059410572052, 0.24774688482284546]" +63406, lmao this bitch made nigga is pretty funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4502559304237366, 0.2657053470611572, 0.27486953139305115]" +53173,thanks babe ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😊,"[0.6955059170722961, 0.06670518219470978, 0.1995028555393219]" +4736, Some times I used tweezers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47128474712371826, 0.2454587072134018, 0.27502334117889404]" +51958," Oh yes you do!!! Go on, tell the world, ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5126386880874634, 0.18671126663684845, 0.27281495928764343]" +43923,This nephew’s got a friend in me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.31013593077659607, 0.43609827756881714, 0.21275553107261658]" +65988,The new mymood collection will be available in December...☺️☺️ ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5601564645767212, 0.1619516909122467, 0.2364674210548401]" +26757,I’m so such a cry baby ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5205056667327881, 0.2357480674982071, 0.14990761876106262]" +42874,pasta and cheese ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38795706629753113, 0.3505365550518036, 0.23880696296691895]" +10811,sounds great! ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",🙌,"[0.6272698044776917, 0.09760987758636475, 0.24247491359710693]" +1594,"It’s fair to say I ruined my life a few times this year , roll on 2018",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4669060707092285, 0.20195679366588593, 0.3000098168849945]" +48665,The plan has always been Early Childhood Special Education.But I found a MA program that has certification for Elementry. So like...gah. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.46601539850234985, 0.22848108410835266, 0.2868331968784332]" +3723, I’m never joking with you again,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4448874890804291, 0.27563145756721497, 0.268719345331192]" +31829,great.. ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.559414267539978, 0.12546007335186005, 0.28113624453544617]" +35273,He got kicked* just took an L Goodluck y’all ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😅,"[0.4329618513584137, 0.3018215596675873, 0.25656336545944214]" +43285, Bitchhh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44309499859809875, 0.25702551007270813, 0.2796170711517334]" +97,"If you value your life experiences over things you own, you’re on team Kiiah! ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4593590795993805, 0.2223125398159027, 0.2968544363975525]" +46223,I really just want to go home with my man and cuddle and sleep but we both at work ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.3108215630054474, 0.4540465772151947, 0.18731841444969177]" +35669, Haha maybe...but I don’t know any of them so who cares ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4621615409851074, 0.19422154128551483, 0.30606603622436523]" +59496,Can we talk about how great American accent is because I just found out he's Australian ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4860757291316986, 0.22155824303627014, 0.27566105127334595]" +37727, R we still getting a honeymoon suite? ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😁,"[0.5381151437759399, 0.1945202648639679, 0.24991270899772644]" +49467, Idk I think my base ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3456318974494934, 0.38404324650764465, 0.2132788896560669]" +24081, Neither did I ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43348637223243713, 0.3001967966556549, 0.2534775137901306]" +67925, That's right. Get all the heart from your member.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.34999164938926697, 0.3903358578681946, 0.21915429830551147]" +5554,I can not find the outfit I wanna wear for my birthday no where ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",🙌,"[0.6379684209823608, 0.10124588012695312, 0.23680782318115234]" +33569," Hey LaGuardia, the video is for Florida Blue health plan. Cute puppy, but I'd rather see what your daughters are up to ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4591328501701355, 0.2598663866519928, 0.26134592294692993]" +29174,My poor baby!! It was only a matter of time haha ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5438229441642761, 0.1810656040906906, 0.2540137469768524]" +54802,Need coffee ️ ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.32351741194725037, 0.4383338987827301, 0.21175652742385864]" +6999," They're all still bitter omg, shame on them ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3873959481716156, 0.34734585881233215, 0.24565747380256653]" +29599, It's leaving the 13th ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4792637825012207, 0.2518431842327118, 0.23208388686180115]" +34999,LMAOOO GET YU OUTTA THERE ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4149591326713562, 0.2973176836967468, 0.26696547865867615]" +45988, it's 4 real nuba,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4460826516151428, 0.25792983174324036, 0.2738541066646576]" +51885,I'm at the point in the semester where getting up for class is a punishment ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33432602882385254, 0.412436842918396, 0.21771487593650818]" +9018,tbh idrk you i’m sorry :—( pero ang ganda nyo sa header mo,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.47448858618736267, 0.22448286414146423, 0.26777681708335876]" +42886,I LOVE YOU!!! THANK YOU BABY!!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6758190989494324, 0.1053774356842041, 0.16456910967826843]" +20794,Birthday Girl..... ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5409198999404907, 0.1939658224582672, 0.2478821873664856]" +34686, It’s on commercials rn I’ll periscope in a tiny bit when it’s back ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5002105236053467, 0.20199093222618103, 0.2776728868484497]" +15496, No worries. And it's closer than some of my JSTOR searches ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😉,"[0.5014698505401611, 0.1355397254228592, 0.32108235359191895]" +11754,exams completed this week. I can finally breathe,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4410826861858368, 0.1861179620027542, 0.3353283703327179]" +13255,Only at art schools ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6214564442634583, 0.11334201693534851, 0.22385740280151367]" +67446,Yabona wena!!...you know my pain ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3187110424041748, 0.4283953905105591, 0.21322068572044373]" +66801,For the record I had three costumes this year for Halloween. ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😎,"[0.5898420214653015, 0.11169911921024323, 0.2567087709903717]" +243,im trashed i dont remember shit from last night my dick smells like sex so idk,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3609226942062378, 0.3787996470928192, 0.2313227355480194]" +11621," whine all you want, wontak is mine ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5159682035446167, 0.2066059410572052, 0.24774688482284546]" +34725,someone hang out w me and let’s sesh lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5045835971832275, 0.19698722660541534, 0.2746073603630066]" +56608, I’m always right,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😢,"[0.4018905460834503, 0.33436959981918335, 0.24195894598960876]" +32954," Wooooo, news to me ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3543514013290405, 0.37117189168930054, 0.22308847308158875]" +43929,Got one of those big box combos from Taco Bell cuz I was gonna save some for later but ummm... I kinda ate it all. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49000847339630127, 0.1996682733297348, 0.28721898794174194]" +50696,Not everyone you lose is a loss ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.42346686124801636, 0.25648146867752075, 0.29238954186439514]" +27372, Lets talk about how sandy hook was fake then ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4382604658603668, 0.2495109736919403, 0.29006531834602356]" +60023, what an ass (pun intended)! Luckily your body doesn't define the beauty in you ❤,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4934975206851959, 0.2199832946062088, 0.26735323667526245]" +8192,Tweeting from grave ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.44221726059913635, 0.2947728633880615, 0.2613523602485657]" +19782,Imagine Netflix doing a Stranger Things’ spinoff series about Babysitting Steve. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.39909711480140686, 0.3402692377567291, 0.24174416065216064]" +13699,i don’t wanna work a double tomorrow ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33279654383659363, 0.4304846227169037, 0.21867462992668152]" +30985," this has 66 likes right now, don't want to change it but I want to like ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4540698528289795, 0.23655584454536438, 0.2860448956489563]" +51770, hahahaha nah stop the one in the pink coat sends me west ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5209237933158875, 0.18430441617965698, 0.26275354623794556]" +27369,Correa’s proposal my emotions,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.42209571599960327, 0.3023495078086853, 0.26497745513916016]" +11002, My only captain,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6452944874763489, 0.09179456532001495, 0.22901156544685364]" +55544,jennyfrthablock look at my new purchase!!! ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😌,"[0.5915673971176147, 0.13083380460739136, 0.24524274468421936]" +928, tchoinnnnnn,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +44075,We're losing to a team that's lost to everyone .,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.46130940318107605, 0.26605942845344543, 0.2711161971092224]" +63352," I'm cool, don't bother me.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46228930354118347, 0.2481478899717331, 0.27463075518608093]" +22520, What and the time arsenal won the league at shite Hart Lane and that you haven’t won a title since the 60s ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4680591821670532, 0.2412712723016739, 0.2700863182544708]" +17945, OH WOW IT CAME TOGETHER SO WELL!! Great job! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5389721989631653, 0.1480734646320343, 0.2728504538536072]" +5647,"""still clean as a bitch"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43807098269462585, 0.25030916929244995, 0.2831551730632782]" +20203, what kind of dog is this? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.391440749168396, 0.3492226302623749, 0.23792308568954468]" +44690, Lol dress up just to go to a kitchen like nah fuck that give me some gifts and spread some love ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.45489299297332764, 0.26769062876701355, 0.26700687408447266]" +25868, Started late then Debs? Who you follow before Forest?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5386313199996948, 0.19479487836360931, 0.24035903811454773]" +23909,Getting in a hot tube like this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4036497473716736, 0.3328092098236084, 0.23293185234069824]" +13380,Forever wishing I had more Twix and also Arbys ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5272051095962524, 0.1799362450838089, 0.2645059823989868]" +4549, ya omg that’s what i meant when i say they “work together”,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5300687551498413, 0.18315087258815765, 0.26459217071533203]" +39772," Of course, bro thank you for the love ❤️",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙌,"[0.642042338848114, 0.09215380251407623, 0.23729544878005981]" +29971,I wish I could get paid to not go to work ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.45276185870170593, 0.26007211208343506, 0.27867069840431213]" +65202," You don’t suck , your just too awesome to date ",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4937569797039032, 0.1954628974199295, 0.26850178837776184]" +4654, probably draw em in Rd of 16 and he'll score a hat trick,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.483257532119751, 0.21239404380321503, 0.2763887941837311]" +22126,This song transition takes me out every time ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3386296331882477, 0.39163938164711, 0.22654449939727783]" +64067,kim yuna x park bogum for coca cola two of my favessss looked sooooo cute together ❤ © ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.43934983015060425, 0.2906506657600403, 0.26024240255355835]" +54358, Ok thanks so 5 hours ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😌,"[0.5969792008399963, 0.12277103960514069, 0.24429863691329956]" +62607,Highlighted in the newsletter! Connect with us: ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +38299, Same ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +27612," I’m right, you’re wrong and there’s nothing you can do about it THE FIBRES ARE FUSED TO MY HEAD ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3228975832462311, 0.4340467154979706, 0.20913314819335938]" +65156,Happy November ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😌,"[0.6222337484359741, 0.11091272532939911, 0.23988905549049377]" +42499, Thoughts on this ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5570714473724365, 0.15625496208667755, 0.26440250873565674]" +65456, Thanx✌,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +10968, sis you funny as hell ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45201197266578674, 0.2737382650375366, 0.2675648629665375]" +13974,Sitting here in tears staring at the screen just lost without you. I learned my lesson. I won't mess up again CL. Come back please.,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4644039273262024, 0.24268639087677002, 0.27778035402297974]" +39346, Night babe ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.6268057823181152, 0.11365848779678345, 0.2271866500377655]" +51474, I’m not very happy about it! But you guys are perfect ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.6900003552436829, 0.07001239061355591, 0.22110792994499207]" +38751," ""Fuck you, Sadness"" hahahaha ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5013052225112915, 0.2214057743549347, 0.2616710662841797]" +11556, Yo! My latest eBook has my favourite hacks for getting clients. Can I send you a link to it? (It'll be free for you) ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.4643888771533966, 0.12312278151512146, 0.3539704978466034]" +41056,Only thing I like better about android is how the updating works. Doesn’t make you reset your whole phone again ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.362372487783432, 0.36692148447036743, 0.2370777130126953]" +12318,My momma woke me up with a text that said I put money in your account ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😢,"[0.38962313532829285, 0.35323435068130493, 0.24046117067337036]" +17836,I can’t believe next week is my birthday this year went by so fast lol,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.44482630491256714, 0.2857961356639862, 0.2672989070415497]" +63010,One of my favorites backwards by ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😅,"[0.4371577203273773, 0.28481823205947876, 0.26843157410621643]" +35997, YOU NEED TO STEP UP YOUR GAME OML ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49396318197250366, 0.22701065242290497, 0.24357062578201294]" +6020,Goal in the Dortmund game for £167 no fucking luck at all,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5115768313407898, 0.2134394347667694, 0.26129454374313354]" +7343, And the fight begins ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4464603066444397, 0.2754242718219757, 0.27020853757858276]" +21840,I told all my ex girls can’t nobody take my place ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.44487854838371277, 0.27966856956481934, 0.27787142992019653]" +37169, You think so? ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.471995085477829, 0.25285521149635315, 0.26278629899024963]" +65649,Looking flights to be out,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6264949440956116, 0.10776516795158386, 0.23534652590751648]" +54621, With Free WiFi Missing buddy irrudha.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4533872902393341, 0.2750920057296753, 0.26062172651290894]" +35643, He high key had me aggravated at him more than once in this season though ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.5183089971542358, 0.19718505442142487, 0.2646661698818207]" +60702,Wanted to throw a party this weekend then I remembered someone has to clean after the party & ppl need a bathroom ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4471714496612549, 0.24518030881881714, 0.2826286256313324]" +15039,I was so drunk at our Halloween party it’s just sad ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4489103853702545, 0.2756412625312805, 0.2610279321670532]" +9318," Sturridge lost a leg, would get injured opening packs ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6118154525756836, 0.11764886975288391, 0.24207931756973267]" +3198,hopefully it will get released after the song reaches on Billboard Hot 100 ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😌,"[0.5946860909461975, 0.12347041070461273, 0.25108572840690613]" +23507, He's so fluffy. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5951332449913025, 0.13984070718288422, 0.2335444688796997]" +53390," + It would be amazing to go there though!! Will you be there to guide me through the journey, Oppa? ",😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😁,"[0.5229072570800781, 0.15007933974266052, 0.29410693049430847]" +19530, My thoughts right now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.444733589887619, 0.2865193486213684, 0.2599063813686371]" +48545,"Behave royal and smart with everyone,ButAlways behave local and silly with your dear ones. ",😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😅,"[0.432199090719223, 0.28535884618759155, 0.26569029688835144]" +5324,"‍️ Jorginho has never missed a penalty in his senior career; 9 taken, 9 scored! EASY. EASY. EASY! ",😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😁,"[0.5481942296028137, 0.17048217356204987, 0.2442449927330017]" +51322, have really comfy merch. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.40624257922172546, 0.3382752537727356, 0.2381514310836792]" +13864,Stanley in the back ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6655297875404358, 0.08034791052341461, 0.2207508385181427]" +47202, What the hell did i just witness ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.445624977350235, 0.2607693374156952, 0.27330487966537476]" +30595, This is priceless,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.45111072063446045, 0.2617419362068176, 0.2739470899105072]" +32131, tbh cool ng icon mo pati header pati dimples ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4694039821624756, 0.2236287146806717, 0.27804458141326904]" +51289, Everyone do ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +59235, facts i literally had tears come out my eyes,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34653255343437195, 0.4049983620643616, 0.2186838686466217]" +17697,I need to unmute all my dms ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.45021966099739075, 0.23171961307525635, 0.28723207116127014]" +54972,Chris Browns new albumyes plzzz,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6517637372016907, 0.08280341327190399, 0.23462322354316711]" +53176, Couldn’t resist ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😁,"[0.5212652087211609, 0.17334337532520294, 0.27453336119651794]" +42652, Found it.. just under the wing! ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😢,"[0.39025136828422546, 0.35979971289634705, 0.22100186347961426]" +39494,Oh my gosh I bawl my eyes out every single time I watch PS I Love You,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.585899829864502, 0.13294199109077454, 0.24479404091835022]" +60567,Mbn to be laid up.,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😔,"[0.2979837954044342, 0.45298123359680176, 0.2016618549823761]" +47543, hope your b… ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.45353269577026367, 0.24460214376449585, 0.2811928987503052]" +63835,JOHN HAS MY POST NOTIFICATIONS ON FOR IG weirdo,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4942498803138733, 0.2089654952287674, 0.27354896068573]" +67803, That movie. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.4004826247692108, 0.33867597579956055, 0.240006685256958]" +2911, Oh yes! I was all over it and plum distraught about it!! I just finished her show today and all is well! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😅,"[0.43260952830314636, 0.3034922778606415, 0.261106938123703]" +32959, Classic Bean! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4504506587982178, 0.25757890939712524, 0.2792397141456604]" +32260,OH MY GOODNESS go check out ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.42507967352867126, 0.30563458800315857, 0.2624431252479553]" +5679,They won't make it past round of 16. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.39956143498420715, 0.3300999402999878, 0.24963492155075073]" +8808, On the whole 90's baby gang nem ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4354037046432495, 0.25716522336006165, 0.2844124734401703]" +61842,I forgot to get my space heater out the trunk ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5643080472946167, 0.16068367660045624, 0.2551567256450653]" +13470, I do love pussy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5032088160514832, 0.2093580961227417, 0.25721022486686707]" +18063, Thank you kins!! God bless you too ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😎,"[0.597204864025116, 0.09000957012176514, 0.2788023054599762]" +14457,"It's cute, but I get jealous.. ",😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😌,"[0.6114422082901001, 0.13683612644672394, 0.21007001399993896]" +15067,i’m too funny idc idc ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45739951729774475, 0.24480897188186646, 0.2725819945335388]" +26000,That’s real speed at receiver there. ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.44571563601493835, 0.2651446461677551, 0.27517831325531006]" +50419, Cackling IRL,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44287845492362976, 0.23774169385433197, 0.29885587096214294]" +35549,Ion regret anything if it happened shid lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4483947455883026, 0.24413608014583588, 0.282888263463974]" +29440,mets taking it all next year ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4469568133354187, 0.27436795830726624, 0.2747113108634949]" +57287,"uh oh, Jared. There's a bus coming and it's got your name on it. Looks like your daddy in law wants YOU under it. … ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3605741262435913, 0.3751779794692993, 0.23481038212776184]" +33968, amin ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙏,"[0.4695896506309509, 0.0671471357345581, 0.4430115222930908]" +55405, don’t do me like that. I started & couldn’t stop,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.40126726031303406, 0.33413198590278625, 0.2535635530948639]" +5619,Yeah bitch wassss extra... I take back what I said thank u for opening my eyes ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.606079638004303, 0.12790653109550476, 0.23280340433120728]" +65287,Minseok is aging backwards!! ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3396662771701813, 0.4090099334716797, 0.21883410215377808]" +34716,Period I hope every hoe that don’t like me see this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4534708857536316, 0.2521038353443146, 0.2807471454143524]" +25103,Daniel Howell was found dead ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4411241412162781, 0.27480217814445496, 0.2696388363838196]" +57711, grit on a thowow ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +67628,November babies ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.3550870418548584, 0.3977000117301941, 0.22604987025260925]" +43623,She made me stop hiding her . I was enjoying being low key ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4391789436340332, 0.2986431419849396, 0.24524101614952087]" +452, whip your ass after the visitors have left just for staring at the rare food she cooked for them,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5143598914146423, 0.20748430490493774, 0.26223939657211304]" +63454,I love checking my bank account and seeing that I got paid ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4707461893558502, 0.25197717547416687, 0.2680595815181732]" +4636,Not even sorry that I loved seeing that lass crying because Real are getting beat ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3513278663158417, 0.397183895111084, 0.22293171286582947]" +14577, Have no clue,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43654677271842957, 0.24128034710884094, 0.2971058487892151]" +65842,Blade runner had some great visual storytelling candy for my eyes ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5450214147567749, 0.18068692088127136, 0.25327542424201965]" +7552,"Thanks you to our participants in the very 1st annual Reds Barbershop ""Online ""Pumpkin… ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",🙌,"[0.6665211319923401, 0.07868833839893341, 0.22891724109649658]" +68535, Jade will be excited ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46554335951805115, 0.2561997175216675, 0.2596184015274048]" +63053, He was trying so hard to find answer other then the Eagles are the best team ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46226516366004944, 0.2455444037914276, 0.27413758635520935]" +64821,people really get mad at you for not agreeing with their opinion and think that you’re being judgmental. i’m literally asking a question ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43240615725517273, 0.27925926446914673, 0.2693736255168915]" +5984,I will never hate on another female if you pretty you pretty I give props when it’s due okayyy,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😅,"[0.42091408371925354, 0.3174950182437897, 0.24915334582328796]" +54870,No it really isn't!! I am using manifestation and the law of attraction even more so at the minute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.37429186701774597, 0.36687126755714417, 0.23344415426254272]" +56303,"Let’s be honest, this was Akia’s idea... He’s in his element ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6276977062225342, 0.09784175455570221, 0.24310171604156494]" +44441, We gonn' discuss this on the phone ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5116697549819946, 0.17148636281490326, 0.27980178594589233]" +30432,"On a scale of 1-10 im fucking drunk, but then again, its been a cracker so who cares ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44587603211402893, 0.2873693108558655, 0.26369744539260864]" +963, they really taking it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43297064304351807, 0.28849080204963684, 0.2576654851436615]" +4754,OMG BEES ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4436056613922119, 0.28391918540000916, 0.2555289566516876]" +21963, Damn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.395942747592926, 0.34198662638664246, 0.2206205427646637]" +23389,"I need to start putting reminders on my phone , I've missed 3 events, this week already .",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.3905459940433502, 0.3489219546318054, 0.24227645993232727]" +26917,"Helllll yes I have two three day weekends at the end of the year, b2b too ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5858880281448364, 0.1439981758594513, 0.242961585521698]" +3444, IS THIS WHAT YOU LOOK LIKE ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4124068021774292, 0.3133338689804077, 0.2625328600406647]" +65633," a cheese burger, but it's gone now ",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😭,"[0.32572054862976074, 0.40691298246383667, 0.22162973880767822]" +59792,I’m so hyped I just ordered my World Series hat lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46258312463760376, 0.23784486949443817, 0.27518022060394287]" +60369,O shit Someone bout to steal yo girl ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4431084096431732, 0.2655254304409027, 0.27818208932876587]" +67558, ahh ok thank you ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5765439867973328, 0.15557734668254852, 0.24238747358322144]" +13305,She literally made my night!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4332757890224457, 0.29456090927124023, 0.26360970735549927]" +13414,Dodger Fans shitty I love it!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45995867252349854, 0.24522598087787628, 0.27230629324913025]" +37411,best team in the league ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😁,"[0.5156835913658142, 0.176667258143425, 0.27348777651786804]" +5181, y did u wait 2 days to reply ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4041704535484314, 0.3330698609352112, 0.25305888056755066]" +50408,OMG! Please cut cut cut it out. This HAS to be a joke! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3310406506061554, 0.3950957655906677, 0.22879436612129211]" +38908, super charming & adorbs. friendly ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😢,"[0.35646674036979675, 0.3823794722557068, 0.23185238242149353]" +19135,Or at work ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4632740318775177, 0.2495221644639969, 0.274820476770401]" +21668,You ever forget to change from your boxers to spandies on leg day and you're reminded every single squat when you hear/feel them rip ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.48564639687538147, 0.18417511880397797, 0.29552629590034485]" +42345,Masks ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5791219472885132, 0.14758655428886414, 0.2456885278224945]" +58486,got my midterm grades back and I’m very happy with myself ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.5668268203735352, 0.1606982797384262, 0.24651998281478882]" +29997,they find out everything ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +29952,Lakers bringing the Championship home ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😅,"[0.46699991822242737, 0.27039003372192383, 0.2409302294254303]" +28668,I’m deaaaaaaaddddd ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +31505, What he fuckkkk VY nails changed it up in there ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44196832180023193, 0.2802145481109619, 0.2681801915168762]" +56655, He has so many skills i didn't see this one coming,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44432610273361206, 0.23051749169826508, 0.29390594363212585]" +11813, Haha I’ll hold ya to it,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48805853724479675, 0.17927004396915436, 0.2948776185512543]" +30339, it's some serious shit ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4530963897705078, 0.269257515668869, 0.2718902826309204]" +14110,Stranger Things won’t load ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.34077274799346924, 0.4152347445487976, 0.22177711129188538]" +30429, I'm just enjoying the silence. ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😌,"[0.6094284653663635, 0.12079764902591705, 0.23451486229896545]" +56700, I’m crying ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36837005615234375, 0.39110809564590454, 0.22774991393089294]" +4445, Congrats on the new gig! Excellent station! Give and a happy hello for me!,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",🙌,"[0.6556881070137024, 0.08124355971813202, 0.23550507426261902]" +17775,"Lordy, plz bless me with a fineee man like any of these handsome fellas ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5339252352714539, 0.18666411936283112, 0.256568044424057]" +40418, Phenomenal!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6638096570968628, 0.07604950666427612, 0.22149330377578735]" +48037,Thanku so much ! Baxot lovely ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.6881886124610901, 0.06881465017795563, 0.2104261815547943]" +59813,I can't wait til bina's birthday ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😌,"[0.5770180225372314, 0.1430995613336563, 0.24419885873794556]" +23321,My 15-16 yr old Jelena heart is living rn ❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36947086453437805, 0.36947160959243774, 0.23585742712020874]" +59085,Best one I've seen!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44180992245674133, 0.27780601382255554, 0.2641720771789551]" +41692,God uses someone to help other people. God is good all the time. Its great that armys still remember God. ☺ ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😁,"[0.5261620879173279, 0.125431090593338, 0.3030318021774292]" +17860, I’ll buy those leggings to hoop in tho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4791613817214966, 0.22673839330673218, 0.27666613459587097]" +52878, That’s so cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6362391710281372, 0.11038947105407715, 0.21415609121322632]" +53212, ay I love Christmas me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5448678731918335, 0.18713195621967316, 0.2353207767009735]" +11812,Lmao we know ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4666793644428253, 0.22091777622699738, 0.279579758644104]" +4823, Aww shucks Al! You’re not a bad date yourself ! So many great takeaways from tonig… ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.6171169281005859, 0.10534432530403137, 0.24681630730628967]" +65779,"(1) LILUZIVE Answer: ""If you keep your feet from breaking the Sabbath and from doing as you please on My Holy day, if you call the",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5467147827148438, 0.17580649256706238, 0.2595691382884979]" +62031,"Im not even interested in nobody else, shit brazy",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4689982533454895, 0.27041834592819214, 0.26590970158576965]" +51881," Thank you! And yes ma’am, will do ❤️.",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.6253320574760437, 0.10686071217060089, 0.2390281856060028]" +58372, rdy to get tik tok famous ugh ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4619002640247345, 0.27179259061813354, 0.26992496848106384]" +38794,Instagram is gettin slick ! You can choose who you want to hide on recent search ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.28007712960243225, 0.46830639243125916, 0.1852056086063385]" +3030,the commentary is killing meeeeee ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5346462726593018, 0.1768362671136856, 0.26142749190330505]" +33328,this is awesome ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.5384701490402222, 0.12703625857830048, 0.28977862000465393]" +10900,My heart aches every single time I hear of another tragedy...And makes me realize how precious each day of life is & the world,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.522282600402832, 0.16560399532318115, 0.2806928753852844]" +1407, I’m taken so I cancelled all gay activities until further notice ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4699009656906128, 0.22169265151023865, 0.28717494010925293]" +23683,"""Don't let the things you can't do overshadow the things you can"" ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.44565054774284363, 0.2552013099193573, 0.2825811803340912]" +6407, Seems fair enough...,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4469597041606903, 0.2357107549905777, 0.28443631529808044]" +45998, It really be like this,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4227627217769623, 0.30527663230895996, 0.24771586060523987]" +4528,Guys... please bring me cool drink ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5247158408164978, 0.17578552663326263, 0.27052512764930725]" +58628,I think i had a panic attack in my sleep ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38053423166275024, 0.3527853786945343, 0.2475438416004181]" +60397,My cars name is peaches cause she gotta big back end,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4453659653663635, 0.2674400210380554, 0.27399739623069763]" +43037,Lets start the maduguang ilong ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4261620044708252, 0.24108777940273285, 0.2988303005695343]" +18797,"I don't need you, I just wanted you .",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.40641310811042786, 0.3258715867996216, 0.24383211135864258]" +28985,HAPPY BIHDAY INDAY wish u all the best Take care always ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😊,"[0.6801589131355286, 0.0748136043548584, 0.2226332426071167]" +7539,tbh i'm kilig ng slight when u call me bebe hihi so ayun sana ur always happy ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",🙌,"[0.6726211309432983, 0.07331335544586182, 0.22963246703147888]" +33120,I want pero i'm tamad ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.3624914586544037, 0.37011003494262695, 0.2249492108821869]" +9284,I wanna go New York ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😌,"[0.5781615972518921, 0.15008454024791718, 0.23549994826316833]" +55566, Omg I love you this video is still the funniest thing of my life,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3972114324569702, 0.3355124592781067, 0.24396589398384094]" +31761,Frappe is life! ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😅,"[0.4199492931365967, 0.29947078227996826, 0.2645510137081146]" +62344,Ever need a confidence boost? Set up a plenty of fish account ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4695626199245453, 0.24623902142047882, 0.2723545730113983]" +43773,Me meo con Dustin ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4775810241699219, 0.23864610493183136, 0.26958033442497253]" +40001,everything is beautiful once you have a positive outlook on everything,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😍,"[0.6964499354362488, 0.058801840990781784, 0.1940566599369049]" +15517,She just wanted to make a cute dance video omg ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4721396565437317, 0.2515832185745239, 0.2636106312274933]" +13340, I can’t unsee it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +6458,She look just like u ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.43126577138900757, 0.29308369755744934, 0.266855388879776]" +65448,My son be smelling so good. I literally lay my face in his neck at night ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3498246967792511, 0.3835231065750122, 0.23158791661262512]" +13805,"It was just gonna be another night with the boys, making some noise... Then she walks in ",😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😔,"[0.31218668818473816, 0.4356622099876404, 0.21116921305656433]" +17151,"I made my boyfriend check the other side of my room for monsters, I’m 18 going on 8 ",😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😌,"[0.574401319026947, 0.1615779846906662, 0.23391598463058472]" +57899, Morning ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",🙌,"[0.6293047070503235, 0.10568435490131378, 0.23381641507148743]" +34758, You know I’m gonna subscribe to JuJu’s YouTube page! ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.510392963886261, 0.1958375722169876, 0.27168065309524536]" +8911,"Thank you for having us over to chat about the EU, and the civic society! See you at opening! ❤️",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.6006080508232117, 0.12758968770503998, 0.2417638599872589]" +27424,Wish I was gonna a be home why did I have to go to school out of state. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.43199506402015686, 0.29882335662841797, 0.26223376393318176]" +13118,I’m tryna fuck you & ya bestie ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😅,"[0.42222103476524353, 0.3161201477050781, 0.2518598735332489]" +61398, Thank you so much Abbey!! ❤️,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😌,"[0.5969024300575256, 0.12895964086055756, 0.2408532202243805]" +34829,Aww man this hurt me ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😭,"[0.3469495475292206, 0.4049089848995209, 0.2273079752922058]" +60031,Hope I have a bigtomorrow when I wake & look at the total $$ in my Gnight world. May you be blessed with crypto prosperity,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5671794414520264, 0.13262933492660522, 0.2702992856502533]" +33614,My boss talking about no cells. Yeah right.,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.45331069827079773, 0.26252540946006775, 0.2739490568637848]" +16966,Really don’t understand the FOMO with $BTC right now at ATH. Buying more $RPX $CVC $NEO $ZRX right now ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😭,"[0.3447372317314148, 0.4046718180179596, 0.21620774269104004]" +36463, I got that tho‍️... but I got no meats ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4859316647052765, 0.21226239204406738, 0.27386710047721863]" +13153, Thought of the day ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.39653798937797546, 0.32179999351501465, 0.25621557235717773]" +5017, Congrats guys knew you could do it and super pleased with xx,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.647560715675354, 0.083042673766613, 0.23690983653068542]" +2115,"If bae say he doesn't like me going somewhere, guess where I'm NOT going? ..theree ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.33392736315727234, 0.4088711440563202, 0.21973255276679993]" +64021, Butt getting bigger after.......I notice it ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.4353865087032318, 0.27705010771751404, 0.27490779757499695]" +51825, never ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +38266, Girrrrrll!! This storyline is everything ! His interaction with everyone when they realize is making me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5612363219261169, 0.16647793352603912, 0.25161212682724]" +45261, Now I do need a swipe ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.45252475142478943, 0.26239895820617676, 0.2589170038700104]" +17339," ""There are lies, damned lies, and statistics."" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5999272465705872, 0.11750750243663788, 0.24120786786079407]" +61275, Ah right. If thats what happens then it has to be Aaron?! Cant see him risking his life for anyone else ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.438019722700119, 0.2787126302719116, 0.25500306487083435]" +38204,Ugh... I needglasses!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4546206295490265, 0.25644534826278687, 0.21418491005897522]" +44534,My boyfriend spoils me,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5908660888671875, 0.1517873853445053, 0.22742795944213867]" +52783,"I haven't been on Twitter a lot, so enjoy this picture of a fabulous pig ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😎,"[0.5889502763748169, 0.10757298767566681, 0.26940202713012695]" +30522,Same ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +36460,Driving at night it so scary ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.39841926097869873, 0.32485949993133545, 0.25565648078918457]" +34519,Looking forward to attending the tomorrow with so many of women I love and admire. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6362795829772949, 0.10203331708908081, 0.24391072988510132]" +19354,Morning battles . . . . . . . ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6293047070503235, 0.10568435490131378, 0.23381641507148743]" +42828,My sky bill was £110 this month skint all ready,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3315372169017792, 0.40275514125823975, 0.2196379005908966]" +62782,Sounds exciting!!! Can I join this club ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5380306839942932, 0.16947557032108307, 0.2647870182991028]" +3307,B so pretty ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5394349694252014, 0.19163697957992554, 0.25734275579452515]" +6037,This mf ... who would’ve thought lil old Tiana with the famous smooth ... someone come get this boy ... you not the famous bettis ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37940147519111633, 0.3510631322860718, 0.24068671464920044]" +46449, That’s the part that got me ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5201959609985352, 0.16097325086593628, 0.2815309464931488]" +14451, Glad my story could be of service lol ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😁,"[0.5632616281509399, 0.13199970126152039, 0.26956117153167725]" +40416, Better get my hair chopped and buy a wig for Mr LBUK! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4529801905155182, 0.27612531185150146, 0.2544294595718384]" +28649, stop bro!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4267260432243347, 0.2884477972984314, 0.26032841205596924]" +65130, Good shit you got this! ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4603944718837738, 0.2566242516040802, 0.2737453579902649]" +12840, Missed you too!! See you on sat ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😔,"[0.30103254318237305, 0.4684287905693054, 0.19857633113861084]" +7930,so happy☺️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6220577359199524, 0.12378162145614624, 0.22545266151428223]" +43027,omg btob is winning so much i’m so ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6355549693107605, 0.10226203501224518, 0.22888213396072388]" +21523,I freaking love this comic ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.543355405330658, 0.17288200557231903, 0.2527272701263428]" +7050,What's the endgame here Do you forsee yourself getting land at the end of this or ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.43863266706466675, 0.25249385833740234, 0.29486075043678284]" +66917, Thank you beb!!! Miss u ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.589022159576416, 0.16209641098976135, 0.22162792086601257]" +47116,He's so adorable . ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😔,"[0.2878938615322113, 0.46762073040008545, 0.2011967897415161]" +54521, Damn you beat me to it,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3359232246875763, 0.4371570944786072, 0.2204611599445343]" +36823,She looked good & all but I'm tired of her hot dog legs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.2681024372577667, 0.47197863459587097, 0.17031782865524292]" +21834, I’m just wondering what side Christina is on ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😊,"[0.6855204105377197, 0.06324976682662964, 0.2125740647315979]" +44284,Hate waking up horny ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3121798038482666, 0.42383861541748047, 0.21274712681770325]" +40427, You are my new hero. Instant follow. ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.521122932434082, 0.14575089514255524, 0.2898768484592438]" +8510,Suddenly miss taengsic ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.5595563054084778, 0.17259541153907776, 0.23612689971923828]" +29829,Verlander finally got his ring too ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.5129653811454773, 0.20074887573719025, 0.2626998722553253]" +17795,"anybody down for conspiracy videos, pizza, big red and cuddles? ",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.43445929884910583, 0.27270132303237915, 0.2742205560207367]" +30111, I put the sister thing in my name ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5629092454910278, 0.16654635965824127, 0.2293063998222351]" +21467,Ya Boy Andrew Fontenot ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.5355222821235657, 0.1699674278497696, 0.2620883285999298]" +17534,I'm going to the mall again. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3544001281261444, 0.338182657957077, 0.2537827789783478]" +16887,Just checked my card & I'm negative $99 fml.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.35593923926353455, 0.38380977511405945, 0.22920924425125122]" +25738," Awe, I want too so much & we can feast on pink & red Starbursts.",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.43380874395370483, 0.2942604720592499, 0.2653683125972748]" +9246,Dagomba boobs.Boobs with tribal marks ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.47610118985176086, 0.2512437701225281, 0.2650199830532074]" +25789," Damn, a lot has changed since MC Lyte, Roxanne Shante, Queen Latifah and Monie Love......and it's not a good thi… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5594881772994995, 0.17609897255897522, 0.2369002103805542]" +68466, Anytime dear ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5977500677108765, 0.13225889205932617, 0.2397507131099701]" +62855, How’s about sharing a vegetarian plate? Asking for a friend. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4466747045516968, 0.24304838478565216, 0.284969300031662]" +55187,OMG YOUR VOICE IS SO PERFECT ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5675015449523926, 0.16298997402191162, 0.23601987957954407]" +6989,Be an asshole and honk repetitively at me after the light has been green for 1 second and I’ll make sure you don’t make the light ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4321765899658203, 0.2774209976196289, 0.27726107835769653]" +35866,i’d rather start Jered Weaver than Darvish even tho Weaver ain’t on the dodgers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.32574328780174255, 0.4075164198875427, 0.22273746132850647]" +26968,All I need to know is: can sit me in this same spot and cut my hair? ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.40907004475593567, 0.3108466863632202, 0.2600990831851959]" +8455,"⁤⁤⁤⁤⁤⁤⁤⁤⁤I post this tweet 1 time in 4, or 25.0% of the time.⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤⁤",😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.4463805854320526, 0.27767378091812134, 0.2666676640510559]" +34292," this new video is amazing, fantastic job ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",🙌,"[0.6537513136863708, 0.08640366792678833, 0.23007801175117493]" +19259,Guuuyssss... ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +39861, I am too ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +4707,IDC R Kelly Be Jamming... W/ His Rapist Ass ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4458789825439453, 0.26734521985054016, 0.27586328983306885]" +13400, I’ll do ANYTHING for a M&G pick some barbzzz as wel,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.5078983306884766, 0.18511493504047394, 0.2820137143135071]" +21111, I pray o. When i done win 2 trophies already. 3rd one December,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43345001339912415, 0.26989859342575073, 0.2713564336299896]" +30863,"Man Yells ""CNN is Fake News"" at Anderson Cooper via ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44267550110816956, 0.2545568645000458, 0.27706506848335266]" +20570,They really got me workin so much,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.43486687541007996, 0.2770344614982605, 0.2585795521736145]" +14993,Gone but never forgotten. RIP shady shell ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😭,"[0.33791878819465637, 0.387491375207901, 0.22567731142044067]" +55331, please get a key lol I’m having withdrawals from not watching you play this game ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4364985525608063, 0.29420024156570435, 0.2643849849700928]" +24144,Idk why I’m laughing so hard at that video ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44732433557510376, 0.2674809396266937, 0.2742948532104492]" +52353,Wowwwwwww ummmahhh pic of the brother & sisterly affection & love & support... love you❤ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6274571418762207, 0.10884831845760345, 0.2263498604297638]" +51007,EVERDAY I AM REMINDED THAT I'M UGLY ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4426312744617462, 0.25980550050735474, 0.27586445212364197]" +47424, Nawwwww why even ask that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4877687096595764, 0.2260352522134781, 0.27044743299484253]" +15182,They grow up so fast! ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4620336592197418, 0.2597360908985138, 0.2726965546607971]" +65311,I was looking for . I found and am happy. okay almost. Must A little save next month I think. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6074492335319519, 0.1187782734632492, 0.24478721618652344]" +15631,"If you know me, u know how OBSESSED I AM with this song and how I scream when I sing it‍️ ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5156876444816589, 0.19978903234004974, 0.2536417543888092]" +34197,looks great ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.541911244392395, 0.13416613638401031, 0.29157936573028564]" +45617,How beautiful is she? so proud of my girl ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6678463816642761, 0.0808836817741394, 0.21566838026046753]" +41629, I know!! I got so excited when she said yes as well! Gonna miss his face ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4794664978981018, 0.2446337789297104, 0.2616979479789734]" +57471, Noooo this gif noooo,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46754613518714905, 0.23253154754638672, 0.28033211827278137]" +24686,My son doesn’t even know...he y’all too much,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.32921114563941956, 0.42312875390052795, 0.21698465943336487]" +43303,Iike a damn snitch ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.31384003162384033, 0.43333667516708374, 0.2121453881263733]" +18952,good morning and thank god ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😊,"[0.6879486441612244, 0.05720300227403641, 0.22251498699188232]" +16547, You lying,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.27363064885139465, 0.4660733640193939, 0.19377341866493225]" +45198,"~ you got me wondering why ii like it rough i, I like it rough ~ <3 ^*Rest In Peace grandma*^ ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.42110708355903625, 0.2505515515804291, 0.3008997440338135]" +35197,Gotttt mf damn ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.40656396746635437, 0.3127901554107666, 0.25647950172424316]" +43939, remember when we tried to immitate this.... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44466447830200195, 0.268911749124527, 0.27505794167518616]" +50630, But their neck ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.33582475781440735, 0.3879275918006897, 0.23130762577056885]" +40184,Hey is this me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😀,"[0.6331605911254883, 0.08447320759296417, 0.2485564649105072]" +5318, I just rubbed some cream in when I got home. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5746641159057617, 0.14853909611701965, 0.2433946430683136]" +31261,Just be happy ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.636349618434906, 0.10313194990158081, 0.23117467761039734]" +28040,My frnd Uncle. ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😢,"[0.3914937973022461, 0.3380715847015381, 0.24742233753204346]" +36371,I'm a bad man ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.45840758085250854, 0.2271786779165268, 0.27899208664894104]" +12614,Today was a dam good day,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.5033866763114929, 0.2069413810968399, 0.2707785665988922]" +63801, I have to find a way to wear this to the job! I love this shirt. ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.46585968136787415, 0.1790703982114792, 0.31339123845100403]" +42422," My dear Queen Nnohaj... check your site when you can. I just sent you my response to ""A Mummy Among Us.""",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.577456533908844, 0.14154775440692902, 0.2528873383998871]" +13247, Ha!!! Keep me posted on how that turns out for you. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4674994647502899, 0.24550163745880127, 0.27957838773727417]" +32722, You have a good wife there Benny ...one of the best!!,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5580199360847473, 0.1707756221294403, 0.24483537673950195]" +41216,Sorry for being inactive! I'll make sure to be active now! Sorry sorry,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4537481367588043, 0.2824782133102417, 0.26684147119522095]" +58057,I know I'm very sexy ❤️❤️❤️❤️. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😀,"[0.6477975249290466, 0.07848774641752243, 0.23601406812667847]" +9980,The fact that this Hyejin girl is from tje Philippines and is 13yrs old. Yikes I'm so scared ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44685763120651245, 0.2550971210002899, 0.28126245737075806]" +50026,Ohhh nooo RIP ! ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😢,"[0.36281076073646545, 0.32933977246284485, 0.265190988779068]" +59815,Wisdome tooth pls be good to me ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.4424709975719452, 0.2953321039676666, 0.25275400280952454]" +52707, Followed,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",🙌,"[0.6392260789871216, 0.08988063037395477, 0.218017578125]" +11664, Thanks nat! Fingers crossed it’s not a resit though it will definitely be you and then we can celebrate!x,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5788485407829285, 0.14492899179458618, 0.24716797471046448]" +60798, 90's kids Song ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.529251754283905, 0.1944149136543274, 0.2501559853553772]" +8890,“I literally love Justin Verlander” -Jose Altuve ❤️,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.442223459482193, 0.2540575861930847, 0.28807923197746277]" +41714, I’m dead,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4527203440666199, 0.27367639541625977, 0.26372846961021423]" +68089,Happy birthday myca alonzo ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😍,"[0.712283194065094, 0.05335390940308571, 0.210898756980896]" +19291,I want to be twin sister ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5664188265800476, 0.14459699392318726, 0.2566918134689331]" +51780,+ my dad gave us money to buy to celebrate na malinis na room ko wtf hahahha ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.4283798038959503, 0.30583569407463074, 0.25734344124794006]" +699, Thanksss ya dear for telling this..finallly our wish of B scenario came true,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49340391159057617, 0.21448814868927002, 0.2705758213996887]" +6935, Thank you tirahhh,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +54682,I remember when I first started trading bitcoin and everyone told me it's a scam and I'll lose all my money...,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4276057779788971, 0.22299562394618988, 0.32460111379623413]" +30174, fam your name... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5644266605377197, 0.12150348722934723, 0.2652522325515747]" +19579,"I don't care about my job sir... I care about you"" ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.45920267701148987, 0.238119974732399, 0.2848626375198364]" +1357,Can we just take a moment to appreciate that my mom looks like a fucking Queen ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4477120041847229, 0.29251402616500854, 0.25612542033195496]" +67896, Same.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +18505, Done help me too,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😏,"[0.45744356513023376, 0.14197881519794464, 0.3748214542865753]" +18094,Chris Brown got 45 tracks on One album? I can’t even do it ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5397486090660095, 0.1760304570198059, 0.25874876976013184]" +26702,What a shitty costume lmfaoooooo all the things you coulda done ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4403800666332245, 0.27767181396484375, 0.2721009850502014]" +62037, YOU ARE SOO DAMN CUTE WITH TAHT CURLY HAIR U LIL SHEEP ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.528319239616394, 0.211588516831398, 0.21838787198066711]" +4051,cuddleeeeeee ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +36538," Your good dawg, trust the process and god has plan for you",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.45816323161125183, 0.19236864149570465, 0.3140009641647339]" +28329,Tomorrow's not Friday ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.35517117381095886, 0.39210280776023865, 0.23534563183784485]" +60906,Someone come over to our new place ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😌,"[0.5813141465187073, 0.1442698985338211, 0.24809208512306213]" +516,And i have a freaking presentation to be done but im nervous as hell! I should just be calm and relax ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44825273752212524, 0.24418719112873077, 0.28131839632987976]" +15693, most of the times yes ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6149901151657104, 0.10116882622241974, 0.24929755926132202]" +45283, hey Madison ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😀,"[0.6331605911254883, 0.08447320759296417, 0.2485564649105072]" +33766,I would be ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +2900, Nah man she's taking the piss ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44362929463386536, 0.258964478969574, 0.27304214239120483]" +18194, that a yes Cort?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.594078004360199, 0.12251104414463043, 0.24866029620170593]" +55597, i got a CD and it says up on the housetop which I always remembered but my dad argued that its rooftop Conspiracy theory?,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.44327640533447266, 0.2552102506160736, 0.2799266576766968]" +66234, Seeeee it did it again ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😅,"[0.43348637223243713, 0.3001967966556549, 0.2534775137901306]" +40232,Twitter really be having me weak,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44818180799484253, 0.26709213852882385, 0.2763625681400299]" +2755, Maybe dawg ..,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5312661528587341, 0.182259663939476, 0.2655591666698456]" +35382, pr hommes ou?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙌,"[0.6696335673332214, 0.0775584876537323, 0.22481724619865417]" +5833,Hello shiffi no pick my call again ooo!!!! Madrid boy are u there!!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48665937781333923, 0.22619330883026123, 0.26644986867904663]" +41937,"I just watched a little boy, about 8yrs old, eat 12, TWELVE pieces of candy between Benning Road and Eastern Market ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.45011815428733826, 0.25985679030418396, 0.2771914005279541]" +29749," Jobless? This is their full time job. You know they get paid for this, right? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4230647385120392, 0.268044650554657, 0.2818152904510498]" +16373,You all better have told him you liked his costume and said happy Halloween ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5420861840248108, 0.17501337826251984, 0.25745832920074463]" +48588,when did drake retire?? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43385064601898193, 0.27919134497642517, 0.27146822214126587]" +17766, Your Q&A yesterday gave me life. I’m enjoying the honest character arcs & can’t wait to see how the season unfolds!,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.514723539352417, 0.20041398704051971, 0.25867369771003723]" +9126,Omggggg I’ve been looking for this video ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5089590549468994, 0.2170167863368988, 0.2474353313446045]" +68471,Can't find and Shane and Friends podcast on Spotify ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.46872568130493164, 0.2418777048587799, 0.27569201588630676]" +65074,Congress is paying oops playing well. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.44631871581077576, 0.2607361078262329, 0.2720504403114319]" +4194, What Then we must have a naked man then ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4608252942562103, 0.23024676740169525, 0.2683815658092499]" +27781, star bisnis get for your capitalwin trading contest 24000$… ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😊,"[0.6767786741256714, 0.07188030332326889, 0.2295166552066803]" +63230, Hook a fan dying to see you with tickets ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.47524359822273254, 0.23578931391239166, 0.27591150999069214]" +66653, That's a yes then ! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.594078004360199, 0.12251104414463043, 0.24866029620170593]" +29843,BELTRAN AND VERLANDER HAVE RINGS! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5179958939552307, 0.2076895385980606, 0.25267472863197327]" +45383,Since it's suggested you cum on topdo the driving ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5152786374092102, 0.21720580756664276, 0.2493152618408203]" +10956,Wehhhhh i'm in love w that mashup ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +36524,Omg my heart ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.39792636036872864, 0.3497486412525177, 0.22605958580970764]" +49809,"Congratulations on your for your film, Outstanding. SO pleased for you. ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5724758505821228, 0.11316841840744019, 0.28113582730293274]" +61706, Sooooo strong,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.40109512209892273, 0.3306836187839508, 0.25832197070121765]" +9187,YOU’RE DOING AMAZING SWEETIE ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6426093578338623, 0.09860092401504517, 0.2253773808479309]" +58991, Please DM me,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.445313960313797, 0.25960347056388855, 0.27796950936317444]" +10867, love u maine! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.485686331987381, 0.2079000622034073, 0.28089168667793274]" +32693, Hittingthat person with Annika's chandniThis is disgusting -_-,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.37407639622688293, 0.3417201042175293, 0.25072360038757324]" +5326, That's one of my faved song FaberDrive entitled When I'm With You. Listen to it.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.5605197548866272, 0.16751301288604736, 0.24146565794944763]" +54093, I didn't see this,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45071688294410706, 0.23323068022727966, 0.2897474467754364]" +23646,Black-ish is one of the funniest shows ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3870309591293335, 0.3456743657588959, 0.24555110931396484]" +33544,So excited that got announcedbut its heart breaking its the last city!Excited 2c how many shows are added ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.4561160206794739, 0.2695055305957794, 0.24165278673171997]" +43510, b24 gostou ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +34396,Like bitch u posted on social media . Bitch Halloween was last night u dressed up early ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44988247752189636, 0.21249547600746155, 0.3028468191623688]" +2376, Yoooo the third one ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.3801896870136261, 0.29952284693717957, 0.2782471179962158]" +38290,This actually just makes me extremely happy ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.475263774394989, 0.2565357983112335, 0.25664177536964417]" +22897," ""Trying to make the world a little more beautiful"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😀,"[0.6287670731544495, 0.10027605295181274, 0.24909090995788574]" +50694, wowww ya parents don’t wanna beat Jamm up,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.32940858602523804, 0.42069604992866516, 0.21684420108795166]" +65899, Big basket of a hand bag ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38355690240859985, 0.35301998257637024, 0.24041152000427246]" +7521,No lo puedo evitar... Me podes Elvis Presley - Can’t help falling in love with you ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49303150177001953, 0.21705253422260284, 0.26527756452560425]" +61750, I'm in love with it ❤️,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +60848, Never heard beats like this just tryna shoot my shot and work! ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.4587245285511017, 0.09396329522132874, 0.3976954519748688]" +9775, LMFAOOOOOOO u a cold nigga dawg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.349409282207489, 0.3978482484817505, 0.2242109477519989]" +34148, I DUNNO WHAT HAPPENED ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.3219885528087616, 0.444435715675354, 0.21534252166748047]" +9511,Hi to my first friend in shs! Thanks for being so real and lowkey mabait. Muling ibalik... lol joke ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4408334791660309, 0.2548348605632782, 0.2794337272644043]" +52570, Lmfao skating was the only thing I was elite at I still got it too u buggin,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43698862195014954, 0.2746662497520447, 0.27266839146614075]" +33171,dat awesome.. ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😁,"[0.5388931632041931, 0.1339496523141861, 0.28571054339408875]" +3031,"Klopp using Milner, Can, Hendo, Grujic and Ox in midfield last few minutes ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6150540709495544, 0.11405773460865021, 0.24039915204048157]" +68678,I wanna feel your guts too ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.37657004594802856, 0.3712780475616455, 0.2268080711364746]" +15805,Dr.M pls don’t ask me historical dates on spore I wasn’t raised there He prolly spent more time in my country than I did lel,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4196629524230957, 0.3051079511642456, 0.2596219778060913]" +36982, What happened ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37307050824165344, 0.3772616982460022, 0.23763635754585266]" +12285, Gone head drop tht he I'm skipping school,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.40806272625923157, 0.320825457572937, 0.2604281008243561]" +12237,Anxiety levels are through the roof right now ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.39578449726104736, 0.3339044451713562, 0.25364306569099426]" +5956,What a week for Real Madrid.... about as bad as Kevin Spacey’s ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45108282566070557, 0.25338828563690186, 0.2767640948295593]" +29573,Jay Jagannath Good morning friends.. ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙌,"[0.6528047323226929, 0.08899739384651184, 0.2304896116256714]" +39523,11/18 it's going ZOWN ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😢,"[0.3711494505405426, 0.3692222833633423, 0.22262868285179138]" +55915, iconic trio daw ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4774491488933563, 0.23751585185527802, 0.2760298550128937]" +14629,"Careful who you're pinching, Oilers. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😊,"[0.6979737281799316, 0.05682883784174919, 0.20087191462516785]" +47816,I'M CRYING SO HARD ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.40659192204475403, 0.31704944372177124, 0.24716007709503174]" +61296,hate when I have to tell him something but I'm mad ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.38267216086387634, 0.3421614170074463, 0.24220454692840576]" +11606,"Nerd here: Hey Sunny, how was your Halloween? - - Bruno Mars",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😀,"[0.6281044483184814, 0.0894327312707901, 0.2492818534374237]" +64289," FIDGET FINGER SPINNERS, MINI HAND STRESS POCKET TOY, FOCUS, ADHD ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4441332519054413, 0.253356397151947, 0.28519758582115173]" +68613, Seldom right but never wrong eh chez ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3528442680835724, 0.40200376510620117, 0.2219211757183075]" +38927,"i hope so too, i didnt loose a family member .. thank god but i lost my first actual pet ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4854176342487335, 0.2285202294588089, 0.25241467356681824]" +49269," Oh god, not you too etz",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44319725036621094, 0.28378474712371826, 0.2725817561149597]" +50252,Right ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4018905460834503, 0.33436959981918335, 0.24195894598960876]" +55953," Awww, no! Hey, but at least you got them! We hope you're enjoying your new shoes! *MC ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6289175152778625, 0.09635308384895325, 0.2425144910812378]" +44282,This is so cute I love SHIT like this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48980170488357544, 0.2550360858440399, 0.24862051010131836]" +37292, Lmao I did say that first hour it’s true,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.43878525495529175, 0.26842015981674194, 0.2725129723548889]" +51034,You're the only one who writes my name like that Thanks ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.6087705492973328, 0.12199583649635315, 0.23758557438850403]" +39567, Yesss babee he is soo powerful and God is goood,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4886901378631592, 0.17153094708919525, 0.30366116762161255]" +8764, Yeayy ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +56154,Today’s episode review ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.5210147500038147, 0.21108025312423706, 0.25315073132514954]" +20702,Wtf Is Wrong With Mirranda ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33796656131744385, 0.4182283282279968, 0.21649104356765747]" +49612, Lmao this is our year just watch ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.45063796639442444, 0.2618139088153839, 0.2770084738731384]" +834, Wet and yummy ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😊,"[0.6803736686706543, 0.07011274993419647, 0.21526694297790527]" +45070,"Excuse me miss, I don't mean to bother you, but you got a fat ass. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43865635991096497, 0.2749598026275635, 0.2608361840248108]" +46611,Rest In Peace soldiers of WWIII ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😏,"[0.4107011556625366, 0.1588083654642105, 0.3744770884513855]" +50989,". you know that’s a Liverpool pub, so you gotta go, right?! ",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😅,"[0.42590776085853577, 0.2973151206970215, 0.2643238306045532]" +12634," Yes, I do exist and speak up very often!!",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34168463945388794, 0.3928539752960205, 0.2251552939414978]" +35392,Btchs don't be wanting they bd until they see him making another btch happy 🗣🗣🗣 let that kid get a step mama,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4449247717857361, 0.27148759365081787, 0.2763138711452484]" +40014,Another sembreak wasted ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5281046628952026, 0.15005435049533844, 0.2835012972354889]" +2925,"Happy Bday boss, come back soon to argentina please! ",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.6260431408882141, 0.1018017828464508, 0.24274328351020813]" +31255,Elementary!!!!!Grow-up!!!!!‍️ I cant with some of y’all on here Toooooo Funny!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44334059953689575, 0.25438663363456726, 0.28088024258613586]" +61628,Why did I dream about meeting nf last night it felt so real,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😭,"[0.3348366916179657, 0.4006212055683136, 0.22360080480575562]" +6675," I must be stopped, V! Bring my normal self back. ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5845447182655334, 0.13501287996768951, 0.2468484342098236]" +65328, Missing Shorvori ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.455284059047699, 0.27878960967063904, 0.2625526785850525]" +45631,Thanks? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😊,"[0.6941412687301636, 0.07213307917118073, 0.21396255493164062]" +16057,"Modern Coffee Table m-SOLD!Kitchen Trolley & Carpet left If you buy it, may FREE KANTOT! Haha BUY IT NOW! Par… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5716990232467651, 0.1449752002954483, 0.25404635071754456]" +3324, Lol exactly. The worst part is he wanted it for free ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43021079897880554, 0.2794225811958313, 0.27072083950042725]" +39716, wanking arm?!? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.2928810119628906, 0.46349745988845825, 0.1972256898880005]" +18886,They airball 95% of the time ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😌,"[0.6178947687149048, 0.10980281233787537, 0.24607786536216736]" +53943,Hays ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😢,"[0.3571430742740631, 0.38348332047462463, 0.22821849584579468]" +6419,Missing you ! ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😅,"[0.455284059047699, 0.27878960967063904, 0.2625526785850525]" +50420,Happy birthday Pauline!!! Here's a video of you getting lit in Mexico! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😀,"[0.6320838928222656, 0.09614598751068115, 0.2509205639362335]" +34978, Lmfaoooooo why they gotta do him like that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45635658502578735, 0.2420060634613037, 0.2799053192138672]" +42938, Mine too ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +52108, one step closer na kami ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4533207416534424, 0.23734483122825623, 0.2816915810108185]" +64756, Pictures please. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.66535484790802, 0.08966821432113647, 0.20600390434265137]" +66784,Fighting aeris ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.7037253975868225, 0.06321492791175842, 0.21052494645118713]" +57817, Yeah we've gone down this street so do I ❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3726250231266022, 0.3582281768321991, 0.23551097512245178]" +810, he also said that you are slow like a turtle hahaha but im sorry ㅋㅋㅋ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.35345765948295593, 0.3778976500034332, 0.22965198755264282]" +14307,Lmaoo yesterday my mom told me to go straight home after work & read the Bible ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4145660996437073, 0.31931445002555847, 0.25778070092201233]" +51659," Hi Smart, when will be the release of iPhone X at Smart Wireless and Online Stores? ",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.4892078638076782, 0.22510375082492828, 0.2689116299152374]" +42787,"Happy November 1st, or otherwise known as the day every senior has been dreading for months ",😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😌,"[0.6144716143608093, 0.11068123579025269, 0.24447309970855713]" +46282, And if Emily feels the same then sorry Ethan ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3337539732456207, 0.40820661187171936, 0.2201286256313324]" +36808,I just want 8 hours of sleep like everyone else is that too much to ask for? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3797535002231598, 0.37173938751220703, 0.2255597710609436]" +4901, So cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6362391710281372, 0.11038947105407715, 0.21415609121322632]" +35258, PREACHHH,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +2232, WOW .... Dont know where it’s located but looks devastating. Prayers to all involved .,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.43570676445961, 0.21484079957008362, 0.31883135437965393]" +66544, I wish people actually think I'm younger than my 16 yr old sister and I hate it lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36925724148750305, 0.3551313877105713, 0.24825766682624817]" +31631,November be a blessing to yo baby 🗣️,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.5158988833427429, 0.19491377472877502, 0.2672877013683319]" +30540, thank you ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +60826, Dam can't even win a game cus ppl start acting ALLL kinds of different ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4201829135417938, 0.28286629915237427, 0.27364352345466614]" +50539,"My professor just laughed at me for not knowing when the next test is..my response ""I take my L's on a week to week basis"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4795186221599579, 0.24687062203884125, 0.26911717653274536]" +13169, check your dm! tks,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😁,"[0.5632166266441345, 0.12363477051258087, 0.280490905046463]" +48394,Weirddd ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +22846,Why is it so hard for me to swallow pills ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.43053093552589417, 0.22476240992546082, 0.31855207681655884]" +26618, Will cancel the search party. I love candles ❤️x,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5793344974517822, 0.164347305893898, 0.20639857649803162]" +11915,Bro my sisters are funny,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.461762398481369, 0.27178725600242615, 0.270061194896698]" +65308," They see me rollin, they hatin ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44339728355407715, 0.24831968545913696, 0.2876366674900055]" +42133,The rainbow is so prettyyyyy~ double ones some more. Enjoy Swiss!! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5858370661735535, 0.12778079509735107, 0.25337010622024536]" +7817, it doesn't matter anymore. It has been dispatched now ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.4631964862346649, 0.2575283646583557, 0.23670542240142822]" +51609, Biiihhhh riiiiight!!,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.45435863733291626, 0.2845908999443054, 0.2558497488498688]" +23436, today's show is tooooooooooo much guys ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5459961891174316, 0.18925480544567108, 0.23517155647277832]" +63976,I’m fine ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.5797200202941895, 0.19619427621364594, 0.15500766038894653]" +27186,I literally already am ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4184972941875458, 0.31020116806030273, 0.2592976987361908]" +20425,talking to ky is funny asf bc she think she knows every damn thing with her smart ass mouth. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4366583526134491, 0.2849082350730896, 0.26773446798324585]" +57993,Life’s great man... fr ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.44460031390190125, 0.2065601795911789, 0.3086818754673004]" +46632, That's right!!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4018905460834503, 0.33436959981918335, 0.24195894598960876]" +11558,Torn between studying and editing a new video. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.40100306272506714, 0.33590492606163025, 0.23595240712165833]" +62149, STILL ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +16844,I NEED! Where can I get them at by tomorrow? ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😭,"[0.3411443531513214, 0.43206116557121277, 0.21951746940612793]" +22658, You know I stay out the way,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4592764377593994, 0.15084724128246307, 0.333574116230011]" +27393, Welcome Sam Speek Spanish?,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.5265728235244751, 0.19510029256343842, 0.2597244083881378]" +64268, See you girl!!,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.45766639709472656, 0.27198362350463867, 0.2625434696674347]" +62872, Ihy it's Sunday ☹️☹️☹️ but thanks burned chicken nugget ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.5017864108085632, 0.20168201625347137, 0.2718069851398468]" +50612,I think we can all agree that Marli is everyone’s forever ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5380122661590576, 0.14635959267616272, 0.27430447936058044]" +45865,Saw this and thought of Jacob ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4055634140968323, 0.3256862163543701, 0.25217345356941223]" +9468, Save 10 years worth of wages by retirement ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5981794595718384, 0.1377464383840561, 0.2348378598690033]" +21420, Bae you like anime too? ♥️,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.36197465658187866, 0.40130117535591125, 0.2177313268184662]" +3175, You cooked grant that day that's for sure ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47582265734672546, 0.16864395141601562, 0.3159475326538086]" +39385,I'm literally hoping 2018 is nothing like 2017 ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5452760457992554, 0.1444665789604187, 0.2806292772293091]" +34099,18 minutes into my shift n I’m hiding already ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",🙌,"[0.6474299430847168, 0.0907650887966156, 0.22554266452789307]" +53644,"Not only her, i mean all of my caring friendsss. Thankyou ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4888802170753479, 0.24270762503147125, 0.2542722821235657]" +8612,Hey I’ve had these boots for less than 3 weeks and they’ve split already ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4206649661064148, 0.30901259183883667, 0.24331292510032654]" +21618, Yh true but I ain’t coming by myslef cus 1: I wouldn’t be allowed and 2: I would be scared,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4301779866218567, 0.2553166449069977, 0.2869190275669098]" +7365, Haha don't blame ya pal ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47232571244239807, 0.20234520733356476, 0.2843460738658905]" +13078,Sike idk . ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33384421467781067, 0.4072381258010864, 0.21300452947616577]" +67204, Ee to wrong number hai. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45984339714050293, 0.26623350381851196, 0.26308774948120117]" +53915, 24 dayys,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36336758732795715, 0.35701149702072144, 0.23310691118240356]" +4330, He can’t even walk down the steps girl byeeeee ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.3109251856803894, 0.44017934799194336, 0.2168222963809967]" +55564,I wish I had more time to troll a troll.... but i have a life ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4105593264102936, 0.22977811098098755, 0.317743182182312]" +48315,That’s IF my siblings have kids ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34283798933029175, 0.39690065383911133, 0.22784411907196045]" +24039, Thank you Michael miss you too !! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.46342718601226807, 0.2799757122993469, 0.25294744968414307]" +44429, ya girl is ugly crying ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4164009392261505, 0.3016708791255951, 0.2559170126914978]" +19102, Where’s the glockenspiel? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +8525, Same thing happens to me too lol ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.45707371830940247, 0.23269708454608917, 0.28122174739837646]" +43835, Had to mute this conversation. Can’t have wild animals coming at me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4512113630771637, 0.24654430150985718, 0.2861628532409668]" +20841, Well I can’t argue with that. But I will cheer against you tonight. I don’t even follow baseball that much but TEXAS!!! ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😅,"[0.40507251024246216, 0.30491170287132263, 0.2541346549987793]" +42923, shiiiid! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +30581,Video calls ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4522390365600586, 0.2455878108739853, 0.28105786442756653]" +22078, Love it ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +6997,When Your Girlfriend Made You Mad But Yall Talk it Out AND She Sent Nudes After ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.37647712230682373, 0.3530477285385132, 0.23549774289131165]" +67342,I shouldn’t be up ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.42503872513771057, 0.30208951234817505, 0.26641446352005005]" +45416, showing progressive as always leadership again ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6094942092895508, 0.11562064290046692, 0.2398945689201355]" +36676,He knew it was gone he didn’t even look ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3829348087310791, 0.33856716752052307, 0.2508198320865631]" +30733,Damn =( the fake unfollowed me . you gotta fanboy.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44422584772109985, 0.2520710527896881, 0.2804006040096283]" +42856,I love cant believe Elvis is dead very tearful last episode. will be missed.… ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4266447424888611, 0.31811168789863586, 0.2313346266746521]" +47869,Don’t try to race me on the highway if your car beat up ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.503024697303772, 0.2232450693845749, 0.2629850506782532]" +49925,"Sonya, I GASPED, PLEASE WE NEEEEEEEED THIS ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +35683,Good Morning ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6791377663612366, 0.06248137354850769, 0.22196438908576965]" +43293, Yea I like where I’m at now I deal with a lot less bullshit I only talk to employees ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.39532580971717834, 0.3331071436405182, 0.258963942527771]" +3817,Can we expect Ellipsis B sides anytime soon ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😉,"[0.5154215097427368, 0.12457650899887085, 0.32289186120033264]" +67385,Happy birthday to me ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😍,"[0.712283194065094, 0.05335390940308571, 0.210898756980896]" +63595, Stfuuuu ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +26886,Soooo after starting our lob carb diet a week and a half ago I’ve lost 3.5lbs ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.3846823275089264, 0.36113226413726807, 0.23735126852989197]" +47818, Thank you! ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +10770, Akere you'll tell us the budget mchana,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44218841195106506, 0.25517401099205017, 0.28662508726119995]" +44828,My Highschool!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4157510995864868, 0.3036176860332489, 0.25908219814300537]" +10028, stop looking so good,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😌,"[0.5726958513259888, 0.1640911102294922, 0.22714123129844666]" +25305,My dream vehicle but in white ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.34061676263809204, 0.38308632373809814, 0.22736957669258118]" +46782,You & I both ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😢,"[0.3790457546710968, 0.4185755252838135, 0.22681286931037903]" +33807, It's not like you guys have been together long or anything ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4603610038757324, 0.2557156980037689, 0.2720525860786438]" +2328,such a good feeling knowing you got people you can always rely on ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.5246741771697998, 0.20625758171081543, 0.2523152232170105]" +8809,now i know,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4670252501964569, 0.20194599032402039, 0.2885521352291107]" +41098,Now she'll always be late ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.38104358315467834, 0.3500182628631592, 0.2375902235507965]" +61857," Irrelevant to the point I challenged Rabia on. Read her tweet again, more slowly this time ",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😅,"[0.44805219769477844, 0.28343480825424194, 0.2646646797657013]" +38801, she's so irritating she not even cute,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4760994613170624, 0.24398092925548553, 0.26374679803848267]" +38142,FONDANT CAKE PLEASE I REALLY WANT ONE TALAGA❤,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.31942394375801086, 0.42189455032348633, 0.21798092126846313]" +68009, vo pta h doctor k baare m bol Ra tha Honestly that's one of the best topic ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5709344744682312, 0.14054597914218903, 0.2594601809978485]" +38318,ITS LIIIIIT DIS MY FAV DISNEY MOVIE ❤️❤️❤️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.3890211284160614, 0.3415330946445465, 0.25243881344795227]" +14998, Clearly the best month of the year ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.4458085000514984, 0.27409958839416504, 0.26899462938308716]" +45598," I'm done ""he called me a roach with lip injections"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43873804807662964, 0.22750113904476166, 0.3048788607120514]" +57402, same but that’s what I️ heard tho ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4292588531970978, 0.2606387436389923, 0.28660479187965393]" +59903, Flawless gleeeeeee ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.3853023946285248, 0.3567575216293335, 0.2372942864894867]" +21847,U failed to share that part Bruh I drove back to the crib to get (cont) ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3452968895435333, 0.3947629928588867, 0.22676891088485718]" +21032," GO AWAY, already! We don’t want to see you anymore! You’ve done enough! ",😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😢,"[0.37000688910484314, 0.3505263328552246, 0.24919185042381287]" +43660,"I don't need rating & promotion, I need rest kind of week for me. ",😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4452257454395294, 0.230777308344841, 0.2935185730457306]" +27554,I️ really be chillin in my own lil world ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.5147309303283691, 0.20352625846862793, 0.24945244193077087]" +17915,My sister asked me why am I rooting for the astros and not the packers what what,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5014628171920776, 0.2135542780160904, 0.2673041522502899]" +20614," Wow ♥️ , I got mine too x",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😎,"[0.6041675209999084, 0.10446535050868988, 0.2551819980144501]" +12744,Okay ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5910883545875549, 0.1357368528842926, 0.23555916547775269]" +8518,"happy 50th birthday to my hardworking, loving, and amazing kickass popo. i love and miss you. ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7265468835830688, 0.06006097421050072, 0.20615962147712708]" +59864, Of course ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😎,"[0.5964906811714172, 0.10532023012638092, 0.2564704120159149]" +1244,Smile to you @ Starbucks Thailand ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😢,"[0.4039413332939148, 0.3240227699279785, 0.2524532973766327]" +53540,Our Halloween costume ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5862249135971069, 0.11951325833797455, 0.25364500284194946]" +41634, Tickets booked ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6182453036308289, 0.10764583945274353, 0.2457529902458191]" +23834,Ohhhhh ma gosh ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.545752227306366, 0.17344173789024353, 0.2510458528995514]" +47780, I reallllly like this one.,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.46029892563819885, 0.2567102611064911, 0.26967477798461914]" +6979, Ohh no what were they doing!?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44604602456092834, 0.2596084177494049, 0.283674031496048]" +22526, Weh! Now this one is dark.. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.571434736251831, 0.1529022753238678, 0.24882224202156067]" +16436,holy shit those visuals ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5054906606674194, 0.20988091826438904, 0.26024866104125977]" +4843, this guy is on your side tonight!!! Time to wake up the bats for Game 7! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4436872601509094, 0.23999330401420593, 0.29595255851745605]" +39601,Isang book ni john green for christmas please ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.6045714616775513, 0.11961202323436737, 0.2419569194316864]" +33603,Ya so crazy ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4610888957977295, 0.25710538029670715, 0.274204283952713]" +39483,“Archie’s definitely shook” I’m dying ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4467307925224304, 0.25913020968437195, 0.27805498242378235]" +17587,Me And GOT GIRLFRIENDS WITH THE SAME NAME JUST SPELLED DIFFERENT ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48961275815963745, 0.20575420558452606, 0.28354373574256897]" +32763, Niggas got paper skin & glass bones ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4592932462692261, 0.251512736082077, 0.2754034996032715]" +66971, I'm not i just fangirl over his gwaponess pero i know some of his lines ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😌,"[0.5871257781982422, 0.14127856492996216, 0.24509111046791077]" +54769, guess not as comfortable as you travel - but I'm on my way from VIENNA to SALZBURG! C u tonight again… ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5116128921508789, 0.17009153962135315, 0.2871042788028717]" +68213,I hope we really get new music ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5394313335418701, 0.17599837481975555, 0.2551310956478119]" +3217, burnt allllllll da way out ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46575412154197693, 0.23279394209384918, 0.2764799892902374]" +35602, Bored to death of people who watch daytime telly all day & tweet about it. Erm.... try working? Problem solved ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.42799440026283264, 0.29424548149108887, 0.25120776891708374]" +23046,My little brother told me “you should play football after college cause you’re fast and can catch.” I’ll give it a shot dude,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4607103765010834, 0.2615645229816437, 0.27592262625694275]" +33665, yes austin,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6062676906585693, 0.11779972910881042, 0.24599233269691467]" +44177, u damn near go like that too,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4419668912887573, 0.25461825728416443, 0.28403523564338684]" +35931,Lmfao Angie kills me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4011555314064026, 0.3153381943702698, 0.25877711176872253]" +65785,Google ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😉,"[0.4982644021511078, 0.10557900369167328, 0.35094109177589417]" +50129, I just got into a fight,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45246168971061707, 0.25598305463790894, 0.27792057394981384]" +56787,"My son sleeps all day and all night... please wake up, I want to play. ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.40265390276908875, 0.3259877562522888, 0.2575128674507141]" +55173, Little finger?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43877112865448, 0.26675790548324585, 0.27797433733940125]" +4404, Gotta be quicker than that. Already liked and commented ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4297429025173187, 0.2946333885192871, 0.2622258961200714]" +25385, Miss you,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😅,"[0.5171481966972351, 0.2837722897529602, 0.1993439495563507]" +36429,2018 IS TWO AWAY & I STILL THINK 2009 WAS LIKE 2 YEARS AGO.,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😅,"[0.4410319924354553, 0.2808973789215088, 0.26699569821357727]" +30514,Not even much of a baseball fan but I waited all my life to see my city win a major sports championship ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4544871151447296, 0.24634288251399994, 0.2746228277683258]" +42114, There was no white Aaliyah however there are black Barbie dolls,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3509054183959961, 0.38183629512786865, 0.2261980175971985]" +42071, Wait.... What....That is Skyrim in the back. Sorry I was distracted by something else. ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.49724382162094116, 0.22932206094264984, 0.26260507106781006]" +13174,So Katelyn done drove round this round about 4 times in senatobia I’m so tickled lordddddd,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38856104016304016, 0.3314667046070099, 0.2555357813835144]" +67846," No idea, i just typed ""wig"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49067315459251404, 0.2222391813993454, 0.27067163586616516]" +38571,"I-armys can't relate, we can even watch it w subs ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49873045086860657, 0.2346215844154358, 0.26209017634391785]" +31380, coffee after show drinkies my treat ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.48953479528427124, 0.18700648844242096, 0.29403242468833923]" +50827,HAPPY HUMP DAY with MI HERMANO HECTOR ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.6380596160888672, 0.09113679826259613, 0.236139178276062]" +35587, She was guh,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +13014,"I wonder which Hollywood celebrity will get exposed tomorrow?At this rate, there will be now more actors available for movies ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.39869558811187744, 0.3236636817455292, 0.25979122519493103]" +21198, Oh boy❤️❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49730515480041504, 0.23464389145374298, 0.25703269243240356]" +52288,I want a new car. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5274278521537781, 0.21985600888729095, 0.23187527060508728]" +49003, I cry ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +8214," i just wanna cry, eat a bagel and listen to anywhere the whole day long. I can‘t believe that i‘m going to see you for real! ❤️",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3871765434741974, 0.3525732159614563, 0.2335459291934967]" +1708,Happy First day of November Tweethearts!! ❤,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.6065120100975037, 0.11861948668956757, 0.23444899916648865]" +35714,Holy fuck I’m in love ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6000086069107056, 0.13143090903759003, 0.23307645320892334]" +26583, LMFAOOO I am he really made my day better I was seconds away from throwing my comput… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34037885069847107, 0.3912774920463562, 0.22695079445838928]" +23697,Sing this on the 1st faithfully ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5596010684967041, 0.16891896724700928, 0.24739471077919006]" +65852,Welcome November,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5845012068748474, 0.12551821768283844, 0.25496044754981995]" +50736, bitte ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +49868,This rain trynna put me down but I can't go cause I got hella work to do ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😔,"[0.28846752643585205, 0.457693487405777, 0.20789381861686707]" +52920, barista: “one venti green tea latte with soy for.. Rhanielle?” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49100956320762634, 0.20988012850284576, 0.27561482787132263]" +16210,Happy birthday babe miss u! Walang ganap? :(( anyway stay pretty and palaban juk haha love you! One message away lang me mwa,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😌,"[0.5898609757423401, 0.1336856484413147, 0.2440302073955536]" +36187, That explains it ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4544523358345032, 0.2312416136264801, 0.2903875410556793]" +64957,I need to fix my headlight I'm lagging it,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.3122909665107727, 0.4366954565048218, 0.2119903862476349]" +39165,Been all day ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.46538516879081726, 0.2319965958595276, 0.27310407161712646]" +48852, Now that's what I'm talking about ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.4511699676513672, 0.2691763639450073, 0.271247923374176]" +59054, TWICE??,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😊,"[0.698970377445221, 0.06168338283896446, 0.20277005434036255]" +39447, This dude. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5092833042144775, 0.16956375539302826, 0.27770736813545227]" +53453,"When you love someone, always make it a point to say it, show it and prove it to them. - ",😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.49793940782546997, 0.20841281116008759, 0.2773840129375458]" +39847,"the beginning LMAO “ you in my hood homie, MS gang “ ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5586951971054077, 0.1511407494544983, 0.25701063871383667]" +42195,Yessssss It's my birthday month....It's the month of Thanksgiving andddddd I get paid 3 times In this month... ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5287324786186218, 0.17276400327682495, 0.26843520998954773]" +40877, you just so stupid deplorable idiot doesn’t know what’s ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😢,"[0.37929123640060425, 0.34673574566841125, 0.2463078796863556]" +890,Selling my 24/7 messy dog for free and has 100% discount. Legit seller here ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4803658127784729, 0.2329319715499878, 0.27638229727745056]" +38148, Same!,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +40113, Thanks ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😊,"[0.6941412687301636, 0.07213307917118073, 0.21396255493164062]" +59622, posted a cute ass video of us and I legit cried my eyes out,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4739897549152374, 0.24882996082305908, 0.2584078013896942]" +24085, No punch intended neh ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4379177987575531, 0.25186094641685486, 0.28465351462364197]" +37020,Sometimes the best person to talk to...vent to...is our creator ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.47463980317115784, 0.25142425298690796, 0.267644464969635]" +50926, I thought for a secs. T’was u ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.40144187211990356, 0.32799625396728516, 0.24589979648590088]" +1335,indeed I agree ☝ ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.5786949992179871, 0.10841232538223267, 0.26634418964385986]" +29037, Everybody that's hating there team wasn't even in the series ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4464099109172821, 0.28288784623146057, 0.2704053819179535]" +30258, WAIT WALKED OVWE WHERE,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3363174498081207, 0.41877874732017517, 0.2159123420715332]" +8622,Is there anythinggggg worse than people touching you and that when you’re gunna be sick I don’t want my back rubbed fuck off !,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3704739212989807, 0.3629750609397888, 0.23608243465423584]" +21102,A little reading for my ILP and a healthy snack! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5605255961418152, 0.1603900045156479, 0.25260627269744873]" +2059," Aaron, you are amazing ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.6222484111785889, 0.10861723124980927, 0.2423698604106903]" +7424,...searching job postings in Germany... ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.45547357201576233, 0.27276453375816345, 0.26621320843696594]" +139," Depends on the driver, so always a gamble ",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.6553189158439636, 0.08486327528953552, 0.23092705011367798]" +13600, ahem ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.604932427406311, 0.12889046967029572, 0.23223799467086792]" +41793,Should i buy 2 ver but then i really have shortage of money for this week ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44981300830841064, 0.28548693656921387, 0.2584783136844635]" +55216, Ally.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44892776012420654, 0.26282840967178345, 0.27653831243515015]" +7800," Thank you, Bea! See you on the 12th? ❤️",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +45793, I've been in the waiting room for tickets for 23 mins now ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😁,"[0.5345638394355774, 0.18466709554195404, 0.25914737582206726]" +59331,Been sitting in the family room talking to my cousin for like 4 hours❤️ I'm going to miss this when we move out,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5086284279823303, 0.22231577336788177, 0.2589171826839447]" +33857,TAKE my MONEY brilliant inventions from markdebonis . This clip is from his set that won… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46513232588768005, 0.25355634093284607, 0.2675589919090271]" +11374,yeahh… ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😌,"[0.6218999028205872, 0.1042831689119339, 0.24566975235939026]" +62424,tryna be like this w somebody daughter ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.3295170068740845, 0.42702263593673706, 0.2175699770450592]" +57717, Omg Naa she swept them between the whole from her fridge and her sides,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49980971217155457, 0.20371900498867035, 0.27569299936294556]" +5693,Hoh! Man can never be hot ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4837406575679779, 0.23650553822517395, 0.2629893124103546]" +22600," I mean, I get to talk about the stuff that comes out of humans everyday, not lizards though. I don’t get paid for that ",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.42792120575904846, 0.18417508900165558, 0.35081401467323303]" +60835,Happiest bday to d most fantabulous sophisticated director da!! D most talented director until now have seen ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.5807961821556091, 0.13867761194705963, 0.2477806806564331]" +30633, Ima dm you cause I don’t want no one doing brujeria on me by knowing too much. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43884310126304626, 0.29041874408721924, 0.26155516505241394]" +62907,"My phone is finally fixed, after so long ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.43763062357902527, 0.2904856503009796, 0.2642773389816284]" +26275,Chill foe ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3994571566581726, 0.32635509967803955, 0.25319263339042664]" +16650,I’m soooo hyped ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.495479941368103, 0.22301718592643738, 0.2627989649772644]" +45065,"The biggest lie I ever heard:""No one is above the law""",😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.37717822194099426, 0.34900861978530884, 0.2420763075351715]" +21520, and will rock those scenes! We all know Danny always sees his old father pic from the family photo.,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.5402463674545288, 0.16712452471256256, 0.26171523332595825]" +10702,think the same! ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.471995085477829, 0.25285521149635315, 0.26278629899024963]" +18167,I was about to say ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4471547305583954, 0.23802275955677032, 0.2882240414619446]" +16680,Yo this be me oss...SOBER ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44757330417633057, 0.2594156563282013, 0.28059303760528564]" +2765,NOVEMBER JUST DO YOUR THING! -GoodMorning☀️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5669759511947632, 0.15021896362304688, 0.25235334038734436]" +37473,Ayy looks like the wizard is in his workshop ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4745217263698578, 0.22173456847667694, 0.27932649850845337]" +48767, It'll be like Ovaltine for the eyes ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.482828289270401, 0.2291404753923416, 0.2692487835884094]" +39214,Let them beards grow and prosper this month fellas ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4572528600692749, 0.24795860052108765, 0.2822219431400299]" +54275, Thalaivi is back ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +18927,If I could just quit smoking and drinking I would be rich ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46966660022735596, 0.21510492265224457, 0.28384634852409363]" +38621,Noooo Bob ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4098288118839264, 0.3154638409614563, 0.25779691338539124]" +13858,I only ate half and then asked for a to go box so I can taste it again tomorrow ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4420715868473053, 0.27013909816741943, 0.274118036031723]" +31682, you’re laughter implies you aren’t taking me serious before I even make my point!,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4857920706272125, 0.19021138548851013, 0.29490771889686584]" +35995,Blessed man..,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.49753284454345703, 0.20739252865314484, 0.2706659138202667]" +52091,Ashish Nehra Trending ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5793193578720093, 0.13399000465869904, 0.2505663335323334]" +42363, YASSS It's time for a great show LoV꒱Spell〆ღ: ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😊,"[0.7001132965087891, 0.06732846796512604, 0.20997396111488342]" +17960, Pagi dek have a nice day,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5246942043304443, 0.18929672241210938, 0.26374194025993347]" +17753,for leaving u. t’was all my fault ps. imy,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😁,"[0.552115797996521, 0.15386047959327698, 0.2621776759624481]" +10562, so excited about bedroom floor music video!! You are killing it. Love you since 2011 ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😌,"[0.6071430444717407, 0.12549225986003876, 0.2312162220478058]" +64305,Amen. ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.48897236585617065, 0.09773151576519012, 0.3680305480957031]" +13208, just gotta play aorund with it,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45443013310432434, 0.2559835910797119, 0.2770259976387024]" +6278, im cryingg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4717002213001251, 0.2443167269229889, 0.2633156478404999]" +66811, A golf pic. But a shot that I didn’t see anyone else post so I’m pretty sure it’s mine. I’ll dm you. ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.47861164808273315, 0.2328132688999176, 0.2730009853839874]" +50475,Yall gotta learn everybody dont hold the same respect for that shit like yall do & some of us will BAT TF OUT YOU for thinking we do ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😢,"[0.3504052758216858, 0.3929174542427063, 0.23115476965904236]" +3409,FIFAcom: ManCity: The goal that broke the record (cc aguerosergiokun) ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5931457877159119, 0.1091700941324234, 0.24291345477104187]" +41722,What the heck wifi..,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.4084559381008148, 0.33195269107818604, 0.24704399704933167]" +54597,I don't know wtf else to do? ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😢,"[0.40041494369506836, 0.3275896906852722, 0.2542373538017273]" +60695,I'm High Asl I'm Just Tryna Nail ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😭,"[0.3494535982608795, 0.3948805034160614, 0.2243887186050415]" +21851, no money ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4530697762966156, 0.257266640663147, 0.2669743597507477]" +61436,"New month, New Blessings Thank you to all our clients for choosing from our array of services. ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5553687214851379, 0.1089620292186737, 0.3016431927680969]" +657,It should be medu vada ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +12739,y’all so trash and i’m so dumb ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4469228684902191, 0.25263887643814087, 0.27911749482154846]" +65042,Not ready for semster 2 sey... 6-10pm ???? ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.5932464599609375, 0.1433720588684082, 0.22900167107582092]" +21188, Plato’s Closet!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3478274345397949, 0.39773717522621155, 0.2248096466064453]" +43863, Yay! Lecture 5 is this week right or am I doin the wrong work ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.482038289308548, 0.2514445185661316, 0.2571682631969452]" +33662,HIS PAUSE ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.437781423330307, 0.24241717159748077, 0.29419222474098206]" +67643,Such disrespect ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😤,"[0.2602205276489258, 0.47474151849746704, 0.19658619165420532]" +31549,I got bath and body work coupons going to get plugins and some candles ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😔,"[0.2941892445087433, 0.44882732629776, 0.1910269856452942]" +46403, Me ga The mainest,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.639889121055603, 0.10076038539409637, 0.2274044156074524]" +17249,Cam thinks he isn’t gonna watch the Grinch with me... BOY IS HE WRONG,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43232324719429016, 0.30347901582717896, 0.2497108280658722]" +25712," Oh suuuuuuure.... ""accidentally"" Lol.",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.44540050625801086, 0.2636781334877014, 0.27470341324806213]" +67491, This is without a doubt the only man that would touch Hillary. She probably pays him to. She's used to pay to play,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4342988133430481, 0.28240966796875, 0.27318626642227173]" +58268, Really enjoyed meeting you & hearing about your fantastic work! Always good to learn more about the wonderful ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",🙌,"[0.6624683737754822, 0.07502986490726471, 0.22509044408798218]" +41258, You’re living it up .,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.47217562794685364, 0.24371899664402008, 0.2688240706920624]" +35805,Dinner is really good as fuck I should cook more often ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5092581510543823, 0.22454436123371124, 0.24448543787002563]" +55910,"My heart bigger than my body, shit gon end up killing me or sum shit",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.35917550325393677, 0.4033861458301544, 0.22310221195220947]" +30849,Naaah the level of energy I've had this week needs to return next week as well pls! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.3991645872592926, 0.33708178997039795, 0.24921926856040955]" +16302,My stomach is cramping so fucking bad ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.322794646024704, 0.42642852663993835, 0.21217796206474304]" +9670, wish I could tweet that photo from the other day but I'd get skinned alive,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48594480752944946, 0.2136540412902832, 0.27733832597732544]" +60964,Season tickets confirmed ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5929943919181824, 0.1341080367565155, 0.24542883038520813]" +68375,Kayness ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +3474, Caroline Kristiansen is a model London student (22 Photos) ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.450228750705719, 0.281172513961792, 0.23831871151924133]" +32448,u know ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4670252501964569, 0.20194599032402039, 0.2885521352291107]" +40402, charot ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5039440393447876, 0.17919966578483582, 0.28149351477622986]" +5985," YES, THAT MEANS BEING ABLE TO BEND, SIT, TURN, MANUVER IN ANY POSITION, RIGHT?!?! I WANT THAT!!!!",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😢,"[0.37641048431396484, 0.3551151156425476, 0.24635440111160278]" +15819,Me as a parent ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.27137213945388794, 0.47819364070892334, 0.19292140007019043]" +56920," Atz Lee you're such a trooper , love the show but my super hero is always game &as nails lo… ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6215459704399109, 0.10778743028640747, 0.24029508233070374]" +16273,You poking friend ❤️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.43603116273880005, 0.29358553886413574, 0.26210665702819824]" +37002, ...and btw I have lots of zippos ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4899614155292511, 0.2249867022037506, 0.2599572539329529]" +15129, you are just my idol love me some Mary,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5907189249992371, 0.14254936575889587, 0.23399782180786133]" +57757, Only half my games were double doubles I suck ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4615354835987091, 0.26551687717437744, 0.27082860469818115]" +45082,These dumb asses man ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41989845037460327, 0.2865423858165741, 0.26322001218795776]" +48330, cameo from a young stallion in this ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😅,"[0.42919811606407166, 0.2961336076259613, 0.26492446660995483]" +42213,It’s amazing how much my life has changed in a year and I’m so greatful for every change made. I’m the happiest I’ve been in awhile ❤️,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.497639924287796, 0.1830514669418335, 0.29026246070861816]" +39155,"Anja Novkovic’s thesis work revolves around the alleyway directly behind the J.W. McConnell bldg, she's looking for memories of the space! ",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😌,"[0.5938351154327393, 0.13895466923713684, 0.23324668407440186]" +57222,Me seeing pics of my abusive ex with a kitten:Awww I hope she scratches your eyes out,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5168851017951965, 0.20638786256313324, 0.25239381194114685]" +36605,Stros,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5251924991607666, 0.19032232463359833, 0.26107484102249146]" +60905, Yeah okay LOL except work connected through the Arctic and down towards Argentina ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4655311107635498, 0.2555801272392273, 0.26956143975257874]" +57254,Neither are these hoessss🗣 ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +22204," Sorry girl, just gave them all away. People are quick ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4341127574443817, 0.2881045937538147, 0.2675075829029083]" +43667, Mannnn you play all day!!! I️ like that idea though. I️ might just keep it sis..I️ wanna find out he gender first,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😔,"[0.30796200037002563, 0.4526403248310089, 0.20250964164733887]" +37657,i missed class on tuesday bc i hurt my back so i emailed my professor and he offered to bring me a yoga mat to lay on tomorrow ❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.26637983322143555, 0.4818950295448303, 0.18648460507392883]" +44862,I'm so glad this video resurfaced ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.5818755030632019, 0.13893447816371918, 0.24269118905067444]" +17814, KO is such a dope,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.635000467300415, 0.10220713913440704, 0.23627951741218567]" +17321,I blocked oomf on my phone for a reason & he got the nerve to DM me up here just to continue this same pointless argument ‍️ man gone,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3626716136932373, 0.37805283069610596, 0.23112687468528748]" +46243, *giggle ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6132303476333618, 0.10759694874286652, 0.25084182620048523]" +50733, slayyyy ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +11773,I shouldn't have drunk that large coffee now I can't go back to sleep ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.42652520537376404, 0.3140394985675812, 0.24848005175590515]" +2090,Last ep for st2 ❤️,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.5406757593154907, 0.12134179472923279, 0.29962852597236633]" +50716," Awwwww, I haven't Thank you ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5419872403144836, 0.18883173167705536, 0.2411215901374817]" +474,Live in studio with multi-platinum artist ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😅,"[0.46237698197364807, 0.2759268879890442, 0.2409759759902954]" +30244,"Travis said we was gone win today at his show yesterday, wow my president ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4374566674232483, 0.29040151834487915, 0.2639865279197693]" +36016, I give them points for trying. Sick of white oldguys myself. ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😢,"[0.3850165009498596, 0.34294581413269043, 0.2528308629989624]" +68423, Thanks bro lol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46980080008506775, 0.22337977588176727, 0.2779238522052765]" +37803, the bag obsessed with it ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.42366960644721985, 0.2980607748031616, 0.25472044944763184]" +31239, How do you patience?? What?many good,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5368327498435974, 0.13645115494728088, 0.2913850247859955]" +8694,is heejin in l*ve ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😭,"[0.34809067845344543, 0.40243229269981384, 0.220579594373703]" +26654, Im so Sorry bb stay strong ❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.40364935994148254, 0.31708410382270813, 0.2589987814426422]" +32815,Talking & sharing about cameras ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4457521438598633, 0.26509734988212585, 0.27619531750679016]" +6231, it was asking for it g,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.45393648743629456, 0.23086635768413544, 0.28549882769584656]" +65114,Post pics when I wake up ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5125604271888733, 0.1905987560749054, 0.2699715495109558]" +61216,I see u kid ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4296661615371704, 0.2768652141094208, 0.27386540174484253]" +5309,"she’s beautiful y’all really haters, Capital H ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5540308952331543, 0.16662617027759552, 0.25259634852409363]" +62837, aM FKXNSK SCREAMING ODM ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5131687521934509, 0.2025182843208313, 0.2554098069667816]" +44630,"How Blake can remember all these wordy songs I will never understand, at least I can follow on the chorus ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4925256669521332, 0.21949097514152527, 0.2625800371170044]" +30439,"this is crazy, i hated my roommate too but i would never fuckin do this shit this girl def had nothing better to do ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4401138424873352, 0.2721732258796692, 0.2758044898509979]" +44820, Lol you said you wanted to just pubstomp I’m sorry ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4229904115200043, 0.3060935437679291, 0.2630533277988434]" +50332, YOU LOOK SO GOOD ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5664027333259583, 0.14933347702026367, 0.2527649700641632]" +66539,life,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😢,"[0.37543785572052, 0.34113815426826477, 0.2509358525276184]" +44760, how can someone forget this ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5572922825813293, 0.15064509212970734, 0.2413817048072815]" +9222, Aren’t we all? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4731021523475647, 0.18932905793190002, 0.30569180846214294]" +710,Hate him ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3500005006790161, 0.40469416975975037, 0.22973984479904175]" +49627, if June loves dogs as much as you .. I definitely see her doing this! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5610826015472412, 0.15799780189990997, 0.2536177933216095]" +34924, So true,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.3942287862300873, 0.3045859932899475, 0.2498413324356079]" +52708, All of you guys are moving here n there.. Me still in one state ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5289454460144043, 0.15834952890872955, 0.277588814496994]" +36008,Keep voting for BTS as artist of the year. Army fighting ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😊,"[0.6884760856628418, 0.0680355578660965, 0.21347922086715698]" +12304,ASJDHKF I thought it was me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.40730658173561096, 0.3138507008552551, 0.252615749835968]" +65999," Thanks, babe! ❤",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😊,"[0.6955059170722961, 0.06670518219470978, 0.1995028555393219]" +60117,I want some seafood ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",🙌,"[0.6469415426254272, 0.08099484443664551, 0.23534363508224487]" +14882, Awhhhhhhh that mattt guy must be pretty badasss for you to be soooo sweet to him ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5309664607048035, 0.18621419370174408, 0.260500431060791]" +3822," Omg! Congratsssssss, can’t wait to see her ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4548260271549225, 0.26626312732696533, 0.2519848346710205]" +58277, I am struggling to check in on my app ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4676606357097626, 0.25912371277809143, 0.2704426348209381]" +65324,yeahhhh!!!! Por fin. ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.4726281762123108, 0.2509116530418396, 0.26224666833877563]" +14828,when girls wake up in the morning after sleepovers we don't even talk to each other for a good 20 minutes we just sit on our phones,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4446830749511719, 0.2493995875120163, 0.2883978486061096]" +35757, Obvio ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.6433587670326233, 0.09425152838230133, 0.21722683310508728]" +34070,Me too ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +2037,my brain just won't fucking quit giving me a hard time today,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4607345759868622, 0.267969012260437, 0.2611098885536194]" +64200,ALE ALE ALEThere is a PUPPY BRUNCH in Dubai this Friday. Dress your puppers up & enjoy a magical day… ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5203089118003845, 0.1808616667985916, 0.26656436920166016]" +20830,Really missing my adventure partner,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4394885003566742, 0.2869361340999603, 0.2644555866718292]" +58733, True,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.3942287862300873, 0.3045859932899475, 0.2498413324356079]" +2116, His lane is the best ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5164188742637634, 0.16853992640972137, 0.271083265542984]" +20829,srslah jeans rm10...... ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4190674126148224, 0.3085900545120239, 0.26221197843551636]" +13589,I'm a broke stallion ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3992193937301636, 0.3457861840724945, 0.2401317059993744]" +22601, Thank you ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +64959,Y’all remember Uncle P? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44908347725868225, 0.27536556124687195, 0.26034003496170044]" +28853,Holiday cups are heree ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.42408740520477295, 0.3193305730819702, 0.2492865025997162]" +35835,""" your headband can't cover more than 1/3 of your forehead"" BITCH WHAT ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.640968918800354, 0.09858454763889313, 0.22663778066635132]" +34419,Tiara is such a crybaby ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +60310,"Skipping cuffing szn this year, it’s in my Duffy szn",😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😢,"[0.38306093215942383, 0.35233867168426514, 0.2446995973587036]" +36174, Sounding like coach Lydia ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4443039000034332, 0.2959206700325012, 0.2596297860145569]" +19688, I'm here ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +35815,i will be at somebody college playing basketball next fall. ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4516898989677429, 0.2723076343536377, 0.2735564112663269]" +27487,CORREA PROPOSING TO HIS GF IS SOMETHING I DIDNT KNOW I NEED IN MY LIFE ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5410867929458618, 0.16380363702774048, 0.2613997161388397]" +66461,Your website is down ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.4019138813018799, 0.33284276723861694, 0.2620801627635956]" +25070,Yes come next year We will be unstoppable ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5614138245582581, 0.16579198837280273, 0.24814492464065552]" +64695,show the doubters how to love themselves. they need it more than the hate. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.4101811945438385, 0.31769758462905884, 0.23011505603790283]" +7957,Don’t try to fwm I will ignore the shit out of you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.32120221853256226, 0.42479845881462097, 0.22132620215415955]" +66973,"If you had an ""outstanding"" talk with Mitsuku, how about trying out ""Cleverbot"" who replaced George? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36440804600715637, 0.3794204294681549, 0.2305620014667511]" +18452, I CANT WAIT! It’s going to be great ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5734410285949707, 0.1263006180524826, 0.2667524218559265]" +40192,I mean.. Would you blame him? -Patrick ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49271753430366516, 0.2025047242641449, 0.27334079146385193]" +44450, Kodwa sibheka ukuthi kwahambani the bafo.Only if we were told the truth,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5418125987052917, 0.18694104254245758, 0.2538784444332123]" +55939,I want some more,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5159682035446167, 0.2066059410572052, 0.24774688482284546]" +40039, She knew what she was getting herself into trump's the one losing hope.,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4453296959400177, 0.2545296251773834, 0.2796671390533447]" +26804,Sorina is freaking sending me Christmas videos already. Weirdo ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4484644830226898, 0.2499573975801468, 0.27669087052345276]" +36593,Lindsay “why does he look so sad?”Me “that’s you” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3660942018032074, 0.3474488854408264, 0.2219855785369873]" +6201, Save me a room for sleepovers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4578736126422882, 0.26207029819488525, 0.27021464705467224]" +23678,Is it just me or does anyone else always forget their to go box at restaurants ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😁,"[0.5295435786247253, 0.17211975157260895, 0.25606265664100647]" +58553,"Niggas lie women lie but my call history , text messages and Dm's dont ",😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.45035746693611145, 0.2537873685359955, 0.279317170381546]" +41869,"the more I dive deep into these fandom thing, the more toxic it becomes. Its sad ",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.44167011976242065, 0.26911765336990356, 0.27699580788612366]" +27044,Just look at her looking at him ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6246368288993835, 0.10624946653842926, 0.24103444814682007]" +22559,And to lead me on the 4231 path ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.43953627347946167, 0.2790723741054535, 0.26992833614349365]" +23432,"Every now and then I think of cutting my hair, then I wash moisturize and twist it see length and be like hell nawl.",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.42775484919548035, 0.298753023147583, 0.2618963420391083]" +9071,I can't find my mod ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😤,"[0.24538783729076385, 0.4859169125556946, 0.18252980709075928]" +52660,Guy: Can i take your number Girl: No i have a boyfriend.Guy: Doesnt your boyfriend allow you to have friends. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37176382541656494, 0.3663151264190674, 0.23748737573623657]" +6940,having such fucked up dreams again ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😅,"[0.42126259207725525, 0.3243730068206787, 0.24886897206306458]" +22174, Thanks ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.6941412687301636, 0.07213307917118073, 0.21396255493164062]" +33742,I live for morning pumps. 18 OZ to start the day! ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😢,"[0.39923155307769775, 0.331238716840744, 0.24713897705078125]" +48408,Finished Gilmore Girls for the 4th time hahahahaha now what do I do :(,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.42945757508277893, 0.2860398590564728, 0.2694561183452606]" +56876, askies ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.29253342747688293, 0.44196563959121704, 0.20356592535972595]" +61456, get it done please do then let all these people see you for what you are,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3697202205657959, 0.3592727482318878, 0.23188206553459167]" +8866,Santa Claus is fat. Needs to lose weight. He's also a BOOMER ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.35945549607276917, 0.38410428166389465, 0.22982341051101685]" +2683,tryna stay awake with a platito of nuts ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4341760575771332, 0.26948288083076477, 0.2795312702655792]" +51603, That figures. He’s just another trump lackey. He’ll do anything to protect the Party ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4694522023200989, 0.25140365958213806, 0.2759524881839752]" +44621, They just showing some love bruh,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6026957035064697, 0.1325414925813675, 0.22938644886016846]" +2756,Unoy shamishyu,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +50543,Why all my friends so fine ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5824323892593384, 0.18312038481235504, 0.17913100123405457]" +59583,Jk I found it bless up ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.458474725484848, 0.16400907933712006, 0.33062776923179626]" +47286,What a relief. I was cutting it close at 19 when I liked vocaloid ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4343579113483429, 0.22425413131713867, 0.3104962110519409]" +15861,My face breaks out at the most inconvenient times ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.4159199893474579, 0.3087870180606842, 0.2704594135284424]" +56575,I'm crying ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36837005615234375, 0.39110809564590454, 0.22774991393089294]" +41826,URGENT APPEAL we’re desperately in need of wet and dry kitten food all donations are gratefully accepted! ❤️… ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5313529968261719, 0.17812637984752655, 0.2592422366142273]" +38220,Nobody? ok ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36321529746055603, 0.3731430768966675, 0.23306605219841003]" +9348,never… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +36002, Okinnam,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +58413,Homegirl wasn’t playing about this edible ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4052050709724426, 0.3255443274974823, 0.25608983635902405]" +35616, Honestly and of all the Eminem songs?,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3511042296886444, 0.3944508135318756, 0.22694367170333862]" +30152,Let that lil nigga know what he’s missing on ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3600696623325348, 0.3701859712600708, 0.23478850722312927]" +7397, Doesnae make him a film buff just like kicking a ball didnae make him a fabulous footballer either ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5178167819976807, 0.21074576675891876, 0.2607455849647522]" +6318,See you tonight ❤️❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5728822350502014, 0.11896473169326782, 0.24855399131774902]" +45991," Your talks are always great, and the Shenkansen are fabulous -- so why do you look so worried?",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5615614056587219, 0.1410176157951355, 0.2635323107242584]" +18170,Same. Back to drinking this week cuz no ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4541225731372833, 0.2598330080509186, 0.27238669991493225]" +49994, yup yup ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5092130899429321, 0.17607782781124115, 0.2764703333377838]" +35853,Copic art ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6392039656639099, 0.09299318492412567, 0.1944497525691986]" +63849, His ass better go on the run and enjoy fresh air before the inmates get that cupcake ass of his!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43618708848953247, 0.291620671749115, 0.2625522017478943]" +62688,Realization comes now... ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.42541074752807617, 0.2642756700515747, 0.2981397807598114]" +19729," dear browser, you used to be so stable. Now every day you freeze my mac and I can only move my cursor. What happened? ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5600728392601013, 0.16323824226856232, 0.25369733572006226]" +48825,Kenyans are never patient. Some have already had sex in November ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5303111672401428, 0.2027558982372284, 0.24445638060569763]" +56796,Cheers for the birthday messages people!,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4468195140361786, 0.27029380202293396, 0.27349457144737244]" +42096, Ain’t getting over this picture anytime soon.Budapest was worth it ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5429972410202026, 0.1674620807170868, 0.26298636198043823]" +67963, You guys have won Halloween hahahaha. Incredible. Iconic. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.542377769947052, 0.18024475872516632, 0.24940544366836548]" +1492, Time to get the thermals out? ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4792287051677704, 0.22249150276184082, 0.27720680832862854]" +29221,I literally got a haircut today and sat ina crib all day wow I deserve to be somebodies husband,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.48471298813819885, 0.22287490963935852, 0.2768794298171997]" +17164,Amen to that ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",🙏,"[0.48897236585617065, 0.09773151576519012, 0.3680305480957031]" +54512,i dreamed about a serial killer he was trying to kill me and my friend,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.36646512150764465, 0.37863096594810486, 0.2299935221672058]" +30160,I'm Blessed God Really Is Great ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😀,"[0.6442148685455322, 0.08128276467323303, 0.24322569370269775]" +24174, Our WHILE FAMILY !!!!!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3991468846797943, 0.32602012157440186, 0.23854845762252808]" +51996,Lmao don't mind them Ansel I was late for that too ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4288494288921356, 0.30027320981025696, 0.26409420371055603]" +24958,Big thanks to for all of the video ideas Kappa,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4980032742023468, 0.1672636717557907, 0.2925586402416229]" +46277,First time i ever get such advice ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.2776781916618347, 0.493656188249588, 0.19088417291641235]" +34899,The black ankle socks and slides though. . . ALWAYS! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3759444057941437, 0.3573397099971771, 0.2364756464958191]" +57959," wow you’re so kind, you’re lucky you’ve got such a looker as a friend thanks cal❤️",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5826691389083862, 0.1407291740179062, 0.24315157532691956]" +30771, Best costume ever! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5933778882026672, 0.1257518082857132, 0.24738124012947083]" +60954, I lost it when he was taking his pics and she went OFF ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4437229633331299, 0.2791159451007843, 0.27373990416526794]" +55284,Happy International Author's day Virginia C Andrews ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😁,"[0.5595369935035706, 0.16456106305122375, 0.25123855471611023]" +54857, it was swollen and upset ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4007948040962219, 0.3350883722305298, 0.25184324383735657]" +68710,Happy Halloween! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6643602848052979, 0.08597593009471893, 0.22236141562461853]" +18037,Last inning of baseball this year ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4316752552986145, 0.2594963312149048, 0.2885430157184601]" +10228,thats true… ❤️ ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5362184643745422, 0.1671564280986786, 0.2516270577907562]" +63260, I fucking love you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.35228705406188965, 0.40756624937057495, 0.20794472098350525]" +58202, oh my fucking god- ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.35893574357032776, 0.37978628277778625, 0.23819655179977417]" +30125,his hate for twitter so cute lol ...ain gotta never worry bout him on here acting like a girl ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4279659390449524, 0.29601529240608215, 0.2589910924434662]" +18282,Thats why im always at jay house. ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4940926730632782, 0.24072493612766266, 0.2465590238571167]" +11352, Not available in India sadly ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5315728187561035, 0.17281274497509003, 0.26002538204193115]" +11359,realy?.. ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😎,"[0.5945386290550232, 0.11439770460128784, 0.25844573974609375]" +21748, You've been replaced...,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😢,"[0.34934791922569275, 0.3889482319355011, 0.22769010066986084]" +49477,Nothing like running through your house naked and having your helper pop up out of nowhere ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3728843629360199, 0.37039461731910706, 0.23325854539871216]" +14869,My heart just melted! ❤️❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.44007253646850586, 0.31128907203674316, 0.23850059509277344]" +26358,Let it be so ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙌,"[0.6275834441184998, 0.10234281420707703, 0.24019965529441833]" +27155,Congrats on 100k So proud of you! That silver play button is going to look great! Next stop 1 million ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.5120856761932373, 0.18279071152210236, 0.2767288386821747]" +46101,Looking like I'm feeling .,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😅,"[0.42704442143440247, 0.2903537154197693, 0.26090115308761597]" +44523, the news you have been awaiting for years is here! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5881977677345276, 0.14494307339191437, 0.23762473464012146]" +37784,love you babe ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7044677138328552, 0.06539055705070496, 0.18167123198509216]" +29787, LOSERS! MY CUBS DID IT! You COULDNT! Ain’t that a bitch?! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.42697572708129883, 0.27702394127845764, 0.2705708146095276]" +15789,My mom just sometimes just pictures of my cat and it’s my favorite thing ever ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5823149085044861, 0.14467647671699524, 0.2368871569633484]" +33207," Happy Birthday, Natalia! ",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😍,"[0.712283194065094, 0.05335390940308571, 0.210898756980896]" +535, Help ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😏,"[0.45744356513023376, 0.14197881519794464, 0.3748214542865753]" +54842, first it was spratt then faze spratt then spratt and now optic spratt but i want FaZe Spratt,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5159682035446167, 0.2066059410572052, 0.24774688482284546]" +66305,We're not happy till you're happy. ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😌,"[0.571573793888092, 0.15785415470600128, 0.2374427318572998]" +12240, you're a trap ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😌,"[0.6044744849205017, 0.12952542304992676, 0.23043504357337952]" +64571, you followed through with Catwoman!! I’m proud of ya kid ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.48871996998786926, 0.2210962325334549, 0.2653166651725769]" +12695," Last time I canceled, he didn’t get along with the shield ...mainly Seth ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.42165452241897583, 0.28276872634887695, 0.2718527913093567]" +698,We're breathing the same air I was desperately looking for their (Eric Nam and Solar) dating rumor I guess I ha… ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4473521411418915, 0.25432637333869934, 0.27998241782188416]" +31515,Every time I go on a night out I just smash my phone a little more ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43844956159591675, 0.2635062634944916, 0.28172439336776733]" +56276,Omfg this is amazing ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5137819647789001, 0.19410404562950134, 0.26208385825157166]" +23819,Got a little miracle today thankful af,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😀,"[0.6158583760261536, 0.09243877232074738, 0.2609979808330536]" +23711, It's seriously the best ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.39401525259017944, 0.35794782638549805, 0.2328995168209076]" +106,Hello Birth Month. ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😀,"[0.6531936526298523, 0.07518386840820312, 0.23519188165664673]" +36034,Oh my goodness! I really wanna adopt this new puppy. My golden retriever Daisy Mae will not be happy with me. ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😁,"[0.5493408441543579, 0.17521925270557404, 0.2558540105819702]" +31040,I got a 23/24 on the midterm I took last week and now I'm mad bc the thing that cost me the one point was just a stupid mistake on my part ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.39924347400665283, 0.3325265944004059, 0.2484726905822754]" +718,Last 2 rt's ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5195115208625793, 0.15459375083446503, 0.2877918481826782]" +58415, Poor Hugo! xx,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45453768968582153, 0.2529909908771515, 0.2768349349498749]" +62450,Proud to be a deschooled mind. “The Schooled Mind vs. The DeSchooled Mind” by ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.44722846150398254, 0.25951772928237915, 0.2815486192703247]" +9503,actually i should be studying rn but what am i doing idk i'm weirs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34472453594207764, 0.3977850079536438, 0.22079569101333618]" +36230,Y’all ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +67784,So ignorant people out there! Educate yourselves y'all will ya ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4704630970954895, 0.21136048436164856, 0.2934319078922272]" +48532,There WERE 3 people in Eddie/Iris relationship (Barry) but ol boy wasn't happy about that ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.46134495735168457, 0.2389654815196991, 0.28032639622688293]" +25157, Oh nothing,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.46237772703170776, 0.2589385211467743, 0.2729373872280121]" +7461, Booo! Sold out in age 3 & 4! Will ask husband to try in london stores!!!,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😌,"[0.5942018628120422, 0.1360984742641449, 0.23923099040985107]" +60816,All of a sudden craving the movement chicken tenders. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.4769515097141266, 0.1970658153295517, 0.30141982436180115]" +58590,Diamond Ladies Band in 18K White Gold ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4410647451877594, 0.24583040177822113, 0.29520314931869507]" +37186, nfs lol you gotta get jumped for the culture ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4325801432132721, 0.2760748565196991, 0.2738111913204193]" +37344, YASSS It's time for a great show toryshklanka:get to know me ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",🙌,"[0.6638780236244202, 0.08160857856273651, 0.22852808237075806]" +68296," Yussss! Good work! So this week’s author podcast won’t be you crying, then? ",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4891343414783478, 0.22797060012817383, 0.2692966163158417]" +52122,The things a good woman can do ‍️ ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",🙌,"[0.643761396408081, 0.08815644681453705, 0.23456722497940063]" +23949, don't apologise just get yourself feeling better ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😢,"[0.392584890127182, 0.3396300673484802, 0.25683310627937317]" +14214,Tomorrow we present this group project & im sooo happy ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.548761248588562, 0.1903373748064041, 0.22773274779319763]" +20635, I liked all of this but the sausage fingers part. Just FYI. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5193247199058533, 0.203566774725914, 0.2630172371864319]" +54998,it me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +55664,I'm crying spooky dick ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43275412917137146, 0.30120033025741577, 0.2597791254520416]" +43206,How to do Hypothesis po? ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6721054911613464, 0.07994331419467926, 0.21968606114387512]" +49001,This is perhaps even more mind-blowing than the ampersand! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😭,"[0.3476606607437134, 0.39990222454071045, 0.22585847973823547]" +32652," My pleasure, Christy. ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.6148613691329956, 0.10451334714889526, 0.2525203824043274]" +47735,Did a shoot for some new items today and the girls KILLED IT. just wait til you see ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5673145651817322, 0.15304780006408691, 0.2492481768131256]" +7805,This kid in my class just got suckered into driving four of our classmates to their next class cause they didn’t want to walk in the rain,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3241899013519287, 0.4133349359035492, 0.22283309698104858]" +9623, Lmao your endorsement is kiss of death,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4456076920032501, 0.2618769705295563, 0.2742713391780853]" +59641,You’re dumb as hell if you think baseball isn’t a sport ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4288616478443146, 0.2725018560886383, 0.27214527130126953]" +18172,They're playing kokobop here ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.40203532576560974, 0.3201882243156433, 0.2560531497001648]" +41413, Thank you dear Sis Big hugs and a great humpday 🕊☮️✌,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.6153294444084167, 0.11956822872161865, 0.23517954349517822]" +10386,"This is the 3rd time we've gotten bomb threats wtf, & Idk why, like if you're gonna do it then fckin do it!!",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3964395821094513, 0.33448055386543274, 0.2493126392364502]" +36449,look at our girl Elle omg ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3914841115474701, 0.3427819609642029, 0.25139161944389343]" +25695,I’m excited for my iPhone 8 to come in ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.45595046877861023, 0.276345819234848, 0.24624913930892944]" +13365, Good enough to touch suhhhh I miss you!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5864546298980713, 0.1521965116262436, 0.23058634996414185]" +17392,I have so much support at work it’s crazy I love my work family so much I just wanna cry,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4323292076587677, 0.30474016070365906, 0.2424159049987793]" +52223, I have 4 cats and a dog go with meeee ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5724949240684509, 0.15308603644371033, 0.24476146697998047]" +28543, R.I.P Hannah ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4773974120616913, 0.20379343628883362, 0.2819909155368805]" +18038,Anyone see the commercial of the knock off jersey shore coming out ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4456724226474762, 0.2478448897600174, 0.28475382924079895]" +57748," Omg whaaaaaat, México wants some tickets ",😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😭,"[0.33981549739837646, 0.4028223752975464, 0.22217398881912231]" +46870,So i finish the run to find we trailing ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.37714114785194397, 0.36773931980133057, 0.23251628875732422]" +15440,I didn’t get lost in this corn maze..I got lost in her eyes. . ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😅,"[0.4156462848186493, 0.3115750849246979, 0.2624448835849762]" +11815,That's my baby ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.5205056667327881, 0.2357480674982071, 0.14990761876106262]" +63266,"ah, I love it! I miss them so much. ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4569360911846161, 0.294573575258255, 0.2191864550113678]" +33815,IT SOUNDS SO GOOD ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",🙌,"[0.6463883519172668, 0.08792443573474884, 0.2299545705318451]" +2047,“ I’m broke baby “ ⛹,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.4420715868473053, 0.2967149317264557, 0.26006537675857544]" +34433, Happy birthda po.Wish you all the best ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6664969325065613, 0.08483843505382538, 0.22974848747253418]" +15776, 🗣🗣🗣🗣🗣🗣🗣🗣 omg omg,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4436056613922119, 0.28391918540000916, 0.2555289566516876]" +23899, OH okay ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5069778561592102, 0.21539941430091858, 0.2576916217803955]" +6777,Follow for the unfiltered doe ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4587949514389038, 0.2383548617362976, 0.2679818570613861]" +41504,Thanks baby!! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.601672887802124, 0.1657915711402893, 0.1490684151649475]" +13271,What a shitty day,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3183544874191284, 0.42377233505249023, 0.2144869863986969]" +40172,I miss the old cast on Grey’s Anatomy ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.49128565192222595, 0.22191840410232544, 0.26666778326034546]" +37893, Takes picture of ghosts instead of going to class. ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.431285560131073, 0.2687320411205292, 0.2696692645549774]" +44904, Hahaha. Nothing to get. I meant international language of pancakes but the tweet was just entirely nonsensical. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5014434456825256, 0.18554948270320892, 0.284066379070282]" +16638,"Bruh, so close yet so far. ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4454362392425537, 0.24601489305496216, 0.2847329378128052]" +37477,that hot shower felt too good,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36661773920059204, 0.35168495774269104, 0.2143382430076599]" +58048, No tak to nee,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5308207869529724, 0.20246635377407074, 0.25122538208961487]" +20514,damn I done got dark ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5411592721939087, 0.18222856521606445, 0.25677821040153503]" +15301,really had me going ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3538212180137634, 0.3920809328556061, 0.221186101436615]" +57388,My bed is so cold ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😢,"[0.36061006784439087, 0.3942755460739136, 0.22432449460029602]" +16408," Andre is under the influence of ""ether.""",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😅,"[0.4407219886779785, 0.28666192293167114, 0.2664085328578949]" +27101,Me everytime i do cardio ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.40557754039764404, 0.3023044466972351, 0.2629261612892151]" +59704,"i’m so happy Jacob recorded every second of our relationship, i have so many memories to look back at",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.46990299224853516, 0.2608151137828827, 0.240560382604599]" +26408,Lol i love shamia B ❤,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5511741042137146, 0.18168063461780548, 0.23255851864814758]" +20620,Lmao still cant believe the weekend was cool with it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4597473442554474, 0.2338373064994812, 0.28301507234573364]" +21261, Oi oi it’s the Scottish Messi. You beauty Snodders! ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.49952661991119385, 0.2097064107656479, 0.269405335187912]" +2748, in the Mix!!!!! Lets go! @ Madibaz Radio ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4736217260360718, 0.2242605984210968, 0.27485182881355286]" +3347, You live in Brisbane? You know what to do! ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4527163505554199, 0.25652268528938293, 0.2709042727947235]" +50544,I HAVE FINALLY NETFLIX YASSSS ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6305191516876221, 0.11091840267181396, 0.22365888953208923]" +48861,I just got a text that said “I have zip ties I’m trynna be tied up” brb it’s never to early to blow someone’s back out,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3338039517402649, 0.4156213402748108, 0.21165573596954346]" +4551,Extend ang holiday please ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4442503750324249, 0.22393545508384705, 0.2937345504760742]" +36488,Who takes a shot before working out Pisces be living life on the edge,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.39052778482437134, 0.33664488792419434, 0.2493276596069336]" +42102, The game looks awesome,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5244268178939819, 0.1595107465982437, 0.27492213249206543]" +36617, u can do it ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +66887,want some goya damn ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.3478705883026123, 0.4016016125679016, 0.20740166306495667]" +31480, Ha tb to aapko English aati h.... great thought,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44582775235176086, 0.2724781930446625, 0.26678815484046936]" +35745, well it is what it is.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +36189, Maybe. It's criminal gangs though so......,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5028339624404907, 0.18982885777950287, 0.27804726362228394]" +28251, they forgot to take the meat out ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4376198649406433, 0.2726030945777893, 0.27788418531417847]" +55510,Only way you'd find this funny is if you watch zootopia as much as me ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4436163902282715, 0.266120046377182, 0.2770119905471802]" +44430,"Man Yells ""CNN is Fake News"" at Anderson Cooper via ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44267550110816956, 0.2545568645000458, 0.27706506848335266]" +54284, This is heartbreaking,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.280470609664917, 0.47700634598731995, 0.1799447238445282]" +68006, I miss ACO so much ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.5171481966972351, 0.2837722897529602, 0.1993439495563507]" +14024,He died a little ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.444959819316864, 0.2827351689338684, 0.2680412232875824]" +14308,"Put my mind on it, then I put my grind on it",😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.5122144818305969, 0.21506044268608093, 0.26173198223114014]" +49431,like the cutest thing ever ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6112028360366821, 0.12529675662517548, 0.22119590640068054]" +13467,"The way , broke up Lemon !",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😔,"[0.28735843300819397, 0.46624451875686646, 0.19773602485656738]" +14156,same ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +23467,Just realised how pale I look in these pics whoa call me Miss Cullen ❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4886503517627716, 0.2387828379869461, 0.2561306357383728]" +45552, i started after the first snow in september ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4132263958454132, 0.32140257954597473, 0.24956193566322327]" +7917, when two fans collaborate together ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4776647090911865, 0.2163669764995575, 0.2850005328655243]" +68610, JBmusic ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +20046," Make your noodles first, after that take a pack of frozen cheese and put on the hot noodles, it will melt. ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.47010400891304016, 0.24429893493652344, 0.25351864099502563]" +23283," (I thought you chose it on purpose ) I am feeling way too many things rn (the hair, the makeup, the e… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.413380891084671, 0.28867775201797485, 0.2706858217716217]" +29746,Jemari so annoying bruh gd ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4278489351272583, 0.30004602670669556, 0.2595837414264679]" +47312, It's spelt Mo. ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😁,"[0.5405678153038025, 0.17578168213367462, 0.25171080231666565]" +56416,By the end of this month I hope to loose these 15 lbs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.35383570194244385, 0.3851834833621979, 0.22978365421295166]" +47193, Lmao I laughed out loud.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4477839171886444, 0.23416222631931305, 0.2905869483947754]" +16402,Ayoooo I screamin lmfao ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4214211404323578, 0.26707595586776733, 0.28263530135154724]" +11758,"For Halloween I was what I am on every Tuesday night, a regular at Aceituno’s on Taco Tuesday ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5831742882728577, 0.14171336591243744, 0.24636706709861755]" +45654, WAITING FOR YOU!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😎,"[0.6043842434883118, 0.09903974831104279, 0.2554582953453064]" +13577, Me too! Making it tomorrow ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.39379891753196716, 0.35562312602996826, 0.23356249928474426]" +66062, I dont know ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4606655538082123, 0.23312154412269592, 0.280639111995697]" +23462,By now your man go withdraw go sit some side dey drink ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4536510705947876, 0.24946238100528717, 0.2780275344848633]" +6828, Guess ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.46987080574035645, 0.23100167512893677, 0.27626872062683105]" +18922,They’re not going to let up on Wendy Williams bruh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.34259462356567383, 0.42889416217803955, 0.2136942446231842]" +28211,"Everyday man’s on the block, smoke trees ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4439697861671448, 0.2539418637752533, 0.28157326579093933]" +50311,My favorite basketball teams! ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5442069172859192, 0.15815469622612, 0.270331472158432]" +22752, Hahahhaha we are not indeed ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +48191, Thanks bro,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😁,"[0.5070316195487976, 0.16209392249584198, 0.2787800133228302]" +1865, I never thought of November birthdays like that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47745734453201294, 0.2534841299057007, 0.26341307163238525]" +51685, Great,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.559414267539978, 0.12546007335186005, 0.28113624453544617]" +50213,Bih swallow when she eat tha dick but acting classy ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4780600070953369, 0.19481824338436127, 0.29984039068222046]" +34092, don’t play either of those Neil young songs play Neil young old man ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.42179057002067566, 0.2874373495578766, 0.2711418569087982]" +4638,The Twitter Handle & Now This.. The Internet remains undefeated ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4333499073982239, 0.2595105469226837, 0.283050537109375]" +45729,Everything going great n I just got even better news. I been praying with consistency lately good things been happening. I believe lol ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.45353156328201294, 0.2345746010541916, 0.2844844162464142]" +41825,Ugh seriously tf is yuor problem? can you please leave the two alone ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.41186895966529846, 0.33301854133605957, 0.2428097426891327]" +53968,the older women at my job tryna show me a dick pic a nigga sent her & she was like he too big like MA'AM it's not even 7am,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.42499515414237976, 0.26311782002449036, 0.2863643169403076]" +34426, thank you bb,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😔,"[0.3162156343460083, 0.44620296359062195, 0.19664135575294495]" +24482,My ninja ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.655340313911438, 0.08972552418708801, 0.2164696455001831]" +10370,"I liked a video Man Yells ""CNN is Fake News"" at Anderson Cooper ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44343939423561096, 0.2551174461841583, 0.27782854437828064]" +37757,Astros like the warriors rn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4026094377040863, 0.3231937885284424, 0.2497788965702057]" +30983,*fandom hugs* ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4630422592163086, 0.21907931566238403, 0.29738205671310425]" +59694,Lexi and I have officially decided that we will up like this next year ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5242981314659119, 0.20855793356895447, 0.2552950084209442]" +21322,"I know you will ‍️ , you got night for different foods ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.499798983335495, 0.17701736092567444, 0.285564661026001]" +20400, Game don't open my why ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4404309391975403, 0.27151623368263245, 0.2679774761199951]" +45122,"You know Love is blind, and he just caught my eye",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.44508489966392517, 0.24428026378154755, 0.28745266795158386]" +24425,i’m craving texas roadhouse so bad,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😩,"[0.23584188520908356, 0.5162596702575684, 0.1810380518436432]" +52855,"Corbyn: ""and the rest of us"".... Yea mate, same wage bracket as me... ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4322102665901184, 0.2742043733596802, 0.27368512749671936]" +58387,No alarm tomorrow,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4519088566303253, 0.21434859931468964, 0.2900673747062683]" +58410," Ohhh, no. I'm not letting Boursin become anyone's prey but mine, thank you. ",😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😊,"[0.6761312484741211, 0.07246017456054688, 0.22176975011825562]" +50064, This is terrible. It would have been done on Mischief Night in my day ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4512561559677124, 0.25779545307159424, 0.278821736574173]" +66825,Was watching the trailer for Xmas... can we talk about those red hot Santa boxers? ❤ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46636369824409485, 0.24503007531166077, 0.27897506952285767]" +26347," Yes , I'm using ios ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5581687688827515, 0.1666061282157898, 0.24812838435173035]" +65869, aaa why is your brother such a savage ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.4627346396446228, 0.25035399198532104, 0.27166643738746643]" +47114,They're exclusively playing Disney songs in common ground right now and I'm so here for it ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.34993448853492737, 0.3857700824737549, 0.2291710078716278]" +9226,"We're not too late, are we? ",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😭,"[0.341389924287796, 0.4141993820667267, 0.21697872877120972]" +55340," Not a want but a NEED , we broke though ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3611002266407013, 0.40442848205566406, 0.21644383668899536]" +39323, That’s my place!!!! I’m down to go when I get paid lol,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4508831202983856, 0.24154812097549438, 0.28384891152381897]" +65846,"Welcome to November, some of us were born during this period",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5385920405387878, 0.16226200759410858, 0.2666793763637543]" +21030, yes I can see that! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.594078004360199, 0.12251104414463043, 0.24866029620170593]" +33416, Chut ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +20075,So i'm unlocked inside my car ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😌,"[0.5886014103889465, 0.15485449135303497, 0.22154998779296875]" +8865,i wanted to tell u the same ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.432361364364624, 0.28382766246795654, 0.2662445604801178]" +53941,Chumby as olaf ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +13569,Who wants free merch ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😢,"[0.35994061827659607, 0.37961146235466003, 0.23042431473731995]" +28246,Current situation in me & my bf bed ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3543282151222229, 0.38633963465690613, 0.22411304712295532]" +15095," I'll be on clubhouse side all weekend, I can wander over to stretch run side on Friday if you want a drink and a pic ",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.5606539249420166, 0.145595982670784, 0.2643909752368927]" +6117, well now I know how you look as an emo ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4458262324333191, 0.27627405524253845, 0.27157026529312134]" +4526, I had this video of me and my homies at the bar fucked up dancing and I made that same exact laughing noise in it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.30675020813941956, 0.4509531855583191, 0.21052369475364685]" +20647,all this muhfcka do is sleep,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.3645802438259125, 0.3967447876930237, 0.22288468480110168]" +36338, Its not like you were turning a profit from sharing your mum's pale with your grandpa.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4312640428543091, 0.2847338616847992, 0.26852694153785706]" +39317,I thought your dog was the only girl you need ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3487884998321533, 0.41250553727149963, 0.2195315659046173]" +34185, Omg your mom knows Spakol ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46224984526634216, 0.253756046295166, 0.2631950080394745]" +21763,I’m dead ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4527203440666199, 0.27367639541625977, 0.26372846961021423]" +14634, Pretty sure I started shameless 7 months ago and I’m at the beginning of season 4 ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4929714500904083, 0.2406349778175354, 0.2632928192615509]" +46426, Everybody sick ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.34684914350509644, 0.4065486192703247, 0.22648584842681885]" +7570,Variety is the spice of life ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.4220843017101288, 0.2857659161090851, 0.2718408405780792]" +14728, We're not friends ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.515049397945404, 0.19370929896831512, 0.24113500118255615]" +11106, But how on earth do you find out which stores sell vinyl? Can’t find it on their website! ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.49703672528266907, 0.2162415087223053, 0.2716943621635437]" +7053, Mirip ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +38045,October went by super fucking fast. I honestly can't wait till Thanksgiving && stuffing cause I'm a fat girl at heart,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😢,"[0.3698229193687439, 0.3782934546470642, 0.22501510381698608]" +13820, I’m not telling him that. He hear it enough ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45401546359062195, 0.2543998062610626, 0.2769506871700287]" +14082,Okay glad to know I wasn't the only person feeling like a virgin again cuz yeah that shit hurt ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37549009919166565, 0.36970287561416626, 0.2351723611354828]" +65343,I be spread eagle in this queen sized bed without a care in the world ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44502294063568115, 0.26171204447746277, 0.28098157048225403]" +41639, America is a beautiful country falling to evil men ...what ever it takes to make it great again ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5824047923088074, 0.13376383483409882, 0.2525213956832886]" +56913,Check it out!!! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😀,"[0.6665342450141907, 0.06777209043502808, 0.23950305581092834]" +39998,It’s the small things in a relationship ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6159031391143799, 0.10424007475376129, 0.24885860085487366]" +9709,She said why do you call him chase you have to chase him he seem pretty loyal he always by your side I'm weak,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4794677197933197, 0.18097160756587982, 0.31701305508613586]" +37759, if this is true ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.3942287862300873, 0.3045859932899475, 0.2498413324356079]" +54137,brooo this feeling sucks ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33176907896995544, 0.431292861700058, 0.2144393026828766]" +56395, if I had destroyed then rigged the justice dept...I wouldn’t be in jail either if I was that Clown. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3307712972164154, 0.4185962378978729, 0.22072246670722961]" +39347, I can’t stop saying “SPOTANKI” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43197306990623474, 0.2726753056049347, 0.25756558775901794]" +39894,Birthday november babies banyak bulan ni and sorry not sorry no pressie bcs i'm broke namati ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4853239059448242, 0.24723783135414124, 0.2621508836746216]" +44753, LOL love you❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5511741042137146, 0.18168063461780548, 0.23255851864814758]" +29938,Aww Correa put a ring on it! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.46206963062286377, 0.2539021670818329, 0.2648870050907135]" +31954, Very resourceful! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +7450, I’m the innocent bystander ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4820990562438965, 0.24377965927124023, 0.25875699520111084]" +10456,Be encouraged ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +40524, It took me a second to register that this was twitter bc I’ve had it on night mode for the longest time ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3540623188018799, 0.4030308127403259, 0.21343985199928284]" +63484,G98.7FM it's raining and gloomy outside 🌨so it is a must that I hear pleeeease!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5812305212020874, 0.12237851321697235, 0.2647184133529663]" +14847,Ligit me and my cuzins when were home alone in the house ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4351886510848999, 0.28937503695487976, 0.23866340517997742]" +3500,jonathan is not the boss of me ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.45746564865112305, 0.2684018909931183, 0.2717802822589874]" +66713,ios 11.1 battery still shit piss off man,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4329989552497864, 0.280166357755661, 0.267453134059906]" +40468, You hit rock bottom sis ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.592494547367096, 0.13241547346115112, 0.24545568227767944]" +27898, ! Your Russian handlers gave you some really cray cray talking points. Take a deep pull… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4602818191051483, 0.26110363006591797, 0.27177298069000244]" +40656,Don’t even have a man &this commercial makes me want to buy it ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😢,"[0.39196982979774475, 0.34589213132858276, 0.24501270055770874]" +51137,Can't wait to finally get a new phone,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.532133162021637, 0.18763719499111176, 0.2556135952472687]" +54657, Someone thought this sounded better init so I’m trying it out ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.3892696499824524, 0.34688425064086914, 0.24465951323509216]" +50967,dam my mind messed up ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.41600173711776733, 0.2975626289844513, 0.27010151743888855]" +10008,There are Christmas movies on TV ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4772094488143921, 0.2448722869157791, 0.2690329849720001]" +56611,Me an baby cousin shit on the radio my mom said it’s stupid af & it is ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4545646607875824, 0.25672250986099243, 0.2790721654891968]" +10557, Thank you s'much,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +15982," Your face, you know. Not that I'm complaining because I'm having fun as well 크크크크킄 un. . . . . How com… ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43019577860832214, 0.2641066312789917, 0.2854587435722351]" +57906," This is the best news I've gotten all day, thank you so much",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.49934908747673035, 0.20298150181770325, 0.2720578908920288]" +61100,lol what yall be saying “sunkissed” ☀️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.41360753774642944, 0.3033517897129059, 0.24988332390785217]" +27841,Correa proposing at Dodger Stadium after winning the World Series is ALL. THE. FUCKING. GOALS. ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5880362391471863, 0.131818026304245, 0.24592605233192444]" +24282,going to my favorite wing spot before work ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4533746838569641, 0.2719865143299103, 0.26720815896987915]" +6525,Last night was ass ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😅,"[0.43337592482566833, 0.2918660640716553, 0.2574230432510376]" +784,with good old friends,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5108359456062317, 0.20179933309555054, 0.25412440299987793]" +28050, I LOVE YOU TOO YOU HAVE 4 MONTHS OF PAYING AHEAD OF YOU OK ❤️❤️❤️,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5361459851264954, 0.15938474237918854, 0.2647791802883148]" +58790, oh my ‍️ we have the same cheeks ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.45461729168891907, 0.26872488856315613, 0.27203860878944397]" +25879,Please help me reach 100 's in 2 days!! ❤️And follow ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.45391836762428284, 0.19235451519489288, 0.31851592659950256]" +636,i look like a dork but it’s been cold and i like my hat. 🌧❄️ ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.4398457705974579, 0.28590628504753113, 0.2692430019378662]" +29704," The wagon is full, they were hedging their bets ",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4457378089427948, 0.2712418735027313, 0.2720862329006195]" +7348, I technically don't need to buy anything really ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4497024714946747, 0.26476073265075684, 0.26932159066200256]" +53470, awsome ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",🙌,"[0.644153356552124, 0.09155714511871338, 0.2382814586162567]" +26579,"When you pull down your pants and she say ""what's i... — ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.427322119474411, 0.28207388520240784, 0.27430951595306396]" +59692,OPEN FOR A FREAKING SURPRISE ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.577707052230835, 0.1609039157629013, 0.26021456718444824]" +61828, You geeking like shit moe,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4462876617908478, 0.2641330361366272, 0.2760710120201111]" +12860,Everytime i look at my Halloween pictures i laugh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4879891276359558, 0.21954792737960815, 0.2696266770362854]" +53668, Brabo ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +42413,Can someone give me a music playlist ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",🙌,"[0.6591120958328247, 0.08308182656764984, 0.20951181650161743]" +37068,I'm not the only one!! ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +54546,An underrated partnership. I'm really in my feels. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4861055016517639, 0.24615994095802307, 0.25944897532463074]" +9787,"Happy birthday have a good day, see you soon x ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😍,"[0.7259873151779175, 0.05119742825627327, 0.20001760125160217]" +14804,I suffered I learnedI changed ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4588921070098877, 0.25937163829803467, 0.27399152517318726]" +62389, done. So good. I have a feeling it might be a long wait before season 3 though ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.46348264813423157, 0.2645292282104492, 0.2624424993991852]" +37265, 5 - Zip Astros Yeah they ballin ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.448991596698761, 0.256620317697525, 0.27533426880836487]" +64175,Thinking about having a friendsgiving dinner ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",🙌,"[0.6394355893135071, 0.09688703715801239, 0.2362160086631775]" +13842," Hopefully, they won't sink his battle ship this time ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4483090937137604, 0.2532968521118164, 0.28026697039604187]" +65586," sex workers get it done! thank you so much, beautiful!",😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.5894728302955627, 0.1425660401582718, 0.23693692684173584]" +56880,hate when i skip a song on pandora i wanted to hear ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.40396398305892944, 0.3280521035194397, 0.2440756857395172]" +29163,Damn now that’s how booty should be moving ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.47638726234436035, 0.2413335144519806, 0.27302688360214233]" +66050,bitch that's rape wth ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.526859700679779, 0.20386789739131927, 0.2530917823314667]" +41873,Thunder,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😔,"[0.31150662899017334, 0.4365646541118622, 0.20947226881980896]" +60958, Literally eating Nutella right now. Give me awhile ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.38573989272117615, 0.33573049306869507, 0.24941220879554749]" +15715, Honestly I love you so much ❤️❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5865955352783203, 0.15941067039966583, 0.20149409770965576]" +5928,Super super exited for this one i have a good feeling about it ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6237159967422485, 0.12059374153614044, 0.2178884744644165]" +31579,he's so happy ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6220577359199524, 0.12378162145614624, 0.22545266151428223]" +37833," Like what, hitting juices baseballs out of tiny stadiums (at least Minute Maid) ",😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😢,"[0.35548344254493713, 0.381538063287735, 0.23195338249206543]" +29211, Lol i forgot too. Dont worry ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.449599951505661, 0.2712518274784088, 0.27076825499534607]" +36344, as long as they don't do that we can be one happy family,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.44776132702827454, 0.27000781893730164, 0.26862165331840515]" +17878, Oh yes !! Can’t wait I’m gon have u show me around so be ready,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.5054887533187866, 0.22218042612075806, 0.2594871520996094]" +65959, Better than playing them away first game ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4246338903903961, 0.30438727140426636, 0.26073557138442993]" +45440,This is the best week of my life. My iPhone X comes and I just got approved for the Amex Platinum ugh,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36820119619369507, 0.36436840891838074, 0.23805460333824158]" +63996,All my friends so funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.448501855134964, 0.27702975273132324, 0.2740787863731384]" +51869, Man.... gg to them ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44590651988983154, 0.23725898563861847, 0.2888529300689697]" +42694,Any more ideas which game we should have as our today? We quite fancy a ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5384129285812378, 0.171111598610878, 0.2567273676395416]" +57729,Wiggle wiggle ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +48280, Spirit of starvation ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6074297428131104, 0.11508806049823761, 0.2341228723526001]" +41704,Condolences to Argentina and Belgium for the loss of their innocent citizens in that senseless act of terrorism.,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4157799780368805, 0.2770099937915802, 0.2838936150074005]" +57627, Yeah... that's a stroke of genius in my opinion ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4411936402320862, 0.26453325152397156, 0.2772904336452484]" +8129,Seen Werpa☝,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44687139987945557, 0.26140743494033813, 0.27743151783943176]" +16612,Bc I feel like telling y'all how I really feel sorry in advance if it's mean ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3358348608016968, 0.4178955852985382, 0.21402552723884583]" +17456, I’d be fine with driving to Geneva! ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.6275932788848877, 0.11332982778549194, 0.220600426197052]" +54286,Dimples are so damn attractive ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.6012950539588928, 0.12696991860866547, 0.24057170748710632]" +14968,yeahhh lets go ‘stros,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.44097182154655457, 0.24289637804031372, 0.28739795088768005]" +33213, Haven't laughed so much for ages.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4232122302055359, 0.2930172383785248, 0.26148083806037903]" +30259, Lol i know you are not ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45836493372917175, 0.24592864513397217, 0.27458348870277405]" +28835,this north face coat i ordered ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.49931278824806213, 0.20767764747142792, 0.2680641710758209]" +10380," Literally the best singer ever, who dosent adore him?!",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5749540328979492, 0.15720613300800323, 0.23902714252471924]" +28800,Happy b'day man of inspiration ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5104517936706543, 0.1507265418767929, 0.2979338467121124]" +66935," Yes, we had. Will do better next time! Hope you enjoyed yourself? The signal was so erratic I couldn't… ",😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.639607310295105, 0.08687148988246918, 0.23778870701789856]" +9388,Thank you sm donna Iove you❤️❤️ ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.41614654660224915, 0.2911568284034729, 0.26576969027519226]" +44556, I love you kal thanks sm btw we look so adorable in this pic !!! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😁,"[0.5082157254219055, 0.16797436773777008, 0.2684779763221741]" +44000,Them be Waffle House runs ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3882561922073364, 0.3316122591495514, 0.22160211205482483]" +49051, Cuter than ur side-show Bob lookin ass ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3810997009277344, 0.35780903697013855, 0.2371981143951416]" +6192, Lol yes I definitely ment I,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5832720398902893, 0.13155291974544525, 0.2520936131477356]" +59459,Just depressed today....,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😭,"[0.32616516947746277, 0.4140683114528656, 0.2246147096157074]" +28546,Really beautiful people go to the gym and I am not one of them ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.5311405062675476, 0.1952907294034958, 0.2596801221370697]" +609,My babe forever ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6483780741691589, 0.08548972010612488, 0.2264331877231598]" +50385,all semester I been owing A&M money... went on banner today and my balance is CLEARED thank you Lord,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.48650413751602173, 0.24103844165802002, 0.26624637842178345]" +18405,i just walked in the house and my momma gon have the nerve to tell me i can’t stay bc she got company coming ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.31129008531570435, 0.45239314436912537, 0.21278110146522522]" +46977,I'm thoroughly enjoying my Twitter feed now that it's not endless doom and gloom ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😭,"[0.31681028008461, 0.4254671633243561, 0.21557551622390747]" +32752, YASSS It's time for a great show supriy ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😊,"[0.7001132965087891, 0.06732846796512604, 0.20997396111488342]" +697,One step back and two steps forward darling,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😭,"[0.32136690616607666, 0.4202343821525574, 0.21202078461647034]" +26793, More like bodge it and leg it!.xx.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6085130572319031, 0.11475624144077301, 0.24629676342010498]" +33481,Apparently it's Wednesday.... been listening to em since 5:45am and still goin ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4491223990917206, 0.26545342803001404, 0.26926276087760925]" +15075,thanks mario chalmers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.640759289264679, 0.09887678921222687, 0.2374020218849182]" +23097, LMAOOOOO STOP ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3660312592983246, 0.3632860481739044, 0.22886550426483154]" +37207,because grace loves ritch ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😎,"[0.6010994911193848, 0.09340508282184601, 0.2747650146484375]" +53039,"THIS WAS THE SCENE GUYS!!!""AIK NAYA AGHAAZ"" ❤❤❤MY HEA! ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.346602201461792, 0.4026775360107422, 0.22199475765228271]" +60651,"Didn't sleep much,glad I had an early night.Ready to get up and face the world.......""I think"" ",😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😅,"[0.4371439814567566, 0.28856804966926575, 0.2750895321369171]" +61476,Last night with baseball . This is so bittersweet.,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.47921404242515564, 0.23766878247261047, 0.2646387219429016]" +31202, You gotta concussion foh,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.456017404794693, 0.24807024002075195, 0.2786366939544678]" +59215,Wat da heck klase na next week ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.46496251225471497, 0.23476769030094147, 0.27748677134513855]" +11932,look! ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😀,"[0.6229163408279419, 0.09536170959472656, 0.25175240635871887]" +11065," Everyone in this picture looks relaxed, except for number 6. He looks so tense",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.463371217250824, 0.2602406442165375, 0.2683122754096985]" +38082,This pregnant lady dressed up as Barney from the Simpson’s and it’s amazing ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6470015645027161, 0.09343615174293518, 0.2416825294494629]" +43686, Thank you ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +42812, Paper mache DAWG IM CRYIN ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4493098556995392, 0.26056620478630066, 0.2784745991230011]" +12181,American woman ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.6529514193534851, 0.08067746460437775, 0.23646754026412964]" +50843," oookaaayy girls, i saw u hitting them high notes this morning ready to have my wig s… ",😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4846533238887787, 0.24873505532741547, 0.2590199112892151]" +24932,Last night was hella funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.410575807094574, 0.30802974104881287, 0.26606860756874084]" +19797,"I'm lucky, i know @ Semarang, Indonesia ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😌,"[0.6096792817115784, 0.12111921608448029, 0.23674294352531433]" +8614,"Give me something to believe in, because I don't believe in you anymore. ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.37450334429740906, 0.3449537754058838, 0.24046999216079712]" +55453, For the uninitiated - the one TRUE opinion on ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.5119005441665649, 0.20858629047870636, 0.25254857540130615]" +15668, UR REALLY GONNA DISRESPECT THANKSGIVING LIKE THAT OFC ITS A SIGN,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4562031626701355, 0.2668905258178711, 0.2790714204311371]" +33110,Idk about y’all but I’m real sad about being a vegan and idk why ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3347333073616028, 0.3954695463180542, 0.2100382149219513]" +34594,The first time they did alos nails she said what is this omn,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.30046314001083374, 0.44092774391174316, 0.20796358585357666]" +64090, I love you too ❤,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +6033, what's good bro!! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4660278856754303, 0.24002699553966522, 0.27341076731681824]" +24986, I almost feel sorry for Kush. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3616163432598114, 0.38839393854141235, 0.22303634881973267]" +3719,In need of all my comfort food. ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.46391692757606506, 0.2508539855480194, 0.26545682549476624]" +30806, Man he just did that shit I was cracking up at katt Williams face ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.35467252135276794, 0.3882126212120056, 0.23074638843536377]" +15110,The truth ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4602576792240143, 0.2699737846851349, 0.2621902823448181]" +52849, That's brilliant I was wondering how it had gone. I'm not surprised her daughter missed you today. I… ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😅,"[0.42110544443130493, 0.3084034323692322, 0.2637285590171814]" +56668,my way!,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.49723348021507263, 0.18940623104572296, 0.2784246802330017]" +24967,thanks so much love!!!!!! ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😘,"[0.7433449625968933, 0.060252655297517776, 0.19572699069976807]" +33749, Naina barse rimjhim rimjhim what happened sweetie all ok na ?,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4478636085987091, 0.2753164768218994, 0.2718435525894165]" +68104,When is season 3 smh ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😔,"[0.30458781123161316, 0.4396939277648926, 0.20199447870254517]" +67763,Everything's gonna be alright cim ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.41601449251174927, 0.29126113653182983, 0.264396607875824]" +53653,"EXOOOOOO!!!! OMG MY BABIES, I MISS YOU !!!",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.32154780626296997, 0.44786274433135986, 0.2028038203716278]" +63378,Your MCM blocks every nigga that hits your DMs....he insecure AF ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4348572790622711, 0.2697204053401947, 0.27635160088539124]" +63130,When knows you love hot wings and didn’t invite you to wing night ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😢,"[0.38623276352882385, 0.34700536727905273, 0.2423052191734314]" +20835,Naples -Manchester city ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5730342864990234, 0.15574222803115845, 0.24515458941459656]" +57499, Wait until you hear VB Engage tomorrow ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😢,"[0.38318073749542236, 0.3828812837600708, 0.22232213616371155]" +45773, the part when they ran out the way from a car ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4839930534362793, 0.2551589012145996, 0.2578302323818207]" +42088,this is so soft and cute and wonderful ahhhhhhhhhhhh!!!!!!!!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.46457597613334656, 0.26867273449897766, 0.2682039439678192]" +14773,Fall in with SSUPERWET - HOPE YOUR… ⬅️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4930770695209503, 0.23679319024085999, 0.2635335624217987]" +28640, I love these joggers!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +26512,"I want to get a grill but like not a gold or silver or even diamond one, no, I want one that makes my teeth look perfect without braces ",😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4701201617717743, 0.2513125240802765, 0.2640226483345032]" +66201, You will give up na na na,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45777082443237305, 0.2342904955148697, 0.2832568883895874]" +66071, There's no way it was cause she was overheated ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48506060242652893, 0.1976284682750702, 0.2923225462436676]" +37955,He is a whole meal right now! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.6107086539268494, 0.12041150033473969, 0.23807460069656372]" +23792,"She look like a tranny tf, her pussy look like a small penis ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44125524163246155, 0.26679906249046326, 0.2782009541988373]" +54513, The gift that just keeps giving ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.45633623003959656, 0.2775594890117645, 0.2612735629081726]" +3287,Screaming ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5131687521934509, 0.2025182843208313, 0.2554098069667816]" +52038, Yea they took it all sadly ☹️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4428998529911041, 0.2698031961917877, 0.27703341841697693]" +18674,I miss my hair,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.3940363824367523, 0.42821231484413147, 0.20762312412261963]" +29801,WORLD SERIES CHAMPSSS BOII ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5468398928642273, 0.13934962451457977, 0.2829270660877228]" +16664,why is me and nikki dm’n each their like we don’t have our numbers ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4460560083389282, 0.29364776611328125, 0.2627825140953064]" +30693, Facts !,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.45186087489128113, 0.27752238512039185, 0.26814863085746765]" +14179, Like 70,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😏,"[0.4302099645137787, 0.1674339324235916, 0.3531583249568939]" +29092, Woooow I was mesmerized..,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +34906,I need a good book to read ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5477616786956787, 0.16800622642040253, 0.2542025148868561]" +33102,Happy corn day ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6371210813522339, 0.10523083806037903, 0.23194995522499084]" +11033, I literally have no idea what you said in your first line ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4426875710487366, 0.2824450135231018, 0.26830923557281494]" +45547,Oh how I love it in Alpena! So far away from everything and so peaceful ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.639194905757904, 0.10097208619117737, 0.22730648517608643]" +35986, Yeahhhh righhhhttttt ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +65492,Correction: Highkey it's no longer a secret ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4534994065761566, 0.2414601594209671, 0.2874610722064972]" +58431, But he can't be on the bench all the time while on the other hand Sandilands is killing Orlando Pirates let… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47536700963974, 0.23737648129463196, 0.27437272667884827]" +16316,Still love my Dodgers ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.6129953265190125, 0.12923938035964966, 0.2292604148387909]" +29712,That’s a seed in a seedless grape. ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.5122285485267639, 0.20816783607006073, 0.2596535384654999]" +22266,Literally LOVE the play/chill room at my brothers crib. I can take as many naps as I want just to wake up & watch another movie,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.39165058732032776, 0.3382831811904907, 0.24802330136299133]" +10030,I had two margaritas last night & woke up feeling iffy. Why am I such a grandma now. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3599099814891815, 0.3926199972629547, 0.22551244497299194]" +28600,"My World Series MVP's for the Astros, Darvish and Bellinger! ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47859615087509155, 0.19049383699893951, 0.3014439046382904]" +30851, Fabregas' season by stats:Successful passes - 592 (296pts)️Chances Created - 25 (175pts)Tack… ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5622455477714539, 0.17174698412418365, 0.2335692048072815]" +28820,it’s been a really long day and I gotta wake up early asf,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😂,"[0.4413035213947296, 0.2601624131202698, 0.2757119834423065]" +1689," There u go Dan, we’d had €10 straight away!",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4971860349178314, 0.19758263230323792, 0.27757948637008667]" +9363,Wow super ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",🙌,"[0.6610378623008728, 0.08188601583242416, 0.20664110779762268]" +55004, Good luck ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.6865257024765015, 0.055271048098802567, 0.19664818048477173]" +13742, Yesssss my tifah baby did that that girl know she love Trina lol,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5690921545028687, 0.16127589344978333, 0.24317362904548645]" +46706, come out ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.5120142698287964, 0.2561286389827728, 0.2418164610862732]" +45325,Oh no. I can’t sleep e I have to wake up at 3:30/4am ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.45816799998283386, 0.269169420003891, 0.26583436131477356]" +22546,This ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +57047,stop no i told myself i would finish this before friday because i wanna see exo get their prime minister award ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5030784606933594, 0.1967095583677292, 0.2809429168701172]" +58785,I took four aspirins rn ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44589218497276306, 0.28582653403282166, 0.26192083954811096]" +25478,Watching Russell Howard interviewing ed sheeran on his show makes me happy ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6489109396934509, 0.09074480831623077, 0.23522132635116577]" +38564, IM LAUGHING ABOUT THAT RIGHT NOW ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36521080136299133, 0.38551104068756104, 0.2272157371044159]" +46208, Mya you still look the same amazing ❤ ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.6848946809768677, 0.07379494607448578, 0.2169540822505951]" +956, Please NOT my crystal clear heels ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.638068437576294, 0.10527664422988892, 0.22713106870651245]" +48592,You know very well. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4670252501964569, 0.20194599032402039, 0.2885521352291107]" +19806,Noooooo! Not today! Stopbor Rain! Nasa mood ako mag jogg eh,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.3821190297603607, 0.3345106840133667, 0.24898913502693176]" +12299, bitch don't even compare ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.447494238615036, 0.27495768666267395, 0.2710363268852234]" +26930,WHEN the Astros when tonight I’ll be in bed crying,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3687678873538971, 0.3876836597919464, 0.23451167345046997]" +25364,Over all u hoes bypassing thx giving ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4926408529281616, 0.24335336685180664, 0.2479109764099121]" +6754,You're the only Vegan I know Cheers!! Happy ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😁,"[0.5772404670715332, 0.1310449242591858, 0.25625455379486084]" +3979,Our Girl ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.45766639709472656, 0.27198362350463867, 0.2625434696674347]" +14760,I missed golcha's menpa again ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😌,"[0.5509046316146851, 0.18639490008354187, 0.20092231035232544]" +45216,So cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6362391710281372, 0.11038947105407715, 0.21415609121322632]" +49879, plz help karwa do,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.42894333600997925, 0.23886844515800476, 0.2965869605541229]" +16107,Come thru bihhh you and all yo daddy issues. ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.42181289196014404, 0.31958359479904175, 0.2560087740421295]" +41035, yeah pretty gruesome actually haha I also took a photo next to her and she didn't get… ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4462408721446991, 0.25214141607284546, 0.2788080871105194]" +37530,I'm ready to go back to work ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😭,"[0.3512137830257416, 0.40602967143058777, 0.21572765707969666]" +58440, My heart but dealing w you lmao,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4505809545516968, 0.2759605646133423, 0.26311132311820984]" +2594," Wow, Gratulation! ",😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",🙌,"[0.6488221883773804, 0.07963734865188599, 0.23090070486068726]" +44661,omfg wig ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4856932759284973, 0.23874375224113464, 0.2649010121822357]" +44945,Son I️ need to be living Janays life ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.42384931445121765, 0.2973920702934265, 0.2520172894001007]" +34828, YUH ABBY WE ALL IN THIS TOGETHER GIRL ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.5258095264434814, 0.2018282264471054, 0.2602159380912781]" +66140,My head is so itchy ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4769383668899536, 0.23776237666606903, 0.27932628989219666]" +6109,"I won't even waste my time to tweet about how trash Ramos has been tonight, nothing new.",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4905923306941986, 0.21658529341220856, 0.2648361921310425]" +14841,Lmfao I could laugh for daysssss ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4503788352012634, 0.25901538133621216, 0.27608513832092285]" +41086,"""that grill came from the mall""",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😉,"[0.4950816333293915, 0.14290238916873932, 0.3237229585647583]" +27897,Me and who? Don’t mention my name next to that dumb piece of shits ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4387834370136261, 0.2758634686470032, 0.2657879889011383]" +34339, trust you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3945638835430145, 0.32400739192962646, 0.23320549726486206]" +51992,Don’t know why I’m getting anxiety for this job interview.. I guess I just want it that bad. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3410775363445282, 0.3832859396934509, 0.22851568460464478]" +51150, Boom! Looks like remoaner twat just got owned! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45874419808387756, 0.24843120574951172, 0.2780815660953522]" +4301,Friends that say “love you” when hanging up the phone are my favorite ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.5108172297477722, 0.21912942826747894, 0.2470800280570984]" +44799,Yaaay...congratulations Ausi ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.6874497532844543, 0.06881509721279144, 0.20311298966407776]" +29835,All the Dodgers fans are crying … ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.37056636810302734, 0.3714480996131897, 0.2298683524131775]" +17049,Actually have to be up early tomorrow,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😢,"[0.3879653513431549, 0.32822030782699585, 0.24741238355636597]" +50607, Showing off those guns.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😎,"[0.5889051556587219, 0.1111975759267807, 0.2626441419124603]" +41765,Good Morning!! Im so early today but forgot my breakfast ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😁,"[0.5482285618782043, 0.18436433374881744, 0.24648410081863403]" +10655, Ikaw yung buddy ko since elem looking forward for more adventures with u maab❣️ stay inspired,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😁,"[0.5714514851570129, 0.11973391473293304, 0.278910756111145]" +3905,Lol I love my girls dawg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5402654409408569, 0.193047896027565, 0.2475494146347046]" +9355, i'll sleep later unnie trust me! unnie can go sleep first ㅋㅋ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41570186614990234, 0.3224928081035614, 0.2444327473640442]" +44185,Great Exit ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.48434606194496155, 0.21510984003543854, 0.2800830006599426]" +27812, Good morning Amitji . Have ablessed day ☀️☀️ ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😊,"[0.6775497794151306, 0.06631797552108765, 0.22497457265853882]" +48079,The time sponsored by Spacey is 7 O'cock ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😂,"[0.5035950541496277, 0.2214132696390152, 0.25770363211631775]" +6697,Another cutie get up ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7223794460296631, 0.04763293266296387, 0.20653221011161804]" +19696, LINKS! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4479716718196869, 0.26900890469551086, 0.27166613936424255]" +43714,That Mohawk Though Lovey was THE first video of a lion from and and also our introduction to… ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.45236849784851074, 0.26277410984039307, 0.27727505564689636]" +52668," that's you zadddddy, now get back to work ",😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4632740318775177, 0.2495221644639969, 0.274820476770401]" +25336,Hello! ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😀,"[0.6235771775245667, 0.0942888855934143, 0.24794983863830566]" +30369, HI coming to see you on Saturday it's my other half birthday he is 56 and is called Ian Menzies get him on stage ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45176562666893005, 0.2627710998058319, 0.2649162709712982]" +29016, I might need to fly there and comfort y’all ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.40932339429855347, 0.3128300905227661, 0.24877315759658813]" +59925,I really just need friends who are down for movie nights ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4277154505252838, 0.31192460656166077, 0.24847900867462158]" +47988,Today at school I saw someone wearing merch. All I could think about was you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4954110383987427, 0.23995232582092285, 0.25367918610572815]" +24066, Yes baby. Massive sales. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6777107119560242, 0.07329697906970978, 0.21595942974090576]" +61667, Thought the holidays started when pumpkin spice hit the shelves. ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.431335985660553, 0.2838635742664337, 0.2713202238082886]" +6641,One day ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.46538516879081726, 0.2319965958595276, 0.27310407161712646]" +27105, Same ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +35315, Done~Rt and fave mine too. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.48315855860710144, 0.2272874414920807, 0.2717744708061218]" +10935,hays bebeluvs ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😢,"[0.3571430742740631, 0.38348332047462463, 0.22821849584579468]" +16833,“i kind of threw my cat out the window” “she was a bitch” ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.42270904779434204, 0.2521180808544159, 0.29748591780662537]" +56453, dude ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.5092833042144775, 0.16956375539302826, 0.27770736813545227]" +23221, so true,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.3942287862300873, 0.3045859932899475, 0.2498413324356079]" +15155,It’s ending really?? It hurts ..There will always be a void ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😔,"[0.29861924052238464, 0.471988320350647, 0.20634782314300537]" +37063,"Dodger fans think it's an insult that the padres are ""at home"" right now. We have been in the playoffs in 10 years ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.34748438000679016, 0.3915736675262451, 0.22080692648887634]" +56828, I peeps. You peeps. We all peeps. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6499467492103577, 0.08639875054359436, 0.22165775299072266]" +47123,"""You're pretty. You'd get along with politicians."" Did my resident give me a sick Monica Lewinsky burn!? ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.39281347393989563, 0.3382994830608368, 0.2514004409313202]" +22064,Thank you ! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😀,"[0.6362312436103821, 0.08984178304672241, 0.24161574244499207]" +66858, No idea but it's deffo STEPPENWOLF getting Whipped ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44604596495628357, 0.25511038303375244, 0.2868252098560333]" +10573,Who's this about then lad ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😤,"[0.2498055100440979, 0.5043762922286987, 0.18499428033828735]" +10922, gave me the idea to play GuitarHero At the same time it's the supreme champion ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4420984387397766, 0.23939256370067596, 0.29832810163497925]" +35794,Exactly. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45028504729270935, 0.26724106073379517, 0.27584221959114075]" +55313, Dude I love you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5206740498542786, 0.17065128684043884, 0.261622816324234]" +1483,I woke up and jumped outta bed like I gotta hit shoppers world it’s 9am Illest......,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4831448495388031, 0.23131783306598663, 0.278846800327301]" +61482,This really isn’t fair. ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.4381870925426483, 0.2941145598888397, 0.25824564695358276]" +66466,"This must feel so good, can't wait to experience it ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5403792858123779, 0.18176554143428802, 0.24183666706085205]" +48402,I can't find that Yugyeomie's pic I Loved and didn't save for accident ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4939327538013458, 0.20120829343795776, 0.2820624113082886]" +58723,Watch me retweet more. ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.5076487064361572, 0.22139255702495575, 0.2664490044116974]" +66089, Suckling is must wow ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6488221883773804, 0.07963734865188599, 0.23090070486068726]" +66654,Guess what death defying beauty made it to the front cover of Vogue? Actually my manipulated art of gorgeous Katie… ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.5924762487411499, 0.13627390563488007, 0.23402684926986694]" +37462, We need to be the models of risk taking. Fear is okay.. letting it hold us back is not. ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4468844532966614, 0.26972293853759766, 0.26906588673591614]" +66946,- cold asf in this store only place warm is the bathroom ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😭,"[0.3274630904197693, 0.42436397075653076, 0.21753129363059998]" +54287, Awww Shawn ❤️ sorry can't handle myself when this pop up,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.38942739367485046, 0.325303852558136, 0.25839459896087646]" +65081, And neither will you !,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +54537,Hongki said that he attended univ diligently but he had to transfer to a cyber uni as it was impossible to attend the classes anymore,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.41778764128685, 0.31070592999458313, 0.2641385793685913]" +15134,I remember them braces days ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5345863103866577, 0.1545732170343399, 0.27400997281074524]" +21908,"See as Chelsea fall my hands yesterday,after I make mouth finish..‍️",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.454216867685318, 0.26472508907318115, 0.2735256850719452]" +39357,I'm crying. ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.36837005615234375, 0.39110809564590454, 0.22774991393089294]" +36874, fuck u can’t see it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4209957718849182, 0.3229237198829651, 0.24495625495910645]" +1321,There comes a time when you have to stop thinking about your mistakes & move on.No regrets in life.Just lessons that show you the way. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.43308162689208984, 0.23696376383304596, 0.30896368622779846]" +20757,Time to sleep 4:39 ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.3117438554763794, 0.4468201994895935, 0.19611826539039612]" +43388,Don't have a picture of the castle on my phone. I'll fix it later. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😅,"[0.42449286580085754, 0.298983097076416, 0.2687016725540161]" +63544,Alright! New passcode is foxy2727,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4570557475090027, 0.23089097440242767, 0.28083333373069763]" +16893, Yeah bro ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4397200345993042, 0.25248244404792786, 0.27624017000198364]" +60306, i didn’t know they were gonna have him take a pic like this i actually started dying,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4446505308151245, 0.2484222799539566, 0.2834815979003906]" +48594,Prosper Kings ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😅,"[0.4212173521518707, 0.2903349995613098, 0.2689708471298218]" +43315, Good English Valencia ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.40505850315093994, 0.3378393054008484, 0.22524520754814148]" +23254, YASSS It's time for a great show Liam Alden: ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",🙌,"[0.6421425938606262, 0.09845687448978424, 0.23432549834251404]" +57614, We love you! Come back stronger G! ❤️ Our Big God is good all the time! ❤️,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.5830830931663513, 0.14610128104686737, 0.2418389916419983]" +40801, WHAT?!?! HE PAINTED HIS NAILS AGAIN!?!? IS THIS RECENT?!?!? I MISSED SO MUCH TONIGHT,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.47530826926231384, 0.25457313656806946, 0.22965309023857117]" +8719,*backsong* almost paradise~~~ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4757760763168335, 0.24853448569774628, 0.2590218484401703]" +51670,I am the god of double booking takeovers. Bow down,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.5002336502075195, 0.2176048457622528, 0.2648354768753052]" +68299, YASSS It's time for a great show NickiTheHeartbreaker:Omg ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",🙌,"[0.6371628046035767, 0.10222212970256805, 0.23150795698165894]" +47478, That's 2 of us glued to Twitter tomorrow night. Unless Prue tweets the results in the morning ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.45824113488197327, 0.2481669783592224, 0.2805347144603729]" +8557, Colder there than here lol ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.44888439774513245, 0.2758867144584656, 0.2678724229335785]" +36352,Naomi and Jon are too much ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4064143896102905, 0.3299834132194519, 0.24210959672927856]" +47579, You mean we get out Mister! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5183424353599548, 0.1538621485233307, 0.2958705425262451]" +50256,Mad jersey club on the radio ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😌,"[0.5997710227966309, 0.13133203983306885, 0.2354241907596588]" +42246,Enjoy! ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",🙌,"[0.6603180766105652, 0.07701265066862106, 0.22900807857513428]" +20952,"I wonder if anyone still has my video of ""the worst Halloween party ever"" ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4335104525089264, 0.2684467136859894, 0.2698129117488861]" +38928,Maybe it’s just me but I have an obsession with christmas pjs yes I’m probs weird I know ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.4581429064273834, 0.25026682019233704, 0.27508488297462463]" +11839,Im wearing his jacket ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4804215729236603, 0.23223991692066193, 0.26261940598487854]" +28201, True ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.3942287862300873, 0.3045859932899475, 0.2498413324356079]" +65429, I ate one ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4931471347808838, 0.23838560283184052, 0.2622273862361908]" +28507,my son name is cartier & my daughter name fetti ... why cody tryna steal they names g ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4318784773349762, 0.277247816324234, 0.2700214684009552]" +68417,I got two palo'wers ✌,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5201959609985352, 0.16097325086593628, 0.2815309464931488]" +68182,I have a feeling you’ll like this one New Arrival!Original Eken H9 / H9R Ultra HD 4K Action Camera 30m w...,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4892319142818451, 0.21490399539470673, 0.27549585700035095]" +8550,she sooo !!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5516230463981628, 0.17494560778141022, 0.256172239780426]" +60179, yeah bad idea ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45055893063545227, 0.24799291789531708, 0.27612727880477905]" +62708,Sooo we lose a hour this weekend,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😁,"[0.5388488173484802, 0.1700558066368103, 0.2661250829696655]" +14947, i miss you so much ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😅,"[0.5171481966972351, 0.2837722897529602, 0.1993439495563507]" +68300,I go to New York next month ahhhhhh ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6305776834487915, 0.09698761999607086, 0.23120936751365662]" +66968, HAHAAHAHAAHAHA i'll be effing rich lah like that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.509972870349884, 0.1881435215473175, 0.27878889441490173]" +13137, Whatever it takes,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.406006783246994, 0.28555217385292053, 0.28007906675338745]" +55422," Looool, you second to having an other girl?",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.3242217004299164, 0.4336766302585602, 0.20832884311676025]" +32284,We will definitely see you in Napanee to battle it out. Just keep your helmets strapped down ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😌,"[0.5946078300476074, 0.1268051713705063, 0.24505096673965454]" +45881," Don’t hurt her,she’s pregnant ",😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😔,"[0.27125608921051025, 0.4755622148513794, 0.19137921929359436]" +21821, Even At Work Its Unacceptable ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4632740318775177, 0.2495221644639969, 0.274820476770401]" +45781, I stan ❤️,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5811251401901245, 0.12713994085788727, 0.23501259088516235]" +57213, Good luck with that ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😊,"[0.6865257024765015, 0.055271048098802567, 0.19664818048477173]" +45282,One thing I’m most proud of is no one in life can ever say “you wouldn’t have that if it wasn’t for me” started from scratch,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4345470070838928, 0.25130143761634827, 0.2954222857952118]" +47479, nice family,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😁,"[0.5682001113891602, 0.1546357125043869, 0.24585965275764465]" +12173,Come and join,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4510005712509155, 0.25729334354400635, 0.28219908475875854]" +43260,Rolling Loud 2017 🎛🎛 ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4700220227241516, 0.195168137550354, 0.3094817101955414]" +1553,I love it when he does that ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5785128474235535, 0.1270793080329895, 0.24146965146064758]" +48632, Since starting my job that is - not in one month ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.42507559061050415, 0.2903444766998291, 0.2676222026348114]" +14478,I'm crying again ♥️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😢,"[0.36837005615234375, 0.39110809564590454, 0.22774991393089294]" +51982, Na you just can’t hack it ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4704173505306244, 0.24389825761318207, 0.27356764674186707]" +44125," Thanks, I glad I'm not alone!",😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😊,"[0.7027349472045898, 0.06756491959095001, 0.21570941805839539]" +33475, PLEASE ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +13758, of course not ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😎,"[0.5964906811714172, 0.10532023012638092, 0.2564704120159149]" +15441,I told my Ma to pray for our Dodgers cuz this is disappointing and depressing ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33509561419487, 0.40076401829719543, 0.22460192441940308]" +43572,Soon the mavic will be mine ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",🙌,"[0.6727837920188904, 0.0725952684879303, 0.221868634223938]" +64840, I’m so dead ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4527203440666199, 0.27367639541625977, 0.26372846961021423]" +25945,Thanks for the cookies ! The team descended on them like locusts ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5844547748565674, 0.1406889408826828, 0.2445908784866333]" +29674,Daming requirements ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4498402774333954, 0.2583739161491394, 0.27456972002983093]" +919,New emojis make me happy! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5288876891136169, 0.19716225564479828, 0.2203715443611145]" +51112,It should say the ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😂,"[0.4471547305583954, 0.23802275955677032, 0.2882240414619446]" +25169,Shall Read this idea I wrote in the Community!,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.4361729323863983, 0.2579033374786377, 0.28398528695106506]" +6373, I can't stop recalling our sweet memories from my mind I miss you way more ❤️❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.46676722168922424, 0.2644737660884857, 0.25342002511024475]" +5344, Lmao I could rock a beard jk,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4760669767856598, 0.22994987666606903, 0.2729892432689667]" +43393, Sami and Lucas are giving me all the feels ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5511652231216431, 0.17947441339492798, 0.24388930201530457]" +29637, The best time is right NOW ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😅,"[0.42225775122642517, 0.29947206377983093, 0.2589411735534668]" +29332, then he thought harden shot it,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.41521310806274414, 0.31743836402893066, 0.25659146904945374]" +42354, Every office needs one. Official envelope sealer.✉️ ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😂,"[0.4821292757987976, 0.2077416479587555, 0.28253984451293945]" +63689,"Hold on yall, I have a facebook account but I don’t have the app on my phone as I barely ever use it. Gonna download it now",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3931899964809418, 0.31430020928382874, 0.25583595037460327]" +61931,Hey boo! ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",🙌,"[0.6711081862449646, 0.08401112258434296, 0.2302776575088501]" +61679, They won't save you ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4950655400753021, 0.22642824053764343, 0.2469296157360077]" +34494,"Yikes...what they call an ""icebreaker"" in a job interview ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4482291042804718, 0.24263359606266022, 0.28733405470848083]" +22510,Issa new father ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6036661267280579, 0.11628848314285278, 0.24767205119132996]" +5783,I hate funky breath,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.431549996137619, 0.22152841091156006, 0.3197627365589142]" +37676," This hurts my heart, my dad used to stand outside with candy and wait for kids but no one trick or treats over there",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.42056336998939514, 0.31123554706573486, 0.25855204463005066]" +58385,justin & Selena ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.5878587961196899, 0.1489132195711136, 0.22954735159873962]" +45668, Son at first I seen KO I’m like Kyle O’Quinn but word I see KP going off all year,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.4117138087749481, 0.33057546615600586, 0.25255993008613586]" +53408,We gave ha water she was too mad ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.4702164828777313, 0.25030410289764404, 0.26701274514198303]" +46184, Best of luck ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",🙌,"[0.668655514717102, 0.07074424624443054, 0.2191128134727478]" +41518, online shops haha ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6721609830856323, 0.07037830352783203, 0.22850880026817322]" +22887, You just liked my tweet Zee which said don't spread negativity ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.42311882972717285, 0.2933714985847473, 0.26670393347740173]" +1836, Great! !,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😁,"[0.559414267539978, 0.12546007335186005, 0.28113624453544617]" +7668,Of course mom ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😌,"[0.5939533114433289, 0.11207261681556702, 0.2520098090171814]" +13982, done please help me too,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😏,"[0.45744356513023376, 0.14197881519794464, 0.3748214542865753]" +29982,Bruh we slow asf and I’m sitting by myself PLUS my fucking phone is dead I’m pissed,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.33745667338371277, 0.4048174321651459, 0.2228941023349762]" +56077, Amin ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.4695896506309509, 0.0671471357345581, 0.4430115222930908]" +46136,Managed to avoid spoilers for all day and last night only for mum to accidentally blurt it out! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38541629910469055, 0.3438567817211151, 0.24965453147888184]" +42711,"i can't keep my tears na, it'a streaming down my face ",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3990709185600281, 0.31545260548591614, 0.2666810154914856]" +68215,dnt really knw what jst happened ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.446614146232605, 0.2720632255077362, 0.27812573313713074]" +38445,I swear ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😂,"[0.44661960005760193, 0.23850904405117035, 0.28564387559890747]" +14712,"She said , he was onaphone with the tattoo artist ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",🙌,"[0.6365053653717041, 0.09965533018112183, 0.22357890009880066]" +27299,Thank-you po ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😊,"[0.6978750228881836, 0.06674950569868088, 0.20731231570243835]" +23203, Sounds good to me,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6463883519172668, 0.08792443573474884, 0.2299545705318451]" +33552,perf night,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.45065584778785706, 0.2684151828289032, 0.27506688237190247]" +45121, My new eBook is about how to growth hack getting clients. Do you want me to send you a link to it? (It'll be free) ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.45396170020103455, 0.19148413836956024, 0.31804823875427246]" +14469,Y’all this is my home ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.3826482594013214, 0.3624119162559509, 0.2418028712272644]" +16955,Bless up Esquivel finally update aeries ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😁,"[0.5296722054481506, 0.14998644590377808, 0.28177428245544434]" +53670," What’s wrong? If it’s about depression, I know all about it. Can only send hugs ",😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😅,"[0.4256463944911957, 0.31101635098457336, 0.2580893635749817]" +18013,Nope ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38737085461616516, 0.3440469205379486, 0.2509240508079529]" +61415, You saying that like Lil Kim or Remy could do it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3811739385128021, 0.34612441062927246, 0.24559509754180908]" +16401, Hahaha! I love this!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4621167778968811, 0.2561489939689636, 0.26524510979652405]" +45624, Bitch I got friends ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4737789034843445, 0.23857459425926208, 0.26561668515205383]" +59059, Thanks girls! We dont owe ya one - cause we WON! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4704890549182892, 0.21127842366695404, 0.28691020607948303]" +32237,"I'm speechless. We just visited her last sunday. Now, she's gone. Al-Fatihah. ",😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😁,"[0.5262923240661621, 0.18433961272239685, 0.2650732398033142]" +30883, Same same same... ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +39707, But I got in for a bit hahah ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😀,"[0.6264439821243286, 0.09576776623725891, 0.2439223825931549]" +7675,If your wondering why got up too go to work this morningIt was too supply my needs ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😢,"[0.405761182308197, 0.32106828689575195, 0.26054880023002625]" +21259, I miss actual facial expressions ,😏,"[0.44415243101182655, 0.1116951379763469, 0.44415243101182655]",😅,"[0.4419747591018677, 0.2808128595352173, 0.2663388252258301]" +47698,I’m not sure if I will have time to livestream today because I had a great animation video idea I wanted to get started in ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.46291878819465637, 0.20077969133853912, 0.30262747406959534]" +63044, Chill bro,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43289875984191895, 0.2765059471130371, 0.2660439908504486]" +33229,Marketing manager who lives in the fucking stone ages ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.3861886262893677, 0.3515080213546753, 0.2423679232597351]" +7356, Good morning. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6791377663612366, 0.06248137354850769, 0.22196438908576965]" +52080,Go go shu shu ... byeeeeeee Deepika you can enjoy ❤️ Insecure jealous people left the party! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5366548299789429, 0.18993715941905975, 0.253449410200119]" +12521,Hollow November ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.5126118063926697, 0.20571866631507874, 0.2544569969177246]" +50028,And they had to sleep with those stinky Bangladeshi animals ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😂,"[0.5184083580970764, 0.2076394110918045, 0.2559206485748291]" +22765, good luck on cleaning up! Sending you a lot of love and support❤,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",🙌,"[0.6657493114471436, 0.07568010687828064, 0.22511917352676392]" +3587,Spurs to top the group? I'd like to see a city v Madrid match.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4409876763820648, 0.2864900827407837, 0.2665809392929077]" +62776,"Amen Chef, you and your team are truly amazing reaching communities where no one else has gone. Gracias! ",🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",😂,"[0.4960757791996002, 0.19768670201301575, 0.2801459729671478]" +9120, Hoping to meet other LOVEs chingus as well~,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.650039792060852, 0.08440639078617096, 0.23014581203460693]" +20608,I’m getting there fam via ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47499749064445496, 0.2320503294467926, 0.2719421684741974]" +47430, you da lil nigga,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4721198081970215, 0.25187981128692627, 0.26717448234558105]" +5734,Of course they did ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.5084937810897827, 0.19800595939159393, 0.2653651833534241]" +59206,good morning ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😊,"[0.6791377663612366, 0.06248137354850769, 0.22196438908576965]" +46302,Last night ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45065584778785706, 0.2684151828289032, 0.27506688237190247]" +46240,my whole heart ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4398413598537445, 0.3264017701148987, 0.21546423435211182]" +58783, omfg ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46497783064842224, 0.24452927708625793, 0.2756672203540802]" +41672,A car flipped over on my street cause the passenger AND driver were both drunk & hit a parked car sigh thankfully they were both okay but ,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😂,"[0.5188172459602356, 0.2066173404455185, 0.25553375482559204]" +32094,I MEAN... ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.520950973033905, 0.15874795615673065, 0.28646087646484375]" +59168,happy birthday!! ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😍,"[0.712283194065094, 0.05335390940308571, 0.210898756980896]" +63168, i wish i was so i could go to some of your shows,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.543062686920166, 0.1813211292028427, 0.2542216181755066]" +54586, It’s roasting and it’s just hitting mid day ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44401171803474426, 0.21435926854610443, 0.31734195351600647]" +29399,Those Olive 13s are crazy ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.430747926235199, 0.3064223527908325, 0.2578096091747284]" +46846,Enter Dreams thrive here Online Contest for chance at $1500 ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😀,"[0.6304936408996582, 0.08818930387496948, 0.24717900156974792]" +46884, See you then girl!,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.45766639709472656, 0.27198362350463867, 0.2625434696674347]" +9292, u so silly ☺️☺️ ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4490460753440857, 0.23427654802799225, 0.28905823826789856]" +34499,Mom got me some new workout clothes,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😢,"[0.35311266779899597, 0.36868494749069214, 0.23315224051475525]" +34007,Shubh!!!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4780172109603882, 0.24580059945583344, 0.25653010606765747]" +18418,Niggahs don't fw you cause of ah Bitch ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3628060817718506, 0.3905337154865265, 0.22589203715324402]" +59591, Oh so ended up getting one,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.36129894852638245, 0.367780476808548, 0.23678261041641235]" +49233, Still can't believe it's stuck ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4555201232433319, 0.24716497957706451, 0.26582232117652893]" +49729, you are perfect already! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6557303667068481, 0.08671720325946808, 0.23150509595870972]" +53610, Lmao I love my paper though,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4461824297904968, 0.2677326500415802, 0.26994243264198303]" +45391,Time flying by. A lot of holidays coming up ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😁,"[0.5445258021354675, 0.12659548223018646, 0.29481539130210876]" +43924, I'm in for tomorrow! ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😔,"[0.32338300347328186, 0.4829772710800171, 0.21452975273132324]" +45683," Indeed you do Lacey Those hard yummy beautiful nipples I want to wrap my lips around, sucking, l… ",😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5909982919692993, 0.12513907253742218, 0.25469905138015747]" +25403,She Don't follow me on twitter so imma say what I want. . . I damn near love this girl. somebody stop me. Lmao,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45455968379974365, 0.24302169680595398, 0.2744925618171692]" +47843, hairline gone ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.4088912904262543, 0.3251282870769501, 0.25059613585472107]" +26891,"I just spent a good 2 hours planning the next few months in my planner. Every detail about school assignments, my trip, work and bills...",😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😭,"[0.34017205238342285, 0.39621204137802124, 0.22580093145370483]" +29821,Let's go Astros!! ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4343324601650238, 0.2709708511829376, 0.2686641812324524]" +12622,I want me a whole bitch now lol fuck these stupid ass niggas,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3959730565547943, 0.33082419633865356, 0.2502414584159851]" +31728, Lol this is what we did when we skipped class ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😅,"[0.45472681522369385, 0.27790480852127075, 0.2624472677707672]" +37060, No not with you that what i love about you ❤️,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +57673,Best night!! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.4969738721847534, 0.20910333096981049, 0.25713562965393066]" +30177,My timeline is lit right now ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😌,"[0.6235666871070862, 0.10885907709598541, 0.24510550498962402]" +20478, Yeah. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4975059926509857, 0.19411879777908325, 0.2598218023777008]" +25690,Fuck ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.4209957718849182, 0.3229237198829651, 0.24495625495910645]" +2363,MileHighReport Denver Broncos fans: We need a right tackle!John Elway: Nah. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4461924731731415, 0.274718701839447, 0.27235445380210876]" +989,Comic con through the years ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.5029022693634033, 0.24505296349525452, 0.24352771043777466]" +22669, This is really cute ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😁,"[0.5295544862747192, 0.17875659465789795, 0.24500524997711182]" +57608,His mans told him he some poppin rapper he showed him his Instagram he got 50k+ Followers I️ go thru his page all his pics got 100 likes ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49301448464393616, 0.17213021218776703, 0.2996193468570709]" +24952,"Come join me Wed., Nov. 1 @ 5 P.M.! ..☛Curious about becoming a Realtor with the ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.4916161000728607, 0.24295219779014587, 0.2600175440311432]" +58951, nope..not at all ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😢,"[0.38737085461616516, 0.3440469205379486, 0.2509240508079529]" +44249, Amazing photo ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6988162994384766, 0.07009147107601166, 0.1995769739151001]" +60662,Okay Sam Smith adoring and loving Fifth Harmony tho he loves the girls so much!,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.45829057693481445, 0.2525261640548706, 0.24974185228347778]" +5526, LMAOOO i just realised how small he actually was when he steps out the car,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😢,"[0.37607941031455994, 0.3607882857322693, 0.23431840538978577]" +40823,Missing my brother.. Wish there was a way to see you again.,😔,"[0.31784232365145226, 0.46390041493775935, 0.21825726141078838]",😢,"[0.3818744421005249, 0.35818344354629517, 0.23650339245796204]" +61528,Couldn’t have been Hickman or Ruskin ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5100908875465393, 0.22756706178188324, 0.25130730867385864]" +7687,good evening ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😭,"[0.34136587381362915, 0.4046475291252136, 0.21443414688110352]" +35214,Volunteer at a daycare and you'll be good ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4270709753036499, 0.3077910244464874, 0.253227174282074]" +9280,I know I'm not the only guy that finds it amusing when his girl gets mad lmao,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44475293159484863, 0.24309052526950836, 0.2851325571537018]" +55519,I'm broke can you imagine it's only the beginning of the month ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😅,"[0.4481950104236603, 0.28827404975891113, 0.2606358528137207]" +2530,Guys dmme your thoughts about me,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😁,"[0.5668244957923889, 0.15241102874279022, 0.24593204259872437]" +55610," I saw what you said earlier, i’m good on that too ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46286633610725403, 0.27303484082221985, 0.27055442333221436]" +45137, You are crazy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4337570369243622, 0.3027529716491699, 0.252733439207077]" +25276, He is. That’s my boss. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4582245349884033, 0.2431456595659256, 0.2803587317466736]" +46051, reviews Thank You… ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😂,"[0.44038841128349304, 0.24173776805400848, 0.29037296772003174]" +45118,"""Yuri..? Your cat is making car noise?""Oh gosh Beka I died ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4635028541088104, 0.25214114785194397, 0.2830779254436493]" +22190,Don't HMU Tho ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😭,"[0.33855995535850525, 0.42359042167663574, 0.21924760937690735]" +18626,I know you can't get enough mami ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😌,"[0.5816575884819031, 0.14036983251571655, 0.2466396987438202]" +53969, One of their greatest?Seriously?! Barça was far better for more than a hour or so.,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43686240911483765, 0.2663746178150177, 0.28201720118522644]" +15152,"Lol lastnight made me realize how hard I curve boys, I’m gonna be single forever ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.49618956446647644, 0.21657899022102356, 0.2688974440097809]" +56751, A diet of fags redbull and latte ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4357486665248871, 0.28557705879211426, 0.2697248160839081]" +27602,I really like it ❤️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4227627217769623, 0.30527663230895996, 0.24771586060523987]" +19927, Surrey baking is on the rise! ,😉,"[0.5634451019066403, 0.0992767915844839, 0.33727810650887574]",😁,"[0.5382968187332153, 0.19172899425029755, 0.25112131237983704]" +5895, too expensive ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😔,"[0.2950683534145355, 0.4416614770889282, 0.20978319644927979]" +46087,It’s November 1st and I just saw my first Christmas commercial of the year. ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",😂,"[0.48786428570747375, 0.2373846471309662, 0.2612016797065735]" +28618,We come all this way dawg to just out like straight bitches SMH ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😢,"[0.38149717450141907, 0.36006391048431396, 0.2399478256702423]" +63434,Damn im already liking the new phone from ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.5374709963798523, 0.19744104146957397, 0.24725821614265442]" +4630,"All y'all nigga focus on getting clout. I'm more focused on getting POWER, INTELLIGENCE, MONEY. yoooooo",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43964138627052307, 0.26785343885421753, 0.28091058135032654]" +12731, So torn. As the original is a classic. But damn good line up. And jej is back as mufsa ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4983026683330536, 0.22896933555603027, 0.26158177852630615]" +42082,There’s nothing like doing a workout outside in some beautiful weather •Outfit:… ,🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😌,"[0.615186870098114, 0.11963358521461487, 0.2301594316959381]" +7685, funny ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45497480034828186, 0.27077680826187134, 0.2733498811721802]" +60660,Marry me ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😌,"[0.5566040873527527, 0.17026540637016296, 0.22346144914627075]" +46844," I’m disappointed, I should have used a comma ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.38024213910102844, 0.35421207547187805, 0.2463270127773285]" +26105, Great! Thanks for making feel old! I'm available for fatherly advice anytime ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5139151215553284, 0.2044346034526825, 0.2572985887527466]" +60787,oh my gosh ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.48897722363471985, 0.20536024868488312, 0.27276062965393066]" +60175, Lmao sicka her ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45239418745040894, 0.253815233707428, 0.27404311299324036]" +40407,Ashley’s mad because I came without her ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.44031646847724915, 0.28213053941726685, 0.2662760615348816]" +42988, Amin,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.4695896506309509, 0.0671471357345581, 0.4430115222930908]" +4408,The fact that he not talking to me,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4414205849170685, 0.2752860188484192, 0.26932618021965027]" +65001,Errrr.....I probably will not dress this out... My husband kept laughing when he took this pic for me..... ,😒,"[0.21660649819494585, 0.5913357400722021, 0.192057761732852]",😁,"[0.5450354218482971, 0.1734541803598404, 0.256891667842865]" +11639,LIKE AND THIS TWT GUYS PLEASE and comment your thoughts about it:) i hope you’ll cooperate with me! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.4857410490512848, 0.23177269101142883, 0.2763417065143585]" +4894,Is it just me or did it feel like October took too long? ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😅,"[0.4270731508731842, 0.307147741317749, 0.2540520131587982]" +7872, I hope soooo thank you for support us,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙌,"[0.6535553932189941, 0.07830038666725159, 0.23454752564430237]" +40538, Not that bad.. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4586624205112457, 0.24105720221996307, 0.278547078371048]" +39850,Every day is 1 day closer to being home nd I dont think you understand how freaking excited I am to finally have him back ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😂,"[0.4522238075733185, 0.242006316781044, 0.2836740016937256]" +29307, Dude just read the email! You’re the first person in the raffle . Ju the best ❤️❤️❤️❤️,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5506585836410522, 0.16061721742153168, 0.26114585995674133]" +51790, it’s too early for this ,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😁,"[0.5474773049354553, 0.14542800188064575, 0.26344820857048035]" +28163, Always boo boo ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",🙌,"[0.6632019281387329, 0.10647572576999664, 0.22357404232025146]" +19590,The difference between wanting someone and wanting to have someone.. ,😌,"[0.6240601503759399, 0.13984962406015036, 0.23609022556390977]",😂,"[0.4317234456539154, 0.2260880321264267, 0.3238156735897064]" +39807, help,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😏,"[0.45744356513023376, 0.14197881519794464, 0.3748214542865753]" +46853," we need your support follow up this new product please, spread the link ",🙌,"[0.6613545816733067, 0.10092961487383798, 0.23771580345285526]",😅,"[0.426598459482193, 0.28666263818740845, 0.24696221947669983]" +65700, Nice! ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.573072612285614, 0.13244076073169708, 0.2496301233768463]" +57724,My cousin cris boutta have a baby n I'm thinking about back in the day ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😀,"[0.6719114184379578, 0.0719645768404007, 0.24175575375556946]" +51735, Pfffffft Next year!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5114666223526001, 0.21144163608551025, 0.2617442011833191]" +30723,Patrick always gonna say some dumb shit ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.4515093266963959, 0.279558926820755, 0.26411110162734985]" +9679,SOME OF US DO DESERVE IT A LOVE THATS TRUE AND PERFECT ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😌,"[0.5797136425971985, 0.15119323134422302, 0.22688567638397217]" +66064, I need more followers. Getting serious with Twitter now. Please follow. I'll follow back if like you ,😁,"[0.5769757880310644, 0.1269986295111923, 0.29602558245774324]",😂,"[0.4339785575866699, 0.25373995304107666, 0.2849043309688568]" +34527,"Haven't watched since they introduced Jesse from TWD. I commit to catching up as I ❤ season 1. Sorry, but my hate was real/reel",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3672369420528412, 0.36905738711357117, 0.23515424132347107]" +56724,Pwease. Especially the part where you said Wenger gon give Pep that work. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4571888744831085, 0.2561425566673279, 0.28186842799186707]" +51205,No fr ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.47384151816368103, 0.23540467023849487, 0.2568085491657257]" +34024,Life is really hard when you’re in prison. Buckle up pansy the rides gonna get bumpy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44856858253479004, 0.2567722797393799, 0.2805882692337036]" +9475," He don't want to go back after Nebraska treated him like crap, and then spurned him for Mike fuckin Riley ",😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4543648064136505, 0.2539239227771759, 0.27191299200057983]" +146,Me watching this video as if i know Portuguese. ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5166422724723816, 0.19119858741760254, 0.2683979570865631]" +15024,Got to hang with this cutie pie tonight. Made me miss my other nephews and my niece! ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😂,"[0.47932326793670654, 0.24652646481990814, 0.24248406291007996]" +41414, The issue at hand is not funny but this post is ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44225814938545227, 0.2839881479740143, 0.27452370524406433]" +11540,I love it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😍,"[0.7125383019447327, 0.08537979423999786, 0.20223069190979004]" +47218, Keep it I don't want it ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.46869081258773804, 0.2421991378068924, 0.26870790123939514]" +35087,"6 years ago today we said our final good byes , Love that lady with every ounce of my being ",😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.4856921434402466, 0.25167116522789, 0.2475750744342804]" +61252, amen ,🙏,"[0.4983755685510071, 0.08057179987004548, 0.42105263157894735]",🙏,"[0.48897236585617065, 0.09773151576519012, 0.3680305480957031]" +39960, FACT ,😎,"[0.5981432360742706, 0.10477453580901856, 0.29708222811671087]",😂,"[0.4365101754665375, 0.2751618027687073, 0.26588860154151917]" +365,nw Finally Found Someone Hi Loydi ,😅,"[0.47186147186147187, 0.2922077922077922, 0.23593073593073594]",🙌,"[0.6661455631256104, 0.07442493736743927, 0.2243521809577942]" +50665,I need ur shoulder to cry on ,😢,"[0.39118825100133514, 0.38451268357810414, 0.22429906542056074]",😂,"[0.5001665949821472, 0.18579629063606262, 0.27443698048591614]" +21007, awww you'll get me teary eyed gurl! ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😭,"[0.32326677441596985, 0.39027056097984314, 0.1988278329372406]" +18819,〰Happy Hump Day to all my Ladies is def sweet like ,😘,"[0.7546600877192983, 0.05290570175438596, 0.1924342105263158]",😂,"[0.5100692510604858, 0.19811441004276276, 0.2675458788871765]" +42421,Thanks. ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6941412687301636, 0.07213307917118073, 0.21396255493164062]" +38705, its okay I didn’t see you until I was in your face ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4489935338497162, 0.24917839467525482, 0.28654223680496216]" +47033,Fall in with alexissdanger ⬅️ ,😍,"[0.7296744771190439, 0.05173769460607014, 0.218587828274886]",😅,"[0.4509217441082001, 0.2770771086215973, 0.22925597429275513]" +38742, Let your wild side free girl!!!!!,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5023915767669678, 0.22065317630767822, 0.26683852076530457]" +67610,Can we get season 3 already!?,😭,"[0.34310532030401736, 0.4364820846905538, 0.22041259500542887]",😅,"[0.49751874804496765, 0.2405281811952591, 0.23336952924728394]" +61021,Have to quote this bih remember this nigga ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.44404181838035583, 0.2531435489654541, 0.28071755170822144]" +14904,He so damn ,😩,"[0.22289823008849557, 0.5912610619469026, 0.18584070796460178]",😢,"[0.395942747592926, 0.34198662638664246, 0.2206205427646637]" +50994, YASSS It's time for a great show Maxloyal™♛:Giveaway # ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😍,"[0.7120986580848694, 0.05822291225194931, 0.1983570158481598]" +6973, Got to love a fish finger sarnie ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.5202821493148804, 0.19921283423900604, 0.26075807213783264]" +3269, say dat ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5501073598861694, 0.15135927498340607, 0.2613829970359802]" +54827,If ur happy I'm happy ,😊,"[0.7040175768989329, 0.059322033898305086, 0.23666038920276208]",😊,"[0.6811650395393372, 0.076321542263031, 0.2262733280658722]" +19409,Rockstar ,😀,"[0.6560364464692483, 0.08428246013667426, 0.25968109339407747]",😌,"[0.6229063868522644, 0.10924336314201355, 0.23527657985687256]" +38703, God fuck me I already fixed it once ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😢,"[0.3869953751564026, 0.3528730273246765, 0.24414777755737305]" +25133, It’s socially acceptable to listen to ANY Christmas music ❤️,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😁,"[0.5611444115638733, 0.16056178510189056, 0.2410162091255188]" +15339,I thrashed p in iMessage now he wanna bet on 2k ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.4555157423019409, 0.2545802891254425, 0.2763008177280426]" +28082,my fatass need some lemon pepper wings w a lil side of hot sauce rn extraaaaa crispyyy ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😔,"[0.29292455315589905, 0.45915406942367554, 0.19746753573417664]" +44462, fck off tristan yes soph collect u in 15 n we’ll route the airport xoxox,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😌,"[0.5860549211502075, 0.13672666251659393, 0.247480571269989]" +60212,Open the bag ,😋,"[0.6784741144414169, 0.04495912806539509, 0.276566757493188]",😂,"[0.45511847734451294, 0.24822814762592316, 0.2706902027130127]" +34950,I asked people to guess my zodiac sign and this one boy said a cancer ,😤,"[0.2691131498470948, 0.4801223241590214, 0.25076452599388377]",😂,"[0.4273592531681061, 0.28500065207481384, 0.27312803268432617]" +59462,I regret this sm ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.43678316473960876, 0.24388131499290466, 0.2797044813632965]" +19465,Fuck college ,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😅,"[0.43676847219467163, 0.30419719219207764, 0.25595593452453613]" +8135, Aye this was my first time actually seeing it Wendy was off her Meds lol,😂,"[0.46813021474490496, 0.24716181096977158, 0.28470797428532346]",😂,"[0.45839327573776245, 0.2764120101928711, 0.2685169577598572]"