diff --git a/NLP Capstone1.ipynb b/NLP Capstone1.ipynb new file mode 100644 index 0000000..1ac2c73 --- /dev/null +++ b/NLP Capstone1.ipynb @@ -0,0 +1,17853 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import lyricsgenius\n", + "genius = lyricsgenius.Genius(\"Z-REcYFIrml4FqSJbwcnYOsJQUiTqpKmIEAuC-zrLJQ-_fYeY4e3PWSEjf6JOE3j\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import Artists" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by MF Doom...\n", + "\n", + "Changing artist name to 'MF DOOM'\n", + "Song 1: \"Doomsday\"\n", + "Song 2: \"Beef Rap\"\n", + "Song 3: \"Rapp Snitch Knishes\"\n", + "Song 4: \"Hoe Cakes\"\n", + "Song 5: \"Deep Fried Frenz\"\n", + "Song 6: \"One Beer\"\n", + "Song 7: \"Rhymes Like Dimes\"\n", + "Song 8: \"That’s That\"\n", + "Song 9: \"Books Of War\"\n", + "Song 10: \"Vomitspit\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "mfdoom = genius.search_artist(\"MF Doom\", max_songs=10, sort=\"popularity\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Kendrick Lamar...\n", + "\n", + "Song 1: \"HUMBLE.\"\n", + "Song 2: \"​m.A.A.d city\"\n", + "Song 3: \"Swimming Pools (Drank)\"\n", + "Song 4: \"DNA.\"\n", + "Song 5: \"XXX.\"\n", + "Song 6: \"Money Trees\"\n", + "Song 7: \"Bitch, Don’t Kill My Vibe\"\n", + "Song 8: \"Poetic Justice\"\n", + "Song 9: \"King Kunta\"\n", + "Song 10: \"LOVE.\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "kendrick = genius.search_artist(\"Kendrick Lamar\",max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by GZA...\n", + "\n", + "Song 1: \"Liquid Swords\"\n", + "Song 2: \"4th Chamber\"\n", + "Song 3: \"Shadowboxin’\"\n", + "Song 4: \"Duel of the Iron Mic\"\n", + "Song 5: \"Cold World\"\n", + "Song 6: \"Living In The World Today\"\n", + "Song 7: \"Gold\"\n", + "Song 8: \"Labels\"\n", + "Song 9: \"Killah Hills 10304\"\n", + "Song 10: \"Investigative Reports\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "GZA = genius.search_artist(\"GZA\",max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Eminem...\n", + "\n", + "Song 1: \"Rap God\"\n", + "Song 2: \"Killshot\"\n", + "Song 3: \"The Monster\"\n", + "Song 4: \"Lose Yourself\"\n", + "Song 5: \"Lucky You\"\n", + "Song 6: \"The Ringer\"\n", + "Song 7: \"River\"\n", + "Song 8: \"Berzerk\"\n", + "Song 9: \"Venom (Music from the Motion Picture)\"\n", + "Song 10: \"Not Alike\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "Eminem = genius.search_artist(\"Eminem\",max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Nas...\n", + "\n", + "Song 1: \"N.Y. State of Mind\"\n", + "Song 2: \"Ether\"\n", + "Song 3: \"Life’s a Bitch\"\n", + "Song 4: \"The World Is Yours\"\n", + "Song 5: \"The Message\"\n", + "Song 6: \"It Ain’t Hard to Tell\"\n", + "Song 7: \"One Love\"\n", + "Song 8: \"If I Ruled the World (Imagine That)\"\n", + "Song 9: \"Represent\"\n", + "Song 10: \"Nas Is Like\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "Nas = genius.search_artist(\"Nas\",max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Aesop Rock...\n", + "\n", + "Song 1: \"None Shall Pass\"\n", + "Song 2: \"Daylight\"\n", + "Song 3: \"Zero Dark Thirty\"\n", + "Song 4: \"Rings\"\n", + "Song 5: \"Coffee\"\n", + "Song 6: \"Gopher Guts\"\n", + "Song 7: \"Kirby\"\n", + "Song 8: \"Dorks\"\n", + "Song 9: \"Mystery Fish\"\n", + "Song 10: \"Shrunk\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "Aesop = genius.search_artist('Aesop Rock',max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Pharoah Monch...\n", + "\n", + "Changing artist name to 'Pharoahe Monch'\n", + "Song 1: \"Simon Says\"\n", + "Song 2: \"Rapid Eye Movement\"\n", + "Song 3: \"Simon Says (Remix)\"\n", + "Song 4: \"Assassins\"\n", + "Song 5: \"Bad MF\"\n", + "Song 6: \"Broken Again\"\n", + "Song 7: \"The Truth\"\n", + "Song 8: \"Damage\"\n", + "Song 9: \"D.R.E.A.M.\"\n", + "Song 10: \"Desire\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "Pharoah = genius.search_artist('Pharoah Monch',max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Andre 3000...\n", + "\n", + "Changing artist name to 'André 3000'\n", + "Song 1: \"Me&My (To Bury Your Parents)\"\n", + "Song 2: \"Pink & Blue\"\n", + "Song 3: \"Look Ma No Hands\"\n", + "Song 4: \"Chronomentrophobia (Movie Version)\"\n", + "Song 5: \"Outkast Reunion Tour Jumpsuit Slogans\"\n", + "Song 6: \"Banana Zoo\"\n", + "Song 7: \"Back to Black\"\n", + "Song 8: \"Sleazy\"\n", + "Song 9: \"Crayon Song\"\n", + "Song 10: \"We Want Your Soul\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "Andre = genius.search_artist('Andre 3000',max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Mos Def...\n", + "\n", + "Changing artist name to 'Yasiin Bey'\n", + "Song 1: \"Mathematics\"\n", + "Song 2: \"Ms. Fat Booty\"\n", + "Song 3: \"Auditorium\"\n", + "Song 4: \"Hip Hop\"\n", + "Song 5: \"BET Cypher\"\n", + "Song 6: \"UMI Says\"\n", + "Song 7: \"I’m Leaving\"\n", + "Song 8: \"Fear Not of Man\"\n", + "Song 9: \"Niggas In Poorest\"\n", + "Song 10: \"Mr. Nigga\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "Mos = genius.search_artist('Mos Def',max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Searching for songs by Ghostface Killah...\n", + "\n", + "Song 1: \"Winter Warz\"\n", + "Song 2: \"Mighty Healthy\"\n", + "Song 3: \"Nutmeg\"\n", + "Song 4: \"All That I Got Is You\"\n", + "Song 5: \"Iron Maiden\"\n", + "Song 6: \"One\"\n", + "\"Killer Tape Skit\" is not valid. Skipping.\n", + "Song 7: \"Wildflower\"\n", + "Song 8: \"Daytona 500\"\n", + "Song 9: \"Apollo Kids\"\n", + "Song 10: \"Cherchez La Ghost\"\n", + "\n", + "Reached user-specified song limit (10).\n", + "Done. Found 10 songs.\n" + ] + } + ], + "source": [ + "Ghostface = genius.search_artist('Ghostface Killah',max_songs=10,sort='popularity')" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('MF DOOM', '10 songs'),\n", + " ('Kendrick Lamar', '10 songs'),\n", + " ('GZA', '10 songs'),\n", + " ('Eminem', '10 songs'),\n", + " ('Nas', '10 songs'),\n", + " ('Aesop Rock', '10 songs'),\n", + " ('Pharoahe Monch', '10 songs'),\n", + " ('André 3000', '10 songs'),\n", + " ('Yasiin Bey', '10 songs'),\n", + " ('Ghostface Killah', '10 songs')]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "artist = [mfdoom,kendrick,GZA,Eminem,Nas,Aesop,Pharoah,Andre,Mos,Ghostface]\n", + "artist" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Create DataFrame" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "df = pd.DataFrame(data=[],columns=['lyrics','artist'])" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n", + "3\n", + "4\n", + "5\n", + "6\n", + "7\n", + "8\n", + "9\n", + "10\n", + "11\n", + "12\n", + "13\n", + "14\n", + "15\n", + "16\n", + "17\n", + "18\n", + "19\n", + "20\n", + "21\n", + "22\n", + "23\n", + "24\n", + "25\n", + "26\n", + "27\n", + "28\n", + "29\n", + "30\n", + "31\n", + "32\n", + "33\n", + "34\n", + "35\n", + "36\n", + "37\n", + "38\n", + "39\n", + "40\n", + "41\n", + "42\n", + "43\n", + "44\n", + "45\n", + "46\n", + "47\n", + "48\n", + "49\n", + "50\n", + "51\n", + "52\n", + "53\n", + "54\n", + "55\n", + "56\n", + "57\n", + "58\n", + "59\n", + "60\n", + "61\n", + "62\n", + "63\n", + "64\n", + "65\n", + "66\n", + "67\n", + "68\n", + "69\n", + "70\n", + "71\n", + "72\n", + "73\n", + "74\n", + "75\n", + "76\n", + "77\n", + "78\n", + "79\n", + "80\n", + "81\n", + "82\n", + "83\n", + "84\n", + "85\n", + "86\n", + "87\n", + "88\n", + "89\n", + "90\n", + "91\n", + "92\n", + "93\n", + "94\n", + "95\n", + "96\n", + "97\n", + "98\n", + "99\n", + "100\n", + "101\n", + "102\n", + "103\n", + "104\n", + "105\n", + "106\n", + "107\n", + "108\n", + "109\n", + "110\n", + "111\n", + "112\n", + "113\n", + "114\n", + "115\n", + "116\n", + "117\n", + "118\n", + "119\n", + "120\n", + "121\n", + "122\n", + "123\n", + "124\n", + "125\n", + "126\n", + "127\n", + "128\n", + "129\n", + "130\n", + "131\n", + "132\n", + "133\n", + "134\n", + "135\n", + "136\n", + "137\n", + "138\n", + "139\n", + "140\n", + "141\n", + "142\n", + "143\n", + "144\n", + "145\n", + "146\n", + "147\n", + "148\n", + "149\n", + "150\n", + "151\n", + "152\n", + "153\n", + "154\n", + "155\n", + "156\n", + "157\n", + "158\n", + "159\n", + "160\n", + "161\n", + "162\n", + "163\n", + "164\n", + "165\n", + "166\n", + "167\n", + "168\n", + "169\n", + "170\n", + "171\n", + "172\n", + "173\n", + "174\n", + "175\n", + "176\n", + "177\n", + "178\n", + "179\n", + "180\n", + "181\n", + "182\n", + "183\n", + "184\n", + "185\n", + "186\n", + "187\n", + "188\n", + "189\n", + "190\n", + "191\n", + "192\n", + "193\n", + "194\n", + "195\n", + "196\n", + "197\n", + "198\n", + "199\n", + "200\n", + "201\n", + "202\n", + "203\n", + "204\n", + "205\n", + "206\n", + "207\n", + "208\n", + "209\n", + "210\n", + "211\n", + "212\n", + "213\n", + "214\n", + "215\n", + "216\n", + "217\n", + "218\n", + "219\n", + "220\n", + "221\n", + "222\n", + "223\n", + "224\n", + "225\n", + "226\n", + "227\n", + "228\n", + "229\n", + "230\n", + "231\n", + "232\n", + "233\n", + "234\n", + "235\n", + "236\n", + "237\n", + "238\n", + "239\n", + "240\n", + "241\n", + "242\n", + "243\n", + "244\n", + "245\n", + "246\n", + "247\n", + "248\n", + "249\n", + "250\n", + "251\n", + "252\n", + "253\n", + "254\n", + "255\n", + "256\n", + "257\n", + "258\n", + "259\n", + "260\n", + "261\n", + "262\n", + "263\n", + "264\n", + "265\n", + "266\n", + "267\n", + "268\n", + "269\n", + "270\n", + "271\n", + "272\n", + "273\n", + "274\n", + "275\n", + "276\n", + "277\n", + "278\n", + "279\n", + "280\n", + "281\n", + "282\n", + "283\n", + "284\n", + "285\n", + "286\n", + "287\n", + "288\n", + "289\n", + "290\n", + "291\n", + "292\n", + "293\n", + "294\n", + "295\n", + "296\n", + "297\n", + "298\n", + "299\n", + "300\n", + "301\n", + "302\n", + "303\n", + "304\n", + "305\n", + "306\n", + "307\n", + "308\n", + "309\n", + "310\n", + "311\n", + "312\n", + "313\n", + "314\n", + "315\n", + "316\n", + "317\n", + "318\n", + "319\n", + "320\n", + "321\n", + "322\n", + "323\n", + "324\n", + "325\n", + "326\n", + "327\n", + "328\n", + "329\n", + "330\n", + "331\n", + "332\n", + "333\n", + "334\n", + "335\n", + "336\n", + "337\n", + "338\n", + "339\n", + "340\n", + "341\n", + "342\n", + "343\n", + "344\n", + "345\n", + "346\n", + "347\n", + "348\n", + "349\n", + "350\n", + "351\n", + "352\n", + "353\n", + "354\n", + "355\n", + "356\n", + "357\n", + "358\n", + "359\n", + "360\n", + "361\n", + "362\n", + "363\n", + "364\n", + "365\n", + "366\n", + "367\n", + "368\n", + "369\n", + "370\n", + "371\n", + "372\n", + "373\n", + "374\n", + "375\n", + "376\n", + "377\n", + "378\n", + "379\n", + "380\n", + "381\n", + "382\n", + "383\n", + "384\n", + "385\n", + "386\n", + "387\n", + "388\n", + "389\n", + "390\n", + "391\n", + "392\n", + "393\n", + "394\n", + "395\n", + "396\n", + "397\n", + "398\n", + "399\n", + "400\n", + "401\n", + "402\n", + "403\n", + "404\n", + "405\n", + "406\n", + "407\n", + "408\n", + "409\n", + "410\n", + "411\n", + "412\n", + "413\n", + "414\n", + "415\n", + "416\n", + "417\n", + "418\n", + "419\n", + "420\n", + "421\n", + "422\n", + "423\n", + "424\n", + "425\n", + "426\n", + "427\n", + "428\n", + "429\n", + "430\n", + "431\n", + "432\n", + "433\n", + "434\n", + "435\n", + "436\n", + "437\n", + "438\n", + "439\n", + "440\n", + "441\n", + "442\n", + "443\n", + "444\n", + "445\n", + "446\n", + "447\n", + "448\n", + "449\n", + "450\n", + "451\n", + "452\n", + "453\n", + "454\n", + "455\n", + "456\n", + "457\n", + "458\n", + "459\n", + "460\n", + "461\n", + "462\n", + "463\n", + "464\n", + "465\n", + "466\n", + "467\n", + "468\n", + "469\n", + "470\n", + "471\n", + "472\n", + "473\n", + "474\n", + "475\n", + "476\n", + "477\n", + "478\n", + "479\n", + "480\n", + "481\n", + "482\n", + "483\n", + "484\n", + "485\n", + "486\n", + "487\n", + "488\n", + "489\n", + "490\n", + "491\n", + "492\n", + "493\n", + "494\n", + "495\n", + "496\n", + "497\n", + "498\n", + "499\n", + "500\n", + "501\n", + "502\n", + "503\n", + "504\n", + "505\n", + "506\n", + "507\n", + "508\n", + "509\n", + "510\n", + "511\n", + "512\n", + "513\n", + "514\n", + "515\n", + "516\n", + "517\n", + "518\n", + "519\n", + "520\n", + "521\n", + "522\n", + "523\n", + "524\n", + "525\n", + "526\n", + "527\n", + "528\n", + "529\n", + "530\n", + "531\n", + "532\n", + "533\n", + "534\n", + "535\n", + "536\n", + "537\n", + "538\n", + "539\n", + "540\n", + "541\n", + "542\n", + "543\n", + "544\n", + "545\n", + "546\n", + "547\n", + "548\n", + "549\n", + "550\n", + "551\n", + "552\n", + "553\n", + "554\n", + "555\n", + "556\n", + "557\n", + "558\n", + "559\n", + "560\n", + "561\n", + "562\n", + "563\n", + "564\n", + "565\n", + "566\n", + "567\n", + "568\n", + "569\n", + "570\n", + "571\n", + "572\n", + "573\n", + "574\n", + "575\n", + "576\n", + "577\n", + "578\n", + "579\n", + "580\n", + "581\n", + "582\n", + "583\n", + "584\n", + "585\n", + "586\n", + "587\n", + "588\n", + "589\n", + "590\n", + "591\n", + "592\n", + "593\n", + "594\n", + "595\n", + "596\n", + "597\n", + "598\n", + "599\n", + "600\n", + "601\n", + "602\n", + "603\n", + "604\n", + "605\n", + "606\n", + "607\n", + "608\n", + "609\n", + "610\n", + "611\n", + "612\n", + "613\n", + "614\n", + "615\n", + "616\n", + "617\n", + "618\n", + "619\n", + "620\n", + "621\n", + "622\n", + "623\n", + "624\n", + "625\n", + "626\n", + "627\n", + "628\n", + "629\n", + "630\n", + "631\n", + "632\n", + "633\n", + "634\n", + "635\n", + "636\n", + "637\n", + "638\n", + "639\n", + "640\n", + "641\n", + "642\n", + "643\n", + "644\n", + "645\n", + "646\n", + "647\n", + "648\n", + "649\n", + "650\n", + "651\n", + "652\n", + "653\n", + "654\n", + "655\n", + "656\n", + "657\n", + "658\n", + "659\n", + "660\n", + "661\n", + "662\n", + "663\n", + "664\n", + "665\n", + "666\n", + "667\n", + "668\n", + "669\n", + "670\n", + "671\n", + "672\n", + "673\n", + "674\n", + "675\n", + "676\n", + "677\n", + "678\n", + "679\n", + "680\n", + "681\n", + "682\n", + "683\n", + "684\n", + "685\n", + "686\n", + "687\n", + "688\n", + "689\n", + "690\n", + "691\n", + "692\n", + "693\n", + "694\n", + "695\n", + "696\n", + "697\n", + "698\n", + "699\n", + "700\n", + "701\n", + "702\n", + "703\n", + "704\n", + "705\n", + "706\n", + "707\n", + "708\n", + "709\n", + "710\n", + "711\n", + "712\n", + "713\n", + "714\n", + "715\n", + "716\n", + "717\n", + "718\n", + "719\n", + "720\n", + "721\n", + "722\n", + "723\n", + "724\n", + "725\n", + "726\n", + "727\n", + "728\n", + "729\n", + "730\n", + "731\n", + "732\n", + "733\n", + "734\n", + "735\n", + "736\n", + "737\n", + "738\n", + "739\n", + "740\n", + "741\n", + "742\n", + "743\n", + "744\n", + "745\n", + "746\n", + "747\n", + "748\n", + "749\n", + "750\n", + "751\n", + "752\n", + "753\n", + "754\n", + "755\n", + "756\n", + "757\n", + "758\n", + "759\n", + "760\n", + "761\n", + "762\n", + "763\n", + "764\n", + "765\n", + "766\n", + "767\n", + "768\n", + "769\n", + "770\n", + "771\n", + "772\n", + "773\n", + "774\n", + "775\n", + "776\n", + "777\n", + "778\n", + "779\n", + "780\n", + "781\n", + "782\n", + "783\n", + "784\n", + "785\n", + "786\n", + "787\n", + "788\n", + "789\n", + "790\n", + "791\n", + "792\n", + "793\n", + "794\n", + "795\n", + "796\n", + "797\n", + "798\n", + "799\n", + "800\n", + "801\n", + "802\n", + "803\n", + "804\n", + "805\n", + "806\n", + "807\n", + "808\n", + "809\n", + "810\n", + "811\n", + "812\n", + "813\n", + "814\n", + "815\n", + "816\n", + "817\n", + "818\n", + "819\n", + "820\n", + "821\n", + "822\n", + "823\n", + "824\n", + "825\n", + "826\n", + "827\n", + "828\n", + "829\n", + "830\n", + "831\n", + "832\n", + "833\n", + "834\n", + "835\n", + "836\n", + "837\n", + "838\n", + "839\n", + "840\n", + "841\n", + "842\n", + "843\n", + "844\n", + "845\n", + "846\n", + "847\n", + "848\n", + "849\n", + "850\n", + "851\n", + "852\n", + "853\n", + "854\n", + "855\n", + "856\n", + "857\n", + "858\n", + "859\n", + "860\n", + "861\n", + "862\n", + "863\n", + "864\n", + "865\n", + "866\n", + "867\n", + "868\n", + "869\n", + "870\n", + "871\n", + "872\n", + "873\n", + "874\n", + "875\n", + "876\n", + "877\n", + "878\n", + "879\n", + "880\n", + "881\n", + "882\n", + "883\n", + "884\n", + "885\n", + "886\n", + "887\n", + "888\n", + "889\n", + "890\n", + "891\n", + "892\n", + "893\n", + "894\n", + "895\n", + "896\n", + "897\n", + "898\n", + "899\n", + "900\n", + "901\n", + "902\n", + "903\n", + "904\n", + "905\n", + "906\n", + "907\n", + "908\n", + "909\n", + "910\n", + "911\n", + "912\n", + "913\n", + "914\n", + "915\n", + "916\n", + "917\n", + "918\n", + "919\n", + "920\n", + "921\n", + "922\n", + "923\n", + "924\n", + "925\n", + "926\n", + "927\n", + "928\n", + "929\n", + "930\n", + "931\n", + "932\n", + "933\n", + "934\n", + "935\n", + "936\n", + "937\n", + "938\n", + "939\n", + "940\n", + "941\n", + "942\n", + "943\n", + "944\n", + "945\n", + "946\n", + "947\n", + "948\n", + "949\n", + "950\n", + "951\n", + "952\n", + "953\n", + "954\n", + "955\n", + "956\n", + "957\n", + "958\n", + "959\n", + "960\n", + "961\n", + "962\n", + "963\n", + "964\n", + "965\n", + "966\n", + "967\n", + "968\n", + "969\n", + "970\n", + "971\n", + "972\n", + "973\n", + "974\n", + "975\n", + "976\n", + "977\n", + "978\n", + "979\n", + "980\n", + "981\n", + "982\n", + "983\n", + "984\n", + "985\n", + "986\n", + "987\n", + "988\n", + "989\n", + "990\n", + "991\n", + "992\n", + "993\n", + "994\n", + "995\n", + "996\n", + "997\n", + "998\n", + "999\n", + "1000\n", + "1001\n", + "1002\n", + "1003\n", + "1004\n", + "1005\n", + "1006\n", + "1007\n", + "1008\n", + "1009\n", + "1010\n", + "1011\n", + "1012\n", + "1013\n", + "1014\n", + "1015\n", + "1016\n", + "1017\n", + "1018\n", + "1019\n", + "1020\n", + "1021\n", + "1022\n", + "1023\n", + "1024\n", + "1025\n", + "1026\n", + "1027\n", + "1028\n", + "1029\n", + "1030\n", + "1031\n", + "1032\n", + "1033\n", + "1034\n", + "1035\n", + "1036\n", + "1037\n", + "1038\n", + "1039\n", + "1040\n", + "1041\n", + "1042\n", + "1043\n", + "1044\n", + "1045\n", + "1046\n", + "1047\n", + "1048\n", + "1049\n", + "1050\n", + "1051\n", + "1052\n", + "1053\n", + "1054\n", + "1055\n", + "1056\n", + "1057\n", + "1058\n", + "1059\n", + "1060\n", + "1061\n", + "1062\n", + "1063\n", + "1064\n", + "1065\n", + "1066\n", + "1067\n", + "1068\n", + "1069\n", + "1070\n", + "1071\n", + "1072\n", + "1073\n", + "1074\n", + "1075\n", + "1076\n", + "1077\n", + "1078\n", + "1079\n", + "1080\n", + "1081\n", + "1082\n", + "1083\n", + "1084\n", + "1085\n", + "1086\n", + "1087\n", + "1088\n", + "1089\n", + "1090\n", + "1091\n", + "1092\n", + "1093\n", + "1094\n", + "1095\n", + "1096\n", + "1097\n", + "1098\n", + "1099\n", + "1100\n", + "1101\n", + "1102\n", + "1103\n", + "1104\n", + "1105\n", + "1106\n", + "1107\n", + "1108\n", + "1109\n", + "1110\n", + "1111\n", + "1112\n", + "1113\n", + "1114\n", + "1115\n", + "1116\n", + "1117\n", + "1118\n", + "1119\n", + "1120\n", + "1121\n", + "1122\n", + "1123\n", + "1124\n", + "1125\n", + "1126\n", + "1127\n", + "1128\n", + "1129\n", + "1130\n", + "1131\n", + "1132\n", + "1133\n", + "1134\n", + "1135\n", + "1136\n", + "1137\n", + "1138\n", + "1139\n", + "1140\n", + "1141\n", + "1142\n", + "1143\n", + "1144\n", + "1145\n", + "1146\n", + "1147\n", + "1148\n", + "1149\n", + "1150\n", + "1151\n", + "1152\n", + "1153\n", + "1154\n", + "1155\n", + "1156\n", + "1157\n", + "1158\n", + "1159\n", + "1160\n", + "1161\n", + "1162\n", + "1163\n", + "1164\n", + "1165\n", + "1166\n", + "1167\n", + "1168\n", + "1169\n", + "1170\n", + "1171\n", + "1172\n", + "1173\n", + "1174\n", + "1175\n", + "1176\n", + "1177\n", + "1178\n", + "1179\n", + "1180\n", + "1181\n", + "1182\n", + "1183\n", + "1184\n", + "1185\n", + "1186\n", + "1187\n", + "1188\n", + "1189\n", + "1190\n", + "1191\n", + "1192\n", + "1193\n", + "1194\n", + "1195\n", + "1196\n", + "1197\n", + "1198\n", + "1199\n", + "1200\n", + "1201\n", + "1202\n", + "1203\n", + "1204\n", + "1205\n", + "1206\n", + "1207\n", + "1208\n", + "1209\n", + "1210\n", + "1211\n", + "1212\n", + "1213\n", + "1214\n", + "1215\n", + "1216\n", + "1217\n", + "1218\n", + "1219\n", + "1220\n", + "1221\n", + "1222\n", + "1223\n", + "1224\n", + "1225\n", + "1226\n", + "1227\n", + "1228\n", + "1229\n", + "1230\n", + "1231\n", + "1232\n", + "1233\n", + "1234\n", + "1235\n", + "1236\n", + "1237\n", + "1238\n", + "1239\n", + "1240\n", + "1241\n", + "1242\n", + "1243\n", + "1244\n", + "1245\n", + "1246\n", + "1247\n", + "1248\n", + "1249\n", + "1250\n", + "1251\n", + "1252\n", + "1253\n", + "1254\n", + "1255\n", + "1256\n", + "1257\n", + "1258\n", + "1259\n", + "1260\n", + "1261\n", + "1262\n", + "1263\n", + "1264\n", + "1265\n", + "1266\n", + "1267\n", + "1268\n", + "1269\n", + "1270\n", + "1271\n", + "1272\n", + "1273\n", + "1274\n", + "1275\n", + "1276\n", + "1277\n", + "1278\n", + "1279\n", + "1280\n", + "1281\n", + "1282\n", + "1283\n", + "1284\n", + "1285\n", + "1286\n", + "1287\n", + "1288\n", + "1289\n", + "1290\n", + "1291\n", + "1292\n", + "1293\n", + "1294\n", + "1295\n", + "1296\n", + "1297\n", + "1298\n", + "1299\n", + "1300\n", + "1301\n", + "1302\n", + "1303\n", + "1304\n", + "1305\n", + "1306\n", + "1307\n", + "1308\n", + "1309\n", + "1310\n", + "1311\n", + "1312\n", + "1313\n", + "1314\n", + "1315\n", + "1316\n", + "1317\n", + "1318\n", + "1319\n", + "1320\n", + "1321\n", + "1322\n", + "1323\n", + "1324\n", + "1325\n", + "1326\n", + "1327\n", + "1328\n", + "1329\n", + "1330\n", + "1331\n", + "1332\n", + "1333\n", + "1334\n", + "1335\n", + "1336\n", + "1337\n", + "1338\n", + "1339\n", + "1340\n", + "1341\n", + "1342\n", + "1343\n", + "1344\n", + "1345\n", + "1346\n", + "1347\n", + "1348\n", + "1349\n", + "1350\n", + "1351\n", + "1352\n", + "1353\n", + "1354\n", + "1355\n", + "1356\n", + "1357\n", + "1358\n", + "1359\n", + "1360\n", + "1361\n", + "1362\n", + "1363\n", + "1364\n", + "1365\n", + "1366\n", + "1367\n", + "1368\n", + "1369\n", + "1370\n", + "1371\n", + "1372\n", + "1373\n", + "1374\n", + "1375\n", + "1376\n", + "1377\n", + "1378\n", + "1379\n", + "1380\n", + "1381\n", + "1382\n", + "1383\n", + "1384\n", + "1385\n", + "1386\n", + "1387\n", + "1388\n", + "1389\n", + "1390\n", + "1391\n", + "1392\n", + "1393\n", + "1394\n", + "1395\n", + "1396\n", + "1397\n", + "1398\n", + "1399\n", + "1400\n", + "1401\n", + "1402\n", + "1403\n", + "1404\n", + "1405\n", + "1406\n", + "1407\n", + "1408\n", + "1409\n", + "1410\n", + "1411\n", + "1412\n", + "1413\n", + "1414\n", + "1415\n", + "1416\n", + "1417\n", + "1418\n", + "1419\n", + "1420\n", + "1421\n", + "1422\n", + "1423\n", + "1424\n", + "1425\n", + "1426\n", + "1427\n", + "1428\n", + "1429\n", + "1430\n", + "1431\n", + "1432\n", + "1433\n", + "1434\n", + "1435\n", + "1436\n", + "1437\n", + "1438\n", + "1439\n", + "1440\n", + "1441\n", + "1442\n", + "1443\n", + "1444\n", + "1445\n", + "1446\n", + "1447\n", + "1448\n", + "1449\n", + "1450\n", + "1451\n", + "1452\n", + "1453\n", + "1454\n", + "1455\n", + "1456\n", + "1457\n", + "1458\n", + "1459\n", + "1460\n", + "1461\n", + "1462\n", + "1463\n", + "1464\n", + "1465\n", + "1466\n", + "1467\n", + "1468\n", + "1469\n", + "1470\n", + "1471\n", + "1472\n", + "1473\n", + "1474\n", + "1475\n", + "1476\n", + "1477\n", + "1478\n", + "1479\n", + "1480\n", + "1481\n", + "1482\n", + "1483\n", + "1484\n", + "1485\n", + "1486\n", + "1487\n", + "1488\n", + "1489\n", + "1490\n", + "1491\n", + "1492\n", + "1493\n", + "1494\n", + "1495\n", + "1496\n", + "1497\n", + "1498\n", + "1499\n", + "1500\n", + "1501\n", + "1502\n", + "1503\n", + "1504\n", + "1505\n", + "1506\n", + "1507\n", + "1508\n", + "1509\n", + "1510\n", + "1511\n", + "1512\n", + "1513\n", + "1514\n", + "1515\n", + "1516\n", + "1517\n", + "1518\n", + "1519\n", + "1520\n", + "1521\n", + "1522\n", + "1523\n", + "1524\n", + "1525\n", + "1526\n", + "1527\n", + "1528\n", + "1529\n", + "1530\n", + "1531\n", + "1532\n", + "1533\n", + "1534\n", + "1535\n", + "1536\n", + "1537\n", + "1538\n", + "1539\n", + "1540\n", + "1541\n", + "1542\n", + "1543\n", + "1544\n", + "1545\n", + "1546\n", + "1547\n", + "1548\n", + "1549\n", + "1550\n", + "1551\n", + "1552\n", + "1553\n", + "1554\n", + "1555\n", + "1556\n", + "1557\n", + "1558\n", + "1559\n", + "1560\n", + "1561\n", + "1562\n", + "1563\n", + "1564\n", + "1565\n", + "1566\n", + "1567\n", + "1568\n", + "1569\n", + "1570\n", + "1571\n", + "1572\n", + "1573\n", + "1574\n", + "1575\n", + "1576\n", + "1577\n", + "1578\n", + "1579\n", + "1580\n", + "1581\n", + "1582\n", + "1583\n", + "1584\n", + "1585\n", + "1586\n", + "1587\n", + "1588\n", + "1589\n", + "1590\n", + "1591\n", + "1592\n", + "1593\n", + "1594\n", + "1595\n", + "1596\n", + "1597\n", + "1598\n", + "1599\n", + "1600\n", + "1601\n", + "1602\n", + "1603\n", + "1604\n", + "1605\n", + "1606\n", + "1607\n", + "1608\n", + "1609\n", + "1610\n", + "1611\n", + "1612\n", + "1613\n", + "1614\n", + "1615\n", + "1616\n", + "1617\n", + "1618\n", + "1619\n", + "1620\n", + "1621\n", + "1622\n", + "1623\n", + "1624\n", + "1625\n", + "1626\n", + "1627\n", + "1628\n", + "1629\n", + "1630\n", + "1631\n", + "1632\n", + "1633\n", + "1634\n", + "1635\n", + "1636\n", + "1637\n", + "1638\n", + "1639\n", + "1640\n", + "1641\n", + "1642\n", + "1643\n", + "1644\n", + "1645\n", + "1646\n", + "1647\n", + "1648\n", + "1649\n", + "1650\n", + "1651\n", + "1652\n", + "1653\n", + "1654\n", + "1655\n", + "1656\n", + "1657\n", + "1658\n", + "1659\n", + "1660\n", + "1661\n", + "1662\n", + "1663\n", + "1664\n", + "1665\n", + "1666\n", + "1667\n", + "1668\n", + "1669\n", + "1670\n", + "1671\n", + "1672\n", + "1673\n", + "1674\n", + "1675\n", + "1676\n", + "1677\n", + "1678\n", + "1679\n", + "1680\n", + "1681\n", + "1682\n", + "1683\n", + "1684\n", + "1685\n", + "1686\n", + "1687\n", + "1688\n", + "1689\n", + "1690\n", + "1691\n", + "1692\n", + "1693\n", + "1694\n", + "1695\n", + "1696\n", + "1697\n", + "1698\n", + "1699\n", + "1700\n", + "1701\n", + "1702\n", + "1703\n", + "1704\n", + "1705\n", + "1706\n", + "1707\n", + "1708\n", + "1709\n", + "1710\n", + "1711\n", + "1712\n", + "1713\n", + "1714\n", + "1715\n", + "1716\n", + "1717\n", + "1718\n", + "1719\n", + "1720\n", + "1721\n", + "1722\n", + "1723\n", + "1724\n", + "1725\n", + "1726\n", + "1727\n", + "1728\n", + "1729\n", + "1730\n", + "1731\n", + "1732\n", + "1733\n", + "1734\n", + "1735\n", + "1736\n", + "1737\n", + "1738\n", + "1739\n", + "1740\n", + "1741\n", + "1742\n", + "1743\n", + "1744\n", + "1745\n", + "1746\n", + "1747\n", + "1748\n", + "1749\n", + "1750\n", + "1751\n", + "1752\n", + "1753\n", + "1754\n", + "1755\n", + "1756\n", + "1757\n", + "1758\n", + "1759\n", + "1760\n", + "1761\n", + "1762\n", + "1763\n", + "1764\n", + "1765\n", + "1766\n", + "1767\n", + "1768\n", + "1769\n", + "1770\n", + "1771\n", + "1772\n", + "1773\n", + "1774\n", + "1775\n", + "1776\n", + "1777\n", + "1778\n", + "1779\n", + "1780\n", + "1781\n", + "1782\n", + "1783\n", + "1784\n", + "1785\n", + "1786\n", + "1787\n", + "1788\n", + "1789\n", + "1790\n", + "1791\n", + "1792\n", + "1793\n", + "1794\n", + "1795\n", + "1796\n", + "1797\n", + "1798\n", + "1799\n", + "1800\n", + "1801\n", + "1802\n", + "1803\n", + "1804\n", + "1805\n", + "1806\n", + "1807\n", + "1808\n", + "1809\n", + "1810\n", + "1811\n", + "1812\n", + "1813\n", + "1814\n", + "1815\n", + "1816\n", + "1817\n", + "1818\n", + "1819\n", + "1820\n", + "1821\n", + "1822\n", + "1823\n", + "1824\n", + "1825\n", + "1826\n", + "1827\n", + "1828\n", + "1829\n", + "1830\n", + "1831\n", + "1832\n", + "1833\n", + "1834\n", + "1835\n", + "1836\n", + "1837\n", + "1838\n", + "1839\n", + "1840\n", + "1841\n", + "1842\n", + "1843\n", + "1844\n", + "1845\n", + "1846\n", + "1847\n", + "1848\n", + "1849\n", + "1850\n", + "1851\n", + "1852\n", + "1853\n", + "1854\n", + "1855\n", + "1856\n", + "1857\n", + "1858\n", + "1859\n", + "1860\n", + "1861\n", + "1862\n", + "1863\n", + "1864\n", + "1865\n", + "1866\n", + "1867\n", + "1868\n", + "1869\n", + "1870\n", + "1871\n", + "1872\n", + "1873\n", + "1874\n", + "1875\n", + "1876\n", + "1877\n", + "1878\n", + "1879\n", + "1880\n", + "1881\n", + "1882\n", + "1883\n", + "1884\n", + "1885\n", + "1886\n", + "1887\n", + "1888\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1889\n", + "1890\n", + "1891\n", + "1892\n", + "1893\n", + "1894\n", + "1895\n", + "1896\n", + "1897\n", + "1898\n", + "1899\n", + "1900\n", + "1901\n", + "1902\n", + "1903\n", + "1904\n", + "1905\n", + "1906\n", + "1907\n", + "1908\n", + "1909\n", + "1910\n", + "1911\n", + "1912\n", + "1913\n", + "1914\n", + "1915\n", + "1916\n", + "1917\n", + "1918\n", + "1919\n", + "1920\n", + "1921\n", + "1922\n", + "1923\n", + "1924\n", + "1925\n", + "1926\n", + "1927\n", + "1928\n", + "1929\n", + "1930\n", + "1931\n", + "1932\n", + "1933\n", + "1934\n", + "1935\n", + "1936\n", + "1937\n", + "1938\n", + "1939\n", + "1940\n", + "1941\n", + "1942\n", + "1943\n", + "1944\n", + "1945\n", + "1946\n", + "1947\n", + "1948\n", + "1949\n", + "1950\n", + "1951\n", + "1952\n", + "1953\n", + "1954\n", + "1955\n", + "1956\n", + "1957\n", + "1958\n", + "1959\n", + "1960\n", + "1961\n", + "1962\n", + "1963\n", + "1964\n", + "1965\n", + "1966\n", + "1967\n", + "1968\n", + "1969\n", + "1970\n", + "1971\n", + "1972\n", + "1973\n", + "1974\n", + "1975\n", + "1976\n", + "1977\n", + "1978\n", + "1979\n", + "1980\n", + "1981\n", + "1982\n", + "1983\n", + "1984\n", + "1985\n", + "1986\n", + "1987\n", + "1988\n", + "1989\n", + "1990\n", + "1991\n", + "1992\n", + "1993\n", + "1994\n", + "1995\n", + "1996\n", + "1997\n", + "1998\n", + "1999\n", + "2000\n", + "2001\n", + "2002\n", + "2003\n", + "2004\n", + "2005\n", + "2006\n", + "2007\n", + "2008\n", + "2009\n", + "2010\n", + "2011\n", + "2012\n", + "2013\n", + "2014\n", + "2015\n", + "2016\n", + "2017\n", + "2018\n", + "2019\n", + "2020\n", + "2021\n", + "2022\n", + "2023\n", + "2024\n", + "2025\n", + "2026\n", + "2027\n", + "2028\n", + "2029\n", + "2030\n", + "2031\n", + "2032\n", + "2033\n", + "2034\n", + "2035\n", + "2036\n", + "2037\n", + "2038\n", + "2039\n", + "2040\n", + "2041\n", + "2042\n", + "2043\n", + "2044\n", + "2045\n", + "2046\n", + "2047\n", + "2048\n", + "2049\n", + "2050\n", + "2051\n", + "2052\n", + "2053\n", + "2054\n", + "2055\n", + "2056\n", + "2057\n", + "2058\n", + "2059\n", + "2060\n", + "2061\n", + "2062\n", + "2063\n", + "2064\n", + "2065\n", + "2066\n", + "2067\n", + "2068\n", + "2069\n", + "2070\n", + "2071\n", + "2072\n", + "2073\n", + "2074\n", + "2075\n", + "2076\n", + "2077\n", + "2078\n", + "2079\n", + "2080\n", + "2081\n", + "2082\n", + "2083\n", + "2084\n", + "2085\n", + "2086\n", + "2087\n", + "2088\n", + "2089\n", + "2090\n", + "2091\n", + "2092\n", + "2093\n", + "2094\n", + "2095\n", + "2096\n", + "2097\n", + "2098\n", + "2099\n", + "2100\n", + "2101\n", + "2102\n", + "2103\n", + "2104\n", + "2105\n", + "2106\n", + "2107\n", + "2108\n", + "2109\n", + "2110\n", + "2111\n", + "2112\n", + "2113\n", + "2114\n", + "2115\n", + "2116\n", + "2117\n", + "2118\n", + "2119\n", + "2120\n", + "2121\n", + "2122\n", + "2123\n", + "2124\n", + "2125\n", + "2126\n", + "2127\n", + "2128\n", + "2129\n", + "2130\n", + "2131\n", + "2132\n", + "2133\n", + "2134\n", + "2135\n", + "2136\n", + "2137\n", + "2138\n", + "2139\n", + "2140\n", + "2141\n", + "2142\n", + "2143\n", + "2144\n", + "2145\n", + "2146\n", + "2147\n", + "2148\n", + "2149\n", + "2150\n", + "2151\n", + "2152\n", + "2153\n", + "2154\n", + "2155\n", + "2156\n", + "2157\n", + "2158\n", + "2159\n", + "2160\n", + "2161\n", + "2162\n", + "2163\n", + "2164\n", + "2165\n", + "2166\n", + "2167\n", + "2168\n", + "2169\n", + "2170\n", + "2171\n", + "2172\n", + "2173\n", + "2174\n", + "2175\n", + "2176\n", + "2177\n", + "2178\n", + "2179\n", + "2180\n", + "2181\n", + "2182\n", + "2183\n", + "2184\n", + "2185\n", + "2186\n", + "2187\n", + "2188\n", + "2189\n", + "2190\n", + "2191\n", + "2192\n", + "2193\n", + "2194\n", + "2195\n", + "2196\n", + "2197\n", + "2198\n", + "2199\n", + "2200\n", + "2201\n", + "2202\n", + "2203\n", + "2204\n", + "2205\n", + "2206\n", + "2207\n", + "2208\n", + "2209\n", + "2210\n", + "2211\n", + "2212\n", + "2213\n", + "2214\n", + "2215\n", + "2216\n", + "2217\n", + "2218\n", + "2219\n", + "2220\n", + "2221\n", + "2222\n", + "2223\n", + "2224\n", + "2225\n", + "2226\n", + "2227\n", + "2228\n", + "2229\n", + "2230\n", + "2231\n", + "2232\n", + "2233\n", + "2234\n", + "2235\n", + "2236\n", + "2237\n", + "2238\n", + "2239\n", + "2240\n", + "2241\n", + "2242\n", + "2243\n", + "2244\n", + "2245\n", + "2246\n", + "2247\n", + "2248\n", + "2249\n", + "2250\n", + "2251\n", + "2252\n", + "2253\n", + "2254\n", + "2255\n", + "2256\n", + "2257\n", + "2258\n", + "2259\n", + "2260\n", + "2261\n", + "2262\n", + "2263\n", + "2264\n", + "2265\n", + "2266\n", + "2267\n", + "2268\n", + "2269\n", + "2270\n", + "2271\n", + "2272\n", + "2273\n", + "2274\n", + "2275\n", + "2276\n", + "2277\n", + "2278\n", + "2279\n", + "2280\n", + "2281\n", + "2282\n", + "2283\n", + "2284\n", + "2285\n", + "2286\n", + "2287\n", + "2288\n", + "2289\n", + "2290\n", + "2291\n", + "2292\n", + "2293\n", + "2294\n", + "2295\n", + "2296\n", + "2297\n", + "2298\n", + "2299\n", + "2300\n", + "2301\n", + "2302\n", + "2303\n", + "2304\n", + "2305\n", + "2306\n", + "2307\n", + "2308\n", + "2309\n", + "2310\n", + "2311\n", + "2312\n", + "2313\n", + "2314\n", + "2315\n", + "2316\n", + "2317\n", + "2318\n", + "2319\n", + "2320\n", + "2321\n", + "2322\n", + "2323\n", + "2324\n", + "2325\n", + "2326\n", + "2327\n", + "2328\n", + "2329\n", + "2330\n", + "2331\n", + "2332\n", + "2333\n", + "2334\n", + "2335\n", + "2336\n", + "2337\n", + "2338\n", + "2339\n", + "2340\n", + "2341\n", + "2342\n", + "2343\n", + "2344\n", + "2345\n", + "2346\n", + "2347\n", + "2348\n", + "2349\n", + "2350\n", + "2351\n", + "2352\n", + "2353\n", + "2354\n", + "2355\n", + "2356\n", + "2357\n", + "2358\n", + "2359\n", + "2360\n", + "2361\n", + "2362\n", + "2363\n", + "2364\n", + "2365\n", + "2366\n", + "2367\n", + "2368\n", + "2369\n", + "2370\n", + "2371\n", + "2372\n", + "2373\n", + "2374\n", + "2375\n", + "2376\n", + "2377\n", + "2378\n", + "2379\n", + "2380\n", + "2381\n", + "2382\n", + "2383\n", + "2384\n", + "2385\n", + "2386\n", + "2387\n", + "2388\n", + "2389\n", + "2390\n", + "2391\n", + "2392\n", + "2393\n", + "2394\n", + "2395\n", + "2396\n", + "2397\n", + "2398\n", + "2399\n", + "2400\n", + "2401\n", + "2402\n", + "2403\n", + "2404\n", + "2405\n", + "2406\n", + "2407\n", + "2408\n", + "2409\n", + "2410\n", + "2411\n", + "2412\n", + "2413\n", + "2414\n", + "2415\n", + "2416\n", + "2417\n", + "2418\n", + "2419\n", + "2420\n", + "2421\n", + "2422\n", + "2423\n", + "2424\n", + "2425\n", + "2426\n", + "2427\n", + "2428\n", + "2429\n", + "2430\n", + "2431\n", + "2432\n", + "2433\n", + "2434\n", + "2435\n", + "2436\n", + "2437\n", + "2438\n", + "2439\n", + "2440\n", + "2441\n", + "2442\n", + "2443\n", + "2444\n", + "2445\n", + "2446\n", + "2447\n", + "2448\n", + "2449\n", + "2450\n", + "2451\n", + "2452\n", + "2453\n", + "2454\n", + "2455\n", + "2456\n", + "2457\n", + "2458\n", + "2459\n", + "2460\n", + "2461\n", + "2462\n", + "2463\n", + "2464\n", + "2465\n", + "2466\n", + "2467\n", + "2468\n", + "2469\n", + "2470\n", + "2471\n", + "2472\n", + "2473\n", + "2474\n", + "2475\n", + "2476\n", + "2477\n", + "2478\n", + "2479\n", + "2480\n", + "2481\n", + "2482\n", + "2483\n", + "2484\n", + "2485\n", + "2486\n", + "2487\n", + "2488\n", + "2489\n", + "2490\n", + "2491\n", + "2492\n", + "2493\n", + "2494\n", + "2495\n", + "2496\n", + "2497\n", + "2498\n", + "2499\n", + "2500\n", + "2501\n", + "2502\n", + "2503\n", + "2504\n", + "2505\n", + "2506\n", + "2507\n", + "2508\n", + "2509\n", + "2510\n", + "2511\n", + "2512\n", + "2513\n", + "2514\n", + "2515\n", + "2516\n", + "2517\n", + "2518\n", + "2519\n", + "2520\n", + "2521\n", + "2522\n", + "2523\n", + "2524\n", + "2525\n", + "2526\n", + "2527\n", + "2528\n", + "2529\n", + "2530\n", + "2531\n", + "2532\n", + "2533\n", + "2534\n", + "2535\n", + "2536\n", + "2537\n", + "2538\n", + "2539\n", + "2540\n", + "2541\n", + "2542\n", + "2543\n", + "2544\n", + "2545\n", + "2546\n", + "2547\n", + "2548\n", + "2549\n", + "2550\n", + "2551\n", + "2552\n", + "2553\n", + "2554\n", + "2555\n", + "2556\n", + "2557\n", + "2558\n", + "2559\n", + "2560\n", + "2561\n", + "2562\n", + "2563\n", + "2564\n", + "2565\n", + "2566\n", + "2567\n", + "2568\n", + "2569\n", + "2570\n", + "2571\n", + "2572\n", + "2573\n", + "2574\n", + "2575\n", + "2576\n", + "2577\n", + "2578\n", + "2579\n", + "2580\n", + "2581\n", + "2582\n", + "2583\n", + "2584\n", + "2585\n", + "2586\n", + "2587\n", + "2588\n", + "2589\n", + "2590\n", + "2591\n", + "2592\n", + "2593\n", + "2594\n", + "2595\n", + "2596\n", + "2597\n", + "2598\n", + "2599\n", + "2600\n", + "2601\n", + "2602\n", + "2603\n", + "2604\n", + "2605\n", + "2606\n", + "2607\n", + "2608\n", + "2609\n", + "2610\n", + "2611\n", + "2612\n", + "2613\n", + "2614\n", + "2615\n", + "2616\n", + "2617\n", + "2618\n", + "2619\n", + "2620\n", + "2621\n", + "2622\n", + "2623\n", + "2624\n", + "2625\n", + "2626\n", + "2627\n", + "2628\n", + "2629\n", + "2630\n", + "2631\n", + "2632\n", + "2633\n", + "2634\n", + "2635\n", + "2636\n", + "2637\n", + "2638\n", + "2639\n", + "2640\n", + "2641\n", + "2642\n", + "2643\n", + "2644\n", + "2645\n", + "2646\n", + "2647\n", + "2648\n", + "2649\n", + "2650\n", + "2651\n", + "2652\n", + "2653\n", + "2654\n", + "2655\n", + "2656\n", + "2657\n", + "2658\n", + "2659\n", + "2660\n", + "2661\n", + "2662\n", + "2663\n", + "2664\n", + "2665\n", + "2666\n", + "2667\n", + "2668\n", + "2669\n", + "2670\n", + "2671\n", + "2672\n", + "2673\n", + "2674\n", + "2675\n", + "2676\n", + "2677\n", + "2678\n", + "2679\n", + "2680\n", + "2681\n", + "2682\n", + "2683\n", + "2684\n", + "2685\n", + "2686\n", + "2687\n", + "2688\n", + "2689\n", + "2690\n", + "2691\n", + "2692\n", + "2693\n", + "2694\n", + "2695\n", + "2696\n", + "2697\n", + "2698\n", + "2699\n", + "2700\n", + "2701\n", + "2702\n", + "2703\n", + "2704\n", + "2705\n", + "2706\n", + "2707\n", + "2708\n", + "2709\n", + "2710\n", + "2711\n", + "2712\n", + "2713\n", + "2714\n", + "2715\n", + "2716\n", + "2717\n", + "2718\n", + "2719\n", + "2720\n", + "2721\n", + "2722\n", + "2723\n", + "2724\n", + "2725\n", + "2726\n", + "2727\n", + "2728\n", + "2729\n", + "2730\n", + "2731\n", + "2732\n", + "2733\n", + "2734\n", + "2735\n", + "2736\n", + "2737\n", + "2738\n", + "2739\n", + "2740\n", + "2741\n", + "2742\n", + "2743\n", + "2744\n", + "2745\n", + "2746\n", + "2747\n", + "2748\n", + "2749\n", + "2750\n", + "2751\n", + "2752\n", + "2753\n", + "2754\n", + "2755\n", + "2756\n", + "2757\n", + "2758\n", + "2759\n", + "2760\n", + "2761\n", + "2762\n", + "2763\n", + "2764\n", + "2765\n", + "2766\n", + "2767\n", + "2768\n", + "2769\n", + "2770\n", + "2771\n", + "2772\n", + "2773\n", + "2774\n", + "2775\n", + "2776\n", + "2777\n", + "2778\n", + "2779\n", + "2780\n", + "2781\n", + "2782\n", + "2783\n", + "2784\n", + "2785\n", + "2786\n", + "2787\n", + "2788\n", + "2789\n", + "2790\n", + "2791\n", + "2792\n", + "2793\n", + "2794\n", + "2795\n", + "2796\n", + "2797\n", + "2798\n", + "2799\n", + "2800\n", + "2801\n", + "2802\n", + "2803\n", + "2804\n", + "2805\n", + "2806\n", + "2807\n", + "2808\n", + "2809\n", + "2810\n", + "2811\n", + "2812\n", + "2813\n", + "2814\n", + "2815\n", + "2816\n", + "2817\n", + "2818\n", + "2819\n", + "2820\n", + "2821\n", + "2822\n", + "2823\n", + "2824\n", + "2825\n", + "2826\n", + "2827\n", + "2828\n", + "2829\n", + "2830\n", + "2831\n", + "2832\n", + "2833\n", + "2834\n", + "2835\n", + "2836\n", + "2837\n", + "2838\n", + "2839\n", + "2840\n", + "2841\n", + "2842\n", + "2843\n", + "2844\n", + "2845\n", + "2846\n", + "2847\n", + "2848\n", + "2849\n", + "2850\n", + "2851\n", + "2852\n", + "2853\n", + "2854\n", + "2855\n", + "2856\n", + "2857\n", + "2858\n", + "2859\n", + "2860\n", + "2861\n", + "2862\n", + "2863\n", + "2864\n", + "2865\n", + "2866\n", + "2867\n", + "2868\n", + "2869\n", + "2870\n", + "2871\n", + "2872\n", + "2873\n", + "2874\n", + "2875\n", + "2876\n", + "2877\n", + "2878\n", + "2879\n", + "2880\n", + "2881\n", + "2882\n", + "2883\n", + "2884\n", + "2885\n", + "2886\n", + "2887\n", + "2888\n", + "2889\n", + "2890\n", + "2891\n", + "2892\n", + "2893\n", + "2894\n", + "2895\n", + "2896\n", + "2897\n", + "2898\n", + "2899\n", + "2900\n", + "2901\n", + "2902\n", + "2903\n", + "2904\n", + "2905\n", + "2906\n", + "2907\n", + "2908\n", + "2909\n", + "2910\n", + "2911\n", + "2912\n", + "2913\n", + "2914\n", + "2915\n", + "2916\n", + "2917\n", + "2918\n", + "2919\n", + "2920\n", + "2921\n", + "2922\n", + "2923\n", + "2924\n", + "2925\n", + "2926\n", + "2927\n", + "2928\n", + "2929\n", + "2930\n", + "2931\n", + "2932\n", + "2933\n", + "2934\n", + "2935\n", + "2936\n", + "2937\n", + "2938\n", + "2939\n", + "2940\n", + "2941\n", + "2942\n", + "2943\n", + "2944\n", + "2945\n", + "2946\n", + "2947\n", + "2948\n", + "2949\n", + "2950\n", + "2951\n", + "2952\n", + "2953\n", + "2954\n", + "2955\n", + "2956\n", + "2957\n", + "2958\n", + "2959\n", + "2960\n", + "2961\n", + "2962\n", + "2963\n", + "2964\n", + "2965\n", + "2966\n", + "2967\n", + "2968\n", + "2969\n", + "2970\n", + "2971\n", + "2972\n", + "2973\n", + "2974\n", + "2975\n", + "2976\n", + "2977\n", + "2978\n", + "2979\n", + "2980\n", + "2981\n", + "2982\n", + "2983\n", + "2984\n", + "2985\n", + "2986\n", + "2987\n", + "2988\n", + "2989\n", + "2990\n", + "2991\n", + "2992\n", + "2993\n", + "2994\n", + "2995\n", + "2996\n", + "2997\n", + "2998\n", + "2999\n", + "3000\n", + "3001\n", + "3002\n", + "3003\n", + "3004\n", + "3005\n", + "3006\n", + "3007\n", + "3008\n", + "3009\n", + "3010\n", + "3011\n", + "3012\n", + "3013\n", + "3014\n", + "3015\n", + "3016\n", + "3017\n", + "3018\n", + "3019\n", + "3020\n", + "3021\n", + "3022\n", + "3023\n", + "3024\n", + "3025\n", + "3026\n", + "3027\n", + "3028\n", + "3029\n", + "3030\n", + "3031\n", + "3032\n", + "3033\n", + "3034\n", + "3035\n", + "3036\n", + "3037\n", + "3038\n", + "3039\n", + "3040\n", + "3041\n", + "3042\n", + "3043\n", + "3044\n", + "3045\n", + "3046\n", + "3047\n", + "3048\n", + "3049\n", + "3050\n", + "3051\n", + "3052\n", + "3053\n", + "3054\n", + "3055\n", + "3056\n", + "3057\n", + "3058\n", + "3059\n", + "3060\n", + "3061\n", + "3062\n", + "3063\n", + "3064\n", + "3065\n", + "3066\n", + "3067\n", + "3068\n", + "3069\n", + "3070\n", + "3071\n", + "3072\n", + "3073\n", + "3074\n", + "3075\n", + "3076\n", + "3077\n", + "3078\n", + "3079\n", + "3080\n", + "3081\n", + "3082\n", + "3083\n", + "3084\n", + "3085\n", + "3086\n", + "3087\n", + "3088\n", + "3089\n", + "3090\n", + "3091\n", + "3092\n", + "3093\n", + "3094\n", + "3095\n", + "3096\n", + "3097\n", + "3098\n", + "3099\n", + "3100\n", + "3101\n", + "3102\n", + "3103\n", + "3104\n", + "3105\n", + "3106\n", + "3107\n", + "3108\n", + "3109\n", + "3110\n", + "3111\n", + "3112\n", + "3113\n", + "3114\n", + "3115\n", + "3116\n", + "3117\n", + "3118\n", + "3119\n", + "3120\n", + "3121\n", + "3122\n", + "3123\n", + "3124\n", + "3125\n", + "3126\n", + "3127\n", + "3128\n", + "3129\n", + "3130\n", + "3131\n", + "3132\n", + "3133\n", + "3134\n", + "3135\n", + "3136\n", + "3137\n", + "3138\n", + "3139\n", + "3140\n", + "3141\n", + "3142\n", + "3143\n", + "3144\n", + "3145\n", + "3146\n", + "3147\n", + "3148\n", + "3149\n", + "3150\n", + "3151\n", + "3152\n", + "3153\n", + "3154\n", + "3155\n", + "3156\n", + "3157\n", + "3158\n", + "3159\n", + "3160\n", + "3161\n", + "3162\n", + "3163\n", + "3164\n", + "3165\n", + "3166\n", + "3167\n", + "3168\n", + "3169\n", + "3170\n", + "3171\n", + "3172\n", + "3173\n", + "3174\n", + "3175\n", + "3176\n", + "3177\n", + "3178\n", + "3179\n", + "3180\n", + "3181\n", + "3182\n", + "3183\n", + "3184\n", + "3185\n", + "3186\n", + "3187\n", + "3188\n", + "3189\n", + "3190\n", + "3191\n", + "3192\n", + "3193\n", + "3194\n", + "3195\n", + "3196\n", + "3197\n", + "3198\n", + "3199\n", + "3200\n", + "3201\n", + "3202\n", + "3203\n", + "3204\n", + "3205\n", + "3206\n", + "3207\n", + "3208\n", + "3209\n", + "3210\n", + "3211\n", + "3212\n", + "3213\n", + "3214\n", + "3215\n", + "3216\n", + "3217\n", + "3218\n", + "3219\n", + "3220\n", + "3221\n", + "3222\n", + "3223\n", + "3224\n", + "3225\n", + "3226\n", + "3227\n", + "3228\n", + "3229\n", + "3230\n", + "3231\n", + "3232\n", + "3233\n", + "3234\n", + "3235\n", + "3236\n", + "3237\n", + "3238\n", + "3239\n", + "3240\n", + "3241\n", + "3242\n", + "3243\n", + "3244\n", + "3245\n", + "3246\n", + "3247\n", + "3248\n", + "3249\n", + "3250\n", + "3251\n", + "3252\n", + "3253\n", + "3254\n", + "3255\n", + "3256\n", + "3257\n", + "3258\n", + "3259\n", + "3260\n", + "3261\n", + "3262\n", + "3263\n", + "3264\n", + "3265\n", + "3266\n", + "3267\n", + "3268\n", + "3269\n", + "3270\n", + "3271\n", + "3272\n", + "3273\n", + "3274\n", + "3275\n", + "3276\n", + "3277\n", + "3278\n", + "3279\n", + "3280\n", + "3281\n", + "3282\n", + "3283\n", + "3284\n", + "3285\n", + "3286\n", + "3287\n", + "3288\n", + "3289\n", + "3290\n", + "3291\n", + "3292\n", + "3293\n", + "3294\n", + "3295\n", + "3296\n", + "3297\n", + "3298\n", + "3299\n", + "3300\n", + "3301\n", + "3302\n", + "3303\n", + "3304\n", + "3305\n", + "3306\n", + "3307\n", + "3308\n", + "3309\n", + "3310\n", + "3311\n", + "3312\n", + "3313\n", + "3314\n", + "3315\n", + "3316\n", + "3317\n", + "3318\n", + "3319\n", + "3320\n", + "3321\n", + "3322\n", + "3323\n", + "3324\n", + "3325\n", + "3326\n", + "3327\n", + "3328\n", + "3329\n", + "3330\n", + "3331\n", + "3332\n", + "3333\n", + "3334\n", + "3335\n", + "3336\n", + "3337\n", + "3338\n", + "3339\n", + "3340\n", + "3341\n", + "3342\n", + "3343\n", + "3344\n", + "3345\n", + "3346\n", + "3347\n", + "3348\n", + "3349\n", + "3350\n", + "3351\n", + "3352\n", + "3353\n", + "3354\n", + "3355\n", + "3356\n", + "3357\n", + "3358\n", + "3359\n", + "3360\n", + "3361\n", + "3362\n", + "3363\n", + "3364\n", + "3365\n", + "3366\n", + "3367\n", + "3368\n", + "3369\n", + "3370\n", + "3371\n", + "3372\n", + "3373\n", + "3374\n", + "3375\n", + "3376\n", + "3377\n", + "3378\n", + "3379\n", + "3380\n", + "3381\n", + "3382\n", + "3383\n", + "3384\n", + "3385\n", + "3386\n", + "3387\n", + "3388\n", + "3389\n", + "3390\n", + "3391\n", + "3392\n", + "3393\n", + "3394\n", + "3395\n", + "3396\n", + "3397\n", + "3398\n", + "3399\n", + "3400\n", + "3401\n", + "3402\n", + "3403\n", + "3404\n", + "3405\n", + "3406\n", + "3407\n", + "3408\n", + "3409\n", + "3410\n", + "3411\n", + "3412\n", + "3413\n", + "3414\n", + "3415\n", + "3416\n", + "3417\n", + "3418\n", + "3419\n", + "3420\n", + "3421\n", + "3422\n", + "3423\n", + "3424\n", + "3425\n", + "3426\n", + "3427\n", + "3428\n", + "3429\n", + "3430\n", + "3431\n", + "3432\n", + "3433\n", + "3434\n", + "3435\n", + "3436\n", + "3437\n", + "3438\n", + "3439\n", + "3440\n", + "3441\n", + "3442\n", + "3443\n", + "3444\n", + "3445\n", + "3446\n", + "3447\n", + "3448\n", + "3449\n", + "3450\n", + "3451\n", + "3452\n", + "3453\n", + "3454\n", + "3455\n", + "3456\n", + "3457\n", + "3458\n", + "3459\n", + "3460\n", + "3461\n", + "3462\n", + "3463\n", + "3464\n", + "3465\n", + "3466\n", + "3467\n", + "3468\n", + "3469\n", + "3470\n", + "3471\n", + "3472\n", + "3473\n", + "3474\n", + "3475\n", + "3476\n", + "3477\n", + "3478\n", + "3479\n", + "3480\n", + "3481\n", + "3482\n", + "3483\n", + "3484\n", + "3485\n", + "3486\n", + "3487\n", + "3488\n", + "3489\n", + "3490\n", + "3491\n", + "3492\n", + "3493\n", + "3494\n", + "3495\n", + "3496\n", + "3497\n", + "3498\n", + "3499\n", + "3500\n", + "3501\n", + "3502\n", + "3503\n", + "3504\n", + "3505\n", + "3506\n", + "3507\n", + "3508\n", + "3509\n", + "3510\n", + "3511\n", + "3512\n", + "3513\n", + "3514\n", + "3515\n", + "3516\n", + "3517\n", + "3518\n", + "3519\n", + "3520\n", + "3521\n", + "3522\n", + "3523\n", + "3524\n", + "3525\n", + "3526\n", + "3527\n", + "3528\n", + "3529\n", + "3530\n", + "3531\n", + "3532\n", + "3533\n", + "3534\n", + "3535\n", + "3536\n", + "3537\n", + "3538\n", + "3539\n", + "3540\n", + "3541\n", + "3542\n", + "3543\n", + "3544\n", + "3545\n", + "3546\n", + "3547\n", + "3548\n", + "3549\n", + "3550\n", + "3551\n", + "3552\n", + "3553\n", + "3554\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3555\n", + "3556\n", + "3557\n", + "3558\n", + "3559\n", + "3560\n", + "3561\n", + "3562\n", + "3563\n", + "3564\n", + "3565\n", + "3566\n", + "3567\n", + "3568\n", + "3569\n", + "3570\n", + "3571\n", + "3572\n", + "3573\n", + "3574\n", + "3575\n", + "3576\n", + "3577\n", + "3578\n", + "3579\n", + "3580\n", + "3581\n", + "3582\n", + "3583\n", + "3584\n", + "3585\n", + "3586\n", + "3587\n", + "3588\n", + "3589\n", + "3590\n", + "3591\n", + "3592\n", + "3593\n", + "3594\n", + "3595\n", + "3596\n", + "3597\n", + "3598\n", + "3599\n", + "3600\n", + "3601\n", + "3602\n", + "3603\n", + "3604\n", + "3605\n", + "3606\n", + "3607\n", + "3608\n", + "3609\n", + "3610\n", + "3611\n", + "3612\n", + "3613\n", + "3614\n", + "3615\n", + "3616\n", + "3617\n", + "3618\n", + "3619\n", + "3620\n", + "3621\n", + "3622\n", + "3623\n", + "3624\n", + "3625\n", + "3626\n", + "3627\n", + "3628\n", + "3629\n", + "3630\n", + "3631\n", + "3632\n", + "3633\n", + "3634\n", + "3635\n", + "3636\n", + "3637\n", + "3638\n", + "3639\n", + "3640\n", + "3641\n", + "3642\n", + "3643\n", + "3644\n", + "3645\n", + "3646\n", + "3647\n", + "3648\n", + "3649\n", + "3650\n", + "3651\n", + "3652\n", + "3653\n", + "3654\n", + "3655\n", + "3656\n", + "3657\n", + "3658\n", + "3659\n", + "3660\n", + "3661\n", + "3662\n", + "3663\n", + "3664\n", + "3665\n", + "3666\n", + "3667\n", + "3668\n", + "3669\n", + "3670\n", + "3671\n", + "3672\n", + "3673\n", + "3674\n", + "3675\n", + "3676\n", + "3677\n", + "3678\n", + "3679\n", + "3680\n", + "3681\n", + "3682\n", + "3683\n", + "3684\n", + "3685\n", + "3686\n", + "3687\n", + "3688\n", + "3689\n", + "3690\n", + "3691\n", + "3692\n", + "3693\n", + "3694\n", + "3695\n", + "3696\n", + "3697\n", + "3698\n", + "3699\n", + "3700\n", + "3701\n", + "3702\n", + "3703\n", + "3704\n", + "3705\n", + "3706\n", + "3707\n", + "3708\n", + "3709\n", + "3710\n", + "3711\n", + "3712\n", + "3713\n", + "3714\n", + "3715\n", + "3716\n", + "3717\n", + "3718\n", + "3719\n", + "3720\n", + "3721\n", + "3722\n", + "3723\n", + "3724\n", + "3725\n", + "3726\n", + "3727\n", + "3728\n", + "3729\n", + "3730\n", + "3731\n", + "3732\n", + "3733\n", + "3734\n", + "3735\n", + "3736\n", + "3737\n", + "3738\n", + "3739\n", + "3740\n", + "3741\n", + "3742\n", + "3743\n", + "3744\n", + "3745\n", + "3746\n", + "3747\n", + "3748\n", + "3749\n", + "3750\n", + "3751\n", + "3752\n", + "3753\n", + "3754\n", + "3755\n", + "3756\n", + "3757\n", + "3758\n", + "3759\n", + "3760\n", + "3761\n", + "3762\n", + "3763\n", + "3764\n", + "3765\n", + "3766\n", + "3767\n", + "3768\n", + "3769\n", + "3770\n", + "3771\n", + "3772\n", + "3773\n", + "3774\n", + "3775\n", + "3776\n", + "3777\n", + "3778\n", + "3779\n", + "3780\n", + "3781\n", + "3782\n", + "3783\n", + "3784\n", + "3785\n", + "3786\n", + "3787\n", + "3788\n", + "3789\n", + "3790\n", + "3791\n", + "3792\n", + "3793\n", + "3794\n", + "3795\n", + "3796\n", + "3797\n", + "3798\n", + "3799\n", + "3800\n", + "3801\n", + "3802\n", + "3803\n", + "3804\n", + "3805\n", + "3806\n", + "3807\n", + "3808\n", + "3809\n", + "3810\n", + "3811\n", + "3812\n", + "3813\n", + "3814\n", + "3815\n", + "3816\n", + "3817\n", + "3818\n", + "3819\n", + "3820\n", + "3821\n", + "3822\n", + "3823\n", + "3824\n", + "3825\n", + "3826\n", + "3827\n", + "3828\n", + "3829\n", + "3830\n", + "3831\n", + "3832\n", + "3833\n", + "3834\n", + "3835\n", + "3836\n", + "3837\n", + "3838\n", + "3839\n", + "3840\n", + "3841\n", + "3842\n", + "3843\n", + "3844\n", + "3845\n", + "3846\n", + "3847\n", + "3848\n", + "3849\n", + "3850\n", + "3851\n", + "3852\n", + "3853\n", + "3854\n", + "3855\n", + "3856\n", + "3857\n", + "3858\n", + "3859\n", + "3860\n", + "3861\n", + "3862\n", + "3863\n", + "3864\n", + "3865\n", + "3866\n", + "3867\n", + "3868\n", + "3869\n", + "3870\n", + "3871\n", + "3872\n", + "3873\n", + "3874\n", + "3875\n", + "3876\n", + "3877\n", + "3878\n", + "3879\n", + "3880\n", + "3881\n", + "3882\n", + "3883\n", + "3884\n", + "3885\n", + "3886\n", + "3887\n", + "3888\n", + "3889\n", + "3890\n", + "3891\n", + "3892\n", + "3893\n", + "3894\n", + "3895\n", + "3896\n", + "3897\n", + "3898\n", + "3899\n", + "3900\n", + "3901\n", + "3902\n", + "3903\n", + "3904\n", + "3905\n", + "3906\n", + "3907\n", + "3908\n", + "3909\n", + "3910\n", + "3911\n", + "3912\n", + "3913\n", + "3914\n", + "3915\n", + "3916\n", + "3917\n", + "3918\n", + "3919\n", + "3920\n", + "3921\n", + "3922\n", + "3923\n", + "3924\n", + "3925\n", + "3926\n", + "3927\n", + "3928\n", + "3929\n", + "3930\n", + "3931\n", + "3932\n", + "3933\n", + "3934\n", + "3935\n", + "3936\n", + "3937\n", + "3938\n", + "3939\n", + "3940\n", + "3941\n", + "3942\n", + "3943\n", + "3944\n", + "3945\n", + "3946\n", + "3947\n", + "3948\n", + "3949\n", + "3950\n", + "3951\n", + "3952\n", + "3953\n", + "3954\n", + "3955\n", + "3956\n", + "3957\n", + "3958\n", + "3959\n", + "3960\n", + "3961\n", + "3962\n", + "3963\n", + "3964\n", + "3965\n", + "3966\n", + "3967\n", + "3968\n", + "3969\n", + "3970\n", + "3971\n", + "3972\n", + "3973\n", + "3974\n", + "3975\n", + "3976\n", + "3977\n", + "3978\n", + "3979\n", + "3980\n", + "3981\n", + "3982\n", + "3983\n", + "3984\n", + "3985\n", + "3986\n", + "3987\n", + "3988\n", + "3989\n", + "3990\n", + "3991\n", + "3992\n", + "3993\n", + "3994\n", + "3995\n", + "3996\n", + "3997\n", + "3998\n", + "3999\n", + "4000\n", + "4001\n", + "4002\n", + "4003\n", + "4004\n", + "4005\n", + "4006\n", + "4007\n", + "4008\n", + "4009\n", + "4010\n", + "4011\n", + "4012\n", + "4013\n", + "4014\n", + "4015\n", + "4016\n", + "4017\n", + "4018\n", + "4019\n", + "4020\n", + "4021\n", + "4022\n", + "4023\n", + "4024\n", + "4025\n", + "4026\n", + "4027\n", + "4028\n", + "4029\n", + "4030\n", + "4031\n", + "4032\n", + "4033\n", + "4034\n", + "4035\n", + "4036\n", + "4037\n", + "4038\n", + "4039\n", + "4040\n", + "4041\n", + "4042\n", + "4043\n", + "4044\n", + "4045\n", + "4046\n", + "4047\n", + "4048\n", + "4049\n", + "4050\n", + "4051\n", + "4052\n", + "4053\n", + "4054\n", + "4055\n", + "4056\n", + "4057\n", + "4058\n", + "4059\n", + "4060\n", + "4061\n", + "4062\n", + "4063\n", + "4064\n", + "4065\n", + "4066\n", + "4067\n", + "4068\n", + "4069\n", + "4070\n", + "4071\n", + "4072\n", + "4073\n", + "4074\n", + "4075\n", + "4076\n", + "4077\n", + "4078\n", + "4079\n", + "4080\n", + "4081\n", + "4082\n", + "4083\n", + "4084\n", + "4085\n", + "4086\n", + "4087\n", + "4088\n", + "4089\n", + "4090\n", + "4091\n", + "4092\n", + "4093\n", + "4094\n", + "4095\n", + "4096\n", + "4097\n", + "4098\n", + "4099\n", + "4100\n", + "4101\n", + "4102\n", + "4103\n", + "4104\n", + "4105\n", + "4106\n", + "4107\n", + "4108\n", + "4109\n", + "4110\n", + "4111\n", + "4112\n", + "4113\n", + "4114\n", + "4115\n", + "4116\n", + "4117\n", + "4118\n", + "4119\n", + "4120\n", + "4121\n", + "4122\n", + "4123\n", + "4124\n", + "4125\n", + "4126\n", + "4127\n", + "4128\n", + "4129\n", + "4130\n", + "4131\n", + "4132\n", + "4133\n", + "4134\n", + "4135\n", + "4136\n", + "4137\n", + "4138\n", + "4139\n", + "4140\n", + "4141\n", + "4142\n", + "4143\n", + "4144\n", + "4145\n", + "4146\n", + "4147\n", + "4148\n", + "4149\n", + "4150\n", + "4151\n", + "4152\n", + "4153\n", + "4154\n", + "4155\n", + "4156\n", + "4157\n", + "4158\n", + "4159\n", + "4160\n", + "4161\n", + "4162\n", + "4163\n", + "4164\n", + "4165\n", + "4166\n", + "4167\n", + "4168\n", + "4169\n", + "4170\n", + "4171\n", + "4172\n", + "4173\n", + "4174\n", + "4175\n", + "4176\n", + "4177\n", + "4178\n", + "4179\n", + "4180\n", + "4181\n", + "4182\n", + "4183\n", + "4184\n", + "4185\n", + "4186\n", + "4187\n", + "4188\n", + "4189\n", + "4190\n", + "4191\n", + "4192\n", + "4193\n", + "4194\n", + "4195\n", + "4196\n", + "4197\n", + "4198\n", + "4199\n", + "4200\n", + "4201\n", + "4202\n", + "4203\n", + "4204\n", + "4205\n", + "4206\n", + "4207\n", + "4208\n", + "4209\n", + "4210\n", + "4211\n", + "4212\n", + "4213\n", + "4214\n", + "4215\n", + "4216\n", + "4217\n", + "4218\n", + "4219\n", + "4220\n", + "4221\n", + "4222\n", + "4223\n", + "4224\n", + "4225\n", + "4226\n", + "4227\n", + "4228\n", + "4229\n", + "4230\n", + "4231\n", + "4232\n", + "4233\n", + "4234\n", + "4235\n", + "4236\n", + "4237\n", + "4238\n", + "4239\n", + "4240\n", + "4241\n", + "4242\n", + "4243\n", + "4244\n", + "4245\n", + "4246\n", + "4247\n", + "4248\n", + "4249\n", + "4250\n", + "4251\n", + "4252\n", + "4253\n", + "4254\n", + "4255\n", + "4256\n", + "4257\n", + "4258\n", + "4259\n", + "4260\n", + "4261\n", + "4262\n", + "4263\n", + "4264\n", + "4265\n", + "4266\n", + "4267\n", + "4268\n", + "4269\n", + "4270\n", + "4271\n", + "4272\n", + "4273\n", + "4274\n", + "4275\n", + "4276\n", + "4277\n", + "4278\n", + "4279\n", + "4280\n", + "4281\n", + "4282\n", + "4283\n", + "4284\n", + "4285\n", + "4286\n", + "4287\n", + "4288\n", + "4289\n", + "4290\n", + "4291\n", + "4292\n", + "4293\n", + "4294\n", + "4295\n", + "4296\n", + "4297\n", + "4298\n", + "4299\n", + "4300\n", + "4301\n", + "4302\n", + "4303\n", + "4304\n", + "4305\n", + "4306\n", + "4307\n", + "4308\n", + "4309\n", + "4310\n", + "4311\n", + "4312\n", + "4313\n", + "4314\n", + "4315\n", + "4316\n", + "4317\n", + "4318\n", + "4319\n", + "4320\n", + "4321\n", + "4322\n", + "4323\n", + "4324\n", + "4325\n", + "4326\n", + "4327\n", + "4328\n", + "4329\n", + "4330\n", + "4331\n", + "4332\n", + "4333\n", + "4334\n", + "4335\n", + "4336\n", + "4337\n", + "4338\n", + "4339\n", + "4340\n", + "4341\n", + "4342\n", + "4343\n", + "4344\n", + "4345\n", + "4346\n", + "4347\n", + "4348\n", + "4349\n", + "4350\n", + "4351\n", + "4352\n", + "4353\n", + "4354\n", + "4355\n", + "4356\n", + "4357\n", + "4358\n", + "4359\n", + "4360\n", + "4361\n", + "4362\n", + "4363\n", + "4364\n", + "4365\n", + "4366\n", + "4367\n", + "4368\n", + "4369\n", + "4370\n", + "4371\n", + "4372\n", + "4373\n", + "4374\n", + "4375\n", + "4376\n", + "4377\n", + "4378\n", + "4379\n", + "4380\n", + "4381\n", + "4382\n", + "4383\n", + "4384\n", + "4385\n", + "4386\n", + "4387\n", + "4388\n", + "4389\n", + "4390\n", + "4391\n", + "4392\n", + "4393\n", + "4394\n", + "4395\n", + "4396\n", + "4397\n", + "4398\n", + "4399\n", + "4400\n", + "4401\n", + "4402\n", + "4403\n", + "4404\n", + "4405\n", + "4406\n", + "4407\n", + "4408\n", + "4409\n", + "4410\n", + "4411\n", + "4412\n", + "4413\n", + "4414\n", + "4415\n", + "4416\n", + "4417\n", + "4418\n", + "4419\n", + "4420\n", + "4421\n", + "4422\n", + "4423\n", + "4424\n", + "4425\n", + "4426\n", + "4427\n", + "4428\n", + "4429\n", + "4430\n", + "4431\n", + "4432\n", + "4433\n", + "4434\n", + "4435\n", + "4436\n", + "4437\n", + "4438\n", + "4439\n", + "4440\n", + "4441\n", + "4442\n", + "4443\n", + "4444\n", + "4445\n", + "4446\n", + "4447\n", + "4448\n", + "4449\n", + "4450\n", + "4451\n", + "4452\n", + "4453\n", + "4454\n", + "4455\n", + "4456\n", + "4457\n", + "4458\n", + "4459\n", + "4460\n", + "4461\n", + "4462\n", + "4463\n", + "4464\n", + "4465\n", + "4466\n", + "4467\n", + "4468\n", + "4469\n", + "4470\n", + "4471\n", + "4472\n", + "4473\n", + "4474\n", + "4475\n", + "4476\n", + "4477\n", + "4478\n", + "4479\n", + "4480\n", + "4481\n", + "4482\n", + "4483\n", + "4484\n", + "4485\n", + "4486\n", + "4487\n", + "4488\n", + "4489\n", + "4490\n", + "4491\n", + "4492\n", + "4493\n", + "4494\n", + "4495\n", + "4496\n", + "4497\n", + "4498\n", + "4499\n", + "4500\n", + "4501\n", + "4502\n", + "4503\n", + "4504\n", + "4505\n", + "4506\n", + "4507\n", + "4508\n", + "4509\n", + "4510\n", + "4511\n", + "4512\n", + "4513\n", + "4514\n", + "4515\n", + "4516\n", + "4517\n", + "4518\n", + "4519\n", + "4520\n", + "4521\n", + "4522\n", + "4523\n", + "4524\n", + "4525\n", + "4526\n", + "4527\n", + "4528\n", + "4529\n", + "4530\n", + "4531\n", + "4532\n", + "4533\n", + "4534\n", + "4535\n", + "4536\n", + "4537\n", + "4538\n", + "4539\n", + "4540\n", + "4541\n", + "4542\n", + "4543\n", + "4544\n", + "4545\n", + "4546\n", + "4547\n", + "4548\n", + "4549\n", + "4550\n", + "4551\n", + "4552\n", + "4553\n", + "4554\n", + "4555\n", + "4556\n", + "4557\n", + "4558\n", + "4559\n", + "4560\n", + "4561\n", + "4562\n", + "4563\n", + "4564\n", + "4565\n", + "4566\n", + "4567\n", + "4568\n", + "4569\n", + "4570\n", + "4571\n", + "4572\n", + "4573\n", + "4574\n", + "4575\n", + "4576\n", + "4577\n", + "4578\n", + "4579\n", + "4580\n", + "4581\n", + "4582\n", + "4583\n", + "4584\n", + "4585\n", + "4586\n", + "4587\n", + "4588\n", + "4589\n", + "4590\n", + "4591\n", + "4592\n", + "4593\n", + "4594\n", + "4595\n", + "4596\n", + "4597\n", + "4598\n", + "4599\n", + "4600\n", + "4601\n", + "4602\n", + "4603\n", + "4604\n", + "4605\n", + "4606\n", + "4607\n", + "4608\n", + "4609\n", + "4610\n", + "4611\n", + "4612\n", + "4613\n", + "4614\n", + "4615\n", + "4616\n", + "4617\n", + "4618\n", + "4619\n", + "4620\n", + "4621\n", + "4622\n", + "4623\n", + "4624\n", + "4625\n", + "4626\n", + "4627\n", + "4628\n", + "4629\n", + "4630\n", + "4631\n", + "4632\n", + "4633\n", + "4634\n", + "4635\n", + "4636\n", + "4637\n", + "4638\n", + "4639\n", + "4640\n", + "4641\n", + "4642\n", + "4643\n", + "4644\n", + "4645\n", + "4646\n", + "4647\n", + "4648\n", + "4649\n", + "4650\n", + "4651\n", + "4652\n", + "4653\n", + "4654\n", + "4655\n", + "4656\n", + "4657\n", + "4658\n", + "4659\n", + "4660\n", + "4661\n", + "4662\n", + "4663\n", + "4664\n", + "4665\n", + "4666\n", + "4667\n", + "4668\n", + "4669\n", + "4670\n", + "4671\n", + "4672\n", + "4673\n", + "4674\n", + "4675\n", + "4676\n", + "4677\n", + "4678\n", + "4679\n", + "4680\n", + "4681\n", + "4682\n", + "4683\n", + "4684\n", + "4685\n", + "4686\n", + "4687\n", + "4688\n", + "4689\n", + "4690\n", + "4691\n", + "4692\n", + "4693\n", + "4694\n", + "4695\n", + "4696\n", + "4697\n", + "4698\n", + "4699\n", + "4700\n", + "4701\n", + "4702\n", + "4703\n", + "4704\n", + "4705\n", + "4706\n", + "4707\n", + "4708\n", + "4709\n", + "4710\n", + "4711\n", + "4712\n", + "4713\n", + "4714\n", + "4715\n", + "4716\n", + "4717\n", + "4718\n", + "4719\n", + "4720\n", + "4721\n", + "4722\n", + "4723\n", + "4724\n", + "4725\n", + "4726\n", + "4727\n", + "4728\n", + "4729\n", + "4730\n", + "4731\n", + "4732\n", + "4733\n", + "4734\n", + "4735\n", + "4736\n", + "4737\n", + "4738\n", + "4739\n", + "4740\n", + "4741\n", + "4742\n", + "4743\n", + "4744\n", + "4745\n", + "4746\n", + "4747\n", + "4748\n", + "4749\n", + "4750\n", + "4751\n", + "4752\n", + "4753\n", + "4754\n", + "4755\n", + "4756\n", + "4757\n", + "4758\n", + "4759\n", + "4760\n", + "4761\n", + "4762\n", + "4763\n", + "4764\n", + "4765\n", + "4766\n", + "4767\n", + "4768\n", + "4769\n", + "4770\n", + "4771\n", + "4772\n", + "4773\n", + "4774\n", + "4775\n", + "4776\n", + "4777\n", + "4778\n", + "4779\n", + "4780\n", + "4781\n", + "4782\n", + "4783\n", + "4784\n", + "4785\n", + "4786\n", + "4787\n", + "4788\n", + "4789\n", + "4790\n", + "4791\n", + "4792\n", + "4793\n", + "4794\n", + "4795\n", + "4796\n", + "4797\n", + "4798\n", + "4799\n", + "4800\n", + "4801\n", + "4802\n", + "4803\n", + "4804\n", + "4805\n", + "4806\n", + "4807\n", + "4808\n", + "4809\n", + "4810\n", + "4811\n", + "4812\n", + "4813\n", + "4814\n", + "4815\n", + "4816\n", + "4817\n", + "4818\n", + "4819\n", + "4820\n", + "4821\n", + "4822\n", + "4823\n", + "4824\n", + "4825\n", + "4826\n", + "4827\n", + "4828\n", + "4829\n", + "4830\n", + "4831\n", + "4832\n", + "4833\n", + "4834\n", + "4835\n", + "4836\n", + "4837\n", + "4838\n", + "4839\n", + "4840\n", + "4841\n", + "4842\n", + "4843\n", + "4844\n", + "4845\n", + "4846\n", + "4847\n", + "4848\n", + "4849\n", + "4850\n", + "4851\n", + "4852\n", + "4853\n", + "4854\n", + "4855\n", + "4856\n", + "4857\n", + "4858\n", + "4859\n", + "4860\n", + "4861\n", + "4862\n", + "4863\n", + "4864\n", + "4865\n", + "4866\n", + "4867\n", + "4868\n", + "4869\n", + "4870\n", + "4871\n", + "4872\n", + "4873\n", + "4874\n", + "4875\n", + "4876\n", + "4877\n", + "4878\n", + "4879\n", + "4880\n", + "4881\n", + "4882\n", + "4883\n", + "4884\n", + "4885\n", + "4886\n", + "4887\n", + "4888\n", + "4889\n", + "4890\n", + "4891\n", + "4892\n", + "4893\n", + "4894\n", + "4895\n", + "4896\n", + "4897\n", + "4898\n", + "4899\n", + "4900\n", + "4901\n", + "4902\n", + "4903\n", + "4904\n", + "4905\n", + "4906\n", + "4907\n", + "4908\n", + "4909\n", + "4910\n", + "4911\n", + "4912\n", + "4913\n", + "4914\n", + "4915\n", + "4916\n", + "4917\n", + "4918\n", + "4919\n", + "4920\n", + "4921\n", + "4922\n", + "4923\n", + "4924\n", + "4925\n", + "4926\n", + "4927\n", + "4928\n", + "4929\n", + "4930\n", + "4931\n", + "4932\n", + "4933\n", + "4934\n", + "4935\n", + "4936\n", + "4937\n", + "4938\n", + "4939\n", + "4940\n", + "4941\n", + "4942\n", + "4943\n", + "4944\n", + "4945\n", + "4946\n", + "4947\n", + "4948\n", + "4949\n", + "4950\n", + "4951\n", + "4952\n", + "4953\n", + "4954\n", + "4955\n", + "4956\n", + "4957\n", + "4958\n", + "4959\n", + "4960\n", + "4961\n", + "4962\n", + "4963\n", + "4964\n", + "4965\n", + "4966\n", + "4967\n", + "4968\n", + "4969\n", + "4970\n", + "4971\n", + "4972\n", + "4973\n", + "4974\n", + "4975\n", + "4976\n", + "4977\n", + "4978\n", + "4979\n", + "4980\n", + "4981\n", + "4982\n", + "4983\n", + "4984\n", + "4985\n", + "4986\n", + "4987\n", + "4988\n", + "4989\n", + "4990\n", + "4991\n", + "4992\n", + "4993\n", + "4994\n", + "4995\n", + "4996\n", + "4997\n", + "4998\n", + "4999\n", + "5000\n", + "5001\n", + "5002\n", + "5003\n", + "5004\n", + "5005\n", + "5006\n", + "5007\n", + "5008\n", + "5009\n", + "5010\n", + "5011\n", + "5012\n", + "5013\n", + "5014\n", + "5015\n", + "5016\n", + "5017\n", + "5018\n", + "5019\n", + "5020\n", + "5021\n", + "5022\n", + "5023\n", + "5024\n", + "5025\n", + "5026\n", + "5027\n", + "5028\n", + "5029\n", + "5030\n", + "5031\n", + "5032\n", + "5033\n", + "5034\n", + "5035\n", + "5036\n", + "5037\n", + "5038\n", + "5039\n", + "5040\n", + "5041\n", + "5042\n", + "5043\n", + "5044\n", + "5045\n", + "5046\n", + "5047\n", + "5048\n", + "5049\n", + "5050\n", + "5051\n", + "5052\n", + "5053\n", + "5054\n", + "5055\n", + "5056\n", + "5057\n", + "5058\n", + "5059\n", + "5060\n", + "5061\n", + "5062\n", + "5063\n", + "5064\n", + "5065\n", + "5066\n", + "5067\n", + "5068\n", + "5069\n", + "5070\n", + "5071\n", + "5072\n", + "5073\n", + "5074\n", + "5075\n", + "5076\n", + "5077\n", + "5078\n", + "5079\n", + "5080\n", + "5081\n", + "5082\n", + "5083\n", + "5084\n", + "5085\n", + "5086\n", + "5087\n", + "5088\n", + "5089\n", + "5090\n", + "5091\n", + "5092\n", + "5093\n", + "5094\n", + "5095\n", + "5096\n", + "5097\n", + "5098\n", + "5099\n", + "5100\n", + "5101\n", + "5102\n", + "5103\n", + "5104\n", + "5105\n", + "5106\n", + "5107\n", + "5108\n", + "5109\n", + "5110\n", + "5111\n", + "5112\n", + "5113\n", + "5114\n", + "5115\n", + "5116\n", + "5117\n", + "5118\n", + "5119\n", + "5120\n", + "5121\n", + "5122\n", + "5123\n", + "5124\n", + "5125\n", + "5126\n", + "5127\n", + "5128\n", + "5129\n", + "5130\n", + "5131\n", + "5132\n", + "5133\n", + "5134\n", + "5135\n", + "5136\n", + "5137\n", + "5138\n", + "5139\n", + "5140\n", + "5141\n", + "5142\n", + "5143\n", + "5144\n", + "5145\n", + "5146\n", + "5147\n", + "5148\n", + "5149\n", + "5150\n", + "5151\n", + "5152\n", + "5153\n", + "5154\n", + "5155\n", + "5156\n", + "5157\n", + "5158\n", + "5159\n", + "5160\n", + "5161\n", + "5162\n", + "5163\n", + "5164\n", + "5165\n", + "5166\n", + "5167\n", + "5168\n", + "5169\n", + "5170\n", + "5171\n", + "5172\n", + "5173\n", + "5174\n", + "5175\n", + "5176\n", + "5177\n", + "5178\n", + "5179\n", + "5180\n", + "5181\n", + "5182\n", + "5183\n", + "5184\n", + "5185\n", + "5186\n", + "5187\n", + "5188\n", + "5189\n", + "5190\n", + "5191\n", + "5192\n", + "5193\n", + "5194\n", + "5195\n", + "5196\n", + "5197\n", + "5198\n", + "5199\n", + "5200\n", + "5201\n", + "5202\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5203\n", + "5204\n", + "5205\n", + "5206\n", + "5207\n", + "5208\n", + "5209\n", + "5210\n", + "5211\n", + "5212\n", + "5213\n", + "5214\n", + "5215\n", + "5216\n", + "5217\n", + "5218\n", + "5219\n", + "5220\n", + "5221\n", + "5222\n", + "5223\n", + "5224\n", + "5225\n", + "5226\n", + "5227\n", + "5228\n", + "5229\n", + "5230\n", + "5231\n", + "5232\n", + "5233\n", + "5234\n", + "5235\n", + "5236\n", + "5237\n", + "5238\n", + "5239\n", + "5240\n", + "5241\n", + "5242\n", + "5243\n", + "5244\n", + "5245\n", + "5246\n", + "5247\n", + "5248\n", + "5249\n", + "5250\n", + "5251\n", + "5252\n", + "5253\n", + "5254\n", + "5255\n", + "5256\n", + "5257\n", + "5258\n", + "5259\n", + "5260\n", + "5261\n", + "5262\n", + "5263\n", + "5264\n", + "5265\n", + "5266\n", + "5267\n", + "5268\n", + "5269\n", + "5270\n", + "5271\n", + "5272\n", + "5273\n", + "5274\n", + "5275\n", + "5276\n", + "5277\n", + "5278\n", + "5279\n", + "5280\n", + "5281\n", + "5282\n", + "5283\n", + "5284\n", + "5285\n", + "5286\n", + "5287\n", + "5288\n", + "5289\n", + "5290\n", + "5291\n", + "5292\n", + "5293\n", + "5294\n", + "5295\n", + "5296\n", + "5297\n", + "5298\n", + "5299\n", + "5300\n", + "5301\n", + "5302\n", + "5303\n", + "5304\n", + "5305\n", + "5306\n", + "5307\n", + "5308\n", + "5309\n", + "5310\n", + "5311\n", + "5312\n", + "5313\n", + "5314\n", + "5315\n", + "5316\n", + "5317\n", + "5318\n", + "5319\n", + "5320\n", + "5321\n", + "5322\n", + "5323\n", + "5324\n", + "5325\n", + "5326\n", + "5327\n", + "5328\n", + "5329\n", + "5330\n", + "5331\n", + "5332\n", + "5333\n", + "5334\n", + "5335\n", + "5336\n", + "5337\n", + "5338\n", + "5339\n", + "5340\n", + "5341\n", + "5342\n", + "5343\n", + "5344\n", + "5345\n", + "5346\n", + "5347\n", + "5348\n", + "5349\n", + "5350\n", + "5351\n", + "5352\n", + "5353\n", + "5354\n", + "5355\n", + "5356\n", + "5357\n", + "5358\n", + "5359\n", + "5360\n", + "5361\n", + "5362\n", + "5363\n", + "5364\n", + "5365\n", + "5366\n", + "5367\n", + "5368\n", + "5369\n", + "5370\n", + "5371\n", + "5372\n", + "5373\n", + "5374\n", + "5375\n", + "5376\n", + "5377\n", + "5378\n", + "5379\n", + "5380\n", + "5381\n", + "5382\n", + "5383\n", + "5384\n", + "5385\n", + "5386\n", + "5387\n", + "5388\n", + "5389\n", + "5390\n", + "5391\n", + "5392\n", + "5393\n", + "5394\n", + "5395\n", + "5396\n", + "5397\n", + "5398\n", + "5399\n", + "5400\n", + "5401\n", + "5402\n", + "5403\n", + "5404\n", + "5405\n", + "5406\n", + "5407\n", + "5408\n", + "5409\n", + "5410\n", + "5411\n", + "5412\n", + "5413\n", + "5414\n", + "5415\n", + "5416\n", + "5417\n", + "5418\n", + "5419\n", + "5420\n", + "5421\n", + "5422\n", + "5423\n", + "5424\n", + "5425\n", + "5426\n", + "5427\n", + "5428\n", + "5429\n", + "5430\n", + "5431\n", + "5432\n", + "5433\n", + "5434\n", + "5435\n", + "5436\n", + "5437\n", + "5438\n", + "5439\n", + "5440\n", + "5441\n", + "5442\n", + "5443\n", + "5444\n", + "5445\n", + "5446\n", + "5447\n", + "5448\n", + "5449\n", + "5450\n", + "5451\n", + "5452\n", + "5453\n", + "5454\n", + "5455\n", + "5456\n", + "5457\n", + "5458\n", + "5459\n", + "5460\n", + "5461\n", + "5462\n", + "5463\n", + "5464\n", + "5465\n", + "5466\n", + "5467\n", + "5468\n", + "5469\n", + "5470\n", + "5471\n", + "5472\n", + "5473\n", + "5474\n", + "5475\n", + "5476\n", + "5477\n", + "5478\n", + "5479\n", + "5480\n", + "5481\n", + "5482\n", + "5483\n", + "5484\n", + "5485\n", + "5486\n", + "5487\n", + "5488\n", + "5489\n", + "5490\n", + "5491\n", + "5492\n", + "5493\n", + "5494\n", + "5495\n", + "5496\n", + "5497\n", + "5498\n", + "5499\n", + "5500\n", + "5501\n", + "5502\n", + "5503\n", + "5504\n", + "5505\n", + "5506\n", + "5507\n", + "5508\n", + "5509\n", + "5510\n", + "5511\n", + "5512\n", + "5513\n", + "5514\n", + "5515\n", + "5516\n", + "5517\n", + "5518\n", + "5519\n", + "5520\n", + "5521\n", + "5522\n", + "5523\n", + "5524\n", + "5525\n", + "5526\n", + "5527\n", + "5528\n", + "5529\n", + "5530\n", + "5531\n", + "5532\n", + "5533\n", + "5534\n", + "5535\n", + "5536\n", + "5537\n", + "5538\n", + "5539\n", + "5540\n", + "5541\n", + "5542\n", + "5543\n", + "5544\n", + "5545\n", + "5546\n", + "5547\n", + "5548\n", + "5549\n", + "5550\n", + "5551\n", + "5552\n", + "5553\n", + "5554\n", + "5555\n", + "5556\n", + "5557\n", + "5558\n", + "5559\n", + "5560\n", + "5561\n", + "5562\n", + "5563\n", + "5564\n", + "5565\n", + "5566\n", + "5567\n", + "5568\n", + "5569\n", + "5570\n", + "5571\n", + "5572\n", + "5573\n", + "5574\n", + "5575\n", + "5576\n", + "5577\n", + "5578\n", + "5579\n", + "5580\n", + "5581\n", + "5582\n", + "5583\n", + "5584\n", + "5585\n", + "5586\n", + "5587\n", + "5588\n", + "5589\n", + "5590\n", + "5591\n", + "5592\n", + "5593\n", + "5594\n", + "5595\n", + "5596\n", + "5597\n", + "5598\n", + "5599\n", + "5600\n", + "5601\n", + "5602\n", + "5603\n", + "5604\n", + "5605\n", + "5606\n", + "5607\n", + "5608\n", + "5609\n", + "5610\n", + "5611\n", + "5612\n", + "5613\n", + "5614\n", + "5615\n", + "5616\n", + "5617\n", + "5618\n", + "5619\n", + "5620\n", + "5621\n", + "5622\n", + "5623\n", + "5624\n", + "5625\n", + "5626\n", + "5627\n", + "5628\n", + "5629\n", + "5630\n", + "5631\n", + "5632\n", + "5633\n", + "5634\n", + "5635\n", + "5636\n", + "5637\n", + "5638\n", + "5639\n", + "5640\n", + "5641\n", + "5642\n", + "5643\n", + "5644\n", + "5645\n", + "5646\n", + "5647\n", + "5648\n", + "5649\n", + "5650\n", + "5651\n", + "5652\n", + "5653\n", + "5654\n", + "5655\n", + "5656\n", + "5657\n", + "5658\n", + "5659\n", + "5660\n", + "5661\n", + "5662\n", + "5663\n", + "5664\n", + "5665\n", + "5666\n", + "5667\n", + "5668\n", + "5669\n", + "5670\n", + "5671\n", + "5672\n", + "5673\n", + "5674\n", + "5675\n", + "5676\n", + "5677\n", + "5678\n", + "5679\n", + "5680\n", + "5681\n", + "5682\n", + "5683\n", + "5684\n", + "5685\n", + "5686\n", + "5687\n", + "5688\n", + "5689\n", + "5690\n", + "5691\n", + "5692\n", + "5693\n", + "5694\n", + "5695\n", + "5696\n", + "5697\n", + "5698\n", + "5699\n", + "5700\n", + "5701\n", + "5702\n", + "5703\n", + "5704\n", + "5705\n", + "5706\n", + "5707\n", + "5708\n", + "5709\n", + "5710\n", + "5711\n", + "5712\n", + "5713\n", + "5714\n", + "5715\n", + "5716\n", + "5717\n", + "5718\n", + "5719\n", + "5720\n", + "5721\n", + "5722\n", + "5723\n", + "5724\n", + "5725\n", + "5726\n", + "5727\n", + "5728\n", + "5729\n", + "5730\n", + "5731\n", + "5732\n", + "5733\n", + "5734\n", + "5735\n", + "5736\n", + "5737\n", + "5738\n", + "5739\n", + "5740\n", + "5741\n", + "5742\n", + "5743\n", + "5744\n", + "5745\n", + "5746\n", + "5747\n", + "5748\n", + "5749\n", + "5750\n", + "5751\n", + "5752\n", + "5753\n", + "5754\n", + "5755\n", + "5756\n", + "5757\n", + "5758\n", + "5759\n", + "5760\n", + "5761\n", + "5762\n", + "5763\n", + "5764\n", + "5765\n", + "5766\n", + "5767\n", + "5768\n", + "5769\n", + "5770\n", + "5771\n", + "5772\n", + "5773\n", + "5774\n", + "5775\n", + "5776\n", + "5777\n", + "5778\n", + "5779\n", + "5780\n", + "5781\n", + "5782\n", + "5783\n", + "5784\n", + "5785\n", + "5786\n", + "5787\n", + "5788\n", + "5789\n", + "5790\n", + "5791\n", + "5792\n", + "5793\n", + "5794\n", + "5795\n", + "5796\n", + "5797\n", + "5798\n", + "5799\n", + "5800\n", + "5801\n", + "5802\n", + "5803\n", + "5804\n", + "5805\n", + "5806\n", + "5807\n", + "5808\n", + "5809\n", + "5810\n", + "5811\n", + "5812\n", + "5813\n", + "5814\n", + "5815\n", + "5816\n", + "5817\n", + "5818\n", + "5819\n", + "5820\n", + "5821\n", + "5822\n", + "5823\n", + "5824\n", + "5825\n", + "5826\n", + "5827\n", + "5828\n", + "5829\n", + "5830\n", + "5831\n", + "5832\n", + "5833\n", + "5834\n", + "5835\n", + "5836\n", + "5837\n", + "5838\n", + "5839\n", + "5840\n", + "5841\n", + "5842\n", + "5843\n", + "5844\n", + "5845\n", + "5846\n", + "5847\n", + "5848\n", + "5849\n", + "5850\n", + "5851\n", + "5852\n", + "5853\n", + "5854\n", + "5855\n", + "5856\n", + "5857\n", + "5858\n", + "5859\n", + "5860\n", + "5861\n", + "5862\n", + "5863\n", + "5864\n", + "5865\n", + "5866\n", + "5867\n", + "5868\n", + "5869\n", + "5870\n", + "5871\n", + "5872\n", + "5873\n", + "5874\n", + "5875\n", + "5876\n", + "5877\n", + "5878\n", + "5879\n", + "5880\n", + "5881\n", + "5882\n", + "5883\n", + "5884\n", + "5885\n", + "5886\n", + "5887\n", + "5888\n", + "5889\n", + "5890\n", + "5891\n", + "5892\n", + "5893\n", + "5894\n", + "5895\n", + "5896\n", + "5897\n", + "5898\n", + "5899\n", + "5900\n", + "5901\n", + "5902\n", + "5903\n", + "5904\n", + "5905\n", + "5906\n", + "5907\n", + "5908\n", + "5909\n", + "5910\n", + "5911\n", + "5912\n", + "5913\n", + "5914\n", + "5915\n", + "5916\n", + "5917\n", + "5918\n", + "5919\n", + "5920\n", + "5921\n", + "5922\n", + "5923\n", + "5924\n", + "5925\n", + "5926\n", + "5927\n", + "5928\n", + "5929\n", + "5930\n", + "5931\n", + "5932\n", + "5933\n", + "5934\n", + "5935\n", + "5936\n", + "5937\n", + "5938\n", + "5939\n", + "5940\n", + "5941\n", + "5942\n", + "5943\n", + "5944\n", + "5945\n", + "5946\n", + "5947\n", + "5948\n", + "5949\n", + "5950\n", + "5951\n", + "5952\n", + "5953\n", + "5954\n", + "5955\n", + "5956\n", + "5957\n", + "5958\n", + "5959\n", + "5960\n", + "5961\n", + "5962\n", + "5963\n", + "5964\n", + "5965\n", + "5966\n", + "5967\n", + "5968\n", + "5969\n", + "5970\n", + "5971\n", + "5972\n", + "5973\n", + "5974\n", + "5975\n", + "5976\n", + "5977\n", + "5978\n", + "5979\n", + "5980\n", + "5981\n", + "5982\n", + "5983\n", + "5984\n", + "5985\n", + "5986\n", + "5987\n", + "5988\n", + "5989\n", + "5990\n", + "5991\n", + "5992\n", + "5993\n", + "5994\n", + "5995\n", + "5996\n", + "5997\n", + "5998\n", + "5999\n", + "6000\n", + "6001\n", + "6002\n", + "6003\n", + "6004\n", + "6005\n", + "6006\n", + "6007\n", + "6008\n", + "6009\n", + "6010\n", + "6011\n", + "6012\n", + "6013\n", + "6014\n", + "6015\n", + "6016\n", + "6017\n", + "6018\n", + "6019\n", + "6020\n", + "6021\n", + "6022\n", + "6023\n", + "6024\n", + "6025\n", + "6026\n", + "6027\n", + "6028\n", + "6029\n", + "6030\n", + "6031\n", + "6032\n", + "6033\n", + "6034\n", + "6035\n", + "6036\n", + "6037\n", + "6038\n", + "6039\n", + "6040\n", + "6041\n", + "6042\n", + "6043\n", + "6044\n", + "6045\n", + "6046\n", + "6047\n", + "6048\n", + "6049\n", + "6050\n", + "6051\n", + "6052\n", + "6053\n", + "6054\n", + "6055\n", + "6056\n", + "6057\n", + "6058\n", + "6059\n", + "6060\n", + "6061\n", + "6062\n", + "6063\n", + "6064\n", + "6065\n", + "6066\n", + "6067\n", + "6068\n", + "6069\n", + "6070\n", + "6071\n", + "6072\n", + "6073\n", + "6074\n", + "6075\n", + "6076\n", + "6077\n", + "6078\n", + "6079\n", + "6080\n", + "6081\n", + "6082\n", + "6083\n", + "6084\n", + "6085\n", + "6086\n", + "6087\n", + "6088\n", + "6089\n", + "6090\n", + "6091\n", + "6092\n", + "6093\n", + "6094\n", + "6095\n", + "6096\n", + "6097\n", + "6098\n", + "6099\n", + "6100\n", + "6101\n", + "6102\n", + "6103\n", + "6104\n", + "6105\n", + "6106\n", + "6107\n", + "6108\n", + "6109\n", + "6110\n", + "6111\n", + "6112\n", + "6113\n", + "6114\n", + "6115\n", + "6116\n", + "6117\n", + "6118\n", + "6119\n", + "6120\n", + "6121\n", + "6122\n", + "6123\n", + "6124\n", + "6125\n", + "6126\n", + "6127\n", + "6128\n", + "6129\n", + "6130\n", + "6131\n", + "6132\n", + "6133\n", + "6134\n", + "6135\n", + "6136\n", + "6137\n", + "6138\n", + "6139\n", + "6140\n", + "6141\n", + "6142\n", + "6143\n", + "6144\n", + "6145\n", + "6146\n", + "6147\n", + "6148\n", + "6149\n", + "6150\n", + "6151\n", + "6152\n", + "6153\n", + "6154\n", + "6155\n", + "6156\n", + "6157\n", + "6158\n", + "6159\n", + "6160\n", + "6161\n", + "6162\n", + "6163\n", + "6164\n", + "6165\n", + "6166\n", + "6167\n", + "6168\n", + "6169\n", + "6170\n", + "6171\n", + "6172\n", + "6173\n", + "6174\n", + "6175\n", + "6176\n", + "6177\n", + "6178\n", + "6179\n", + "6180\n", + "6181\n", + "6182\n", + "6183\n", + "6184\n", + "6185\n", + "6186\n", + "6187\n", + "6188\n", + "6189\n", + "6190\n", + "6191\n", + "6192\n", + "6193\n", + "6194\n", + "6195\n", + "6196\n", + "6197\n", + "6198\n", + "6199\n", + "6200\n", + "6201\n", + "6202\n", + "6203\n", + "6204\n", + "6205\n", + "6206\n", + "6207\n", + "6208\n", + "6209\n", + "6210\n", + "6211\n", + "6212\n", + "6213\n", + "6214\n", + "6215\n", + "6216\n", + "6217\n", + "6218\n", + "6219\n", + "6220\n", + "6221\n", + "6222\n", + "6223\n", + "6224\n", + "6225\n", + "6226\n", + "6227\n", + "6228\n", + "6229\n", + "6230\n", + "6231\n", + "6232\n", + "6233\n", + "6234\n", + "6235\n", + "6236\n", + "6237\n", + "6238\n", + "6239\n", + "6240\n", + "6241\n", + "6242\n", + "6243\n", + "6244\n", + "6245\n", + "6246\n", + "6247\n", + "6248\n", + "6249\n", + "6250\n", + "6251\n", + "6252\n", + "6253\n", + "6254\n", + "6255\n", + "6256\n", + "6257\n", + "6258\n", + "6259\n", + "6260\n", + "6261\n", + "6262\n", + "6263\n", + "6264\n", + "6265\n", + "6266\n", + "6267\n", + "6268\n", + "6269\n", + "6270\n", + "6271\n", + "6272\n", + "6273\n", + "6274\n", + "6275\n", + "6276\n", + "6277\n", + "6278\n", + "6279\n", + "6280\n", + "6281\n", + "6282\n", + "6283\n", + "6284\n", + "6285\n", + "6286\n", + "6287\n", + "6288\n", + "6289\n", + "6290\n", + "6291\n", + "6292\n", + "6293\n", + "6294\n", + "6295\n", + "6296\n", + "6297\n", + "6298\n", + "6299\n", + "6300\n", + "6301\n", + "6302\n", + "6303\n", + "6304\n", + "6305\n", + "6306\n", + "6307\n", + "6308\n", + "6309\n", + "6310\n", + "6311\n", + "6312\n", + "6313\n", + "6314\n", + "6315\n", + "6316\n", + "6317\n", + "6318\n", + "6319\n", + "6320\n", + "6321\n", + "6322\n", + "6323\n", + "6324\n", + "6325\n", + "6326\n", + "6327\n", + "6328\n", + "6329\n", + "6330\n", + "6331\n", + "6332\n", + "6333\n", + "6334\n", + "6335\n", + "6336\n", + "6337\n", + "6338\n", + "6339\n", + "6340\n", + "6341\n", + "6342\n", + "6343\n", + "6344\n", + "6345\n", + "6346\n", + "6347\n", + "6348\n", + "6349\n", + "6350\n", + "6351\n", + "6352\n", + "6353\n", + "6354\n", + "6355\n", + "6356\n", + "6357\n", + "6358\n", + "6359\n", + "6360\n", + "6361\n", + "6362\n", + "6363\n", + "6364\n", + "6365\n", + "6366\n", + "6367\n", + "6368\n", + "6369\n", + "6370\n", + "6371\n", + "6372\n", + "6373\n", + "6374\n", + "6375\n", + "6376\n", + "6377\n", + "6378\n", + "6379\n", + "6380\n", + "6381\n", + "6382\n", + "6383\n", + "6384\n", + "6385\n", + "6386\n", + "6387\n", + "6388\n", + "6389\n", + "6390\n", + "6391\n", + "6392\n", + "6393\n", + "6394\n", + "6395\n", + "6396\n", + "6397\n", + "6398\n", + "6399\n", + "6400\n", + "6401\n", + "6402\n", + "6403\n", + "6404\n", + "6405\n", + "6406\n", + "6407\n", + "6408\n", + "6409\n", + "6410\n", + "6411\n", + "6412\n", + "6413\n", + "6414\n", + "6415\n", + "6416\n", + "6417\n", + "6418\n", + "6419\n", + "6420\n", + "6421\n", + "6422\n", + "6423\n", + "6424\n", + "6425\n", + "6426\n", + "6427\n", + "6428\n", + "6429\n", + "6430\n", + "6431\n", + "6432\n", + "6433\n", + "6434\n", + "6435\n", + "6436\n", + "6437\n", + "6438\n", + "6439\n", + "6440\n", + "6441\n", + "6442\n", + "6443\n", + "6444\n", + "6445\n", + "6446\n", + "6447\n", + "6448\n", + "6449\n", + "6450\n", + "6451\n", + "6452\n", + "6453\n", + "6454\n", + "6455\n", + "6456\n", + "6457\n", + "6458\n", + "6459\n", + "6460\n", + "6461\n", + "6462\n", + "6463\n", + "6464\n", + "6465\n", + "6466\n", + "6467\n", + "6468\n", + "6469\n", + "6470\n", + "6471\n", + "6472\n", + "6473\n", + "6474\n", + "6475\n", + "6476\n", + "6477\n", + "6478\n", + "6479\n", + "6480\n", + "6481\n", + "6482\n", + "6483\n", + "6484\n", + "6485\n", + "6486\n", + "6487\n", + "6488\n", + "6489\n", + "6490\n", + "6491\n", + "6492\n", + "6493\n", + "6494\n", + "6495\n", + "6496\n", + "6497\n", + "6498\n", + "6499\n", + "6500\n", + "6501\n", + "6502\n", + "6503\n", + "6504\n", + "6505\n", + "6506\n", + "6507\n", + "6508\n", + "6509\n", + "6510\n", + "6511\n", + "6512\n", + "6513\n", + "6514\n", + "6515\n", + "6516\n", + "6517\n", + "6518\n", + "6519\n", + "6520\n", + "6521\n", + "6522\n", + "6523\n", + "6524\n", + "6525\n", + "6526\n", + "6527\n", + "6528\n", + "6529\n", + "6530\n", + "6531\n", + "6532\n", + "6533\n", + "6534\n", + "6535\n", + "6536\n", + "6537\n", + "6538\n", + "6539\n", + "6540\n", + "6541\n", + "6542\n", + "6543\n", + "6544\n", + "6545\n", + "6546\n", + "6547\n", + "6548\n", + "6549\n", + "6550\n", + "6551\n", + "6552\n", + "6553\n", + "6554\n", + "6555\n", + "6556\n", + "6557\n", + "6558\n", + "6559\n", + "6560\n", + "6561\n", + "6562\n", + "6563\n", + "6564\n", + "6565\n", + "6566\n", + "6567\n", + "6568\n", + "6569\n", + "6570\n", + "6571\n", + "6572\n", + "6573\n", + "6574\n", + "6575\n", + "6576\n", + "6577\n", + "6578\n", + "6579\n", + "6580\n", + "6581\n", + "6582\n", + "6583\n", + "6584\n", + "6585\n", + "6586\n", + "6587\n", + "6588\n", + "6589\n", + "6590\n", + "6591\n", + "6592\n", + "6593\n", + "6594\n", + "6595\n", + "6596\n", + "6597\n", + "6598\n", + "6599\n", + "6600\n", + "6601\n", + "6602\n", + "6603\n", + "6604\n", + "6605\n", + "6606\n", + "6607\n", + "6608\n", + "6609\n", + "6610\n", + "6611\n", + "6612\n", + "6613\n", + "6614\n", + "6615\n", + "6616\n", + "6617\n", + "6618\n", + "6619\n", + "6620\n", + "6621\n", + "6622\n", + "6623\n", + "6624\n", + "6625\n", + "6626\n", + "6627\n", + "6628\n", + "6629\n", + "6630\n", + "6631\n", + "6632\n", + "6633\n", + "6634\n", + "6635\n", + "6636\n", + "6637\n", + "6638\n", + "6639\n", + "6640\n", + "6641\n", + "6642\n", + "6643\n", + "6644\n", + "6645\n", + "6646\n", + "6647\n", + "6648\n", + "6649\n", + "6650\n", + "6651\n", + "6652\n", + "6653\n", + "6654\n", + "6655\n", + "6656\n", + "6657\n", + "6658\n", + "6659\n", + "6660\n", + "6661\n", + "6662\n", + "6663\n", + "6664\n", + "6665\n", + "6666\n", + "6667\n", + "6668\n", + "6669\n", + "6670\n", + "6671\n", + "6672\n", + "6673\n", + "6674\n", + "6675\n", + "6676\n", + "6677\n", + "6678\n", + "6679\n", + "6680\n", + "6681\n", + "6682\n", + "6683\n", + "6684\n", + "6685\n", + "6686\n", + "6687\n", + "6688\n", + "6689\n", + "6690\n", + "6691\n", + "6692\n", + "6693\n", + "6694\n", + "6695\n", + "6696\n", + "6697\n", + "6698\n", + "6699\n", + "6700\n", + "6701\n", + "6702\n", + "6703\n", + "6704\n", + "6705\n", + "6706\n", + "6707\n", + "6708\n", + "6709\n", + "6710\n", + "6711\n", + "6712\n", + "6713\n", + "6714\n", + "6715\n", + "6716\n", + "6717\n", + "6718\n", + "6719\n", + "6720\n", + "6721\n", + "6722\n", + "6723\n", + "6724\n", + "6725\n", + "6726\n", + "6727\n", + "6728\n", + "6729\n", + "6730\n", + "6731\n", + "6732\n", + "6733\n", + "6734\n", + "6735\n", + "6736\n", + "6737\n", + "6738\n", + "6739\n", + "6740\n", + "6741\n", + "6742\n", + "6743\n", + "6744\n", + "6745\n", + "6746\n", + "6747\n", + "6748\n", + "6749\n", + "6750\n", + "6751\n", + "6752\n", + "6753\n", + "6754\n", + "6755\n", + "6756\n", + "6757\n", + "6758\n", + "6759\n", + "6760\n", + "6761\n", + "6762\n", + "6763\n", + "6764\n", + "6765\n", + "6766\n", + "6767\n", + "6768\n", + "6769\n", + "6770\n", + "6771\n", + "6772\n", + "6773\n", + "6774\n", + "6775\n", + "6776\n", + "6777\n", + "6778\n", + "6779\n", + "6780\n", + "6781\n", + "6782\n", + "6783\n", + "6784\n", + "6785\n", + "6786\n", + "6787\n", + "6788\n", + "6789\n", + "6790\n", + "6791\n", + "6792\n", + "6793\n", + "6794\n", + "6795\n", + "6796\n", + "6797\n", + "6798\n", + "6799\n", + "6800\n", + "6801\n", + "6802\n", + "6803\n", + "6804\n", + "6805\n", + "6806\n", + "6807\n", + "6808\n", + "6809\n", + "6810\n", + "6811\n", + "6812\n", + "6813\n", + "6814\n", + "6815\n", + "6816\n", + "6817\n", + "6818\n", + "6819\n", + "6820\n", + "6821\n", + "6822\n", + "6823\n", + "6824\n", + "6825\n", + "6826\n", + "6827\n", + "6828\n", + "6829\n", + "6830\n", + "6831\n", + "6832\n", + "6833\n", + "6834\n", + "6835\n", + "6836\n", + "6837\n", + "6838\n", + "6839\n", + "6840\n", + "6841\n", + "6842\n", + "6843\n", + "6844\n", + "6845\n", + "6846\n", + "6847\n", + "6848\n", + "6849\n", + "6850\n", + "6851\n", + "6852\n", + "6853\n", + "6854\n", + "6855\n", + "6856\n", + "6857\n", + "6858\n", + "6859\n", + "6860\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6861\n", + "6862\n", + "6863\n", + "6864\n", + "6865\n", + "6866\n", + "6867\n", + "6868\n", + "6869\n", + "6870\n", + "6871\n", + "6872\n", + "6873\n", + "6874\n", + "6875\n", + "6876\n", + "6877\n", + "6878\n", + "6879\n", + "6880\n", + "6881\n", + "6882\n", + "6883\n", + "6884\n", + "6885\n", + "6886\n", + "6887\n", + "6888\n", + "6889\n", + "6890\n", + "6891\n", + "6892\n", + "6893\n", + "6894\n", + "6895\n", + "6896\n", + "6897\n", + "6898\n", + "6899\n", + "6900\n", + "6901\n", + "6902\n", + "6903\n", + "6904\n", + "6905\n", + "6906\n", + "6907\n", + "6908\n", + "6909\n", + "6910\n", + "6911\n", + "6912\n", + "6913\n", + "6914\n", + "6915\n", + "6916\n", + "6917\n", + "6918\n", + "6919\n", + "6920\n", + "6921\n", + "6922\n", + "6923\n", + "6924\n", + "6925\n", + "6926\n", + "6927\n", + "6928\n", + "6929\n", + "6930\n", + "6931\n", + "6932\n", + "6933\n", + "6934\n", + "6935\n", + "6936\n", + "6937\n", + "6938\n", + "6939\n", + "6940\n", + "6941\n", + "6942\n", + "6943\n", + "6944\n", + "6945\n", + "6946\n", + "6947\n", + "6948\n", + "6949\n", + "6950\n", + "6951\n", + "6952\n", + "6953\n", + "6954\n", + "6955\n", + "6956\n", + "6957\n", + "6958\n", + "6959\n", + "6960\n", + "6961\n", + "6962\n", + "6963\n", + "6964\n", + "6965\n", + "6966\n", + "6967\n", + "6968\n", + "6969\n", + "6970\n", + "6971\n", + "6972\n", + "6973\n", + "6974\n", + "6975\n", + "6976\n", + "6977\n", + "6978\n", + "6979\n", + "6980\n", + "6981\n", + "6982\n", + "6983\n", + "6984\n", + "6985\n", + "6986\n", + "6987\n", + "6988\n", + "6989\n", + "6990\n", + "6991\n", + "6992\n", + "6993\n", + "6994\n", + "6995\n", + "6996\n", + "6997\n", + "6998\n", + "6999\n", + "7000\n", + "7001\n", + "7002\n", + "7003\n", + "7004\n", + "7005\n", + "7006\n", + "7007\n", + "7008\n", + "7009\n", + "7010\n", + "7011\n", + "7012\n", + "7013\n", + "7014\n", + "7015\n", + "7016\n", + "7017\n", + "7018\n", + "7019\n", + "7020\n", + "7021\n", + "7022\n", + "7023\n", + "7024\n", + "7025\n", + "7026\n", + "7027\n", + "7028\n", + "7029\n", + "7030\n", + "7031\n", + "7032\n", + "7033\n", + "7034\n", + "7035\n", + "7036\n", + "7037\n", + "7038\n", + "7039\n", + "7040\n", + "7041\n", + "7042\n", + "7043\n", + "7044\n", + "7045\n", + "7046\n", + "7047\n", + "7048\n", + "7049\n", + "7050\n", + "7051\n", + "7052\n", + "7053\n", + "7054\n", + "7055\n", + "7056\n", + "7057\n", + "7058\n", + "7059\n", + "7060\n", + "7061\n", + "7062\n", + "7063\n", + "7064\n", + "7065\n", + "7066\n", + "7067\n", + "7068\n", + "7069\n", + "7070\n", + "7071\n", + "7072\n", + "7073\n", + "7074\n", + "7075\n", + "7076\n", + "7077\n", + "7078\n", + "7079\n", + "7080\n", + "7081\n", + "7082\n", + "7083\n", + "7084\n", + "7085\n", + "7086\n", + "7087\n", + "7088\n", + "7089\n", + "7090\n", + "7091\n", + "7092\n", + "7093\n", + "7094\n", + "7095\n", + "7096\n", + "7097\n", + "7098\n", + "7099\n", + "7100\n", + "7101\n", + "7102\n", + "7103\n", + "7104\n", + "7105\n", + "7106\n", + "7107\n", + "7108\n", + "7109\n", + "7110\n", + "7111\n", + "7112\n", + "7113\n", + "7114\n", + "7115\n", + "7116\n", + "7117\n", + "7118\n", + "7119\n", + "7120\n", + "7121\n", + "7122\n", + "7123\n", + "7124\n", + "7125\n", + "7126\n", + "7127\n", + "7128\n", + "7129\n", + "7130\n", + "7131\n", + "7132\n", + "7133\n", + "7134\n", + "7135\n", + "7136\n", + "7137\n", + "7138\n", + "7139\n", + "7140\n", + "7141\n", + "7142\n", + "7143\n", + "7144\n", + "7145\n", + "7146\n", + "7147\n", + "7148\n", + "7149\n", + "7150\n", + "7151\n", + "7152\n", + "7153\n", + "7154\n", + "7155\n", + "7156\n", + "7157\n", + "7158\n", + "7159\n", + "7160\n", + "7161\n", + "7162\n", + "7163\n", + "7164\n", + "7165\n", + "7166\n", + "7167\n", + "7168\n", + "7169\n", + "7170\n", + "7171\n", + "7172\n", + "7173\n", + "7174\n", + "7175\n", + "7176\n", + "7177\n", + "7178\n", + "7179\n", + "7180\n", + "7181\n", + "7182\n", + "7183\n", + "7184\n", + "7185\n", + "7186\n", + "7187\n", + "7188\n", + "7189\n", + "7190\n", + "7191\n", + "7192\n", + "7193\n", + "7194\n", + "7195\n", + "7196\n", + "7197\n", + "7198\n", + "7199\n", + "7200\n", + "7201\n", + "7202\n", + "7203\n", + "7204\n", + "7205\n", + "7206\n", + "7207\n", + "7208\n", + "7209\n", + "7210\n", + "7211\n", + "7212\n", + "7213\n", + "7214\n", + "7215\n", + "7216\n", + "7217\n", + "7218\n", + "7219\n", + "7220\n", + "7221\n", + "7222\n", + "7223\n", + "7224\n", + "7225\n", + "7226\n", + "7227\n", + "7228\n", + "7229\n", + "7230\n", + "7231\n", + "7232\n", + "7233\n", + "7234\n", + "7235\n", + "7236\n", + "7237\n", + "7238\n", + "7239\n", + "7240\n", + "7241\n", + "7242\n", + "7243\n", + "7244\n", + "7245\n", + "7246\n", + "7247\n", + "7248\n", + "7249\n", + "7250\n", + "7251\n", + "7252\n", + "7253\n", + "7254\n", + "7255\n", + "7256\n", + "7257\n", + "7258\n", + "7259\n", + "7260\n", + "7261\n", + "7262\n", + "7263\n", + "7264\n", + "7265\n", + "7266\n", + "7267\n", + "7268\n", + "7269\n", + "7270\n", + "7271\n", + "7272\n", + "7273\n", + "7274\n", + "7275\n", + "7276\n", + "7277\n", + "7278\n", + "7279\n", + "7280\n", + "7281\n", + "7282\n", + "7283\n", + "7284\n", + "7285\n", + "7286\n", + "7287\n", + "7288\n", + "7289\n", + "7290\n", + "7291\n", + "7292\n", + "7293\n", + "7294\n", + "7295\n", + "7296\n", + "7297\n", + "7298\n", + "7299\n", + "7300\n", + "7301\n", + "7302\n", + "7303\n", + "7304\n", + "7305\n", + "7306\n", + "7307\n", + "7308\n", + "7309\n", + "7310\n", + "7311\n", + "7312\n", + "7313\n", + "7314\n", + "7315\n", + "7316\n", + "7317\n", + "7318\n", + "7319\n", + "7320\n", + "7321\n", + "7322\n", + "7323\n", + "7324\n", + "7325\n", + "7326\n", + "7327\n", + "7328\n", + "7329\n", + "7330\n", + "7331\n", + "7332\n", + "7333\n", + "7334\n", + "7335\n", + "7336\n", + "7337\n", + "7338\n", + "7339\n", + "7340\n", + "7341\n", + "7342\n", + "7343\n", + "7344\n", + "7345\n", + "7346\n", + "7347\n", + "7348\n", + "7349\n", + "7350\n", + "7351\n", + "7352\n", + "7353\n", + "7354\n", + "7355\n", + "7356\n", + "7357\n", + "7358\n", + "7359\n", + "7360\n", + "7361\n", + "7362\n", + "7363\n", + "7364\n", + "7365\n", + "7366\n", + "7367\n", + "7368\n", + "7369\n", + "7370\n", + "7371\n", + "7372\n", + "7373\n", + "7374\n", + "7375\n", + "7376\n", + "7377\n", + "7378\n", + "7379\n", + "7380\n", + "7381\n", + "7382\n", + "7383\n", + "7384\n", + "7385\n", + "7386\n", + "7387\n", + "7388\n", + "7389\n", + "7390\n", + "7391\n", + "7392\n", + "7393\n", + "7394\n", + "7395\n", + "7396\n", + "7397\n", + "7398\n", + "7399\n", + "7400\n", + "7401\n", + "7402\n", + "7403\n", + "7404\n", + "7405\n", + "7406\n", + "7407\n", + "7408\n", + "7409\n", + "7410\n", + "7411\n", + "7412\n", + "7413\n", + "7414\n", + "7415\n", + "7416\n", + "7417\n", + "7418\n", + "7419\n", + "7420\n", + "7421\n", + "7422\n", + "7423\n", + "7424\n", + "7425\n", + "7426\n", + "7427\n", + "7428\n", + "7429\n", + "7430\n", + "7431\n", + "7432\n", + "7433\n", + "7434\n", + "7435\n", + "7436\n", + "7437\n", + "7438\n", + "7439\n", + "7440\n", + "7441\n", + "7442\n", + "7443\n", + "7444\n", + "7445\n", + "7446\n", + "7447\n", + "7448\n", + "7449\n", + "7450\n", + "7451\n", + "7452\n", + "7453\n", + "7454\n", + "7455\n", + "7456\n", + "7457\n", + "7458\n", + "7459\n", + "7460\n", + "7461\n", + "7462\n", + "7463\n", + "7464\n", + "7465\n", + "7466\n", + "7467\n", + "7468\n", + "7469\n", + "7470\n", + "7471\n", + "7472\n", + "7473\n", + "7474\n", + "7475\n", + "7476\n", + "7477\n", + "7478\n", + "7479\n", + "7480\n", + "7481\n", + "7482\n", + "7483\n", + "7484\n", + "7485\n", + "7486\n", + "7487\n", + "7488\n", + "7489\n", + "7490\n", + "7491\n", + "7492\n", + "7493\n", + "7494\n", + "7495\n", + "7496\n", + "7497\n", + "7498\n", + "7499\n", + "7500\n", + "7501\n", + "7502\n", + "7503\n", + "7504\n", + "7505\n", + "7506\n", + "7507\n", + "7508\n", + "7509\n", + "7510\n", + "7511\n", + "7512\n", + "7513\n", + "7514\n", + "7515\n", + "7516\n", + "7517\n", + "7518\n", + "7519\n", + "7520\n", + "7521\n", + "7522\n", + "7523\n", + "7524\n", + "7525\n", + "7526\n", + "7527\n", + "7528\n", + "7529\n", + "7530\n", + "7531\n", + "7532\n", + "7533\n", + "7534\n", + "7535\n", + "7536\n", + "7537\n", + "7538\n", + "7539\n", + "7540\n", + "7541\n", + "7542\n", + "7543\n", + "7544\n", + "7545\n", + "7546\n", + "7547\n", + "7548\n", + "7549\n", + "7550\n", + "7551\n", + "7552\n", + "7553\n", + "7554\n", + "7555\n", + "7556\n", + "7557\n", + "7558\n", + "7559\n", + "7560\n", + "7561\n", + "7562\n", + "7563\n", + "7564\n", + "7565\n", + "7566\n", + "7567\n", + "7568\n", + "7569\n", + "7570\n", + "7571\n", + "7572\n", + "7573\n", + "7574\n", + "7575\n", + "7576\n", + "7577\n", + "7578\n", + "7579\n", + "7580\n", + "7581\n", + "7582\n", + "7583\n", + "7584\n", + "7585\n", + "7586\n", + "7587\n", + "7588\n", + "7589\n", + "7590\n", + "7591\n", + "7592\n", + "7593\n", + "7594\n", + "7595\n", + "7596\n", + "7597\n", + "7598\n", + "7599\n", + "7600\n", + "7601\n", + "7602\n", + "7603\n", + "7604\n", + "7605\n", + "7606\n", + "7607\n", + "7608\n", + "7609\n", + "7610\n", + "7611\n", + "7612\n", + "7613\n", + "7614\n", + "7615\n", + "7616\n", + "7617\n", + "7618\n", + "7619\n", + "7620\n", + "7621\n", + "7622\n", + "7623\n", + "7624\n", + "7625\n", + "7626\n", + "7627\n", + "7628\n", + "7629\n", + "7630\n", + "7631\n", + "7632\n", + "7633\n", + "7634\n", + "7635\n", + "7636\n", + "7637\n", + "7638\n", + "7639\n", + "7640\n", + "7641\n", + "7642\n", + "7643\n", + "7644\n", + "7645\n", + "7646\n", + "7647\n", + "7648\n", + "7649\n", + "7650\n", + "7651\n", + "7652\n", + "7653\n", + "7654\n", + "7655\n", + "7656\n", + "7657\n", + "7658\n", + "7659\n", + "7660\n", + "7661\n", + "7662\n", + "7663\n", + "7664\n", + "7665\n", + "7666\n", + "7667\n", + "7668\n", + "7669\n", + "7670\n", + "7671\n", + "7672\n", + "7673\n", + "7674\n", + "7675\n", + "7676\n", + "7677\n", + "7678\n", + "7679\n", + "7680\n", + "7681\n", + "7682\n", + "7683\n", + "7684\n", + "7685\n", + "7686\n", + "7687\n", + "7688\n", + "7689\n", + "7690\n", + "7691\n", + "7692\n", + "7693\n", + "7694\n", + "7695\n", + "7696\n", + "7697\n", + "7698\n", + "7699\n", + "7700\n", + "7701\n", + "7702\n", + "7703\n", + "7704\n", + "7705\n", + "7706\n", + "7707\n", + "7708\n", + "7709\n", + "7710\n", + "7711\n", + "7712\n", + "7713\n", + "7714\n", + "7715\n", + "7716\n", + "7717\n", + "7718\n", + "7719\n", + "7720\n", + "7721\n", + "7722\n", + "7723\n", + "7724\n", + "7725\n", + "7726\n", + "7727\n", + "7728\n", + "7729\n", + "7730\n", + "7731\n", + "7732\n", + "7733\n", + "7734\n", + "7735\n", + "7736\n", + "7737\n", + "7738\n", + "7739\n", + "7740\n", + "7741\n", + "7742\n", + "7743\n", + "7744\n", + "7745\n", + "7746\n", + "7747\n", + "7748\n", + "7749\n", + "7750\n", + "7751\n", + "7752\n", + "7753\n", + "7754\n", + "7755\n", + "7756\n", + "7757\n", + "7758\n", + "7759\n", + "7760\n", + "7761\n", + "7762\n", + "7763\n", + "7764\n", + "7765\n", + "7766\n", + "7767\n", + "7768\n", + "7769\n", + "7770\n", + "7771\n", + "7772\n", + "7773\n", + "7774\n", + "7775\n", + "7776\n", + "7777\n", + "7778\n", + "7779\n", + "7780\n", + "7781\n", + "7782\n", + "7783\n", + "7784\n", + "7785\n", + "7786\n", + "7787\n", + "7788\n", + "7789\n", + "7790\n", + "7791\n", + "7792\n", + "7793\n", + "7794\n", + "7795\n", + "7796\n", + "7797\n", + "7798\n", + "7799\n", + "7800\n", + "7801\n", + "7802\n", + "7803\n", + "7804\n", + "7805\n", + "7806\n", + "7807\n", + "7808\n", + "7809\n", + "7810\n", + "7811\n", + "7812\n", + "7813\n", + "7814\n", + "7815\n", + "7816\n", + "7817\n", + "7818\n", + "7819\n", + "7820\n", + "7821\n", + "7822\n", + "7823\n", + "7824\n", + "7825\n", + "7826\n", + "7827\n", + "7828\n", + "7829\n", + "7830\n", + "7831\n", + "7832\n", + "7833\n", + "7834\n", + "7835\n", + "7836\n", + "7837\n", + "7838\n", + "7839\n", + "7840\n", + "7841\n", + "7842\n", + "7843\n", + "7844\n", + "7845\n", + "7846\n", + "7847\n", + "7848\n", + "7849\n", + "7850\n", + "7851\n", + "7852\n", + "7853\n", + "7854\n", + "7855\n", + "7856\n", + "7857\n", + "7858\n", + "7859\n", + "7860\n", + "7861\n", + "7862\n", + "7863\n", + "7864\n", + "7865\n", + "7866\n", + "7867\n", + "7868\n", + "7869\n", + "7870\n", + "7871\n", + "7872\n", + "7873\n", + "7874\n", + "7875\n", + "7876\n", + "7877\n", + "7878\n", + "7879\n", + "7880\n", + "7881\n", + "7882\n", + "7883\n", + "7884\n", + "7885\n", + "7886\n", + "7887\n", + "7888\n", + "7889\n", + "7890\n", + "7891\n", + "7892\n", + "7893\n", + "7894\n", + "7895\n", + "7896\n", + "7897\n", + "7898\n", + "7899\n", + "7900\n", + "7901\n", + "7902\n", + "7903\n", + "7904\n", + "7905\n", + "7906\n", + "7907\n", + "7908\n", + "7909\n", + "7910\n", + "7911\n", + "7912\n", + "7913\n", + "7914\n", + "7915\n", + "7916\n", + "7917\n", + "7918\n", + "7919\n", + "7920\n", + "7921\n", + "7922\n", + "7923\n", + "7924\n", + "7925\n", + "7926\n", + "7927\n", + "7928\n", + "7929\n", + "7930\n", + "7931\n", + "7932\n", + "7933\n", + "7934\n", + "7935\n", + "7936\n", + "7937\n", + "7938\n", + "7939\n", + "7940\n", + "7941\n", + "7942\n", + "7943\n", + "7944\n", + "7945\n", + "7946\n", + "7947\n", + "7948\n", + "7949\n", + "7950\n", + "7951\n", + "7952\n", + "7953\n", + "7954\n", + "7955\n", + "7956\n", + "7957\n", + "7958\n", + "7959\n", + "7960\n", + "7961\n", + "7962\n", + "7963\n", + "7964\n", + "7965\n", + "7966\n", + "7967\n", + "7968\n", + "7969\n", + "7970\n", + "7971\n", + "7972\n", + "7973\n", + "7974\n", + "7975\n", + "7976\n", + "7977\n", + "7978\n", + "7979\n", + "7980\n", + "7981\n", + "7982\n", + "7983\n", + "7984\n", + "7985\n", + "7986\n", + "7987\n", + "7988\n", + "7989\n", + "7990\n", + "7991\n", + "7992\n", + "7993\n", + "7994\n", + "7995\n", + "7996\n", + "7997\n", + "7998\n", + "7999\n", + "8000\n", + "8001\n", + "8002\n", + "8003\n", + "8004\n", + "8005\n", + "8006\n", + "8007\n", + "8008\n", + "8009\n", + "8010\n", + "8011\n", + "8012\n", + "8013\n", + "8014\n", + "8015\n", + "8016\n", + "8017\n", + "8018\n", + "8019\n", + "8020\n", + "8021\n", + "8022\n", + "8023\n", + "8024\n", + "8025\n", + "8026\n", + "8027\n", + "8028\n", + "8029\n", + "8030\n", + "8031\n", + "8032\n", + "8033\n", + "8034\n", + "8035\n", + "8036\n", + "8037\n", + "8038\n", + "8039\n", + "8040\n", + "8041\n", + "8042\n", + "8043\n", + "8044\n", + "8045\n", + "8046\n", + "8047\n", + "8048\n", + "8049\n", + "8050\n", + "8051\n", + "8052\n", + "8053\n", + "8054\n", + "8055\n", + "8056\n", + "8057\n", + "8058\n", + "8059\n", + "8060\n", + "8061\n", + "8062\n", + "8063\n", + "8064\n", + "8065\n", + "8066\n", + "8067\n", + "8068\n", + "8069\n", + "8070\n", + "8071\n", + "8072\n", + "8073\n", + "8074\n", + "8075\n", + "8076\n", + "8077\n", + "8078\n", + "8079\n", + "8080\n", + "8081\n", + "8082\n", + "8083\n", + "8084\n", + "8085\n", + "8086\n", + "8087\n", + "8088\n", + "8089\n", + "8090\n", + "8091\n", + "8092\n", + "8093\n", + "8094\n", + "8095\n", + "8096\n", + "8097\n", + "8098\n", + "8099\n", + "8100\n", + "8101\n", + "8102\n", + "8103\n", + "8104\n", + "8105\n", + "8106\n", + "8107\n", + "8108\n", + "8109\n", + "8110\n", + "8111\n", + "8112\n", + "8113\n", + "8114\n", + "8115\n", + "8116\n", + "8117\n", + "8118\n", + "8119\n", + "8120\n", + "8121\n", + "8122\n", + "8123\n", + "8124\n", + "8125\n", + "8126\n", + "8127\n", + "8128\n", + "8129\n", + "8130\n", + "8131\n", + "8132\n", + "8133\n", + "8134\n", + "8135\n", + "8136\n", + "8137\n", + "8138\n", + "8139\n", + "8140\n", + "8141\n", + "8142\n", + "8143\n", + "8144\n", + "8145\n", + "8146\n", + "8147\n", + "8148\n", + "8149\n", + "8150\n", + "8151\n", + "8152\n", + "8153\n", + "8154\n", + "8155\n", + "8156\n", + "8157\n", + "8158\n", + "8159\n", + "8160\n", + "8161\n", + "8162\n", + "8163\n", + "8164\n", + "8165\n", + "8166\n", + "8167\n", + "8168\n", + "8169\n", + "8170\n", + "8171\n", + "8172\n", + "8173\n", + "8174\n", + "8175\n", + "8176\n", + "8177\n", + "8178\n", + "8179\n", + "8180\n", + "8181\n", + "8182\n", + "8183\n", + "8184\n", + "8185\n", + "8186\n", + "8187\n", + "8188\n", + "8189\n", + "8190\n", + "8191\n", + "8192\n", + "8193\n", + "8194\n", + "8195\n", + "8196\n", + "8197\n", + "8198\n", + "8199\n", + "8200\n", + "8201\n", + "8202\n", + "8203\n", + "8204\n", + "8205\n", + "8206\n", + "8207\n", + "8208\n", + "8209\n", + "8210\n", + "8211\n", + "8212\n", + "8213\n", + "8214\n", + "8215\n", + "8216\n", + "8217\n", + "8218\n", + "8219\n", + "8220\n", + "8221\n", + "8222\n", + "8223\n", + "8224\n", + "8225\n", + "8226\n", + "8227\n", + "8228\n", + "8229\n", + "8230\n", + "8231\n", + "8232\n", + "8233\n", + "8234\n", + "8235\n", + "8236\n", + "8237\n", + "8238\n", + "8239\n", + "8240\n", + "8241\n", + "8242\n", + "8243\n", + "8244\n", + "8245\n", + "8246\n", + "8247\n", + "8248\n", + "8249\n", + "8250\n", + "8251\n", + "8252\n", + "8253\n", + "8254\n", + "8255\n", + "8256\n", + "8257\n", + "8258\n", + "8259\n", + "8260\n", + "8261\n", + "8262\n", + "8263\n", + "8264\n", + "8265\n", + "8266\n", + "8267\n", + "8268\n", + "8269\n", + "8270\n", + "8271\n", + "8272\n", + "8273\n", + "8274\n", + "8275\n", + "8276\n", + "8277\n", + "8278\n", + "8279\n", + "8280\n", + "8281\n", + "8282\n", + "8283\n", + "8284\n", + "8285\n", + "8286\n", + "8287\n", + "8288\n", + "8289\n", + "8290\n", + "8291\n", + "8292\n", + "8293\n", + "8294\n", + "8295\n", + "8296\n", + "8297\n", + "8298\n", + "8299\n", + "8300\n", + "8301\n", + "8302\n", + "8303\n", + "8304\n", + "8305\n", + "8306\n", + "8307\n", + "8308\n", + "8309\n", + "8310\n", + "8311\n", + "8312\n", + "8313\n", + "8314\n", + "8315\n", + "8316\n", + "8317\n", + "8318\n", + "8319\n", + "8320\n", + "8321\n", + "8322\n", + "8323\n", + "8324\n", + "8325\n", + "8326\n", + "8327\n", + "8328\n", + "8329\n", + "8330\n", + "8331\n", + "8332\n", + "8333\n", + "8334\n", + "8335\n", + "8336\n", + "8337\n", + "8338\n", + "8339\n", + "8340\n", + "8341\n", + "8342\n", + "8343\n", + "8344\n", + "8345\n", + "8346\n", + "8347\n", + "8348\n", + "8349\n", + "8350\n", + "8351\n", + "8352\n", + "8353\n", + "8354\n", + "8355\n", + "8356\n", + "8357\n", + "8358\n", + "8359\n", + "8360\n", + "8361\n", + "8362\n", + "8363\n", + "8364\n", + "8365\n", + "8366\n", + "8367\n", + "8368\n", + "8369\n", + "8370\n", + "8371\n", + "8372\n", + "8373\n", + "8374\n", + "8375\n", + "8376\n", + "8377\n", + "8378\n", + "8379\n", + "8380\n", + "8381\n", + "8382\n", + "8383\n", + "8384\n", + "8385\n", + "8386\n", + "8387\n", + "8388\n", + "8389\n", + "8390\n", + "8391\n", + "8392\n", + "8393\n", + "8394\n", + "8395\n", + "8396\n", + "8397\n", + "8398\n", + "8399\n", + "8400\n", + "8401\n", + "8402\n", + "8403\n", + "8404\n", + "8405\n", + "8406\n", + "8407\n", + "8408\n", + "8409\n", + "8410\n", + "8411\n", + "8412\n", + "8413\n", + "8414\n", + "8415\n", + "8416\n", + "8417\n", + "8418\n", + "8419\n", + "8420\n", + "8421\n", + "8422\n", + "8423\n", + "8424\n", + "8425\n", + "8426\n", + "8427\n", + "8428\n", + "8429\n", + "8430\n", + "8431\n", + "8432\n", + "8433\n", + "8434\n", + "8435\n", + "8436\n", + "8437\n", + "8438\n", + "8439\n", + "8440\n", + "8441\n", + "8442\n", + "8443\n", + "8444\n", + "8445\n", + "8446\n", + "8447\n", + "8448\n", + "8449\n", + "8450\n", + "8451\n", + "8452\n", + "8453\n", + "8454\n", + "8455\n", + "8456\n", + "8457\n", + "8458\n", + "8459\n", + "8460\n", + "8461\n", + "8462\n", + "8463\n", + "8464\n", + "8465\n", + "8466\n", + "8467\n", + "8468\n", + "8469\n", + "8470\n", + "8471\n", + "8472\n", + "8473\n", + "8474\n", + "8475\n", + "8476\n", + "8477\n", + "8478\n", + "8479\n", + "8480\n", + "8481\n", + "8482\n", + "8483\n", + "8484\n", + "8485\n", + "8486\n", + "8487\n", + "8488\n", + "8489\n", + "8490\n", + "8491\n", + "8492\n", + "8493\n", + "8494\n", + "8495\n", + "8496\n", + "8497\n", + "8498\n", + "8499\n", + "8500\n", + "8501\n", + "8502\n", + "8503\n", + "8504\n", + "8505\n", + "8506\n", + "8507\n", + "8508\n", + "8509\n", + "8510\n", + "8511\n", + "8512\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8513\n", + "8514\n", + "8515\n", + "8516\n", + "8517\n", + "8518\n", + "8519\n", + "8520\n", + "8521\n", + "8522\n", + "8523\n", + "8524\n", + "8525\n", + "8526\n", + "8527\n", + "8528\n", + "8529\n", + "8530\n", + "8531\n", + "8532\n", + "8533\n", + "8534\n", + "8535\n", + "8536\n", + "8537\n", + "8538\n", + "8539\n", + "8540\n", + "8541\n", + "8542\n", + "8543\n", + "8544\n", + "8545\n", + "8546\n", + "8547\n", + "8548\n", + "8549\n", + "8550\n", + "8551\n", + "8552\n", + "8553\n", + "8554\n", + "8555\n", + "8556\n", + "8557\n", + "8558\n", + "8559\n", + "8560\n", + "8561\n", + "8562\n", + "8563\n", + "8564\n", + "8565\n", + "8566\n", + "8567\n", + "8568\n", + "8569\n", + "8570\n", + "8571\n", + "8572\n", + "8573\n", + "8574\n", + "8575\n", + "8576\n", + "8577\n", + "8578\n", + "8579\n", + "8580\n", + "8581\n", + "8582\n", + "8583\n", + "8584\n", + "8585\n", + "8586\n", + "8587\n", + "8588\n", + "8589\n", + "8590\n", + "8591\n", + "8592\n", + "8593\n", + "8594\n", + "8595\n", + "8596\n", + "8597\n", + "8598\n", + "8599\n", + "8600\n", + "8601\n", + "8602\n", + "8603\n", + "8604\n", + "8605\n", + "8606\n", + "8607\n", + "8608\n", + "8609\n", + "8610\n", + "8611\n", + "8612\n", + "8613\n", + "8614\n", + "8615\n", + "8616\n", + "8617\n", + "8618\n", + "8619\n", + "8620\n", + "8621\n", + "8622\n", + "8623\n", + "8624\n", + "8625\n", + "8626\n", + "8627\n", + "8628\n", + "8629\n", + "8630\n", + "8631\n", + "8632\n", + "8633\n", + "8634\n", + "8635\n", + "8636\n", + "8637\n", + "8638\n", + "8639\n", + "8640\n", + "8641\n", + "8642\n", + "8643\n", + "8644\n", + "8645\n", + "8646\n", + "8647\n", + "8648\n", + "8649\n", + "8650\n", + "8651\n", + "8652\n", + "8653\n", + "8654\n", + "8655\n", + "8656\n", + "8657\n", + "8658\n", + "8659\n", + "8660\n", + "8661\n", + "8662\n", + "8663\n", + "8664\n", + "8665\n", + "8666\n", + "8667\n", + "8668\n", + "8669\n", + "8670\n", + "8671\n", + "8672\n", + "8673\n", + "8674\n", + "8675\n", + "8676\n", + "8677\n", + "8678\n", + "8679\n", + "8680\n", + "8681\n", + "8682\n", + "8683\n", + "8684\n", + "8685\n", + "8686\n", + "8687\n", + "8688\n", + "8689\n", + "8690\n", + "8691\n", + "8692\n", + "8693\n", + "8694\n", + "8695\n", + "8696\n", + "8697\n", + "8698\n", + "8699\n", + "8700\n", + "8701\n", + "8702\n", + "8703\n", + "8704\n", + "8705\n", + "8706\n", + "8707\n", + "8708\n", + "8709\n", + "8710\n", + "8711\n", + "8712\n", + "8713\n", + "8714\n", + "8715\n", + "8716\n", + "8717\n", + "8718\n", + "8719\n", + "8720\n", + "8721\n", + "8722\n", + "8723\n", + "8724\n", + "8725\n", + "8726\n", + "8727\n", + "8728\n", + "8729\n", + "8730\n", + "8731\n", + "8732\n", + "8733\n", + "8734\n", + "8735\n", + "8736\n", + "8737\n", + "8738\n", + "8739\n", + "8740\n", + "8741\n", + "8742\n", + "8743\n", + "8744\n", + "8745\n", + "8746\n", + "8747\n", + "8748\n", + "8749\n", + "8750\n", + "8751\n", + "8752\n", + "8753\n", + "8754\n", + "8755\n", + "8756\n", + "8757\n", + "8758\n", + "8759\n", + "8760\n", + "8761\n", + "8762\n", + "8763\n", + "8764\n", + "8765\n", + "8766\n", + "8767\n", + "8768\n", + "8769\n", + "8770\n", + "8771\n", + "8772\n", + "8773\n", + "8774\n", + "8775\n", + "8776\n", + "8777\n", + "8778\n", + "8779\n", + "8780\n", + "8781\n", + "8782\n", + "8783\n", + "8784\n", + "8785\n", + "8786\n", + "8787\n", + "8788\n", + "8789\n", + "8790\n", + "8791\n", + "8792\n", + "8793\n", + "8794\n", + "8795\n", + "8796\n", + "8797\n", + "8798\n", + "8799\n", + "8800\n", + "8801\n", + "8802\n", + "8803\n", + "8804\n", + "8805\n", + "8806\n", + "8807\n", + "8808\n", + "8809\n", + "8810\n", + "8811\n", + "8812\n", + "8813\n", + "8814\n", + "8815\n", + "8816\n", + "8817\n", + "8818\n", + "8819\n", + "8820\n", + "8821\n", + "8822\n", + "8823\n", + "8824\n", + "8825\n", + "8826\n", + "8827\n", + "8828\n", + "8829\n", + "8830\n", + "8831\n", + "8832\n", + "8833\n", + "8834\n", + "8835\n", + "8836\n", + "8837\n", + "8838\n", + "8839\n", + "8840\n", + "8841\n", + "8842\n", + "8843\n", + "8844\n", + "8845\n", + "8846\n", + "8847\n", + "8848\n", + "8849\n", + "8850\n", + "8851\n", + "8852\n", + "8853\n", + "8854\n", + "8855\n", + "8856\n", + "8857\n", + "8858\n", + "8859\n", + "8860\n", + "8861\n", + "8862\n", + "8863\n", + "8864\n", + "8865\n", + "8866\n", + "8867\n", + "8868\n", + "8869\n", + "8870\n", + "8871\n", + "8872\n", + "8873\n", + "8874\n", + "8875\n", + "8876\n", + "8877\n", + "8878\n", + "8879\n", + "8880\n", + "8881\n", + "8882\n", + "8883\n", + "8884\n", + "8885\n", + "8886\n", + "8887\n", + "8888\n", + "8889\n", + "8890\n", + "8891\n", + "8892\n", + "8893\n", + "8894\n", + "8895\n", + "8896\n", + "8897\n", + "8898\n", + "8899\n", + "8900\n", + "8901\n", + "8902\n", + "8903\n", + "8904\n", + "8905\n", + "8906\n", + "8907\n", + "8908\n", + "8909\n", + "8910\n", + "8911\n", + "8912\n", + "8913\n", + "8914\n", + "8915\n", + "8916\n", + "8917\n", + "8918\n", + "8919\n", + "8920\n", + "8921\n", + "8922\n", + "8923\n", + "8924\n", + "8925\n", + "8926\n", + "8927\n", + "8928\n", + "8929\n", + "8930\n", + "8931\n", + "8932\n", + "8933\n", + "8934\n", + "8935\n", + "8936\n", + "8937\n", + "8938\n", + "8939\n", + "8940\n", + "8941\n", + "8942\n", + "8943\n", + "8944\n", + "8945\n", + "8946\n", + "8947\n", + "8948\n", + "8949\n", + "8950\n", + "8951\n", + "8952\n", + "8953\n", + "8954\n", + "8955\n", + "8956\n", + "8957\n", + "8958\n", + "8959\n", + "8960\n", + "8961\n", + "8962\n", + "8963\n", + "8964\n", + "8965\n", + "8966\n", + "8967\n", + "8968\n", + "8969\n", + "8970\n", + "8971\n", + "8972\n", + "8973\n", + "8974\n", + "8975\n", + "8976\n", + "8977\n", + "8978\n", + "8979\n", + "8980\n", + "8981\n", + "8982\n", + "8983\n", + "8984\n", + "8985\n", + "8986\n", + "8987\n", + "8988\n", + "8989\n", + "8990\n", + "8991\n", + "8992\n", + "8993\n", + "8994\n", + "8995\n", + "8996\n", + "8997\n", + "8998\n", + "8999\n", + "9000\n", + "9001\n", + "9002\n", + "9003\n", + "9004\n", + "9005\n", + "9006\n", + "9007\n", + "9008\n", + "9009\n", + "9010\n", + "9011\n", + "9012\n", + "9013\n", + "9014\n", + "9015\n", + "9016\n", + "9017\n", + "9018\n", + "9019\n", + "9020\n", + "9021\n", + "9022\n", + "9023\n", + "9024\n", + "9025\n", + "9026\n", + "9027\n", + "9028\n", + "9029\n", + "9030\n", + "9031\n", + "9032\n", + "9033\n", + "9034\n", + "9035\n", + "9036\n", + "9037\n", + "9038\n", + "9039\n", + "9040\n", + "9041\n", + "9042\n", + "9043\n", + "9044\n", + "9045\n", + "9046\n", + "9047\n", + "9048\n", + "9049\n", + "9050\n", + "9051\n", + "9052\n", + "9053\n", + "9054\n", + "9055\n", + "9056\n", + "9057\n", + "9058\n", + "9059\n", + "9060\n", + "9061\n", + "9062\n", + "9063\n", + "9064\n", + "9065\n", + "9066\n", + "9067\n", + "9068\n", + "9069\n", + "9070\n", + "9071\n", + "9072\n", + "9073\n", + "9074\n", + "9075\n", + "9076\n", + "9077\n", + "9078\n", + "9079\n", + "9080\n", + "9081\n", + "9082\n", + "9083\n", + "9084\n", + "9085\n", + "9086\n", + "9087\n", + "9088\n", + "9089\n", + "9090\n", + "9091\n", + "9092\n", + "9093\n", + "9094\n", + "9095\n", + "9096\n", + "9097\n", + "9098\n", + "9099\n", + "9100\n", + "9101\n", + "9102\n", + "9103\n", + "9104\n", + "9105\n", + "9106\n", + "9107\n", + "9108\n", + "9109\n", + "9110\n", + "9111\n", + "9112\n", + "9113\n", + "9114\n", + "9115\n", + "9116\n", + "9117\n", + "9118\n", + "9119\n", + "9120\n", + "9121\n", + "9122\n", + "9123\n", + "9124\n", + "9125\n", + "9126\n", + "9127\n", + "9128\n", + "9129\n", + "9130\n", + "9131\n" + ] + } + ], + "source": [ + "index = 0\n", + "for aindex in range(0,10):\n", + " for song_index in range(0,10):\n", + " temp = artist[aindex].songs[song_index].lyrics.split('\\n')\n", + " song_len = len(temp)\n", + " for sindex in range(0,song_len):\n", + " df.loc[index,'lyrics']= temp[sindex]\n", + " df.loc[index,'artist']= artist[aindex].name\n", + " index = index + 1\n", + " print(index)" + ] + }, + { + "cell_type": "code", + "execution_count": 182, + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "def text_cleaner(text):\n", + " # Visual inspection identifies a form of punctuation spaCy does not\n", + " # recognize: the double dash '--'. Better get rid of it now!\n", + " text = re.sub(r'--','',text)\n", + " text = re.sub(\"[\\[].*?[\\]]\", \"\", text)\n", + " #text = re.sub(')','',text)\n", + " # text = re.sub('(','',text)\n", + " text = re.sub(',','',text)\n", + " text = re.sub(']','',text)\n", + " text = re.sub('}','',text)\n", + " text = re.sub('{','',text)\n", + " #text = re.sub(\"'s\",text)\n", + " text = ' '.join(text.split())\n", + " return text" + ] + }, + { + "cell_type": "code", + "execution_count": 183, + "metadata": {}, + "outputs": [], + "source": [ + "import nltk" + ] + }, + { + "cell_type": "code", + "execution_count": 184, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.tokenize import word_tokenize" + ] + }, + { + "cell_type": "code", + "execution_count": 210, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Mic Check When I was led to you I knew you were the one for me Come through dig the sound I swear the whole world could feel you MC Crowd around I used to cop a lot but never copped no drop Hold mics like pony tails tied in bobbalobs Stop and stick around come through and dig the sound Of the fly brown 6-0 sicko psycho who throws his dick around Bound to go three-plat came to destroy rap It\\'s a intricate plot of a b-boy strap Femstat cats get kidnapped Then release a statement to the press let the rest know who did that Metal Fist terrorists claim responsibility Broken household name usually said in hostility Um... what is MF? You silly I\\'d like to take \"Means to the End\" for two milli\\' \"Doo-doo-doo-doo-doo!\" That\\'s a audio daily double Rappers need to fall off just to save me the trouble yo Watch your own back came in and go out alone black Stay in the zone—turn H2O to Cognac On Doomsday! ever since the womb ‘til I\\'m back where my brother went that\\'s what my tomb will say Right above my government; Dumile Either unmarked or engraved hey who\\'s to say? I wrote this one in B.C. D.C. O-section If you don\\'t believe me go get bagged and check then Cell number 17 up under the top bunk I say this not to be mean wish bad luck or pop junk Pop the trunk on Cee Cipher Punk leave him left scraped God forbid if there ain\\'t no escape blame MF tape Definition \"super-villain\": a killer who love children One who is well-skilled in destruction as well as building While Sidney Sheldon teaches the trife to be trifer I\\'m trading science fiction with my man the live lifer A pied piper holler a rhyme a dollar and a dime Do his thing ring around the white collar crime Get out my face askin\\' ‘bout my case need toothpaste Fresher mint monkey-style nigga get dentadent And dope fiends still in they teens shook niggas turn witness Real mens mind their own business That\\'s the difference between sissy-pissy rappers that\\'s double-dutch How come I hold the microphone double-clutch C.O.\\'s make rounds never have ‘ox found On shakedown lock-down wet dreams of Fox\\' Brown On Doomsday! Ever since the womb ‘til I\\'m back where my brother went That\\'s what my tomb will say Right above my government; Dumile Either unmarked or engraved hey who\\'s to say? Doomsday Ever since the womb ‘til I\\'m back to the essence Read it off the tomb Either engraved or unmarked grave who\\'s to say? Pass the mic like \"Pass the peas like they used to say\" Some M-er F-ers don\\'t like how Sally walk I\\'ll tell y\\'all fools it\\'s hella cool how ladies from Cali talk Never let her interfere with the Yeti ghetto slang Nicknames of nimble and tip of nipple metal fang Known amongst hoes for the bang-bang Known amongst foes for flow without no talking orangutans Only gin and Tang Guzzled out a rusty tin can me and this mic is like yin and yang Clang! Crime don\\'t pay listen youth It\\'s like me holding up the line at the kissing booth I took her back to the truck she was uncouth Spittin\\' all out the sunroof through her missing tooth But then she has a sexy voice sound like Jazzy Joyce So I turned it up faster than a speeding knife Strong enough to please a wife Able to drop today\\'s math in the 48 keys of life Cut the crap far as rap Touch the mic get the same thing a Arab will do to you for stealing What the Devil? He\\'s on another level It\\'s a word! No a name! MF - the Super-Villain! When I was led to you I knew you were the one for me I swear the whole world could feel you MC'" + ] + }, + "execution_count": 210, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text_cleaner(df_paras.loc[0,'lyrics'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Vectorize Original Sentences" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 710, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of features: 3002\n", + "Original sentence: lyrics artist\n", + "6254 I need fifty feet when my performance starts Pharoahe Monch\n", + "2731 The nigga runs a neighborhood newsstand GZA\n", + "2631 On the reel to reel it wasn't from a tough city GZA\n", + "7575 Stimulant and sedative, original repetitive Yasiin Bey\n", + "4782 Say what's up to Herb, Ice and Bullet Nas\n", + "5358 Attached to the festive batch of city goblins Aesop Rock\n", + "3214 [Verse 2: Eminem] Eminem\n", + "1343 Call you back— Kendrick Lamar\n", + "917 Be humble (Lil' bitch, hol' up, bitch) Kendrick Lamar\n", + "3476 We need 3 Stacks ASAP and bring Masta Ace back Eminem\n", + "7323 [Outro] Yasiin Bey\n", + "3865 (And go berserk) all night long Eminem\n", + "6436 I'm about to flip in this bitch like Dominique... Pharoahe Monch\n", + "7778 Hold me, like you know I'll never go Yasiin Bey\n", + "3147 You're fuckin' salty Eminem\n", + "85 Touch the mic, get the same thing a Arab will ... MF DOOM\n", + "4209 Finally pulled it back and saw three bullets c... Nas\n", + "8076 Yasiin Bey\n", + "2038 It's a wide entrance, small exit like a funnel GZA\n", + "8281 Put on by my family brought to the academy Ghostface Killah\n", + "2095 On how they raped the continents and lynched t... GZA\n", + "502 Crooked eye mold nerd geek with a cold heart MF DOOM\n", + "6109 Actually, it's pragmatic capitalism for actors... Pharoahe Monch\n", + "5348 The result's a lowlife countin' on one hand wh... Aesop Rock\n", + "4126 Non-threatening blond fairy cornball takin' sh... Eminem\n", + "8985 Give me the the fifty thou, small bills, my go... Ghostface Killah\n", + "7058 I died a hundred times André 3000\n", + "5848 Aesop Rock\n", + "1633 [Produced by Scoop DeVille & Sounwave] Kendrick Lamar\n", + "1469 [Verse 3: Jay Rock] Kendrick Lamar\n", + "... ... ...\n", + "3219 Sometimes I wonder where these thoughts spawn ... Eminem\n", + "659 And I get lost MF DOOM\n", + "797 [Verse] MF DOOM\n", + "755 By the end of the night spazz like shazbot MF DOOM\n", + "8291 Yes the shit is raw coming at your door Ghostface Killah\n", + "2496 Punchlines, that's unstoppable GZA\n", + "7599 Clinton to Cadman, Church Ave to Clarendon Yasiin Bey\n", + "1871 (Another world premiere!) Kendrick Lamar\n", + "2046 Now on with the mental plane to spark the brai... GZA\n", + "7877 Phenomenon Yasiin Bey\n", + "4851 Where he pumped his loose cracks Nas\n", + "5072 Then call the crew to get live too, with Swoop Nas\n", + "2163 That's right, you corny-ass GZA\n", + "6036 Y'all know the name Pharoahe Monch\n", + "6921 I'm in it for good André 3000\n", + "6216 Two choices, either squeeze or peel, now that'... Pharoahe Monch\n", + "537 My plan is foolproof, but just in case MF DOOM\n", + "2897 With Monica Lewinsky feelin' on his nutsack Eminem\n", + "7768 [Intro] Yasiin Bey\n", + "2222 GZA\n", + "2599 Product must be sold to you GZA\n", + "705 The key, plucked it off the mayor MF DOOM\n", + "3468 Ha-ta-ta ba-ta-ta, why don't we make a bunch of Eminem\n", + "6744 Said, it's my desire, yes it is, yeah Pharoahe Monch\n", + "5874 Don't need no help, all by myself Aesop Rock\n", + "4373 Or make records to disrespect me, blatant or i... Nas\n", + "7891 Even though you know I will Yasiin Bey\n", + "4859 Mistakes happen, so take heed, never bust up Nas\n", + "3264 You're tryin' to save me, stop holdin' your br... Eminem\n", + "2732 A wild Middle Eastern—bomb specialist GZA\n", + "\n", + "[6848 rows x 2 columns]\n", + "Tf_idf vector: [{'clap': 0.3935867826722984, 'trap': 0.4012804260700612, 'happen': 0.4012804260700612, 'til': 0.31931702125639333, 'thinking': 0.3935867826722984, 'em': 0.5159104265794037}, {'spike': 0.5767176428596392, 'lay': 0.474991220756435, 'strip': 0.5767176428596392, 'shit': 0.3304192201327807}, {'bridge': 0.5761424954236959, 'killah': 0.5829265198050685, 'ghostface': 0.5729367307782839}, {'love': 1.0}, {'molly': 0.5990498862957734, 'card': 0.540930178289473, 'team': 0.5317707009535272, 'like': 0.256424838017175}, {'hook': 1.0}, {'forever': 0.5803946566851262, 'lives': 0.6134289258572024, 'gun': 0.5355809886590762}, {}, {'lay': 0.8873161611939876, 'like': 0.4611616095079528}, {}, {'driver': 0.7309075364672349, 'dj': 0.6824765000609163}, {'skit': 1.0}, {'def': 1.0}, {'stage': 0.8477420996164606, 'fuck': 0.5304086467412414}, {'blaze': 0.7418237228092304, 'johnny': 0.6705949330836419}, {'god': 0.7032497484901488, 'hook': 0.71094288887965}, {'setting': 0.5485626064330456, 'park': 0.49534116488298036, 'deal': 0.4564573666489868, 'blunt': 0.49534116488298036}, {'killing': 1.0}, {'bet': 0.5743972046094639, 'worth': 0.6165368719746143, 'spit': 0.538470181934517}, {'law': 0.5442021827508281, 'rules': 0.5442021827508281, 'bend': 0.5442021827508281, 'fuck': 0.33396399935876775}, {'worshipped': 0.6550698793066405, 'determined': 0.6550698793066405, 'cause': 0.37651946357441735}, {'god': 1.0}, {'regular': 0.5432437973051293, 'bars': 0.5432437973051293, 'cell': 0.4964100541547826, 'face': 0.4041650795319321}, {'benz': 0.5074916629011202, 'brand': 0.5004881067656772, 'dont': 0.4578226006745757, 'new': 0.3802869874092113, 'need': 0.3711389774609483}, {}, {'chorus': 1.0}, {'far': 0.6589625946696949, 'thought': 0.5673963193742844, 'make': 0.4937911659666445}, {'ooh': 1.0}, {'win': 0.8409449380529745, 'serve': 0.44659471900547637, 'just': 0.23837013972145496, 'like': 0.19116601321540566}, {'gza': 0.817049897585536, 'verse': 0.5765669647625201}, {'crawl': 0.7931874368197629, 'baby': 0.6089775776424736}, {'respect': 0.6533531512809236, 'word': 0.5225672739274966, 'ho': 0.5477710323951708}, {'pockets': 0.48908594474412065, 'designer': 0.5509646903495559, 'stay': 0.41005139230453513, 'low': 0.4345148191182957, 'cause': 0.31668213760405883}, {'bridge': 1.0}, {'better': 0.5616469514642308, 'let': 0.5081990479447196, 'moment': 0.652906141477484}, {'gun': 0.4193726598394042, 'wanted': 0.46869825600854437, 'son': 0.40815172677245787, 'use': 0.48705091419355784, 'fuck': 0.3147653503157497, 'man': 0.31869243189987445}, {'wu': 0.8029672466442334, 'shit': 0.5960231545976875}, {'vinci': 0.5598557255027699, 'da': 0.5055386276512381, 'art': 0.48267353057397616, 'mc': 0.4449927251737079}, {'ooh': 0.6371046784162474, 'yeah': 0.5095081569277312, 'oh': 0.5783589428410667}, {}, {'michael': 0.6047433157936787, 'picked': 0.616564544614696, 'thought': 0.5041167368050177}, {'jake': 0.45324932996956685, 'chase': 0.4314891730582945, 'woo': 0.779988550182378}, {'aesop': 0.6652601096260784, 'bridge': 0.5408085624092632, 'rock': 0.5147378802508361}, {'em': 1.0}, {'tired': 0.6828875661709266, 'broke': 0.6168896697432774, 'got': 0.39129491094720176}, {'fortune': 0.7718991815109741, 'fame': 0.6357449595417082}, {'loud': 0.4561348870627347, 'start': 0.42603267640966996, 'scream': 0.4726031682942917, 'wu': 0.4231126724147403, 'tang': 0.4561348870627347}, {'island': 0.5519059032907413, 'staten': 0.6109515161932054, 'world': 0.3927658679287254, 'yeah': 0.40972318919515566}, {'biggie': 0.570075616860333, 'list': 0.5550134251489005, 'ain': 0.33937903511876355, 'jay': 0.5017925462655396}, {'gave': 0.741206309536397, 'crack': 0.6712772949410959}, {'schoolboy': 0.6185916806108707, 'lamar': 0.4531728257541121, 'kendrick': 0.44457661541798393, 'bridge': 0.46295826561423636}, {'bitches': 0.558055321854956, 'block': 0.5425750102426763, 'young': 0.5499460276427224, 'like': 0.3028959931882748}, {'drink': 0.45318014874632795, 'pass': 0.41986241910517524, 'lucky': 0.5012451229837266, 'day': 0.3561861389686269, 'plate': 0.49013065900538894}, {'dont': 0.46957254134138804, 'looking': 0.46274902090784714, 'diamonds': 0.46957254134138804, 'love': 0.3674269696805043, 'like': 0.25487014586792056, 'need': 0.38066419739959284}, {'lords': 0.5631972831804704, 'punk': 0.48993568840121327, 'kid': 0.4204857354506162, 'man': 0.3331328717559285, 'know': 0.30469758927710017, 'like': 0.24928990468106055}, {'claim': 0.49116671881928425, 'fist': 0.521680915955813, 'metal': 0.4630910258030343, 'terrorists': 0.521680915955813}, {'verse': 1.0}, {'joseph': 0.5532593915021511, 'lick': 0.499582268742508, 'jesus': 0.5093478604563699, 'shots': 0.4299841386856919}, {'cali': 0.654918782232665, 'rains': 0.654918782232665, 'ain': 0.37704479489546927}, {'mayo': 0.7874432195491233, 'went': 0.6163871964813281}, {'niggas': 1.0}, {'pre': 0.8311389110758679, 'chorus': 0.5560648437867841}, {'pumpin': 0.7935679512397503, 'block': 0.608481640450347}, {'history': 0.622253181525221, 'called': 0.5443340340811129, 'number': 0.5625846046797959}, {'human': 0.5582466101219631, 'face': 0.4234455523873701, 'natural': 0.5582466101219631, 'light': 0.44431442553447315}, {}, {'filtered': 0.45604413614893285, 'brita': 0.45604413614893285, 'water': 0.36247967771010875, 'power': 0.36863022756556346, 'pure': 0.4117988192941778, 'juice': 0.3836527893400555}, {'um': 0.9644105638103478, 'place': 0.26440927444211765}, {'page': 0.4577559806019194, 'committed': 0.4733485681209984, 'chill': 0.43577946280841284, 'hard': 0.3386647343897352, 'really': 0.3793318692828763, 'sit': 0.34338081731872544}, {'line': 0.6786163180383968, 'don': 0.4334411546338908, 'long': 0.5929659841522522}, {'flash': 0.7021584411000729, 'gotta': 0.5506721405109749, 'em': 0.45136871541676044}, {'time': 0.7663063522620209, 'know': 0.6424753493192369}, {'stomach': 1.0}, {'silly': 0.6323359967967934, 'um': 0.5821482509018383, 'mf': 0.511130708456199}, {'prophet': 0.5742803237120256, 'truth': 0.4350415744401663, 'salute': 0.5938420915259386, 'say': 0.358179436369442}, {'os': 0.6516914193492284, 'problem': 0.5785000728664411, 'check': 0.49054659273111906}, {}, {'dick': 0.4799511373505566, 'bust': 0.5138533642362197, 'knock': 0.5188299470477135, 'ho': 0.4862274281295669}, {'shape': 1.0}, {'forgive': 0.5823461601736306, 'lord': 0.5384436060883863, 'hope': 0.5069134191977438, 'just': 0.3376243744619382}, {'thought': 1.0}, {'pharaohe': 0.7297302586171152, 'monch': 0.5632472993368325, 'verse': 0.38761608512594364}, {'run': 0.6399267450018425, 'meet': 0.7684359186238935}, {'dead': 1.0}, {'reign': 0.7999464534476882, 'king': 0.600071388766758}, {'crawl': 0.7931874368197629, 'baby': 0.6089775776424736}, {'injure': 0.5836882144232434, 'shabaam': 0.5836882144232434, 'sahdeeq': 0.5644609257396048}, {'fall': 0.591716740395091, 'lap': 0.6695204049951976, 'right': 0.4490141717488156}, {}, {'lot': 0.6896925129526912, 'yo': 0.5503255293832097, 'know': 0.47060179481817965}, {'care': 0.47471500652634024, 'try': 0.4100481946962136, 'using': 0.5347755530204624, 'don': 0.27609685525621414, 'play': 0.40744207982685887, 'know': 0.27979050484375645}, {'wait': 0.49659821313641433, 'ayy': 0.5003243234508659, 'somebody': 0.5337062337525075, 'hold': 0.467143920143319}, {'seeing': 0.833698713140817, 'guess': 0.3426123101520195, 'just': 0.23007235818502336, 'wasn': 0.3669195697136151}, {'bum': 0.5382508328149657, 'industry': 0.552858114126264, 'party': 0.4928764726914445, 'head': 0.4021277524444022}, {'line': 0.5133810047990881, 'missed': 0.6141984082142511, 'cause': 0.3650526688292106, 'caught': 0.47532810587974855}, {'talking': 1.0}, {'party': 0.7105174979721026, 'life': 0.5063704447690401, 'll': 0.4886244547092047}, {'learn': 0.6533424781782357, 'soon': 0.6237923342898241, 'll': 0.4289833678467898}, {'high': 0.6292433008220508, 'feet': 0.7772083815622229}, {'education': 0.5994621176275332, 'weather': 0.5797152203873362, 'beautiful': 0.551883531898512}, {'main': 0.580666288197024, 'dollar': 0.5248255165482342, 'fuck': 0.3563411578374341, 'just': 0.33665044217893175, 'bitch': 0.3835000625073959}, {'complete': 0.5885982207496393, 'operation': 0.5885982207496393, 'doomsday': 0.5541698918749717}, {'gay': 0.4575025415870282, 'lookin': 0.37309667374128563, 'barely': 0.44541468729884925, 'face': 0.32403375530884376, 'straight': 0.3651550530951355, 'boy': 0.3651550530951355, 'say': 0.28534497129210534}, {'birds': 0.47846860840146194, 'herbs': 0.47846860840146194, 'eating': 0.440493131663132, 'trust': 0.4072847500173196, 'dead': 0.3745310351465937, 'like': 0.20480971320153257}, {}, {}, {'law': 0.47032686849429306, 'story': 0.45349814322048226, 'sides': 0.4940456246000008, 'universal': 0.48099225116701155, 'yo': 0.31256590664820244}, {'homie': 0.49470172415452535, 'good': 0.405535276935484, 'game': 0.38381265639783957, 'sorry': 0.48632502525269067, 'ain': 0.315406549210395, 'nigga': 0.32788087256867327}, {'worth': 0.5156452632206727, 'net': 0.5522373429678246, 'minimized': 0.5522373429678246, 'love': 0.35238870098480435}, {'snake': 0.5165379908434369, 'care': 0.49805578937104567, 'shorty': 0.4775966555501365, 'don': 0.2896719827622872, 'yeah': 0.3397649664396852, 'like': 0.24016719026448935}, {}, {'truly': 0.5828196329276689, 'pill': 0.5495049467509348, 'difficult': 0.5986364413985418}, {'fantastic': 1.0}, {'chicken': 0.6274397571148635, 'wally': 0.6108619249299201, 'look': 0.48287375147397865}, {'burn': 0.6489498796498923, 'came': 0.5941983894341749, 'let': 0.4751761017730404}, {'motorola': 0.47586895193069534, 'points': 0.47586895193069534, 'carry': 0.4297002351540415, 'joints': 0.46019334038285387, 'fly': 0.3881717127156426}, {'save': 0.5331897987293409, 'count': 0.5446167205165644, 'winnings': 0.6473803103777155}, {'bubbling': 0.52948122607072, 'strings': 0.5120395712031668, 'herbal': 0.52948122607072, 'pick': 0.4208500207905084}, {'hurt': 0.49876514537519084, 'bee': 0.5200461161049228, 'couldn': 0.46467505559333133, 'ain': 0.31799726115381666, 'mic': 0.4046482441467599}, {'nickel': 0.5684550014498263, 'bite': 0.5684550014498263, 'everybody': 0.4015000857485948, 'used': 0.4387658872305673}, {'away': 1.0}, {'bless': 0.7188362208982892, 'life': 0.4797502299231585, 'god': 0.5031045660827802}, {}, {'barber': 0.595980448293702, 'debt': 0.595980448293702, 'quarter': 0.5381585365886861}, {'press': 0.743485131630144, 'shit': 0.47173286172736917, 'ain': 0.47402317054276405}, {'uh': 0.6570212968741184, 'doubt': 0.7538720153009074}, {'game': 0.47426385511467367, 'run': 0.47426385511467367, 'world': 0.39298063704809244, 'talkin': 0.52251973931075, 'got': 0.35026694448582624}, {'foul': 0.4320711577640805, 'spoke': 0.4320711577640805, 'blooded': 0.45891398725528687, 'laugh': 0.39063935501050484, 'shorty': 0.39063935501050484, 'cold': 0.33290955256979676}, {'riding': 0.7071067811865476, 'train': 0.7071067811865476}, {'brothers': 1.0}, {'powerful': 0.5050907411894048, 'use': 0.4689839014251103, 'shit': 0.3073601008574546, 'team': 0.47621913394966137, 'men': 0.45131202978643276}, {'bastard': 0.6857467635819058, 'dirty': 0.6576851045254027, 'like': 0.3117718388859897}, {'rhymin': 0.48152733962820127, 'kept': 0.43529181416992546, 'cypher': 0.48152733962820127, 'stepped': 0.49792965331530836, 'right': 0.3144041018293587}, {'scratch': 0.590497358778739, 'rza': 0.45277383113816244, 'blast': 0.5090908817631299, 'mic': 0.4325912634548263}, {}, {'past': 0.45753728989438686, 'push': 0.4698879473206563, 'bass': 0.46340333514473275, 'feel': 0.35416053622197546, 'gotta': 0.3880837620110436, 'know': 0.28121806937310595}, {'fuck': 1.0}, {'24': 0.4690357537529245, 'channel': 0.4690357537529245, 'special': 0.4100326678724277, 'man': 0.5365940367816516, 'oh': 0.32241428996036003}, {'shotguns': 0.7071067811865475, '32': 0.7071067811865475}, {'vibe': 0.6134463395667418, 'kill': 0.5342012255574613, 'don': 0.3764740185225503, 'bitch': 0.4433733781617415}, {}, {'life': 0.6982571118850619, 'chorus': 0.7158470546855189}, {'dream': 0.7186676871471481, 'bad': 0.6953536909016653}, {'trackmasters': 0.7851996264261275, 'produced': 0.6192427203126978}, {'equivalent': 0.5573110900798507, 'york': 0.44661771854779797, 'state': 0.4429701607882112, 'new': 0.3650839559538892, 'mind': 0.40053477265961973}, {'till': 0.5690473380911627, 'fly': 0.49301590248825466, 'ill': 0.48039801185715025, 'stay': 0.4498201830829193}, {}, {'blew': 0.4744911587283113, 'piece': 0.5248164110219987, 'heard': 0.4302493157423808, 'phone': 0.450575417276904, 'nigga': 0.33360634685150997}, {'prove': 0.8359144482281962, 'll': 0.5488597591765589}, {'torch': 0.6407532538135973, 'desire': 0.5524184556069919, 'burn': 0.5331689391103666}, {'clinton': 1.0}, {'wind': 0.5869662087513253, 'dead': 0.5175902013619595, 'news': 0.6225520486177698}, {'hand': 0.6192427203126978, 'countin': 0.7851996264261275}, {'thugs': 1.0}, {}, {}, {'holla': 0.5620351033394659, 'lend': 0.5772878523568121, 'broke': 0.48694058500032117, 'fuck': 0.33725975866533553}, {'pew': 0.6951040980937083, 'church': 0.6544460198874568, 'like': 0.2975410893755666}, {'finna': 0.6785008408253104, 'roll': 0.5775573161744614, 'come': 0.4539428989781645}, {'holla': 0.5620351033394659, 'lend': 0.5772878523568121, 'broke': 0.48694058500032117, 'fuck': 0.33725975866533553}, {'afford': 0.7104684352092938, 'stop': 0.570770513398146, 'know': 0.4116498798815252}, {'anti': 0.7280795387793957, 'smack': 0.6854926587577597}, {'valve': 0.9362340538445483, 'blowin': 0.3120780179481828, 'got': 0.16147169143641574}, {'beatbox': 0.5836040723598078, 'proof': 0.5494678615669704, 'sound': 0.429732523154012, 'rock': 0.4157178302331469}, {'condom': 0.5727833696750475, 'cock': 0.49381895853049795, 'make': 0.3752195537246598, 'pop': 0.4766113940617579, 'like': 0.2451813883081811}, {'lot': 0.5741886946389626, 'end': 0.5905709823401297, 'times': 0.5670390266697863}, {'ropes': 0.702255667556302, 'truth': 0.5464256226873461, 'yo': 0.4563507601130945}, {'bar': 0.6934248043082022, 'head': 0.5579434468491892, 'cause': 0.4559179212184771}, {'tweeters': 0.5041380755432086, 'sound': 0.37121832674194166, 'mc': 0.4007064068128229, 'hope': 0.40400595132590134, 'brought': 0.48753125005768566, 'like': 0.21579759435198426}, {'limited': 0.7789568658698419, 'yo': 0.47658560090282276, 'know': 0.4075443118561817}, {'evans': 0.7652288885412284, 'skit': 0.6437582994742331}, {'shot': 0.3785362812418843, 'earth': 0.4171388013695264, 'old': 0.36922215338572867, 'feel': 0.3369476608619379, 'somebody': 0.43020510481326535, 'died': 0.4470504997701901, 'like': 0.21889768822960276}, {'rza': 0.8220222768997939, 'verse': 0.5694553329985405}, {'compromise': 0.696879011969535, 'feeling': 0.5739574932607167, 'love': 0.43003771765536936}, {'king': 0.5875195351612675, 'teach': 0.689401221742807, 'know': 0.4237295732698074}, {'spores': 1.0}, {'word': 0.5714038357152329, 'brought': 0.7504403911277294, 'like': 0.3321699503175739}, {'trust': 0.8096319862040208, 'love': 0.5869378560932429}, {'chorus': 1.0}, {'double': 1.0}, {'mathematics': 1.0}, {'catching': 0.7280795387793957, 'constantly': 0.6854926587577597}, {'fat': 0.6183835824902966, 'life': 0.47412255727589503, 'shit': 0.4421012591723105, 'ain': 0.4442477036821796}, {'admit': 0.6106759327383473, 'did': 0.5170847515918766, 'look': 0.5198916217390461, 'like': 0.2990166659082086}, {'dumb': 0.4596134753392114, 'huh': 0.8124053738775249, 'don': 0.25203374105474524, 'know': 0.2554054720468629}, {'seat': 0.6371069436264427, 'ma': 0.5231788831938092, 'sleep': 0.5660199630428694}, {'duel': 0.6396671324351917, 'iron': 0.5857434131266658, 'mic': 0.4977254400378417}, {}, {'grandma': 0.5942912204225551, 'crawl': 0.5643208966813399, 'bed': 0.5730269373227044}, {'wheel': 0.5002559302781309, 'satan': 0.5433836343850297, 'drunk': 0.5254840199228645, 'fucking': 0.42230886198348333}, {'patients': 0.4458934767782632, 'aids': 0.4458934767782632, 'babies': 0.3751134211681854, 'crack': 0.679446786726293}, {'aesop': 0.6895069642249739, 'stories': 0.7242790527726592}, {'troy': 0.7356995848517206, 'laying': 0.6773079955596315}, {'bottles': 0.48755702168146114, 'wave': 0.5007885526644298, 'flock': 0.5007885526644298, 'watch': 0.4083967328327276, 'em': 0.30646681755320326}, {'hund': 0.570999901223975, 'nothin': 0.45574282172396474, 'don': 0.30484072672734014, 'got': 0.6110071395471875}, {'vanished': 0.7071067811865475, 'techniques': 0.7071067811865475}, {'fact': 0.6418063949305074, 'right': 0.4635661792337155, 'matter': 0.6108935659318736}, {'king': 0.7361624222389801, 'tell': 0.6768049113911908}, {'illest': 0.7137482437253542, 'got': 0.3692991160730843, 'ain': 0.4109136391614775, 'say': 0.43050155469833323}, {'testin': 0.5312674338604249, 'brother': 0.4561138727181628, 'type': 0.46028383903160586, 'start': 0.4385436772276429, 'ain': 0.32485886092791516}, {'fled': 0.5150235251047436, 'year': 0.4332699322717634, 'old': 0.37185253173624483, 'hit': 0.34567267626346393, 'girl': 0.39752443616619754, 'head': 0.3622683432965835}, {'married': 0.9144251383274852, 'like': 0.40475506963441454}, {'hurtin': 0.7288153680855101, 'somethin': 0.6039525591220748, 'like': 0.3225979937511692}, {'stomach': 0.6674335991972711, 'heard': 0.515163195982768, 'wanna': 0.45553999802351114, 'like': 0.28569666145780537}, {'revealed': 0.6046669963939656, 'face': 0.4141579164312245, 'real': 0.43072155192144795, 'game': 0.42361404784848755, 'got': 0.3128595961530435}, {'lion': 0.6697890949431144, 'voice': 0.5573295789808048, 'soul': 0.49067943577081213}, {'latin': 0.6218346309896378, 'white': 0.4832796918007218, 'black': 0.3975530313125827, 'music': 0.47086518079929957}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'crazy': 1.0}, {}, {}, {'heads': 0.5444604962621046, 'hearts': 0.602959515791359, 'spin': 0.5830974106670967}, {'phony': 0.6770330894862547, 'easy': 0.5918646535978074, 'way': 0.43740419243789175}, {'revolution': 0.4612210479983214, 'clash': 0.476931666452937, 'killed': 0.39280635380356493, 'soldiers': 0.4612210479983214, 'american': 0.4390781749445458}, {'pants': 0.527873689865164, 'easy': 0.5110510734630984, 'school': 0.46103364574088823, 'wasn': 0.4976184736876401}, {'clinton': 0.5824342675629616, 'ave': 0.5824342675629616, 'church': 0.5670455430887303}, {'deal': 0.43884075992678506, 'ballers': 0.5273912717014313, 'dig': 0.48553286214472446, 'big': 0.3903879230758916, 'real': 0.3756758486435783}, {'velour': 0.7071067811865475, 'icicle': 0.7071067811865475}, {'world': 0.3714793433986175, 'cold': 0.928441219156136}, {}, {'captain': 0.38635823287169857, 'cat': 0.34296640899771225, 'metal': 0.34296640899771225, 've': 0.26960650418049803, 'passion': 0.34296640899771225, 'askin': 0.36375933971194485, 'bit': 0.3214875740555906, 'seen': 0.315156801819334, 'lost': 0.30027129143603043}, {'shall': 0.7258041033997398, 'pass': 0.6879014489649662}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'blunts': 0.5057696419033518, 'hash': 0.5229977235452373, 'piece': 0.49240650360579286, 'ass': 0.3936752022106422, 'got': 0.27060325361418547}, {'know': 1.0}, {'disrespect': 0.6344753775459253, 'records': 0.6344753775459253, 'make': 0.44145440373373923}, {'raps': 0.5271100105171308, 'mercury': 0.6192365248045418, 'god': 0.39899785666117676, 'just': 0.3305177841488914, 'like': 0.26506578032955946}, {'chapter': 0.4998983955808202, 'wrote': 0.4667743734742014, 'water': 0.4108710771688671, 'blood': 0.39899324831567917, 'weird': 0.4518989091689492}, {'taken': 0.8373204408748224, 'right': 0.5467124283324767}, {'martin': 1.0}, {'seas': 1.0}, {'dragon': 0.7612922452862467, 'hold': 0.5605718892632121, 'like': 0.3258730952915543}, {'ether': 0.6630822168682353, 'soul': 0.5379587111662248, 'fuck': 0.4148720955186522, 'like': 0.314330308932249}, {'syllables': 0.6004775866835643, 'skill': 0.5653544090941405, 'kill': 0.4399026583911975, 'em': 0.3553684160823175}, {'travelling': 0.8447637524776178, 'man': 0.5351394234215362}, {'taken': 0.7165090064149914, 'minds': 0.6975778406215337}, {'shake': 0.43403482944489713, 'party': 0.414403790455297, 'body': 0.7999270374759321}, {'blessing': 0.4945318581736453, 'lessons': 0.4945318581736453, 'earth': 0.4171361502537412, 'came': 0.38961498294731606, 'gave': 0.43020237065489764}, {'unite': 0.6416050080495228, 'black': 0.43567629186581663, 'let': 0.4152037028288254, 'people': 0.47553661006178677}, {'millionaire': 0.5332151486903731, 'hammer': 0.5020262903946642, 'plan': 0.4814827146220701, 'cocked': 0.4814827146220701}, {'sauce': 0.3708183399691075, 'ramen': 0.3708183399691075, 'hot': 0.29473926251099364, 'bish': 0.6049614691111146, 'ya': 0.5216683865354583}, {'dodgin': 0.7478542897422681, 'bullets': 0.6638629085241077}, {'doc': 0.803430930329971, 'cause': 0.47752420295199033, 'like': 0.3556253306278724}, {'world': 0.7428238813151568, 'know': 0.6694868791454287}, {'goddamn': 0.4490775987071167, 'aw': 0.44147344524604365, 'hell': 0.3952937590379505, 'loose': 0.4490775987071167, 'broke': 0.4056763445099781, 'man': 0.28448086999332006}, {'tryin': 0.4863321852333683, 'roof': 0.5488860455528464, 'watch': 0.47019426078456694, 'knock': 0.49104223008693465}, {'50': 0.4963237121918484, 'cellies': 0.5132300361899954, 'fresh': 0.448667461462013, 'deep': 0.36885409159540494, 'city': 0.39102668810080105}, {'self': 0.5787949075212581, 'shit': 0.3735642868358996, 'live': 0.4729968499556578, 'll': 0.38658149946561027, 'nigga': 0.3902241699730929}, {'ether': 0.6630822168682353, 'soul': 0.5379587111662248, 'fuck': 0.4148720955186522, 'like': 0.314330308932249}, {'motherfuckers': 0.5121031481560459, 'monkey': 0.5311066288119343, 'mouth': 0.47513647967327816, 'don': 0.2978420037893749, 'want': 0.37578129403032257}, {'cheeba': 0.5998612567559598, 'york': 0.4807165525795944, 'wanted': 0.5046407269148563, 'new': 0.39295776548885736}, {'nasty': 0.611245747128093, 'changed': 0.611245747128093, 'times': 0.5027497123178082}, {'dealer': 0.6629139453660288, 'drug': 0.6189882669177567, 'life': 0.4211871632153547}, {'drink': 0.6552135527169811, 'lay': 0.6339580453646582, 'just': 0.41084351893806687}, {'stuffed': 0.6854926587577597, 'seasoned': 0.7280795387793957}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'pleasure': 0.8795322752246104, 'know': 0.47583923423591323}, {}, {'clinton': 1.0}, {'week': 0.595980448293702, 'mystery': 0.595980448293702, 'meat': 0.5381585365886861}, {'black': 1.0}, {'called': 1.0}, {'air': 0.6499683069521592, 'kiss': 0.6035047715966557, 'come': 0.46186923540956054}, {'bless': 0.7071067811865476, 'knees': 0.7071067811865476}, {'kelly': 0.6386716814829702, 'putting': 0.6560042267355082, 'll': 0.4021901761317195}, {'red': 0.4981405413758414, 'hair': 0.5040401169624588, 'eyes': 0.47064905536815294, 'feet': 0.5256320273835298}, {'tech': 0.5435522977571293, 'note': 0.5291908890740189, 'house': 0.46292509223105677, 'days': 0.45848474511903015}, {'pew': 0.5661313336485504, 'moon': 0.5211981720694917, 'shoot': 0.4819055098982688, 'did': 0.41906426478813946}, {'sun': 0.5996796326603037, 'walk': 0.5267003555088201, 'right': 0.4391998189348595, 'll': 0.4124010096094241}, {'outta': 0.6923172570594346, 'gza': 0.5771187665043571, 'fuck': 0.4331636468197559}, {'raekwon': 0.7978704185736119, 'hook': 0.6028289933017237}, {}, {'clan': 0.5801873531389415, 'act': 0.5127649088160241, 'don': 0.3181516577953624, 'wild': 0.5470231313085272}, {'drop': 0.40382251090635285, 'socks': 0.474434478859212, 'showing': 0.474434478859212, 'dollars': 0.45501999628716744, 'box': 0.4239198428987376}, {'knife': 0.5872655594137812, 'steel': 0.5366366438015495, 'feel': 0.4203075692005539, 'just': 0.34047647378837526, 'like': 0.2730523637055407}, {'park': 0.5427948357279889, 'hill': 0.5116844102411859, 'ill': 0.47778693842450903, 'represent': 0.463974645960412}, {'naked': 0.47510344947637695, 'stripped': 0.47510344947637695, 'jacked': 0.47510344947637695, 'packed': 0.42174466623427553, 'beat': 0.3807381953388479}, {'vehicular': 0.7188474377218361, 'vernacular': 0.6951678655409433}, {'eyes': 0.5502001110020984, 'say': 0.8350328363922456}, {'hip': 0.4843942116712298, 'hop': 0.47180274216387075, 'try': 0.4962774431905593, 'shut': 0.5444934522712841}, {}, {'mandatory': 0.5449360182957418, 'heat': 0.4638635139064152, 'duck': 0.5269852667147149, 'car': 0.458434188402214}, {'state': 0.5519998163095889, 'turned': 0.6071201618050155, 'fuck': 0.3923622455995751, 'nigga': 0.41563587447679534}, {'cheap': 0.5332962605231132, 'dirt': 0.5214711039169336, 'routine': 0.5477690825324802, 'day': 0.378961763919849}, {'went': 1.0}, {'big': 0.5760707193472995, 'boy': 0.6006882384934161, 'rock': 0.5543610434061557}, {'represent': 1.0}, {'happened': 0.719052550306407, 'fuck': 0.4412655315632944, 'oh': 0.5368874747579937}, {'barely': 0.5891665697339596, 'wait': 0.4898334912581169, 'care': 0.5554890848525507, 'don': 0.32307550287739145}, {'gettin': 0.4007560092895655, 'hip': 0.3565219937587209, 'hop': 0.3472544680431934, 'happen': 0.4385652837954627, 'ready': 0.41070114934423096, 'mos': 0.3817568359751908, 'yo': 0.2914580576542553}, {'sit': 0.7685808619389484, 'hol': 0.26430849180501775, 'bitch': 0.21473254271585918, 'lil': 0.5415850948094136}, {'art': 0.7427548268149995, 'lost': 0.669563490076199}, {'silly': 0.583631348689772, 'fellas': 0.5373092320101088, 'friends': 0.4320182040971825, 'don': 0.3013203933726254, 'know': 0.3053514858154062}, {'minimum': 0.7071067811865476, '15': 0.7071067811865476}, {'uh': 0.35100349828311955, 'yes': 0.6820410934983085, 'yeah': 0.5579677845387234, 'oh': 0.31668350507974385}, {'judge': 0.6303420328163895, 'walk': 0.5069603078975895, 'try': 0.5133524567701395, 'like': 0.28658231454391087}, {'juice': 0.45114130737366404, 'room': 0.892452531388186}, {'robbers': 0.6082583818697466, 'sight': 0.6082583818697466, 'new': 0.39845856335516544, 'know': 0.3182361624003985}, {'stop': 0.7502285425912405, 'need': 0.6611785945426724}, {'artist': 0.6975778406215337, 'addict': 0.7165090064149914}, {'verse': 1.0}, {'gza': 0.817049897585536, 'verse': 0.5765669647625201}, {'pebbles': 0.49326955470804873, 'invisible': 0.45411934470132537, 'doom': 0.35783208033449976, 'mf': 0.39872032943717006, 'intro': 0.3442108099393619, 'girl': 0.38073348508379107}, {'gone': 0.5808935878740016, 'eventually': 0.6751115242036468, 'want': 0.4547384626950952}, {'lights': 0.6627826210975941, 'right': 0.43275128439268595, 'tell': 0.4570913174200255, 'em': 0.4056020840265856}, {'don': 0.7023928335120605, 'know': 0.7117895106215733}, {'fatal': 0.6753372721057243, 'strikes': 0.737509029710687}, {'abused': 0.7528738202886038, 'child': 0.6581648811081028}, {'ancient': 0.5426150209455682, 'speak': 0.47762115226358415, 'poems': 0.5610981704002959, 'deep': 0.40325651529527384}, {'weekend': 0.6288628646668016, 'pad': 0.5920793733843444, 'pen': 0.5039578484911869}, {'bagged': 0.6704607707419796, 'everybody': 0.48967729007771665, 'fuck': 0.3916927002913171, 'man': 0.3965795443750357}, {'fair': 0.7772790370850684, 'bout': 0.6291560207993793}, {}, {'roads': 0.5202379722283854, 'american': 0.47894731142879876, 'patrol': 0.5031007996265541, 'stay': 0.38718325979582346, 'nigga': 0.311352908892505}, {'interlude': 0.7938931027536391, 'god': 0.6080573504203366}, {'chance': 0.7393882996260022, 'going': 0.6732792454666706}, {'forgive': 0.7342418379186236, 'lord': 0.6788880050861715}, {'judges': 0.5420933475123165, 'corrupt': 0.5420933475123165, 'number': 0.46144375963397305, 'cops': 0.44647425666061175}, {'middle': 0.5264313392974691, 'riddle': 0.5718156589220199, 'titties': 0.48104701967291824, 'little': 0.40557448401107826}, {'gonna': 0.5165587248082012, 'make': 0.5180311035926244, 'goin': 0.6817703862262813}, {'hol': 0.8847118097004012, 'humble': 0.4661384062450135}, {'reality': 0.36565942050494804, 'poor': 0.3245165191194795, 'bish': 0.6606402878840969, 'ya': 0.5696811626155279}, {'verse': 1.0}, {}, {'world': 1.0}, {'oh': 1.0}, {'fringe': 0.7280795387793957, 'falling': 0.6854926587577597}, {'instrumental': 0.7544735582561396, 'interlude': 0.6563304426067098}, {'def': 0.643525986503126, 'mos': 0.6379994201711342, 'verse': 0.42288419757242635}, {'telephone': 0.7855041637991655, 'death': 0.6188563715872802}, {}, {'ski': 0.5335539901331259, 'york': 0.4275792641434579, 'mask': 0.4736306371478991, 'true': 0.4312831000573514, 'new': 0.34952112904280164}, {'evidence': 0.6914688992827498, 'hip': 0.5175000769845486, 'hop': 0.5040480449775486}, {'gotta': 1.0}, {}, {'drop': 0.6936869823415095, 'work': 0.7202765930737511}, {'walkin': 0.8074103791208502, 'bitch': 0.589990236942888}, {'check': 0.6624361411438295, 'saying': 0.7491183877775743}, {'chorus': 1.0}, {'era': 0.6432270580819419, 'mcs': 0.5475313676910369, 'room': 0.5352273845251497}, {'goodbye': 0.6737296859019314, 'words': 0.586089861077906, 'said': 0.4500966397077033}, {'believe': 0.5576767378243378, 'killed': 0.5459757961793064, 'told': 0.48322603889721893, 'nigga': 0.3967362869812652}, {'jake': 0.6202513003580749, 'waiting': 0.569345823617433, 'ayo': 0.5395680286428246}, {'paid': 0.7217194265433415, 'fam': 0.6921857188283722}, {'played': 0.5983465919306958, 'shit': 0.3921411124874192, 'kids': 0.5637189799501818, 'say': 0.4128287967983544}, {'niggas': 0.6090973508413416, 'don': 0.5213710992468876, 'em': 0.5976391838460323}, {'coming': 1.0}, {'dont': 0.46957254134138804, 'looking': 0.46274902090784714, 'diamonds': 0.46957254134138804, 'love': 0.3674269696805043, 'like': 0.25487014586792056, 'need': 0.38066419739959284}, {'cd': 0.6218625812420207, 'dude': 0.6218625812420207, 'yes': 0.47599775220269946}, {'dead': 0.3904827515737217, 'playin': 0.45925425120997426, 'time': 0.3112969578340767, 'hold': 0.734644783219911}, {'ink': 0.4440094909200507, 'sperm': 0.49171565153009866, 'write': 0.4049826123356019, 'pen': 0.3940508745827244, 'penis': 0.49171565153009866}, {'days': 0.5109320994466522, 'living': 0.5158803903033756, 'today': 0.49785567469402064, 'times': 0.47429478157622057}, {'em': 1.0}, {'accurate': 0.5254461861430031, 'spectacular': 0.5254461861430031, 'fit': 0.5254461861430031, 'spit': 0.41438981213745824}, {'feel': 0.7770391540301176, 'just': 0.6294522643570035}, {'mighty': 0.6214949638704124, 'def': 0.5563440671225861, 'mos': 0.5515662143942595}, {}, {'heat': 0.599543701038761, 'beef': 0.6072303979649614, 'turn': 0.5213622486640738}, {'verse': 1.0}, {'locked': 0.8040635503933838, 'niggas': 0.5945433600073137}, {'techniques': 0.5138963229854252, 'jam': 0.4640381977763376, 'correct': 0.5138963229854252, 'tec': 0.45618071907365937, 'like': 0.21997463716084723}, {}, {'don': 1.0}, {'whips': 0.4598244763128668, 'brand': 0.4099364016759574, 'laugh': 0.4047471738486607, 'new': 0.3114828846386748, 'crash': 0.4099364016759574, 'path': 0.4377486516075474}, {'option': 0.7309075364672349, 'children': 0.6824765000609163}, {'homes': 0.40419944152021053, 'stones': 0.40419944152021053, 'flooded': 0.40419944152021053, 'luxury': 0.40419944152021053, 'legal': 0.40419944152021053, 'life': 0.24835141559703144, 'rings': 0.3484761566372946}, {'bag': 0.4699592866511463, 'dipped': 0.5198770977722852, 'guns': 0.4854292567078505, 'son': 0.39382883548636394, 'black': 0.34369078715282697}, {}, {'civilized': 0.5828834279406996, 'time': 0.3637383486871471, 'flies': 0.5828834279406996, 'stay': 0.43380667647991084}, {'verse': 1.0}, {'coffins': 0.5150996779702138, 'bodies': 0.4651248034854084, 'bitty': 0.5150996779702138, 'little': 0.3653472633136335, 'baby': 0.34572378842345086}, {'world': 0.34575690676736043, 'light': 0.4280634925287167, 'shine': 0.46622978135450127, 'umi': 0.5759948622142571, 'said': 0.3848032191493426}, {}, {'slam': 0.6253153545339355, 'willie': 0.6253153545339355, 'kid': 0.46686337912519665}, {'world': 0.7428238813151568, 'know': 0.6694868791454287}, {'started': 0.8644282437890825, 'don': 0.5027562146206873}, {'waiting': 0.5006883616724873, 'sitting': 0.5093124616706399, 'pack': 0.5192682544732483, 'room': 0.4693319302679283}, {'method': 0.7509467275947614, 'man': 0.48390221583029397, 'verse': 0.44935248728503874}, {'locked': 0.8444487777970309, 'got': 0.5356363147482636}, {'style': 0.5409772345383792, 'dick': 0.5185570426650404, 'come': 0.45535807135442596, 'long': 0.4807195149628029}, {'gods': 0.8071791565352107, 'black': 0.5903065383807856}, {'royalty': 0.46613185872674073, 'loyalty': 0.46613185872674073, 'dna': 0.4024388342812831, 'inside': 0.3591184148278757, 'got': 0.523945731305966}, {'scale': 0.7828374218838544, 'bring': 0.6222263019981076}, {'reign': 0.7242790527726592, 'books': 0.6895069642249739}, {'yang': 0.46348394042024277, 'yin': 0.46348394042024277, 'tin': 0.44821630385935035, 'rusty': 0.46348394042024277, 'mic': 0.33954276068581335, 'like': 0.19839548769589893}, {}, {'pull': 0.6396656921945549, 'cut': 0.5912504934643015, 'yeah': 0.4911727356108855}, {'folks': 0.5067185812281365, 'mirror': 0.48858772720756305, 'properly': 0.5504034387460166, 'broke': 0.44897034075409964}, {'forth': 0.5757078340940224, 'moves': 0.5953182273361305, 'making': 0.5604968313595865}, {'screen': 0.5926024185943694, 'nightmare': 0.5926024185943694, 'american': 0.545568278909439}, {'payless': 0.6451002431775483, 'tops': 0.6073669939995975, 'high': 0.46362809540855127}, {'shit': 0.44933031228236653, 'ghost': 0.6459308071367771, 'got': 0.40578582185981066, 'll': 0.46498766610892023}, {'hol': 0.600791671611143, 'bitch': 0.48810207499024827, 'humble': 0.6330921984299781}, {'talking': 0.7353858116469515, 'pharoahe': 0.6776486612016248}, {}, {'pigs': 0.4915393006538784, 'fools': 0.4915393006538784, 'plus': 0.39502895389619536, 'shit': 0.29121071604660415, 'fuck': 0.2871642374532266, 'said': 0.32838123677511377, 'ain': 0.29262457232885836}, {'poetic': 0.680297993371902, 'justice': 0.6652132629772027, 'sound': 0.2660266356203319, 'like': 0.1546472893843076}, {'culture': 0.6226204861148135, 'bag': 0.5442969687299515, 'wet': 0.5622139629194027}, {'said': 1.0}, {'wanted': 0.5214811823798677, 'apart': 0.5597387563832334, 'pick': 0.49270156811865384, 'day': 0.4147228783171555}, {'liked': 0.5735365474104944, 'drop': 0.4596204684739989, 'school': 0.4523159714603365, 'shit': 0.32859667301550766, 'day': 0.3837177897742338}, {}, {'refrain': 0.5374875261185433, 'zacari': 0.5700736354200572, 'lamar': 0.44357469167319996, 'kendrick': 0.43516054781304947}, {'outro': 1.0}, {}, {'dawn': 0.6492868167978733, 'til': 0.5441064326620448, 'break': 0.5313895176499707}, {'devil': 0.41843311301280933, 'knock': 0.7994678933147572, 'let': 0.2957100882795977, 'said': 0.31356077749448535}, {'married': 0.615802619503083, 'blood': 0.49150205251482143, 'bash': 0.615802619503083}, {'nas': 0.7902182861018185, 'verse': 0.6128254729613517}, {'verse': 1.0}, {}, {'got': 1.0}, {'table': 0.508024780340869, 'emcees': 0.508024780340869, 'drink': 0.4471740950739374, 'eat': 0.4326675082883034, 'em': 0.3108951609234535}, {'mighty': 0.6214949638704124, 'def': 0.5563440671225861, 'mos': 0.5515662143942595}, {'did': 0.644155095009176, 'know': 0.4552903407569599, 'long': 0.6146339717157934}, {'drama': 0.596425363225981, 'hit': 0.43481888416293746, 'don': 0.334472431066069, 'fuck': 0.3660121291963916, 'long': 0.45757254967265265}, {'force': 0.45252307858525637, 'fighting': 0.49418249279873644, 'sleeps': 0.5248840477471899, 'guided': 0.5248840477471899}, {'wrongs': 0.8455485335439159, 'right': 0.533898564730917}, {'half': 0.6922543750473839, 'shit': 0.5138436693702413, 'fuck': 0.5067036250865807}, {'hungry': 1.0}, {'yeah': 0.7145433293598763, 'll': 0.6995911881000956}, {'rocking': 0.44503991213172744, 'using': 0.48340737263440703, 'jewels': 0.44503991213172744, 'em': 0.5721702729468616, 'like': 0.20692376387979725}, {'york': 0.5374170690188967, 'goes': 0.5420723570739875, 'everybody': 0.4736556728008435, 'new': 0.4393071331619485}, {'queensbridge': 1.0}, {'bought': 0.5818408771793308, 'lawn': 0.5976311237580905, 'just': 0.3298515394123322, 'fuckin': 0.44214951713887884}, {'sort': 0.4585530068451481, 'dealer': 0.4995524459487746, 'junkie': 0.516568750626179, 'music': 0.3911558250973598, 'got': 0.2672768510105531, 'like': 0.221118576656655}, {'dum': 0.6385906682945411, 'tat': 0.6385906682945411, 'rat': 0.3062293493245763, 'drum': 0.3010440206124502}, {'hustlin': 0.8089499858324212, 'day': 0.5878774705852619}, {'kid': 0.8601899778291037, 'like': 0.5099737268157704}, {'verse': 1.0}, {'facing': 0.46791809347937036, 'ziti': 0.4838568340606378, 'tv': 0.42951495976503823, 'real': 0.34466502672920857, 'yo': 0.2960359040602614, 'rap': 0.33633878996384237, 'like': 0.20711615699438216}, {'turn': 1.0}, {'tax': 0.592718263554596, 'means': 0.5580489448439651, 'shit': 0.3395864663183717, 'free': 0.4711130088426376}, {'ways': 1.0}, {}, {'benches': 0.7071067811865475, 'chillin': 0.7071067811865475}, {'world': 0.3714793433986175, 'cold': 0.928441219156136}, {}, {'statement': 0.6737152990304137, 'point': 0.5980504545687049, 'god': 0.43410062156431645}, {'vibe': 0.6134463395667418, 'kill': 0.5342012255574613, 'don': 0.3764740185225503, 'bitch': 0.4433733781617415}, {'dime': 0.5321398937321474, 'path': 0.5321398937321474, 'stick': 0.492022344990131, 'walk': 0.43768513685969546}, {'pants': 1.0}, {}, {'head': 1.0}, {'blew': 1.0}, {'lamar': 0.6083844778683101, 'kendrick': 0.596844066264219, 'chorus': 0.523111353015872}, {'list': 0.5010258003997049, 'shit': 0.3048864847144233, 'villain': 0.48052316599296047, 'stay': 0.39605056061075267, 'ho': 0.4107455545673015, 'll': 0.3155105522158119}, {'sodas': 0.5100762910596531, 'cent': 0.4932738546620389, 'going': 0.41230557383531985, 'crazy': 0.4087647158891898, 'hood': 0.39927259163889456}, {'chances': 0.2697969482430476, 'trouble': 0.5218191198788286, 'feeling': 0.22220784016055353, 'taking': 0.22965808141044516, 'happen': 0.24838348965418322, 'big': 0.19971030225248856, 've': 0.18826831128645813, 'means': 0.5080319320219034, 'don': 0.139292248022375, 'just': 0.14400424705498766, 'got': 0.13959512388476347, 'think': 0.19571855253634973, 'know': 0.141155712761871, 'like': 0.11548727465510873, 'say': 0.16272965529872568}, {'squeeze': 0.5645106984602171, 'triggers': 0.625163992134254, 'cock': 0.538978343036824}, {}, {'life': 0.6982571118850619, 'chorus': 0.7158470546855189}, {'mystery': 0.5772973817636297, 'question': 0.5435300623644486, 'fish': 0.5314779844044015, 'don': 0.2980502581921231}, {'education': 0.820072916719585, 'intro': 0.5722590420980977}, {'pedestal': 0.5717323085169884, 'girlfriend': 0.5717323085169884, 'pussy': 0.48097690011025274, 'll': 0.33897722099870137}, {'29': 0.590011157727377, 'estate': 0.5705755848035658, 've': 0.41171853510156886, 'hit': 0.3960027571079367}, {'relax': 0.7180477542255479, 'just': 0.40706860997988115, 'thing': 0.5645374827420184}, {'scratches': 1.0}, {'abi': 0.5759948622142571, 'world': 0.34575690676736043, 'light': 0.4280634925287167, 'shine': 0.46622978135450127, 'said': 0.3848032191493426}, {}, {'turf': 0.5122736673204161, 'trade': 0.5122736673204161, 'left': 0.3902980367645495, 'mean': 0.4105256483196434, 'gold': 0.39279449348184364}, {'role': 0.44554657793573554, 'mama': 0.40231973221683665, 'model': 0.4308698164999362, 'father': 0.3792606733843854, 'dope': 0.37482158821166844, 'game': 0.31213840098761864, 'say': 0.26873410362556766}, {'wait': 0.6594316615198836, 'tell': 0.5618498289146074, 'll': 0.4994743772544812}, {'visit': 0.7652288885412284, 'comin': 0.6437582994742331}, {'blood': 1.0}, {'length': 0.7188474377218361, 'universe': 0.6951678655409433}, {'fellas': 0.6188909946082924, 'pull': 0.530162856341106, 'cock': 0.5795699117009079}, {'sins': 0.5344497205908684, 'friends': 0.42019057665595155, 'sell': 0.4775450598256113, 'love': 0.35029346538703937, 'crack': 0.43249113215553214}, {'bigger': 0.4861143103685275, 'bizarre': 0.4701012062013666, 'motherfucking': 0.4701012062013666, 'belly': 0.43151889931347137, 'heart': 0.3680951353200169}, {'wish': 0.4377302462341462, 'mean': 0.40126595169512624, 'luck': 0.46097751081022154, 'pop': 0.41664681615889554, 'bad': 0.4123978497215803, 'say': 0.30201166566687926}, {'verse': 1.0}, {'smack': 0.5116888073147964, 'prosecutor': 0.5434779586166046, 'arm': 0.5116888073147964, 'dead': 0.4254184262998613}, {'wave': 0.746438403565396, 'cock': 0.6654545136091146}, {}, {'represent': 1.0}, {'dice': 0.5120808245448375, 'blood': 0.42932836763817406, 'ground': 0.5120808245448375, 'game': 0.3896789181873905, 'hit': 0.3733282091248995}, {}, {}, {'skin': 1.0}, {'grown': 0.5233136609046258, 'shall': 0.4625003977838857, 'ass': 0.4183852361161145, 'wish': 0.4859041402781843, 'man': 0.3179420623650284}, {'don': 0.923769529018226, 'like': 0.3829488964045269}, {}, {'report': 0.5883426969066896, 'tv': 0.5547123056081653, 'excerpt': 0.5883426969066896}, {'prolly': 0.6420127197175742, 'lookin': 0.5377748355781309, 'somethin': 0.5464594165532861}, {'season': 0.5440467833049212, 'quit': 0.5261253240369026, 'greatest': 0.500866445867561, 'funk': 0.41992623684003105}, {'cover': 0.6485499609003947, 'dick': 0.5109575405108975, 'count': 0.5641855545927696}, {'fights': 0.4853128429953368, 'prepare': 0.45692588976183335, 'war': 0.40382742045619663, 'plus': 0.3771771939051539, 'cold': 0.35206005025965204, 'mic': 0.35553435218813967}, {'homie': 0.8294795707383755, 'bitch': 0.5585370549280325}, {'listening': 0.49647961917772976, 'dot': 0.8680483786870039}, {}, {}, {'home': 1.0}, {'ask': 0.5249612217061695, 'punk': 0.541404915259703, 'better': 0.4333489250085067, 'try': 0.493462402449641}, {'surly': 0.7573836786159834, 'outside': 0.6529701090908533}, {'keith': 0.6105070021946747, 'tay': 0.6105070021946747, 'niggas': 0.3682309776725129, 'fuck': 0.3449178853363339}, {'amazing': 0.43571761180557533, 'half': 0.7577229793345333, 'nas': 0.3361966654937756, 'man': 0.28077187113435476, 'like': 0.21010713419925572}, {'flying': 0.6472447102381008, 'fatal': 0.5770227145069883, 'look': 0.49811552074973897}, {'swords': 0.7242790527726592, 'swing': 0.6895069642249739}, {'expect': 0.7828374218838544, 'free': 0.6222263019981076}, {'abi': 0.5759948622142571, 'world': 0.34575690676736043, 'light': 0.4280634925287167, 'shine': 0.46622978135450127, 'said': 0.3848032191493426}, {'got': 1.0}, {'hawaiian': 0.5758217221376523, 'kept': 0.5033853284271619, 'fame': 0.47425333024327604, 'music': 0.4360233184038086}, {'eating': 0.4840611867018568, 'spitting': 0.46674103496823494, 'seeds': 0.4747804096909898, 'new': 0.34443686855874006, 'stay': 0.39131734062510115, 'like': 0.22506692089859567}, {'winnin': 0.7386230233432253, 'used': 0.589530996637926, 'like': 0.32693918913217934}, {'handle': 0.5460711443695595, 'okay': 0.5049033311518543, 'alright': 0.4794547273082237, 'don': 0.30623403103518554, 'em': 0.35103107294998637}, {'let': 0.643142770580999, 'think': 0.7657462873885819}, {'rest': 0.6737200855307929, 'beat': 0.5864514536110013, 'life': 0.4496397879524509}, {'yes': 0.8794238509060122, 'fake': 0.47603958917052264}, {'cocaine': 0.6365454748480857, 'rap': 0.5198102196425793, 'crack': 0.5697430947414445}, {'loud': 0.4561348870627347, 'start': 0.42603267640966996, 'scream': 0.4726031682942917, 'wu': 0.4231126724147403, 'tang': 0.4561348870627347}, {'ooh': 1.0}, {}, {'fed': 0.6048044036388993, 'bein': 0.6048044036388993, 'humble': 0.5180958083964691}, {'sheeran': 0.6391878881353444, 'ed': 0.6391878881353444, 'chorus': 0.42764200836933314}, {'crew': 0.7471890131630039, 'truth': 0.6646115998148818}, {'set': 0.6631697044010758, 'nasty': 0.7484690662710048}, {'cheek': 0.5352178736796638, 'speak': 0.4555911799829524, 'tongue': 0.483291135607208, 'ill': 0.42540970703926945, 'fuck': 0.30238181793193036}, {'world': 1.0}, {}, {'issue': 0.4215484028440668, 'boo': 0.380649855587315, 'truly': 0.3968911637664115, 'sent': 0.35883281130219596, 'darts': 0.40766216591941246, 'miss': 0.3507692132507295, 'heart': 0.3192045843521622}, {'grae': 0.4789586334020766, 'jean': 0.48832108430211985, 'skit': 0.44622229854413226, 'monch': 0.40940821049700415, 'pharoahe': 0.4067084011613841}, {'party': 0.739804754058663, 'heard': 0.3311665976390275, 'wanna': 0.5856770530594414}, {'spangled': 0.3565125974335892, 'lawn': 0.34476870666995135, 'laughing': 0.6895374133399027, 'won': 0.5277986949366216}, {'perfect': 0.7574388058445956, 'man': 0.46018606819710933, 'ain': 0.4631578975230786}, {'hook': 1.0}, {'rabbit': 0.5951458940588901, 'goes': 0.48106915311809284, 'won': 0.4405415523075373, 'mad': 0.46935804605178627}, {'locked': 0.8040635503933838, 'niggas': 0.5945433600073137}, {'hundreds': 0.7071067811865475, 'setting': 0.7071067811865475}, {'paid': 0.6420127197175742, 'years': 0.5464594165532861, 'mad': 0.5377748355781309}, {'better': 0.44047148560889426, 'try': 0.5015729933906279, 'smoke': 0.5015729933906279, 'somebody': 0.5503034935086492}, {'pace': 0.5230405319636554, 'lookin': 0.4265433849407176, 'keepin': 0.5230405319636554, 'boy': 0.4174641140955615, 'cause': 0.31087241442764807}, {'enter': 0.5249565177008515, 'different': 0.4949493582718116, 'sound': 0.41056248176989174, 'chamber': 0.557569938063975}, {'nah': 0.9023585897296247, 'feel': 0.33489303591304803, 'just': 0.2712851452588307}, {'points': 0.5983893808676174, 'crazy': 0.4795370213214908, 'god': 0.3855652417956932, 'baby': 0.40162603968445665, 'just': 0.3193906113419576}, {'help': 0.8183200013129548, 'shit': 0.5747628862854366}, {'meant': 0.6551735331361851, 'don': 0.38105252553453184, 'said': 0.4768348361464736, 'say': 0.44516867960220285}, {'intro': 1.0}, {'tie': 1.0}, {'shit': 0.3984894924611291, 'make': 0.4556274410046412, 'pop': 0.578747103327578, 'feel': 0.45828240170199863, 'like': 0.2977226731067348}, {'metal': 0.579662984518692, 'fingers': 0.6314909234475194, 'produced': 0.5149854735643344}, {}, {'gorilla': 1.0}, {'left': 0.49044275866210874, 'stroke': 0.6225108873746205, 'went': 0.503881430115093, 'just': 0.3435834686959369}, {'crunch': 0.7895795118173856, 'rhymes': 0.6136482661250001}, {'mad': 0.9393808721815569, 'ain': 0.3428754540345775}, {'nod': 0.9441795650095434, 'people': 0.32943125082236735}, {'fears': 0.8539765611791141, 'let': 0.5203114768642865}, {'rated': 0.8132792740845468, 'hard': 0.5818735449773537}, {'master': 0.3854252206353726, 'return': 0.40937012714721843, 'ordered': 0.40937012714721843, 'prepared': 0.3958850551196892, 'york': 0.3280608541307096, 'doom': 0.2969689956044182, 'new': 0.2681706288077625, 'did': 0.3030257842355614}, {'outside': 0.5955933975050302, 'ugly': 0.6238077079859352, 'truth': 0.506095295676367}, {'rollin': 0.5947686001491148, 'hood': 0.49449102319790217, 'ya': 0.44435223472229585, 'break': 0.4519734856721751}, {'mics': 0.5670455430887303, 'hug': 0.5824342675629616, 'busy': 0.5824342675629616}, {'sleeps': 0.6366819673019926, 'villains': 0.5994411205136245, 'city': 0.4850839262950638}, {}, {'brown': 0.6214037364100923, 'chain': 0.5932981555898821, 'like': 0.29457286512669734, 'bitch': 0.4184274394447254}, {'sidewalks': 0.6951678655409433, 'trainwrecks': 0.7188474377218361}, {'believed': 0.5174634641993947, 'needed': 0.5004176867388568, 'job': 0.4672592556164247, 'thought': 0.3895094084242143, 'said': 0.33431259444941114}, {}, {'raekwon': 0.8513804809508824, 'verse': 0.5245486408864716}, {'sandals': 0.8601774312405048, 'll': 0.5099948889787883}, {'dissin': 0.7865646384210989, 'just': 0.4198292428936982, 'ain': 0.45283493283622667}, {'rapid': 0.5305841851533187, 'lucid': 0.5305841851533187, 'movement': 0.5051112404401936, 'eye': 0.42640764499636546}, {'everybody': 0.4449411635193866, 'ran': 0.5362381833748393, 'crowd': 0.5241879777236573, 'shots': 0.48959466470423174}, {'sign': 0.7139175364752178, 'fine': 0.7002297845087397}, {'soul': 0.747309143664352, 'want': 0.6644765186187191}, {'names': 0.5042377503494602, 'dying': 0.4476068989990124, 'end': 0.39766391335660056, 'lips': 0.4553166980523316, 'men': 0.42419626540039135}, {'throats': 0.5773502691896258, 'scars': 0.5773502691896258, 'necks': 0.5773502691896258}, {'royalty': 0.46613185872674073, 'loyalty': 0.46613185872674073, 'dna': 0.4024388342812831, 'inside': 0.3591184148278757, 'got': 0.523945731305966}, {'dream': 0.5785272778326137, 'cloud': 0.6398867587842433, 'stay': 0.5058172839436997}, {'world': 0.7428238813151568, 'know': 0.6694868791454287}, {'facts': 0.7071067811865476, 'exist': 0.7071067811865476}, {'testin': 0.5312674338604249, 'brother': 0.4561138727181628, 'type': 0.46028383903160586, 'start': 0.4385436772276429, 'ain': 0.32485886092791516}, {'infiltrate': 0.7828374218838544, 'state': 0.6222263019981076}, {'eses': 1.0}, {'eating': 0.5678585301626944, 'crab': 0.5569711288652119, 'ho': 0.47609237471616284, 'bitch': 0.3750412004956264}, {'gay': 0.5933886981086908, 'lookin': 0.483912829712467, 'little': 0.4352120296459567, 'boy': 0.47361241057218184}, {'enemies': 0.4791270785170072, 'tin': 0.4791270785170072, 'spitting': 0.43980399715115026, 'steel': 0.41680146913931715, 'men': 0.41680146913931715}, {'intro': 1.0}, {}, {'bloods': 0.4616975800145269, 'good': 0.34175984515169455, 'taste': 0.40984440756850604, 'won': 0.34175984515169455, 'ooh': 0.3496063159785032, 'sit': 0.33492885171026865, 'pussy': 0.3884088191549071}, {'century': 1.0}, {}, {'nah': 0.9023585897296247, 'feel': 0.33489303591304803, 'just': 0.2712851452588307}, {'feast': 0.49404521302336685, 'stars': 0.4548334399510776, 'seek': 0.47777085678515446, 'similar': 0.43855908371286517, 'sit': 0.35839476543425886}, {'did': 0.6870852342527168, 'things': 0.7265768237921502}, {'killin': 0.7587328949020826, 'dark': 0.6514018684295473}, {'suspect': 0.5040996854232608, 'lookout': 0.5040996854232608, 'mass': 0.5040996854232608, 'murderous': 0.4874941245476797}, {'plus': 0.5992284851731442, 'son': 0.5648440964388938, 'got': 0.39893489392407555, 'know': 0.4033947442456522}, {'album': 0.572214897395319, 'dropped': 0.572214897395319, 'took': 0.47234445266996955, 'cause': 0.3493292722198296}, {'stress': 0.42720988193630355, 'stunts': 0.4417619746568575, 'crab': 0.39890231044073493, 'fake': 0.35401901877485903, 'life': 0.27143088409607496, 'niggas': 0.266451397349515, 'shit': 0.2530989799907357, 'ain': 0.25432780009649986, 'cause': 0.25391486768011623}, {'guy': 0.5117906940183651, 'incomprehensible': 0.5117906940183651, 'li': 0.533627429965423, 'straight': 0.43747267002739487}, {'metal': 0.7124985877833157, 'tip': 0.7016735440408031}, {'verse': 1.0}, {'recorder': 0.578266619137724, 'sayin': 0.4762669752653522, 'tape': 0.5055226657870358, 'did': 0.42804710002310237}, {'keith': 0.6110197285510632, 'kool': 0.5908921117482151, 'goin': 0.5267840198744831}, {'truth': 1.0}, {}, {'sayin': 0.844090114975886, 'know': 0.5362013407293902}, {'naked': 0.5214630835880275, 'leave': 0.41447692338045644, 'real': 0.37145303112663886, 'clothes': 0.44957373150626184, 'tell': 0.3477830304428272, 'em': 0.3086068725454905}, {'goat': 0.572063565404258, 'billy': 0.572063565404258, 'wake': 0.5078152089236821, 'got': 0.29599031717225777}, {'wear': 0.5420627738502054, 'afford': 0.489471944842512, 'fronts': 0.5420627738502054, 'gold': 0.41563579444476534}, {'mc': 0.6534993299891698, 'honest': 0.756927094047839}, {'looking': 0.6546919186664858, 'diamonds': 0.664345755806823, 'like': 0.36058731033448294}, {'brain': 0.5102609117085458, 'used': 0.4781968585022287, 'weed': 0.5341304222980232, 'smoke': 0.4750434279902191}, {'bear': 0.7071067811865475, 'ton': 0.7071067811865475}, {'enterprise': 0.5392887070292631, 'guys': 0.4964860123708705, 'lives': 0.4649418990700334, 'splash': 0.4964860123708705}, {'surplus': 0.7071067811865475, 'huntable': 0.7071067811865475}, {'slugs': 0.5677886635892739, 'mask': 0.5040204205652061, 'bust': 0.46315166625553006, 'love': 0.35037723450795777, 'got': 0.2937784483859574}, {'flight': 0.5286715725103088, 'sight': 0.5615157941685635, 'brother': 0.45388522421088034, 'catch': 0.44631220525744486}, {'afford': 0.7104684352092938, 'stop': 0.570770513398146, 'know': 0.4116498798815252}, {'letter': 0.5639883406585882, 'true': 0.4558838364131576, 'sure': 0.43832250226865377, 'makin': 0.5309994946356726}, {'rhyme': 0.7225382974486779, 'rza': 0.6913308966912776}, {'camp': 0.6230574692974832, 'sort': 0.5530819966119924, 'similar': 0.5530819966119924}, {'black': 0.5172945576543149, 'free': 0.6431237264878346, 'people': 0.5646221861117642}, {'sheeran': 0.6391878881353444, 'ed': 0.6391878881353444, 'chorus': 0.42764200836933314}, {}, {'poet': 0.8666394253439723, 'ain': 0.4989349721551591}, {'run': 0.7042227909810339, 'money': 0.7099790564959525}, {}, {}, {'read': 0.5027913901175385, 'bend': 0.5369034127342913, 'little': 0.41364240372560984, 'ya': 0.4102171291566946, 'll': 0.34577075093836934}, {}, {'away': 0.6154626713305053, 'gave': 0.6405442444315933, 'say': 0.45924804966845295}, {'friends': 1.0}, {'neck': 0.5289944327706985, 'home': 0.4646173400395312, 'comin': 0.5161848174812281, 'catch': 0.4876975001310434}, {}, {'purpose': 0.6951678655409433, 'sense': 0.7188474377218361}, {'tonight': 0.7478542897422681, 'arms': 0.6638629085241077}, {'faded': 0.7528738202886038, 'drank': 0.6581648811081028}, {'admit': 0.6247246025483989, 'little': 0.5068631054854011, 'don': 0.36894872553373775, 'want': 0.46549522145288563}, {}, {'talkin': 1.0}, {'mad': 0.3935279649766375, 'mansion': 0.4989933687583051, 'moms': 0.46980621324157695, 'promised': 0.4505811253829782, 'room': 0.4152109465859535}, {'drink': 0.4393815760159596, 'wondering': 0.49917186863077395, 'speak': 0.4393815760159596, 'pack': 0.47520700543323097, 'gotta': 0.3726840603920508}, {'pushin': 0.7060175165433545, 'hood': 0.5714745286183016, 'shit': 0.4182775746731397}, {'faster': 0.6187719021298919, 'knife': 0.5696607220794974, 'turned': 0.5409325233838517}, {'help': 0.4264187656393728, 'try': 0.8016654177164811, 'trying': 0.41892671715713414}, {'sword': 0.561367317726093, 'neck': 0.48397673338495817, 'protect': 0.5428753022822917, 'ya': 0.3948666386299903}, {'scene': 1.0}, {'road': 0.4164630059136485, 'freaks': 0.47639140779312517, 'high': 0.3423784805539693, 'box': 0.4007701841336262, 'split': 0.4485262877802261, 'cut': 0.3472667505238544}, {'rebel': 0.5619609416791828, 'nas': 0.44645580553500075, 'life': 0.4004974019543277, 'death': 0.4966187437850661, 'like': 0.279013920943591}, {'rolled': 0.5168608263364479, 'shotgun': 0.5168608263364479, 'ridin': 0.5168608263364479, 'window': 0.44560594542309784}, {'da': 0.36764548420794324, 'dang': 0.7874699132695313, 'kid': 0.2939643669412625, 'come': 0.27239670591369775, 'rock': 0.29002227364975436}, {'york': 0.5378967736913648, 'state': 0.5335037335828932, 'new': 0.4396992637744188, 'mind': 0.4823954648851582}, {'draw': 0.5900874794254052, 'admit': 0.5158565024754396, 'used': 0.45546306355541727, 'hard': 0.422187438486619}, {'trapped': 0.5207218478146691, 'frame': 0.5207218478146691, 'mind': 0.38698611295709723, 'sick': 0.4480503911087125, 'bitch': 0.3273990070581154}, {'good': 1.0}, {'like': 1.0}, {'ll': 1.0}, {'man': 0.6909434760879865, 'nigga': 0.7229087859830242}, {}, {'dang': 0.471610733323636, 'gang': 0.42044392364817906, 'gucci': 0.4876752566633776, 'king': 0.3537738138385658, 'burger': 0.4876752566633776}, {'sugar': 0.575855191914068, 'cat': 0.5285934077613605, 'high': 0.4279596934144822, 'crack': 0.45368525216214217}, {'thang': 0.5806670712329364, 'compton': 0.5569054113263481, 'nothin': 0.4760362001363386, 'ain': 0.35506570009077315}, {'strangers': 0.6037348461986187, 'best': 0.48801178680384627, 'word': 0.4445556689209961, 'friends': 0.44689930482856327}, {'verbal': 0.5711250387419673, 'crazy': 0.45768793470790875, 'shot': 0.422760727480029, 'rich': 0.4752315016632068, 'like': 0.24447153550523107}, {'true': 0.77133961188459, 'tell': 0.6364237606640173}, {'yo': 0.9079007495665449, 'fuck': 0.41918519646631835}, {'chicks': 0.4589345742392013, 'seas': 0.443816798468246, 'flow': 0.381878138912059, 'cream': 0.39566545658092755, 'seven': 0.39566545658092755, 'hit': 0.30802698279624063, 'like': 0.19644811985101399}, {'briefcase': 1.0}, {'pigs': 0.5981717805244348, 'blasted': 0.5981717805244348, 'spot': 0.53327389019945}, {'represent': 1.0}, {'better': 1.0}, {'false': 0.6582945764309179, 'telling': 0.5369783680315059, 'born': 0.5275438208413201}, {'like': 1.0}, {'know': 0.6333176509349652, 'need': 0.7738919517698951}, {}, {'ring': 1.0}, {'explosive': 0.4833259442492861, 'high': 0.34736227332681774, 'kiss': 0.4225252015156411, 'pyramid': 0.4833259442492861, 'experiment': 0.4833259442492861}, {'doom': 0.4735153454818037, 'came': 0.49731714326962645, 'matter': 0.5431416611209187, 'thing': 0.483172859914746}, {'hands': 0.7444709334623354, 'high': 0.6676548728420386}, {'end': 0.53338598273895, 'murdered': 0.6226535439424284, 'time': 0.42205413124257407, 'man': 0.38687500298496263}, {'law': 0.657971181987924, 'fear': 0.5829854217453606, 'tell': 0.4766570273328597}, {'mold': 1.0}, {'long': 0.5150084551299954, 'night': 0.5488618806384261, 'berserk': 0.6584200233336359}, {'action': 0.5130004683243427, 'remain': 0.48299400854633834, 'packed': 0.45538547768896914, 'fat': 0.4111080917915029, 'rap': 0.3565971267142847}, {'frustrated': 0.8080898767207504, 'ma': 0.5890592085193497}, {'yah': 0.7824901926432949, 'mic': 0.6226629091386924}, {'leathers': 0.6270276287195006, 'run': 0.43927932812401305, 'kids': 0.5164270982533031, 'yo': 0.3836314336638608}, {'mountain': 0.6011226905384095, 'ma': 0.4531160497277776, 'make': 0.4071976141245396, 'woo': 0.5172305670107291}, {'fantastik': 0.5068545104539005, 'mr': 0.44694724196328695, 'doom': 0.41420645502432435, 'mf': 0.4615364112907852, 'intro': 0.3984392322587643}, {'centerfold': 0.5146836056742657, 'cross': 0.48457869570701245, 'enter': 0.48457869570701245, 'dead': 0.40287906086499903, 'time': 0.3211794260229856}, {'gandhi': 0.7642967536089412, 'kamikaze': 0.3821483768044706, 'actual': 0.3821483768044706, 'slim': 0.3518177207507465}, {'says': 0.641375888168982, 'simon': 0.6539131927349333, 'fuck': 0.401291049542169}, {}, {'nut': 0.519551443754355, 'reverse': 0.519551443754355, 'car': 0.45196736890875133, 'threw': 0.5058241710587104}, {'learn': 0.5750134225404279, 'easy': 0.5566885269846229, 'science': 0.5995477027076613}, {'liar': 0.4282973500919346, 'liars': 0.4282973500919346, 'lie': 0.40773511882882735, 'best': 0.35799461705261115, 'inside': 0.31412825963758567, 'told': 0.3228432505329495, 'room': 0.36852457031496677}, {'stepped': 0.4632974823512931, 'correct': 0.4632974823512931, 'sure': 0.36006721614466397, 'makin': 0.4361982531540299, 'came': 0.352983394101666, 'cash': 0.35524117580255116}, {'rebel': 0.5619609416791828, 'nas': 0.44645580553500075, 'life': 0.4004974019543277, 'death': 0.4966187437850661, 'like': 0.279013920943591}, {'herbs': 0.5768822964627236, 'mountain': 0.5578792017000013, 'flipped': 0.5431392562624032, 'like': 0.24693594441714453}, {'glow': 0.6686859251161604, 'til': 0.4898712668228014, 'light': 0.480578925782213, 'like': 0.28623272277463757}, {'greco': 0.4800077970803939, 'question': 0.46732532260020826, 'mr': 0.3885345945985219, 'ask': 0.4048851479566117, 'rza': 0.3805911552428481, 'let': 0.3024215863887164}, {'smash': 0.6707123996529839, 'big': 0.5133892989214093, 'boy': 0.5353282214723225}, {'scripts': 0.5644510459435498, 'rips': 0.5644510459435498, 'face': 0.3997818055187807, 'straight': 0.4505158614772725}, {}, {'ninjas': 0.6014683545619802, 'aiyo': 0.6014683545619802, 'building': 0.5258057026326436}, {'hook': 1.0}, {'sour': 0.48448478017389857, 'maintain': 0.43007238136288634, 'power': 0.3916194083224243, 'deal': 0.4031383917647381, 'gone': 0.4031383917647381, 'feel': 0.31922618590050017}, {'chill': 0.48269916550765884, 'wants': 0.48269916550765884, 'paul': 0.49364510897974334, 'ill': 0.41674235699330103, 'want': 0.3415308851399314}, {}, {'poker': 0.4295851675048433, 'strip': 0.44421816981408585, 'spades': 0.40112020600287057, 'spit': 0.3503298506903737, 'playin': 0.4089611091035032, 'coke': 0.4089611091035032}, {'tight': 1.0}, {'chorus': 1.0}, {'king': 0.6079712110250172, 'sit': 0.6079712110250172, 'let': 0.5106290367082036}, {'plastic': 0.514156494750489, 'trap': 0.47334851348816204, 'gas': 0.4972196522567549, 'snack': 0.514156494750489}, {'crooks': 0.5167401679866572, 'robbing': 0.5167401679866572, 'brains': 0.4757271236937433, 'stop': 0.37485834578317895, 'let': 0.3148398354036848}, {}, {'success': 0.5527212030739278, 'boys': 0.5301031248303719, 'doing': 0.4531259206543653, 'white': 0.4562530534130362}, {'buy': 0.5580874686493152, 'ass': 0.45630459293289627, 'yo': 0.37088911417249837, 'girl': 0.46790032047675645, 'world': 0.35190204729587987}, {'doom': 0.6000037264753071, 'mf': 0.668564102078633, 'verse': 0.43933764877089254}, {'hurt': 0.6317615082216588, 'truth': 0.5125482151105398, 'don': 0.36121423350884774, 'want': 0.4557367676928319}, {'motherfucker': 0.747228103247103, 'die': 0.6645676502191006}, {'stage': 0.6509450948213942, 've': 0.5030444151284209, 'spit': 0.5685215914422874}, {'gza': 0.7561748734468172, 'hook': 0.6543695903445467}, {'knew': 0.5525572263097623, 'shoulda': 0.5761333608264483, 'world': 0.35522559944545823, 'bring': 0.48638013497088745}, {'nas': 0.8480161945566294, 'like': 0.5299703140456954}, {'switch': 0.49603843242994705, 'ya': 0.38640294088204996, 'niggas': 0.3313345899500849, 'cut': 0.4004390187768664, 'light': 0.39480227403437557, 'like': 0.23514416424012993, 'need': 0.351202233783998}, {'jet': 0.496003912956276, 'stash': 0.5634992762408563, 'losing': 0.5634992762408563, 'em': 0.34484380476401966}, {'leavin': 0.5184289980947909, 'catch': 0.4261015493664365, 'got': 0.2773764220494688, 'service': 0.5184289980947909, 'll': 0.3178440649584442, 'nigga': 0.32083903808313585}, {'record': 0.5613805008069839, 'check': 0.4760298309593008, 'deal': 0.5262231244569308, 'better': 0.42583653746167077}, {'shot': 0.7949194269942865, 'fuck': 0.6067150110118217}, {'beef': 0.5817633448083832, 'til': 0.4943434451050715, 'shit': 0.3866081983572129, 'die': 0.5174070640047365}, {'let': 1.0}, {}, {}, {'christ': 0.603225870876051, 'jesus': 0.5553485605882433, 'man': 0.345056216455321, 'times': 0.4567742685878166}, {'thinkin': 0.6822663575606825, 'mind': 0.5687470250414399, 'world': 0.45939029032772416}, {'kid': 0.5310475697306235, 'cormega': 0.7355119785898566, 'man': 0.4207262863597102}, {'wouldn': 0.6762292641996634, 'relate': 0.7366912394212258}, {'ballers': 0.7874432195491233, 'dead': 0.6163871964813281}, {'rub': 0.5271714959474278, 'titties': 0.5329781238267461, 'girls': 0.5392902876968959, 'yeah': 0.3836541658557509}, {'end': 0.49433036515293066, 'probably': 0.5162485065201611, 'gun': 0.4718182373744966, 'song': 0.5162485065201611}, {'mix': 0.5897658460610934, 'kill': 0.45889721445049875, 'pain': 0.501988652628837, 'rap': 0.43542736021212586}, {'gone': 0.5224418209593354, 'miss': 0.5224418209593354, 'did': 0.46475850931971097, 'rhymes': 0.48796374398136105}, {'government': 0.5607849442849997, 'cheese': 0.6091309321702022, 'eatin': 0.5607849442849997}, {'packs': 0.4955914681302052, 'forever': 0.4293746030783634, 'quick': 0.4538132777807722, 'talk': 0.415126697808866, 'niggas': 0.31748960525709885, 'shit': 0.301579560278404}, {'injure': 0.7071067811865475, 'youthful': 0.7071067811865475}, {'race': 0.5203075127180515, 'called': 0.4285311949349201, 'problem': 0.46187186923670515, 'straight': 0.4016029182049786, 'damn': 0.413558435621668}, {'aight': 0.7356995848517206, 'thanks': 0.6773079955596315}, {'large': 0.5388635368179948, 'coffee': 0.5828003303878577, 'peace': 0.4919916574559271, 'fuck': 0.357650769021367}, {'ihop': 0.7356995848517206, 'fed': 0.6773079955596315}, {}, {'monch': 0.6375187007658557, 'pharoahe': 0.6333146352492639, 'verse': 0.4387282518289733}, {'timing': 0.8094453603651305, 'think': 0.5871952048368276}, {'poet': 0.5249215633787094, 'thug': 0.5076301084787296, 'poor': 0.42066141375215127, 'dream': 0.44682669660119967, 'man': 0.3002647222875608}, {'smack': 0.8420313562508721, 'niggas': 0.5394285820109247}, {'assassins': 0.7891262245348016, 'ass': 0.6142310654399125}, {'strictly': 0.6110369776112015, 'destiny': 0.6110369776112015, 'living': 0.5032570158314102}, {'goddamn': 0.43572014875811493, 'buy': 0.4442373947464189, 'food': 0.40593912029479723, 'stamps': 0.48253566919804053, 'don': 0.24912616154956152, 'man': 0.27601921661019835, 'cause': 0.2773506721363413}, {'sits': 0.6525910087658107, 'hip': 0.4884035964973101, 'clip': 0.5792986295569104}, {}, {'blades': 0.5182532055872346, 'shoulder': 0.5011814132350573, 'arms': 0.46004828097148853, 'laughed': 0.5182532055872346}, {'capone': 0.7954359939482075, 'hear': 0.6060376057074571}, {'rub': 0.626005244369237, 'titties': 0.6329004948380074, 'yeah': 0.45558138422900624}, {'bought': 0.6017505828271587, 'new': 0.4186851911667212, 'future': 0.5884075399323686, 'just': 0.3411385550118881}, {'thinkin': 0.7079713089618721, 'time': 0.5124431376462142, 'em': 0.48598215642769915}, {'understand': 1.0}, {'rollin': 0.4417287254465899, 'dice': 0.43193396080539354, 'better': 0.3159211297352272, 'life': 0.5765441723263649, 'fuck': 0.2650676487188768, 'live': 0.34035067998208346}, {'mountain': 0.4218145148631528, 'hill': 0.37129000645681304, 'yeah': 0.5282756280522012, 'tell': 0.5818129388679208, 'em': 0.2581371943908669}, {'gun': 0.5203622574651422, 'change': 0.6364337759187787, 'fame': 0.5693638290895787}, {'locked': 0.5303321829299393, 'block': 0.4985110942755465, 'shit': 0.37248906987707353, 'deep': 0.46725505610907436, 'got': 0.33639124542053844}, {'jack': 0.47035174132312446, 'noodle': 0.499572788288084, 'master': 0.47035174132312446, 'king': 0.36240462928517087, 'slang': 0.42027180817104104}, {'ah': 0.4538552576252222, 'yes': 0.38967581082321257, 'young': 0.4091321918270964, 'turn': 0.38967581082321257, 'tried': 0.43357312722087943, 'people': 0.367350136800233}, {'conflict': 0.7718991815109741, 'save': 0.6357449595417082}, {'medina': 0.675485678022293, 'set': 0.5510013449900122, 'live': 0.49001695542701446}, {'chances': 0.6188632748415562, 'taking': 0.5267922905764716, 'tough': 0.5826646802763823}, {'mistake': 0.5932917585724583, 'livin': 0.48763193896001783, 'deep': 0.44091806875971906, 'heart': 0.4645548815342414}, {'doom': 0.6000037264753071, 'mf': 0.668564102078633, 'verse': 0.43933764877089254}, {}, {'repeat': 0.6230574692974832, 'record': 0.5530819966119924, 'minute': 0.5530819966119924}, {'wrongs': 0.8455485335439159, 'right': 0.533898564730917}, {'napalm': 0.7071067811865475, 'tumblers': 0.7071067811865475}, {'lick': 0.31866214048087094, 'wit': 0.3529004789961605, 'house': 0.29065285482295056, 'bish': 0.575729863418619, 'ya': 0.49646148435067794, 'hit': 0.2368591861982453, 'tell': 0.23536239072864618}, {'rough': 0.6921857188283722, 'neighborhood': 0.7217194265433415}, {'left': 0.5541424489081809, 'neck': 0.6270532804287885, 'night': 0.5474763280924021}, {'lookin': 0.4985595726571871, 'outta': 0.5708400757025445, 'face': 0.432998045662834, 'boy': 0.48794738746709443}, {'chain': 0.7115963499778873, 'ran': 0.7025885244566327}, {'loyalty': 0.5868344525768794, 'passion': 0.5658369794466721, 'love': 0.39334992780359435, 'tell': 0.42512312599571445}, {'miles': 0.47331621042514366, '000': 0.4861612681814305, 'sound': 0.3701751887283065, 'inside': 0.35656768141164874, 'home': 0.38067036509993635, 'deep': 0.3613016435423026}, {'wreck': 0.6951678655409433, 'mark': 0.7188474377218361}, {'rub': 0.5271714959474278, 'titties': 0.5329781238267461, 'girls': 0.5392902876968959, 'yeah': 0.3836541658557509}, {'enemy': 0.5766006628609662, 'sounds': 0.5530054057307071, 'said': 0.39566187231644284, 'like': 0.26214903009392404, 'say': 0.36938633655939707}, {'new': 0.3816711547295618, 'famous': 0.548552575186193, 'feel': 0.38389516896559567, 'want': 0.37951889554083895, 'people': 0.4065691956453233, 'just': 0.31098006082167473}, {'vital': 0.4762011547200054, 'force': 0.43605756112350447, 'level': 0.4656420084303165, 'high': 0.36350383964778843, 'mind': 0.36350383964778843, 'right': 0.3193645264239056}, {'holes': 0.5455936968544182, 'windows': 0.5311783515642094, 'oh': 0.387815102644501, 'bullet': 0.5194001568570166}, {'real': 0.5953825738002496, 'shit': 0.4788702369523102, 'straight': 0.6451378821432115}, {'bar': 0.7278543076181246, 'mouth': 0.6857318039013067}, {'dick': 0.5967955865372716, 'right': 0.4945970034950662, 'fuck': 0.4425438742423969, 'ain': 0.45095870253701187}, {'rat': 0.6072910537991992, 'jesus': 0.6191620845661872, 'did': 0.4978311852537079}, {'petty': 0.598538069177335, 'scrambling': 0.6357228130469911, 'cash': 0.4874512126532134}, {'pumpin': 0.6188632748415562, 'packs': 0.5826646802763823, 'actually': 0.5267922905764716}, {'came': 0.6712772949410959, 'america': 0.741206309536397}, {'cali': 0.45057671313879505, 'cool': 0.38354245346934435, 'fools': 0.43573425388817427, 'ladies': 0.4148149825086457, 'talk': 0.3553444756763033, 'tell': 0.3005062863974066, 'll': 0.2671446755610094}, {'doomsday': 1.0}, {'write': 0.6181089886413039, 'time': 0.4683279710017426, 'words': 0.6313558344849721}, {'sky': 0.49228162425086947, 'limit': 0.6034997732011741, 'ruled': 0.5203007720784012, 'world': 0.35033403024210613}, {'majestic': 0.6077121616789618, 'madam': 0.6077121616789618, 'interlude': 0.5112453981161754}, {'check': 0.7759961061108454, 'yo': 0.6307376977007205}, {'stop': 0.48118092850207783, 'save': 0.5463057715442605, 'boy': 0.5119767117950813, 'oh': 0.45595478350687874}, {'love': 1.0}, {'wax': 0.6593382521348091, 'lay': 0.543038495788048, 'low': 0.5199829433395573}, {'caliber': 0.6227148881245244, 'doesn': 0.5862910047220259, 'matter': 0.518159266915201}, {'didn': 0.5620118751532349, 'look': 0.5127710552546033, 'man': 0.3941112893414888, 'caught': 0.5156401736612602}, {'doubt': 1.0}, {'tip': 0.5546581522101489, 'def': 0.5128577934369852, 'mos': 0.5084533984727507, 'hook': 0.4132872602431389}, {'fact': 1.0}, {'moët': 0.47949831100703366, 'drinking': 0.47949831100703366, 'smoking': 0.4414411080140264, 'marijuana': 0.46370314464726864, 'street': 0.3609319621235938}, {'maximillion': 0.7015003257449414, 'didn': 0.5722217888143556, 'yeah': 0.424805269960061}, {'ambition': 0.5011686531698852, 'hustle': 0.47185426076307196, 'flow': 0.417020994486737, 'dna': 0.39834620704365864, 'inside': 0.35546633734215827, 'got': 0.25930871598809124}, {'broke': 0.6022463993522518, 'girl': 0.5698682508240294, 'heart': 0.55906122309637}, {'comin': 0.8491741991911221, 'know': 0.5281128472477414}, {'barrel': 0.5389127842014538, 'spit': 0.4394873229004126, 'load': 0.5032036098267535, 'bullet': 0.5130399897584886}, {'understanding': 0.6979113072730997, 'peace': 0.5608812423699806, 'love': 0.44534485417242675}, {'sun': 0.5996796326603037, 'walk': 0.5267003555088201, 'right': 0.4391998189348595, 'll': 0.4124010096094241}, {'moxie': 0.825028396539632, 'face': 0.5650912713033565}, {'butt': 1.0}, {'sound': 0.49596571512160165, 'like': 0.2883160676458346, 'bitch': 0.8190798828937021}, {'time': 1.0}, {'forgive': 0.7342418379186236, 'lord': 0.6788880050861715}, {'charge': 0.5519811328364664, 'session': 0.5519811328364664, 'rza': 0.42324086384948, 'niggas': 0.33293074685544727, 'cause': 0.31726636593147156}, {'strong': 0.4561338090324045, 'dear': 0.4791368039551544, 'born': 0.39704966660957625, 'stay': 0.3687407171310676, 'soon': 0.42715346277098243, 'll': 0.2937543810241459}, {'thankful': 1.0}, {'flies': 0.5988996978088951, 'frogs': 0.5988996978088951, 'rise': 0.5316373801086869}, {'shaved': 0.516207949857735, 'sheep': 0.516207949857735, 'hair': 0.4394094453075477, 'just': 0.2755262341814777, 'clothes': 0.44504307506087}, {'window': 0.46830100072409364, 'check': 0.40887069778680535, 'ugly': 0.4904852456943991, 'yo': 0.332334351356267, 'got': 0.28104828677883353, 'hand': 0.42837937435822016}, {'bo': 0.9557859552377576, 'sky': 0.17268274060925068, 'hands': 0.16964875718980502, 'throw': 0.16695262217132165}, {'bish': 0.7661698609790609, 'just': 0.5013336065500895, 'like': 0.4020551691880194}, {'cray': 0.6346999752888787, 'poor': 0.5086355896582784, 'hard': 0.45410615564265, 'shit': 0.36363907615756286}, {'brains': 0.41755631510530705, 'playin': 0.41755631510530705, 'shorty': 0.7721542389263638, 'got': 0.2346727055696996}, {'junkie': 0.644162947363858, 'pill': 0.5718171222201693, 'school': 0.5080150351902504}, {}, {'method': 0.7013109220879099, 'intro': 0.5513017633426143, 'man': 0.45191742198717005}, {}, {'locked': 0.5303321829299393, 'block': 0.4985110942755465, 'shit': 0.37248906987707353, 'deep': 0.46725505610907436, 'got': 0.33639124542053844}, {'kids': 0.5359145297321221, 'don': 0.3359410700374239, 'matter': 0.5414360979256485, 'actually': 0.5538828090373962}, {'chase': 0.7198682609660667, 'taste': 0.6941107165673867}, {'jams': 0.5995638235686508, 'asked': 0.5995638235686508, 'shot': 0.4589294177352396, 'like': 0.2653869485725958}, {'ball': 0.7016735440408031, 'pro': 0.7124985877833157}, {'world': 0.3714793433986175, 'cold': 0.928441219156136}, {'love': 1.0}, {'voice': 0.5498684480777776, 'york': 0.5295695960410395, 'doom': 0.47937981340585495, 'new': 0.43289228135465113}, {'bullshit': 0.7528738202886038, 'wall': 0.6581648811081028}, {'story': 0.7071067811865476, 'similar': 0.7071067811865476}, {'holy': 0.4522556035547005, 'sins': 0.46251119259479523, 'washing': 0.4750630191558862, 'water': 0.39045865345674263, 'feel': 0.3236805740441397, 'need': 0.3140641965197747}, {'flow': 0.554528261418984, 'steel': 0.5606362154479448, 'way': 0.4305491246811069, 'feel': 0.43910464863421483}, {'gimme': 1.0}, {'spark': 0.42299514689148526, 'mental': 0.42299514689148526, 'building': 0.41656855033889895, 'plane': 0.4108197638270562, 'brain': 0.3924608269575793, 'born': 0.3818670910590553}, {'crazy': 0.7138876053670169, 'yeah': 0.26972649031603796, 'think': 0.6462291445958923}, {'quote': 0.602959515791359, 'magazine': 0.5830974106670967, 'michael': 0.5444604962621046}, {'release': 0.6110683129706114, 'grab': 0.5915943971041324, 'shots': 0.525938766586234}, {'sharp': 0.35085711453966645, 'razor': 0.7138008964456204, 'rza': 0.6061250410685306}, {'trife': 0.6231198541587432, 'shot': 0.4769601176839445, 'life': 0.3959036999461136, 'turn': 0.4769601176839445}, {'chapter': 0.35776965282695505, 'apparently': 0.36995639611327835, 'share': 0.3483168803525054, 'according': 0.36995639611327835, 'water': 0.29405415967488757, 'blood': 0.285553378830801, 'doesn': 0.3483168803525054, 'common': 0.30470030246545676, 'matter': 0.30783965287547854}, {'feel': 0.5733704881541477, 'answer': 0.819296212193047}, {'vapors': 0.7078957791571497, 'turn': 0.5240017759258637, 'day': 0.4736092320447657}, {'just': 0.7141346188904029, 'know': 0.7000083900227617}, {'write': 0.5308626272491839, 'watch': 0.5083240204277178, 'blow': 0.4910821419907728, 'live': 0.4675787538629718}, {'mouth': 0.550668265324591, 'blunt': 0.6037344041575411, 'imagine': 0.5764279927284455}, {'doctor': 0.464967410078181, 'drums': 0.48480632211103697, 'teeth': 0.5149253735840148, 'animal': 0.48480632211103697, 'like': 0.220415124905009}, {'drake': 0.8831423508934645, 'verse': 0.46910509276532597}, {'seize': 0.49934873982912265, 'property': 0.5163581056447022, 'cheese': 0.5163581056447022, 'chop': 0.46626113874211744}, {'thanks': 0.7342418379186236, 'drink': 0.6788880050861715}, {'essence': 0.5008536989928755, 'keepin': 0.5008536989928755, 'ghetto': 0.45974746300461217, 'inside': 0.3673436241524903, 'street': 0.38984878666688855}, {'love': 1.0}, {'exchange': 1.0}, {'pro': 0.5716042167937861, 'truth': 0.4717303228493607, 'song': 0.5303424052590341, 'black': 0.411674695642157}, {'women': 0.3436374183822475, 'grimy': 0.3644710301989881, 'clean': 0.38711413780363346, 'poor': 0.31022535908748006, 'pretty': 0.3384165096684141, 'hard': 0.27696694463067717, 'mind': 0.2782156607654933, 'don': 0.19986141002356977, 'look': 0.28810683146762117, 'clothes': 0.3337462476801196}, {'yeah': 1.0}, {'understand': 0.49603013911020694, 'mines': 0.5880638881456004, 'let': 0.3705006773486289, 'come': 0.40683882215277695, 'just': 0.32457107915976724}, {'speak': 0.5092567580476735, 'fact': 0.5230035190212133, 'bout': 0.46830248551875, 'matter': 0.4978128720022832}, {'attached': 0.7954359939482075, 'city': 0.6060376057074571}, {'rick': 0.48190743686309245, 'heard': 0.3846337882282763, 'word': 0.733872433144124, 'man': 0.28504968535385805}, {}, {'verse': 1.0}, {'pickin': 0.6298227841368363, 'cotton': 0.6090757753898842, 'don': 0.3251683609819766, 'fuck': 0.355830714570328}, {'bastard': 0.5441676550223506, 'passed': 0.5779745854686784, 'little': 0.40994285591074286, 'took': 0.4491923826909014}, {'saying': 0.48245107331005493, 'pain': 0.45419969779913455, 'wrong': 0.49547424773320176, 'em': 0.3354212726692547, 'bring': 0.4504902174912415}, {'pure': 0.7781001870756833, 'cut': 0.6281401904613225}, {'aw': 0.603649264604262, 'shit': 0.3896057206111892, 'straight': 0.524879998944294, 'baby': 0.4564164047424319}, {'especially': 1.0}, {'wise': 0.5627971686777228, 'judge': 0.5479272837035825, 'doubt': 0.5087582373880976, 'yeah': 0.35242033793654554}, {'able': 0.5772338395394052, 'space': 0.5046198063128177, 'second': 0.5314194854499247, 'time': 0.36021282049858805}, {'hip': 0.3496212393795254, 'hop': 0.3405330936736054, 'fiend': 0.4300765191310229, 'pipe': 0.4300765191310229, 'stuck': 0.40838760287429793, 'got': 0.24170924183249903, 'crack': 0.35592162465492794, 'like': 0.19996645170236285}, {'hoes': 0.46367360571224986, 'fellas': 0.4808799291424542, 'rock': 0.7441513831968259}, {'ground': 0.49692137674019504, 'stick': 0.4594589203689779, 'broke': 0.44028967578474393, 'kids': 0.4445538067316053, 'light': 0.3879221057761542}, {'bet': 0.698388099739352, 'cream': 0.7157192621010398}, {'dr': 0.523261283134643, 'dre': 0.5374617716356729, 'hell': 0.44174476053771344, 'yeah': 0.3365554585728246, 'said': 0.3590605289430247}, {'wanna': 1.0}, {'ooh': 1.0}, {'know': 1.0}, {'balls': 0.55864192535741, 'inside': 0.42084689194378244, 'young': 0.46114041363230396, 'deep': 0.42643425544621166, 'cause': 0.3410431607161873}, {'crowd': 1.0}, {'spine': 0.7165090064149914, 'climb': 0.6975778406215337}, {'glad': 0.5519357902502982, 'bread': 0.5196519228606966, 'face': 0.3780404392121808, 'break': 0.3948912078625421, 'god': 0.3556334106648074}, {}, {'martyr': 0.6208705850427423, 'face': 0.4252563301920338, 'little': 0.4403679109471649, 'talk': 0.48964566093075595}, {'hustlin': 0.8089499858324212, 'day': 0.5878774705852619}, {'verse': 1.0}, {'soft': 0.5386087558073628, 'nails': 0.5208664307448694, 'coffins': 0.5386087558073628, 'fuckin': 0.38535616987196375}, {'nas': 0.7902182861018185, 'verse': 0.6128254729613517}, {'wrap': 1.0}, {'storm': 0.5560934196384529, 'miles': 0.5235663638957977, 'outside': 0.47942989945276504, 'eye': 0.4321866989420847}, {'original': 1.0}, {'gone': 1.0}, {'haha': 1.0}, {'handcuffs': 0.7718991815109741, 'brain': 0.6357449595417082}, {'ground': 0.6109523344693619, 'underground': 0.6248066151375427, 'til': 0.4861624612069546}, {'outro': 1.0}, {'shoot': 0.276073362931868, 'coupe': 0.6486490730286635, 'hop': 0.7092516325949096}, {'diamonds': 0.3757435103322949, 'black': 0.30460065100945, 'baby': 0.31977804850813685, 'love': 0.5880169184685754, 'em': 0.5639267338359059}, {'history': 0.7948810679174556, 'kendrick': 0.6067652658700935}, {'cross': 0.49279777863124935, 'di': 0.5234133069018652, 'worshipped': 0.5234133069018652, 'dick': 0.39878525704594014, 'like': 0.22404840649961685}, {'ooh': 1.0}, {'streets': 0.4253045688646974, 'murder': 0.4378143581718183, 'street': 0.79210770194552}, {'killin': 0.7641165216356894, 'livin': 0.6450782443730179}, {'cover': 0.6347328138233347, 'wanted': 0.552165763895784, 'fame': 0.5405804512163731}, {'odds': 1.0}, {'whatcha': 0.7496247379276643, 'doing': 0.661863091799868}, {'tryin': 1.0}, {'church': 0.7665955459641947, 'pull': 0.6421302585206979}, {'cobra': 0.4657255416174801, 'snakes': 0.45038406441312795, 'strike': 0.4384842902054079, 'feeling': 0.38357686172638544, 'life': 0.2861547683128405, 'like': 0.39871002165839503}, {'flag': 0.4416097698387246, 'screamin': 0.46904519463026856, 'compton': 0.4235385175115454, 'everybody': 0.33128688354172403, 'stuck': 0.4100409211198475, 'city': 0.35736253939349005}, {'looking': 0.6546919186664858, 'diamonds': 0.664345755806823, 'like': 0.36058731033448294}, {'year': 0.7390723864187378, 'getting': 0.6736260146648967}, {'dominant': 0.7188474377218361, 'papers': 0.6951678655409433}, {'monster': 1.0}, {'bust': 0.5742960578333136, 'load': 0.6357370797902279, 'mic': 0.5157735969753675}, {'killers': 0.8406116318438471, 'god': 0.5416383335850818}, {'insult': 0.7777019815552689, 'line': 0.6286331425283018}, {'heh': 0.7188474377218361, 'forgotten': 0.6951678655409433}, {'apologize': 0.6576452506560778, 'yo': 0.40236407264325375, 'let': 0.4006905893871229, 'night': 0.49502821021840676}, {'punchlines': 1.0}, {'steel': 0.7631665565940962, 'real': 0.6462018313934975}, {'intro': 0.5446566356892519, 'rza': 0.5984749313646184, 'gza': 0.587517579079793}, {'rugged': 0.6316371859078196, 'beats': 0.549472820163426, 'ain': 0.3760280432254404, 'bitch': 0.39713599180652004}, {'food': 1.0}, {'spine': 0.7487544900980768, 'like': 0.6628474285670639}, {'earth': 0.6766235200660022, 'rise': 0.7363291465733871}, {'did': 0.644155095009176, 'know': 0.4552903407569599, 'long': 0.6146339717157934}, {'yah': 0.7452860713970229, 'common': 0.6667448325870938}, {'jollyin': 0.18098883352105158, 'ha': 0.6980515504734239, 'ah': 0.6779590149249892, 'sit': 0.14261363575856342}, {'ha': 0.9736231586994666, 'woo': 0.22816210212056123}, {'way': 0.729601873242508, 'yeah': 0.683872141968821}, {'unmarked': 0.5632760570530476, 'engraved': 0.5632760570530476, 'grave': 0.5000146240601189, 'say': 0.3397433484669885}, {'fate': 0.7165090064149914, 'escape': 0.6975778406215337}, {'bitches': 0.45748726376676807, 'crab': 0.5238131581542046, 'worry': 0.5609848616933165, 'got': 0.3001451969937013, 'ain': 0.3339671009369884}, {'minute': 0.6941107165673867, 'second': 0.7198682609660667}, {'listening': 0.6591062643416747, 'buttery': 0.637394627710097, 'yeah': 0.3991328361233502}, {'doom': 0.5319429336351584, 'catch': 0.5828366709206927, 'em': 0.4339624043497264, 'll': 0.4347582799633725}, {}, {'motherfucker': 0.5351480558476202, 'kiss': 0.542636624305565, 'ass': 0.46723444680952475, 'kid': 0.4481674062215715}, {'label': 0.4249368930807684, 'eggs': 0.4928866770169089, 'raw': 0.4249368930807684, 'swallow': 0.4640567145466382, 'read': 0.4249368930807684}, {'eminem': 0.8294126409761267, 'verse': 0.5586364390093137}, {'hip': 0.7163560548119379, 'hop': 0.6977349086395748}, {'relationship': 1.0}, {'id': 1.0}, {}, {'soul': 0.747309143664352, 'want': 0.6644765186187191}, {'watch': 0.8586590271734412, 'duke': 0.5125472417773403}, {'piece': 0.4158748511066029, 'quarter': 0.3988567054853679, 'cocaine': 0.3759961309198933, 'war': 0.3675468431927149, 'peace': 0.3432909206301981, 'dna': 0.35108757792131934, 'inside': 0.3132948505678703, 'got': 0.22854508821811945}, {'fully': 0.46438642588552403, 'clips': 0.46438642588552403, 'loaded': 0.46438642588552403, 'blood': 0.37064941631287485, 'lawn': 0.46438642588552403}, {'snatch': 0.6872634083894487, 'high': 0.5564220688921735, 'niggas': 0.46697268521688845}, {'soldier': 0.53636066193921, 'dna': 0.4630714582237803, 'yeah': 0.7056075856328602}, {'gauge': 0.5279823058296206, 'exist': 0.5105900269327949, 'outside': 0.45519420812659167, 'born': 0.4231142302038972, 'don': 0.27258960034193086}, {'lettin': 0.8741050720602999, 'know': 0.4857368865944379}, {'similar': 0.47616277026079434, 'shared': 0.536406486614496, 'didn': 0.43755286781402325, 'maybe': 0.4112987405974345, 'feel': 0.35343730870714046}, {'glock': 0.7579275914580521, 'took': 0.6523386897207585}, {'probable': 0.5220525072953407, 'orbit': 0.4806178290345955, 'keepin': 0.5048555620465776, 'planets': 0.491516575011825}, {'juice': 0.6728237038150582, 'got': 0.41381193739907773, 'lil': 0.6132437884321443}, {'mr': 0.3996456633286857, 'nigga': 0.9166697026642555}, {'sparkle': 0.8013040276873298, 'kid': 0.5982573486486086}, {'twice': 0.6855734067092374, 'don': 0.36600828665328533, 'forget': 0.6293067917273873}, {'blasting': 0.5103249049355452, 'stands': 0.5103249049355452, 'half': 0.3938977739993773, 'game': 0.35752042030881764, 'niggas': 0.30780554195040344, 'time': 0.3184594540129305}, {'rebel': 0.3987122539664525, 'uh': 0.7047037045132309, 'nas': 0.316761161352902, 'life': 0.28415359502347715, 'death': 0.35235185225661547, 'like': 0.1979608564520949}, {'sit': 0.25197186542027805, 'hol': 0.7798590405005259, 'bitch': 0.21119401497217802, 'lil': 0.5326604397044669}, {'case': 0.48800368749220996, 'face': 0.40583589902195927, 'wanna': 0.40440750667714015, 'play': 0.451434860643486, 'just': 0.3162561839699137, 'bitch': 0.36026765785844134}, {}, {'lady': 0.7157192621010398, 'babies': 0.698388099739352}, {}, {'stop': 0.41991094900327647, 'yes': 0.8569503652853624, 'don': 0.29884923681423686}, {'ak': 0.5298895898517967, 'verbal': 0.5479392716808545, 'spray': 0.5044499921328126, 'good': 0.40559805541170274}, {'world': 1.0}, {'order': 0.7139175364752178, 'quarter': 0.7002297845087397}, {'shout': 0.820072916719585, 'people': 0.5722590420980977}, {'sharp': 0.49668322689774386, 'razor': 0.5052383405054638, 'splash': 0.5151144943649366, 'ring': 0.482386825169267}, {}, {'filtered': 0.45604413614893285, 'brita': 0.45604413614893285, 'water': 0.36247967771010875, 'power': 0.36863022756556346, 'pure': 0.4117988192941778, 'juice': 0.3836527893400555}, {}, {'trigger': 0.5605062982290495, 'finger': 0.516019588931237, 'walkin': 0.46639567823154354, 'just': 0.2991704983013372, 'nigga': 0.33545276531558516}, {'soft': 0.5402331806069874, 'skin': 0.508633823090655, 'natural': 0.487819858393801, 'hair': 0.45986033785932706}, {'price': 0.6241409660396252, 'jewels': 0.5941764311627898, 'got': 0.33393577259525936, 'em': 0.38195460848506746}, {'patients': 0.6417586790150622, 'dime': 0.5908230661898439, 'crack': 0.4889518405394072}, {}, {'stayed': 0.5373504882194866, 'shogun': 0.5373504882194866, 'inside': 0.3941116461345414, 'came': 0.4233494725244872, 'just': 0.2965807480517224}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'space': 0.5919220644088324, 'liquor': 0.5634119315991246, 'court': 0.5763638304037904}, {'killed': 0.6446249174064894, 'son': 0.5733826248654962, 'said': 0.5056590564412254}, {'child': 0.5666895214110195, 'father': 0.5517945061506516, 'super': 0.5453359857119731, 'like': 0.27747877755327305}, {'villains': 0.5381083356513006, 'bags': 0.5527117498136251, 'yelling': 0.5160882351529253, 'want': 0.3722929951762277}, {'captain': 0.5227235013723065, 'bay': 0.5227235013723065, 'pose': 0.5055044528901663, 'taking': 0.4449556498510454}, {'cane': 0.5494155271654336, 'sky': 0.4634303616713531, 'shall': 0.4727396072601226, 'pass': 0.44805238671716774, 'like': 0.24318963973673335}, {'way': 0.7260826849074503, 'yo': 0.6876073986495407}, {'hurt': 0.4840369055950394, 'away': 0.43329564413385213, 'shit': 0.30711591253663034, 'gave': 0.4509534760040327, 'pussy': 0.4509534760040327, 'got': 0.2773533847335609}, {'stories': 0.6526765115212155, 'million': 0.6094291808891965, 'tell': 0.4501215888948447}, {'scared': 0.49904349090396805, 'weird': 0.45112609114367014, 'poor': 0.4135458809497868, 'hard': 0.3692107552012394, 'home': 0.3907573069195323, 'shit': 0.29565654695609916}, {'rick': 0.649434879729212, 'slick': 0.6715566446634564, 'verse': 0.3567155869869779}, {'bubble': 0.6528538663549699, 'rich': 0.56174218805063, 'thought': 0.5081609423691058}, {'attempt': 0.6422533263456491, 'kells': 0.6422533263456491, 'want': 0.41835550623351203}, {'raekwon': 0.8074440615670782, 'chorus': 0.5899441392539303}, {'affection': 0.5487191611688161, 'hip': 0.42465372109417004, 'hop': 0.41361516148402144, 'dick': 0.43230623687460373, 'long': 0.40076216772161977}, {'arsenal': 0.5302572141742963, 'force': 0.4571554956377103, 'police': 0.4788117583599065, 'said': 0.3425781282363498, 'city': 0.403999586305144}, {'lye': 0.5374212057532659, 'puff': 0.5255045838079321, 'life': 0.3507209814670722, 'die': 0.43767745435147254, 'bitch': 0.3470686086564821}, {'impossible': 0.6056867248172211, 'mission': 0.5896836380398721, 'niggas': 0.3777676524057142, 'say': 0.3777676524057142}, {'picked': 0.3872314635842751, 'mac': 0.7252576208493586, 'spit': 0.3317155049717952, 'told': 0.3066085275442311, 'brothers': 0.3464234570706405}, {'ridiculous': 0.5638442038906146, 'trip': 0.4929145408123001, 'split': 0.5308637887257543, 'head': 0.39660888418503165}, {'guns': 0.5897902670151314, 'born': 0.5234288349469963, 'sons': 0.6149550354946695}, {'frozen': 0.5749197122125861, 'leave': 0.45696610365789114, 'brain': 0.47351042459309134, 'niggas': 0.34676628924844616, 'll': 0.3408670166790212}, {'home': 0.3506445051501028, 'getting': 0.3550657031084919, 'morning': 0.43598279141187124, 'clock': 0.40481619201543695, 'just': 0.24716309998990926, 'night': 0.3485648794493491, 'performance': 0.46306863484453825}, {'bob': 0.6337931991905501, 'search': 0.6657556221777439, 'man': 0.39379643497438205}, {'try': 0.7524515110645961, 'hit': 0.6586476474539372}, {'sky': 0.424476074312155, 'palms': 0.520375333868168, 'clouds': 0.48993750293170885, 'hands': 0.41701815832778544, 'everybody': 0.36754138962037797}, {'raps': 0.5167480366267281, 'tongue': 0.5481663307298255, 'razor': 0.5481663307298255, 'nigga': 0.3633164107920544}, {'simply': 0.8699312914453449, 'just': 0.49317293940790646}, {}, {'trap': 0.6606279760995618, 'mad': 0.5659161594514092, 'oh': 0.49326420675573474}, {'world': 1.0}, {'dick': 0.5141305095483059, 'blow': 0.5141305095483059, 'open': 0.5504470589365767, 'bitch': 0.41030192981665536}, {}, {'illegal': 0.7614785693230284, 'cocaine': 0.648190086673465}, {'ether': 0.6630822168682353, 'soul': 0.5379587111662248, 'fuck': 0.4148720955186522, 'like': 0.314330308932249}, {'doin': 0.5034817000935308, 'poison': 0.5734364737266611, 'pick': 0.49508117006053565, 'tell': 0.4154171678233233}, {'verse': 1.0}, {'bank': 0.4916795011141364, 'dug': 0.5164750782973773, 'pockets': 0.4740867591270505, 'ends': 0.5164750782973773}, {'holding': 0.5796790510263574, 'stop': 0.49401242101190634, 'hot': 0.5412771495777243, 'know': 0.356290573874963}, {'steel': 0.41088966627078244, 'held': 0.4496549993501509, 'lunch': 0.4598516157036317, 'summer': 0.4723312655295469, 'free': 0.38821340009138644, 'like': 0.20906957415846514}, {'valuable': 0.6638111309820571, 'start': 0.5159031401714309, 'understand': 0.5414782842788614}, {'past': 0.806495074597004, 'time': 0.5912408093583977}, {'taught': 0.7844989049381191, 'look': 0.6201302025791776}, {'water': 0.4229564810008841, 'goes': 0.4301332003676567, 'nose': 0.48989678394621294, 'cause': 0.305857192374527, 'cold': 0.3860236023725212, 'hold': 0.39183101266246995}, {'express': 0.7055729517344345, 'song': 0.5811179210944071, 'cause': 0.40554749606386686}, {'intro': 0.694955725043769, 'kid': 0.7190525295337532}, {'sprinkle': 0.51593584579877, 'snow': 0.49894038965578047, 'little': 0.3659403361515699, 'inside': 0.3659403361515699, 'chop': 0.4658798464675175}, {'devil': 0.41843311301280933, 'knock': 0.7994678933147572, 'let': 0.2957100882795977, 'said': 0.31356077749448535}, {'check': 1.0}, {'poetry': 0.6370174842437035, 'fell': 0.5889933081301064, 'deep': 0.49728825418038625}, {}, {'brooklyn': 0.6007843753080992, 'number': 0.5288230412357064, 'young': 0.48282451266751025, 'man': 0.35536574878743804}, {'voice': 0.4269094237344401, 'machine': 0.46327614954400653, 'doom': 0.37218312963116124, 'new': 0.3360909232348987, 'yes': 0.37977393736402, 'amazing': 0.4554315744725049}, {}, {'monk': 0.5335717340801882, 'buddha': 0.49122278867394936, 'lab': 0.4818047041640109, 'old': 0.38524453837378486, 'shit': 0.3056996061113731}, {'gonna': 0.48253225588361714, 'hit': 0.495798727242398, 'ain': 0.4252780096426915, 'em': 0.4371690899331545, 'know': 0.3864816236485945}, {}, {'boxes': 0.7071067811865475, 'optics': 0.7071067811865475}, {'science': 1.0}, {'vehicular': 0.6791483373276103, 'bang': 0.548970124369917, 'ain': 0.3909940476563049, 'like': 0.29071118511636207}, {'grace': 0.5937985207610176, 'fall': 0.5247943491112215, 'rejoice': 0.6099132789855921}, {'shootin': 0.5170745080230648, 'walkin': 0.4449120706656718, 'punk': 0.4498126369011994, 'fuck': 0.30208226810230765, 'ain': 0.30782626449425965, 'fuckin': 0.382550765779334}, {}, {'rough': 1.0}, {'murderers': 0.6977404487808644, 'ayy': 0.5690124467327626, 'say': 0.43518168803187596}, {'wanna': 1.0}, {'gun': 0.8240892672377769, 'got': 0.5664599541216518}, {'steelo': 0.8694133601735633, 'know': 0.4940854269776773}, {'penis': 0.5737561116150977, 'eatin': 0.5282177805991747, 'yes': 0.42470831199558046, 'mean': 0.4597964227406197}, {'enter': 0.6580434566499966, 'hood': 0.5470977824080842, 'won': 0.5173614071848428}, {'miles': 0.6168338573589353, 'bob': 0.6031563623093574, 'monch': 0.5056860637010278}, {'def': 0.643525986503126, 'mos': 0.6379994201711342, 'verse': 0.42288419757242635}, {'lot': 0.5325293566117972, 'saying': 0.5911870262202618, 'people': 0.4846412649508861, 'know': 0.3633637690830965}, {'mental': 0.6638629085241077, 'freestyle': 0.7478542897422681}, {'rook': 0.8190109561065224, 'game': 0.5737778784316107}, {'gotten': 0.45628030005132303, 'niggas': 0.2923057834236675, 'want': 0.31567985160536954, 'got': 0.2507500060413342, 'cause': 0.2785528057216185, 'em': 0.2868070097456392, 'need': 0.619666326427548}, {'raise': 0.4621470173089702, 'type': 0.4174826647952357, 'better': 0.3446267200665042, 'livin': 0.40679791694393536, 'kids': 0.42152591370303405, 'place': 0.38754630904059995}, {'seize': 0.5527624441817743, 'told': 0.4166629193803706, 'moment': 0.4474246740693747, 'somebody': 0.4808582297897097, 'know': 0.2990521957669569}, {'rush': 0.6332927981713034, 'make': 0.4506235870079711, 'dark': 0.5560360201856699, 'like': 0.29445298244798174}, {'nerve': 0.3577080586043296, 'lot': 0.29131852412021964, 've': 0.7953644786732539, 'got': 0.39315875721998306}, {'sample': 0.773352509801774, 'intro': 0.6339762579019005}, {'forgotten': 0.5268240063785468, 'donna': 0.5447692649326954, 'good': 0.40325153885567794, 'rotten': 0.5129045824502599}, {'revolution': 0.5830974106670967, 'scratches': 0.602959515791359, 'dj': 0.5444604962621046}, {'movin': 0.5885969491876056, 'happens': 0.5603388556286399, 'guess': 0.483773232058557, 'just': 0.32486529242664075}, {'nasty': 0.4917184855982976, 'old': 0.7712665835619802, 'time': 0.33330223568805767, 'like': 0.22862722429074436}, {}, {'world': 1.0}, {'connection': 0.654918782232665, 'charged': 0.654918782232665, 'ain': 0.37704479489546927}, {'skit': 1.0}, {'verb': 0.5507226298596398, 'hear': 0.41959205586412274, 'mean': 0.4413378611671169, 'love': 0.33984593988081774, 'just': 0.2939484607425456, 'need': 0.3520895106222955}, {'dawn': 0.6492868167978733, 'til': 0.5441064326620448, 'break': 0.5313895176499707}, {'flying': 0.5361621688687518, 'bloody': 0.5361621688687518, 'bastards': 0.5361621688687518, 'come': 0.3709317808194226}, {'orbit': 0.5010384799357696, 'flood': 0.5442336486503639, 'corporate': 0.5124002954735034, 'trying': 0.4361377242328759}, {'went': 1.0}, {'hmmm': 0.5327675713420481, 'steel': 0.4481973313840668, 'flashing': 0.5327675713420481, 'busting': 0.4810785611444275}, {'intro': 1.0}, {'love': 0.7333826978723307, 'man': 0.6798160180971773}, {'gza': 0.817049897585536, 'verse': 0.5765669647625201}, {'dancing': 0.5027884308124738, 'yoga': 0.519914963164307, 'vulture': 0.519914963164307, 'ball': 0.4545114475971366}, {'range': 0.45316965998327374, 'phone': 0.38906387901737577, 'clip': 0.4272659255271736, 'jewels': 0.4431212073779341, 'money': 0.33995888366860294, 'flip': 0.38572261948805125}, {'fortune': 0.595980448293702, 'return': 0.595980448293702, 'pray': 0.5381585365886861}, {'verse': 1.0}, {}, {}, {'def': 0.5837280302178652, 'mos': 0.5787150054970271, 'produced': 0.5695178040680968}, {'views': 1.0}, {'yeah': 1.0}, {'just': 1.0}, {'police': 0.4669675805221332, 'blue': 0.41801568486441826, 'true': 0.41801568486441826, 'bleed': 0.5001053133097374, 'cause': 0.29724072364528825, 'll': 0.30660998183712596}, {'crawl': 0.7931874368197629, 'baby': 0.6089775776424736}, {'maker': 0.6510161827315925, 'power': 0.57159729017576, 'money': 0.49945416975465734}, {'city': 1.0}, {'mathers': 0.6384714007383401, 'marshall': 0.6216020971656813, 'oh': 0.4538337837121085}, {}, {}, {'carbon': 0.5994621176275332, 'dreaming': 0.551883531898512, 'alike': 0.5797152203873362}, {'vibe': 0.6134463395667418, 'kill': 0.5342012255574613, 'don': 0.3764740185225503, 'bitch': 0.4433733781617415}, {'windows': 0.5141775833293757, 'heat': 0.46487250052066637, 'beef': 0.4708325898596689, 'busting': 0.4931367606756611, 'like': 0.23376864344385148}, {'juice': 0.5033872202278395, 'gotta': 0.8640609391190465}, {'gon': 0.7227940345050647, 'hol': 0.6910635163889721}, {'thankful': 1.0}, {'going': 0.8398831523414221, 'hip': 0.38881460769959286, 'hop': 0.37870765935276146}, {'child': 0.6095898936488431, 'lie': 0.6419643929265921, 'tell': 0.465061157027314}, {'desire': 0.5984594172454372, 'yes': 0.5138315679764046, 'yeah': 0.42035804637417196, 'said': 0.4484668978973261}, {'nice': 0.41144066968494236, 'sweet': 0.394539511420968, 'wind': 0.41144066968494236, 'lord': 0.394539511420968, 'grace': 0.43638497068158466, 'daddy': 0.39959786770834077}, {'pull': 0.7043368046543567, 'eyes': 0.7098659490419937}, {'shining': 0.48023658629555915, 'diamond': 0.48023658629555915, 'sparkle': 0.48023658629555915, 'deep': 0.356898583399651, 'like': 0.42513746567067684}, {'thoughts': 0.6936758126783578, 'mind': 0.5782581105340944, 'just': 0.4294547991425395}, {'revolution': 0.539125772257193, 'squeal': 0.5574900670866293, 'start': 0.43327215046676865, 'probably': 0.45915517030491176}, {'feeling': 0.9542275736564455, 'don': 0.2990814900219217}, {'meal': 0.6943474088362986, 'friends': 0.5139729407243316, 'cold': 0.5036998034995652}, {'drive': 0.77539132144147, 'getting': 0.6314810358460899}, {'say': 1.0}, {'love': 1.0}, {'talking': 0.7071933203586012, 'niggas': 0.5126179400553474, 'shit': 0.48692962034937776}, {'means': 0.7485216961104704, 'don': 0.41045951316403956, 'make': 0.5208053940821316}, {'coats': 0.47744913320820487, 'jackets': 0.47744913320820487, 'rips': 0.4617214688677176, 'took': 0.3710656474377479, 'bullet': 0.43955457098716405}, {'island': 0.5029491813932185, 'staten': 0.5567571629659596, 'straight': 0.47590947918028315, 'ghostface': 0.45888315511504557}, {'better': 0.5616469514642308, 'let': 0.5081990479447196, 'moment': 0.652906141477484}, {'faced': 0.6660167018732193, 'screw': 0.6440774283388122, 'fuck': 0.3762791771150535}, {'prepare': 0.7810622132890558, 'ass': 0.6244532159994067}, {'did': 0.7568037933737028, 'need': 0.6536421179324153}, {'talk': 0.6496612246215188, 'kid': 0.5947710159288351, 'cause': 0.4734846690593583}, {'hood': 0.32677261082182263, 'round': 0.3769549997216852, 'sold': 0.7198112691349052, 'platinum': 0.41745655684430394, 'world': 0.2423351996215354}, {'house': 0.5219987807532267, 'motherfuckin': 0.5169918026967378, 'rough': 0.5723021330877822, 'cause': 0.3642897436103523}, {'ready': 0.5920853853215969, 'snap': 0.6003707035479832, 'moment': 0.5375778220963696}, {'hook': 1.0}, {'dummy': 0.5496884562940031, 'mentally': 0.5315811545290156, 'yo': 0.3363133630765075, 'runs': 0.5496884562940031}, {'coming': 0.4308988496748279, 'feeling': 0.453381002674642, 'don': 0.28420445933662497, 'understand': 0.44903220184344994, 'brothers': 0.453381002674642, 'right': 0.3475851279574295}, {'huh': 0.5475876598076821, 'streets': 0.5319412879527756, 'run': 0.4610348134868698, 'oh': 0.4523639262260151}, {'tapes': 0.700832286497831, 'box': 0.5895838588014503, 'shit': 0.40152830490889924}, {'mother': 0.3972134268164991, 'corporate': 0.42129517664936234, 'callin': 0.4474685381178483, 'sure': 0.3477652199073436, 'make': 0.2931281773660044, 'collect': 0.4327284653415991, 'll': 0.26530185416490704}, {'gonna': 0.6174875166665655, 'slow': 0.786580680388832}, {'develop': 0.5486375950604855, 'sort': 0.5036096228204116, 'blood': 0.43789437641012513, 'taste': 0.5036096228204116}, {'self': 0.5873935794960213, 'truth': 0.4847608795637422, 'smoke': 0.5073774233743882, 'let': 0.40316723907257773}, {'lovely': 0.7951242518265115, 'sippin': 0.3660080991713548, 'feelin': 0.3660080991713548, 'livin': 0.31599615003868925}, {'don': 0.79471771644627, 'sleep': 0.6069792015929591}, {'says': 0.641375888168982, 'simon': 0.6539131927349333, 'fuck': 0.401291049542169}, {'fucked': 0.7900243375631961, 'day': 0.613075481533745}, {'baby': 0.6710373325701494, 'yeah': 0.605439450509353, 'like': 0.4279625802147561}, {'drive': 0.6170918315834157, 'power': 0.5297974752207427, 'sex': 0.5818181044302005}, {'real': 0.5099965767837182, 'shit': 0.410193701186865, 'wild': 0.6355479731619735, 'man': 0.4095404656260688}, {'minimum': 0.4249156104235055, 'sets': 0.4513138947657756, 'sex': 0.40062691214862883, 'tv': 0.40062691214862883, 'adrenaline': 0.40752750504593477, 'ill': 0.35871991799356695}, {'cease': 0.7446869353300094, 'til': 0.5455486928831801, 'don': 0.3844710548822266}, {'working': 0.48904947220103817, 'set': 0.43331489373755117, 'class': 0.5137124160636686, 'poor': 0.4257016823745612, 'better': 0.35769602711044646}, {'big': 0.5697552999278857, 'ooh': 0.5828363227651926, 'ass': 0.5793795984237219}, {'vapors': 0.5836882144232434, 'herbal': 0.5836882144232434, 'papers': 0.5644609257396048}, {'trife': 0.6056639080764834, 'intro': 0.4370377275834369, 'killah': 0.4742424296319862, 'ghostface': 0.4661151929072656}, {'ve': 0.5770456967881802, 'dreams': 0.6956671509463018, 'got': 0.42786151838240716}, {'amazing': 0.43571761180557533, 'half': 0.7577229793345333, 'nas': 0.3361966654937756, 'man': 0.28077187113435476, 'like': 0.21010713419925572}, {'door': 0.8331843480848922, 'fuck': 0.5529953364236928}, {'alcohol': 0.5583355127727122, 'kill': 0.42296270743258246, 'won': 0.42737166871167603, 'ayy': 0.45532670031628175, 'nigga': 0.34553589691928793}, {'father': 0.5854403356348293, 'little': 0.4878120474814, 'famous': 0.6475330259869243}, {'ki': 0.5154206675566199, '20': 0.450582518931289, 'pound': 0.5154206675566199, '16': 0.5154206675566199}, {'killa': 0.4511855645462644, 'holding': 0.4326517656423878, 'bee': 0.478539468417751, 'son': 0.37235189275233155, 'lounging': 0.49152627718343345}, {'corners': 0.7879131331696775, 'got': 0.43299967778604587, 'know': 0.4378403517446999}, {'dont': 0.46957254134138804, 'looking': 0.46274902090784714, 'diamonds': 0.46957254134138804, 'love': 0.3674269696805043, 'like': 0.25487014586792056, 'need': 0.38066419739959284}, {'mumble': 0.5269869821696626, 'songs': 0.5153017256717799, 'nothin': 0.4320287699123332, 'em': 0.3312515585572259, 'fuckin': 0.4004652282843571}, {'happened': 1.0}, {'won': 0.41052796900409644, 'maybe': 0.8504967707458381, 'll': 0.3288191442362701}, {'check': 1.0}, {'wack': 0.49664919925293227, 'funny': 0.5216954001320944, 'younger': 0.5394659624613165, 'true': 0.4360618737153258}, {'rocked': 0.8763814396379109, 'got': 0.481617661904319}, {'relax': 0.49597167604872966, 'mac': 0.4541614343025032, 'riddle': 0.5267843856994702, 'sit': 0.38214471341970524, 'come': 0.3524388133255334}, {'explain': 0.6925028711575197, 'make': 0.45364553516311656, 'let': 0.4219286664346217, 'just': 0.369623730712549}, {'lost': 1.0}, {'pink': 0.5672833156326453, 'blue': 0.48703491599596854, 'pretty': 0.5267305869679464, 'baby': 0.40440266957332893}, {'product': 0.7173554966043018, 'sold': 0.6967073212559172}, {'bo': 0.4650050123921394, 'motherfuckin': 0.4200644479910699, 'big': 0.3811911850501874, 'love': 0.31778147489384223, 'forget': 0.45713116278445914, 'heart': 0.3899429607645208}, {'land': 0.5925535112605678, 'doom': 0.476040954216968, 'mf': 0.5304365274168358, 'man': 0.37536973317375916}, {'monch': 0.6375187007658557, 'pharoahe': 0.6333146352492639, 'verse': 0.4387282518289733}, {'fools': 0.7999464534476882, 'doom': 0.600071388766758}, {'beginnin': 0.38805035942115595, 'lose': 0.3243539559333848, 'sheep': 0.8025371148589325, 'sleep': 0.31645791046737365}, {'vocal': 0.8461273534155791, 'chorus': 0.5329807705742747}, {}, {'wack': 0.7139175364752178, 'add': 0.7002297845087397}, {'sky': 0.7133456454696501, 'hands': 0.7008123786645669}, {'family': 1.0}, {'bars': 0.597578263254448, 'jail': 0.597578263254448, 'case': 0.5346030663694284}, {'hitting': 0.48712107939279803, 'linen': 0.5116867737003667, 'real': 0.3769047147183993, 'feel': 0.34863389058659033, 'trees': 0.48712107939279803}, {'away': 0.5816138073638977, 'throw': 0.567455049677747, 'fuck': 0.40651418534596495, 'world': 0.41769170783174914}, {'machine': 0.5023827569301212, 'sub': 0.5380336805716205, 'gun': 0.4187885164441008, 'wanna': 0.3797300387914701, 'come': 0.37222654424936424}, {'maybach': 1.0}, {'gettin': 0.39443028227318794, 'quick': 0.4042184434188235, 'clapped': 0.4534106590709333, 'gunned': 0.4534106590709333, 'little': 0.3325472389789719, 'shorty': 0.3991015970340675}, {'sample': 0.7471589695947501, 'outro': 0.6646453747331061}, {'harder': 0.484422422917492, 'post': 0.5261851000869903, 'grows': 0.5261851000869903, 'close': 0.45999282284361204}, {'grandma': 0.5870499501400255, 'held': 0.5870499501400255, 'family': 0.557444806309277}, {'material': 0.492700432881207, 'kelly': 0.46388136421613124, 'shit': 0.28228318451376627, 'cause': 0.2831931501531866, 'takin': 0.44489872896852967, 'em': 0.2915848589838118, 'need': 0.3149945996240431}, {'foot': 0.6392543715383734, 'bed': 0.602713806375996, 'head': 0.47758760041780557}, {'crazy': 0.5700545361506648, 'vision': 0.6697336564347428, 'day': 0.47591454616622114}, {'world': 1.0}, {'unmarked': 0.5720188431687, 'engraved': 0.5720188431687, 'hey': 0.47597523375529827, 'say': 0.3450166126021667}, {'noon': 0.5306801573219414, 'high': 0.3813953462463134, 'quick': 0.45752013147692155, 'little': 0.3763981059674264, 'minute': 0.47107956398456613}, {'did': 0.644155095009176, 'know': 0.4552903407569599, 'long': 0.6146339717157934}, {'cups': 0.5774848183315404, 'styrofoam': 0.5774848183315404, 'stuff': 0.5214573491886297, 'like': 0.24719385544617173}, {'kardashian': 0.5950089272197874, 'ugly': 0.5372812723077859, 'lamar': 0.4358963842365897, 'oh': 0.4090080111263738}, {'killah': 0.6133673722639664, 'ghostface': 0.6028559090921084, 'chorus': 0.5102403546513391}, {'thousand': 1.0}, {'ruled': 0.9477318082736085, 'world': 0.3190680485201179}, {'meant': 0.7363291465733871, 'ask': 0.6766235200660022}, {'feel': 1.0}, {'good': 1.0}, {'know': 1.0}, {'rumor': 0.6578211944149187, 'start': 0.528662546280206, 'spit': 0.5364580024000561}, {'throne': 0.6791476019549081, 'don': 0.4167950974464981, 'caught': 0.6041857177254869}, {'scene': 0.6273618086105855, 'spray': 0.6396251727511544, 'need': 0.44418104358460747}, {'reload': 0.5731453120105782, 'fold': 0.5496914523795616, 'gold': 0.4667712744655608, 'need': 0.38918933160473623}, {}, {'cakes': 1.0}, {'pale': 0.5057780480252506, 'looking': 0.39308241610829003, 'wait': 0.39590805447863087, 'sick': 0.4208564586850833, 'pigment': 0.5057780480252506}, {'wall': 0.42758526595066865, 'sparkle': 0.47300222258961955, 'windows': 0.46050484514377105, 'brick': 0.46050484514377105, 'dreams': 0.41147334417359116}, {'holding': 1.0}, {'conviction': 0.7131739005996189, 'murder': 0.5934299509535036, 'know': 0.37312716440222776}, {'shine': 1.0}, {'medina': 0.6037605986188922, 'streets': 0.48803260303585827, 'deep': 0.43391764207312883, 'heart': 0.4571791747521945}, {'father': 1.0}, {}, {'worldwide': 0.8634476852700248, 'fuck': 0.5044383954476863}, {'guts': 0.6366819673019926, 'grimy': 0.5994411205136245, 'uh': 0.4850839262950638}, {'thankful': 1.0}, {'haters': 0.7280795387793957, 'fans': 0.6854926587577597}, {'pleasure': 0.8795322752246104, 'know': 0.47583923423591323}, {'suckin': 0.4431919732985257, 'late': 0.3934171622254037, 'dick': 0.3376651351083948, 'lips': 0.40019357088145446, 'great': 0.3820931442327251, 'don': 0.22881358246725406, 'live': 0.3215043464152721, 'let': 0.2700283364252516}, {'broker': 0.5451308901797514, 'brag': 0.559924885430422, 'cash': 0.4439562446513598, 'times': 0.4384282017418848}, {'spark': 0.42299514689148526, 'mental': 0.42299514689148526, 'building': 0.41656855033889895, 'plane': 0.4108197638270562, 'brain': 0.3924608269575793, 'born': 0.3818670910590553}, {'ironic': 0.509018920706085, 'gettin': 0.42821848430034026, 'shrink': 0.4792453498937608, 'think': 0.36925712845522213, 'cause': 0.29257265068627797, 'need': 0.3254273802668533}, {'addict': 0.4736301452958049, 'buddha': 0.4508915208829735, 'bitches': 0.3862488526959409, 'sneakers': 0.48976345606650845, '20': 0.42815289647014226}, {'facts': 0.5471244489036551, 'believe': 0.47595363386873996, 'shit': 0.32414194006438074, 'don': 0.29209429678808974, 'backwards': 0.5326686590125086}, {'lookin': 0.7605039628381755, 'better': 0.6493332907740299}, {'saturday': 0.509808646506829, 'spoon': 0.509808646506829, 'watchin': 0.4693457487190283, 'shared': 0.509808646506829}, {'world': 1.0}, {'dry': 0.5543833954837082, 'dick': 0.45879519114635536, 'spit': 0.47490347576271813, 'pussy': 0.5065892933150318}, {'wig': 0.7280795387793957, 'blown': 0.6854926587577597}, {'slid': 0.4800045027044683, 'dudes': 0.4800045027044683, 'monday': 0.496354943845903, 'hand': 0.39144718785307586, 'night': 0.37362042718315247}, {'hey': 0.7569278959803281, 'talk': 0.3586999535879571, 'rza': 0.34874970880148226, 'don': 0.2348228796445395, 'cash': 0.34874970880148226}, {'doctor': 1.0}, {'skin': 0.4308179143790904, 'large': 0.3895062865823386, 'living': 0.3768704769231891, 'face': 0.31341478094752817, 'flash': 0.4212650828979861, 'light': 0.32886095406032945, 'dark': 0.3698740311182598}, {'em': 1.0}, {}, {'planets': 0.5459537672102871, 'energy': 0.5798716615662659, 'away': 0.4687226643611218, 'feel': 0.38207643750365533}, {'ruled': 0.8294905586213092, 'world': 0.5585207365515701}, {'stretch': 0.7718991815109741, 'ghost': 0.6357449595417082}, {'don': 0.6211495994042353, 'want': 0.7836920155009608}, {'wrong': 0.7985745944365309, 'feel': 0.6018958523868811}, {'youth': 0.6730553390563035, 'things': 0.5447938239611835, 'deep': 0.500196161462236}, {'gotten': 0.5825203055600809, 'point': 0.5492227293033836, 've': 0.4317449644607759, 'got': 0.3201255239859365, 'like': 0.2648403703785079}, {}, {'gonna': 0.6433877882585503, 'cause': 0.566126763884516, 'know': 0.5153180000091369}, {'killed': 0.4243835395903672, 'watch': 0.4063656697133838, 'new': 0.3375446648857655, 'old': 0.372031626721816, 'bleed': 0.498298001006851, 'death': 0.392582123792712}, {'friends': 1.0}, {'gives': 0.7815741344108144, 'blood': 0.6238123695631453}, {'chorus': 1.0}, {'pull': 0.6147431984792198, 'sick': 0.6486149093952872, 'ain': 0.44876441395645683}, {'remained': 0.7071067811865475, 'survived': 0.7071067811865475}, {'bay': 0.6142176110225472, 'windows': 0.5782907509549706, 'pretty': 0.5369511464460162}, {'shadowboxing': 0.6400994287998438, 'fucking': 0.514420326944328, 'stacks': 0.5706526513358228}, {'danger': 0.6951678655409433, 'company': 0.7188474377218361}, {'stands': 0.8483668998523545, 'time': 0.5294087298438752}, {}, {'snitches': 0.5197583587142124, 'coming': 0.4321274568829232, 'bitches': 0.4353698257269022, 'showing': 0.5197583587142124, 'know': 0.2888277565398457}, {'looks': 0.5290774808108714, 'little': 0.40761313064703014, 'life': 0.35310552763881337, 'juice': 0.4834650339392302, 'like': 0.24599749534604004, 'need': 0.36741234956854474}, {'heard': 0.8277584959948207, 'know': 0.5610845500531916}, {'grand': 0.5924667954222917, 'stand': 0.5735856846154693, 'bird': 0.5656700086854913}, {'bass': 0.693830345261942, 'hit': 0.5401494223688869, 'em': 0.4762751867442314}, {'shawty': 0.8244484262377352, 'em': 0.5659370923292817}, {'chorus': 1.0}, {'eminem': 0.8294126409761267, 'verse': 0.5586364390093137}, {}, {'shake': 0.44534427111262537, 'stop': 0.3577771589345778, 'body': 0.8207703605344592}, {'dummy': 0.663002375987357, 'nice': 0.5885406979921805, 'people': 0.4626528895856984}, {'gun': 0.5904782645081548, 'gonna': 0.5124182424448634, 'damn': 0.6235085917236062}, {'choose': 0.592378259689622, 'don': 0.32483666585033544, 'understand': 0.5132295378007959, 'words': 0.5293057523729678}, {'invest': 0.5459503083534534, 'left': 0.41595605457516954, 'stock': 0.492982311474833, 'let': 0.3326370115377416, 'cash': 0.41861662723690135}, {'alleyways': 0.6092995675868189, 'canals': 0.6092995675868189, 'just': 0.3362917230079415, 'say': 0.3800209874643517}, {'emcees': 0.5674902284625685, 'illest': 0.5868207045863088, 'today': 0.4664254246711728, 'world': 0.34065176425294796}, {'teens': 0.4608075994989465, 'fiends': 0.4108128621561331, 'new': 0.31214884754785, 'theme': 0.4608075994989465, 'music': 0.36081812481331976, 'view': 0.4229880406771232}, {'gonna': 0.48253225588361714, 'hit': 0.495798727242398, 'ain': 0.4252780096426915, 'em': 0.4371690899331545, 'know': 0.3864816236485945}, {'verse': 1.0}, {'nails': 1.0}, {'lamar': 0.6026912624205448, 'kendrick': 0.5912588451062624, 'hook': 0.5358882535431606}, {'heritage': 0.5032912576994977, 'stole': 0.48999360176411844, 'spell': 0.5032912576994977, 'honor': 0.5032912576994977}, {'jameson': 0.4926814995693869, 'doing': 0.41306398099101616, 'dangerous': 0.4926814995693869, 'hope': 0.4288632442390036, 'just': 0.2856398727717001, 'know': 0.27998965765852385}, {'sign': 0.7723201785146335, 'home': 0.6352334546126525}, {'grace': 0.5937985207610176, 'fall': 0.5247943491112215, 'rejoice': 0.6099132789855921}, {'doing': 1.0}, {'cappadonna': 0.6412405863609226, 'raekwon': 0.6122378011036546, 'hook': 0.4625747348302349}, {'bow': 0.5987600665228526, 'life': 0.38042653292826767, 'ho': 0.47789956122201865, 'cause': 0.35587679380027964, 'bitch': 0.376464809510746}, {'mega': 0.6057452745787648, 'winnin': 0.6057452745787648, 'cops': 0.5158927452978899}, {'feel': 0.6350974568625128, 'hope': 0.7724320166116682}, {'plane': 0.7071067811865475, 'crash': 0.7071067811865475}, {'lamar': 0.6339600886430782, 'kendrick': 0.6219345346888716, 'verse': 0.45966513960599314}, {'orientated': 0.6029017315561985, 'war': 0.5016727963353185, 'sound': 0.44394221114316373, 'deep': 0.4333003815702891}, {'bedroom': 0.7815741344108144, 'doing': 0.6238123695631453}, {'hate': 0.4822038167295602, 'crew': 0.4868738790333069, 'fake': 0.4737316418058288, 'niggas': 0.3565527591276604, 'fuckin': 0.4229441648219209}, {'nuttin': 0.6693756254838429, 'word': 0.4928897691098036, 'ain': 0.38536777729627003, 'nigga': 0.40060906596921997}, {'talent': 0.5766065113749456, 'don': 0.32335811573296586, 'fuck': 0.3538497688886578, 'oh': 0.4305287752462512, 'know': 0.32768403088943215, 'bitch': 0.3808187898096688}, {'analyze': 0.5581413766662218, 'sky': 0.4707905897502774, 'stars': 0.5313454320682539, 'look': 0.42954214703090726}, {'excuse': 0.604427422393107, 'approach': 0.5910250240341592, 'talking': 0.5341880867490835}, {'desire': 0.6967073212559172, 'passion': 0.7173554966043018}, {}, {'laced': 0.5942912204225551, 'fresh': 0.5643208966813399, 'shoes': 0.5730269373227044}, {'depend': 0.8037556227317906, 'friends': 0.5949595775571915}, {'beef': 1.0}, {'feel': 0.7770391540301176, 'just': 0.6294522643570035}, {'atlantic': 1.0}, {'kingpin': 0.5883468722048969, 'rook': 0.5883468722048969, 'lost': 0.45725355408171114, 'just': 0.3140304176557953}, {'vocal': 0.48191095545044316, 'dip': 0.4660363141071885, 'socialize': 0.48191095545044316, 'dive': 0.40099671961700684, 'tried': 0.39690735294709234}, {'blame': 0.6523453151503233, 'stabbed': 0.6523453151503233, 'man': 0.38586419839478586}, {'smoked': 0.5324615861432065, 'dope': 0.5046129021161834, 'oh': 0.4123207575427267, 'just': 0.3201585719594882, 'think': 0.4351328073128904}, {'gza': 0.817049897585536, 'verse': 0.5765669647625201}, {'built': 0.6324352258175306, 'high': 0.47000841382667957, 'walls': 0.6157254063925393}, {}, {'land': 0.7733598671990083, 'won': 0.6339672829144517}, {'stage': 0.731668959223579, 'gettin': 0.6816601309367334}, {'babysittin': 0.7138861342608572, 'shots': 0.5548206126720931, 'nigga': 0.4272477911753933}, {}, {'beers': 0.6440125405101905, 'pay': 0.5822574335798256, 'doom': 0.4962097628086789}, {'worry': 0.753640702107028, 'don': 0.4023474939823037, 'tell': 0.5197520430106898}, {'truth': 0.7394636321131028, 'tell': 0.6731965068106769}, {'dear': 0.5132208116422473, 'talking': 0.44159619256705585, 'bout': 0.41541833529330735, 'ghost': 0.4370927922570243, 'know': 0.27765962078357564, 'nigga': 0.3176158589443675}, {'rules': 0.6915048675355218, 'world': 0.43602838671463673, 'cash': 0.575934253325596}, {'america': 0.7573196390746832, 'live': 0.6530443815482921}, {'wow': 0.5675768471796457, 'pow': 0.8233204251964196}, {'harm': 0.5949957740078461, 'mean': 0.4768174541348014, 'don': 0.3071876811990648, 'really': 0.4768174541348014, 'know': 0.31129726676789016}, {'shorties': 0.7686884161246309, 'rub': 0.6396234196117325}, {'verse': 1.0}, {'hopin': 0.3972549552957026, 'bish': 0.6701667444975234, 'ya': 0.5778959853847008, 'em': 0.24310751765185346}, {'round': 0.7388312061595754, 'knock': 0.673890531766686}, {'follow': 0.503945728456613, 'gets': 0.5153734703108652, 'taste': 0.4859140896428298, 'floor': 0.49428371038974106}, {'truck': 0.5321499939147851, 'wilding': 0.5321499939147851, 'crash': 0.45878733512478564, 'whip': 0.4723843234931553}, {'complex': 0.6217032100953727, 'god': 0.40058723665521023, 'people': 0.4338337192034643, 'said': 0.40165775465149156, 'got': 0.3216742709581597}, {'nut': 1.0}, {'raise': 0.6824765000609163, 'rape': 0.7309075364672349}, {'rappers': 0.7071067811865476, 'shut': 0.7071067811865476}, {'fatal': 0.6071776671161203, 'blow': 0.5365778792322157, 'pop': 0.5860200167861875}, {'maybe': 0.768048665948622, 'need': 0.6403914792800903}, {'thousand': 0.4944819404127126, 'snatch': 0.5091368026493343, 'styles': 0.5546589626265463, 'times': 0.43430491819887884}, {'marshall': 1.0}, {'powerful': 0.49856154871835145, 'styrofoam': 0.5295351566591661, 'syrup': 0.5120917252626933, 'love': 0.32677134233731425, 'say': 0.3193923210505527}, {'gonna': 0.48253225588361714, 'hit': 0.495798727242398, 'ain': 0.4252780096426915, 'em': 0.4371690899331545, 'know': 0.3864816236485945}, {'nazareth': 0.554163735083785, 'jesus': 0.510180427377958, 'miraculous': 0.554163735083785, 'black': 0.35428948750481054}, {'lose': 0.6236005297278135, 'better': 0.519480704018973, 'music': 0.5841764951409314}, {}, {'dollars': 0.529113215851846, 'clock': 0.5122510974427762, 'rock': 0.41739834833029105, 'like': 0.2508230749790959, 'flip': 0.46957898361060096}, {'earth': 0.6173869614355466, 'control': 0.652526718207044, 'world': 0.4393657040272122}, {'make': 0.698472902688804, 'baby': 0.7156365028486714}, {'perfect': 0.7574388058445956, 'man': 0.46018606819710933, 'ain': 0.4631578975230786}, {'city': 0.51466328141437, 'tough': 0.6359937268063385, 'wasn': 0.5750075531910667}, {'step': 0.8570085392010189, 'just': 0.5153022062212966}, {'feds': 0.4751567889721638, 'robberies': 0.4751567889721638, 'fatal': 0.40965126274885866, 'red': 0.39973154572806874, 'look': 0.35363192286854866, 'hook': 0.3095109839629813}, {'soakin': 0.5450776267108051, 'holy': 0.5018154724748218, 'sins': 0.5131949075093737, 'water': 0.4332465803103736}, {'raw': 0.5581142149501465, 'dope': 0.5445994633039887, 'thats': 0.626035100964466}, {'crews': 0.5423049022705059, 'fate': 0.5423049022705059, 'relate': 0.5423049022705059, 'yo': 0.34309791447942567}, {'fall': 0.5520925702993171, 'word': 0.48855987050684785, 'head': 0.4667036529543748, 'hold': 0.48855987050684785}, {'dress': 0.5118506047892677, 'better': 0.7633821640556026, 'rap': 0.3940261793062054}, {'operation': 0.7071067811865475, 'daily': 0.7071067811865475}, {'wouldn': 0.45127316645136106, 'danger': 0.4916217116158928, 'shoot': 0.43273576903676014, 'cock': 0.43828383617506667, 'tried': 0.4186975699149128}, {'shitty': 0.37453871225559826, 'act': 0.32226843796882637, 'fool': 0.34972121195111244, 'pity': 0.36464287787766697, 'committee': 0.37453871225559826, 'gritty': 0.37453871225559826, 'brick': 0.36464287787766697, 'city': 0.29507885402467954}, {'body': 0.7906619998524649, 'god': 0.6122528905520175}, {'dust': 0.4664654772244673, 'frustrated': 0.4664654772244673, 'uh': 0.3553970691709853, 'bust': 0.38050119151986944, 'rhyme': 0.37381590089917627, 'rappers': 0.39241987185547933}, {'eye': 1.0}, {'praise': 0.5196992086012542, 'hip': 0.388946459832004, 'pay': 0.44238129428495626, 'hop': 0.37883608408644504, 'simply': 0.4893009256318617}, {'nas': 1.0}, {'royalty': 0.46613185872674073, 'loyalty': 0.46613185872674073, 'dna': 0.4024388342812831, 'inside': 0.3591184148278757, 'got': 0.523945731305966}, {'motto': 0.5658466012068545, 'def': 0.45738590815245916, 'mos': 0.4534579027358348, 'stay': 0.42112714429749076, 'know': 0.296046641103154}, {'thought': 0.6712545482868785, 'black': 0.5701237656908303, 'verse': 0.47368367419480034}, {}, {'lunch': 1.0}, {'throat': 0.7663085167463047, 'ho': 0.6424727676423948}, {'hoes': 0.4836307262944164, 'bucket': 0.526872376039059, 'headed': 0.5015776324691245, 'way': 0.35198610210046866, 'love': 0.3362030375913909}, {'sahdeeq': 0.5018899212410789, 'froze': 0.5018899212410789, 'says': 0.46863393763872524, 'fuck': 0.2932112169401916, 'shut': 0.4366032852223201}, {'spilt': 0.6187632439642053, 'sound': 0.45562171797143186, 'milk': 0.5825705004122043, 'like': 0.26486319125376423}, {'skeet': 0.6638111309820571, 'fly': 0.5414782842788614, 'eye': 0.5159031401714309}, {'star': 0.7137005259656765, 'best': 0.7004509684741087}, {'martin': 0.5109927764522683, 'terrace': 0.5427386861781747, 'sounwave': 0.5109927764522683, 'produced': 0.42802743294419016}, {'beach': 0.4358827014418023, 'window': 0.8323361694378008, 'inside': 0.342378112076992}, {}, {'wop': 0.4986825334196759, 'doo': 0.4822554190894289, 'comes': 0.4426755874867659, 'shorty': 0.4244913613881628, 'home': 0.37761203631648704}, {'tea': 0.7356995848517206, 'coffee': 0.6773079955596315}, {'verse': 1.0}, {'good': 0.4844127160509908, 'yes': 0.4844127160509908, 'rza': 0.5017824384889562, 'life': 0.4020897753816307, 'know': 0.3423840504664771}, {'trailer': 0.6406432274022957, 'mom': 0.5686927013765337, 'love': 0.3953351250525205, 'got': 0.33147398915199816}, {'gonna': 0.6433877882585503, 'cause': 0.566126763884516, 'know': 0.5153180000091369}, {'changes': 0.8131881032342269, 'feel': 0.5820009525407327}, {'dollars': 1.0}, {}, {'bridge': 0.49983715010349317, 'method': 0.5928600406163882, 'gza': 0.5027233124617864, 'man': 0.38203280843953924}, {'fashion': 0.43885497584318117, 'flashin': 0.43885497584318117, 'designer': 0.453803736556302, 'everybody': 0.32052183317182015, 'imagine': 0.39124196062224464, 'clothes': 0.39124196062224464}, {}, {'suppose': 0.6979756650546708, 'old': 0.5039459471061705, 'told': 0.508791168738958}, {'mf': 0.49023584400430653, 'word': 0.4465816798969699, 'villain': 0.5476451105756178, 'super': 0.5102141249479524}, {'crunk': 0.5041008403827911, 'speakers': 0.4907817941454565, 'trunk': 0.47989934098604553, 'bass': 0.4494090576590846, 'got': 0.2697103903743109}, {'affairs': 0.5463277873798983, 'disposing': 0.5463277873798983, 'sufficient': 0.5283311894971974, 'god': 0.3520199592035171}, {'folks': 0.7299139465027491, 'plane': 0.683539048409659}, {'pure': 0.7781001870756833, 'cut': 0.6281401904613225}, {'talkin': 1.0}, {'mirror': 0.48207385918797396, 'truth': 0.3978432113526919, 'light': 0.7805930908406702}, {'hip': 0.3770412290849835, 'hop': 0.3672403210133094, 'better': 0.67846599285252, 'won': 0.37291900008300577, 'people': 0.3515533730628419}, {}, {'sit': 0.3096584899596158, 'hol': 0.6389336959239557, 'bitch': 0.25954492838203225, 'lil': 0.6546081132708716}, {'place': 1.0}, {'follow': 0.7139175364752178, 'boys': 0.7002297845087397}, {'grow': 0.7521878900076214, 'told': 0.6589486915730863}, {'drank': 0.8385470299592634, 'stand': 0.4192735149796317, 'sit': 0.3479203905825624}, {'fly': 0.6320903863749822, 'freestyle': 0.774894666036827}, {'month': 0.5208771841476926, 'older': 0.5037189552493679, 'tongue': 0.47034177709336117, 'shoulder': 0.5037189552493679}, {'ball': 0.5244451264831405, 'north': 0.5648218986698841, 'hit': 0.40264798445701516, 'man': 0.3431606180920294, 'em': 0.35503369261864365}, {'verse': 1.0}, {'fiends': 0.5529781130551454, 'coming': 0.5020707773789767, 'fast': 0.5529781130551454, 'ain': 0.36926324954700235}, {'laugh': 0.736186544526113, 'make': 0.5665499930258022, 'like': 0.3702032915320515}, {'figures': 0.5430195938706119, 'child': 0.4747095951645902, 'women': 0.48203316062646306, 'break': 0.38851197386447645, 'man': 0.3106171263012674}, {'wit': 0.4855726148140172, 'fucking': 0.7547581686170171, 'don': 0.25069409248697894, 'just': 0.2591746098025628, 'know': 0.2540479015350919}, {'luck': 0.6081221424818556, 'fuck': 0.37319016578596015, 'shut': 0.5556951541456469, 'said': 0.4267545613616462}, {'locked': 0.5303321829299393, 'block': 0.4985110942755465, 'shit': 0.37248906987707353, 'deep': 0.46725505610907436, 'got': 0.33639124542053844}, {}, {'lose': 0.6236005297278135, 'better': 0.519480704018973, 'music': 0.5841764951409314}, {'employ': 0.5773127876122405, 'moves': 0.5773127876122405, 'fake': 0.4626466702015666, 'nigga': 0.345511141745344}, {'older': 0.40529821578945774, 'build': 0.419103929245596, 'gods': 0.36638209528673366, 'moon': 0.38584015553809564, 'sun': 0.36132589878353744, 'star': 0.3451787706529966, 'roll': 0.3567520126855357}, {'killah': 0.6133673722639664, 'ghostface': 0.6028559090921084, 'chorus': 0.5102403546513391}, {'strength': 0.46301929556349375, 'showed': 0.46301929556349375, 'peeps': 0.46301929556349375, 'main': 0.44079009000662084, 'shit': 0.27431414014112643, 'love': 0.29545768711991144}, {'chorus': 1.0}, {'rolly': 0.5138963229854253, 'gamin': 0.5138963229854253, 'card': 0.4640381977763377, 'team': 0.4561807190736595, 'like': 0.21997463716084728}, {'cold': 1.0}, {'hair': 0.5287702908538489, 'let': 0.37847726906101853, 'shoes': 0.5514215846084892, 'kick': 0.5225812590806452}, {'bastard': 0.5510187837791267, 'food': 0.4923499590830071, 'black': 0.37416450534745893, 'just': 0.3123781796764976, 'damn': 0.46517804496087556}, {'personal': 0.7001888921911027, 'fear': 0.5711520375590132, 'yo': 0.4283933534082711}, {'life': 0.5625612910950581, 'promised': 0.8267555828426326}, {'pictures': 0.6643303111720384, 'guns': 0.5998771085451206, 'baby': 0.4458841691533892}, {'bodies': 0.5578033001195601, 'actin': 0.617735924012751, 'ayy': 0.4871735303309172, 'like': 0.2644234443175409}, {'turn': 1.0}, {'dum': 0.6385906682945411, 'tat': 0.6385906682945411, 'rat': 0.3062293493245763, 'drum': 0.3010440206124502}, {'admits': 0.44162419968829114, 'kells': 0.44162419968829114, 'diddy': 0.415792685677739, 'hit': 0.296408632941408, 'day': 0.5909268121807061}, {'cat': 0.5091339918865941, 'ate': 0.5546559005521933, 'face': 0.392844231502367, 'smell': 0.5280272910215643}, {'verse': 1.0}, {'hook': 1.0}, {'hard': 0.8155499067451527, 'shit': 0.3265379812232391, 'let': 0.34725546857851325, 'ain': 0.32812335480569066}, {'rub': 0.5259065476659969, 'titties': 0.5316992425386687, 'fuck': 0.3570751463117282, 'yeah': 0.3827335874832597, 'said': 0.40832653539108893}, {'breathe': 0.508622450544316, 'street': 0.44407510541838996, 'feel': 0.38871968792164535, 'hope': 0.47277709774072607, 'people': 0.41167866549518356}, {'plan': 0.6921857188283722, 'original': 0.7217194265433415}, {'didn': 0.5924140395092973, 'god': 0.4679536366160747, 'knowledge': 0.6557934124174071}, {'weather': 0.4343576829289139, 'product': 0.3987089307010799, 'flock': 0.4343576829289139, 'stock': 0.4055764873525601, 'friends': 0.33247422656175263, 'fair': 0.4343576829289139}, {'bang': 0.5571372287030056, 'chopper': 0.6345470108445773, 'shots': 0.5356754609101918}, {'crowd': 0.6451318134688846, 'rise': 0.688233571843576, 'like': 0.3318727072806402}, {'snake': 0.7139175364752178, 'venom': 0.7002297845087397}, {'boom': 0.5650238906631909, 'taught': 0.5319744731759594, 'town': 0.48096282602824963, 'kid': 0.40795333415466845}, {'pain': 0.73695248806138, 'don': 0.4747786055194531, 'know': 0.48113023816960937}, {'funk': 1.0}, {'life': 1.0}, {'mr': 0.3996456633286857, 'nigga': 0.9166697026642555}, {'new': 0.3816711547295618, 'famous': 0.548552575186193, 'feel': 0.38389516896559567, 'want': 0.37951889554083895, 'people': 0.4065691956453233, 'just': 0.31098006082167473}, {'killa': 0.6860057924110783, 'masta': 0.7275960780394908}, {'quit': 0.8475430888392794, 'yeah': 0.5307265892724553}, {}, {'chamber': 0.4508868083038729, 'caught': 0.3374467864724002, 'bullets': 0.4002477916907015, 'saw': 0.4002477916907015, 'pulled': 0.415100465794237, 'finally': 0.4360341342003375}, {'devils': 0.5831083378225553, 'brain': 0.5318551579533027, 'people': 0.45062078981782105, 'said': 0.417199785599474}, {'shall': 0.7258041033997398, 'pass': 0.6879014489649662}, {'blasting': 0.5127210452960055, 'hmmm': 0.5127210452960055, 'talking': 0.42663370673971657, 'everybody': 0.36213516131694207, 'bout': 0.40134282681097566}, {'hear': 0.7600765506407001, 'want': 0.6498335457377797}, {'lottery': 0.5684386692594698, 'wee': 0.5684386692594698, 'ooh': 0.4450946011667277, 'hit': 0.39451965045264553}, {'blue': 0.7071067811865475, 'true': 0.7071067811865475}, {'swing': 0.5281936340728646, 'round': 0.5180667173295707, 'ring': 0.4946349850418232, 'bring': 0.4560203864883005}, {'doing': 0.747966956480033, 'face': 0.6637359655872179}, {'jackson': 0.5927827046785401, 'michael': 0.5352710374614106, 'right': 0.37429647461950927, 'guess': 0.4711642288803204}, {'sound': 0.486294137178081, 'fix': 0.6386634805316763, 'children': 0.5963446744806152}, {'schoolboy': 0.627437498263252, 'lamar': 0.4596531653824702, 'kendrick': 0.4509340298413671, 'intro': 0.43783519052041936}, {'like': 1.0}, {'stone': 0.5615233686437828, 'soldier': 0.5345650571734595, 'cobra': 0.5806505950277466, 'like': 0.24854897426865055}, {'pretend': 0.7580592190743599, 'ain': 0.4364240124555949, 'need': 0.48464451067615594}, {'study': 0.5696512026031352, 'guy': 0.5143837493940956, 'eat': 0.46917122005869993, 'die': 0.4367896885237849}, {'remember': 0.47106490706242343, 'gone': 0.4970200935438595, 'ya': 0.4201489129311893, 'hope': 0.4786721825600572, 'll': 0.3541422208009864}, {'verse': 1.0}, {'mirror': 1.0}, {}, {'dress': 0.627649954964313, 'palm': 0.6721902985755401, 'fuck': 0.39270311500448013}, {'ooh': 0.7404183397316781, 'oh': 0.6721463249836191}, {'ha': 0.9857668384392027, 'yeah': 0.1681182329004774}, {'woke': 0.46514532723683927, '20': 0.4580783398767248, 'born': 0.4199189856833312, 'early': 0.5239951258927866, 'day': 0.35057269230332644}, {'got': 1.0}, {'lords': 0.5494900397581076, 'thirty': 0.51308000046769, 'heads': 0.51308000046769, 'cut': 0.41419623664005434}, {'pot': 0.7388049257187397, 'hood': 0.28915729134801516, 'gold': 0.5664911649617753, 'say': 0.22280732172497664}, {'blacks': 0.718534445306957, 'shit': 0.4256931847435941, 'did': 0.5499941484873088}, {'icebox': 0.7071067811865475, 'playtex': 0.7071067811865475}, {'miss': 0.6343650193830084, 'lady': 0.6572681163373633, 'just': 0.40691478890491256}, {'stop': 0.6327868160542897, 'motherfuckers': 0.774326058858847}, {'verse': 1.0}, {'overnight': 0.45271576168372973, 'bug': 0.4378028399792415, 'thugs': 0.39576567471839663, 'shit': 0.25937474042867426, 'yo': 0.2769830048025676, 'promised': 0.4087933630975172, 'ain': 0.26063402996029456, 'cause': 0.2602108586052855}, {'listen': 0.5352258967032325, 'askin': 0.5990038532709335, 'time': 0.39702057784116285, 'people': 0.44396202994790435}, {'universe': 0.852529985925901, 'll': 0.5226783170337019}, {'locked': 0.6893021737158388, 'niggas': 0.5096861189900445, 'let': 0.5148617031975535}, {'andre': 0.6056865956880858, 'im': 0.5576139806379217, 'good': 0.44834403755441854, 'cause': 0.34813506055884574}, {'champ': 0.6796961621083872, 'incomprehensible': 0.6346584686520932, 'know': 0.3677251084482934}, {'momentum': 0.584800896853586, 'adrenaline': 0.5735886640438606, 'venom': 0.5735886640438606}, {'chick': 0.4986532446844509, 'end': 0.4355131308327157, 'lead': 0.4902096353675774, 'way': 0.3567742274920834, 'just': 0.2947533134866454, 'll': 0.32741472571772395}, {'cause': 0.6685707450164224, 'need': 0.7436485452874804}, {'wouldn': 0.7680158717253872, 'thing': 0.640430808735724}, {'better': 1.0}, {'lookin': 0.30564676750013064, 'bish': 0.6322742438405056, 'ya': 0.5452206487081602, 'easy': 0.33880631072044687, 'come': 0.2592924183024868, 'like': 0.1658960636716229}, {'switch': 0.5082087294545639, 'dollar': 0.46831483995411455, 'lane': 0.5442730854815129, 'make': 0.3686879655828139, 'just': 0.3004015486640667}, {'title': 0.630165976797841, 'hell': 0.5008777485935267, 'bound': 0.5933062637881912}, {'drugs': 0.807647232310608, 'oh': 0.5896659631867988}, {'whats': 0.7614785693230284, 'town': 0.648190086673465}, {'powder': 0.5984045810546604, 'watch': 0.488003318994833, 'hit': 0.41531721699106317, 'eye': 0.4809119745791549}, {'curse': 0.6373888389972902, 'nights': 0.6163925966399901, 'cold': 0.4623804004595102}, {'scale': 0.7894117964977947, 'world': 0.45825670276688635, 'got': 0.408448050453599}, {'verse': 1.0}, {'pearls': 0.5686009764063276, 'diamonds': 0.4870827341100907, 'ruled': 0.5324750570937614, 'black': 0.39485902969870806}, {'laughed': 0.47812803817350447, 'hoo': 0.47812803817350447, 'sipped': 0.47812803817350447, 'girlfriend': 0.47812803817350447, 'yo': 0.29253088118936055}, {'reports': 0.5350035197177796, 'investigative': 0.5350035197177796, 'children': 0.4830975782266431, 'save': 0.4406349937201166}, {'smoke': 0.6084070165651935, 'somethin': 0.6358711465215364, 'nigga': 0.4748776549971871}, {'hallelujah': 0.5773502691896257, 'berry': 0.5773502691896257, 'halle': 0.5773502691896257}, {}, {'blanks': 0.4320804327733905, 'bo': 0.3901600699413267, 'tae': 0.4320804327733905, 'flow': 0.35953288505524245, 'billy': 0.4320804327733905, 'fly': 0.35245291994798955, 'like': 0.1849531358221531}, {'jollyin': 0.18098883352105158, 'ha': 0.6980515504734239, 'ah': 0.6779590149249892, 'sit': 0.14261363575856342}, {'hand': 1.0}, {'world': 0.47940646956862254, 'light': 0.5935280067810319, 'shine': 0.646447168840799}, {'plots': 0.6644245788617948, 'robberies': 0.6870569394092352, 'like': 0.2940964824916155}, {'committed': 1.0}, {'know': 1.0}, {'records': 0.5171450386245264, 'million': 0.4959827837990828, 'sellin': 0.5492731634590037, 'wait': 0.42995474076312723}, {'bally': 0.46315616943801424, 'rocked': 0.4360652059256972, 'sky': 0.3778017515455679, 'lords': 0.4478993299895899, 'blue': 0.3743790361610362, 'kid': 0.3344037423528568}, {'bish': 0.6889175085509951, 'way': 0.5456369278432789, 'fuck': 0.47715092935636}, {'mood': 1.0}, {'pickin': 0.8518824483968168, 'pump': 0.4259412241984084, 'fuckin': 0.3047463988988318}, {'button': 0.7071067811865475, 'shirt': 0.7071067811865475}, {'pockets': 0.6646888392980332, 'pick': 0.5951600321742033, 'niggas': 0.4516340144575413}, {'wack': 0.49162894627787473, 'approach': 0.49162894627787473, 'step': 0.47403801318904176, 'motherfuckin': 0.4356003977592051, 'nigga': 0.319596955378523}, {'care': 0.6132293419532137, 'don': 0.3566575535562418, 'right': 0.4361960459001651, 'really': 0.5536047084337038}, {'alleyways': 0.6092995675868189, 'canals': 0.6092995675868189, 'just': 0.3362917230079415, 'say': 0.3800209874643517}, {'wanted': 0.7658661885877327, 'money': 0.6429999853639963}, {'straw': 0.5441259544374654, 'tooth': 0.5180028796414141, 'gold': 0.4314295035551015, 'saw': 0.4994682631087973}, {'bang': 0.8891354567628375, 'work': 0.45764411885999395}, {'hate': 0.6548103444197161, 'moms': 0.7557932341857347}, {'represent': 1.0}, {'sir': 0.7198682609660667, 'sorry': 0.6941107165673867}, {'lap': 0.4950403086674107, 'blower': 0.5084749242932126, 'throw': 0.414665025196504, 'chip': 0.4747826084509493, 'nigga': 0.3146787818566449}, {'accidentally': 0.5590929950951479, 'half': 0.43153975848864046, 'woman': 0.5048498972052098, 'mom': 0.4963013610408416}, {'niggas': 1.0}, {'got': 1.0}, {'sweep': 0.5740618060008281, 'chain': 0.4949211485177923, 'okay': 0.48865613134511315, 'street': 0.4321125836396396}, {'busting': 0.5315588320041393, 'cops': 0.4848366730833239, 'running': 0.5225580380572018, 'shots': 0.45750596216191247}, {'picked': 0.6410021919267668, 'kid': 0.5027099703416252, 'yeah': 0.4216342110134836, 'man': 0.39827561784176535}, {'rush': 0.45713197631370367, 'grab': 0.4340786434496544, 'til': 0.3637606310058455, 'walk': 0.3759911143149824, 'moms': 0.4674981445807434, 'come': 0.33220544491685366}, {'maximillion': 1.0}, {'dive': 1.0}, {'drop': 0.5365477297035238, 'position': 0.6474750793137679, 'phone': 0.5411954872480224}, {'stroke': 0.6278664378270188, 'right': 0.40995342778713845, 'baby': 0.43576494875895794, 'lil': 0.4978261069179564}, {'pieces': 0.8132755221382023, 'way': 0.5818787890023441}, {'firing': 1.0}, {'chorus': 1.0}, {'flesh': 0.5803352308748244, 'soul': 0.4515592462238932, 'mind': 0.44299364378887374, 'matter': 0.5128956019677201}, {'bridge': 1.0}, {'ghostface': 0.8139530697504933, 'verse': 0.5809306329018539}, {'ga': 0.9778543591868981, 'like': 0.209286531385039}, {'outside': 0.6123786744219142, 'home': 0.5378539606109137, 'open': 0.5794009632097732}, {'mind': 0.633937707086425, 'free': 0.7011013954496897, 'thing': 0.32646564418404533}, {'dot': 0.6636591290700383, 'hood': 0.5942468996429484, 'nigga': 0.4543425829335635}, {'separated': 0.5072524739928714, 'tricked': 0.5072524739928714, 'john': 0.4775822263069825, 'portions': 0.5072524739928714}, {'peeps': 0.572424168849145, 'york': 0.4743547636597115, 'dog': 0.5449425182203433, 'new': 0.3877573738130267}, {'assassin': 0.5233452129759394, 'cheetah': 0.5233452129759394, 'thoughts': 0.45119638890758546, 'ran': 0.4454848667121358, 'like': 0.22401925872023334}, {'supposed': 1.0}, {'just': 0.7141346188904029, 'know': 0.7000083900227617}, {'work': 0.8009394993958898, 'putting': 0.46542387239205535, 'cause': 0.27662759212863014, 'verse': 0.2556437219807313}, {'doom': 0.6979977997787893, 'look': 0.716099903298394}, {'refrain': 0.5374875261185433, 'zacari': 0.5700736354200572, 'lamar': 0.44357469167319996, 'kendrick': 0.43516054781304947}, {'uh': 0.733355786505623, 'everybody': 0.6798450488153307}, {'trife': 1.0}, {'chose': 0.4707077811528349, 'size': 0.4552021838660995, 'twice': 0.4552021838660995, 'needed': 0.4552021838660995, 'glass': 0.3959887626849735}, {'oven': 0.6353371569198691, 'told': 0.4631306660057085, 'straight': 0.49038933712521343, 'em': 0.375998645311363}, {'flower': 0.7828374218838544, 'eyes': 0.6222263019981076}, {'white': 0.6565117265134058, 'face': 0.5785868372062083, 'shit': 0.4839727520864203}, {'business': 0.5978669045788704, 'handle': 0.6296188116759861, 'live': 0.49612026404189463}, {}, {}, {'vernon': 0.5888848880075699, '40': 0.5733257291577561, 'big': 0.45075534604107265, 'man': 0.34832716657968565}, {'quick': 0.5731172352290079, 'stick': 0.5658623637582265, 'tell': 0.44335430408523063, 'em': 0.39341248202683055}, {'world': 0.47940646956862254, 'light': 0.5935280067810319, 'shine': 0.646447168840799}, {'went': 0.7146781284847833, 'fuck': 0.515823585074405, 'got': 0.47239940913010886}, {'sin': 0.5546250078415327, 'sinner': 0.5735172546750253, 'probably': 0.4723553445880443, 'gonna': 0.3746324701703149}, {'face': 0.3775726081684214, 'showing': 0.5190088453582735, 'continued': 0.551252760949573, 'search': 0.5330939293841568}, {'gonna': 0.6174875166665655, 'slow': 0.786580680388832}, {'shogun': 0.5674146391316331, 'house': 0.483247840616488, 'sent': 0.4994502977101741, 'night': 0.4416577316835274}, {'hanging': 0.6074779648710201, 'cocaine': 0.5616807465972835, 'wasn': 0.5616807465972835}, {'crash': 0.7157192621010398, 'car': 0.698388099739352}, {'everybody': 0.7247251432938147, 'got': 0.5309052180622122, 'like': 0.43921875655768}, {'arsenal': 0.5353389645541158, 'gang': 0.461536671511406, 'gon': 0.4190474631525397, 'roll': 0.4556942556407167, 'need': 0.34225438329081176}, {'staple': 0.6287522886210007, 'land': 0.5677508590924705, 'don': 0.3246156796863962, 'come': 0.42065922319064225}, {'air': 0.6544460198874568, 'tweeters': 0.6951040980937083, 'like': 0.2975410893755666}, {'self': 1.0}, {'chorus': 1.0}, {'different': 0.6550298666153633, 'man': 0.4220943939731037, 'day': 0.49368567291123744, 'know': 0.3860656068345332}, {'feel': 0.7770391540301176, 'just': 0.6294522643570035}, {'belly': 0.6729850157961911, 'son': 0.5553973001722098, 'god': 0.48849258691941355}, {'love': 1.0}, {'spitting': 0.43993385018429054, 'plus': 0.3851674737689639, 'killer': 0.4666055994452759, 'hard': 0.3545805194870121, 'words': 0.41692453062883444, 'times': 0.37527327394716276}, {'black': 0.6755289074172832, 'people': 0.7373335034050817}, {'task': 0.5355511351093747, 'narcotic': 0.5355511351093747, 'force': 0.4617195920502621, 'fast': 0.4617195920502621}, {'island': 0.6657525491747649, 'world': 0.4737852526006396, 'long': 0.5764556164055047}, {'uh': 1.0}, {'glass': 0.6179259528463132, 'tap': 0.6762240979368919, 'don': 0.3792231717964591, 'just': 0.13068386335369064}, {'tech': 0.7309075364672349, 'army': 0.6824765000609163}, {}, {'cappadonna': 0.8619290435622967, 'verse': 0.5070289181731001}, {}, {'fantastik': 0.4544015789695289, 'mr': 0.400693943282301, 'met': 0.4950298369624904, 'deal': 0.42594393339237535, 'arms': 0.4544015789695289}, {'party': 0.52636630423184, 'cares': 0.6105352178427845, 'maybe': 0.4681381982794454, 'll': 0.3619832715121684}, {'accounts': 0.5286033389993042, 'corporate': 0.49768423500313985, 'company': 0.5286033389993042, 'rich': 0.4398493176383395}, {'lamar': 0.6083844778683101, 'kendrick': 0.596844066264219, 'chorus': 0.523111353015872}, {'gon': 0.7120531286147485, 'funk': 0.7021255885024762}, {'swap': 0.5261725325148399, 'cop': 0.5261725325148399, '20': 0.47565024328964356, 'spot': 0.46908610948560664}, {}, {'verse': 1.0}, {'colors': 0.5739630872905335, 'doin': 0.47975009789998313, 'thang': 0.5587981831964619, 'niggas': 0.35798157557227683}, {}, {'ok': 0.5430381567611345, 'honey': 0.5514158586863632, 'talk': 0.48989009942090567, 'said': 0.4013200737317104}, {'trip': 0.5284997287619322, 'bitches': 0.47677457181151567, 'crazy': 0.4844740532707787, 'box': 0.508585229907331}, {'uh': 0.5945392270761501, 'taste': 0.6927038394796027, 'know': 0.4082701290051856}, {'mathematics': 0.7131185619526393, 'simple': 0.7010434484385399}, {'chains': 0.4375419867603759, 'wearin': 0.4375419867603759, 'cars': 0.4028148066517915, 'jaz': 0.4375419867603759, 'cash': 0.3354927142079394, 'tec': 0.38840172466251854}, {'grind': 0.48290712517871054, 'believe': 0.40625161224854656, 'cream': 0.4163331308972817, 've': 0.33697975294995536, 'new': 0.31634332558015915, 'best': 0.3903441560523103, 'got': 0.24986005365571887}, {'affection': 0.4672427065252167, 'dying': 0.4288950033998503, 'wretched': 0.4672427065252167, 'check': 0.36368704590599404, 'sound': 0.3557701289469018, 'mind': 0.34724189039616027}, {'look': 1.0}, {'duke': 0.8550759610869892, 'girl': 0.3504995646468215, 'love': 0.28022048664107063, 'man': 0.25975302658523913}, {}, {'ooh': 1.0}, {'lamar': 0.5855844861563089, 'kendrick': 0.5744765663374263, 'break': 0.5718981415446394}, {'way': 0.5996767493819106, 'dough': 0.8002423359525195}, {'cognac': 0.5027884308124738, 'kept': 0.4545114475971366, 'sipped': 0.519914963164307, 'laughin': 0.519914963164307}, {'lamar': 0.5903078048780283, 'kendrick': 0.5791102886868369, 'intro': 0.5622881548077746}, {}, {'picked': 0.7882534350622403, 'deep': 0.6153507309759033}, {'busters': 0.4212207538239834, '40': 0.3965826796160494, 'shawn': 0.4212207538239834, 'lo': 0.4212207538239834, 'cee': 0.4073453099942389, 'big': 0.3117979080527889, 'don': 0.2174701607853861}, {'style': 0.44925748101576257, 'lyrics': 0.5466023442437574, 'block': 0.4333929967794636, 'let': 0.34437846442378195, 'shots': 0.43928074918238147}, {'fuck': 0.5529953364236928, 'jay': 0.8331843480848922}, {'knock': 0.648384524546882, 'ben': 0.7613130159980938}, {'rhyme': 0.675736731333719, 'ice': 0.7371430457695585}, {'cake': 0.6244181833187509, 'ways': 0.5878946706529448, 'eat': 0.5142779292938562}, {'human': 0.7131185619526393, 'saw': 0.7010434484385399}, {'buck': 0.5086510659080922, '50': 0.5224550560852248, 'face': 0.37003744988197906, 'sure': 0.4198746142751505, 'cut': 0.39381772623090694}, {'sneak': 0.5926859815137259, 'job': 0.5684324919982474, 'friends': 0.46597660126535434, 'know': 0.32935336104397506}, {'sewn': 0.63875402366074, 'garment': 0.63875402366074, 'got': 0.3304964998510129, 'like': 0.27342029569997045}, {'belts': 0.543239078316572, 'seat': 0.48222799481364287, 'assassins': 0.5253442256796255, 'earth': 0.4431262905231977}, {'motherfuckers': 0.5817564627848689, 'ass': 0.49330789053212637, 'young': 0.509334908022537, 'bitch': 0.3984779725611629}, {'bridge': 1.0}, {'super': 1.0}, {'niggas': 0.5089030678227849, 'ain': 0.4857478661744549, 'think': 0.612068965750235, 'like': 0.3611623723935807}, {}, {'40': 0.41205534228044355, 'bump': 0.4376546702962562, 'new': 0.2866992981434465, 'school': 0.6903071765974863, 'way': 0.28275130211562904}, {}, {'times': 0.6547213127922926, 'died': 0.7558703609585025}, {}, {'kweli': 0.4937908767222088, 'talib': 0.4937908767222088, 'believe': 0.41540770330896004, 'better': 0.3324987945165581, 'yeah': 0.29902333468917247, 'place': 0.3739079794813197}, {'buildin': 0.5314979492782798, 'grammy': 0.5314979492782798, 'sippin': 0.48931359767218235, 'walkin': 0.4422579145239486}, {'rich': 0.6705344131424948, 'american': 0.7418784272316119}, {'million': 1.0}, {'hallelujah': 0.5773502691896257, 'berry': 0.5773502691896257, 'halle': 0.5773502691896257}, {'bubble': 0.625300365986393, 'double': 0.5652599724067554, 'pop': 0.5380340285632471}, {'white': 0.6152501225395102, 'pull': 0.6243223660088765, 'bitch': 0.48134070056062817}, {'planted': 0.5312447473240246, 'ran': 0.467612798312729, 'god': 0.35396122356141513, 'understand': 0.4481033629656555, 'heart': 0.4159712942121708}, {'savage': 0.5318682643252927, 'bank': 0.48965452126026404, 'thinkin': 0.45854444502036573, 'bout': 0.4163307019553371, 'ain': 0.3062030988793607}, {'volumes': 0.5561519440984173, 'beat': 0.4456888026462366, 'scriptures': 0.5120108346395382, 'breathe': 0.4794803556800199}, {'bite': 0.48449354116971854, 'iron': 0.417700842206568, 'ay': 0.48449354116971854, 'niggas': 0.29222519921901646, 'shit': 0.27758120462361024, 'hit': 0.32518160985838196, 'yo': 0.2964254576459295}, {'bridge': 0.6602938500267057, 'sample': 0.7510073445825349}, {'chorus': 1.0}, {'beginnin': 0.42630116807085666, 'god': 0.568077458896682, 'feel': 0.2904570577647592, 'rap': 0.6128492188150274, 'like': 0.18869511755040685}, {'intro': 1.0}, {}, {'queens': 0.581114072131194, 'foundation': 0.6647355154718739, 'everybody': 0.469503066700787}, {'planets': 0.5459537672102871, 'energy': 0.5798716615662659, 'away': 0.4687226643611218, 'feel': 0.38207643750365533}, {'whatcha': 0.5927153233634715, 'doing': 0.5233237066895742, 'takin': 0.6122261375233992}, {}, {'baby': 0.5485300881392021, 'talkin': 0.630810963610948, 'got': 0.4228591039711191, 'like': 0.34983202938405816}, {'troubled': 0.7614785693230284, 'track': 0.648190086673465}, {'telephone': 1.0}, {'ninjas': 0.8066916364902192, 'kill': 0.5909725912567622}, {'peoples': 0.5680235093886432, 'stories': 0.5680235093886432, 'hear': 0.4475150918313981, 'come': 0.3929743352265582}, {'copped': 0.46891379150499435, 'microphone': 0.46891379150499435, 'wotty': 0.46891379150499435, 'scotty': 0.46891379150499435, 'big': 0.3471014614570831}, {'baby': 0.3034292999780073, 'love': 0.5579543773518427, 'sons': 0.42564105606232844, 'free': 0.3593323497180875, 'em': 0.5350958106255345}, {'punk': 0.5768149457544237, 'job': 0.619131986558731, 'lost': 0.5328790684331302}, {'fool': 0.5239380036149438, 'school': 0.4575963011350323, 'niggas': 0.3499704301874633, 'told': 0.4229616222269393, 'don': 0.2995653611671551, 'let': 0.35352418879317643}, {}, {'seeing': 0.5818579527461952, 'make': 0.39414777356919745, 'got': 0.3113129814630061, 'think': 0.4364746018493659, 'eye': 0.46761416245608145}, {'cooked': 0.5540331720707841, 'coke': 0.5417482012023797, 'music': 0.44558797109488885, 'crack': 0.4483385894106279}, {'represent': 1.0}, {'miss': 0.6343650193830084, 'lady': 0.6572681163373633, 'just': 0.40691478890491256}, {}, {}, {}, {}, {'aim': 0.5419791820081901, 'globe': 0.5566876448545124, 'stay': 0.4284233640312692, 'flip': 0.46131426759661365}, {'generation': 0.8706552465706874, 'fuck': 0.49189373000571524}, {'fox': 0.5365080648402821, 'sweet': 0.4566894237864123, 'daddy': 0.4625445986201485, 'rock': 0.38217000048704053, 'long': 0.37893594653718354}, {'seat': 0.774326058858847, 'sit': 0.6327868160542897}, {'roll': 0.5946370874289283, 'finish': 0.6755542842294266, 'time': 0.43592791068398906}, {'excuse': 0.5402886179319023, 'write': 0.47263315270821354, 'alike': 0.5549512015272666, 'mic': 0.4203989488780538}, {'world': 0.47940646956862254, 'light': 0.5935280067810319, 'shine': 0.646447168840799}, {}, {'determined': 1.0}, {'successful': 0.6715746298416103, 'make': 0.4399358400453053, 'want': 0.4374550239227012, 'say': 0.40506428531965694}, {'headed': 0.5397464910175779, 'hot': 0.46599464204368923, 'walk': 0.4439415641885324, 'cause': 0.3369798531985554, 'cold': 0.42530363876283156}, {'syllables': 0.5727179360738406, 'lick': 0.5171529489566441, 'let': 0.34894601174275647, 'em': 0.3389399876331228, 'fuckin': 0.4097601234342474}, {'grandma': 0.5879268023956223, 'huh': 0.5313878109196137, 'stay': 0.475282792994053, 'nigga': 0.3821980325887244}, {'pump': 0.39868227289087443, 'lil': 0.917089115235028}, {'artist': 0.6975778406215337, 'poppin': 0.7165090064149914}, {}, {'maker': 0.7934052026153873, 'money': 0.6086938347501447}, {'switch': 0.8278637058419364, 'yo': 0.5609293044133601}, {'ammo': 0.4846625944746041, 'machine': 0.4376407201418675, 'outta': 0.4376407201418675, 'good': 0.3587591107435468, 'gun': 0.364819264585615, 'fuckin': 0.3467595338419285}, {'cheat': 0.7149893302983727, 'lover': 0.6991353642603729}, {'hook': 0.5136841447132875, 'monch': 0.6086866786027724, 'pharoahe': 0.6046727435247132}, {'hearin': 0.5327626011539854, 'wu': 0.4252237708595977, 'tang': 0.45841074811229326, 'slang': 0.4634599980255197, 'say': 0.33228477508440946}, {'stone': 0.6186399786111788, 'lee': 0.6022946488292861, 'produced': 0.5045054339207528}, {'rattling': 0.5697154418754222, 'stage': 0.5144417561841917, 'snakes': 0.5509484306564457, 'cause': 0.3274596487202913}, {'cell': 0.46561353832273455, 'type': 0.4514718005535406, 'fake': 0.44353957784040765, 'girl': 0.4271996404703109, 'phone': 0.44738166737889207}, {'murdered': 0.6866234031521983, 'shit': 0.42730204854115517, 'eminem': 0.5881847172072953}, {}, {'joy': 0.4690289855329739, 'power': 0.37912615899835006, 'poison': 0.43180272028389605, 'pain': 0.375870244070527, 'dna': 0.37280048582220865, 'inside': 0.33267047837127706, 'got': 0.2426793919182428}, {'grandma': 0.5879268023956223, 'huh': 0.5313878109196137, 'stay': 0.475282792994053, 'nigga': 0.3821980325887244}, {'individuals': 0.5605820956934162, 'invisible': 0.5160893704422175, 'pen': 0.4492390356012202, 'sick': 0.4664587490835807}, {'life': 0.5625612910950581, 'promised': 0.8267555828426326}, {'ass': 0.570847833875077, 'head': 0.533439799164935, 'fuck': 0.42845692057151236, 'nigga': 0.45387156601992956}, {}, {'loud': 0.5715059034012822, 'came': 0.5232883123984433, 'niggas': 0.41426321558365453, 'rap': 0.47742678255305715}, {'tap': 0.5705258146701246, 'gonna': 0.40480748646231623, 'love': 0.38241839248724113, 'feel': 0.4083268880428382, 'ain': 0.35677557309801317, 'like': 0.2652691269793047}, {'kardashian': 0.7280795387793957, 'age': 0.6854926587577597}, {'def': 0.6054309873263654, 'mos': 0.6002315787848641, 'intro': 0.522661813617995}, {'step': 1.0}, {'shawty': 0.8244484262377352, 'em': 0.5659370923292817}, {'speaking': 0.48180044576937575, 'fart': 0.5233370789326468, 'probably': 0.4310263801827611, 'old': 0.37785500713385434, 'rhymes': 0.40672900737603684}, {'daughter': 0.6020415276829915, 'food': 0.5705536894766111, 'mouth': 0.5585825689813071}, {'dropped': 0.4820471697872028, 'hot': 0.4069512086005745, 'heard': 0.3951866988164775, 'son': 0.3750812376242265, 'shots': 0.3979139788402629, 'caught': 0.3831804322026418}, {'volume': 0.6556488822109057, 'loud': 0.5641471340936329, 'turn': 0.501859098103771}, {'blue': 0.520270388899284, 'true': 0.520270388899284, 'stacks': 0.5549098060393602, 'say': 0.3882171454618341}, {'jameson': 0.4615555076101692, 'jonah': 0.47202198622986347, 'sure': 0.38963852173164454, 'mean': 0.40176907913750426, 'jay': 0.4267592523551227, 'know': 0.2623008346753991}, {'afford': 0.7104684352092938, 'stop': 0.570770513398146, 'know': 0.4116498798815252}, {}, {'belly': 0.6729850157961911, 'son': 0.5553973001722098, 'god': 0.48849258691941355}, {}, {'breath': 0.4928080045868187, 'blow': 0.4410901793209009, 'control': 0.49912625256023796, 'depends': 0.5598684741320834}, {'alright': 1.0}, {'sayin': 0.844090114975886, 'know': 0.5362013407293902}, {'shrunk': 1.0}, {}, {'watching': 0.4963539142721244, 'lookin': 0.4047802527413273, 'church': 0.4832395526113654, 'boy': 0.3961642252112789, 'place': 0.38865133471356444, 'like': 0.2197027998398908}, {'classical': 0.6873775987063482, 'rappers': 0.5782649357154263, 'need': 0.4394561422016177}, {'feeling': 0.7092432615249035, 've': 0.600915030910315, 'like': 0.3686124273645323}, {'praises': 0.5208771841476926, 'bow': 0.5037189552493679, 'isle': 0.5037189552493679, 'staten': 0.47034177709336117}, {'begin': 0.5199991840232281, 'aight': 0.5199991840232281, 'time': 0.3244965209999343, 'man': 0.594898062771508}, {'rag': 0.8539765611791141, 'let': 0.5203114768642865}, {'tattoo': 0.5315074683820105, 'tan': 0.5315074683820105, 'line': 0.4296288527618984, 'showing': 0.5004184958440161}, {'ol': 0.5981890855417094, 'song': 0.5094573948793049, 'singing': 0.6185652598890158}, {'real': 0.4325910152904173, 'spit': 0.4789365510868672, 'life': 0.3731368042000559, 'kids': 0.500172145281871, 'live': 0.44054686919614217}, {'wants': 0.7342418379186236, 'pay': 0.6788880050861715}, {'press': 0.5141188283053371, 'shatter': 0.5360548994967989, 'don': 0.2939511763252635, 'dreams': 0.47897932993022635, 'need': 0.3640034100719517}, {'raekwon': 0.7978704185736119, 'hook': 0.6028289933017237}, {'chicago': 0.8022114931167091, 'stay': 0.5970399654222991}, {'shit': 0.6033755982892967, 'music': 0.797457138277057}, {'ticket': 0.6315397051151022, 'shit': 0.36182846047906475, 'ain': 0.3635851727624988, 'plate': 0.581415159931132}, {'def': 0.643525986503126, 'mos': 0.6379994201711342, 'verse': 0.42288419757242635}, {'elevator': 0.7662560457436073, 'shit': 0.4768593330057399, 'got': 0.4306470119328495}, {'bulletproof': 0.4911176493707219, 'glass': 0.4131588176230291, 'driver': 0.47493973008309065, 'inside': 0.3483374128084652, 'realest': 0.4911176493707219}, {'nose': 0.5529375319139981, 'brown': 0.5423362069666341, 'gotta': 0.43364471100126073, 'gold': 0.46052555741732026}, {'don': 0.3867074281601706, 'girl': 0.578135134315461, 'fuck': 0.423172722205634, 'man': 0.4284523179508793, 'know': 0.3918808363512848}, {'sayin': 0.7014194451555711, 'gonna': 0.5563068193783158, 'know': 0.44557096479778907}, {'raps': 1.0}, {'bangers': 0.790778065009476, 'got': 0.40915496883570085, 'ain': 0.4552606543255477}, {'code': 0.5410441449851116, 'villain': 0.550363352633918, 'love': 0.3761148229947182, 'words': 0.512746577929619}, {'barrels': 0.7418237228092304, 'double': 0.6705949330836419}, {'bit': 0.2577747304224329, 'lap': 0.2916690202050382, 'blower': 0.2995844588224651, 'throw': 0.24431332054137392, 'chip': 0.5594670809334722, 'nothin': 0.23911294260424365, 'll': 0.3673449692839036, 'lil': 0.23753613164110535, 'nigga': 0.370806378294765}, {'thang': 0.5806670712329364, 'compton': 0.5569054113263481, 'nothin': 0.4760362001363386, 'ain': 0.35506570009077315}, {'rhyme': 0.40388142657017023, 'rate': 0.487380980712332, 'divine': 0.5039826875581905, 'great': 0.43450319800412485, 'just': 0.2690009947228398, 'ain': 0.2901490294925422}, {'followed': 0.7828374218838544, 'free': 0.6222263019981076}, {'verse': 1.0}, {'glitz': 0.5775884432772006, 'fame': 0.47570842190069307, 'stood': 0.5775884432772006, 'fuck': 0.326319900891736}, {'straw': 0.5200190649176821, 'chump': 0.5377325260736816, 'spin': 0.5200190649176821, 'gold': 0.41231550376707443}, {'reign': 0.6167875968866413, 'year': 0.5365548892059452, 'round': 0.5759183198996174}, {'premier': 0.627836606383468, 'dj': 0.5862352053527095, 'produced': 0.5120053512317589}, {'game': 0.47426385511467367, 'run': 0.47426385511467367, 'world': 0.39298063704809244, 'talkin': 0.52251973931075, 'got': 0.35026694448582624}, {'lick': 0.4603027892097262, 'asian': 0.509759567139832, 'playing': 0.45250856153551633, 'lay': 0.4198437867921275, 'ass': 0.383710466868265}, {'spiritual': 0.5478224981173234, 'negro': 0.5297766629292653, 'old': 0.3955337434839919, 'crowd': 0.45584152464869765, 'like': 0.23449682331220897}, {'killin': 0.6427701270192617, 'love': 0.42128972392747793, 'cause': 0.3924022630280492, 'thing': 0.5053533380667605}, {'boo': 0.8025765480214792, 'baby': 0.596549146815186}, {'jaz': 0.5039955703877085, 'shawn': 0.5039955703877085, 'dick': 0.3839910075590807, 'damn': 0.40059313877856223, 'jay': 0.42901395471061177}, {'man': 1.0}, {'crab': 0.6283799176278001, 'ass': 0.5238203139667403, 'niggas': 0.41973361080137445, 'fuck': 0.39315983233477075}, {'language': 0.5193335646813199, 'stripped': 0.5193335646813199, 'bonded': 0.5193335646813199, 'steel': 0.4368958065559566}, {'cheat': 0.7149893302983727, 'lover': 0.6991353642603729}, {'vernon': 0.5292998053930579, 'busters': 0.5473293973354075, 'crew': 0.450786726945168, 'shorty': 0.46590081952427737}, {}, {'gon': 0.7120531286147485, 'funk': 0.7021255885024762}, {'wanna': 0.8658792709440023, 'ayy': 0.5002530241282734}, {'funk': 0.7642266529011119, 'want': 0.6449477676491048}, {'degrees': 0.5465788132465512, 'fiends': 0.47122698493389187, 'plus': 0.424792102669173, 'rasta': 0.5465788132465512}, {'legs': 0.46653974428919404, 'everybody': 0.37693432526639287, 'kunta': 0.45427709190512877, 'king': 0.3871427224857516, 'cut': 0.3890231273582343, 'wanna': 0.36424582909279996}, {}, {'uh': 1.0}, {'moon': 0.6786703446694028, 'fear': 0.601325602008543, 'man': 0.4216800726088175}, {'street': 0.782742614645664, 'nigga': 0.6223455625435675}, {'dive': 0.5773502691896257, 'liquor': 0.5773502691896257, 'pool': 0.5773502691896257}, {'searching': 0.5933850051540513, 'hidden': 0.5933850051540513, 'inside': 0.4208730795147481, 'world': 0.3444623669668801}, {'sincerely': 0.7699816099149949, 'rhyme': 0.6380660783905633}, {'join': 0.4988077426750415, 'choose': 0.46963144481234126, 'mother': 0.44278673451310685, 'ball': 0.43605944290594595, 'death': 0.3800384347440112}, {'clique': 0.4699950012321356, 'chase': 0.4474308973315041, 'wet': 0.43885242316339557, 'semi': 0.4474308973315041, 'tec': 0.4314214108347787}, {'york': 0.5378967736913648, 'state': 0.5335037335828932, 'new': 0.4396992637744188, 'mind': 0.4823954648851582}, {'character': 0.647535879456889, 'main': 0.6164481725128836, 'day': 0.44798318653886926}, {'mistakes': 0.61135674336911, 'breaks': 0.61135674336911, 'state': 0.5024797156843571}, {'intro': 0.4500103863446032, 'juice': 0.5425175945459146, 'lil': 0.4944765517088264, 'eminem': 0.5085845569816724}, {'figure': 0.5454950005125131, 'gun': 0.4547270758022556, 'salute': 0.6041051713277895, 'nigga': 0.3615458932462173}, {'gave': 1.0}, {'way': 1.0}, {'doctor': 0.5142766734860168, 'spock': 0.5507716330843306, 'funk': 0.43959765605793, 'fuck': 0.3217686069356664, 'said': 0.36795240952714364}, {}, {'usin': 0.5836882144232434, 'mothafuckin': 0.5644609257396048, 'auto': 0.5836882144232434}, {'rumor': 0.5656404527350906, 'hungry': 0.5192170161479376, 'sure': 0.45458085656237973, 'heard': 0.4514651849468431}, {'ancient': 0.5012953103635253, 'read': 0.4469079100687828, 'war': 0.4313350031537002, 'books': 0.47722850233729447, 'inside': 0.3676675173805679}, {'reason': 0.7234134422252811, 'came': 0.5511640833433865, 'cause': 0.4158018095679895}, {'represent': 0.7235567841655082, 'hold': 0.6902648622724962}, {'drums': 0.4361773471361217, 'boosted': 0.4632752775272417, 'writers': 0.4361773471361217, 'lore': 0.4632752775272417, 'choke': 0.4361773471361217}, {'don': 0.36877260012060914, 'cousin': 0.6008972480074266, 'sleep': 0.5633127178578516, 'say': 0.43082252568428553}, {}, {'drank': 0.7886430627793356, 'pour': 0.4073016819188349, 'shot': 0.333888467147628, 'head': 0.31727897967234514}, {'heat': 0.3864171462726912, 'case': 0.3738815501153714, 'blow': 0.34586452889497377, 'cold': 0.6586226278582709, 'ice': 0.3968480027354558}, {'pray': 0.7506260781685284, 'damn': 0.6607272438558397}, {'aim': 0.5945275754788263, 'everybody': 0.4460027859708058, 'pick': 0.501908797627175, 'game': 0.4423867490849966}, {'talking': 1.0}, {'wait': 0.7629039420911233, 'don': 0.5031823653077941, 'yeah': 0.2950988525565168, 'man': 0.2787503356139765}, {'yo': 0.5601149940299779, 'let': 0.557785404666148, 'come': 0.6124921516266305}, {'blazing': 0.639240155638745, 'honey': 0.5674472083512282, 'yo': 0.3911033679074221, 'just': 0.34119473144353}, {'outro': 1.0}, {'tool': 0.6747065505175844, 'better': 0.4543200882703391, 'cock': 0.5816909214374019}, {'ammo': 0.5988996978088951, 'weapon': 0.5988996978088951, 'started': 0.5316373801086869}, {'power': 1.0}, {'don': 0.45627862576864797, 'turn': 0.6541896161297455, 'wanna': 0.6031962879649463}, {'doom': 1.0}, {}, {'legs': 0.46653974428919404, 'everybody': 0.37693432526639287, 'kunta': 0.45427709190512877, 'king': 0.3871427224857516, 'cut': 0.3890231273582343, 'wanna': 0.36424582909279996}, {'ruled': 0.6384372290653224, 'imagine': 0.6384372290653224, 'world': 0.4298788307032419}, {'bloods': 0.5640424537505014, 'mall': 0.5454623165811997, 'looking': 0.43836455807751185, 'young': 0.43836455807751185}, {'green': 0.5784994111449877, 'leaf': 0.6076733481649392, 'street': 0.472993846203534, 'like': 0.2689764946765844}, {}, {'verse': 1.0}, {'warm': 0.8822000939093877, 'just': 0.47087471189931995}, {}, {'whips': 0.46723172371598104, 'road': 0.4223688416344272, 'neck': 0.41654000914614825, 'word': 0.3557617663648788, 'froze': 0.46723172371598104, 'say': 0.2914130757132337}, {'girls': 0.6038742691479646, 'imma': 0.686048445822142, 'man': 0.4057997006480354}, {'time': 0.7162310778587337, 'bitch': 0.6978631979903486}, {'ve': 0.6004900522473836, 'funk': 0.6642053757421806, 'got': 0.4452447820998278}, {'goodbye': 0.8315124512216366, 'said': 0.5555061146948658}, {'deep': 0.8591562614576276, 'like': 0.5117133166120973}, {'build': 0.5762228057578006, 'corner': 0.4794733389312768, 'cut': 0.42003910662499827, 'team': 0.5115073257387174}, {'year': 0.6452548883366956, 'sit': 0.5564098139719512, 'wanna': 0.5235019082995755}, {'pen': 0.5246882271845991, 'cock': 0.5644694152015286, 'half': 0.5053587846740408, 'll': 0.38818686519343115}, {'ropes': 0.5892375481639665, 'dope': 0.5264994429754141, 'don': 0.3231144246240518, 'matter': 0.5207633982723479}, {'floors': 0.5669085529348744, 'dance': 0.48875404911136505, 'attack': 0.4955934052780824, 'lost': 0.44059204342725766}, {'looking': 0.6546919186664858, 'diamonds': 0.664345755806823, 'like': 0.36058731033448294}, {'state': 0.43315828005431134, 'stop': 0.39533457264531463, 'trooper': 0.544966534099346, 'ride': 0.4698369759855089, 'wanna': 0.3719531863020882}, {'teach': 0.571315651389649, 'new': 0.43966964720700114, 'don': 0.69302887948634}, {'sleazy': 0.9581640455386712, 'imma': 0.24604177780353115, 'cause': 0.14623647086908656}, {'weekend': 0.6650212185942841, 'broke': 0.5424653664977546, 'straight': 0.5133011834876579}, {'fear': 0.6320903863749822, 'chronomentrophobia': 0.774894666036827}, {}, {'left': 0.6060376057074571, 'beer': 0.7954359939482075}, {'wonder': 0.5585560278249848, 'mind': 0.436037249854753, 'way': 0.3919711452662109, 'losin': 0.586724212725343}, {'equivalent': 1.0}, {'love': 1.0}, {'blind': 0.557249234159107, 'sincerely': 0.538892872613413, 'truly': 0.524654572431533, 'right': 0.35185983360173095}, {'follow': 0.5114525491075823, 'rules': 0.5114525491075823, 'hood': 0.43486456172969074, 'took': 0.4317608865767742, 'shit': 0.3182890664110129}, {'customs': 0.5261169370157585, 'rushed': 0.5261169370157585, 'coming': 0.4118287335233781, 'feds': 0.5261169370157585}, {'underrated': 0.8881572145534026, 'got': 0.4595397286815811}, {'da': 0.6234834247521884, 'royce': 0.6904729846764524, 'verse': 0.3667635157581431}, {'fantastik': 0.5280413250934152, 'mr': 0.46562989778228797, 'dough': 0.5128423199650884, 'like': 0.2546264978695896, 'long': 0.42014195067898186}, {'flows': 0.7679409086903916, 'don': 0.396476743774979, 'make': 0.5030635669628296}, {'stop': 0.8147299367266964, 'don': 0.5798406075822159}, {'arrested': 0.5953182273361306, 'butter': 0.5757078340940225, 'bread': 0.5604968313595866}, {'di': 0.7078262320865011, 'la': 0.34225485486384055, 'kicked': 0.34225485486384055, 'da': 0.31957653167091365, 'raps': 0.30125992063951984, 'walk': 0.2679898401729987}, {}, {'bust': 0.8062666914931619, 'nigga': 0.5915522142538818}, {'grip': 0.5532122409466068, 'pick': 0.45469021575202684, 'stick': 0.48694904816087536, 'ice': 0.5000936398929967}, {'blaze': 0.7418237228092304, 'johnny': 0.6705949330836419}, {'king': 0.7476587399735615, 'god': 0.6640831337574734}, {'walkin': 0.5733085322351894, 'smell': 0.634307835476776, 'street': 0.5186240417866297}, {'hook': 1.0}, {'carry': 0.5113083734594672, 'hangin': 0.5475926915973969, 'thugs': 0.4950136711565927, 'young': 0.4400766486731884}, {'nature': 0.524433735337806, 'polar': 0.524433735337806, 'peace': 0.40758131077485715, 'friend': 0.45846177376093583, 'got': 0.271346257734095}, {'web': 0.7074047698546527, 'saying': 0.6021610818186989, 'know': 0.370108799044038}, {}, {'mommy': 0.7094245073644284, 'word': 0.5401733294889078, 'love': 0.45269155333362027}, {'frail': 0.5553455861452846, 'sing': 0.5228622727323522, 'things': 0.4347080531322266, 'rings': 0.4787851629322894}, {'let': 1.0}, {'salary': 0.4988399660923255, 'depends': 0.48240766576830574, 'person': 0.4360876127280782, 'baddest': 0.4988399660923255, 'fuck': 0.2818294067181696}, {'miss': 0.6343650193830084, 'lady': 0.6572681163373633, 'just': 0.40691478890491256}, {'window': 0.32644692353368115, 'signs': 0.34859480644819785, 'gang': 0.32644692353368115, 'bish': 0.6177343197355256, 'ya': 0.532682629122652}, {}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'prove': 0.7579275914580521, 'lost': 0.6523386897207585}, {'hammer': 0.49421486610436693, 'lord': 0.44682403132547766, 've': 0.3662958660248963, 'knows': 0.4659649372448375, 'goin': 0.45255272283235404}, {'won': 0.4852552311562933, 'pussy': 0.5514908026672918, 'let': 0.399414883865123, 'cause': 0.37679626611425193, 'bitch': 0.39859450522831696}, {'waiting': 0.5151597993187241, 'moving': 0.5073329383850641, 'mcs': 0.4939980670422571, 'slow': 0.4828970703514181}, {'ll': 0.5101535124433425, 'know': 0.4501782695449037, 'hold': 0.6335822628464611, 'like': 0.3683156738147786}, {'spillin': 0.6740706757472072, 'god': 0.434329604420831, 'feel': 0.4441440054503214, 'll': 0.3996531261530335}, {'tea': 0.46153763373337886, 'isn': 0.43454134172629266, 'stan': 0.46153763373337886, 'cup': 0.44633411051178384, 'maybe': 0.3538917821276934, 'just': 0.24634592743221878}, {'ve': 0.4094360214476196, 'ya': 0.41271397245019414, 'ho': 0.45287945312367095, 'takin': 0.5298147873015862, 'fuckin': 0.41979258376072404}, {}, {'monarch': 0.6706393679487109, 'powerful': 0.6314122824732719, 'world': 0.38930883331777455}, {'finest': 0.5758627253074585, 'wu': 0.44448358963878504, 'shaolin': 0.511187685859204, 'bring': 0.4577156431335926}, {'tied': 0.5880582349934763, 'tongue': 0.57678355010175, 'hungry': 0.5670169738097611}, {}, {'lesson': 0.6029314616853771, 'learn': 0.5444351639602418, 'lost': 0.46858845818306216, 'ain': 0.34711505529311115}, {'rats': 1.0}, {'zero': 0.475276480633264, 'pace': 0.48817473704086817, 'hour': 0.44130093855630487, 'splash': 0.46473783779858646, 'game': 0.35365225408522055}, {'blood': 0.5587993555792563, 'dot': 0.6328949682646909, 'good': 0.5358985345654937}, {'visit': 0.7455459215835285, 'told': 0.5434676304385702, 'got': 0.3857514918644552}, {'lye': 0.5374212057532659, 'puff': 0.5255045838079321, 'life': 0.3507209814670722, 'die': 0.43767745435147254, 'bitch': 0.3470686086564821}, {'leviathan': 0.5686566970930514, 'bloody': 0.5499245620135443, 'game': 0.3983861641669431, 'rap': 0.39528491062119203, 'like': 0.243414955540901}, {'hustlin': 0.5439726333240805, 'johnny': 0.5165398943455505, 'body': 0.4916605700648921, 'caught': 0.44221057833052596}, {}, {'thinkin': 0.7079713089618721, 'time': 0.5124431376462142, 'em': 0.48598215642769915}, {'happens': 0.45301075548317926, 'lot': 0.37729945725113295, 'news': 0.4632834687507693, 'stuff': 0.4443253001716107, 'won': 0.36423884303716736, 'tell': 0.32817662227399536}, {'paid': 0.7861283702402259, 'shot': 0.6180632536427372}, {}, {'let': 1.0}, {'sneak': 0.6119372985298049, 'army': 0.5868960198140216, 'island': 0.5301752583764202}, {'enemies': 0.7835808714996103, 'die': 0.6212898017993788}, {'hell': 0.43154352281719444, 'left': 0.41365868780835335, 'years': 0.43509698999080804, 'peace': 0.42196016765114286, 'mind': 0.3902027768569201, 'way': 0.3507687230428382}, {'rings': 0.6543581584399523, 'count': 0.6385128569549451, 'just': 0.4051132335363886}, {'suppose': 0.5988996978088951, 'spitting': 0.5316373801086869, 'flames': 0.5988996978088951}, {'life': 0.42729901392238595, 'took': 0.5404861887246535, 'want': 0.4530019662327436, 'ain': 0.4003745504355286, 'cause': 0.3997244931845827}, {'busting': 0.5315588320041393, 'cops': 0.4848366730833239, 'running': 0.5225580380572018, 'shots': 0.45750596216191247}, {'souls': 0.5169297529079502, 'truth': 0.39159609740139795, 'old': 0.38594218015457576, 'told': 0.3896528467667952, 'young': 0.4154341662149961, 'let': 0.32568370113322653}, {'study': 0.5533020899002294, 'lp': 0.5209383048145987, 'mathers': 0.5350757513364393, 'tell': 0.36901764215369953}, {'hund': 0.570999901223975, 'nothin': 0.45574282172396474, 'don': 0.30484072672734014, 'got': 0.6110071395471875}, {'ma': 0.47839324549970924, 'day': 0.8781457183521736}, {}, {'little': 0.6242241614355811, 'sorry': 0.781245285605005}, {'chicks': 0.42944540885797744, 'shook': 0.41529903645240385, 'arm': 0.40432625754445795, 'scream': 0.3702416930649737, 'heard': 0.3314703808640785, 'look': 0.31961156659473383, 'couldn': 0.36127627989900896}, {}, {'strike': 0.28344718819597986, 'army': 0.2718481566320051, 'ther': 0.9031698388602596, 'ain': 0.17332199344776297}, {'rza': 0.8220222768997939, 'verse': 0.5694553329985405}, {'speak': 0.5764642991935028, 'gotta': 0.48895781576123504, 'come': 0.4530838200901069, 'people': 0.47257191847791963}, {}, {'wanted': 0.5214811823798677, 'apart': 0.5597387563832334, 'pick': 0.49270156811865384, 'day': 0.4147228783171555}, {'steal': 0.5328712023366458, 'wondering': 0.5328712023366458, 'rob': 0.5187920030695379, 'kill': 0.40367241792286457}, {'hook': 1.0}, {'sun': 0.5996796326603037, 'walk': 0.5267003555088201, 'right': 0.4391998189348595, 'll': 0.4124010096094241}, {'building': 0.4711631159037878, 'buildings': 0.538962781563703, 'burnt': 0.538962781563703, 'brothers': 0.44389588688122156}, {'vacation': 0.6444593083006994, 'slide': 0.6067635487310238, 'gotta': 0.4653065611786691}, {'outside': 0.6307516503522321, 'world': 0.42470390129742097, 'view': 0.6494451106911854}, {'times': 0.6547213127922926, 'died': 0.7558703609585025}, {'momentum': 0.5555637390658099, 'adrenaline': 0.5449120625438312, 'venom': 0.5449120625438312, 'got': 0.31223487957573265}, {'drive': 0.5893639159325451, 'couple': 0.5328491287818483, 'hood': 0.4899975650233398, 'shit': 0.35864239407002485}, {'haha': 0.5773127876122405, 'hustling': 0.5773127876122405, 'fake': 0.4626466702015666, 'nigga': 0.345511141745344}, {'breaker': 0.6127153736176595, 'record': 0.543901419844012, 'fuckin': 0.4383769239789675, 'say': 0.36956297020532}, {}, {'help': 1.0}, {'meant': 0.5730269373227044, 'wonder': 0.5942912204225551, 'doubt': 0.5643208966813399}, {'wanted': 0.5214811823798677, 'apart': 0.5597387563832334, 'pick': 0.49270156811865384, 'day': 0.4147228783171555}, {'thought': 0.6712545482868785, 'black': 0.5701237656908303, 'verse': 0.47368367419480034}, {'large': 0.7335579585698103, 'produced': 0.6796268986869873}, {'yo': 0.4662049743061541, 'world': 0.8846767330116679}, {}, {'sub': 0.6099132789855921, 'act': 0.5247943491112215, 'cloud': 0.5937985207610176}, {'dictionary': 1.0}, {'afford': 0.7104684352092938, 'stop': 0.570770513398146, 'know': 0.4116498798815252}, {'tryna': 0.6184150241833891, 'plane': 0.6098806882455127, 'game': 0.49558894657713864}, {'dont': 0.47998948492480276, 'ladies': 0.5603205999318527, 'places': 0.5320634270143573, 'wanna': 0.4154027314394656}, {'telling': 0.5884315212750196, 'months': 0.664117779160158, 'need': 0.46118967917045356}, {'regular': 0.708659664252489, 'shit': 0.44101573710334774, 'fuckin': 0.5507327844687842}, {'dressed': 0.6125075609427505, 'way': 0.39571681091623484, 'guess': 0.4868422279483629, 'just': 0.3269261965468532, 'ain': 0.352628133369886}, {'barrel': 0.5899689544450721, 'lick': 0.5508767211792466, 'gun': 0.4592133022557869, 'bitch': 0.3709374797524865}, {'beast': 0.7165292636246123, 'feel': 0.47211989575994123, 'cause': 0.41184493822379364, 'like': 0.3067121863516883}, {'yeah': 0.7706523904345972, 'let': 0.38768943850954657, 'bring': 0.5057586305596709}, {'various': 1.0}, {'immaculate': 0.6488685838352516, 'born': 0.5199900230019092, 'like': 0.5554997181728439}, {'limit': 0.5440141114101912, 'poison': 0.5008363671017354, 'drown': 0.5440141114101912, 'ma': 0.3965604954625411}, {'open': 0.7598851761456039, 'people': 0.6500573198373854}, {'picture': 0.6762292641996634, 'paint': 0.7366912394212258}, {'challenge': 0.7085552796600483, 'tell': 0.4725617405183738, 'like': 0.3032989020939974, 'say': 0.42736938712627964}, {'truth': 1.0}, {'verse': 1.0}, {'curb': 0.4988339738034704, 'blade': 0.4988339738034704, 'didn': 0.43218387175219736, 'ride': 0.4567824413407482, 'love': 0.326949897444461}, {'buttery': 0.6280800414475383, 'flash': 0.5979263945449503, 'gold': 0.4979954701016215}, {'wall': 1.0}, {'named': 0.6951678655409433, 'ark': 0.7188474377218361}, {'gone': 0.616721205792883, 'far': 0.6479289287706573, 'say': 0.44703809411221435}, {'showtyme': 0.8461273534155791, 'chorus': 0.5329807705742747}, {'form': 0.8089499858324212, 'come': 0.5878774705852619}, {'momentum': 0.5555637390658099, 'adrenaline': 0.5449120625438312, 'venom': 0.5449120625438312, 'got': 0.31223487957573265}, {'pretend': 0.5290463555779452, 'asleep': 0.4870565840088746, 'probably': 0.43572860546919395, 'god': 0.34088486950383895, 'damn': 0.42050437065805024}, {'warm': 0.7356995848517206, 'alive': 0.6773079955596315}, {'doing': 0.8392907229759563, 'stealth': 0.5436828876528087}, {'finna': 0.5301731834005292, 'slay': 0.5127087347485407, 'crew': 0.43665667370095035, 'life': 0.3257531977626999, 'street': 0.3990763741131468}, {'wars': 0.7115079920507105, 'gun': 0.5355722215124012, 'black': 0.45488325182648526}, {'hitting': 0.5532426600162385, 'bo': 0.5426354849285319, 'god': 0.3872076841900486, 'man': 0.34374775158266985, 'say': 0.3624596284009746}, {'best': 0.7101495690684025, 'trying': 0.7040508430162996}, {'stress': 0.46009220767103126, 'post': 0.4757643743252461, 'ask': 0.3880864075742707, 'worked': 0.4757643743252461, 've': 0.33199543548499194, 'cause': 0.273458683825251}, {'womb': 0.853519083841987, 'cause': 0.5210615832294061}, {'run': 0.5463153543535503, 'clock': 0.6817133945535268, 'time': 0.48662755910846467}, {'love': 0.7563327276457537, 'just': 0.654187133083443}, {'thrown': 0.6193172628857857, 'style': 0.49225481495465034, 'car': 0.5210083335332808, 'got': 0.3204397625677803}, {'art': 0.5129941692000703, 'piss': 0.5372956084459317, 'walk': 0.4505642622761608, 'sick': 0.4951184273191462}, {'nope': 0.32071596194970664, 'talkies': 0.6414319238994133, 'walkie': 0.6414319238994133, 'don': 0.17122119759431845, 'need': 0.21202534577365073}, {'stand': 0.7086323091012604, 'turned': 0.3543161545506302, 'night': 0.6101641689924687}, {'choose': 0.5540376113891753, 'life': 0.3615648447733458, 'boy': 0.45420512428629795, 'come': 0.3937006238971781, 'death': 0.44834218182683294}, {'leaf': 0.44725712549183033, 'loose': 0.4176211933842247, 'lee': 0.4354399693651324, 'bruce': 0.4624920894645409, 'wanted': 0.38907721009011115, 'cause': 0.2658300723839053}, {'hear': 0.6344606425913647, 'star': 0.6858556131706899, 'like': 0.35645724972962706}, {'mandatory': 0.6646082646086927, 'life': 0.4083538629154742, 'strikes': 0.6257339508575765}, {'gates': 0.4569828023904398, 'neck': 0.7879655153773791, 'stock': 0.4126464163123699}, {}, {'irish': 0.45902951095065225, 'sippin': 0.4225968919465499, 'cool': 0.7814753834853155}, {'wall': 0.3644947338703912, 'ak': 0.4032103839209414, 'duck': 0.4032103839209414, 'ar': 0.41694497935237973, 'comin': 0.3507601384389528, 'ayy': 0.32882102148985176, 'bullets': 0.3701179634642278}, {'thankful': 1.0}, {'majestic': 0.6341133009115204, 'madam': 0.6341133009115204, 'intro': 0.4424936646034506}, {'given': 1.0}, {'work': 0.5780409022698151, 'just': 0.37078556436529014, 'know': 0.7269021808753989}, {'ready': 0.5920853853215969, 'snap': 0.6003707035479832, 'moment': 0.5375778220963696}, {'murderers': 0.6655908756022322, 'smooth': 0.6336363619733025, 'shit': 0.3943269545697982}, {'rain': 0.6775643523088309, 'pour': 0.6645735903203803, 'like': 0.3150372859345281}, {'cause': 1.0}, {'ashes': 0.7690028121812417, 'niggas': 0.4638286806612494, 'man': 0.4398836549059154}, {'fighting': 0.7275960780394908, 'smile': 0.6860057924110783}, {'beat': 1.0}, {'beef': 0.8002423359525195, 'said': 0.5996767493819106}, {'telling': 0.6320903863749822, 'manage': 0.774894666036827}, {'dont': 0.46957254134138804, 'looking': 0.46274902090784714, 'diamonds': 0.46957254134138804, 'love': 0.3674269696805043, 'like': 0.25487014586792056, 'need': 0.38066419739959284}, {'constantly': 0.5654040119380273, 'drive': 0.5654040119380273, 'drinkin': 0.6005302711510605}, {'dk': 0.7002297845087397, 'working': 0.7139175364752178}, {'hundreds': 0.4746676014170929, 'doin': 0.38368397279696626, 'rich': 0.3949695455643167, 'used': 0.36637543999823263, 'years': 0.38038891561099786, 'niggas': 0.2862986244399335, 'run': 0.33253983633632617}, {'niggas': 0.6090973508413416, 'don': 0.5213710992468876, 'em': 0.5976391838460323}, {'cheeba': 0.9778543591868981, 'like': 0.209286531385039}, {'hol': 0.8847118097004012, 'humble': 0.4661384062450135}, {'write': 0.7563559145607093, 'real': 0.6541603247744644}, {'slide': 0.46459296726922356, 'doing': 0.3808775832239113, 'tried': 0.4064161849032196, 'got': 0.25531825357442667, 'caught': 0.3693060454542575, 'like': 0.2112252094088428, 'herb': 0.4772012899218061}, {'figure': 0.6307858774768936, 'alright': 0.5646610205391098, 'city': 0.5322284365377672}, {'gza': 0.7561748734468172, 'hook': 0.6543695903445467}, {'chorus': 1.0}, {'mathematics': 1.0}, {'hook': 1.0}, {'write': 0.4421973225955479, 'days': 0.43795579488990993, 'won': 0.397426845456892, 'rhyme': 0.43026104430013984, 'finish': 0.5192143929819484}, {'artist': 0.6570434511145643, 'knowledge': 0.6301563693379358, 'll': 0.41375941503522834}, {'ve': 0.6238508714462287, 'far': 0.7815434026308336}, {'code': 0.5285047077300538, 'streets': 0.4812508542886879, 'way': 0.38464535419613344, 'break': 0.42596738973314324, 'hit': 0.39959995437042034}, {'new': 0.49370518544701575, 'neighbor': 0.7536550719153017, 'ain': 0.4338884907888997}, {'wannabe': 0.7021783802550131, 'gang': 0.6053754609476194, 'just': 0.37478803820947093}, {'cock': 0.8032446201068338, 'need': 0.5956492930151334}, {'called': 0.5156166849841213, 've': 0.4368625449171476, 'pull': 0.49372536859279087, 'push': 0.547289513349572}, {'mother': 1.0}, {'skeet': 0.6115848984747904, 'til': 0.44803974142792896, 'make': 0.40063770147628497, 'meet': 0.5145033860088523}, {'drop': 1.0}, {'gotta': 0.8097518731866211, 'know': 0.5867724464140749}, {'raekwon': 0.8513804809508824, 'verse': 0.5245486408864716}, {}, {}, {'fly': 1.0}, {}, {'way': 0.4059865415935162, 'slow': 0.5228927389786368, 'yo': 0.38447322261571915, 'said': 0.4059865415935162, 'day': 0.4204258658894656, 'like': 0.26898972470313476}, {'sort': 0.579662984518692, 'showed': 0.6314909234475194, 'pass': 0.5149854735643344}, {'know': 1.0}, {'throws': 0.4962158878778494, 'psycho': 0.4962158878778494, 'brown': 0.44807311517843457, 'dick': 0.3780637171204912, 'fly': 0.4047689396267031}, {'hoes': 0.7627054943052844, 'check': 0.6467459539545121}, {'killah': 0.45341909926190005, 'ghostface': 0.8912974365634219}, {'locks': 0.5533759298552612, 'game': 0.38768085413276804, 'nothin': 0.42712700251686403, 'changed': 0.5094551493008603, 'ain': 0.31858532635309716}, {'starks': 0.5948366128889836, 'going': 0.4971973452423984, 'peace': 0.4780445523198415, 'baby': 0.41284090137484586}, {'seamless': 0.5083018978516847, 'bunch': 0.4915579117869791, 'lip': 0.5083018978516847, 'ends': 0.4915579117869791}, {'generation': 0.5338448863003633, 'safe': 0.5162594879874579, 'maybe': 0.40933459025733254, 'sleep': 0.42101339390889425, 'say': 0.3219917604567796}, {'talkin': 1.0}, {'lovely': 0.5550115386922286, 'fronting': 0.5550115386922286, 'outside': 0.4784971675502631, 'inside': 0.393655743617879}, {'grab': 0.5074892495928757, 'pen': 0.46521381253604915, 'loose': 0.5241946190116713, 'yo': 0.35517455463325176, 'let': 0.35369733857298624}, {'fading': 0.7573836786159834, 'thousand': 0.6529701090908533}, {'em': 0.679311683638292, 'need': 0.733849873252363}, {'bear': 0.5216821804448187, 'party': 0.4497626234807257, 'heavy': 0.45605635501717984, 'load': 0.4710686728001935, 'll': 0.30930275084580633}, {'doom': 0.5727979513720117, 'mf': 0.6382496160167929, 'hook': 0.5143344578758486}, {'wouldn': 0.6129007136426399, 'believe': 0.5808449207772738, 'shit': 0.39557676651589657, 'know': 0.3612352626978894}, {'bed': 0.5906700520122354, 'didn': 0.5427752678947562, 'sleep': 0.5247643968647825, 'like': 0.28482665956820086}, {'big': 0.749797680545119, 'gonna': 0.6616671657632406}, {'burn': 0.7553026303628755, 'kid': 0.6553761794320278}, {'left': 0.5777214504703022, 'years': 0.6076624801101934, 'light': 0.5449626004899959}, {'krills': 0.5148299791140846, 'swallow': 0.48471650746120787, 'hollow': 0.5148299791140846, 'pills': 0.48471650746120787}, {'finest': 0.5758627253074585, 'wu': 0.44448358963878504, 'shaolin': 0.511187685859204, 'bring': 0.4577156431335926}, {'elevator': 0.41770947361956373, 'make': 0.5944477558348732, 'music': 0.6871322006945607}, {'took': 1.0}, {'mo': 0.513456169698517, 'product': 0.45578999932350045, 'hoes': 0.45578999932350045, 'don': 0.26508996711791943, 'want': 0.3344587049866641, 'cold': 0.37247603791916395}, {'gza': 0.817049897585536, 'verse': 0.5765669647625201}, {'rush': 0.6752477670599275, 'high': 0.5271327577752503, 'head': 0.5159181221481187}, {'bit': 1.0}, {'meds': 0.7615009769219411, 'pain': 0.6481637618279268}, {'yo': 0.3885628161437211, 'live': 0.9214222364966349}, {'pink': 0.5672833156326453, 'blue': 0.48703491599596854, 'pretty': 0.5267305869679464, 'baby': 0.40440266957332893}, {'bus': 0.5100397714793328, 'kamikaze': 0.5274133069698905, 'town': 0.44894773264791554, 'arab': 0.5100397714793328}, {'tricked': 0.9183123745603777, 'ah': 0.39585651785625636}, {'hate': 0.5443797751219772, 'second': 0.6143999330463157, 'love': 0.41182682483121674, 'll': 0.39567922495408653}, {'shrunk': 1.0}, {'monkey': 0.6700050586786138, 'catch': 0.5784544646094487, 'need': 0.46527803915343274}, {'impossible': 1.0}, {'clan': 0.6366593593675977, 'shit': 0.38742283108628095, 'turn': 0.5005489815773895, 'want': 0.44047602332541264}, {'noise': 0.5632280689435655, 'waiting': 0.49997202548661024, 'train': 0.5446747584454138, 'make': 0.3689600569131417}, {'gonna': 0.6433877882585503, 'cause': 0.566126763884516, 'know': 0.5153180000091369}, {'deck': 0.649434879729212, 'inspectah': 0.6715566446634564, 'verse': 0.3567155869869779}, {}, {}, {'lp': 0.6292071144843546, 'mathers': 0.6462828062696804, 'said': 0.4317602823355328}, {'greco': 0.6547558359066712, 'standing': 0.6233215043239702, 'right': 0.42751034793728576}, {'lamar': 0.6083844778683101, 'kendrick': 0.596844066264219, 'chorus': 0.523111353015872}, {'giant': 0.4865442552303973, 'hip': 0.37653656566407817, 'hop': 0.36674877594502414, 'talk': 0.39678040393981345, 'livin': 0.399895186710032, 'people': 0.3510828247137628, 'like': 0.2153607175172347}, {'sell': 0.6563304426067098, 'difficult': 0.7544735582561396}, {'demi': 0.5498111228730124, 'villains': 0.5176515316783359, 'party': 0.47401368555736273, 'case': 0.4528307043703155}, {'nasty': 0.8023105797543911, 'nas': 0.5969068047980127}, {'bless': 0.7188362208982892, 'life': 0.4797502299231585, 'god': 0.5031045660827802}, {'knew': 1.0}, {'weird': 1.0}, {'ya': 0.5336851860524606, 'mind': 0.545286028597507, 'yo': 0.46420449038947864, 'll': 0.449841594682788}, {}, {'way': 0.48113378967353554, 'hit': 0.49983975707029316, 'patrol': 0.7201878183406691}, {'bucket': 0.6340977267115812, 'fuck': 0.37044889375015827, 'kick': 0.551613289921594, 'say': 0.3954876337894329}, {'food': 0.4752478679102635, 'eatin': 0.5200850673025207, 'cut': 0.41180154940757696, 'turn': 0.41816928384653196, 'long': 0.39900491321345766}, {'just': 0.4327343885718122, 'fuckin': 0.5800588388864174, 'wasn': 0.6901251280580364}, {'vacation': 0.7188886948679786, 'think': 0.5215027661008098, 'need': 0.4596019031076989}, {'excellent': 0.6786432605357995, 'right': 0.42851078133358816, 'money': 0.47932611482507825, 'know': 0.3550609959667675}, {'projects': 0.5005591531109931, 'living': 0.4843207241055127, 'real': 0.41888137063075215, 'fucking': 0.4570190977256502, 'life': 0.36131137830305354}, {'hear': 0.5909376664681059, 'time': 0.48401043081942824, 'pop': 0.6453887024167847}, {'wack': 0.5404353587261042, 'fact': 0.5131810058001016, 'don': 0.3030735099685797, 'understand': 0.47884458188751733, 'nigga': 0.351324909843975}, {}, {'massacre': 1.0}, {'wax': 0.53234837232305, 'cappachino': 0.53234837232305, 'lp': 0.5012102135720949, 'fat': 0.426613106668107}, {'motherfuckers': 1.0}, {'baby': 0.3653627507121719, 'love': 0.671839357952386, 'em': 0.6443150917820886}, {'outro': 1.0}, {'mics': 0.5738797816554627, 'use': 0.5328554990257561, 'born': 0.48846697428849545, 'right': 0.38487274311716757}, {'window': 0.46449046472919886, 'gunshots': 0.5387650858145173, 'shatter': 0.5072516002029113, 'floor': 0.4864941978837102}, {'coming': 0.5715840377366551, 'willing': 0.6722509462873464, 'god': 0.4705001094797208}, {'grae': 0.5266558302632116, 'jean': 0.5369506428173503, 'fuck': 0.659027801862563}, {'discouraged': 0.732779955364025, 'don': 0.3783236539667602, 'girl': 0.5656012286637436}, {'telling': 0.5240154148944602, 'rhyme': 0.5148086228623526, 'heart': 0.48643993403254765, 'hold': 0.473028664414711}, {'leave': 1.0}, {}, {'studio': 0.5811437484083647, 'hole': 0.5657891212474353, 'wall': 0.525343206334888, 'like': 0.2572336088494454}, {'train': 0.7613130159980938, 'brain': 0.648384524546882}, {'rest': 0.6773079955596315, 'pedestal': 0.7356995848517206}, {}, {'cause': 1.0}, {'cocaine': 0.6837157526860379, 'pain': 0.6436787177607345, 'like': 0.34381750657996063}, {'thugs': 0.5008357397340449, 'sides': 0.5540331646363387, 'iron': 0.49392403758348774, 'took': 0.44525257931349616}, {'younger': 0.5496626586851375, 'triggers': 0.5496626586851375, 'niggas': 0.3315323451984913, 'fame': 0.4527084275738443, 'got': 0.28439990679530414}, {'rexha': 0.535673413667099, 'bebe': 0.535673413667099, 'rihanna': 0.5001788848726606, 'outro': 0.4194389954546621}, {'pieces': 0.8132755221382023, 'way': 0.5818787890023441}, {'askin': 0.7773577017321257, 'came': 0.6290588236069402}, {'ovary': 0.5990919942756519, 'remember': 0.47247011303528214, 'broke': 0.4886861488834387, 'long': 0.42313901093225115}, {'crazy': 0.4799496106072922, 'ducking': 0.5989042296411343, 'spades': 0.5407986532162439, 'cause': 0.3442367087853426}, {'ladies': 0.5739507419624316, 'river': 0.5739507419624316, 'cold': 0.452255536792919, 'll': 0.3696295727369459}, {'sound': 0.8202171933081802, 'jay': 0.31606208721220735, 'like': 0.4768107725594236}, {'explain': 0.5714008337699602, 'natural': 0.5159636316721204, 'far': 0.4995205726227977, 'rap': 0.3971924161981232}, {'ill': 0.8116615160058337, 'man': 0.5841280539702847}, {'rapunzel': 0.47960394123794614, 'kids': 0.3950072697596545, 'slow': 0.3990770597278549, 'rum': 0.47960394123794614, 'hit': 0.3218998158977475, 'live': 0.3479186468975867}, {'submit': 0.5456807259655435, 'duel': 0.5137627302397288, 'honor': 0.527705442949757, 'son': 0.39975913724083634}, {'cotton': 0.7772790370850684, 'went': 0.6291560207993793}, {'amazing': 0.43571761180557533, 'half': 0.7577229793345333, 'nas': 0.3361966654937756, 'man': 0.28077187113435476, 'like': 0.21010713419925572}, {'thank': 0.6898659220154344, 'save': 0.5875354531547821, 'll': 0.4229504710104948}, {'destroy': 1.0}, {'poetry': 0.6370174842437035, 'fell': 0.5889933081301064, 'deep': 0.49728825418038625}, {'line': 0.4919228912146681, 'hip': 0.4554605136032745, 'gang': 0.5246749420580534, 'chain': 0.5246749420580534}, {'brooklyn': 0.4568438933903229, 'battle': 0.8895468830095304}, {'shit': 0.4746379843259082, 'hit': 0.5560302400600948, 'cops': 0.6823116267320618}, {'locked': 0.5303321829299393, 'block': 0.4985110942755465, 'shit': 0.37248906987707353, 'deep': 0.46725505610907436, 'got': 0.33639124542053844}, {}, {'let': 1.0}, {'dip': 0.5502021562574216, 'make': 0.3727042895578134, 'hair': 0.4842995083174072, 'flip': 0.45593989212802394, 'nigga': 0.3405024240804945}, {}, {'run': 0.5859588579064654, 'city': 0.6372463689688929, 'nigga': 0.5005689583632932}, {'way': 1.0}, {'dome': 0.7450806657573606, 'phone': 0.6669743634612715}, {'prove': 0.6271949496064203, 'lose': 0.5614465272087672, 'lost': 0.5398187587268666}, {'traveled': 0.612519645806229, 'strangers': 0.612519645806229, 'seen': 0.4996392368527754}, {'leg': 0.7855041637991655, 'left': 0.6188563715872802}, {'represent': 1.0}, {'good': 0.6462036274779259, 'friend': 0.7631650357782188}, {'answers': 0.7706125911132553, 'don': 0.39785609462792976, 'said': 0.49786219216277755}, {'hands': 0.6613549721801645, 'money': 0.5828890676659253, 'man': 0.472069841832882}, {'bridge': 0.7543067694701993, 'hook': 0.6565221226519571}, {'folks': 0.493995281140914, 'poor': 0.430006848428483, 'hate': 0.43769705300169115, 'don': 0.27703014124797404, 'money': 0.3789890475067918, 'just': 0.28640155836628567, 'got': 0.27763251319709065}, {}, {'fake': 0.6143250897715441, 'niggas': 0.4623700138002829, 'don': 0.39577640917477136, 'make': 0.5021749579143052}, {'volume': 0.6556488822109057, 'loud': 0.5641471340936329, 'turn': 0.501859098103771}, {'funny': 0.41630821076736757, 'plot': 0.40530876806859695, 'thats': 0.41630821076736757, 'ill': 0.34216753745227413, 'money': 0.3040545925752899, 'ben': 0.41630821076736757, 'times': 0.3259745458121796}, {'bronx': 0.41947483805525176, 'know': 0.9077669636192542}, {'hard': 0.656992471036333, 'run': 0.643317808675929, 'like': 0.3930688108232117}, {'plead': 0.6091309321702022, 'sip': 0.5607849442849997, 'wine': 0.5607849442849997}, {'rip': 0.4620708212611173, 'trip': 0.4039438999516107, 'rhyme': 0.3702941134180181, 'clip': 0.41017573015760034, 'rap': 0.3211948865045617, 'flip': 0.3702941134180181, 'say': 0.2787008005727446}, {}, {'losses': 0.44696988803826093, 'taking': 0.40410942881709566, 'kunta': 0.40410942881709566, 'king': 0.34438898029902215, 'black': 0.30351100903682166, 'yeah': 0.28748573702184843, 'man': 0.27155898772505055, 'oh': 0.32633421994346}, {'joker': 0.4661669385164291, 'tally': 0.4661669385164291, 'high': 0.3350302408540919, 'spades': 0.4209395092679261, 'game': 0.32658449191994354, 'ho': 0.3598141451021635, 'like': 0.19954395190222596}, {'exorcist': 0.4943784514703845, 'slip': 0.4943784514703845, 'arrest': 0.4943784514703845, 'hip': 0.36999623115487307, 'hop': 0.36037845259729934}, {'says': 0.641375888168982, 'simon': 0.6539131927349333, 'fuck': 0.401291049542169}, {'chorus': 1.0}, {'mathematics': 0.7131185619526393, 'simple': 0.7010434484385399}, {'jacked': 0.7248075759446799, 'ya': 0.5098307687845721, 'black': 0.46338597848200935}, {'capone': 0.5041892375725707, 'sewn': 0.5041892375725707, 'drug': 0.4552728919759889, 'scripts': 0.48758072675730524, 'like': 0.21581949438968054}, {'plat': 0.5992563456226271, 'bet': 0.504131837916599, 'sound': 0.441257958292135, 'll': 0.3552960846867368, 'like': 0.25651321346078454}, {'playing': 0.46722903704528257, 'dogs': 0.4955556041378195, 'cubicle': 0.5263424649274177, 'poker': 0.5090042040724897}, {'hip': 0.5956965269703015, 'hop': 0.5802118360424149, 'people': 0.5554276488182874}, {}, {'lungs': 0.7622584211929285, 'smoke': 0.6472728167631203}, {'nights': 0.4880350447830693, 'jet': 0.4295787094653286, 'livin': 0.40112048031919983, 'black': 0.6452800072109666}, {'rains': 0.5953182273361306, 'relief': 0.5604968313595866, 'major': 0.5757078340940225}, {}, {'let': 0.6449229748412663, 'gotta': 0.7642475754111958}, {'won': 0.5107842247010957, 'easy': 0.603235024601092, 'knows': 0.6125414115723282}, {'gon': 0.6048545927536216, 'pop': 0.6429698993139257, 'bitch': 0.4698304270703321}, {'yo': 1.0}, {'life': 0.6982571118850619, 'chorus': 0.7158470546855189}, {'lettin': 0.8741050720602999, 'know': 0.4857368865944379}, {'irony': 0.5364399514617645, 'artist': 0.5050624677736307, 'opposite': 0.5187690690397437, 'going': 0.4336158843143866}, {}, {'strap': 0.6573338537441683, 'deal': 0.5469656086117402, 'hand': 0.5184021872232302}, {'troy': 0.583739874828451, 'passing': 0.5645108843980582, 'pass': 0.4603627611096066, 'life': 0.3586660676937895}, {'em': 1.0}, {'monch': 0.6375187007658557, 'pharoahe': 0.6333146352492639, 'verse': 0.4387282518289733}, {'country': 0.8052478924236796, 'sound': 0.5929383034913683}, {'movin': 0.4701116538624733, 'suggest': 0.4861251139093541, 'backwards': 0.45769064926793723, 'sleep': 0.3833794971601017, 'tec': 0.43152848951056444}, {'heads': 0.6701858577955339, 'blond': 0.7421933144477013}, {'yah': 0.7452860713970229, 'common': 0.6667448325870938}, {'locked': 0.5303321829299393, 'block': 0.4985110942755465, 'shit': 0.37248906987707353, 'deep': 0.46725505610907436, 'got': 0.33639124542053844}, {'hate': 0.6979772570819439, 'gonna': 0.5589380629812688, 'know': 0.4476784452563172}, {'common': 1.0}, {'dude': 0.6129594966057674, 'noise': 0.6338387969349699, 'look': 0.47172983265936697}, {'meaning': 0.6332885487678264, 'life': 0.389110155561695, 'break': 0.4530963281707717, 'took': 0.49218148912414234}, {'chorus': 1.0}, {'pain': 0.6774650912766944, 'gonna': 0.5522142195224872, 'cause': 0.48590174506645956}, {'cane': 0.5494155271654336, 'sky': 0.4634303616713531, 'shall': 0.4727396072601226, 'pass': 0.44805238671716774, 'like': 0.24318963973673335}, {'lucas': 0.5737094081174804, 'joyner': 0.5409154735822554, 'chorus': 0.3838343123544776, 'eminem': 0.48056132401197243}, {'soul': 0.6140993954820637, 'hole': 0.7892286946560951}, {'sucker': 0.5556415924852307, 'cock': 0.4953579610884244, 'little': 0.40752698187877257, 'feelin': 0.5289656606317413}, {'seen': 0.7328951688841977, 'place': 0.680341584372294}, {'rap': 0.8515018387176391, 'like': 0.5243516173909257}, {'presidents': 0.7025471608496187, 'represent': 0.5607370943382601, 'say': 0.4381796410323342}, {'represent': 1.0}, {}, {'sleazy': 0.615081678855879, 'sick': 0.5436042327820487, 'lines': 0.5711120436808118}, {}, {'understand': 0.6548103444197161, 'famous': 0.7557932341857347}, {}, {'dawn': 0.6492868167978733, 'til': 0.5441064326620448, 'break': 0.5313895176499707}, {'intro': 0.5492351742033985, 'killah': 0.5959911628083396, 'ghostface': 0.585777481021698}, {'mess': 0.5009675559083363, 'rollers': 0.5180320636171125, 'high': 0.3723052681430491, 'daddy': 0.4466157149184272, 'told': 0.37762081443249185}, {'lighter': 0.5783593444365115, 'unless': 0.5324556603799476, 'speak': 0.4923143062739029, 'way': 0.3736550043427335}, {'earths': 0.6498102995922799, 'gods': 0.5680663971155584, 'peace': 0.505021923298326}, {'grill': 0.5556864036432584, 'metal': 0.4932773632642371, 'squeal': 0.5556864036432584, 'hit': 0.37296472286682225}, {'placed': 0.6349155050531246, 'past': 0.5740327233680963, 'gold': 0.5170771063833153}, {'talkin': 0.8015825632444825, 'ain': 0.5978840977166104}, {'self': 1.0}, {'failure': 0.5355160018013263, 'option': 0.5178755552291504, 'success': 0.5041925618422625, 'motherfuckin': 0.43682648923085887}, {}, {'presence': 0.5121242463774504, 'volumes': 0.5295687855438913, 'speak': 0.45078253128833745, 'word': 0.38994404112909853, 'say': 0.3194126045150435}, {'80': 0.6304808136345746, 'holes': 0.6097121287207876, 'blow': 0.48035930690416573}, {'amazing': 0.43571761180557533, 'half': 0.7577229793345333, 'nas': 0.3361966654937756, 'man': 0.28077187113435476, 'like': 0.21010713419925572}, {'woman': 0.47974419497295834, 'beautiful': 0.4891220016493117, 'life': 0.6528785999639692, 'bitch': 0.32303979414525097}, {}, {'bang': 0.4873248600969862, 'grew': 0.583025376001082, 'hood': 0.47192051771461463, 'yeah': 0.3650871245827857, 'like': 0.25806647998935006}, {'vain': 0.5296920182906535, 'chain': 0.47222375310618037, 'watch': 0.4319677207606456, 'die': 0.41998504688954325, 'tell': 0.3653047239928994}, {'lighter': 0.5709280809647681, 'burn': 0.47506761366342865, 'bridge': 0.42728650002679724, 'small': 0.5155367452557308}, {'submit': 0.6650032481466733, 'kill': 0.4871733819644826, 'mcs': 0.5660678191344765}, {'gonna': 0.6433877882585503, 'cause': 0.566126763884516, 'know': 0.5153180000091369}, {'material': 0.7071067811865475, 'ambition': 0.7071067811865475}, {'opening': 0.533330540593118, 'bell': 0.4910007384232312, 'goes': 0.43110248101578647, 'sound': 0.3927139815139471, 'oh': 0.3666104048223274}, {'cooked': 0.48067727165145946, 'pieces': 0.4610073257915075, 'loot': 0.45320116832097235, 'cut': 0.37215931089164006, 'small': 0.4610073257915075}, {'world': 1.0}, {'friends': 1.0}, {}, {'worked': 0.5101326818642883, 'rich': 0.4244799369746672, 'men': 0.4291554496971801, 'tried': 0.42015108832979664, 'died': 0.4459597436657596}, {'stroke': 0.6550334820989855, 'dope': 0.5698256890830448, 'mic': 0.49621549894205397}, {'slide': 0.46306268146268575, 'coward': 0.4918308886870862, 'aim': 0.46306268146268575, 'bang': 0.3975574249271446, 'listen': 0.413758839049685}, {'relief': 0.6074722455292263, 'prophet': 0.6239580871448248, 'came': 0.4915829293194085}, {'sittin': 1.0}, {'yo': 0.9079007495665449, 'fuck': 0.41918519646631835}, {'bit': 1.0}, {'slay': 0.6722930376026743, 'kiss': 0.6077404789057983, 'bitch': 0.4226979795200351}, {'soul': 0.747309143664352, 'want': 0.6644765186187191}, {'charged': 0.48611271718921145, 'gandhi': 0.48611271718921145, 'sip': 0.4475305367500383, 'watchin': 0.4475305367500383, 'til': 0.3561203304029259}, {}, {'joy': 0.6274622973712258, 'voice': 0.5221095724915233, 'poison': 0.577661371125283}, {'holy': 0.5567837042857807, 'vital': 0.5694096282334228, 'bibles': 0.6047847401488232}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'magazine': 1.0}, {'pete': 0.6103581562674961, 'nas': 0.4629736069124736, 'chorus': 0.4257771362686642, 'rock': 0.4814895539999311}, {'lettin': 0.7626697722291852, 'niggas': 0.48858735571079054, 'know': 0.42381271142737137}, {'make': 1.0}, {'cathedral': 0.4750650456262037, 'tall': 0.4594159155768902, 'cradle': 0.4750650456262037, 'grave': 0.42171057551363084, 'cell': 0.39965436549968514}, {'st': 0.4843512197566737, 'circle': 0.4560205138578497, 'square': 0.445908847245543, 'paul': 0.4560205138578497, 'trying': 0.3881491694568195}, {'gets': 0.6313231565957476, 'heavy': 0.5861924856176722, 'heart': 0.5077493887257339}, {'short': 0.687587176725958, 'broke': 0.5799777367681628, 'life': 0.43686347896717787}, {'capable': 0.7071067811865475, 'trained': 0.7071067811865475}, {}, {'bubble': 0.5217664894737372, 'plot': 0.5079806921854102, 'tryin': 0.4401084806836875, 'better': 0.36330404819530254, 'ya': 0.37951289915401504}, {}, {'terrible': 0.6954706384981999, 'saying': 0.6121678812837771, 'know': 0.3762593202984317}, {'atmosphere': 0.6604978603593008, 'bout': 0.5346293747076595, 'represent': 0.5271755003416626}, {'bar': 0.5542902010611316, 'sub': 0.6131654150398406, 'view': 0.5628414935011725}, {'locked': 0.5303321829299393, 'block': 0.4985110942755465, 'shit': 0.37248906987707353, 'deep': 0.46725505610907436, 'got': 0.33639124542053844}, {'successful': 0.5978403880507531, 'case': 0.49238815433090555, 'want': 0.38942549291711653, 'ain': 0.3441840616089468, 'say': 0.360591033014631}, {'witty': 0.45591588240404357, 'midst': 0.4682887226163579, 'shitty': 0.4682887226163579, 'act': 0.40293478408982525, 'calm': 0.43725920514370836}, {'beat': 0.41054682680140864, 'case': 0.42193619435609686, 'til': 0.3753048883357072, 'home': 0.38792351658015184, 'play': 0.3903181717302659, 'come': 0.34274827120318624, 'll': 0.30374015930622206}, {}, {'photographs': 0.518156617793146, 'baths': 0.518156617793146, 'wives': 0.518156617793146, 'taking': 0.4410682014286488}, {}, {'cat': 0.5600174456743631, 'dining': 0.6308703855878569, 'town': 0.537013051171562}, {'luther': 0.5851244221160908, 'lay': 0.48191513992397067, 'super': 0.49224318188035004, 'll': 0.34691733804910546, 'like': 0.25046400741144814}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'saga': 0.5962770763229814, 'drama': 0.5676502656793695, 'witness': 0.5676502656793695}, {}, {'boom': 0.7280795387793957, 'bottles': 0.6854926587577597}, {'swimming': 0.5079466549649656, 'dive': 0.4680733380562939, 'liquor': 0.4680733380562939, 'pool': 0.4680733380562939, 'got': 0.29105368287038985}, {'rated': 0.5424197149706721, 'court': 0.46172157198436786, 'walk': 0.4107306740898226, 'did': 0.4015123444869918, 'like': 0.2321841481495632, 'bitch': 0.32980708711269385}, {'stashed': 0.46458645906974294, 'glock': 0.4195123676417666, 'tomb': 0.43741183495484287, 'lab': 0.4195123676417666, 'locked': 0.3789684550545382, 'hit': 0.3118204059314438}, {'pen': 1.0}, {'alamo': 0.6811353078317554, 'remember': 0.5371730534852022, 'em': 0.4031024318805569, 'like': 0.29156171292936417}, {'ihop': 0.7356995848517206, 'fed': 0.6773079955596315}, {'lettin': 0.8741050720602999, 'know': 0.4857368865944379}, {'things': 0.6298210748981946, 'don': 0.41540597800465656, 'understand': 0.6563255953047066}, {}, {'em': 1.0}, {'explosive': 0.6047847401488232, 'minds': 0.5694096282334228, 'laced': 0.5567837042857807}, {'compton': 1.0}, {}, {'sitting': 0.6410456670058657, 'honey': 0.6301909513809884, 'love': 0.4380865412341832}, {'alleyways': 0.6092995675868189, 'canals': 0.6092995675868189, 'just': 0.3362917230079415, 'say': 0.3800209874643517}, {'chase': 0.7484690662710048, 'seen': 0.6631697044010758}, {'world': 0.34575690676736043, 'light': 0.4280634925287167, 'shine': 0.46622978135450127, 'umi': 0.5759948622142571, 'said': 0.3848032191493426}, {}, {'spoke': 1.0}, {'rap': 1.0}, {'bail': 0.78389131024354, 'gods': 0.36392708774025795, 'approach': 0.383254765843116, 'hood': 0.3258638872168857}, {'line': 0.46872923652992393, 'base': 0.5607779568564822, 'range': 0.5459614222707079, 'long': 0.40956942185432976}, {'ayo': 0.5067273805898588, 'dog': 0.5545345105848402, 'talkin': 0.4649215217930451, 'ain': 0.34677548803102853, 'know': 0.31514056832698223}, {'script': 0.4140375460227846, 'accidentally': 0.4281409481543217, 'purpose': 0.4140375460227846, 'kill': 0.31365090960249997, 'll': 0.507685245836649, 'flip': 0.34310340649093696}, {'headed': 0.6436567462453426, 'little': 0.49588756073504425, 'world': 0.40585775435475485, 'nigga': 0.4184268195888284}, {'chance': 0.5844817492493236, 'blow': 0.5016535316158608, 'try': 0.5048622495974792, 'em': 0.38966514848412875}, {'crazy': 0.7138876053670169, 'yeah': 0.26972649031603796, 'think': 0.6462291445958923}, {'press': 0.5735886640438606, 'michael': 0.5735886640438606, 'dirt': 0.584800896853586}, {'lot': 0.8289286593980247, 'got': 0.559354339956877}, {'hall': 0.4472104458462101, 'alcohol': 0.4324788748942074, 'fame': 0.7366552358420555, 'll': 0.26514883255024946}, {'pure': 0.7781001870756833, 'cut': 0.6281401904613225}, {'grave': 0.5715710872225053, 'cocked': 0.5814161057801447, 'baby': 0.43216224384178087, 'nigga': 0.38535386229850077}, {'breath': 0.45880908597253856, 'stop': 0.39100496549296165, 'tryin': 0.4396669533539937, 'save': 0.44392505333957144, 'holdin': 0.4962185574268331}, {'shall': 1.0}, {'blood': 0.450931852427919, 'fast': 0.503676292477843, 'splash': 0.5378483515429552, 'breathe': 0.503676292477843}, {'addict': 0.5296096451309206, 'jack': 0.5156166207473851, 'breath': 0.4661735469772645, 'sex': 0.4861433413017026}, {'tears': 0.5999593751462984, 'guy': 0.5602051615278907, 'dry': 0.5711557801262043}, {'jaws': 0.5372542862334777, 'pull': 0.4237021956074191, 'don': 0.27737658923295866, 'rise': 0.4769153536565475, 'feet': 0.4769153536565475}, {'busy': 0.44040844156551595, 'girl': 0.3515114195989891, 'african': 0.45541011813612386, 'east': 0.41926476597716367, 'young': 0.3539372858431614, 'man': 0.2605029059368887, 'fuckin': 0.32583038607089093}, {'frame': 0.5687296882840419, 'blown': 0.5537030578799982, 'flight': 0.5537030578799982, 'like': 0.251738731729973}, {'hill': 0.5408625342646124, 'lauryn': 0.5982272353604553, 'nas': 0.43520302120575516, 'chorus': 0.40023770966168387}, {'low': 0.9501823236437175, 'got': 0.31169464518182816}, {'sack': 0.6364141730555299, 'buddha': 0.6058604108090953, 'sit': 0.47739937468358734}, {'chick': 0.40942437991204456, 'broad': 0.4268934198514586, 'bougie': 0.45341457747579494, 'street': 0.34129799698372315, 'ho': 0.34997114786929945, 'nerd': 0.45341457747579494}, {'message': 0.5874777516866707, 'motherfucker': 0.5379535792294193, 'kid': 0.4505169319712697, 'said': 0.4031257023245055}, {'fold': 0.4944749788338476, 'felt': 0.5295647375285106, 'steel': 0.46067811756630916, 'em': 0.3240769361345818, 'cold': 0.3972473983990452}, {'high': 0.5281541622907052, 'life': 0.4515325853500007, 'die': 0.5634839172896234, 'bitch': 0.44683037069797354}, {'minds': 0.4700664756692636, 'feelings': 0.4828233407338309, 'revealed': 0.49926980023556566, 'kill': 0.3657590512096943, 'true': 0.403570456209846}, {'hol': 0.45880264801744036, 'bitch': 0.74549144101078, 'humble': 0.48346938015954594}, {'missing': 0.5289694787090914, 'knowing': 0.5289694787090914, 'soul': 0.40071669765895246, 'floss': 0.5289694787090914}, {'good': 0.6162587765678021, 'shit': 0.47698173143271566, 'street': 0.6266686111355861}, {'goddamn': 0.6568671014743852, 'new': 0.4765345049479768, 'life': 0.4469616079431251, 'got': 0.37638517189113946}, {'hip': 0.48706655067217364, 'hop': 0.47440561568766193, 'goin': 0.561084016330195, 'think': 0.4721125010409053}, {'soakin': 0.6005302711510606, 'choke': 0.5654040119380274, 'blade': 0.5654040119380274}, {'hospital': 0.7017257367481564, 'laying': 0.6460306108304962, 'like': 0.3003754987598575}, {'drank': 0.8385470299592634, 'stand': 0.4192735149796317, 'sit': 0.3479203905825624}, {'funk': 0.7642266529011119, 'want': 0.6449477676491048}, {'goes': 0.729799337397735, 'home': 0.6836614126406632}, {'add': 0.4879616795175044, 'better': 0.36387691975048087, 'rhyme': 0.4330576947314632, 'learn': 0.4879616795175044, 'want': 0.3520032095770678, 'know': 0.28272806616805535}, {}, {'lamar': 0.6083844778683101, 'kendrick': 0.596844066264219, 'chorus': 0.523111353015872}, {'issue': 0.6900223885058171, 'press': 0.6230765453378121, 'just': 0.36829977193941416}, {'ha': 0.26476864772896364, 'uh': 0.9089907588387821, 'huh': 0.24818707608456067, 'oh': 0.20502814145884365}, {'building': 0.4711631159037878, 'buildings': 0.538962781563703, 'burnt': 0.538962781563703, 'brothers': 0.44389588688122156}, {'yap': 0.7071067811865475, 'zone': 0.7071067811865475}, {'york': 0.35061869172943083, 'fool': 0.3950708826282703, 'pity': 0.4119274973443149, 'committee': 0.4231065619490064, 'gritty': 0.4231065619490064, 'new': 0.2866103463699871, 'city': 0.3333428437299508}, {'nope': 0.32071596194970664, 'talkies': 0.6414319238994133, 'walkie': 0.6414319238994133, 'don': 0.17122119759431845, 'need': 0.21202534577365073}, {}, {'abused': 0.49172735265178796, 'tool': 0.49172735265178796, 'ink': 0.4440200568011006, 'blew': 0.4185709331497491, 'used': 0.37954312586137545}, {'wicked': 0.4849590864479374, 'rape': 0.4981201135533994, 'conviction': 0.515087628549887, 'tape': 0.45029137508704337, 'like': 0.22048457855869139}, {'world': 1.0}, {'talk': 0.8595287941307548, 'make': 0.3569806462479528, 'baby': 0.3657527447122232}, {'midnight': 0.8223663420480203, 'hook': 0.5689583459855025}, {'dun': 0.8120378637292931, 'high': 0.583604753124892}, {'speed': 0.4225834700487648, 'doctor': 0.40529079892118747, 'dial': 0.43405172099827877, 'buy': 0.4132132267479628, 'chopper': 0.4132132267479628, 'guess': 0.35675109128196963}, {'prove': 0.6271949496064203, 'lose': 0.5614465272087672, 'lost': 0.5398187587268666}, {}, {'today': 0.628272010565874, 'livin': 0.628272010565874, 'world': 0.4588557087789457}, {'pain': 0.6774650912766944, 'gonna': 0.5522142195224872, 'cause': 0.48590174506645956}, {'chain': 0.48189299346579706, 'daddy': 0.48189299346579706, 'used': 0.4314296770780136, 'floss': 0.5405379772406921, 'like': 0.2392601400025682}, {'worst': 0.533719969134992, 'nightmare': 0.5519001255547388, 'right': 0.3484822848352607, 'man': 0.315696952633295, 'hand': 0.4352525441778074}, {'filet': 0.6934723348695805, 'pay': 0.610408932406891, 'just': 0.382749338351371}, {'cities': 0.5191166791411073, 'quarter': 0.46875207595347723, 'half': 0.40068376515047244, 'black': 0.33188310703928553, 'america': 0.4367133489035619, 'like': 0.2222092239828065}, {'refrain': 1.0}, {'capture': 0.7165090064149914, 'map': 0.6975778406215337}, {'strivin': 0.6110197285510632, 'pushin': 0.5908921117482151, 'desire': 0.5267840198744831}, {}, {'rings': 0.5397581688599358, 'count': 0.5266879093938182, 'chop': 0.5653274660089868, 'just': 0.33416436288628387}, {'praises': 0.5612501438024288, 'clan': 0.5284214605842315, 'wu': 0.43320476849651157, 'tang': 0.4670146299931774}, {'believe': 0.5575410558833064, 'don': 0.3421647636661095, 'right': 0.4184712070986206, 'place': 0.501842041018097, 'cause': 0.380929993838838}, {'grae': 0.647454137856886, 'jean': 0.6601102570976184, 'verse': 0.3808642643337816}, {'common': 1.0}, {'clutch': 0.6474311392721664, 'bottle': 0.6261040932397852, 'hit': 0.43454180964451616}, {'keys': 0.5072524739928714, 'skis': 0.5072524739928714, 'making': 0.4775822263069825, 'drops': 0.5072524739928714}, {'bong': 0.9275757087444688, 'bell': 0.2846517142574097, 'went': 0.24202625088513519}, {'station': 0.6125741399612249, 'stop': 0.45951602548503917, 'attack': 0.5537556993195631, 'don': 0.32703603906037676}, {'foundation': 0.5187571861733392, 'lay': 0.42725432833102595, 'rocking': 0.4775840535781122, 'true': 0.4193225269930858, 'truth': 0.3800352757836506}, {'fighting': 0.638035305914188, 'mother': 0.6015644240404373, 'little': 0.4806570421161907}, {'chorus': 1.0}, {'got': 0.6684413989206258, 'ain': 0.7437648124300025}, {'nerve': 0.564643036646686, 'biggie': 0.5799665608735389, 'man': 0.3430519494965334, 'got': 0.31030102512518776, 'say': 0.3617259503931317}, {'benches': 0.5583133902874988, 'corner': 0.4645709658421728, 'golden': 0.5399219743470449, 'play': 0.4253754077745193}, {'verse': 1.0}, {'lock': 0.5216190536882137, 'knock': 0.4563014094226364, 'trying': 0.4439844180453794, 'really': 0.4439844180453794, 'need': 0.3542008747224371}, {'bop': 0.4931365019263554, 'walking': 0.4768920795640728, 'hat': 0.4642919266797624, 'turned': 0.43110162475301345, 'cold': 0.3577355599771957}, {'ski': 0.7071067811865475, 'hills': 0.7071067811865475}, {'warn': 0.6243162465986564, 'great': 0.5382474684345723, 'life': 0.3835973227470404, 'tell': 0.4163796115782361}, {'need': 1.0}, {'songs': 0.7128885286435483, 'world': 0.44951185399407184, 'rap': 0.5382648408053876}, {'fence': 0.6052217872605931, 'picket': 0.6258375172263823, 'got': 0.3238133949174531, 'em': 0.37037666709586947}, {'joker': 0.4661669385164291, 'tally': 0.4661669385164291, 'high': 0.3350302408540919, 'spades': 0.4209395092679261, 'game': 0.32658449191994354, 'ho': 0.3598141451021635, 'like': 0.19954395190222596}, {'stop': 0.41991094900327647, 'yes': 0.8569503652853624, 'don': 0.29884923681423686}, {'making': 1.0}, {}, {'places': 0.7071067811865476, 'moving': 0.7071067811865476}, {'zero': 0.7861283702402259, 'friends': 0.6180632536427372}, {'teach': 0.571315651389649, 'new': 0.43966964720700114, 'don': 0.69302887948634}, {'talent': 0.5809628815709053, 'lot': 0.4838670544719458, 'sound': 0.46466782731569745, 'em': 0.37346053854831573, 'like': 0.2701218988501017}, {'sit': 0.25197186542027805, 'hol': 0.7798590405005259, 'bitch': 0.21119401497217802, 'lil': 0.5326604397044669}, {}, {'tangled': 0.5746854026251542, 'wreck': 0.5746854026251542, 'left': 0.45276363826342336, 'love': 0.36671305387945585}, {'lifetime': 0.5477174043045809, 'comes': 0.5281195749178926, 'opportunity': 0.537216163482204, 'yo': 0.3639974633206368}, {'heard': 0.7879536147141599, 'say': 0.6157346027785747}, {'ivory': 0.7188474377218361, 'lounging': 0.6951678655409433}, {}, {'trust': 0.5893010662420446, 'pm': 0.6694921464150424, 'gonna': 0.45222175889110977}, {'came': 0.5002451287226729, 'dollar': 0.5463394412582572, 'niggas': 0.39602099013998565, 'fuck': 0.3709484827465163, 'say': 0.39602099013998565}, {'tax': 0.5037434163936964, 'snatch': 0.4471680836012044, 'son': 0.3690363686054235, 'dollars': 0.4548703242845652, 'hit': 0.33810171071213785, 'em': 0.298120202927839}, {'talent': 0.5809628815709053, 'lot': 0.4838670544719458, 'sound': 0.46466782731569745, 'em': 0.37346053854831573, 'like': 0.2701218988501017}, {'changed': 0.7741696613217965, 'night': 0.6329781477183039}, {'eye': 1.0}, {'ace': 1.0}, {'yeah': 1.0}, {'wrong': 0.5786226733410137, 'born': 0.5304216002619199, 'shit': 0.3792145587430216, 'did': 0.4899439215957456}, {'outro': 1.0}, {'yeah': 1.0}, {'ok': 0.5353651748532371, 'lab': 0.5529881550977569, 'everybody': 0.4325408787238094, 'try': 0.4695706742427353}, {'brought': 0.7418237228092304, 'family': 0.6705949330836419}, {'fuck': 0.6898521540506324, 'll': 0.7239502783697943}, {'tecs': 0.5399332650186099, 'chains': 0.5399332650186099, 'sex': 0.4792934568145641, 'fat': 0.43269148467173774}, {'death': 0.37597869420710606, 'cousin': 0.4151455478946542, 'sleep': 0.7783585884827826, 'cause': 0.2836407997814438}, {'track': 0.5033026180438699, 'rza': 0.45336485322003023, 'cut': 0.4310064539197659, 'yo': 0.36175287996662414, 'flip': 0.47383021753612214}, {'john': 0.7792460129003259, 'outro': 0.6267181594456517}, {'rain': 0.5113422816545562, 'fucked': 0.4788542790399508, 'kicks': 0.5229377516902066, 'heavy': 0.48555510325259}, {'chicken': 0.6195852852301634, 'finger': 0.5898394651372157, 'bang': 0.5178836545913575}, {'buildin': 1.0}, {}, {'shit': 0.34269285738139, 'live': 0.4339082930454364, 'man': 0.6842942345171075, 'bring': 0.4754225481956235}, {'blowers': 0.617571242101276, 'backstabbers': 0.617571242101276, 'low': 0.48704365498276886}, {'run': 0.6299755017521655, 'gonna': 0.5873926387407856, 'fuck': 0.5080361750360345}, {'huh': 1.0}, {'bowl': 0.5078642145183299, 'impression': 0.5251636437956329, 'life': 0.3226751968439302, 'gonna': 0.34304696417596514, 'havin': 0.4944457346952834}, {}, {'suckin': 0.7023966608696517, 'rappers': 0.5908999081566493, 'fuck': 0.396832747312551}, {'shocking': 0.6763943778546359, 'house': 0.5570861152381217, 'rock': 0.4818150120279965}, {}, {'cause': 0.8020252481373624, 'like': 0.5972901316363782}, {'immaculate': 0.4963417971155112, 'track': 0.42249886661680613, 'miraculous': 0.4963417971155112, 'flow': 0.4130045814503114, 'rhyme': 0.3977581731163511}, {'bastard': 0.6590928258174311, 'broad': 0.6590928258174311, 'got': 0.3622061483630377}, {'chips': 0.6197724914846271, 'seat': 0.5501659540684224, 'meat': 0.5596422801959483}, {'thousand': 0.5884410353667806, 'dollars': 0.6163165258290524, 'cash': 0.5233460498431972}, {'swift': 1.0}, {'run': 1.0}, {'set': 0.6766235200660022, 'numbers': 0.7363291465733871}, {}, {}, {'control': 0.5705114004794616, 'mind': 0.47558648932218456, 'sick': 0.5506314190929323, 'ain': 0.3809714863409944}, {'century': 0.5470381233103314, 'meant': 0.5021414234624761, 'doing': 0.43661776013204795, 'kid': 0.4084212308353086, 'just': 0.30192766058848236}, {}, {'momma': 0.4958700770584428, 'doin': 0.4585001275799647, 'old': 0.4095425857821038, 'home': 0.42951374282546156, 'boy': 0.437816531028902}, {'skill': 0.4796174517972235, 'hard': 0.36446841918630185, 'pill': 0.45220192907152895, 'kick': 0.4285509672616072, 'tell': 0.3397471438790945, 'ain': 0.29327598332129146, 'like': 0.21805602716602956}, {}, {'pace': 0.9144251383274852, 'like': 0.40475506963441454}, {'mirror': 0.5875023136704494, 'livin': 0.5260474905457889, 'world': 0.38419647870094825, 'live': 0.4801126272825354}, {'blazing': 0.7165816044884225, 'johnny': 0.6264381013296274, 'like': 0.30673459099248906}, {'fashion': 0.527449321254473, 'huh': 0.45383898461314787, 'shape': 0.5135133756363214, 'form': 0.5021268789818896}, {'strength': 0.65949440373426, 'star': 0.5616690591398458, 'son': 0.4995948352897106}, {'anti': 1.0}, {'damage': 0.5366430426124779, 'brain': 0.45704071350929704, 'half': 0.4283209401166101, 'rappers': 0.4668356655119303, 'cause': 0.3189571517840468}, {'cathedral': 0.4750650456262037, 'tall': 0.4594159155768902, 'cradle': 0.4750650456262037, 'grave': 0.42171057551363084, 'cell': 0.39965436549968514}, {'mothafuckin': 0.7127050725189467, 'mind': 0.5296627496165212, 'time': 0.45990091462665017}, {'rebel': 0.5484099154036992, 'corner': 0.5293000800853319, 'nas': 0.43569004958482865, 'street': 0.4788132940941995}, {'real': 0.5473748834537974, 'things': 0.6015045111754349, 'times': 0.5818703120107976}, {'nice': 0.598598958233925, 'prove': 0.6089095179948012, 'half': 0.5204886992976877}, {'blowin': 0.7218051149107121, 'smoke': 0.5534562726735294, 'ain': 0.4155520789588924}, {'carry': 0.5460557410026672, 'weight': 0.5848058598272992, 'wait': 0.4733617017241583, 'let': 0.3684480063326308}, {'help': 0.7044913705766577, 'don': 0.4458913820881408, 'need': 0.5521528630393492}, {'dk': 0.731668959223579, 'believe': 0.6816601309367334}, {'cappachino': 0.3258724845268926, 'cappa': 0.9454137315632084}, {'snooze': 0.5777426155791174, 'meet': 0.48603314551809407, 'death': 0.4401784104875824, 'cousin': 0.48603314551809407}, {'today': 0.628272010565874, 'livin': 0.628272010565874, 'world': 0.4588557087789457}, {'whatcha': 0.6054848103033426, 'doing': 0.5345982173601872, 'kirby': 0.5895700895459633}, {'dk': 0.663286624238689, 'person': 0.6421485818273714, 'know': 0.3843124418531619}, {'hear': 0.5792743304164527, 'things': 0.5951470847188105, 'mic': 0.5569929960702121}, {'want': 0.7830346592896749, 'got': 0.6219780722429873}, {'bark': 0.43593417183341976, 'green': 0.4013346020576472, 'leaf': 0.4215740529175593, 'today': 0.3464955814219626, 'frogs': 0.43593417183341976, 'pulled': 0.4013346020576472}, {}, {'skit': 1.0}, {'loves': 0.6643715662156734, 'danger': 0.6424864851378378, 'cause': 0.3818658644332589}, {'yes': 0.7834639462869065, 'ma': 0.3857668167520507, 'sir': 0.4872044826985246}, {'free': 0.5885713774173771, 'lost': 0.5755008798843803, 'cash': 0.5677873465808441}, {'bang': 0.4244622670803757, 'ride': 0.9054456272051832}, {'strike': 0.6602798631721575, 'army': 0.6332603431595071, 'ain': 0.40374724775639054}, {'smoked': 0.8215343805336482, 'hip': 0.34631563551748884, 'hop': 0.3373134165407274, 'gonna': 0.30226875660401037}, {'tooth': 0.6595007792810551, 'gone': 0.5960787532971105, 'black': 0.457983451661131}, {'freak': 0.5165723580116192, 'iron': 0.4605274937658252, 'beats': 0.44937580735871835, 'slam': 0.5165723580116192, 'like': 0.22865215748621123}, {'speaking': 0.6894727874109274, 'truth': 0.5486447441993125, 'right': 0.4728807673000427}, {'fetch': 0.508333968140017, 'woke': 0.4512430713038131, 'homie': 0.4590155015584296, 'stretch': 0.508333968140017, 'don': 0.26244544880682114}, {'juice': 0.45114130737366404, 'room': 0.892452531388186}, {'ask': 0.5477914735813401, 'ma': 0.4895285638374569, 'shit': 0.38475194047927663, 'work': 0.5587953390609589}, {'food': 0.7743665353826978, 'oh': 0.6327372826690371}, {'hide': 0.497912600135099, 'struggle': 0.497912600135099, 'won': 0.40034172966467296, 'trying': 0.43341674738761504, 'em': 0.3200733019184314, 'like': 0.2315072120377268}, {'beware': 0.7016103432265608, 'kill': 0.5139912995666395, 'ya': 0.4935137994497263}, {'reload': 0.5731453120105782, 'fold': 0.5496914523795616, 'gold': 0.4667712744655608, 'need': 0.38918933160473623}, {'wearing': 0.4397063348699168, 'splash': 0.41859636689204394, 'paint': 0.4397063348699168, 'peta': 0.45468409551028505, 'gonna': 0.2970083715174248, 'matter': 0.37834132778996254}, {'poetry': 0.6370174842437035, 'fell': 0.5889933081301064, 'deep': 0.49728825418038625}, {'um': 0.9644105638103478, 'place': 0.26440927444211765}, {'rings': 0.5432322957285676, 'ho': 0.48634559352886364, 'damn': 0.5008238578800124, 'thing': 0.4664140863124833}, {'worst': 1.0}, {'shrunk': 1.0}, {'smart': 0.5753861474142496, 'rolling': 0.519562290931494, 'catch': 0.45733684251443996, 'heart': 0.4356934928188935}, {'thigh': 0.3688451944910129, 'grabbed': 0.3688451944910129, 'size': 0.35669505532628915, 'grew': 0.35669505532628915, 'rapper': 0.3224457366393926, 'slapped': 0.3472706752143419, 'ma': 0.2688706598017731, 'times': 0.2792966980860507, 'actually': 0.3139704887542269}, {'nas': 0.7902182861018185, 'verse': 0.6128254729613517}, {'best': 0.740965641501286, 'truth': 0.671542938399763}, {'jeep': 0.5702213185465621, 'method': 0.5376267674961174, 'ran': 0.515542137186336, 'man': 0.34644106501978233}, {'won': 0.7810591906579604, 'em': 0.6244569966688917}, {}, {'host': 0.4753083304099176, 'cassette': 0.4753083304099176, 'loc': 0.4375836811266123, 'deal': 0.39550269431592794, 'meds': 0.4475065618361348}, {'lot': 0.4203657361039904, 'admit': 0.4792658233492831, 'did': 0.40581433773192876, 'things': 0.4291393234192673, 'yeah': 0.3319907394390674, 'day': 0.36678772034002843}, {'forever': 0.734909411420963, 'gun': 0.6781652873783013}, {'palms': 0.47049569334688623, 'weak': 0.4056327498011251, 'knees': 0.43315301726647876, 'arms': 0.41765440636968654, 'heavy': 0.41130895208286355, 'yo': 0.2878612187152651}, {'prey': 0.7356995848517206, 'unless': 0.6773079955596315}, {'month': 1.0}, {'price': 0.6116247379584634, 'cheap': 0.5954647606043678, 'fame': 0.5209000852328821}, {'ok': 0.5894246838473842, 'working': 0.6207282359572837, 'rza': 0.5169864593553395}, {'cards': 0.6074722455292263, 'reverse': 0.6239580871448248, 'play': 0.4915829293194085}, {'team': 0.46722903704528257, 'theme': 0.5090042040724897, 'mainstream': 0.5263424649274177, 'blows': 0.4955556041378195}, {'duet': 0.5600462076381638, 'thought': 0.43592237606342654, 'black': 0.37024658860703796, 'rap': 0.402560333583603, 'pharoahe': 0.44405243925378496}, {'jump': 0.4025190747006586, 'bang': 0.6728954170409995, 'dang': 0.4025190747006586, 'body': 0.3463438870583655, 'girl': 0.32127007116563583}, {}, {'sat': 0.47987501997550885, 'army': 0.4333176352258793, 'suit': 0.47987501997550885, 'mack': 0.4640674444357954, 'black': 0.3067950212725106, 'like': 0.2054117312776739}, {'exchange': 0.5251861474825854, 'honey': 0.46620258540539417, 'numbers': 0.46620258540539417, 'song': 0.43254929410549586, 'let': 0.3199858080976241}, {'storm': 0.4208779188857749, 'vital': 0.3962598978033624, 'quiet': 0.40701376839066505, 'pushed': 0.40701376839066505, 'pen': 0.3372829632602101, 'right': 0.2657518852031452, 'form': 0.3874733457587688}, {'feed': 0.5800342737167815, 'life': 0.35638924297018326, 'right': 0.732493651036639}, {'short': 0.7181143967993863, 'won': 0.54967262705886, 'cause': 0.4268157871631099}, {'know': 1.0}, {'ninety': 0.7573836786159834, 'seven': 0.6529701090908533}, {}, {'negro': 0.6163925966399901, 'illegal': 0.6373888389972902, 'think': 0.4623804004595102}, {'icicle': 0.5773502691896258, 'sprinkle': 0.5773502691896258, 'dash': 0.5773502691896258}, {'80': 0.3869023600028268, 'year': 0.6509728241253351, '20': 0.3382313727871292, 'old': 0.558695341431323}, {}, {'love': 1.0}, {}, {'press': 0.5484139179164206, 'button': 0.6073377089252423, 'pull': 0.47897304375339184, 'know': 0.3177544733132966}, {'better': 0.5903540653788293, 'change': 0.8071443969270238}, {'fat': 0.5465713156886208, 'doubt': 0.5962399640193723, 'stacks': 0.5880116513918645}, {'vibe': 0.6134463395667418, 'kill': 0.5342012255574613, 'don': 0.3764740185225503, 'bitch': 0.4433733781617415}, {'witness': 0.5524829318646521, 'star': 0.4942600620763402, 'court': 0.5108317397452943, 'sit': 0.4353395625294426}, {'outro': 1.0}, {'verse': 1.0}, {'verse': 1.0}, {'sayin': 0.529556689746675, 'yeah': 0.7787214328191094, 'know': 0.33639655529255513}, {}, {'wanted': 0.5214811823798677, 'apart': 0.5597387563832334, 'pick': 0.49270156811865384, 'day': 0.4147228783171555}, {'blew': 0.5058916104003334, 'word': 0.43761549137455935, 'duke': 0.559547242245803, 'head': 0.41803832189911283, 'like': 0.2543957652054188}, {'hook': 1.0}, {'yeah': 0.35292469567854085, 'lost': 0.45294312380257135, 'goin': 0.5024552510154596, 'die': 0.4468722523370737, 'hope': 0.4670445338491394}, {'redman': 0.6368207799520319, 'monch': 0.4915344817265669, 'pharoahe': 0.4882930973368069, 'verse': 0.33826468717309016}, {'hardly': 0.5348092909982142, 'flow': 0.44501327244268174, 'forever': 0.4362500171964349, 'deep': 0.3843629197393694, 'sleep': 0.4217739655756151}, {'sit': 0.7685808619389484, 'hol': 0.26430849180501775, 'bitch': 0.21473254271585918, 'lil': 0.5415850948094136}, {}, {'women': 0.6582195438549254, 'headed': 0.6826452135935602, 'like': 0.3173996604365169}, {'cd': 0.4843737217091383, 'blacks': 0.4843737217091383, 'pack': 0.4611193063329577, 'beat': 0.4013893800924831, 'got': 0.25915573850269125, 'nigga': 0.29976332249357246}, {'huh': 0.5997295631986529, 'fuck': 0.4071988121787628, 'wanna': 0.4919261244779573, 'come': 0.48220562672147965}, {'daddy': 0.7263950781697652, 'understand': 0.6872773751628528}, {'yeah': 1.0}, {'fashion': 0.592013854992084, 'fresh': 0.5351695817566887, 'old': 0.4420003232393665, 'day': 0.4095715181944153}, {'sheeran': 0.5477081497917929, 'ed': 0.5477081497917929, 'bridge': 0.43537450007387235, 'eminem': 0.4587816582958909}, {'rest': 0.6378312473575087, 'peace': 0.5384479661426426, 'ill': 0.550676935826457}, {'space': 0.8139088155652414, 'time': 0.5809926332968309}, {}, {'daughter': 0.5443256525410733, 'provide': 0.613193279881547, 'gotta': 0.4427321519366162, 'em': 0.36289368571996194}, {'um': 0.9644105638103478, 'place': 0.26440927444211765}, {'gonna': 0.6433877882585503, 'cause': 0.566126763884516, 'know': 0.5153180000091369}, {'thrown': 0.48137986569709484, 'tore': 0.48137986569709484, 'signs': 0.4431733259762236, 'gang': 0.415016420729797, 'projects': 0.4097628868878853}, {'michael': 0.495327372203268, 'psycho': 0.548547331812503, 'pick': 0.436004422122864, 'shit': 0.31427958521379495, 'turn': 0.4060481563986487}, {'maintain': 1.0}, {}, {'quit': 0.5344376491460199, 'bm': 0.5526422519713996, 'funk': 0.42656070821593783, 'ride': 0.4764545127476216}, {}, {'crime': 0.7115963499778873, 'shoot': 0.7025885244566327}, {'water': 0.5558900453388109, 'pink': 0.658470149259253, 'think': 0.5073493077039842}, {'drop': 0.5080196403727182, 'books': 0.5836169958413244, 'knowledge': 0.572427461652351, 'like': 0.2713559439315227}, {'better': 0.5373744877075519, 'ya': 0.5613495108968994, 'talk': 0.6293769828781935}, {'smoking': 0.4808375977036653, 'streets': 0.4221791641320126, 'imagine': 0.45028770247331046, 'weed': 0.45028770247331046, 'cops': 0.4301650009124152}, {'black': 0.37961093134061263, 'red': 0.499516720164173, 'violin': 0.5937704024805189, 'mic': 0.4349890559076565, 'like': 0.2541649414491078}, {'speaking': 0.6207430195206362, 'tongue': 0.60884167790621, 'son': 0.4939533530210661}, {'draw': 0.8253144254501458, 'just': 0.4405119598072792, 'like': 0.3532779534738135}, {'shall': 0.6622276735713457, 'remain': 0.7493026814020374}, {'interlude': 1.0}, {}, {'singin': 0.569030582143809, 'bees': 0.569030582143809, 'niggas': 0.3432142249558652, 'yo': 0.34814736708207467, 'em': 0.3367577760823347}, {'hol': 0.600791671611143, 'bitch': 0.48810207499024827, 'humble': 0.6330921984299781}, {'turn': 0.41235967145597074, 'vines': 0.5570738198406604, 'strawberry': 0.5244894184598423, 'wild': 0.49450895899722164}, {'did': 0.644155095009176, 'know': 0.4552903407569599, 'long': 0.6146339717157934}, {'brother': 0.5256654797662457, 'sad': 0.6503174229809322, 'love': 0.4013049833999984, 'cause': 0.3737878583473376}, {'eiht': 0.687012253702201, 'mc': 0.5460611387480768, 'intro': 0.479407338296126}, {'noodle': 0.7071067811865475, 'ramen': 0.7071067811865475}, {'ready': 0.5438702857441043, 'walls': 0.5939391520283434, 'break': 0.4513431757361171, 'let': 0.3843575596874805}, {'wounds': 0.5235012310374576, 'stab': 0.5235012310374576, 'bleeding': 0.4928805599020667, 'ya': 0.3682315747481474, 'got': 0.2708637724644212}, {'sophisticated': 1.0}, {'father': 0.5031768289732322, 'supposed': 0.5716482703889078, 'kill': 0.4330476830000098, 'didn': 0.48218361439822494}, {'rusty': 0.7125764714398533, 'hands': 0.5710442222129638, 'man': 0.4076067573379016}, {'verse': 1.0}, {'known': 0.5158291795979513, 've': 0.7444287482431559, 'eyes': 0.4239647346943291}, {'mad': 0.8333015166446899, 'know': 0.5528187608589812}, {'ex': 0.5400331701697975, 'chick': 0.5179343029125153, 'shit': 0.3286234256816777, 'just': 0.30615032305357853, 'actually': 0.48824876525221633}, {'hell': 0.7874880900057063, 'screw': 0.4790602875303657, 'went': 0.38776764822569715}, {'barber': 0.6059853290521455, 'voice': 0.5042386489404708, 'radio': 0.557889003894947, 'like': 0.2593935720509581}, {'road': 0.4323224275681611, 'yellow': 0.4656067185028406, 'stole': 0.4656067185028406, 'brick': 0.4656067185028406, 'seen': 0.4033961696355357}, {'blessed': 0.6314763862755144, 'rolling': 0.5702106653016756, 'corner': 0.5254496843206189}, {'wu': 0.71384307320911, 'outro': 0.7003056952726953}, {'doubt': 0.5915943971041324, 'lost': 0.525938766586234, 'promised': 0.6110683129706114}, {'filled': 0.5860213469197191, 'briefcase': 0.6059830503755187, 'point': 0.5379252026183379}, {'refrain': 1.0}, {'did': 1.0}, {'time': 1.0}, {'refrain': 1.0}, {'eminem': 0.8294126409761267, 'verse': 0.5586364390093137}, {'tryin': 0.632937675321028, 'big': 0.5743648710867875, 'come': 0.5191289762868868}, {'duel': 0.6396671324351917, 'iron': 0.5857434131266658, 'mic': 0.4977254400378417}, {'tall': 0.5558647667034146, 'passed': 0.5747992435663895, 'hip': 0.4301837047260061, 'hop': 0.41900139727866464}, {'diary': 0.5621760869946205, 'new': 0.7365418468642608, 'day': 0.3761172091638463}, {'valve': 0.6788612659668827, 'pass': 0.5353796447479641, 'thing': 0.5025097188705759}, {'voice': 0.753767759416402, 'cold': 0.6571409018348935}, {'yeah': 1.0}, {'later': 0.5135518654138433, 'little': 0.41033397378312586, 'born': 0.46361892895155443, 'care': 0.5135518654138433, 'don': 0.29868458570385903}, {'ooh': 1.0}, {'care': 0.7217759193161497, 'hair': 0.6921268108485084}, {'tip': 0.8018741287723874, 'hook': 0.597492997118397}, {'alike': 0.9144251383274852, 'like': 0.40475506963441454}, {'end': 0.5763754724759154, 'records': 0.6880953889650769, 'say': 0.4408129426561395}, {'leaves': 0.5312118406499146, 'throat': 0.5057087626719634, 'rake': 0.5493065624394874, 'cut': 0.40041844134734267}, {'technique': 0.6084786808743565, 'hard': 0.49799131041154665, 'secret': 0.6178659641669816}, {'blood': 0.589530996637926, 'summer': 0.7386230233432253, 'like': 0.32693918913217934}, {'invest': 0.6520280520491538, 'double': 0.5700051639351379, 'cash': 0.4999535302688267}, {'shell': 0.5524842461596087, 'harsh': 0.5524842461596087, 'heavy': 0.48298362672293177, 'hard': 0.3952836093344393}, {'raise': 0.6288924117305981, 'hands': 0.5581313236061055, 'sure': 0.5412797429032132}, {'nice': 0.7173554966043018, 'clothes': 0.6967073212559172}, {'enemies': 0.628859952249937, 'fear': 0.5304414977410444, 'stuck': 0.5684777725913694}, {'ain': 1.0}, {}, {'goodbye': 0.6737296859019314, 'words': 0.586089861077906, 'said': 0.4500966397077033}, {'verse': 1.0}, {'butt': 0.535619224317594, 'tied': 0.4931077720791048, 'punk': 0.4505963198406156, 'gun': 0.4031757633891452, 'niggas': 0.32306196312514796}, {'funky': 0.5080578106218272, 'monkey': 0.4967922840837212, 'rappers': 0.4539631853489175, 'em': 0.3193531288244799, 'flip': 0.4324415486501206}, {'wants': 0.6991353642603729, 'tough': 0.7149893302983727}, {'invasion': 0.6595103093673101, 'earth': 0.5379700552054842, 'hit': 0.442649087953756, 'like': 0.2823050769542608}, {'buddha': 0.642922086472036, 'twist': 0.6753448825857731, 'got': 0.3613315379144925}, {'barrel': 0.48749199257297965, 'picture': 0.4474823831213808, 'weak': 0.43460216577344013, 'line': 0.4074727736697819, 'squeeze': 0.45519003745262887}, {'woo': 1.0}, {'monkey': 0.9067768461818533, 'like': 0.4216109002723857}, {}, {'sure': 0.565206978191247, 'thank': 0.7032938726254041, 'll': 0.4311830244008698}, {'named': 0.6830570599311495, 'shot': 0.5228383809555411, 'kid': 0.5099736074327793}, {'album': 0.5895546629246601, 'gonna': 0.4090336373449119, 'mad': 0.4938339259977605, 'just': 0.3342245633826119, 'cause': 0.3599149589965975}, {'chronomentrophobia': 1.0}, {'bell': 0.691193651295031, 'ring': 0.6472788373707608, 'like': 0.3213743037353784}, {'copped': 0.43846065352517694, 'color': 0.42401730971006213, 'knowing': 0.42401730971006213, 'tri': 0.43846065352517694, 'chain': 0.37801408829875943, 'block': 0.33619711747825803}, {'spark': 0.8391017491066767, 'shaolin': 0.41955087455333834, 'mic': 0.34624459318182105}, {'lecture': 0.7280795387793957, 'foul': 0.6854926587577597}, {'beat': 0.3046725353134239, 'heat': 0.3236232705180304, 'street': 0.2861760624276154, 'stay': 0.8488497430631228}, {'chorus': 1.0}, {'realest': 0.8580671547366795, 'nigga': 0.5135374942125445}, {'hand': 1.0}, {'glass': 0.6952680269833362, 'make': 0.5413969894374279, 'man': 0.472749056564673}, {'hund': 0.570999901223975, 'nothin': 0.45574282172396474, 'don': 0.30484072672734014, 'got': 0.6110071395471875}, {'confusing': 0.7614785693230284, 'blew': 0.648190086673465}, {'goose': 0.46149070267448106, 'shitter': 0.46149070267448106, 'slit': 0.46149070267448106, 'killed': 0.3800890001286927, 'thought': 0.3473771252046249, 'hit': 0.3097426010428374}, {'lips': 0.5988530491456258, 've': 0.4627881587125094, 'stay': 0.49357887948540297, 'said': 0.4284647423189053}, {'camel': 0.5836882144232434, 'explode': 0.5836882144232434, 'soldiers': 0.5644609257396048}, {}, {'right': 0.37389725405674284, 'baby': 0.3974386032936186, 'know': 0.6196172287729588, 'like': 0.25347151624340514, 'wasn': 0.5040536482179583}, {}, {'set': 0.7611256559815273, 'rap': 0.6486044525029796}, {'ve': 0.49539911588399294, 'baby': 0.4764891522566478, 'talkin': 0.547963708435447, 'got': 0.36732310648394567, 'like': 0.30388700769160154}, {'fuck': 1.0}, {'trophy': 0.46784077692644105, 'hard': 0.3347240978956113, 'person': 0.8179760300478451}, {'dick': 0.45402481376731024, 'watch': 0.46996561058512587, 'missed': 0.5762861918471247, 'probably': 0.49080344175366997}, {'heritage': 1.0}, {'forgive': 0.7342418379186236, 'lord': 0.6788880050861715}, {'pen': 0.46623577231030444, 'shot': 0.43065626015444, 'spilt': 0.5817914420085158, 'lines': 0.5086040780544892}, {'parallel': 0.5979050413809617, 'maintain': 0.5307544333658694, 'hell': 0.475235639539595, 'life': 0.3673695412865601}, {'reality': 0.6042755116070722, 'goes': 0.5409297183945609, 'snap': 0.5850180730794495}, {}, {'fans': 0.5525826000714814, 'play': 0.44716474741561674, 'got': 0.30367318135513344, 'lil': 0.4500249397103997, 'city': 0.44716474741561674}, {'chorus': 1.0}, {'recognized': 0.7280795387793957, 'slapped': 0.6854926587577597}, {'crown': 0.5258644928492581, 'throne': 0.44239003093030693, 'crew': 0.4331079870773506, 'born': 0.4214170581604253, 'die': 0.4032154886845163}, {'fading': 0.5179811349752164, 'haters': 0.5179811349752164, 'waiting': 0.4598067665611338, 'forever': 0.4225230990632165, 'know': 0.27100379296641547}, {'way': 1.0}, {'fuck': 0.5529953364236928, 'jay': 0.8331843480848922}, {'rhymes': 0.7568353482962701, 'hit': 0.6536055810420099}, {'tri': 0.514156494750489, 'bell': 0.47334851348816204, 'fronts': 0.514156494750489, 'suede': 0.4972196522567549}, {'learn': 0.7733598671990083, 'thing': 0.6339672829144517}, {'crimesters': 0.514156494750489, 'rhymsters': 0.514156494750489, 'rugged': 0.4972196522567549, 'crooked': 0.47334851348816204}, {'don': 0.5507030502731539, 'make': 0.6987513017029745, 'like': 0.45658818292663145}, {'silver': 0.3685553865763672, 'spoon': 0.3685553865763672, 'bish': 0.6012696355056996, 'ya': 0.5184848567097918, 'come': 0.2465775877491783, 'know': 0.19282537709636463}, {'ink': 0.6173336489032354, 'burn': 0.5688735596783085, 'hot': 0.5433986005049578}, {'knowin': 1.0}, {'case': 0.4668677598979987, 'throw': 0.44704615570543166, 'place': 0.4292331059057737, 'tried': 0.4668677598979987, 'caught': 0.4242377458443875}, {'dont': 0.7901110204855933, 'yo': 0.6129637634536108}, {'rings': 0.6543581584399523, 'count': 0.6385128569549451, 'just': 0.4051132335363886}, {'bag': 0.560673886555909, 'listen': 0.5395470271386319, 'try': 0.4917690341224129, 'let': 0.3907646548991673}, {}, {}, {'premiere': 0.8648419562266314, 'world': 0.5020442119476068}, {'deck': 0.649434879729212, 'inspectah': 0.6715566446634564, 'verse': 0.3567155869869779}, {'fact': 0.6151156683467243, 'ma': 0.5129128309354964, 'hit': 0.4722611986665118, 'know': 0.36813381079461716}, {'lay': 1.0}, {'pistol': 0.6716393225680891, 'blows': 0.6323537476761312, 'cause': 0.38604320765975175}, {'rob': 0.8439292211781473, 'nigga': 0.5364545364163172}, {'means': 0.8395417951565657, 'let': 0.5432951078238153}, {}, {'uptown': 0.6726460563179327, 'everybody': 0.4750902861287274, 'yo': 0.41154194666121785, 'world': 0.39047372393587765}, {'globe': 0.5768935862428006, 'watch': 0.47046094516379217, 'straight': 0.4604468586862728, 'time': 0.3722632238572417, 'got': 0.30865688347559755}, {'saying': 0.6606573564502046, 'fuck': 0.4384869182080991, 'just': 0.4142569884441407, 'ain': 0.4468246047989997}, {'mask': 0.9007452271752912, 'like': 0.43434782803754535}, {'exorcist': 0.5768822964627236, 'joint': 0.5578792017000013, 'wicked': 0.5431392562624032, 'like': 0.24693594441714453}, {'orientated': 0.816806895592036, 'money': 0.576911167610145}, {'act': 0.4902764353459753, 'crowd': 0.4902764353459753, 'wild': 0.5230321854297626, 'couldn': 0.495676675760978}, {'blind': 0.6139033328207221, 'prevail': 0.6139033328207221, 'true': 0.49623119198939875}, {'riches': 0.4435052569291227, 'jack': 0.41756371598502506, 'snatch': 0.39369526102760855, 'spades': 0.4004764597927635, 'kick': 0.37310430158073205, 'ace': 0.41756371598502506}, {'asleep': 0.7071067811865476, 'wheel': 0.7071067811865476}, {'weeks': 1.0}, {'product': 0.7173554966043018, 'sold': 0.6967073212559172}, {'unless': 0.5963122491875479, 'write': 0.5334704699484247, 'real': 0.4613902121486445, 'em': 0.38332757700865117}, {'law': 0.4753213981625385, 'rules': 0.4753213981625385, 'bend': 0.4753213981625385, 'cut': 0.3763578317007381, 'fuck': 0.29169349212964185, 'nigga': 0.30899578397311833}, {'nas': 0.7902182861018185, 'verse': 0.6128254729613517}, {'know': 1.0}, {'wake': 0.6160808378288662, 'fuck': 0.39210407082459864, 'gotta': 0.501094875513525, 'day': 0.46433040460101843}, {'killa': 0.37344698996160935, 'gucci': 0.4206951915042642, 'louis': 0.40683706023659105, 'fake': 0.6742730585416588, 'nigga': 0.25177837571310463}, {'lyrically': 0.580657345467658, 'murdered': 0.5345712718390916, 'knows': 0.5154438230887107, 'cause': 0.3337488093139554}, {}, {'chased': 0.6610858861373308, 'liquor': 0.5500876639718401, 'straight': 0.5102636701706521}, {'dick': 0.7863930419030262, 'nigga': 0.6177264634500492}, {'ago': 0.4715157382831981, 'believed': 0.4715157382831981, 'years': 0.37786307690602366, '20': 0.41220067887178985, 'man': 0.2697156148406783, 'died': 0.41220067887178985}, {}, {'called': 0.45920136406267903, 'scared': 0.5391800115360695, 'ugly': 0.5034531302748947, 'smile': 0.49492824532385377}, {'throne': 0.6791476019549081, 'don': 0.4167950974464981, 'caught': 0.6041857177254869}, {'wind': 1.0}, {'streets': 1.0}, {'central': 0.538962781563703, 'road': 0.4711631159037878, 'house': 0.44389588688122156, 'avenue': 0.538962781563703}, {'dial': 0.6323878999616434, 'blunt': 0.5904849233498669, 'smoke': 0.501411108052668}, {'swimming': 0.530932461112669, 'dive': 0.4892547808442428, 'liquor': 0.4892547808442428, 'pool': 0.4892547808442428}, {'ex': 0.4184796776924019, 'smuggle': 0.42983655816975325, 'worker': 0.42983655816975325, 'half': 0.3430734847422689, 'key': 0.40920043069306594, 'tried': 0.3660772462117756, 'like': 0.19025999914178673}, {}, {}, {'momma': 0.4394928432541545, 'sleepin': 0.48617459071994784, 'pad': 0.47332918096363974, 'living': 0.4140584414381241, 'room': 0.4183245170782988}, {'rap': 0.8515018387176391, 'like': 0.5243516173909257}, {'wilding': 0.6274609536226158, 'park': 0.566584809174279, 'hill': 0.5341108552463089}, {'face': 0.4481791744613267, 'wait': 0.5121961754645846, 'spit': 0.5160393214968015, 'eyes': 0.5200903037816961}, {'later': 0.6162848955837582, 'prophet': 0.6713872167326496, 'll': 0.4116213462434895}, {'beard': 0.5647068344647583, 'weird': 0.5467103958503391, 'grow': 0.520377898835368, 'just': 0.33379750835146293}, {'treble': 0.7552357277435924, 'time': 0.47129182836698846, 'say': 0.4555249807135801}, {'step': 0.8570085392010189, 'just': 0.5153022062212966}, {'ancient': 0.4701110915287154, 'greece': 0.4861245324207655, 'sending': 0.4861245324207655, 'pop': 0.4045028248919403, 'shots': 0.3778080256340571}, {'father': 0.5347835958030528, 'home': 0.4757239863243896, 'forget': 0.5576924856049686, 'come': 0.42032402500373556}, {'hop': 0.4426289349588455, 'unite': 0.5716951385691865, 'black': 0.3882046039614336, 'right': 0.38340761121284855, 'people': 0.42372170536893716}, {'platoon': 0.7421933144477013, 'dirty': 0.6701858577955339}, {'used': 0.8069325269085224, 'fuck': 0.5906436294560596}, {'liquid': 0.8094453603651305, 'think': 0.5871952048368276}, {'guessing': 0.45261775637781976, 'shark': 0.45261775637781976, 'leaves': 0.4377080630686678, 'impression': 0.45261775637781976, 'try': 0.3470523153908535, 'nigga': 0.27088344678301857}, {'hill': 0.5776985431997997, 'lauryn': 0.6389701272987405, 'bridge': 0.5079188612413016}, {'rings': 0.6543581584399523, 'count': 0.6385128569549451, 'just': 0.4051132335363886}, {'steal': 0.6561983877230045, 'beers': 0.6388607124667792, 'em': 0.40157274062885384}, {'pull': 0.4920052515067425, 'block': 0.4783571519188992, 'playin': 0.5743473270816951, 'break': 0.44635234464707213}, {'memories': 0.7478542897422681, 'touch': 0.6638629085241077}, {'chance': 0.5495934564635191, 'shot': 0.4582933696514109, 'miss': 0.5151742631345048, 'blow': 0.471709336933092}, {'flow': 0.7141029241511951, 'hate': 0.7000407229002557}, {'coward': 0.5328218505645176, 'power': 0.43069129598754163, 'killed': 0.4388381461514239, 'black': 0.3406451350327476, 'baby': 0.357618528238744, 'ain': 0.3067520902012434}, {'obama': 0.44617622752132546, 'rolling': 0.4028882933173138, 'stone': 0.4314787247821171, 'mama': 0.4028882933173138, 'star': 0.36747582392660477, 'ho': 0.3443841778685817, 'like': 0.19098687686384316}, {'stupid': 0.6175569276625867, 'went': 0.5134372543645785, 'head': 0.46137741771557444, 'cause': 0.3770099539118538}, {'want': 0.45623034453682126, 'bout': 0.548250960967956, 'bring': 0.556700776962648, 'bitch': 0.4258626556188159}, {'intro': 1.0}, {'shit': 1.0}, {'cross': 0.6525213265726215, 'little': 0.4915699301290887, 'bit': 0.5766930918268305}, {'presence': 0.435958879620624, 'legend': 0.45080899031992194, 'heaven': 0.435958879620624, 'hell': 0.35831860244908276, 'felt': 0.435958879620624, 'rap': 0.31336655728628654}, {'ready': 0.8155139618399643, 'yo': 0.5787373999009268}, {'bag': 0.4963473408885198, 'eat': 0.46762264627232936, 'rapper': 0.4963473408885198, 'baby': 0.3810756289024001, 'tell': 0.37866747963839664}, {'slave': 0.6592208760322434, 'new': 0.4782420874881443, 'livin': 0.580269198181554}, {}, {'couldn': 0.45383822240400473, 'key': 0.4966555315257327, 'low': 0.42545184451737805, 'play': 0.41102091328227663, 'tried': 0.4443159773533124}, {'wham': 0.8529562747195653, 'em': 0.5219823688751581}, {'experiment': 0.6688094265728418, 'secret': 0.5936955597674003, 'day': 0.44745897380629196}, {'connection': 0.7689750519889302, 'way': 0.4968042431653299, 'know': 0.40232190269925105}, {'hook': 1.0}, {'unite': 0.5807328041128045, 'black': 0.3943415520241317, 'right': 0.38946872582314856, 'come': 0.41267029998829396, 'people': 0.4304201269547495}, {'zoo': 0.4589734819332717, 'banana': 0.47142930058934823, 'shawty': 0.4202821752287897, 'animal': 0.4589734819332717, 'ooh': 0.36913504986823115, 'like': 0.20867033438817006}, {'raise': 0.6288924117305981, 'hands': 0.5581313236061055, 'sure': 0.5412797429032132}, {'teach': 0.571315651389649, 'new': 0.43966964720700114, 'don': 0.69302887948634}, {'speed': 0.4960598438925738, 'travel': 0.5268780310540354, 'thoughts': 0.45424216962742864, 'rhyme': 0.4222292869653712, 'cause': 0.3028376664663409}, {'intro': 1.0}, {'blueprint': 0.563861034672383, 'album': 0.5308796350402418, 'called': 0.46440237178803573, 'dick': 0.4296021226150733}, {'forever': 0.5803946566851262, 'lives': 0.6134289258572024, 'gun': 0.5355809886590762}, {'did': 0.644155095009176, 'know': 0.4552903407569599, 'long': 0.6146339717157934}, {}, {'sell': 1.0}, {'black': 0.5903065383807856, 'family': 0.8071791565352107}, {'hands': 0.5979183408315857, 'lucky': 0.7024696958971225, 'got': 0.38604401827176127}, {'guest': 0.5338546476096213, 'water': 0.43878003221058304, 'shit': 0.3162802933323877, 'mad': 0.43536237546034945, 'ice': 0.4825947333342826}, {'ear': 0.7544735582561396, 'listen': 0.6563304426067098}, {'savage': 0.5773502691896258, 'paris': 0.5773502691896258, 'civilized': 0.5773502691896258}, {'wrote': 0.5345485524518127, 'loud': 0.49258701254079007, 'goes': 0.4785121892114669, 'crowd': 0.49258701254079007}, {'hitting': 0.5096837119772246, 'grass': 0.5212415714031414, 'writers': 0.5212415714031414, 'rhyme': 0.44366311794816243}, {}, {'real': 0.4399182974662931, 'son': 0.45243008115503797, 'count': 0.5195450027371534, 'money': 0.43619555757116235, 'let': 0.3762782732319763}, {'line': 0.6669743634612715, 'worth': 0.7450806657573606}, {}, {'house': 0.5878268025211647, 'shot': 0.5283119997871963, 'face': 0.48885126277696156, 'got': 0.3692837987239179}, {'robbery': 0.6225146736802936, 'bubbling': 0.6225146736802936, 'crack': 0.47428995572901966}, {'task': 0.5755174842327264, 'flipped': 0.541854274726163, 'force': 0.49617614568860635, 'time': 0.3591417585759367}, {'kirby': 0.7150958556462166, 'hey': 0.699026406681182}, {'packed': 0.44436965687112095, 'mommy': 0.4841009560108503, 'nuttin': 0.5005909350489032, 'didn': 0.40833771532999164, 'shit': 0.28680389513357424, 'know': 0.26190537253706786}, {'calm': 0.6262809044888693, 'shit': 0.39736811235481234, 'exit': 0.6707240952554016}, {'chorus': 1.0}, {'beats': 0.5164550950645033, 'fat': 0.49197082126005837, 'gonna': 0.40101443836462075, 'make': 0.40215747423438497, 'come': 0.41072573811625956}, {}, {}, {'click': 0.4669803350665129, 'squeeze': 0.4216739902367441, 'heard': 0.3604419708017484, 'shit': 0.2675473518807798, 'stuck': 0.40823581379288104, 'yo': 0.285710433207303, 'gave': 0.3928530024048213}, {}, {'raekwon': 0.8513804809508824, 'verse': 0.5245486408864716}, {'problem': 0.7567701282887886, 'maybe': 0.6536810942116733}, {'id': 1.0}, {'grass': 0.4743001532268886, '10': 0.4548911674363047, 'mac': 0.4343168134025796, 'guard': 0.48717191364376244, 'caught': 0.3770223104670186}, {'chinky': 0.6196954543856427, 'nosed': 0.6196954543856427, 'eye': 0.48161715877608013}, {'sleeping': 0.6550019365105247, 'bum': 0.6376958731615671, 'nigga': 0.4053596384942255}, {'hide': 0.5524299879350579, 'lock': 0.5649571846909545, 'ma': 0.437412145191509, 'break': 0.4293193486614653}, {'bad': 0.5343670814437463, 'want': 0.8452525198242787}, {'represent': 1.0}, {'mouth': 0.6466957441761676, 'way': 0.5072834620174504, 'live': 0.5696034617416074}, {'dream': 0.447950076834978, 'picket': 0.526241284230371, 'early': 0.526241284230371, 'duke': 0.49546034170928077}, {'nothin': 1.0}, {'evil': 0.5090485218291244, 'dna': 0.4046093996287426, 'inside': 0.3610553302556626, 'dark': 0.411474805987861, 'got': 0.5267716475731004}, {'heroin': 0.5032823781523366, 'leave': 0.4000262688834551, 'nose': 0.4633374624175532, 'froze': 0.48670374021686796, 'em': 0.2978473560585823, 'like': 0.21543131089234976}, {'tryna': 0.5512645930716221, 'figure': 0.5694109452990856, 'styles': 0.6098184351093207}, {'lot': 0.6997665470203679, 'things': 0.7143715977495125}, {'mayor': 0.5628618236163235, 'probably': 0.47937036175928815, 'honest': 0.5358392539368968, 'run': 0.4077584060720584}, {'signs': 0.6318047329379854, 'played': 0.5999425890316362, 'shit': 0.3931870883267232, 'like': 0.29376109830324987}, {'seat': 0.5728186751397103, 'killed': 0.5314691967370205, 'driver': 0.624034661161456}, {'lee': 0.5869691920454168, 'bruce': 0.6234352084770651, 'shit': 0.35718514586598876, 'nigga': 0.37311456684696903}, {'hopin': 0.6461846426790306, 'kendrick': 0.4802266011544991, 'lead': 0.593150755802748}, {'love': 0.4813962891226433, 'man': 0.4462348366651587, 'herb': 0.7544084327241892}, {'score': 0.4956398272368533, 'store': 0.5125228559937242, 'coming': 0.40118769010349886, 'corner': 0.4264687939914606, 'night': 0.38579047266819144}, {'funny': 0.6291943628106494, 'mind': 0.4675998938405817, 'break': 0.46550116391836777, 'right': 0.4108204711041337}, {'demonstrate': 0.7070379264844806, 'somethin': 0.5666057454697708, 'nigga': 0.4231492641056716}, {'business': 0.6537462104645656, 'real': 0.5326930285504742, 'mind': 0.5374514207227884}, {'joke': 0.443503561007397, 'rarely': 0.42889409864548006, 'barely': 0.41756211926127323, 'woke': 0.3936937555745479, 'spoke': 0.41756211926127323, 'smoke': 0.3400638520315207}, {'ooh': 0.9690306050269742, 'nothin': 0.24694065384431166}, {'best': 0.7101495690684025, 'trying': 0.7040508430162996}, {'analyze': 0.5646742112844217, 'inhale': 0.5497547322305549, 'drop': 0.4679325517947266, 'nas': 0.3999398660690164}, {'ran': 0.6040658144246634, 'island': 0.5788633755812045, 'talkin': 0.5477423520727618}, {}, {'insane': 0.7479312164420802, 'crazy': 0.663776239007898}, {'respect': 0.7139175364752178, 'woman': 0.7002297845087397}, {}, {'cap': 0.8368499497611352, 'snap': 0.36578855104745406, 'push': 0.36578855104745406, 'like': 0.1791078820990123}, {'drawers': 0.602959515791359, 'pants': 0.5444604962621046, 'wearing': 0.5830974106670967}, {'john': 0.6868389376512443, 'couldn': 0.6137088839874434, 'just': 0.38937601292452106}, {'dawn': 0.6492868167978733, 'til': 0.5441064326620448, 'break': 0.5313895176499707}, {'dome': 0.7477104864494688, 'just': 0.4419707397054157, 'nigga': 0.49557128013813156}, {'jelly': 0.5739944906876261, 'powder': 0.5550865232102044, 'face': 0.393149227134768, 'day': 0.3840241712645438, 'like': 0.24569981175933975}, {'ton': 0.46736553353798843, 'guy': 0.4220218168245105, 'laser': 0.46736553353798843, 'high': 0.3358916609711802, 'really': 0.3745371876355514, 'eye': 0.36322883890698393}, {'folk': 1.0}, {'doom': 0.6502018559130729, 'tell': 0.5977754313229243, 'know': 0.46893718158607073}, {'lightin': 0.5926024185943694, 'sippin': 0.545568278909439, 'floors': 0.5926024185943694}, {'dawn': 0.6492868167978733, 'til': 0.5441064326620448, 'break': 0.5313895176499707}, {'recognized': 0.7280795387793957, 'proof': 0.6854926587577597}, {'hol': 0.45880264801744036, 'bitch': 0.74549144101078, 'humble': 0.48346938015954594}, {'unless': 0.8246733806676758, 'right': 0.5656092425147831}, {}, {'time': 0.5070220733364578, 'sit': 0.5894058558277476, 'got': 0.42039031249936504, 'ain': 0.4677620542778629}, {}, {'exact': 0.6062448709059218, 'start': 0.48721287766883, 'getting': 0.4806826830346094, 'said': 0.4050122548325781}, {'manage': 0.5015025263263263, 'months': 0.4616988752856723, '15': 0.47216860498716645, 'stuff': 0.45284684495271027, 'gonna': 0.32759106845136476}, {'problem': 0.8029727282136692, 'feel': 0.596015769711756}, {'laboratory': 0.630165976797841, 'sing': 0.5933062637881912, 'bring': 0.5008777485935267}, {'strange': 0.6539488258743938, 'dangerous': 0.6020456957860473, 'game': 0.4581396220837006}, {'news': 0.5541698918749717, 'views': 0.5885982207496393, 'mention': 0.5885982207496393}, {'hoping': 0.5231975169639245, 'bar': 0.4729608842236731, 'peace': 0.420471298088289, 'come': 0.3619624769446116, 'open': 0.4413155481117973}, {'fold': 0.498389366773477, 'rhyme': 0.44231208988994647, 'yeah': 0.6684709846953127, 'nigga': 0.3303249867097544}, {'mumble': 0.4246422702269214, 'folks': 0.4152263756880934, 'breath': 0.38392283208641287, 'white': 0.3505281348386462, 'beneath': 0.4361663937762209, 'chorus': 0.28410249419479305, 'gotta': 0.3256438770978024}, {'christ': 0.7954359939482075, 'death': 0.6060376057074571}, {}, {}, {'glow': 0.68065715968785, 'seven': 0.5868211744766088, 'god': 0.4385735287857241}, {'instrumental': 1.0}, {'hill': 0.5759413810170276, 'lauryn': 0.6370265978285231, 'outro': 0.512336451261489}, {'pieces': 0.8132755221382023, 'way': 0.5818787890023441}, {'hanging': 0.694091646443352, 'big': 0.5580775626235136, 'niggas': 0.45473752916793114}, {'lifetime': 0.5477174043045809, 'comes': 0.5281195749178926, 'opportunity': 0.537216163482204, 'yo': 0.3639974633206368}, {'mumble': 0.7328144201960498, 'rapper': 0.6804285602124058}, {}, {'voice': 0.6828089589477376, 'life': 0.5041921979347447, 'god': 0.5287363739354786}, {}, {'came': 0.8243496493227608, 'know': 0.5660809621082847}, {'hearin': 0.5327626011539854, 'wu': 0.4252237708595977, 'tang': 0.45841074811229326, 'slang': 0.4634599980255197, 'say': 0.33228477508440946}, {'dk': 0.7232741263586885, 'thousand': 0.6905610314375378}, {'spoke': 0.5322148454078857, 'wheel': 0.5204136677868227, 'did': 0.4184334918344769, 'crooked': 0.5204136677868227}, {'scream': 0.7230788455613858, 'ghost': 0.6907655051474514}, {'black': 0.3677505777382736, 'african': 0.5752189690242909, 'rose': 0.5562706659740683, 'ghost': 0.47375689591241243}, {'bad': 0.496764014509595, 'fuck': 0.34076332584919444, 'wanna': 0.4116671690476906, 'mines': 0.5832849116655235, 'em': 0.3569519903237819}, {'curves': 0.8530106134710596, 'yo': 0.5218935651123962}, {'joyner': 0.8389987146835313, 'ain': 0.5441333997829784}, {'vernon': 0.7266708528155051, 'everybody': 0.5307308488628923, 'world': 0.436204353180548}, {'bed': 0.7330702878590942, 'kids': 0.6801528894727896}, {'damn': 1.0}, {'doc': 0.6490339471899816, 'ordered': 0.6711420551192452, 'just': 0.35822238518175836}, {'fear': 0.40362929438085693, 'men': 0.832544861924735, 'die': 0.3794106556230804}, {'grip': 0.794076914790559, 'good': 0.6078172861943855}, {'latin': 0.6218346309896378, 'white': 0.4832796918007218, 'black': 0.3975530313125827, 'music': 0.47086518079929957}, {'dot': 0.5095276820077247, 'aha': 0.5828479511852671, 'good': 0.431438314096842, 'niggas': 0.35154825436536835, 'got': 0.30157024562928714}, {}, {'nothin': 1.0}, {'style': 0.5422897293673026, 'divine': 0.6822673556047835, 'deep': 0.490339785147803}, {'whoa': 0.7526591107267074, 'common': 0.6584104062361728}, {'dig': 0.6791831307880023, 'sound': 0.5432267012986726, 'come': 0.4935737288887751}, {'actions': 0.5572592124561475, 'hearts': 0.5762411884635606, 'really': 0.46178791254269325, 'feel': 0.37968432503899757}, {'prize': 0.4866861267009025, 'sort': 0.44674265654862216, 'hog': 0.503264164665424, 'tied': 0.46332069451314367, 'life': 0.3092195457862009}, {'ta': 0.496105778229224, 'rub': 0.4128081908140364, 'ladies': 0.456730460580198, 'titties': 0.41735514293117204, 'floor': 0.44797368834733936}, {'ac': 0.5908921117482151, 'mac': 0.5267840198744832, 'packin': 0.6110197285510633}, {'verse': 1.0}, {'hol': 0.8847118097004012, 'humble': 0.4661384062450135}, {}, {'photographs': 1.0}, {'telling': 0.6332829324984866, 'crazy': 0.622156343296581, 'll': 0.46029795991503614}, {'sippin': 0.4789290766120835, 'whippin': 0.5202181653647795, 'jail': 0.4789290766120835, 'tail': 0.5202181653647795}, {'act': 0.5442632950128606, 'cocked': 0.5906269330998386, 'fuck': 0.3695388402394405, 'man': 0.37414928790360485, 'like': 0.27998329863500315}, {'plan': 0.6770788685817215, 'case': 0.6175660083014605, 'just': 0.4002204781251159}, {'time': 1.0}, {'rings': 0.5397581688599358, 'count': 0.5266879093938182, 'chop': 0.5653274660089868, 'just': 0.33416436288628387}, {'alley': 0.6551665918981221, 'men': 0.5511670264784316, 'mad': 0.5166929898726355}, {'damage': 0.6951678655409433, 'casualty': 0.7188474377218361}, {'grae': 0.5491987513681759, 'villains': 0.5726315887687918, 'stay': 0.4526534593116326, 'day': 0.4069135544719273}, {}, {'collar': 0.5115556093436345, 'crime': 0.4560550308957386, 'white': 0.41111519862181384, 'ring': 0.4560550308957386, 'thing': 0.3915645152469554}, {'bull': 0.9193176500512763, 'like': 0.39351627450996113}, {'new': 1.0}, {}, {'haunted': 0.7989524773232991, 'thought': 0.6013941627410122}, {'shootin': 0.584809619356326, 'runnin': 0.5567333526329542, 'block': 0.4636869858817664, 'niggas': 0.3647465727025578}, {'evian': 0.5879867666853908, 'niggas': 0.35464776190399905, 'backwards': 0.5535942030252169, 'really': 0.47120057890055606}, {'space': 0.8139088155652414, 'time': 0.5809926332968309}, {'optics': 0.6347191459094789, 'underground': 0.5975931086092157, 'straight': 0.4899123210929847}, {'verse': 1.0}, {'mo': 0.7513692447474057, 'johnny': 0.32842478799959596, 'cool': 0.31979238516822445, 'books': 0.3458669867182197, 'said': 0.24271491513863444, 'ain': 0.21628625599250623}, {}, {'worker': 0.7908360944578295, 'caught': 0.6120279991166149}, {'late': 0.4173905159523486, 'especially': 0.44269553665200806, 'guard': 0.4547095974669499, 'better': 0.3166125859857746, 'head': 0.33073829210820455, 'right': 0.29689396804586504, 'night': 0.3539316675003758}, {'shooter': 0.5813214993514271, 'respect': 0.5351827126296276, 'gon': 0.45504122753728937, 'everybody': 0.4105877004192396}, {'comes': 0.5882621959108103, 'pm': 0.6408589943576158, 'look': 0.49320111335350475}, {'wanna': 1.0}, {'suit': 1.0}, {'spliff': 0.5467538219800906, 'dipped': 0.5287431900805213, 'pass': 0.4311939444053838, 'honey': 0.485347998246376}, {'love': 1.0}, {'road': 0.322098384097494, 'wrong': 0.644196768194988, 'way': 0.23803952935066125, 'woo': 0.6131688060338436, 'nigga': 0.2205093027118419}, {'going': 0.5549934916932711, 'imagine': 0.5919447606468309, 'court': 0.5844515587462124}, {'coal': 0.612519645806229, 'help': 0.4996392368527754, 'belt': 0.612519645806229}, {'places': 0.7071067811865476, 'moving': 0.7071067811865476}, {'deal': 0.6998276738586152, 'come': 0.5626883561820499, 'know': 0.44002618185601455}, {'familiar': 0.5094809508692599, 'try': 0.39065313093707676, 'don': 0.5260752386808004, 'person': 0.44538999819009295, 'feel': 0.335696119652256}, {}, {'joint': 0.553030403308982, 'huh': 0.4758499946516323, 'motherfuckers': 0.5076419030087639, 'fake': 0.45828359551219694}, {'dna': 0.6711483464138559, 'inside': 0.5989027642149285, 'got': 0.4368928657252998}, {'minded': 0.4647534119890809, 'individual': 0.4647534119890809, 'critical': 0.4647534119890809, 'criminal': 0.4375690224521817, 'thoughts': 0.40068210432182416}, {'refrain': 1.0}, {}, {'weight': 0.7506312285638593, 'holding': 0.6607213926495126}, {'hitting': 0.5509716502865757, 'age': 0.5634657770009138, 'til': 0.43843311244768124, 'old': 0.4321029560633469}, {'pumped': 0.602959515791359, 'cracks': 0.5830974106670967, 'loose': 0.5444604962621046}, {'sit': 1.0}, {'torn': 0.5389319011120647, 'score': 0.5211789313116671, 'beach': 0.4866448287922671, 'war': 0.44844368445804816}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'god': 0.7032497484901488, 'hook': 0.71094288887965}, {'flesh': 0.5860749488699328, 'def': 0.5031682681728128, 'mos': 0.4988470863269621, 'right': 0.3930514376950915}, {'drama': 0.5368646792558173, 'card': 0.526571514858291, 'pull': 0.4598963538046966, 'oh': 0.4008551555927187, 'like': 0.24961819625034495}, {'ol': 0.7060175165433545, 'gon': 0.5714745286183016, 'shit': 0.4182775746731397}, {'zero': 0.6134944690437547, 'thirty': 0.5883894688634659, 'dark': 0.526708998768096}, {'stop': 0.41840023854421915, 'check': 0.43414541808386425, 'shot': 0.426933660704753, 'sure': 0.4482503135103414, 'ya': 0.4056955827596501, 'don': 0.2977740691654575}, {'vernacular': 0.4475397607215315, 'backwards': 0.4357151369784539, 'encrypted': 0.4627843521261968, 'scriptures': 0.4260537159037979, 'crip': 0.4627843521261968}, {'seeing': 0.794076914790559, 'friends': 0.6078172861943855}, {'hey': 0.6387977974861917, 'look': 0.5713522122802616, 'baby': 0.515261121616255}, {'taught': 0.4207057127503294, 'eat': 0.736049069997643, 'fast': 0.38524036582922505, 'don': 0.230698272258691, 'right': 0.2821464823942733}, {'date': 0.6886844922292014, 'set': 0.5809033191286747, 'let': 0.4338951532205636}, {'sherane': 0.7544735582561396, 'interlude': 0.6563304426067098}, {'represent': 1.0}, {'en': 0.7071067811865475, 'ecstatic': 0.7071067811865475}, {'smoke': 0.8289286593980247, 'got': 0.559354339956877}, {'runnin': 0.6188909946082924, 'mac': 0.5795699117009079, 'pull': 0.530162856341106}, {'wanted': 0.5214811823798677, 'apart': 0.5597387563832334, 'pick': 0.49270156811865384, 'day': 0.4147228783171555}, {'beatbox': 0.5878404315295204, 'hear': 0.4478718719955051, 'instead': 0.541184245018182, 'wanna': 0.40121568548416664}, {'pole': 0.5575178588138363, 'foot': 0.5249074846739056, 'niggas': 0.33627025649648756, 'hit': 0.3741939560560081, 'light': 0.4006833756020951}, {'circle': 0.6044432159936647, 'power': 0.518938143981026, 'source': 0.6044432159936647}, {'nah': 0.4546399926165595, 'tryna': 0.44773261358233385, 'learn': 0.46247093309695625, 'shit': 0.2934325482168239, 'kick': 0.4308615157650454, 'need': 0.32743596895943905}, {'pre': 0.6486550349167188, 'peace': 0.5354432553818791, 'just': 0.36772916824284013, 'ain': 0.3966389097991714}, {'cracks': 0.6322543275992961, 'niggas': 0.39433790320006784, 'black': 0.41798338196572077, 'catch': 0.5196556318681}, {'props': 0.6243659381930514, 'check': 0.4699779289772116, 'chip': 0.5637900715632341, 'like': 0.2672614388671229}, {'enter': 0.6202396675355691, 'lp': 0.6202396675355691, 'told': 0.48021402481678266}, {'kick': 0.7836206116891745, 'tell': 0.6212396775286363}, {'spock': 0.41063333667712515, 'logic': 0.4246207808869642, 'blocks': 0.399783832054914, 'field': 0.4246207808869642, 'electromagnetic': 0.4246207808869642, 'saying': 0.36144809828484836}, {'shoot': 0.276073362931868, 'coupe': 0.6486490730286635, 'hop': 0.7092516325949096}, {'clearly': 0.5518537386712186, 'sense': 0.5518537386712186, 'lot': 0.4231431822199072, 'don': 0.2849140746018321, 'make': 0.36150894824857244}, {'flesh': 1.0}, {'death': 0.37597869420710606, 'cousin': 0.4151455478946542, 'sleep': 0.7783585884827826, 'cause': 0.2836407997814438}, {'hook': 1.0}, {'life': 0.7122239060865351, 'yeah': 0.7019523542227339}, {'state': 0.7417421381336353, 'mind': 0.6706851724296155}, {'carry': 0.7420550767639714, 'tryin': 0.6703389165555109}, {'empire': 0.7356995848517206, 'greatest': 0.6773079955596315}, {'man': 0.6909434760879865, 'nigga': 0.7229087859830242}, {'collar': 0.5187596048370945, 'follow': 0.49385434926563504, 'dollar': 0.44636199693581136, 'bills': 0.5364301648790386}, {'witness': 0.5524829318646521, 'star': 0.4942600620763402, 'court': 0.5108317397452943, 'sit': 0.4353395625294426}, {'role': 0.6497787884190565, 'code': 0.5768022491731724, 'play': 0.4950623106937475}, {'deuce': 0.5302103284590182, 'dancing': 0.5127446562106899, 'pictures': 0.5302103284590182, 'bitches': 0.41814702284978855}, {'fun': 0.5655521109951531, 'sure': 0.4545098601129271, 'young': 0.4545098601129271, 'make': 0.3831022749350174, 'll': 0.3467348133787481}, {'mean': 0.797829031264938, 'yeah': 0.6028837672975201}, {'packed': 1.0}, {'gone': 0.46876146806759034, 'rotten': 0.5303979869442277, 'ran': 0.47953751088355573, 'luck': 0.5186370958157851}, {'lovers': 0.5346508170509138, 'playing': 0.474604279631171, 'fingers': 0.51703887055215, 'got': 0.27663265847646806, 'rock': 0.3808470299017265}, {'script': 0.9144251383274852, 'like': 0.40475506963441454}, {'matters': 1.0}, {'escape': 0.47158752846576857, 'blame': 0.48438567251168313, 'mf': 0.4048763395322651, 'tape': 0.43787569426137163, 'god': 0.3227396528276235, 'ain': 0.28836585410851484}, {'loud': 0.7013226121185597, 'll': 0.4997140972363893, 'say': 0.508362483622091}, {'whippin': 1.0}, {'repeat': 0.8094453603651305, 'doom': 0.5871952048368276}, {'know': 1.0}, {'uh': 1.0}, {'world': 1.0}, {'confusing': 0.7071067811865475, 'illusion': 0.7071067811865475}, {'champion': 0.5284012486098442, 'knees': 0.48646267840326773, 'lover': 0.48646267840326773, 'ease': 0.4974939652990734}, {'hustling': 0.4970597049746159, 'corner': 0.4136019505145178, 'cars': 0.45760867530960053, 'thugs': 0.4345313023407286, 'dough': 0.42853462379205387}, {'home': 0.6836614126406632, 'phone': 0.729799337397735}, {'figures': 0.5575271565975837, 'bigger': 0.5575271565975837, 'pockets': 0.4949113815842415, 'make': 0.36522549704368135}, {'trackmasters': 0.7851996264261275, 'produced': 0.6192427203126978}, {'funk': 0.7642266529011119, 'want': 0.6449477676491048}, {'trooper': 0.507738176511082, 'shorty': 0.4321997570236708, 'great': 0.43774095199922036, 'sounds': 0.4584775135219808, 'girl': 0.39190118994384193}, {'memory': 0.5725083190285939, 'trip': 0.500488740042005, 'lane': 0.5536493075705256, 'll': 0.3394373137427552}, {'wet': 0.5778322012097634, 'won': 0.4736820801268237, 'run': 0.4483091553350946, 'cash': 0.4906670311469265}, {'expect': 0.6734131679958205, 'walk': 0.5099214442211808, 'guess': 0.5352521143285828}, {'rhyming': 1.0}, {'year': 0.6445644192444145, 'new': 0.5019146897801673, 'night': 0.5767307462126404}, {'changes': 0.8131881032342269, 'feel': 0.5820009525407327}, {'king': 1.0}, {'365': 0.5556613734361967, '24': 0.5556613734361967, 'days': 0.45325929784145225, 'times': 0.42075751337590245}, {'feast': 0.6692313539164627, 'eat': 0.5511865671198608, 'let': 0.40774977903301834, 'like': 0.28646619496946973}, {'kirby': 0.7150958556462166, 'hey': 0.699026406681182}, {}, {'match': 0.4502781250639504, 'wally': 0.42394042503654183, 'bend': 0.41454009300940553, 'white': 0.34994878487097164, 'hat': 0.42394042503654183, 'red': 0.3788020609548608}, {'lot': 0.47482589484535037, 'loot': 0.5497084993567154, 'money': 0.43738167876101014, 'like': 0.530149226542396}, {'deck': 0.583354424054635, 'rebel': 0.5200641240680647, 'destroy': 0.5679413877644407, 'like': 0.2582121276342437}, {'mc': 1.0}, {'picture': 0.4716533290907497, 'develop': 0.5138240741418428, 'truth': 0.389243414705638, 'took': 0.41293826602455164, 'tried': 0.4376065705069133}, {'baked': 0.6206796139031568, 'cakes': 0.6206796139031568, 'half': 0.47907581213212636}, {'scrambling': 0.5729813396494683, 'handle': 0.5275045013506048, 'hot': 0.4554254179955464, 'thought': 0.43129928600906864}, {'heard': 0.8069325269085224, 'fuck': 0.5906436294560596}, {}, {}, {'doc': 0.5460457272470309, 'warning': 0.5646457371918988, 'shot': 0.41796458994261143, 'dark': 0.4564152240891872}, {}, {'wannabe': 0.5171676782565584, 'spot': 0.4458704944718909, 'niggas': 0.31193280191782413, 'runners': 0.5171676782565584, 'ill': 0.4110627864214041}, {'snappin': 0.5008248664648038, 'start': 0.38923288451472776, 'sure': 0.38923288451472776, 'ya': 0.35228098487159004, 'yeah': 0.30328288497281103, 'oh': 0.3442660659101941, 'tell': 0.33401863959723804}, {'hell': 0.5233942520246574, 'woke': 0.5845391139633905, 'till': 0.6199778070176737}, {'kinda': 0.746438403565396, 'weak': 0.6654545136091146}, {'address': 1.0}, {'mistakes': 0.6180647221189824, 'happen': 0.5883919031088936, 'bust': 0.5213357532606789}, {'slippin': 0.6444676150198464, 'east': 0.5933169972090784, 'caught': 0.48232399278227256}, {'foul': 0.4875021072898224, 'town': 0.44075496671300807, 'sounds': 0.46755288018353974, 'girl': 0.39965870670081394, 'meet': 0.4355961169433297}, {'lesson': 0.43872101704330363, 'bitter': 0.43872101704330363, 'having': 0.41305931619793157, 'learned': 0.4242690965867525, 'doom': 0.318260984722622, 'instead': 0.40390025872227864}, {'timers': 0.8107605924957979, 'old': 0.5853778793701234}, {'aesop': 0.719523593185712, 'rock': 0.5567236691150014, 'verse': 0.4151440172955072}, {'beard': 0.6243809965149322, 'weird': 0.604482823533829, 'fuckin': 0.4947210196096282}, {'says': 0.641375888168982, 'simon': 0.6539131927349333, 'fuck': 0.401291049542169}, {'hook': 1.0}, {}, {'autograph': 0.6094227695046699, 'hate': 0.5140462919557537, 'son': 0.4616634598087768, 'love': 0.3888793484015166}, {'molly': 0.7954359939482075, 'death': 0.6060376057074571}, {'shark': 0.5361866126563711, 'raise': 0.484165887709452, 'grand': 0.484165887709452, 'finger': 0.49363012748932095}, {'fiends': 0.445522895445655, 'cocaine': 0.4398831918299417, 'shoot': 0.4398831918299417, 'lines': 0.4517572985527394, 'saw': 0.45872676827176356}, {'cars': 0.9007804205623322, 'ghetto': 0.434274836862036}, {'feelin': 1.0}, {'happens': 0.7763632620765664, 'just': 0.45010885043987897, 'know': 0.44120529014680154}, {'syringe': 0.46990201261563347, 'blood': 0.36269708763381425, 'scene': 0.42431220717610907, 'flow': 0.3910041128327811, 'murder': 0.3910041128327811, 'like': 0.40228551987209854}, {'glass': 0.6232710689277421, 'tap': 0.6820734983122653, 'don': 0.3825034869615414}, {'truck': 0.7895795118173856, 'took': 0.6136482661250001}, {'tommy': 0.6315070216259798, 'road': 0.5520656086142919, 'lives': 0.5444469169922956}, {'lookin': 0.4691307030056354, 'label': 0.5128500362956864, 'way': 0.38431388701789393, 'boy': 0.45914493165213377, 'day': 0.3979824013097895}, {'ropes': 0.5514341833812625, 'tangled': 0.5663992400987599, 'lay': 0.4823830596324249, 'god': 0.3773841888498354}, {'wicked': 0.6057065214916021, 'high': 0.46236058875447605, 've': 0.44892982802310205, 'think': 0.46669508814675326}, {'press': 0.4177959992331106, 'rest': 0.42596287264610283, 'release': 0.4177959992331106, 'statement': 0.46268567715497094, 'did': 0.3424912588309743, 'let': 0.2819054748669643, 'know': 0.242073629701265}, {'niggas': 0.7298324885932294, 'fuck': 0.6836260224668262}, {'sophisticated': 1.0}, {'nails': 0.7999464534476882, 'doom': 0.600071388766758}, {'emotions': 0.5911707533047983, 'bitches': 0.46622307643215766, 'deal': 0.4919114830812692, 'niggas': 0.3565682026221986, 'like': 0.2530521549616457}, {'ll': 0.5101535124433425, 'know': 0.4501782695449037, 'hold': 0.6335822628464611, 'like': 0.3683156738147786}, {'ooh': 1.0}, {'lookin': 0.596623656264914, 'kid': 0.5462146188124294, 'young': 0.5879539122930283}, {'violently': 0.5213932331252549, 'ave': 0.5042180050441109, 'dies': 0.5213932331252549, 'lives': 0.4495135106887496}, {'breaks': 0.5664677309987323, 'sex': 0.519976397747141, 'murder': 0.4874120213883928, 'money': 0.4137250015760902}, {}, {'lyrical': 1.0}, {}, {}, {'sun': 0.5996796326603037, 'walk': 0.5267003555088201, 'right': 0.4391998189348595, 'll': 0.4124010096094241}, {'cards': 0.43986281989995546, 'rip': 0.46718971377363233, 'foreigners': 0.46718971377363233, 'green': 0.430109429307172, 'jewels': 0.430109429307172}, {'weather': 0.7354195573557156, 'got': 0.3934734481947994, 'cold': 0.5516672187328316}, {'vital': 0.7717234010990562, 'shit': 0.46961261225518464, 'know': 0.4288437787900938}, {'tryna': 0.5563093235694835, 'away': 0.5143845285918915, 'ran': 0.5416871441379313, 'man': 0.3640103448126899}, {'rich': 0.537209641550915, 'gonna': 0.8434487542374683}, {'yoga': 0.7071067811865475, 'monday': 0.7071067811865475}, {'desire': 0.5984594172454372, 'yes': 0.5138315679764046, 'yeah': 0.42035804637417196, 'said': 0.4484668978973261}, {'94': 0.6484950863482062, 'real': 0.46194155075621773, 'word': 0.47751453923642273, 'shit': 0.37154271825054014}, {'metal': 0.4416110140218872, 'iron': 0.4288997966457532, 'steel': 0.4185139758272085, 'cast': 0.46838444423633235, 'die': 0.3814537071045626, 'man': 0.2845695178734074}, {'bridge': 1.0}, {'money': 0.606718013395231, 'come': 0.5747092344628836, 'need': 0.54918352856293}, {'sits': 0.8483668998523545, 'time': 0.5294087298438752}, {'brother': 0.41436804663910776, 'touch': 0.9101094010746675}, {}, {'left': 0.6308105251487545, 'did': 0.6128695333054317, 'cause': 0.47588760911326017}, {'waste': 0.5246625511661503, 'don': 0.5884563930302814, 'time': 0.35563275818826223, 'want': 0.37122182573300255, 'll': 0.33788752316189896}, {'son': 0.7918709661291995, 'fuck': 0.6106884418438}, {'lust': 0.7048962870041412, 'love': 0.434985105363249, 'damn': 0.5602759879558454}, {}, {'giant': 0.5564482113787327, 'woke': 0.5107792035663203, 'eyes': 0.4573498895355151, 'open': 0.46936240987047184}, {'kinda': 0.6402052254156373, 'blew': 0.5635221024942062, 'low': 0.5220920506491384}, {'bail': 0.5984588598477759, 'goes': 0.5138003401491744, 'peoples': 0.6147000923477179}, {'moment': 1.0}, {'guns': 0.6598305870425305, 'better': 0.4920409360989067, 'sure': 0.5679078390073702}, {'doomsday': 0.4285825844759772, 'womb': 0.4285825844759772, 'tomb': 0.4285825844759772, 'brother': 0.36795491296056837, 'til': 0.33348040665896417, 'went': 0.3563238554779021, 'say': 0.2745618605556701}, {'audio': 0.7165513865702777, 'yo': 0.45333775394671333, 'fuckin': 0.5301311076052428}, {'regardless': 1.0}, {'eastern': 0.640776432817136, 'middle': 0.5899187796887205, 'getting': 0.49132616103431437}, {'twice': 0.746438403565396, 'scream': 0.6654545136091146}, {'high': 0.5281541622907052, 'life': 0.4515325853500007, 'die': 0.5634839172896234, 'bitch': 0.44683037069797354}, {'anybody': 0.9585675529246032, 'cause': 0.2848653128763454}, {'world': 0.3714793433986175, 'cold': 0.928441219156136}, {'shots': 1.0}, {'verse': 1.0}, {'gay': 0.466139888973476, 'lookin': 0.380140493801067, 'boy': 0.7440978811502033, 'say': 0.29073209686626367}, {'zoo': 0.48712572598207415, 'banana': 0.5003455522778872, 'ooh': 0.39177683729151447, 'wanna': 0.3531307478256099, 'baby': 0.34726024647015064, 'want': 0.33702041677863837}, {'dance': 0.5244504344819192, 'leave': 0.4835082375060471, 'hop': 0.443431329402971, 'gon': 0.47616936569571006, 'like': 0.26038993320092296}, {'seeking': 0.7309075364672349, 'children': 0.6824765000609163}, {}, {'ask': 0.5176741789181871, 'gon': 0.49676884483215095, 'homie': 0.5730575132796281, 'time': 0.39602934961853525}, {'doubt': 1.0}, {'aids': 0.548706153433371, 'chapter': 0.5306312097325168, 'end': 0.4327336382607975, 'died': 0.4796808050774316}, {'agree': 0.5346315114495317, 'everyday': 0.5528427178258474, 'tired': 0.49920602066840314, 'old': 0.39915839617943366}, {'rules': 0.4959864268500118, 'destiny': 0.5387460516011519, 'dream': 0.4585944555114572, 'yo': 0.32961852188008134, 'money': 0.3805166378392244}, {'mathematics': 0.7131185619526393, 'simple': 0.7010434484385399}, {'prick': 0.6120046951076734, 'thinks': 0.5918446324958133, 'don': 0.3159691402624781, 'just': 0.3266577916726634, 'like': 0.2619701771068394}, {'kiwi': 0.48011726994480075, 'crush': 0.48011726994480075, 'speeds': 0.4643017144425352, 'high': 0.34505622620885773, 'strawberry': 0.4520342165386675}, {'jollyin': 0.7854571295090033, 'sit': 0.6189160667679237}, {'fantastic': 0.4267130080871689, 'character': 0.41265664376659944, 'invisible': 0.3928453109634309, 'mr': 0.3340182863058563, 'skit': 0.35897761383969296, 'woman': 0.38531339179499335, 'outro': 0.3231153230925891}, {'hook': 1.0}, {'steelo': 0.8694133601735633, 'know': 0.4940854269776773}, {'verse': 1.0}, {'moon': 0.5292086131464795, 'buy': 0.5292086131464795, 'try': 0.4407624324500292, 'breathe': 0.4955854776765489}, {}, {'belly': 0.6729850157961911, 'son': 0.5553973001722098, 'god': 0.48849258691941355}, {'belly': 0.6729850157961911, 'son': 0.5553973001722098, 'god': 0.48849258691941355}, {'sky': 0.42239528733930926, 'shooting': 0.5007667789153117, 'sun': 0.44643672097117193, 'blast': 0.44643672097117193, 'trying': 0.41497393015145134}, {'yes': 0.7362612648077034, 'ma': 0.36252486890915037, 'sir': 0.45785104771143886, 'oh': 0.3418588706991556}, {'niggas': 0.7233720459960268, 'ain': 0.6904584586139286}, {'legs': 0.46653974428919404, 'everybody': 0.37693432526639287, 'kunta': 0.45427709190512877, 'king': 0.3871427224857516, 'cut': 0.3890231273582343, 'wanna': 0.36424582909279996}, {'palm': 0.49286282225829614, 'load': 0.4602049878576756, 'hand': 0.4019332416327861, 'mold': 0.49286282225829614, 'hold': 0.3752779174060894}, {'camera': 0.5624392777362142, 'studio': 0.5439119508297816, 'remember': 0.4435641799032993, 'took': 0.4371185959334382}, {'getting': 0.577186632121671, 'head': 0.5294881236050809, 'money': 0.5316703677208099, 'like': 0.32221815397154807}, {'rebel': 0.5619609416791828, 'nas': 0.44645580553500075, 'life': 0.4004974019543277, 'death': 0.4966187437850661, 'like': 0.279013920943591}, {'gang': 0.5891775716388135, 'pretty': 0.5974221995149527, 'baby': 0.4586768612336519, 'like': 0.2925269928969842}, {}, {'started': 0.5092206914540708, 'lungs': 0.5179917564525838, 'smoke': 0.4398534328219378, 'dreaming': 0.5281172078970371}, {'bong': 0.5526550142625523, 'lightin': 0.5526550142625523, 'song': 0.4551729657169915, 'straight': 0.4265705588777957}, {}, {'throats': 0.4418460621052705, 'rush': 0.4067772727243742, 'handcuffs': 0.4418460621052705, 'ducking': 0.4418460621052705, 'dough': 0.38093278152159243, 'cut': 0.322084831315198}, {'busting': 0.5315588320041393, 'cops': 0.4848366730833239, 'running': 0.5225580380572018, 'shots': 0.45750596216191247}, {'jump': 0.4936751224281384, 'beef': 0.44011446477988614, 'niggas': 0.30790586025648836, 'ride': 0.44011446477988614, 'come': 0.3415380698994115, 'cause': 0.2934188994415529, 'know': 0.26708513017050567}, {}, {'regret': 0.5807159649684499, 'payback': 0.5807159649684499, 'way': 0.375177523281117, 'did': 0.42986016573552277}, {'rebel': 0.642695785168482, 'huh': 0.6203004741622297, 'niggas': 0.449632571641314}, {'smash': 0.8215252790397198, 'hit': 0.5701720932303778}, {'orange': 0.4961059179496927, 'sent': 0.42229808022163257, 'just': 0.2647967652677478, 'secret': 0.44038835123832404, 'service': 0.4797636799767953, 'cause': 0.2851505465344003}, {'scars': 0.5885982207496393, 'rehabilitation': 0.5885982207496393, 'remain': 0.5541698918749717}, {'loud': 0.5092795328261693, 'streets': 0.4947277495528029, 'hear': 0.46631194128637216, 'ring': 0.5276665468650754}, {'dive': 0.5152004183940739, 'liquor': 0.5152004183940739, 'pool': 0.5152004183940739, 'ma': 0.4513375529021636}, {'pen': 1.0}, {'shot': 0.4606491690231716, 'bust': 0.5076254291604021, 'kid': 0.44931460092566333, 'pulled': 0.5729181059654086}, {'crime': 0.5575156150401884, 'die': 0.4958416856080034, 'man': 0.369904464911463, 'like': 0.5536136275764342}, {'pants': 0.5474008155323871, 'hot': 0.4818412824313694, 'fat': 0.48580891741945625, 'damn': 0.4818412824313694}, {'pants': 0.5094931190577254, 'wearing': 0.5456486200832569, 'true': 0.4560832999551863, 'stay': 0.419927798929655, 'like': 0.24152228100560583}, {'hole': 0.6702569793714711, 'head': 0.500749680711557, 'like': 0.30472947461436073, 'need': 0.45513216341230034}, {}, {'microphone': 0.4655677747026761, 'cords': 0.4655677747026761, 'tangled': 0.45023149450237626, 'spangled': 0.4655677747026761, 'star': 0.38344692309803663}, {'grand': 0.427307360163244, 'undercovers': 0.4732189768531537, 'freeze': 0.4732189768531537, 'ease': 0.44553941889580145, 'time': 0.2953041396563758, 'yo': 0.2895273927527889}, {'sac': 0.45487041705642073, 'cul': 0.45487041705642073, 'chopper': 0.41876790032164096, 'boy': 0.3510948476232456, 'instead': 0.41876790032164096, 'hold': 0.33494045241901466}, {'bars': 0.47190677590526153, '32': 0.512590463125056, '16': 0.512590463125056, 'got': 0.2652184528700812, 'rock': 0.36513281044614526, 'like': 0.21941566050326214}, {'tab': 0.5518329607536292, 'working': 0.5080346437970445, 'years': 0.442227657655171, 'shit': 0.3161620227736891, 'wanna': 0.3766396929272906}, {'rattling': 0.7122494748277649, 'view': 0.6322568639900173, 'like': 0.304880211796505}, {'boojy': 0.7861283702402259, 'friends': 0.6180632536427372}, {'chorus': 1.0}, {'verse': 1.0}, {}, {'land': 0.7733598671990083, 'won': 0.6339672829144517}, {}, {'scented': 0.6215393902256773, 'tinted': 0.6010652449734379, 'dark': 0.5024035804837726}, {'eyes': 0.4872354179152756, 'shut': 0.5156957441844748, 'deep': 0.4405595333987187, 'sleep': 0.48344034226745797, 'like': 0.26239717978433746}, {'bet': 0.5229477529031381, 'whoa': 0.5852626357914117, 'somethin': 0.4981556730304428, 'll': 0.36855694310056664}, {'queens': 0.6705949330836419, 'peoples': 0.7418237228092304}, {'pedigree': 0.8885639923858205, 'don': 0.4587526909298422}, {'does': 0.5962770763229814, 'sign': 0.5676502656793695, 'radio': 0.5676502656793695}, {'corner': 0.7231123855258655, 'catch': 0.6907303945093861}, {'shocking': 0.44249746993777855, 'making': 0.41661487654185636, 'body': 0.368200871710876, 'rocking': 0.4073769791023747, 'earth': 0.36095021556082024, 'mind': 0.31801919373000637, 'money': 0.3125362107298399}, {'bag': 0.7680269305451806, 'told': 0.6404175465720379}, {'verse': 1.0}, {}, {'mood': 0.4936643156881792, 'fucked': 0.4401048305035025, 'ma': 0.37211575629568006, 'cup': 0.4936643156881792, 'crowd': 0.42476898299690014}, {'suggest': 0.7356995848517206, 'change': 0.6773079955596315}, {'door': 0.45292943770686694, 'way': 0.6875256268468201, 'open': 0.4340326119279051, 'oh': 0.3657582926885855}, {'miss': 0.6343650193830084, 'lady': 0.6572681163373633, 'just': 0.40691478890491256}, {'picture': 0.6638629085241077, 'autopsy': 0.7478542897422681}, {'motion': 0.6508500192576842, 'stick': 0.5728918738867985, 'turn': 0.4981858621706811}, {'stop': 0.41991094900327647, 'yes': 0.8569503652853624, 'don': 0.29884923681423686}, {'blown': 0.4153340067220563, 'handle': 0.4061245109184616, 'wind': 0.3915930046851737, 'win': 0.4153340067220563, 'way': 0.28500111311173365, 'don': 0.22775264242233162, 'wanna': 0.30108696906835886, 'play': 0.3360994830183931}, {'rexha': 0.5508040419569833, 'bebe': 0.5508040419569833, 'rihanna': 0.5143069348978582, 'chorus': 0.35877317547953586}, {'swift': 0.6420279889431391, 'learned': 0.6208789282265654, 'run': 0.4497881922614908}, {'fresher': 0.5936517298657232, 'style': 0.47185496020389833, 'monkey': 0.5465343076099474, 'nigga': 0.3552896997715067}, {'spiritual': 0.7098118934465547, 'better': 0.4779586056169031, 'told': 0.5174192180800424}, {}, {'trailer': 0.5106722477108381, 'trash': 0.5106722477108381, 'park': 0.46112692168231284, 'white': 0.3968861079546216, 'god': 0.3290457266830063}, {'way': 0.5996767493819106, 'dough': 0.8002423359525195}, {'duet': 0.5600462076381638, 'thought': 0.43592237606342654, 'black': 0.37024658860703796, 'rap': 0.402560333583603, 'pharoahe': 0.44405243925378496}, {'rain': 0.4825019919505258, 'falling': 0.4934434642099694, 'lies': 0.4652376296303442, 'truth': 0.3839487022300416, 'right': 0.3309280893219303, 'like': 0.22434196469181045}, {'socialize': 0.6770330894862547, 'person': 0.5918646535978074, 'said': 0.43740419243789175}, {'shoulder': 0.6347840410170306, 'lean': 0.6347840410170306, 'hit': 0.44056604787497855}, {'spinnin': 0.7103607120452198, 've': 0.4957002387607466, 'head': 0.4996688223965421}, {'able': 0.5372925409306838, 'table': 0.5195935733367468, 'motherfuckin': 0.4382756323904435, 'break': 0.3844144630799061, 'll': 0.3185580553606276}, {'fiends': 0.6654545136091146, 'reverse': 0.746438403565396}, {'ministry': 0.7071067811865475, 'burned': 0.7071067811865475}, {'hear': 0.6146504970015381, 'time': 0.5034325424459073, 'street': 0.6072564876081705}, {'champion': 0.47216700919884946, 'tony': 0.444548983008144, 'whoa': 0.444548983008144, 'blow': 0.35974102998355584, 'god': 0.304235323838374, 'yeah': 0.2859286395853798, 'em': 0.2794329811909245}, {'nod': 0.9441795650095434, 'people': 0.32943125082236735}, {'understand': 1.0}, {'plenty': 0.5707964794946373, 'stackin': 0.5902395767762919, 'papers': 0.5707964794946373}, {'wrote': 0.5933064691793858, 'main': 0.604904136073735, 'brother': 0.5311105532662468}, {'realizing': 0.6687838963376335, 'start': 0.5197678919698561, 'mc': 0.5315726088472444}, {'wait': 0.6316573457214237, 'ho': 0.6228506943848019, 'man': 0.4615907387508285}, {}, {'kweli': 0.6619542579167847, 'talib': 0.6619542579167847, 'verse': 0.3516150179552598}, {'stunts': 0.4380635148753284, 'acrobat': 0.4380635148753284, 'attempt': 0.4380635148753284, 'exact': 0.4236332532148286, 'lyrical': 0.41244027269339917, 'time': 0.27336598002757106}, {'got': 0.6540089539227287, 'nigga': 0.7564868063548089}, {'bet': 0.2881946656601779, 'threat': 0.33128930300337406, 'double': 0.8984382184661096}, {'help': 0.7044913705766577, 'don': 0.4458913820881408, 'need': 0.5521528630393492}, {'flash': 0.5193554638248011, 'second': 0.5193554638248011, 'thirty': 0.5093979989803781, 'catch': 0.448389878370864}, {'label': 0.5531457387918821, 'sent': 0.5461436788417185, 'years': 0.5141625910020465, 'fuck': 0.3624826943892343}, {'linen': 0.7071067811865476, 'grew': 0.7071067811865476}, {'central': 0.7851996264261275, 'low': 0.6192427203126978}, {'bunch': 0.6246695509258682, 'belong': 0.6246695509258682, 'think': 0.46858927035533826}, {'trash': 0.6641274117611374, 'grass': 0.6252812240888853, 'love': 0.4098270022208857}, {'clips': 1.0}, {'eh': 0.5660860062825561, 'far': 0.4948743321677684, 'guess': 0.4499447681671144, 'wasn': 0.4818669260818934}, {'marijuana': 0.610724694534441, 'laced': 0.5814042646872515, 'cocaine': 0.5375727192569301}, {}, {'benz': 0.5074916629011202, 'brand': 0.5004881067656772, 'dont': 0.4578226006745757, 'new': 0.3802869874092113, 'need': 0.3711389774609483}, {'rocked': 0.4266661175540902, 'insane': 0.4092063791234987, 'snort': 0.4382451651377557, 'pete': 0.4092063791234987, 'cocaine': 0.3857526103539931, 'act': 0.3770840775464429}, {'hardly': 0.6059830503755187, 'spark': 0.5379252026183379, 'prepared': 0.5860213469197191}, {'jameson': 0.4655601599359234, 'jonah': 0.4761174501855424, 'doom': 0.3668470909564573, 'gonna': 0.3303307813505741, 'jay': 0.4304619975381019, 'long': 0.357173860373161}, {'pot': 0.42814989666269565, 'jack': 0.40310652254038737, 'working': 0.3941681554246368, 'war': 0.3562622972653226, 'shot': 0.31692702911839593, 'snap': 0.37429011109116267, 'time': 0.267179557588152, 'man': 0.24490956132835148}, {'state': 1.0}, {'thief': 0.6298552782648964, 'liar': 0.6298552782648964, 've': 0.45449384691511513}, {}, {}, {'marshall': 0.6212152695847252, 'flow': 0.5490250508570653, 'hit': 0.44284946600203, 'got': 0.34139044044596645}, {'riding': 0.6181111670559779, 'cat': 0.5673813360672577, 'town': 0.5440744477029136}, {'identity': 0.5555324053717375, 'bounce': 0.537232597927873, 'left': 0.4232565931210725, 'shoot': 0.47288343033468916}, {'intro': 1.0}, {'verse': 1.0}, {}, {'actual': 0.534586135037367, 'whats': 0.534586135037367, 'hood': 0.41845817053595863, 'answer': 0.5033170849110118}, {'killa': 0.6860057924110783, 'masta': 0.7275960780394908}, {'matters': 1.0}, {'oh': 1.0}, {'belts': 0.6600738046147795, 'kicks': 0.6214647208192359, 'black': 0.4220002052587642}, {'past': 0.6443432640038055, 'lookin': 0.5969712537214362, 'right': 0.4779613795728468}, {'funky': 0.6440125405101905, 'think': 0.4962097628086789, 'actually': 0.5822574335798256}, {'thief': 0.4481497237349441, 'act': 0.3856063651590204, 'won': 0.34303118982017267, 'right': 0.29261082347837747, 'theme': 0.4481497237349441, 'play': 0.3530730004244239, 'night': 0.34882566784368396}, {'shocked': 0.4925870732064738, 'giant': 0.4763607495899723, 'act': 0.4098802864875953, 'knock': 0.40570032515569643, 'small': 0.44479636742825224}, {'mean': 0.778514405524463, 'said': 0.62762673651693}, {'scribble': 0.44551482532107795, 'scratch': 0.44551482532107795, 'chicken': 0.4308391098489856, 'sure': 0.3462468263164501, 'rhymes': 0.3462468263164501, 'make': 0.29184833705896784, 'wanna': 0.3040749265399562}, {}, {'drug': 1.0}, {'corners': 1.0}, {'sent': 1.0}, {'sneak': 0.6624827012787361, 'mcs': 0.598956469282423, 'need': 0.44985310759309294}, {'report': 0.5883426969066896, 'tv': 0.5547123056081653, 'excerpt': 0.5883426969066896}, {'wreck': 1.0}, {'worker': 0.46432903047368956, 'runnin': 0.44203694553614564, 'case': 0.39545331726963634, 'face': 0.6577374583379592}, {}, {'hash': 0.6896379316803009, 'cash': 0.5287915412033012, 'ain': 0.3970330360905102, 'like': 0.295201282843259}, {'eminem': 0.8294126409761267, 'verse': 0.5586364390093137}, {'aesop': 0.6955829939229424, 'chorus': 0.4759256036312921, 'rock': 0.5381998870061068}, {'cars': 1.0}, {'fuck': 0.6821723647789674, 'yeah': 0.731191400887532}, {'funk': 0.7642266529011119, 'want': 0.6449477676491048}, {'50': 0.4963237121918484, 'cellies': 0.5132300361899954, 'fresh': 0.448667461462013, 'deep': 0.36885409159540494, 'city': 0.39102668810080105}, {'child': 0.6046935547012168, 'woman': 0.6245986644637436, 'man': 0.3956696392224111, 'like': 0.29608740238402825}, {'dry': 0.34963212993929976, 'hot': 0.3018578201979095, 'fellas': 0.6992642598785995, 'spot': 0.32741834093897676, 'rocks': 0.35756057441115857, 'feel': 0.2502326729254996}, {'life': 1.0}, {'killah': 0.5806481274958254, 'ghostface': 0.5706973839708601, 'outro': 0.5806481274958254}, {'game': 0.47426385511467367, 'run': 0.47426385511467367, 'world': 0.39298063704809244, 'talkin': 0.52251973931075, 'got': 0.35026694448582624}, {'normal': 0.894648522836249, 'write': 0.36842135772266904, 'fuck': 0.25272460062428215}, {'sounwave': 0.5944645066272617, 'scoop': 0.6313961765691896, 'produced': 0.4979466021314084}, {'rocked': 0.4266661175540902, 'insane': 0.4092063791234987, 'snort': 0.4382451651377557, 'pete': 0.4092063791234987, 'cocaine': 0.3857526103539931, 'act': 0.3770840775464429}, {'sugar': 0.5479375761239896, 'meal': 0.5666020283054135, 'water': 0.4503549203469367, 'thing': 0.41941268448970737}, {'fed': 0.6213546264964781, 'make': 0.4421289037304083, 'baby': 0.4529933534370997, 'just': 0.3602401482777116, 'like': 0.28890226362601046}, {'beat': 0.6476414254399625, 'took': 0.6280872787978723, 'just': 0.4313547893166103}, {}, {}, {}, {'bug': 0.504458283205342, 'tooth': 0.4802396232495151, 'took': 0.4054113834515107, 'juice': 0.43883755059362783, 'crack': 0.39743547793774053}, {'worth': 0.5156452632206727, 'net': 0.5522373429678246, 'minimized': 0.5522373429678246, 'love': 0.35238870098480435}, {'dug': 0.684985577284367, 'cousin': 0.5958815682784105, 'em': 0.41918959373828035}, {}, {'ll': 0.7010146466120227, 'say': 0.7131468749391114}, {'stars': 0.7299139465027491, 'imagine': 0.683539048409659}, {'nothin': 0.5739766831443046, 'don': 0.3839258916956352, 'common': 0.6124629646417784, 'got': 0.38476069684230707}, {'allegiance': 0.44882377548598956, 'pledge': 0.45900154256422837, 'goddamn': 0.4402185960336934, 'hip': 0.36486140876852735, 'hop': 0.3553771061236412, 'gza': 0.36696819347583354}, {'hook': 1.0}, {'mr': 0.3996456633286857, 'nigga': 0.9166697026642555}, {'beat': 0.675736731333719, 'attack': 0.7371430457695585}, {'poetry': 0.6370174842437035, 'fell': 0.5889933081301064, 'deep': 0.49728825418038625}, {'clap': 0.5973061384003882, 'sound': 0.48707817078700194, 'way': 0.4273579654313296, 'man': 0.3783804188712476, 'like': 0.283149537469547}, {'grown': 0.5115403521010355, 'father': 0.4624881564432149, 'knows': 0.4823000771786272, 'home': 0.411412599671458, 'god': 0.35008210709370424}, {}, {}, {}, {'tumblers': 0.4693632107451397, 'dice': 0.43211041844382253, 'large': 0.39953400202017647, 'hard': 0.3358133472977638, 'niggas': 0.5661984984771076}, {'fresh': 0.49976998940714346, 'whip': 0.5074801732133791, 'ride': 0.4928729949705971, 'family': 0.49976998940714346}, {'women': 1.0}, {'code': 0.5285047077300538, 'streets': 0.4812508542886879, 'way': 0.38464535419613344, 'break': 0.42596738973314324, 'hit': 0.39959995437042034}, {'rain': 0.5113113301730536, 'falling': 0.5229060983364177, 'lies': 0.4930161433970647, 'truth': 0.40687359830752784, 'like': 0.23773702553329085}, {'boss': 0.5272815797045676, 'passing': 0.5099123834452899, 'crime': 0.4545900847116868, 'cash': 0.4043020639841264, 'cause': 0.3030696171730127}, {}, {'sworn': 0.546363938492547, 'torn': 0.546363938492547, 'poor': 0.43784489497843754, 'men': 0.4596354439891962}, {'zacari': 0.615954142791017, 'lamar': 0.4792743463255109, 'kendrick': 0.4701830176853425, 'chorus': 0.41209771270069245}, {'discouraged': 1.0}, {'ill': 0.445616195951613, 'god': 0.3612419499184928, 'knowledge': 0.5062469281325993, 'violin': 0.5606401286288155, 'fuck': 0.3167446186631601}, {'kings': 0.5545995239242895, 'cowardly': 0.5696504830072625, 've': 0.41105099592439753, 'heart': 0.44604346651655485}, {'live': 0.6571409018348935, 'woo': 0.753767759416402}, {'women': 0.5477505736749383, 'raise': 0.5571852961151379, 'hands': 0.4944924775906169, 'love': 0.3807768958828192}, {'attraction': 0.5509195436486695, 'fatal': 0.474969298485439, 'plus': 0.4281656472522194, 'close': 0.48161575841043414, 'like': 0.23582252158354647}, {'legs': 0.46653974428919404, 'everybody': 0.37693432526639287, 'kunta': 0.45427709190512877, 'king': 0.3871427224857516, 'cut': 0.3890231273582343, 'wanna': 0.36424582909279996}, {'verse': 1.0}, {'run': 0.7042227909810339, 'money': 0.7099790564959525}, {'jail': 0.5490966732436574, 'mr': 0.46687162782545283, 'cell': 0.5017583461666177, 'just': 0.31834745981281354, 'nigga': 0.35695543622030695}, {}, {}, {'style': 0.47557957340022977, 'big': 0.44290424408952933, 'crew': 0.4927977894332717, 'willie': 0.5786278930898672}, {'used': 0.8277584959948207, 'know': 0.5610845500531916}, {'patient': 0.8156620802735569, 'little': 0.5785286257427662}, {'road': 0.5425420568875089, 'laugh': 0.5282817398860418, 'went': 0.48579748414383045, 'head': 0.4365401747958282}, {'bombs': 0.6482947215472861, 'drop': 0.5518064430984317, 'blow': 0.5246175782119621}, {'condom': 0.383576121103753, 'cool': 0.6530196625366648, 'wasn': 0.6530196625366648}, {'got': 1.0}, {'art': 0.4626167974820764, 'dorks': 0.536591808703711, 'source': 0.5052054425710107, 'ain': 0.3089225014521024, 'fuckin': 0.383913113103359}, {'kind': 1.0}, {'dangerous': 0.5756303175621622, 'dream': 0.5322340648207613, 'sleep': 0.49310430433463737, 'say': 0.37712701148857963}, {}, {}, {'blowers': 0.617571242101276, 'backstabbers': 0.617571242101276, 'low': 0.48704365498276886}, {'tang': 0.6522313804984574, 'gin': 0.7580199379258281}, {'verse': 1.0}, {'blasted': 0.6222183657407695, 'word': 0.4737724208880231, 'getting': 0.49334783324558007, 'em': 0.38077803767113355}, {'uh': 0.3502783925363933, 'amazing': 0.40811299969215525, 'half': 0.7097179220055947, 'nas': 0.3148971396235152, 'man': 0.26298374785215545, 'like': 0.1967959303720834}, {}, {'little': 0.44231690753904906, 'ma': 0.4545882893832538, 'told': 0.4545882893832538, 'man': 0.3567211482292386, 'ghost': 0.513619265626125}, {'bus': 0.5916074899452708, 'rhyme': 0.4902515413290682, 'use': 0.5348022352658763, 'cause': 0.35162561513597296}, {'makes': 0.4869457266658641, 'neck': 0.4341151662946024, 'fear': 0.4107372709092211, 'grow': 0.41898803400891305, 'hair': 0.4286198687509405, 'like': 0.2155384221668639}, {'deal': 0.5681086329205941, 'crab': 0.6165035610595491, 'niggas': 0.4118006615047528, 'know': 0.35720604080311447}, {}, {'trick': 0.7763277486697107, 'better': 0.28390721922771067, 'try': 0.32329037961765544, 'don': 0.2176804051366466, 'hope': 0.33788404595894966, 'just': 0.22504413049096672}, {'circle': 0.5452355509916247, 'worldwide': 0.5600323865721714, 'universal': 0.5452355509916247, 'know': 0.302985336047798}, {'ooh': 1.0}, {'terrible': 1.0}, {'control': 0.5797863337408228, 'dream': 0.5724470407074794, 'sold': 0.5797863337408228}, {'ways': 0.46830745468549756, 'sneaky': 0.49740149840884074, 'actions': 0.48101658268627256, 'told': 0.36258211049252037, 'fuck': 0.2810167162334927, 'bitch': 0.3024346917858227}, {'gotten': 0.335585299928002, 'way': 0.4605555166467254, 'wanna': 0.2432749526499404, 'want': 0.46435280098789755, 'em': 0.6328229580114522}, {'art': 0.7513455562893705, 'place': 0.6599089748171459}, {'sit': 0.2355084060099554, 'hol': 0.9718723119312793}, {'cell': 0.4540862869993012, 'bunk': 0.5397677124878708, 'number': 0.45946411945919247, '17': 0.5397677124878708}, {'gza': 0.817049897585536, 'verse': 0.5765669647625201}, {'rexha': 0.5508040419569833, 'bebe': 0.5508040419569833, 'rihanna': 0.5143069348978582, 'chorus': 0.35877317547953586}, {'cartoon': 0.7187999009824234, 'white': 0.55863951169835, 'ain': 0.413821940352475}, {'goes': 0.5551275821304351, 'yeah': 0.8317652117983879}, {'dance': 0.543352806632637, 'floor': 0.5690923881176296, 'ill': 0.5009349608765891, 'man': 0.3605076230575155}, {}, {}, {'yeah': 1.0}, {'snatch': 0.49615871118516053, 'plus': 0.4343930281691184, 'tight': 0.5145705145576027, 'rhyme': 0.4479169208825292, 'fuck': 0.3157797459118966}, {}, {}, {}, {'competition': 0.6646720663675515, 'hell': 0.5283043839448474, 'catch': 0.5283043839448474}, {'heart': 0.35749691989640353, 'cold': 0.3424881857060692, 'nerd': 0.47211808035231745, 'mold': 0.45656602636289606, 'eye': 0.36692244046153566, 'crooked': 0.43464663737079356}, {'reason': 0.656706484545555, 'power': 0.5308298948563853, 'earth': 0.5356829434306992}, {'rapper': 0.6455426516830854, 'slapped': 0.6952426627378593, 'like': 0.31608910890307806}, {'flows': 0.5703254160036465, 'knew': 0.5149925507364995, 'gun': 0.4293000970427433, 'sick': 0.4745661378830908}, {'cocaine': 0.6284581515192917, 'weed': 0.6365155580655688, 'yeah': 0.4470886893329246}, {'flow': 0.5254496843206188, 'plan': 0.5702106653016755, 'plotting': 0.6314763862755143}, {'eminem': 0.8294126409761267, 'verse': 0.5586364390093137}, {'biggie': 0.4915134030933722, 'fat': 0.4073058701009901, 'lips': 0.4589449832430786, 'gonna': 0.3320024840554959, 'rhymes': 0.39500814114282723, 'come': 0.3400425328230668}, {'projects': 0.738495170747729, 'fucking': 0.674258765447126}, {'bang': 0.7426252835099302, 'hop': 0.6697071660746926}, {'stuff': 1.0}, {}, {'smokey': 0.7355119785898566, 'kid': 0.5310475697306235, 'man': 0.4207262863597102}, {'crying': 0.7543851686085693, 'feel': 0.5504695379392801, 'like': 0.35761194776508237}, {'hang': 0.43550445966814577, 'kill': 0.6777326451073573, 'yes': 0.34239866351110493, 'right': 0.29207126891406776, 'yeah': 0.28011130931773515, 'man': 0.2645931043281}, {'got': 1.0}, {'lip': 0.39832591382380295, 'leave': 0.31660323512916305, 'fat': 0.6384204945391073, 'face': 0.272827575365706, 'fucking': 0.3095723770846339, 'fuck': 0.22504202470549045, 'll': 0.23616543845492483, 'nigga': 0.23839077225578093}, {'sherane': 0.4793276480780365, 'fucked': 0.427323601502271, 'went': 0.3879840589228415, 'tell': 0.6611413732393877}, {}, {'payless': 0.6451002431775483, 'tops': 0.6073669939995975, 'high': 0.46362809540855127}, {'notch': 0.6934912580496958, 'ma': 0.5055222486384504, 'turn': 0.5133391969645166}, {'sufficient': 0.5429818672541521, 'plans': 0.5286355301393386, 'prepared': 0.5429818672541521, 'god': 0.36178150856655056}, {'dollar': 1.0}, {}, {}, {}, {'intro': 1.0}, {'gnac': 0.6187719021298919, 'queens': 0.5409325233838517, 'sipping': 0.5696607220794974}, {'friends': 0.6921628332289192, 'nothin': 0.7217413749373909}, {'ers': 0.7280795387793957, 'milk': 0.6854926587577597}, {'reality': 0.7159981363529552, 'real': 0.564825127340934, 'got': 0.4102672839301139}, {'opens': 0.5397677124878707, 'gunshots': 0.5397677124878707, 'door': 0.45946411945919235, 'car': 0.4540862869993011}, {'ribs': 0.45013987581143317, 'seasoned': 0.45013987581143317, 'beer': 0.45013987581143317, 'porch': 0.45013987581143317, 'biggest': 0.435311806430598}, {'run': 0.7042227909810339, 'money': 0.7099790564959525}, {'meant': 0.5555276967637678, 'lot': 0.47985238728510493, 'breathe': 0.5395375310119748, 'feel': 0.41234684086898427}, {'grown': 0.44456375069552667, 'mama': 0.42637161758834935, 'acting': 0.4721826943427836, 'boy': 0.3644574474493693, 'look': 0.35141847495621686, 'baby': 0.3169188351261584, 'like': 0.2021190115902637}, {'far': 0.6184494768955995, 'away': 0.5718416520321205, 'play': 0.5389966322053734}, {'lamar': 0.5903078048780283, 'kendrick': 0.5791102886868369, 'intro': 0.5622881548077746}, {'mess': 0.5345685521461245, 'message': 0.5204445065332415, 'read': 0.4765712135923913, 'believe': 0.4650310280517228}, {'listen': 0.7390723864187378, 'die': 0.6736260146648967}, {'paid': 0.48990913431040684, 'alive': 0.47904603125707623, 'grave': 0.4619053263695507, 'rob': 0.48990913431040684, 'just': 0.277734494880882}, {'verse': 1.0}, {'laugh': 0.6317204957831923, 'face': 0.5083115411132125, 'talk': 0.5852765093343048}, {'shall': 1.0}, {}, {'plot': 1.0}, {'box': 0.40975138941063993, 'cereal': 0.487067274399432, 'roaches': 0.487067274399432, 'seven': 0.41991975834541034, 'clock': 0.42579588519077943}, {'testin': 0.5312674338604249, 'brother': 0.4561138727181628, 'type': 0.46028383903160586, 'start': 0.4385436772276429, 'ain': 0.32485886092791516}, {'know': 1.0}, {'fiends': 0.5529781130551454, 'coming': 0.5020707773789767, 'fast': 0.5529781130551454, 'ain': 0.36926324954700235}, {'travelling': 0.8447637524776178, 'man': 0.5351394234215362}, {'business': 0.5225068047642989, 'snitches': 0.5627343465158373, 'telling': 0.48754640104159097, 'rap': 0.41546985577510753}, {'bound': 0.7861283702402259, 'shot': 0.6180632536427372}, {'thats': 1.0}, {'sort': 0.6287329082898222, 'similar': 0.6287329082898222, 'way': 0.45759136799861544}, {'elusive': 0.5224938365823592, 'roving': 0.5402915961318401, 'packs': 0.5086888217704847, 'young': 0.41990578048951865}, {'laying': 0.5310440007982091, 'stayed': 0.5578247441069125, 'years': 0.4622565556348954, 'came': 0.43948003464418267}, {}, {'connect': 1.0}, {'ways': 0.6202955504177948, '96': 0.6588319983959086, 'way': 0.4256451902953192}, {'main': 0.580666288197024, 'dollar': 0.5248255165482342, 'fuck': 0.3563411578374341, 'just': 0.33665044217893175, 'bitch': 0.3835000625073959}, {'verse': 1.0}, {'key': 0.6263867628385501, 'low': 0.5365839836963999, 'rock': 0.4846600447784602, 'like': 0.29124198319693656}, {'bomb': 0.5935468521344702, 'dropped': 0.5935468521344702, 'raekwon': 0.5435110565963885}, {}, {'grocery': 0.48589347212926093, 'woke': 0.43132286337726866, 'list': 0.4574725566952746, 'goes': 0.3927580841542421, 'okay': 0.41360498443644356, 'like': 0.20798794513555954}, {'young': 0.591446706483295, 'hold': 0.5603661416642771, 'city': 0.5798108145476027}, {'flu': 0.6024341344500169, 'months': 0.5546196633280434, 'shorty': 0.5128073849423843, 'like': 0.25787347410678}, {'drastic': 0.5105677282644476, 'don': 0.26359870673394337, 'feel': 0.33641219540320966, 'let': 0.3110790867207417, 'moms': 0.48070356449056983, 'think': 0.37038067850074385, 'll': 0.3027130478381212}, {'ass': 0.6601618451781754, 'niggas': 0.5289831409774752, 'bitch': 0.5332571375354963}, {'waste': 0.6794123700440878, 'time': 0.4605270465158213, 'got': 0.38183960655835764, 'ain': 0.4248672565894535}, {'peace': 0.6784532595738558, 'world': 0.506759042095493, 'let': 0.5318801066293687}, {'sit': 0.3299645615587024, 'hol': 0.6808322189652355, 'bitch': 0.5531295364098102, 'lil': 0.3487672485846616}, {'did': 0.644155095009176, 'know': 0.4552903407569599, 'long': 0.6146339717157934}, {'sayin': 1.0}, {'grave': 0.5268896185609014, 'piss': 0.5359650217583699, 'spit': 0.4681004428047409, 'shit': 0.340063711759097, 'just': 0.31680825856490735}, {'places': 0.7071067811865476, 'moving': 0.7071067811865476}, {'abundance': 0.7935679512397503, 'cash': 0.608481640450347}, {'mayo': 0.5898067911113285, 'count': 0.4961822829088428, 'chop': 0.5325838464722932, 'll': 0.34969349116491105}, {'tore': 0.593374976926781, 'telling': 0.4840227128535558, 'dog': 0.5462795202181916, 'man': 0.3394213251833315}, {'bone': 0.680777389630447, 'secret': 0.6043194030394218, 'bitch': 0.4139326091020511}, {'fallin': 0.8683749802867949, 'deep': 0.3120468814487783, 'feet': 0.38542397095925496}, {'science': 0.7137779982639965, 'live': 0.5499638422196639, 'man': 0.43365970696529677}, {'arrest': 0.46657214633969946, 'outta': 0.4213054039039159, 'runnin': 0.42954087745610053, 'bastards': 0.45120278110712814, 'niggas': 0.2814158019217047, 'damn': 0.370847704921474}, {'mood': 0.6560026336125906, 'blood': 0.5235876410137655, 'pen': 0.5436143181254384}, {'boss': 0.6431967121457106, 'throne': 0.5410972165827114, 'king': 0.46659360054693144, 'like': 0.27532199988384687}, {'sympathy': 0.7421933144477013, 'devils': 0.6701858577955339}, {'grows': 0.6083766898860413, 'homie': 0.5493520971385878, 'blows': 0.572791477391851}, {'success': 0.6346677542546217, 'drug': 0.6086963154088554, 'money': 0.47611515132064247}, {'attraction': 0.44285798379287866, 'fatal': 0.3818051988094278, 'pain': 0.3548973380987526, 'common': 0.7294857611793526}, {'report': 0.5883426969066896, 'tv': 0.5547123056081653, 'excerpt': 0.5883426969066896}, {'don': 1.0}, {'blends': 0.4979485837612921, 'clouds': 0.46882253988271105, 'natural': 0.4496377052311056, 'weed': 0.4293009609797856, 'smoke': 0.38181049352314234}, {'perform': 0.5711091372761405, 'came': 0.46215692112600104, 'mcs': 0.5163448219516963, 'live': 0.4400379056612155}, {'coffee': 0.6336905313786491, 'stay': 0.5122784068021807, 'want': 0.44836391597844916, 'just': 0.36739208376574356}, {'supposed': 0.687994002421475, 'girl': 0.5491215100398725, 'tell': 0.4744784714226868}, {'ain': 1.0}, {'queens': 0.5423269155767383, 'kings': 0.5840803979054281, 'yo': 0.3795562583052148, 'place': 0.4697538208519471}, {}, {'loc': 0.4507008868636056, 'stack': 0.48955638724430783, 'ghetto': 0.4345743971523708, 'lead': 0.4345743971523708, 'right': 0.30911703129458956, 'em': 0.2897241825108627}, {'lamar': 0.6339600886430782, 'kendrick': 0.6219345346888716, 'verse': 0.45966513960599314}, {'woulda': 0.7280795387793957, 'bought': 0.6854926587577597}, {'power': 1.0}, {'treble': 0.7552357277435924, 'time': 0.47129182836698846, 'say': 0.4555249807135801}, {'flood': 0.5089392200131885, 'thuggin': 0.5089392200131885, 'way': 0.3288054187997834, 'nothin': 0.39282822359903047, 'jewels': 0.46854532755824596}, {'shot': 1.0}, {'catching': 0.6110197285510632, 'snort': 0.5908921117482151, 'fiends': 0.5267840198744831}, {'love': 1.0}, {'rehabilitation': 1.0}, {'pen': 1.0}, {'day': 0.7585186940761407, 'cause': 0.6516512800087375}, {'sleepin': 0.6951678655409433, 'hittin': 0.7188474377218361}, {'bit': 1.0}, {'ooh': 1.0}, {'trick': 0.468898945707394, 'happy': 0.49254569114437535, 'joking': 0.509323324035627, 'rhymes': 0.3958377465647434, 'just': 0.2718515619354637, 'like': 0.21801715324877158}, {'smooth': 0.5120995304261635, 'tee': 0.5379248971608156, 'sweet': 0.4734928066781104, 'sample': 0.4734928066781104}, {'interlude': 1.0}, {'hole': 0.6975778406215337, 'patrol': 0.7165090064149914}, {'starts': 0.5593030598738182, 'performance': 0.5593030598738182, 'feet': 0.49648783348187636, 'need': 0.3575751748039016}, {'heartbeat': 0.6633044948119174, 'uh': 0.5053674600460476, 'huh': 0.5519337618672314}, {'bottles': 0.5126087811449318, 'set': 0.44411820237543365, 'bombs': 0.5126087811449318, 'champagne': 0.5265201774908802}, {'type': 0.6189815958038446, 'came': 0.5781433801580578, 'game': 0.5316126560152059}, {'throne': 0.495239918914321, 'aha': 0.588686612695426, 'king': 0.42705038913369, 'yeah': 0.3564890367832557, 'just': 0.31421175430119225}, {'high': 0.5900023860130957, 'head': 0.5774502126171556, 'oh': 0.5643123571633495}, {'fight': 0.5691343446976759, 'angels': 0.5239628377512544, 'devils': 0.5139170369460235, 'want': 0.37072674772373687}, {'hearin': 0.5327626011539854, 'wu': 0.4252237708595977, 'tang': 0.45841074811229326, 'slang': 0.4634599980255197, 'say': 0.33228477508440946}, {'bra': 0.4742326253849293, 'aw': 0.4209716442404316, 'hell': 0.37693651904123965, 'card': 0.4282226647039171, 'smell': 0.4365933535128824, 'say': 0.28603626602469506}, {'rush': 0.7299139465027491, 'imagine': 0.683539048409659}, {'love': 1.0}, {'starks': 0.4592294787812087, 'rape': 0.4592294787812087, 'plus': 0.36906294239324017, 'biggest': 0.4592294787812087, 'make': 0.31107983617766233, 'ho': 0.3665334057500638}, {}, {}, {'large': 1.0}, {'hate': 0.703691006459606, 'brothers': 0.7105061346870039}, {}, {'sneaky': 0.39669443036184265, 'burning': 0.39669443036184265, 'pedigree': 0.39669443036184265, 'degree': 0.39669443036184265, 'cat': 0.35214175000063863, 'ass': 0.298603135459013, 'alley': 0.39669443036184265}, {'looking': 0.6546919186664858, 'diamonds': 0.664345755806823, 'like': 0.36058731033448294}, {'tuck': 0.5247365353019466, 'fade': 0.5247365353019466, 'grenade': 0.5247365353019466, 'style': 0.41707877620172273}, {'criminal': 0.6073669939995976, 'grind': 0.6451002431775484, 'mind': 0.4636280954085513}, {}, {'pipe': 0.8147839104894377, 'make': 0.5797647619574167}, {'join': 0.6392503975567005, 'state': 0.5080983609155303, 'million': 0.5772304434613198}, {'war': 0.6442567028213805, 'don': 0.3997374518503535, 'want': 0.5043407411230566, 'just': 0.4132598302537471}, {}, {'niggas': 0.36910117434239004, 'let': 0.7456983904160513, 'thing': 0.4529801710349007, 'know': 0.3201674534976519}, {'lamar': 0.7138448088659665, 'kendrick': 0.7003039260600442}, {'hustlin': 0.8089499858324212, 'day': 0.5878774705852619}, {'piranha': 0.6318435511373224, 'dress': 0.5899766439001426, 'black': 0.41771181761683024, 'like': 0.2796750327822388}, {}, {'fear': 0.7942387294291982, 'time': 0.6076058267287214}, {'shawty': 0.8244484262377352, 'em': 0.5659370923292817}, {'kelly': 0.7740826359590319, 'fuck': 0.46450287791523753, 'know': 0.43015479668972517}, {'stockholders': 0.4886182964971776, 'gunmen': 0.4886182964971776, 'merit': 0.4725227084576929, 'fear': 0.3985714979848737, 'try': 0.37465633805167703}, {'goes': 0.6413256824447225, 'written': 0.7672687723586897}, {'dun': 0.5662451119014995, 'bag': 0.4950134228466492, 'loot': 0.5026502248907836, 'ass': 0.42622873655649696}, {'allah': 0.6349805907659576, 'dry': 0.6044956537190403, 'son': 0.48102458771387724}, {}, {'tie': 0.7614785693230284, 'couple': 0.648190086673465}, {'hog': 0.6407532538135973, 'grow': 0.5331689391103666, 'fast': 0.5524184556069919}, {'love': 1.0}, {'verse': 1.0}, {'trauma': 0.5885982207496393, 'dropped': 0.5541698918749717, 'bahamas': 0.5885982207496393}, {'tell': 0.6396865415690209, 'somethin': 0.7686358881391533}, {'chorus': 1.0}, {'presidents': 0.7025471608496187, 'represent': 0.5607370943382601, 'say': 0.4381796410323342}, {'writers': 0.5887795896637588, 'couple': 0.5323208342344047, 'ghost': 0.5150520378870992, 'got': 0.3235653295761299}, {}, {'shall': 0.5645047910154689, 'fall': 0.5645047910154689, 'rise': 0.6022197952916888}, {'earth': 1.0}, {'sleazy': 0.9581640455386712, 'imma': 0.24604177780353115, 'cause': 0.14623647086908656}, {'dove': 0.5101141755992529, 'leave': 0.4054564181616606, 'away': 0.41233619671882366, 'fly': 0.41610593088604814, 'want': 0.3322817732747143, 'just': 0.27227367932668645, 'like': 0.2183556792859809}, {'speed': 0.6119372985298049, 'brown': 0.5868960198140216, 'seen': 0.5301752583764202}, {'wrap': 0.6325378264615321, 'don': 0.3265700979228336, 'sorry': 0.5614976165624267, 'tell': 0.4218628874796949}, {}, {'allegiance': 0.5476956436318469, 'pledge': 0.5601154818737383, 'hip': 0.44523711760928963, 'hop': 0.4336635078203129}, {'sweat': 0.595980448293702, 'dress': 0.5381585365886861, 'jackets': 0.595980448293702}, {'dove': 0.47907698454480213, 'lot': 0.36734037583349527, 'big': 0.3546245056095394, 'crazy': 0.38392250514071363, 'spot': 0.41303101676653275, 'shit': 0.2744778932580422, 'rock': 0.34126020355597503}, {'lime': 0.5472178817179971, 'extra': 0.5472178817179971, 'water': 0.43494772913288815, 'glass': 0.46035383432559773}, {}, {}, {'fantastik': 0.6842830926985702, 'mr': 0.603404793083223, 'verse': 0.4094622140455363}, {}, {'cash': 1.0}, {'trophy': 0.5536971759381625, 'yah': 0.5097508984693678, 'motherfuckin': 0.4516570796176527, 'said': 0.3577217566724118, 'ain': 0.31877027167261535}, {'dope': 0.5205258322993276, 'plus': 0.48087748532288815, 'star': 0.5096043755209309, 'low': 0.4879683211731577}, {'genesis': 0.4561889606993468, 'remember': 0.35977053922689683, 'dream': 0.7766394850430759, 'just': 0.24349107070376075}, {'gets': 0.90452884768935, 'smoked': 0.42641243379828486}, {'followed': 1.0}, {}, {'kill': 0.3736568977547085, 'ma': 0.3718026683369387, 'way': 0.32952340401965186, 'feel': 0.6721428531342177, 'world': 0.2960863818477248, 'just': 0.27223971834777827}, {'sounwave': 0.7665955459641947, 'produced': 0.6421302585206979}, {}, {'label': 0.7115963499778873, 'number': 0.7025885244566327}, {'god': 1.0}, {'close': 0.5928423374863602, 'don': 0.35011975511415727, 'eyes': 0.5390182734503197, 'fuckin': 0.4851942094142792}, {'jive': 0.5573965441921513, 'ninety': 0.5573965441921513, 'crowd': 0.4638080608439157, 'live': 0.40435166345830814}, {}, {'work': 0.6268515225053501, 'doesn': 0.7092749901573007, 'like': 0.32246884666597747}, {'isle': 0.7303491353114425, 'fuck': 0.42668033306255837, 'long': 0.5334173168612475}, {'truly': 0.77539132144147, 'maybe': 0.6314810358460899}, {}, {}, {'soul': 0.6317006708873665, 'moving': 0.3769068817683823, 'dough': 0.3717054396615117, 'ii': 0.4311432167153557, 'hold': 0.31746910471453826, 'like': 0.18455195808826733}, {'clocked': 0.4165924750513506, 'stocks': 0.4165924750513506, 'patient': 0.4165924750513506, 'hustle': 0.39222511845364816, 'fall': 0.3466453999921569, 'invasion': 0.4165924750513506, 'like': 0.17832347585401806}, {'walkin': 0.8074103791208502, 'bitch': 0.589990236942888}, {'jail': 0.584681100702554, 'leave': 0.5047893126974006, 'begging': 0.6350872068210285}, {'compromise': 0.8028464125963074, 'don': 0.4144979487555068, 'just': 0.4285196474593868}, {'duel': 0.6396671324351917, 'iron': 0.5857434131266658, 'mic': 0.4977254400378417}, {'jones': 0.5901163207867764, 'acrobat': 0.5901163207867764, 'run': 0.4134202211146805, 'love': 0.36415542925465966}, {'wives': 0.5324985596634404, 'keeps': 0.5149575107313704, 'large': 0.45327643015429314, 'inside': 0.3776878530736325, 'niggas': 0.32117971543190926}, {'jungle': 0.6078187596779029, 'days': 0.5266070048883806, 'spent': 0.5943411627896091}, {'greet': 0.6167875968866413, 'slap': 0.5759183198996174, 'meet': 0.5365548892059452}, {'gon': 0.5970049276060314, 'believe': 0.6416157831739475, 'right': 0.48157481578275985}, {'evian': 0.4854187230834871, 'ted': 0.4854187230834871, 'grey': 0.4854187230834871, 'talk': 0.38282240650201677, 'ayy': 0.38282240650201677}, {}, {'pack': 0.7618438294163254, 'mr': 0.6477607425433166}, {'change': 0.6220305170356434, 'friends': 0.500137520172601, 'kid': 0.4878313158815213, 'know': 0.35349837911548415}, {}, {'prison': 0.7506260781685284, 'livin': 0.6607272438558397}, {'comin': 0.8265278245922051, 'shit': 0.5628958653027015}, {'bout': 1.0}, {'sound': 0.8645345226108571, 'like': 0.5025734366378882}, {'killed': 0.6584104062361728, 'drums': 0.7526591107267074}, {'sit': 1.0}, {'countin': 0.8580671547366795, 'nigga': 0.5135374942125445}, {'human': 0.588373630864587, 'future': 0.599874873029744, 'woo': 0.5421868748049619}, {'river': 0.8092245656938403, 'ooh': 0.33279365910894787, 'run': 0.3078984197568071, 'let': 0.26777549185074745, 'll': 0.2605740428550866}, {'page': 0.46958646098689255, 'cameras': 0.46958646098689255, 'stage': 0.43847095341134573, 'stars': 0.44704197079389, 'slang': 0.4085019102511902}, {'benz': 0.5074916629011202, 'brand': 0.5004881067656772, 'dont': 0.4578226006745757, 'new': 0.3802869874092113, 'need': 0.3711389774609483}, {'camera': 0.7356995848517206, 'drama': 0.6773079955596315}, {}, {'break': 0.414774033811053, 'know': 0.9099244478944983}, {'crunch': 0.7422410680618817, 'know': 0.3883348854970126, 'like': 0.3177181900899159, 'nigga': 0.44421770031637337}, {'sure': 0.4598509570697758, 'shit': 0.33899673723206397, 'rhymes': 0.4598509570697758, 'sell': 0.49776566686557344, 'make': 0.3876042375421847, 'like': 0.25327396755144416}, {'inch': 0.5828365539903827, 'add': 0.5262898604540878, 'big': 0.4314298776143317, 'dick': 0.4440594496433054}, {}, {}, {'forgot': 0.7478542897422681, 'sorry': 0.6638629085241077}, {'benz': 0.5074916629011202, 'brand': 0.5004881067656772, 'dont': 0.4578226006745757, 'new': 0.3802869874092113, 'need': 0.3711389774609483}, {'faded': 0.5551185779265739, 'poor': 0.44486068411368235, 'little': 0.39373166385818925, 'hard': 0.39716838374433183, 'getting': 0.4256465529051797}, {'days': 0.894427190999916, 'broke': 0.447213595499958}, {'dont': 0.40006957674476135, 'buy': 0.46702528346267014, 'bottles': 0.4776157976340387, 'friends': 0.3755070864401682, 'em': 0.3002179991362522, 'bring': 0.4032101799906873}, {'wildin': 0.774894666036827, 'island': 0.6320903863749822}, {'shabaam': 0.6715566446634564, 'sahdeeq': 0.649434879729212, 'verse': 0.3567155869869779}, {'dying': 0.4166049582227423, 'acting': 0.46931346989611505, 'lying': 0.4538538026528264, 'devils': 0.42378076476124, 'people': 0.3274938987142767, 'ain': 0.2701895346403397, 'like': 0.20089083271768038}, {'inhale': 0.5419123144253446, 'breath': 0.48994771619297656, 'words': 0.4842130861746554, 'deep': 0.4136638584210406, 'like': 0.24637812054824598}, {'roof': 0.5646872776183155, 'nas': 0.4201187010352299, 'niggas': 0.3699576254699612, 'said': 0.39627379868625073, 'caught': 0.45905009243859585}, {'old': 0.6126117384037435, 'love': 0.5235893470544659, 'people': 0.5920819652894534}, {'hill': 0.7655115891143327, 'fuckin': 0.643422106343611}, {'maintain': 0.5612705183417712, 'corner': 0.5261200298243304, 'home': 0.4787761271379859, 'come': 0.42302073180963157}, {'lifetime': 0.5477174043045809, 'comes': 0.5281195749178926, 'opportunity': 0.537216163482204, 'yo': 0.3639974633206368}, {'unless': 0.4400571039984855, 'jam': 0.8632400112364969, 'got': 0.24731847529224146}, {'proof': 0.68381209548277, 'livin': 0.5772840837033627, 'life': 0.44625564957122077}, {'afford': 1.0}, {'sweet': 0.5939040938079123, 'talk': 0.5502403629825312, 'couldn': 0.586952698522679}, {'losses': 0.44696988803826093, 'taking': 0.40410942881709566, 'kunta': 0.40410942881709566, 'king': 0.34438898029902215, 'black': 0.30351100903682166, 'yeah': 0.28748573702184843, 'man': 0.27155898772505055, 'oh': 0.32633421994346}, {'fade': 0.5271796107115597, 'cut': 0.3842889425783548, 'pussy': 0.44349639015343745, 'stay': 0.39234952285179986, 'low': 0.41575686646245275, 'like': 0.22566058249099594}, {'work': 1.0}, {'rock': 1.0}, {'dum': 0.6385906682945411, 'tat': 0.6385906682945411, 'rat': 0.3062293493245763, 'drum': 0.3010440206124502}, {'insult': 1.0}, {'seven': 0.5138268482464678, 'kids': 0.4908646748083604, 'tried': 0.4908646748083604, 'll': 0.35335985989923846, 'say': 0.35947534196889963}, {'babysittin': 0.7138861342608572, 'shots': 0.5548206126720931, 'nigga': 0.4272477911753933}, {'store': 0.5988996978088951, 'grocery': 0.5988996978088951, 'mother': 0.5316373801086869}, {'road': 0.5910891333353765, 'ease': 0.6365967948113945, 'mic': 0.4953364082002179}, {'add': 0.46468719421027244, 'accurate': 0.5146150501993226, 'figure': 0.46468719421027244, 'fat': 0.41240198471100115, 'little': 0.3650035290086178}, {'walking': 0.5462920882811625, 'away': 0.45662114626930733, 'girl': 0.4360223132526885, 'baby': 0.37914901882818997, 'long': 0.39898953235455414}, {'coming': 0.4450513833843869, 'happen': 0.5234334653769499, 'niggas': 0.3429299890713327, 'seen': 0.4637803112386423, 'eye': 0.4418750037895836}, {'chorus': 1.0}, {}, {'icebox': 0.7071067811865475, 'playtex': 0.7071067811865475}, {'power': 0.6669743634612715, 'knowledge': 0.7450806657573606}, {'thanks': 1.0}, {}, {'zoo': 0.48712572598207415, 'banana': 0.5003455522778872, 'ooh': 0.39177683729151447, 'wanna': 0.3531307478256099, 'baby': 0.34726024647015064, 'want': 0.33702041677863837}, {'cake': 0.5400986513375468, 'baked': 0.5400986513375468, 'knew': 0.487698381128938, 'coming': 0.4227732047929949}, {'help': 0.7044913705766577, 'don': 0.4458913820881408, 'need': 0.5521528630393492}, {'guys': 0.43819737575925344, 'hour': 0.4160989217307421, 'wait': 0.3725790595689561, 'half': 0.3673845124063599, 'man': 0.544532710699672, 'just': 0.25405184235690614}, {'lucid': 0.6951678655409433, 'throws': 0.7188474377218361}, {}, {'smooth': 0.5120995304261635, 'tee': 0.5379248971608156, 'sweet': 0.4734928066781104, 'sample': 0.4734928066781104}, {'ooh': 0.9690306050269742, 'nothin': 0.24694065384431166}, {}, {'bm': 0.7895795118173856, 'white': 0.6136482661250001}, {'suspect': 0.5654036598452412, 'creep': 0.5654036598452412, 'don': 0.2919097022141775, 'cops': 0.465672895454335, 'like': 0.24202248461583065}, {'broad': 0.5229532518426797, 'trip': 0.48556949536352517, 'fall': 0.46218187115833037, 'face': 0.38044211580266146, 'make': 0.3638596928154549}, {'mayhem': 0.720351635206722, 'til': 0.5456967557328801, 'cause': 0.4281455038157135}, {'chinky': 0.46686428190934237, 'mentally': 0.4514852934313577, 'voice': 0.38847642585134684, 'sweet': 0.39740684970897444, 'fucking': 0.3628392743498907, 'eyes': 0.3710799043923981}, {'numbers': 0.5120070109062163, 'crib': 0.5430483199781064, 'callin': 0.5767857106757232, 'ain': 0.33206262498531636}, {'ll': 1.0}, {'pigs': 0.6330618090811307, 'news': 0.6163354344537059, 'fuckin': 0.46836244311397085}, {'shake': 0.4945295753117052, 'coke': 0.5041963994267395, 'cut': 0.39922095738403557, 'don': 0.28275087856571246, 'yo': 0.33507463696493095, 'money': 0.38681526012509876}, {'petty': 0.6930365964010348, 'die': 0.5644110988513416, 'let': 0.4484867752144876}, {'later': 0.5501659540684224, 'explosion': 0.6197724914846271, 'sounds': 0.5596422801959483}, {'house': 0.544165217881116, 'knock': 0.544165217881116, 'gonna': 0.4315860127154154, 'rock': 0.47063993129058274}, {'devil': 0.44065622946065847, 'knock': 0.8419278888001207, 'let': 0.31141534563679946}, {}, {}, {'pearls': 0.28934371081564975, 'diamonds': 0.7435846838623776, 'black': 0.6027951848984179}, {'bro': 1.0}, {'matters': 1.0}, {'happened': 1.0}, {'share': 0.6163300347889424, 'yelling': 0.5911089995306925, 'today': 0.5203147498302204}, {'inside': 1.0}, {'centerfold': 0.5759368074709175, 'snake': 0.5302253972533668, 'wait': 0.45082625044466357, 'let': 0.3509072081111168, 'like': 0.24653122543277067}, {}, {'white': 0.7386404886816593, 'little': 0.6740995686692874}, {'ac': 0.7165090064149914, 'especially': 0.6975778406215337}, {'lessons': 0.6000202280838497, 'teach': 0.5281504227794221, 'street': 0.4670368979293611, 'let': 0.3780335868420189}, {'lyrical': 0.5888552952421318, 'thinking': 0.564758562444752, 'game': 0.4381660169990385, 'niggas': 0.3772369930929856}, {'hide': 0.5524299879350579, 'lock': 0.5649571846909545, 'ma': 0.437412145191509, 'break': 0.4293193486614653}, {'classical': 0.7916182623980852, 'boy': 0.6110159790364212}, {'hoes': 1.0}, {'verse': 1.0}, {'apartment': 0.5234761980839402, 'rat': 0.47268863518326837, 'question': 0.4928569911778419, 'died': 0.45762469140282486, 'like': 0.22407532723117066}, {'intro': 0.7136619968077368, 'nas': 0.7004902242803921}, {}, {'man': 0.596640282295127, 'like': 0.4464777021800651, 'need': 0.6668418365690623}, {'speakers': 0.4509032830707508, 'radio': 0.44090508444974047, 'lyrics': 0.46314008921846495, 'weak': 0.412892291355363, 'clock': 0.4186700796810161, 'like': 0.20500125292375096}, {'bless': 0.5682272469368466, 'god': 0.39769521094711907, 'love': 0.3808776829260244, 'america': 0.5192396486134343, 'know': 0.3229221159738039}, {'war': 1.0}, {'silent': 0.5333695445362385, 'fell': 0.46948308950196954, 'touched': 0.5333695445362385, 'room': 0.4589329870406973}, {'sore': 0.48430135989099815, 'finger': 0.44586294469730875, 'scripts': 0.4683479761727674, 'fly': 0.3950501237298255, 'busting': 0.4373145324700485}, {'yeah': 1.0}, {'plots': 0.5495381571533436, 'fatal': 0.48991671024880334, 'niggas': 0.34274771268567616, 'hit': 0.38140192318894794, 'shots': 0.4416401355040165}, {'donna': 0.5650294887743276, 'bein': 0.520183779294854, 'father': 0.4809675912840153, 'caught': 0.4228719530879259}, {'world': 1.0}, {'list': 0.6348459912802412, 'shit': 0.7726387042825436}, {'grey': 0.6712529958235511, 'couple': 0.5713877646346684, 'head': 0.47216039438278196}, {'dance': 0.5712014395088213, 'gotta': 0.4783608288910403, 'ain': 0.381432275020112, 'like': 0.2836018332693378, 'long': 0.46795219053337017}, {'routine': 0.6253153545339355, 'numb': 0.6253153545339355, 'kid': 0.46686337912519665}, {'youth': 0.5262174355996657, 'crime': 0.46912614086707044, 'pay': 0.4631876528119793, 'listen': 0.45776623797496213, 'don': 0.28093263263434004}, {'pre': 0.6821128580326611, 'chorus': 0.45636051301689734, 'eminem': 0.5713642717789318}, {'world': 0.3714793433986175, 'cold': 0.928441219156136}, {'mr': 0.6351525698928279, 'won': 0.6006301577214492, 'nigga': 0.4856177782928085}, {'black': 0.6755289074172832, 'people': 0.7373335034050817}, {'tecs': 0.644162947363858, 'pull': 0.5080150351902504, 'similar': 0.5718171222201693}, {'rocking': 0.6031563623093574, 'tree': 0.6168338573589351, 'funk': 0.5056860637010278}, {'hook': 1.0}, {'wars': 0.625163992134254, 'drug': 0.5645106984602171, 'crime': 0.538978343036824}, {'schemes': 0.48144299103135146, 'plots': 0.48144299103135146, 'dot': 0.4352155645975257, 'murder': 0.4142532550409126, 'red': 0.41881612408506663}, {'grammy': 0.5735592963609705, 'prolly': 0.540010625318287, 'life': 0.3524108362058731, 'want': 0.37360910397977926, 'll': 0.34006043293709587}, {'uh': 1.0}, {'word': 1.0}, {'wanna': 0.8658792709440023, 'ayy': 0.5002530241282734}, {'flight': 0.6163300347889424, 'water': 0.5203147498302204, 'boys': 0.5911089995306925}, {}, {'trade': 0.602959515791359, 'beach': 0.5444604962621046, 'jamaica': 0.5830974106670967}, {'strings': 0.49756533666091585, 'palm': 0.49756533666091585, 'blue': 0.41589263187909803, 'pull': 0.40576817657271397, 'guess': 0.40895351464017404}, {'century': 0.7544735582561396, 'comin': 0.6563304426067098}, {'soldier': 0.7324258365563293, 'don': 0.4107408323541987, 'wanna': 0.5429957298006507}, {'gza': 0.817049897585536, 'verse': 0.5765669647625201}, {'hard': 1.0}, {'murk': 0.7409288528638195, 'just': 0.39547112105156856, 'mic': 0.5427955668648371}, {'size': 1.0}, {'gon': 0.7120531286147485, 'funk': 0.7021255885024762}, {'blessing': 0.7071067811865476, 'autograph': 0.7071067811865476}, {'killing': 0.5196813255934323, 'cow': 0.5196813255934323, 'blood': 0.41478296794012975, 'cash': 0.41204771520120315, 'need': 0.343561362151147}, {'haven': 1.0}, {}, {'ashy': 0.5591753133923532, 'butter': 0.5407555048204384, 'fam': 0.5049242289966054, 'day': 0.3741095773582121}, {'ironic': 0.5233759728454528, 'signed': 0.5233759728454528, 'fact': 0.45753707415489375, 'realized': 0.4927626283211126}, {'killah': 0.6378232211789973, 'ghostface': 0.6268926506877232, 'verse': 0.44742277885526593}, {'cloud': 1.0}, {}, {'travelling': 0.8447637524776178, 'man': 0.5351394234215362}, {'pieces': 0.8132755221382023, 'way': 0.5818787890023441}, {'gate': 1.0}, {'push': 0.6699134800676936, 'came': 0.5838490015998874, 'nigga': 0.45862432616947685}, {'vibe': 0.6134463395667418, 'kill': 0.5342012255574613, 'don': 0.3764740185225503, 'bitch': 0.4433733781617415}, {}, {'hol': 0.4152179893684454, 'bitch': 0.6746723423795814, 'lil': 0.4254041794173154, 'humble': 0.43754146759724966}, {'curb': 0.4988339738034704, 'blade': 0.4988339738034704, 'didn': 0.43218387175219736, 'ride': 0.4567824413407482, 'love': 0.326949897444461}, {'check': 0.7759961061108454, 'yo': 0.6307376977007205}, {'today': 0.8116615160058337, 'man': 0.5841280539702847}, {}, {'started': 0.5784552113067118, 'ill': 0.5179467471369305, 'stealing': 0.630175162667}, {'coming': 0.5715840377366551, 'willing': 0.6722509462873464, 'god': 0.4705001094797208}, {'guarded': 0.5266968239845653, 'difficult': 0.5093468901787004, 'said': 0.6805558030535476}, {'killah': 0.5589894001272995, 'ghostface': 0.5494098287992563, 'interlude': 0.6210311510416316}, {'goat': 0.7718991815109741, 'mouth': 0.6357449595417082}, {}, {'dough': 0.7324452663200735, 'trying': 0.6808259188994765}, {'okay': 0.5414584998331186, 'alright': 0.5141674086284236, 'blast': 0.5484004915163291, 'em': 0.3764458390890369}, {'mighty': 1.0}, {'throttle': 0.7071067811865475, 'blooded': 0.7071067811865475}, {'lamar': 0.6339600886430782, 'kendrick': 0.6219345346888716, 'verse': 0.45966513960599314}, {'fore': 0.5940532205260124, 'cops': 0.4892690000132639, 'come': 0.39744422533784635, 'somebody': 0.49975464435490047}, {'world': 1.0}, {'usin': 0.5314979492782798, 'bein': 0.48931359767218235, 'prick': 0.5314979492782798, 'rich': 0.4422579145239486}, {'math': 1.0}, {'boo': 0.8025765480214792, 'baby': 0.596549146815186}, {'mothafuckin': 0.6469127792857692, 'shit': 0.3832611826254817, 'bullets': 0.5938191325330028, 'like': 0.28634517584033253}, {'chick': 0.5312998943257299, 'gonna': 0.38434429209380616, 'fuck': 0.6648391252258699, 'bitch': 0.3577552585124072}, {'john': 0.5069504551624187, 'swing': 0.49570948280309757, 'roll': 0.458338390027552, 'rap': 0.3742843027007727, 'rock': 0.38354989981546067}, {'filled': 0.5530964710400066, 'strong': 0.5265427285387001, 'song': 0.4710535415366272, 'shit': 0.3276800434067984, 'got': 0.29592465072182106}, {'water': 0.5273634861538927, 'flow': 0.5520867063955388, 'rapper': 0.5800237528779166, 'like': 0.2840078664233731}, {'truth': 1.0}, {'evidence': 0.7478542897422681, 'secret': 0.6638629085241077}, {'standing': 0.5862247349431077, 'rocking': 0.5862247349431077, 'block': 0.48824949881225616, 'like': 0.2725684266222837}, {'wear': 0.7188474377218361, 'flick': 0.6951678655409433}, {'ill': 0.4115297523183661, 'men': 0.8711359399278138, 'got': 0.2678907186202402}, {'accounts': 0.5926024185943694, 'bank': 0.545568278909439, 'homes': 0.5926024185943694}, {'isle': 0.7071067811865476, 'jamaica': 0.7071067811865476}, {'skills': 0.7844989049381191, 'look': 0.6201302025791776}, {'nuisance': 0.5346095191697423, 'root': 0.5346095191697423, 'loves': 0.5346095191697423, 'everybody': 0.3775950026672638}, {'lyrically': 0.6737537720747753, 'poppin': 0.651559631509212, 'got': 0.34860565285518785}, {'paul': 0.6907817630536104, 'point': 0.6512958288939452, 'like': 0.31406097990341697}, {}, {'baby': 0.5485300881392021, 'talkin': 0.630810963610948, 'got': 0.4228591039711191, 'like': 0.34983202938405816}, {'mile': 0.7356995848517206, 'watchin': 0.6773079955596315}, {'battle': 0.7456895880808876, 'america': 0.666293507568366}, {'reality': 0.4293962409748136, 'struck': 0.44771742664781805, 'white': 0.3695759124821779, 'crash': 0.4099750015333958, 'seen': 0.38789709815518236, 'car': 0.4000474451686973}, {'hour': 0.4346428201876828, 'late': 0.44134825689804436, 'missed': 0.4808094112511194, 'half': 0.3837574005272398, 'fucking': 0.3864058041692961, 'nigga': 0.297557485352936}, {'wheel': 0.9067768461818533, 'like': 0.4216109002723857}, {'friend': 0.611661506797303, 'mean': 0.5607081958622686, 'don': 0.3612339460785479, 'bitch': 0.4254251478178665}, {'thinkin': 0.7022317544449244, 'fuck': 0.4601804562262878, 'tell': 0.5432352259901497}, {'dates': 1.0}, {'sworn': 0.463251584333075, 'slaughter': 0.4479916018201058, 'cannon': 0.463251584333075, 'daughters': 0.463251584333075, 'father': 0.3943316288827763}, {}, {'cool': 0.8374979000111532, 'hear': 0.37480326563132926, 'alright': 0.3976427788216453}, {'rushed': 0.7071067811865475, 'according': 0.7071067811865475}, {'volume': 0.6556488822109057, 'loud': 0.5641471340936329, 'turn': 0.501859098103771}, {}, {}, {'jamaica': 0.532122599945461, 'later': 0.4884500520297122, 'hour': 0.4810289942621392, 'sounds': 0.49686335342688465}, {'drunk': 0.8315124512216366, 'way': 0.5555061146948658}, {'chain': 1.0}, {'product': 0.7173554966043018, 'sold': 0.6967073212559172}, {'mc': 0.6017402361712988, 'island': 0.6175452401491298, 'day': 0.5065042591545138}, {'long': 0.5150084551299954, 'night': 0.5488618806384261, 'berserk': 0.6584200233336359}, {}, {'whispering': 0.4611767919547209, 'praise': 0.4611767919547209, 'limited': 0.4611767919547209, 'foes': 0.43420160633054483, 'pray': 0.41643350579297894}, {'lie': 0.9604592220370962, 'just': 0.2784206939217988}, {'people': 0.6221306171341895, 'like': 0.38162646151857404, 'lil': 0.6836042269420552}, {'cause': 1.0}, {'rhymin': 0.5622490092739607, 'held': 0.5352558603467901, 'slow': 0.4837820605432787, 'rap': 0.40414370393631827}, {'stuffed': 1.0}, {'gorilla': 1.0}, {'intelligence': 0.6646082646086927, 'walls': 0.6257339508575765, 'life': 0.4083538629154742}, {'outro': 1.0}, {'wise': 0.7908360944578295, 'bridge': 0.6120279991166149}, {'az': 0.7150006654518224, 'intro': 0.49893806705345944, 'nas': 0.4897293677618371}, {'drop': 0.6758618707280989, 'crack': 0.6425604888486833, 'like': 0.36100796371611493}, {'showtyme': 0.8461273534155791, 'chorus': 0.5329807705742747}, {'vulture': 0.6767844236571658, 'culture': 0.6767844236571658, 'like': 0.28969930581566056}, {'arrangement': 0.663002375987357, 've': 0.4626528895856984, 'bullets': 0.5885406979921805}, {'big': 0.5978969041406387, 'away': 0.6529004036515389, 'ain': 0.46501651038505876}, {'style': 0.47046388437271186, 'motherfuckin': 0.4828208502476344, 'murderous': 0.5724037393850895, 'mad': 0.466799442164467}, {'shots': 0.42029040403220636, 'takin': 0.48831948596735975, 'blond': 0.540786490171037, 'non': 0.540786490171037}, {'song': 0.7381572528391328, 'thought': 0.6746286905261178}, {'know': 1.0}, {'tour': 0.4564983710896767, 'trained': 0.4564983710896767, 'bus': 0.4414608463501633, 'jamie': 0.4564983710896767, 'wu': 0.3523513950965731, 'got': 0.23619595062301924}, {'hear': 0.5288126213031654, 'bridge': 0.5194517872826543, 'touched': 0.6712131198355192}, {'cards': 0.4633294315394326, 'broker': 0.4633294315394326, 'charge': 0.49211421086474333, 'large': 0.4189002367817723, 'livin': 0.3911494226351847}, {'baby': 1.0}, {'essence': 0.6297252349046321, 'womb': 0.6130870172136197, 'til': 0.47704343392233467}, {'pete': 0.6475107769899672, 'rock': 0.510797917618736, 'produced': 0.5655221313425425}, {'lean': 0.5249602631659127, 'syrup': 0.5249602631659127, 'cup': 0.5249602631659127, 'maybe': 0.4162333075215477}, {'plans': 0.5615236210961322, 'big': 0.4414763916303809, 'stand': 0.5213826290774692, 'things': 0.4668511247500341}, {'lamar': 0.6083844778683101, 'kendrick': 0.596844066264219, 'chorus': 0.523111353015872}, {'plans': 0.6414845209519292, 'burning': 0.6813373537729593, 'got': 0.35252945938280866}, {'feels': 0.5476571500339031, 'struggle': 0.5041902621409313, 'great': 0.47215666127833145, 'goin': 0.47215666127833145}, {'lot': 0.5482636289993852, 'takes': 0.6456606200898449, 'just': 0.38164919047053025, 'got': 0.36996385255158426}, {'learned': 1.0}, {'rarely': 0.5233272216866625, 'shady': 0.5233272216866625, 'sound': 0.3984742630345147, 'time': 0.33769742518048596, 'bout': 0.42359880643010356}, {'darts': 0.4590150401465177, 'tryin': 0.38717781997384126, 'spit': 0.7486602547903494, 'em': 0.2809027439112046}, {'stole': 0.5655465739922174, 'fool': 0.5424036647103022, 'pity': 0.5655465739922174, 'like': 0.2571233357751971}, {'sending': 0.6429056974826237, 'slave': 0.5805311068716036, 'sure': 0.49965577961113583}, {'dont': 0.7943211049912628, 'say': 0.6074981334666463}, {'ridiculous': 0.6336667949062155, 'looking': 0.4924754558285933, 'north': 0.5966023117954736}, {'winnin': 0.4775737159318867, 'threats': 0.4938413569415965, '20': 0.4317178114297222, 'em': 0.5845201376508964}, {'universe': 0.5402324272954552, 'moon': 0.5142962777874218, 'sun': 0.4816205937751867, 'star': 0.4600976709396609}, {'corners': 1.0}, {'mission': 0.821617556290355, 'gonna': 0.5700391137417372}, {'maybe': 0.6399746533204832, 'form': 0.7683960197107527}, {'ham': 0.7071067811865475, 'ribs': 0.7071067811865475}, {}, {'realizing': 0.6687838963376335, 'start': 0.5197678919698561, 'mc': 0.5315726088472444}, {'speeds': 0.48829432964322383, 'high': 0.3628868759792788, 'rate': 0.48829432964322383, 'maybe': 0.38716142560142874, 'like': 0.21613535883136636, 'ice': 0.44140904805820963}, {'skull': 0.6951040980937083, 'split': 0.6544460198874568, 'like': 0.2975410893755666}, {'bail': 0.78389131024354, 'gods': 0.36392708774025795, 'approach': 0.383254765843116, 'hood': 0.3258638872168857}, {}, {'slang': 0.4228256055515737, 'plate': 0.4627170332977525, 'gold': 0.3853835331964406, 'bills': 0.5026084610439313, 'small': 0.45384548209071185}, {'autopsy': 0.6497787884190565, 'blow': 0.4950623106937475, 'shaolin': 0.5768022491731724}, {'buttery': 1.0}, {'fully': 0.6236204745257512, 'held': 0.5936809280521279, 'hand': 0.5085670648198143}, {'woody': 0.5269817043258349, 'holding': 0.44858034140864844, 'hands': 0.4223123686067555, 'game': 0.36918974285494777, 'soon': 0.4543315504122384}, {'ark': 0.5269678229866919, 'steak': 0.509608962195635, 'pool': 0.4384884094694732, 'throw': 0.41558984141243716, 'll': 0.3124365818246505}, {'dna': 1.0}, {'forth': 0.5630169102749462, 'make': 0.38138494218274605, 'music': 0.4408492959414825, 'love': 0.3592672610258919, 'bring': 0.4627487634165752}, {'ayo': 0.3699821353299176, 'word': 0.6476780451515634, 'black': 0.28117029381082187, 'time': 0.548891681304568, 'man': 0.2515701839215941}, {}, {'vanished': 0.4929238636342367, 'wig': 0.4929238636342367, 'land': 0.4451004825116595, 'living': 0.4059777095887943, 'hand': 0.38874128813996234}, {'step': 0.5784552113067118, 'damage': 0.630175162667, 'mc': 0.5179467471369305}, {'sayin': 0.8467710884816619, 'got': 0.5319574453953828}, {'rollin': 0.4954468195054251, 'gettin': 0.4426949289066006, 'style': 0.4182633871370901, 'foul': 0.4954468195054251, 'money': 0.37167436955607497}, {'doin': 0.5482114004941987, 'til': 0.49684826681870453, 'thought': 0.5105076507700778, 'said': 0.4381643511659237}, {'seeking': 0.5458201294254944, 'speaking': 0.5196157185719202, 'heat': 0.4804423561488811, 'ill': 0.4486145714809485}, {'beneath': 0.41606498426032457, 'sold': 0.3709245403348023, 'snack': 0.43023744722229973, 'dollar': 0.35799934208027906, 'box': 0.36194259200270706, 'spot': 0.3709245403348023, 'crack': 0.32779516439291073}, {'field': 0.7528738202886038, 'wrong': 0.6581648811081028}, {'adhere': 0.4655601447928094, 'conscience': 0.4502241159295694, 'deadly': 0.4655601447928094, 'blame': 0.4502241159295694, 'seven': 0.40137762024292295}, {}, {}, {'cast': 0.525952926993962, 'funhouse': 0.5402264624772646, 'judged': 0.5402264624772646, 'day': 0.3737435712692401}, {'known': 0.5644609257396048, 'lonely': 0.5836882144232434, 'roads': 0.5836882144232434}, {'place': 1.0}, {'thousand': 0.7157192621010398, 'slang': 0.698388099739352}, {'chorus': 1.0}, {'places': 0.7071067811865476, 'moving': 0.7071067811865476}, {'devil': 0.683539048409659, 'level': 0.7299139465027491}, {'hurtin': 0.5114199464470572, 'really': 0.42380196544721505, 'meet': 0.44489362965261403, 'person': 0.4623141781804403, 'think': 0.38363627488421054}, {'bahamas': 0.5193087060265122, 'model': 0.5022021444068557, 'swallow': 0.4889332643614182, 'dimes': 0.4889332643614182}, {'baywatch': 0.6007434111409719, 'girls': 0.5113681979023537, 'wanna': 0.41002228933774443, 'play': 0.4577025697885513}, {'looking': 0.674258765447126, 'wasn': 0.738495170747729}, {'killin': 0.7417767358446206, 'stick': 0.6706469072169795}, {}, {'conscience': 0.7855041637991655, 'hear': 0.6188563715872802}, {'admit': 0.6247246025483989, 'little': 0.5068631054854011, 'don': 0.36894872553373775, 'want': 0.46549522145288563}, {'world': 0.47940646956862254, 'light': 0.5935280067810319, 'shine': 0.646447168840799}, {'dissin': 0.7478542897422681, 'women': 0.6638629085241077}, {'fine': 0.5645106984602171, 'crime': 0.538978343036824, 'porch': 0.625163992134254}, {'years': 0.5385357390786591, 'murdered': 0.6186741322907974, 'mcs': 0.572032845009123}, {'relate': 0.5486438788592042, 'estate': 0.5486438788592042, 'jet': 0.48292787978197527, 'break': 0.4059069490781599}, {'dick': 0.5394418443367773, 'bust': 0.5775463061769589, 'right': 0.4470648339021509, 'em': 0.41901765486424153}, {'movin': 0.7165090064149914, 'arm': 0.6975778406215337}, {'grae': 0.4945646858737616, 'jean': 0.5042321963130219, 'intro': 0.3821950654944253, 'monch': 0.42274808072749076, 'pharoahe': 0.41996030269642}, {'floor': 0.5774713145437909, 'crash': 0.551352761095711, 'walls': 0.602110466369089}, {'ago': 0.543330320783377, 'shoulda': 0.511549805124181, 'dead': 0.4253028597829892, 'time': 0.33905591444179745, 'long': 0.3837545097289319}, {'planted': 0.4474478093491396, 'devil': 0.39890252553144373, 'fear': 0.37742089522942857, 'ayo': 0.3892430894891918, 'inside': 0.3281738763952775, 'black': 0.29580777930781954, 'babies': 0.3892430894891918}, {'goon': 0.7651653406219339, 'love': 0.4721765917158007, 'man': 0.4376885510800688}, {'empire': 0.6954256615442327, 'time': 0.4339683882563574, 'bad': 0.5727604972935424}, {'sneak': 0.49347904738751236, 'sure': 0.40735061530793915, 'use': 0.45820227939707314, 'don': 0.5412085463917897, 'fuck': 0.2961214049432584}, {'crews': 0.5151917069598373, 'claim': 0.5015796245818773, 'guns': 0.48105432696153455, 'corners': 0.5015796245818773}, {'corner': 0.7202765930737511, 'born': 0.6936869823415095}, {'cats': 0.4153346420388563, 'big': 0.7033622865834516, 'things': 0.3718947160295255, 'fame': 0.3912983276007973, 'like': 0.20336806027666052}, {'common': 0.8403826185994092, 'verse': 0.5419935925414616}, {'corrupt': 0.5410801682043404, 'police': 0.4885846714127603, 'peace': 0.4205186457903047, 'yo': 0.33104659371903444, 'mad': 0.42671945323146515}, {'cappadonna': 0.8619290435622967, 'verse': 0.5070289181731001}, {}, {'avoid': 0.7071067811865475, 'oooh': 0.7071067811865475}, {'knocked': 0.5739922544958305, 'gettin': 0.5347604684111484, 'block': 0.4874063349622154, 'niggas': 0.3834047441571161}, {'sayin': 1.0}, {'wipe': 0.5315932731778437, 'school': 0.43351820804730495, 'spit': 0.43351820804730495, 'cold': 0.3987690830055734, 'eye': 0.4272186055567662}, {'walkin': 0.8074103791208502, 'bitch': 0.589990236942888}, {'want': 0.39948231553269403, 'just': 0.654676413960909, 'know': 0.6417263221809758}, {'bro': 0.5795151107368408, 'catch': 0.47630878572320945, 'low': 0.4725988175906094, 'ho': 0.46253922502043743}, {'guest': 0.40535649277593033, 'blaze': 0.40535649277593033, 'johnny': 0.7328695532105528, 'special': 0.3664347766052764}, {'face': 0.6355298049607696, 'dollar': 0.7720763349608161}, {'help': 0.4191127311770943, 'maybe': 0.39396505241226837, 'try': 0.39396505241226837, 'people': 0.3585374570940492, 'times': 0.3890594885401375, 'tough': 0.4837470410847941}, {'save': 0.6837677566298002, 'black': 0.530770084211927, 'say': 0.5007442188374366}, {'pipe': 0.7757757155632167, 'life': 0.51775156438996, 'like': 0.36070120143150114}, {'different': 0.43105355422735847, 'world': 0.5637739760751832, 'live': 0.7045223469048661}, {'rhymin': 0.3484371650377749, 'park': 0.32534919264276674, 'start': 0.28002393424152777, 'bish': 0.5878114229726713, 'ya': 0.5068796150932111, 'car': 0.30311190663653587}, {'seamless': 0.8225697235437209, 'blends': 0.41128486177186047, 'friends': 0.30444311765282484, 'niggas': 0.24806894303869714}, {'10': 0.6701858577955339, 'fried': 0.7421933144477013}, {'leg': 0.6149483376393904, 'wake': 0.5644780874676839, 'like': 0.2721966476972099, 'night': 0.478656469491197}, {'non': 1.0}, {'beat': 0.6897351733890764, 'super': 0.7240617312011046}, {'greece': 0.46377524907510503, 'building': 0.4054339166042292, 'piece': 0.43664807431274677, 'stones': 0.46377524907510503, 'dome': 0.41877986108919374, 'like': 0.19852018311166467}, {'guys': 0.6407648729740572, 'coming': 0.5448128788170965, 'fucking': 0.5409244906986261}, {'boojy': 0.7861283702402259, 'friends': 0.6180632536427372}, {'mercy': 0.5636413172133807, 'soul': 0.41291685038686393, 'lord': 0.47978594405104363, 'havin': 0.530672769310435}, {'shape': 0.7328144201960498, 'use': 0.6804285602124058}, {'gettin': 0.502683800168163, 'tree': 0.5625840138384826, 'money': 0.4220393600961537, 'dreams': 0.502683800168163}, {'weeks': 0.5616588789999598, 'scene': 0.5071668395331392, 'late': 0.4985790709842728, 'night': 0.42277654913078516}, {'remind': 0.5773502691896258, 'dizzy': 0.5773502691896258, 'medicine': 0.5773502691896258}, {'dumile': 0.6672219549072071, 'government': 0.6142653525659693, 'right': 0.4212991093354108}, {}, {'ayo': 0.5321845416683929, 'mos': 0.5069545610617062, 'baby': 0.424589017336127, 'let': 0.3854324059027534, 'man': 0.3618600744286284}, {'jaws': 0.602959515791359, 'pour': 0.5444604962621046, 'gas': 0.5830974106670967}, {'rappin': 0.4827972800868167, 'writer': 0.4827972800868167, 'dig': 0.4444782418942792, 'rapper': 0.422063041487943, 'ghost': 0.39763734001481943}, {'don': 0.4424717841997278, 'know': 0.8967824263371297}, {'pass': 0.6796268986869873, 'heat': 0.7335579585698103}, {'remember': 0.31809288870550073, 've': 0.28145782598937963, 'yeah': 0.48850065348300603, 'dreams': 0.6786324376297901, 'oh': 0.2772563281706946, 'got': 0.20869226381672937}, {'auto': 0.5364905176165867, 'shoulda': 0.5051100762093388, 'vocals': 0.5364905176165867, 'maybe': 0.4113631727886804}, {'skills': 0.8395417951565657, 'let': 0.5432951078238153}, {'trouble': 0.5057804324716901, 'lot': 0.40102590054675263, 'cheap': 0.4924170090722883, 'sure': 0.4064739378411299, 'somethin': 0.4191286297208092}, {'style': 0.5504388435255765, 'set': 0.5648963911325441, 'pro': 0.6147431551661668}, {'soldier': 0.5212612084663567, 'pulse': 0.5475486019775143, 'pull': 0.4465298955517191, 'ma': 0.41273281389494587, 'like': 0.24236327637163532}, {'human': 0.6162195908927405, 'compton': 0.6162195908927405, 'kendrick': 0.49045573867574144}, {'shawty': 0.8244484262377352, 'em': 0.5659370923292817}, {'sky': 0.49208040697303385, 'tires': 0.6032530961456923, 'blue': 0.48762237793403906, 'new': 0.39517969533092523}, {'tapes': 0.5470410477152594, 'date': 0.5290209543052622, 'played': 0.47822516393616676, 'fat': 0.4383875164723184}, {'got': 1.0}, {'did': 0.5949595775571915, 'cormega': 0.8037556227317906}, {'blanks': 1.0}, {'12': 0.5169527941512767, 'style': 0.41089198909050256, 'liked': 0.5169527941512767, 'tryin': 0.42168426976522483, 'tell': 0.34477495148603055}, {'somethin': 0.7989836495074211, 'say': 0.6013527482433271}, {'wu': 0.6005357476654248, 'tang': 0.6474051081362991, 'say': 0.46927970522382045}, {'goon': 0.5601903601683188, 'devil': 0.48296203221487294, 'runnin': 0.5157287264935783, 'boy': 0.43238676723817676}, {}, {'trip': 0.74499212347214, 'hood': 0.6670732613172795}, {'sleeping': 0.5133350882598833, 'bag': 0.4640454309785502, 'jive': 0.5308208724538578, 'old': 0.3832583866538241, 'shit': 0.30412355314243955}, {'maybe': 0.8207308424411071, 'just': 0.5713150481703686}, {'champ': 0.6796961621083872, 'incomprehensible': 0.6346584686520932, 'know': 0.3677251084482934}, {}, {'job': 0.7131185619526393, 'bullets': 0.7010434484385399}, {'slippin': 0.5585277146535769, 'product': 0.4957995671443294, 'trip': 0.48826684765003, 'power': 0.45146989564006457}, {'ecstatic': 1.0}, {'raps': 1.0}, {'cracks': 0.47866044807880914, 'loose': 0.4469436844246574, 'block': 0.37952286194397367, 'stood': 0.4949651065537815, 'stacks': 0.4267287885225996}, {'crazy': 0.5786558610065151, 'yeah': 0.21863219548384044, 'think': 0.7857209158605393}, {'round': 0.6364108871642395, 'em': 0.4171011664155005, 'pulled': 0.6488511383003459}, {'technique': 0.4827687836574424, 'goddamn': 0.4986604126551602, 'shadowboxing': 0.5340471850898687, 'special': 0.4827687836574424}, {'city': 1.0}, {'day': 0.6754585735410381, 'em': 0.5974889899050784, 'like': 0.43216041277761086}, {'sweep': 0.5158560657340062, 'watching': 0.4988632376282093, 'style': 0.4100202713515469, 'rap': 0.35858211092816844, 'slang': 0.433970317408502}, {'character': 0.6506170465831714, 'boy': 0.5192891417948231, 'bad': 0.5541085145613516}, {'love': 0.762752932705553, 'know': 0.6466900058367056}, {'remember': 0.7550043161288181, 'face': 0.6557198202180986}, {'big': 0.7912712272916527, 'man': 0.6114653259673537}, {'motorola': 0.6270114366872569, 'wish': 0.5481355528108218, 'make': 0.41074333493223175, 'em': 0.37107140393313137}, {'steelo': 0.8694133601735633, 'know': 0.4940854269776773}, {'kool': 0.5288980688670084, 'doom': 0.3967473039391839, 'mf': 0.4420822626693058, 'love': 0.3374956543861898, 'bob': 0.5035060733192427}, {'days': 0.5453205840002843, 'couple': 0.5690626434362392, 'spent': 0.6154617522729974}, {'drawers': 0.6852899372609405, 'bitches': 0.540449575713479, 'real': 0.48815157277224547}, {'admits': 0.6142176110225472, 'history': 0.5782907509549706, 'wish': 0.5369511464460162}, {'stitch': 0.8483668998523545, 'time': 0.5294087298438752}, {'verse': 1.0}, {'gun': 0.391841062407503, 'talk': 0.4105371944494559, 'control': 0.4487960683988819, 'gonna': 0.34004047326590087, 'kids': 0.4287400257921462, 'alright': 0.4207806430903006}, {'preach': 1.0}, {'thinkin': 0.7079713089618721, 'time': 0.5124431376462142, 'em': 0.48598215642769915}, {'game': 0.47426385511467367, 'run': 0.47426385511467367, 'world': 0.39298063704809244, 'talkin': 0.52251973931075, 'got': 0.35026694448582624}, {'locked': 0.5303321829299393, 'block': 0.4985110942755465, 'shit': 0.37248906987707353, 'deep': 0.46725505610907436, 'got': 0.33639124542053844}, {'nah': 0.7231034200470965, 'feel': 0.5367318544421229, 'just': 0.43478771871260574}, {'method': 0.7509467275947614, 'man': 0.48390221583029397, 'verse': 0.44935248728503874}, {'pac': 0.47596845334795573, 'best': 0.769470958461733, 'nas': 0.3260077101961524, 'ain': 0.27402089043392047}, {'unite': 0.5807328041128045, 'black': 0.3943415520241317, 'right': 0.38946872582314856, 'come': 0.41267029998829396, 'people': 0.4304201269547495}, {}, {'perpetrator': 0.7526234253136551, 'right': 0.47522353906011133, 'yeah': 0.4557637190390693}, {'profanity': 0.7071067811865475, 'starvation': 0.7071067811865475}, {'sample': 0.773352509801774, 'intro': 0.6339762579019005}, {'verse': 1.0}, {'click': 0.6264783164257046, 'quiet': 0.6058414778767898, 'things': 0.4903886445794622}, {'beard': 0.5191907065332201, 'grow': 0.4784347425451039, 'black': 0.3675943716722195, 'look': 0.4279206184814552, 'let': 0.3503209770807273, 'like': 0.24611936653968441}, {'reports': 0.5350035197177796, 'investigative': 0.5350035197177796, 'children': 0.4830975782266431, 'save': 0.4406349937201166}, {'york': 0.5378967736913648, 'state': 0.5335037335828932, 'new': 0.4396992637744188, 'mind': 0.4823954648851582}, {'level': 0.6285192745548733, 'number': 0.5811357708385672, 'times': 0.5169571910370143}, {'swimming': 0.7232741263586885, 'great': 0.6905610314375378}, {'body': 0.6400611164662421, 'music': 0.5824640103051084, 'want': 0.5010563280583114}, {'red': 1.0}, {}, {'thinking': 1.0}, {'lamar': 0.5767666319918953, 'kendrick': 0.565825977562292, 'bridge': 0.5892208544649468}, {'tears': 0.48954667120061335, 'rule': 0.5062221481770847, 'fear': 0.41293115988182566, 'everybody': 0.35754498664372597, 'wanna': 0.34550918122401525, 'world': 0.29386398014366255}, {'slide': 0.49346322985316393, 'pair': 0.5068550460395868, 'fresh': 0.4581875925925751, 'real': 0.37334569965452813, 'niggas': 0.31612619693810545, 'like': 0.2243509510571173}, {'beard': 0.5647068344647583, 'weird': 0.5467103958503391, 'grow': 0.520377898835368, 'just': 0.33379750835146293}, {'baby': 0.6710373325701494, 'yeah': 0.605439450509353, 'like': 0.4279625802147561}, {'positions': 0.48504177500042905, 'success': 0.45667067709530934, 'level': 0.44654459395194546, 'high': 0.34859542639350616, 'continued': 0.48504177500042905}, {'medical': 0.6005302711510606, 'history': 0.5654040119380274, 'course': 0.5654040119380274}, {'moss': 0.46065005401183434, 'snakes': 0.44547576857697924, 'dirt': 0.42408881445824814, 'today': 0.36614062078593096, 'baby': 0.3091783758009802, 'pulled': 0.42408881445824814}, {'golden': 1.0}, {'da': 0.6234834247521884, 'royce': 0.6904729846764524, 'verse': 0.3667635157581431}, {'grow': 0.6133192705359174, 'mind': 0.5297306847987746, 'eyes': 0.5858539698354118}, {'yeah': 1.0}, {}, {'illusion': 0.7188474377218361, 'studio': 0.6951678655409433}, {'sit': 0.2355084060099554, 'hol': 0.9718723119312793}, {'watch': 0.5053272172917812, 'walk': 0.48519189396585527, 'slow': 0.533170221434765, 'thing': 0.4743023766218916}, {'strike': 0.18108180338831809, 'army': 0.17367169794140733, 'ther': 0.9616584087948514, 'ain': 0.11072771382963507}, {'dawn': 0.6492868167978733, 'til': 0.5441064326620448, 'break': 0.5313895176499707}, {'royalty': 0.5230801933852153, 'loyalty': 0.5230801933852153, 'dna': 0.4516056547531105, 'inside': 0.40299268621001655, 'got': 0.2939786557429317}, {'capture': 0.5145631246168922, 'pass': 0.41962999715481475, 'better': 0.35828837228296273, 'don': 0.27471072502651095, 'moment': 0.41650484895121087, 'hope': 0.4264066450170699}, {'testin': 0.5312674338604249, 'brother': 0.4561138727181628, 'type': 0.46028383903160586, 'start': 0.4385436772276429, 'ain': 0.32485886092791516}, {'right': 0.533898564730917, 'starts': 0.8455485335439159}, {'benz': 0.5074916629011202, 'brand': 0.5004881067656772, 'dont': 0.4578226006745757, 'new': 0.3802869874092113, 'need': 0.3711389774609483}, {'cognac': 0.5549172805904774, 'zone': 0.5738194831397019, 'turn': 0.4247552211486132, 'stay': 0.42706090265715907}, {'motherfucker': 0.6378200272401503, 'way': 0.47796251640546666, 'right': 0.46713349131799625, 'got': 0.3827842042872033}, {'lamar': 0.6339600886430782, 'kendrick': 0.6219345346888716, 'verse': 0.45966513960599314}, {'allegiance': 0.40301870155005415, 'pledge': 0.4121577683655525, 'flag': 0.4121577683655525, 'united': 0.4377634596988156, 'niggas': 0.2640396689550085, 'america': 0.36827394340129277, 'live': 0.31756634477708445}, {'foot': 1.0}, {'holy': 0.4522556035547005, 'sins': 0.46251119259479523, 'washing': 0.4750630191558862, 'water': 0.39045865345674263, 'feel': 0.3236805740441397, 'need': 0.3140641965197747}, {'ass': 0.7698489049826501, 'time': 0.6382261852172901}]\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "from sklearn.model_selection import train_test_split\n", + "\n", + "X_train, X_test = train_test_split(df, test_size=0.25, random_state=0)\n", + "\n", + "vectorizer = TfidfVectorizer( max_df=.5,# drop words that occur in more than half the paragraphs\n", + " min_df=2, # only use words that appear at least twice\n", + " stop_words='english', \n", + " lowercase=True, #convert everything to lower case (since Alice in Wonderland has the HABIT of CAPITALIZING WORDS for EMPHASIS)\n", + " use_idf=True,#we definitely want to use inverse document frequencies in our weighting\n", + " norm=u'l2', #Applies a correction factor so that longer paragraphs and shorter paragraphs get treated equally\n", + " smooth_idf=True #Adds 1 to all document frequencies, as if an extra document existed that used every word once. Prevents divide-by-zero errors\n", + " )\n", + "\n", + "\n", + "#Applying the vectorizer\n", + "songs_paras_tfidf=vectorizer.fit_transform(X_train.loc[:]['lyrics'])\n", + "print(\"Number of features: %d\" % songs_paras_tfidf.get_shape()[1])\n", + "\n", + "#splitting into training and test sets\n", + "X_train_tfidf, X_test_tfidf= train_test_split(songs_paras_tfidf, test_size=0.4, random_state=0)\n", + "\n", + "\n", + "#Reshapes the vectorizer output into something people can read\n", + "X_train_tfidf_csr = X_train_tfidf.tocsr()\n", + "\n", + "#number of paragraphs\n", + "n = X_train_tfidf_csr.shape[0]\n", + "#A list of dictionaries, one per paragraph\n", + "tfidf_bypara = [{} for _ in range(0,n)]\n", + "#List of features\n", + "terms = vectorizer.get_feature_names()\n", + "#for each paragraph, lists the feature words and their tf-idf scores\n", + "for i, j in zip(*X_train_tfidf_csr.nonzero()):\n", + " tfidf_bypara[i][terms[j]] = X_train_tfidf_csr[i, j]\n", + "\n", + "#Keep in mind that the log base 2 of 1 is 0, so a tf-idf score of 0 indicates that the word was present once in that sentence.\n", + "print('Original sentence:', X_train)\n", + "print('Tf_idf vector:', tfidf_bypara)" + ] + }, + { + "cell_type": "code", + "execution_count": 712, + "metadata": { + "collapsed": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Percent variance captured by all components: 32.885593915913525\n", + "Component 0:\n", + "lyrics\n", + "For the fronters, wannabe ill niggas and spot runners 0.99311\n", + "Or i'll break it down for the layman 0.99311\n", + "Okay... I'm in 0.99311\n", + "Why you resent every making of this? 0.99311\n", + "Punk, you don't disrespect OGs, R.I.P. Prodigy 0.99311\n", + "The game is not only dangerous, but it's most strange 0.99311\n", + "Life's a bitch and then you die, that's why we puff lye 0.99311\n", + "Blown out the frame like Pan Am Flight 103 0.99311\n", + "I spark the mic and Shaolin spark the methtical 0.99311\n", + " 0.99311\n", + "Name: 0, dtype: float64\n", + "Component 1:\n", + "lyrics\n", + "That's all that matters to me 0.907091\n", + "I mention you, lose-lose for me, win-win for you 0.907091\n", + "Would you say my intelligence now is great relief? 0.907091\n", + "[Outro: Lauryn Hill] 0.907091\n", + "He don't know how to behave now 0.907091\n", + "[Verse 2] 0.907091\n", + "(Word up, word up, word up) 0.907091\n", + " 0.907091\n", + "Black Thought, I told you I'ma win eventually 0.907091\n", + "Of another beat I'ma kill again 0.907091\n", + "Name: 1, dtype: float64\n", + "Component 2:\n", + "lyrics\n", + "And I'm hopin' to lead you to victory, Kendrick 0.737376\n", + "When beef jump niggas come get me cause they know I ride 0.733461\n", + "Callin' my crib and I ain't even give you my numbers 0.733461\n", + "Backstabbers, low blowers 0.733461\n", + " 0.731529\n", + "Straight out the kitchen, I told 'em the oven is mine 0.730119\n", + "You freak niggas played out, get fucked and ate out 0.728876\n", + "Say \"Fuck it!\" before we kick the bucket 0.728655\n", + "Get on my soapbox and preach, my sermon and speech 0.727936\n", + "[Hook] 0.727773\n", + "Name: 2, dtype: float64\n", + "Component 3:\n", + "lyrics\n", + "They ain't gonna know what hit 'em 0.957815\n", + "Thugs they be booing and screwing, we canoeing 0.957815\n", + "After the first night, but tonight I am 0.957815\n", + "Imagine if your first blunt had you foamin' at the mouth 0.957815\n", + "Nigga, that ain't good game, homie, sorry 0.957815\n", + " 0.957815\n", + " 0.957815\n", + "[Bridge] 0.957815\n", + "What it is, Ecstatic, there it is 0.957815\n", + "So when I rhyme it's sincerely yours 0.957815\n", + "Name: 3, dtype: float64\n", + "Component 4:\n", + "lyrics\n", + "Pop the trunk on Cee Cipher Punk, leave him left scraped 0.807881\n", + "(Smoke somethin', nigga!) 0.762638\n", + "And I was just tryin' to do the right thing, but word 0.762638\n", + "Come on! 0.762638\n", + "But how you gonna name yourself after a damn gun 0.762638\n", + "The saga continues 0.762638\n", + "Punk niggas shatter like a glass jaw, break it 0.762638\n", + "If your pussy dry, spit on my dick and put it in 0.762638\n", + "And it's volumes or scriptures when I breathe on a beat 0.759073\n", + "So much heat you woulda thought it was the Middle East 0.757153\n", + "Name: 4, dtype: float64\n" + ] + } + ], + "source": [ + "from sklearn.decomposition import TruncatedSVD\n", + "from sklearn.pipeline import make_pipeline\n", + "from sklearn.preprocessing import Normalizer\n", + "\n", + "#Our SVD data reducer. We are going to reduce the feature space from 1379 to 130.\n", + "svd= TruncatedSVD(130)\n", + "lsa = make_pipeline(svd, Normalizer(copy=False))\n", + "# Run SVD on the training data, then project the training data.\n", + "X_train_lsa = lsa.fit_transform(X_train_tfidf)\n", + "\n", + "variance_explained=svd.explained_variance_ratio_\n", + "total_variance = variance_explained.sum()\n", + "print(\"Percent variance captured by all components:\",total_variance*100)\n", + "\n", + "#Looking at what sorts of paragraphs our solution considers similar, for the first five identified topics\n", + "paras_by_component=pd.DataFrame(X_train_lsa,index=X_train[0:4108]['lyrics'])\n", + "\n", + "for i in range(5):\n", + " print('Component {}:'.format(i))\n", + " print(paras_by_component.loc[:,i].sort_values(ascending=False)[0:10])\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX0AAAD8CAYAAACb4nSYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjAsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+17YcXAAAgAElEQVR4nO3de5hcVZnv8e8v9wQCJAQUuRhQYGBQATOMjooXEIHhBB0HhZEzOKioA4qOF2CYBx18fA54GXWODBghgqNyEUWjwwgRRI7PCBIwQEIChMilSUhQVAIxl+5+zx97R4vqru69V1ft3dX9++TZT6p27bfW6urqVavWXvtdigjMzGx8mFB3BczMrDpu9M3MxhE3+mZm44gbfTOzccSNvpnZOOJG38xsHHGjb2bWQZIWSlovaVmLxyXp3yWtknSPpEMbHjtF0oP5dko76uNG38yssy4Hjh7i8WOAffPtNOBiAEmzgU8AfwkcBnxC0qyRVsaNvplZB0XErcBTQxxyPPD1yNwG7CRpN+BNwOKIeCoifgssZugPj0ImjfQJqrD116tLXzb8j/POKl3OJFQ6BmByQtwdW9eXjjlk8i6lYwBmJ/ya17E1qazpCf0IJbx+m+grHQPQnxDTR9pV6ylxKe+lKk1O7CfuwuTSMX++Oako3r72myN+EYu2OVN2edF7yXrn2yyIiAUli9sdeKzhfk++r9X+EemKRt/MbDTKG/iyjXyzwT6kYoj9I+LhHTOzZv19xbb26AH2bLi/B7BmiP0jUkujL+loSffnZ6vPrqMOZmYt9fUW29pjEfD3+SyeVwC/j4i1wA3AUZJm5Sdwj8r3jUjlwzuSJgIXAW8k+yS7Q9KiiLiv6rqYmQ0mIuXsz+AkXQm8DpgjqYdsRs7krJy4BLgeOBZYBWwE/iF/7ClJnwLuyJ/q/IgY6oRwIXWM6R8GrIqI1QCSriI7e+1G38xGh/72NfoRcdIwjwdweovHFgIL21YZ6hneKXRGWtJpkpZIWnLp16+srHJmZkR/sa0L1dHTL3RGuvGseMqUTTOzZO07STvq1NHod+SMtJlZ23RpL76IOhr9O4B9Je0NPA6cCPxdDfUwMxtUtG9mzqhTeaMfEb2SziCbejQRWBgRy6uuh5lZS208kTvaqBsWRn/P3BNKV/I/llxYupxTXv6R0jEAk1X+fPjEhMvtpyaed1/Tv7F0zKlbdkgq6+Zp5f9YUn6qdZF2jf5Mle/nbElK3gC7MqV0zEPxbOmY52t66RiAzQk/1x8ibax7h4TX/bexJamsKx/53ojTMGx+4GeF2pyp+716dOfNGITTMJiZNfOJXDOzcWQMn8itKw3DkIsKmJnVqto0DJWqK+Ha5bQhL7SZWUf09xfbulAtwzsRcaukuXWUbWY2nEg8Yd0NRm1q5cY0DCs3rK67OmY2nozhNAyjttGPiAURMS8i5v3ZzH3qro6ZjSce3jEzG0e6tBdfhBt9M7NmfWlrRHeDuqZsXgn8HNhfUo+kd9VRDzOzQXl4p72GW1Sg2aSElAUpKRWuuPPzpWMA/uHlHy0dsz4hNcKcCWmX229KmInwz/FQUlmvZq+kuLJ21OSkuN6EdaVT/7RXR/nfcUpZfYlrZaf0+HZR+dQSAE/EptIxO2tqUllt4eEdM7NxpEt78UVUPrwjaU9JP5G0QtJySWdWXQczsyF5eKeteoGPRMRdkmYCd0pa7IXRzWy0iDF8IreOfPprgbX57Q2SVpCtketG38xGB4/pd0aeiuEQ4PY662Fm9hxdOnRTRG1X5EraHvgO8KGIeHqQx/+YhuE+p2Ewsyo5DUN7SZpM1uB/MyK+O9gxjWkYDnQaBjOrkk/kto8kAZcBKyLi36ou38xsWF3aiy+ijjH9VwH/G7hX0tJ83z9HxPU11MXMbKDe7lwgpYg6Zu/8DMpdYjs54YrclMXKU66sBfjanZ8rHXPOvHOTytpA+TfjXhO3Lx2z+/TtSscATEj4XaVdJRtJV2qnuPj0HZPizrmo/BW5myh/9fSGSGugpmti6ZhnEuoH8Kbe8u/Bdz/5k6SyvpwU1cQ9fRsNUhr8saqqBt/GqS4dry/Cjb6ZWTP39NtH0jTgVmBqXv61EfGJquthZtaSe/pttRl4Q0Q8k0/d/Jmk/46I22qoi5nZQO7pt09EBPBMfndyvqXlhjUz64QxPHunrouzJubTNdcDiyNiQBqGxityl21Iy+1uZpYkothWgKSjJd0vaZWkswd5/AuSlubbA5J+1/BYX8Nji9rxo9W1iEofcLCknYDrJB0UEcuajlkALAD44Ny3+5uAmVWnTWP6kiYCFwFvBHqAOyQtaswqHBEfbjj+A2T5yLb5Q0Qc3JbK5GrLvQMQEb8DbgGOrrMeZmbP0b40DIcBqyJidURsAa4Cjh/i+JOAK9vwE7RUxyIqu+Q9fCRNB44EVlZdDzOzlgomXGschs6305qeaXfgsYb7Pfm+ASS9ENgbuLlh97T8eW+T9OZ2/Gh1DO/sBlyRf+2ZAFwTET+soR5mZoPrK3blceMwdAuDXUXYarj6RLIp7I2F7xURayTtA9ws6d6IxAWsc3XM3rmH545ZDeuOretLl3PA5J1Lx6QsVg5pKRX+z5JPl455w8veUzoGYPsJ5Rez3jlxEfYtCUt7P963oXTMxIQ0GwB7T9yhdMxHLnpm+IMGkZI+5MjN5X9X10xJq99BMaN0zKPaklTW45PKn5abOKHG0ef2zdPvAfZsuL8HsKbFsScCpzfuiIg1+f+rJd1C1naOqNGvdUzfzGxUat+Y/h3AvpL2ljSFrGEfMAtH0v7ALODnDftmSZqa355DlqxyxCsMOg2DmVmzNl2cFRG9ks4AbgAmAgsjYrmk84ElEbHtA+Ak4Kr8OqZtDgC+IqmfrIN+QTvWEq+t0c/H9JcAj0fEcXXVw8ysWfS3b5Z4njb++qZ95zXd/+Qgcf8DvKRtFcnV2dM/E1gBlB9kNTPrpDGce6euK3L3AP4auLSO8s3MhtTXV2zrQnWdyP0i8HFoPdWjcf7rumdbnew2M+uAMbxGbh0XZx0HrI+IO4c6rnFh9Odt94KKamdmxphu9OtaI3e+pGOBacAOkr4RESfXUBczs4EKJlPrRpX39CPinIjYIyLmks1ZvdkNvpmNKu7pm5mNI22csjna1NroR8QtZFk2h3TI5F3KP3f56jAnMfVAyoLlKSkVbr77q6VjAN477+OlYzZF2syE2SqfRmD2pNmlY1IXiY+Ed8bW5DV+yn+Rvnnq1tIxc5haOgbgITaXjulNSLMB0JOwjv3XZx2eVFZbdOnMnCLc0zczaxJdOnRThBt9M7NmHt5pL0kPAxuAPqA3IubVUQ8zs0F5YfSOeH1E/LrG8s3MBueevpnZONI7dk/k1pWGIYAbJd05yPJiwHPTMNy3YXXF1TOzca3gcondqK5G/1URcShwDHC6pAFzsxrTMBw4c5/qa2hm41d/FNu6UC2NfsMSYOuB68hWjDczGxWiv7/Q1o3qSLi2naSZ224DRwHLqq6HmVlLY7inX8eJ3OcB10naVv63IuJHNdTDzGxwXdqgF1F5ox8Rq4GXlYmZnVDNe/ufLh2Tmnpgr4nbl47ZfkL5dAUp6RQAvrLkM6Vjzpx3dlJZzyakR5iS8IVzUm2no4qbllDHpyifhmEyCTkOgL6E9BKpr/uyrb8pHbPL1OcnldUWTsNgZjZ+tHON3NHGjb6ZWbMx3OjXtUbuTpKulbRS0gpJr6yjHmZmg3I+/bb7EvCjiPhbSVOAGTXVw8xsoDHc06+80Ze0A3A48E6AiNgCbKm6HmZmLY3hRr+O4Z19gCeBr0n6paRL8/n6z9GYhuGuDauqr6WZjVvR119o60Z1NPqTgEOBiyPiEOBZYMD8wMY0DIfOfHHVdTSz8WwMX5xVR6PfA/RExO35/WvJPgTMzEaF6I9CWzeqvNGPiCeAxyTtn+86Ariv6nqYmbU0hnv6dc3e+QDwzXzmzmrgH2qqh5nZQN05XF9ILY1+RCwFCi+RuC7h0vRTt+xQOuaf46HSMQC7Tx9wHnpYO0+YXjomNU1ESkqFLy25IKmsd8/7WOmYjQk/1zRNLB0DMH9T+bf896eVf/8BzKR8HTdS/rXYkthCKSF9w9TEwYHpEyaXjpkRaekl2iF6x26r7ytyzcyajd02vwuyVpmZVaydJ3IlHS3pfkmrJA342i3pnZKelLQ0397d8Ngpkh7Mt1Pa8bPVcXHW/sDVDbv2Ac6LiC9WXRczs0G1qacvaSJwEfBGspmLd0haFBHNk1eujogzmmJnA58gGwoP4M489rcjqVMdqZXvBw6GP74gj5OtnmVmNiq0cTrmYcCqPKU8kq4CjqfYjMU3AYsj4qk8djFwNHDlSCpU9/DOEcBDEfFIzfUwM/uT/mJbY+aAfDut6Zl2Bx5ruN+T72v2Vkn35Iko9ywZW0rdjf6JtPjUanwxV25YXXG1zGw8i96CW0PmgHxb0PRUg01Bav4a8QNgbkS8FPgxcEWJ2NJqa/TzOfrzgW8P9njji/lnM/eptnJmNq5Ff7GtgB5gz4b7ewBrnlNWxG8iYnN+96vAy4vGpqizp38McFdErKuxDmZmAxUc3ingDmBfSXvnHd0TgUWNB0jareHufGBFfvsG4ChJsyTNAo7K941InfP0T2KEJyTMzDqhYC9++OeJ6JV0BlljPRFYGBHLJZ0PLImIRcAHJc0HeoGn+FPa+ackfYrsgwPg/G0ndUeilkZf0gyyKUzvraN8M7OhtKvRB4iI64Hrm/ad13D7HOCcFrELgYXtq019aRg2AjsXPX56wijUzdPK/9ZezV6lYwAmJFzOnnLp/GxNKR0D8Cy9pWNS0ikAXLrks6Vjzph3VumYrYnnsxZNK/9apP79r01YG6gv4eealpDuAWBzwk+2NfHV2H1i+VQl6xPet+0SffWlgOg0p2EwM2vSzp7+aONG38ysSfSP3Z5+LbN3JH1Y0nJJyyRdKWlaHfUwMxtMG6dsjjqVN/qSdgc+CMyLiIPIzmifWHU9zMxaiVChrRvVNbwzCZguaSswgzZccGBm1i7d2osvoo7lEh8HPgc8CqwFfh8RNzYf15iGYdmGtMVNzMxS9Pep0NaN6hjemUWWZW5v4AXAdpJObj6uMQ3DQTNfVHU1zWwci34V2rpRHSdyjwR+FRFPRsRW4LvAX9VQDzOzQY3lRr+OMf1HgVfkV+X+gSy98pIa6mFmNqhoWzr90aeORVRul3QtcBdZrolfAs3pSM3MatOtvfgi6krD8AmyZcAKUUKagyrHrXoTLp1/vG9D6ZjZk2aXjgGYkvBqbIy+pLJSUip8ecmFpWMeOfz9pWMALtg4s3RM6ntpcsL7NiXm6UhLVzBd5dM3pKQPAdguoalJeS3apVunYxZR6P0s6TOSdpA0WdJNkn492MlXM7OxoK9PhbZuVLQTc1REPA0cR5bYfz8gLSMXIOnM/Grc5ZI+lPo8ZmadMJYvzira6E/O/z8WuHIkOZ0lHQS8h2zB4JcBx0naN/X5zMzabSzP3ina6P9A0kpgHnCTpF2ATYllHgDcFhEbI6IX+CnwlsTnMjNru4hiWzcq1OhHxNnAK8ny5WwFNpJdYJViGXC4pJ3zaZvH8tx1IM3MajXue/qSTgci4o9TOqYAf5NSYESsAC4EFgM/Au6GgaslOA2DmdWlr39Coa0bFa31eyLid9vuRMRvycblk0TEZRFxaEQcTrYm5IODHOM0DGZWi7E8vFN08uwESYrIfkxJE8l6+0kk7RoR6yXtRfaN4ZWpz2Vm1m79XTozp4iijf4NwDWSLgECeB/Z0Eyq70jaGdgKnJ5/czAzGxW6dTpmEUUb/bOA9wLvBwTcCFyaWmhEvCY11sys07p16KaIQo1+RPQDF+db5TZRPiXAhoRL03fU5OEPGkTK6ZyJKh+1YeD57kImJdRwWsIl+gBbE1JSpKRUeOGtiW/FeR8vHZKSQgDg2YTfV0qSg5R0CqlSUnoAbJcQt7z/6aSy2mHcDu9IuiYi3ibpXhj41xwRL+1YzczMatKtM3OKGK4Lc2b+/3Fln1jSwjxufb4WLpJmA1cDc4GHgbd5PN/MRpsxPLoz9HeuiFibz9S5LCIead6Gee7LgaOb9p0N3BQR+wI35ffNzEaV/lChrRsN+x0mvyBro6QdyzxxRNxKNge/0fHAFfntK4A3l3lOM7MqjOWEa0XPUG0C7pW0GHh2286I+GDJ8p4XEWvz2LWSdi0Zb2bWcWmrBnSHoo3+f+VbZSSdBpwG8JrZh3LAzH2qLN7MxrGocQGXTiva6P8GuD6fujkS6yTtlvfydwPWtzowIhaQL6P43rknjOXzKmY2yvR26dBNEUXnJZ0IPJivoHXACMpbBJyS3z4F+P4InsvMrCMCFdq6UdHUyicDhwAPAV+T9PM8C2bLBUclXQn8HNhfUo+kdwEXAG+U9CDwxvy+mdmo0l9wK0LS0ZLul7RK0oAZi5L+SdJ9ku7Jl6N9YcNjfZKW5tuikf5cAIoS1xtLmgOcDHwIWAG8GPj3iPi/7ahMK+9JGN5JubRitJ+8icTZwykLy8/flHYV6qJp5a9CTf25Uly85DOlY/4xYbF3qO7nSvn9Qlr9UsvqSygrdWH0rzz87RF3wW983omFKnzUuquGLCuf8v4AWSe3B7gDOCki7ms45vXA7RGxUdL7gddFxNvzx56JiO0Tf4xBFc2n/78kXQfcTLZ04mERcQzZcocfbWeFzMzq1sae/mHAqohYHRFbgKtoWoAqIn4SERvzu7cBe4z8J2itaHfuBOAL+dz7P8o/mU5tf7XMzOrTV/BbRuMsw9yCfBLKNrsDjzXc7wH+coinfBfw3w33p0laQrbQ1AUR8b1CFRtC0YRrfz/EYzcNtr9FGoYTgE+SrZN7WEQsKVthM7NOK7oSYuMswxYGe6ZBh44knUy2DvlrG3bvFRFrJO0D3Czp3ogY0VKCQw7vSNog6elBtg2ShkuBdzkD0zAsI1s05dYBR5uZjRL9qNBWQA/PXQN8D2BN80GSjgTOBeZHxOZt+yNiTf7/auAWsgk1IzJkTz8iWs7OGU5E3CppbtO+FQBSd051MrPxoY2n4O8A9pW0N/A42fT3v2s8QNIhwFeAoyNifcP+WcDGiNicT6J5FVB+JkKTUZs/tHFh9JUbVtddHTMbR9p1IjcieoEzyFYfXAFcExHLJZ0vaX5+2GeB7YFvN03NPABYIulu4CdkY/r3MUJp8/Iq0DhWljJl08wsVX8bRyMi4nrg+qZ95zXcPrJF3P8AL2lbRXKjttE3M6tL+bX6uocbfTOzJkVn73Sjjo3pD5aGQdJbJPUArwT+S9INnSrfzCxVG2fvjDod6+lHxEktHrqu7HOlXMLdmxCTmobh4tNLrS8DwEcueqZ0TMqi46m+P21rUlzKa5jS80hdrDwlpcJ/LLkwqaz3JizCnvJabIq0wYipKl9aamqJt/5hcumYBVM3JJXVDmP5JKKHd8zMmozl4R03+mZmTUZ78sWR6OSY/kJJ6yUta9j3WUkr8xSi10naqVPlm5ml6lOxrRt18uKsyxmYhmExcFBEvJQs3eg5HSzfzCxJO/PpjzYda/TzjJxPNe27Mb9CDSpIIWpmlsKNfmecynNTiD5HYxqG+52GwcwqFCq2daNaGn1J55Llh/5mq2MiYkFEzIuIefvP3Ke6ypnZuDeWe/qVz96RdApZnv0josxajWZmFXEahjaRdDRwFvDahuXBzMxGlbE8T7/SNAzAl4GZwOI8heglnSrfzCyVh3cStEjDcFnKc6WkYXg+U0rHrE788nHOReXjJifl7Uj7jJ6WEDeTiUllrWVL6ZiU1+JZeoc/qE1S0ikAfGVJ+fUuTn35R0vHzFDa7yolrUdqL/G66eXTekyM+uaZdGuDXoSvyDUzazKWTza60Tcza+Ix/QQt0jB8Kk/BsFTSjZJe0KnyzcxS9RXculHVaRg+GxEvjYiDgR8C5w2IMjOrWT9RaOtGnTyRe6ukuU37nm64ux1je+jMzLrUWD6RW/npcUmflvQY8A6G6Ok3pmF4YMOvqqugmY17UXDrRpU3+hFxbkTsSZaC4YwhjvtjGob9Zu5dXQXNbNwby/P060y49i3grTWWb2Y2qF5Foa0bVdroS9q34e58YGWV5ZuZFTGWh3c6diI3T8PwOmCOpB7gE8CxkvYn+2b0CPC+TpVvZpaqW4duiuiKNAwpl+k/FM+Wjkn9RW9KmLF75ObyaSJunlr+UnaApygftzFxFnJKyoyU32/q7yrlq23q1+GUlAoL7/xc6Zgz5p1VOgbSXvcJSelDYKeEpib1PdgO3TodswhfkWtm1mTsNvlu9M3MBhjLwzuVpmFoeOyjkkLSnE6Vb2aWqo8otHWjqtMwIGlP4I3Aox0s28wsmefpJ4iIW4GnBnnoC8DHGdvDZmbWxaLgv25U9Tz9+cDjEXF3gWP/mIZh5YbVFdTOzCzjnn4bSJoBnEvBzJqNaRj+bOY+na2cmVmDdmbZlHS0pPslrZJ09iCPT5V0df747Y2JKiWdk++/X9Kb2vGzVdnTfxGwN3C3pIeBPYC7JD2/wjqYmQ2rXVfkSpoIXAQcAxwInCTpwKbD3gX8NiJeTDb8fWEeeyBwIvDnZOdH/yN/vhGprNGPiHsjYteImBsRc4Ee4NCIeKKqOpiZFdFLFNoKOAxYFRGrI2ILcBVwfNMxxwNX5LevBY6QpHz/VRGxOSJ+BazKn29EOjll80rg58D+knokvatTZZmZtVPRE7mN5x7z7bSmp9odeKzhfk++b9BjIqIX+D2wc8HY0qpOw9D4+NxOlQ3wfE0vHZM673ZD9JaOuWbKM6Vj5jC1dAykXW6/JfE01TTKf/t8OuH1mz7yb7mFbYq0dAAzEuqYklLhy0suLB0DaWkiUuer3LrpkdIxL566S2JpI1f03R8RC4AFQxwy2B9f88vY6pgisaXVmVrZzGxUauOUzR5gz4b7ewBrWh0jaRKwI9l09yKxpbnRNzNr0sYpm3cA+0raW9IUshOzi5qOWQSckt/+W+DmiIh8/4n57J69gX2BX6T/VJlK0zBI+qSkxyUtzbdjO1W+mVmqvohC23DyMfozgBuAFcA1EbFc0vn5dUuQZR/eWdIq4J+As/PY5cA1wH3Aj4DTIxLHGht0MuHa5cCXga837f9CRJTPH2tmVpF2plaOiOuB65v2nddwexNwQovYTwOfbltl6OyJ3FsbLzIwM+sW3ZpioYg6xvTPkHRPPvwzq9VBTsNgZnVxGob2uZjsytyDgbXA51sd6DQMZlaXdqZhGG0qXUQlItZtuy3pq8APqyzfzKyIsTy8U2mjL2m3iFib330LMGCBFTOzuhWZmdOtOtbo52kYXgfMkdQDfAJ4naSDya4qexh4b6fKNzNL1a1DN0VUnYbhsk6V12xzwmmW1BMcKSkBDooZpWMeYnPpGEhLL6GE1A2Q9rpXmVIh5Wv7VKW9M7YmlJWSMiMlnQLAwjvLz5ze+o20lA/nfHFK6Zh7en+TVFY7dOtJ2iK8MLqZWROP6ZuZjSNjeXin0jQM+f4P5KvALJf0mU6Vb2aWKiIKbd2o0jQMkl5PtjDASyNis6RdO1i+mVmS1DTr3aDqNAzvBy6IiM35Mes7Vb6ZWSoP77TPfsBr8sV/fyrpL1od6DQMZlaXsTy8U3WjPwmYBbwC+BhwTb4W5ABOw2BmdRnLaRiqbvR7gO9G5hdk02HnVFwHM7MhtXHlrFGn6kb/e8AbACTtB0wBfl1xHczMhtSuRVRGo6rTMCwEFubTOLcAp0S3DoyZ2ZjVrUM3RVSdhgHg5LLPNTnhC8mG6C0ds4vKXyoO8AzlVzB7VFtKx/QmXhw+KeH1m5r4JXBrQh23JMRMSaxff0Kag9Sv8Sk1nJBUvzQpKRUmn3xWWllfPLt0zGGT6hv5daNvZjaOjOUBiE4O7ywEjgPWR8RB+b6rgf3zQ3YCfhcRB3eqDmZmKdzTT3M5TVfkRsTbt92W9Hng9x0s38wsSbfOzCmiloXR87n5byOfyWNmNpr0xdhNrlzXmP5rgHUR8WBN5ZuZtTSWx/Srnqe/zUnAlUMd0JiG4T6nYTCzCvmK3DaSNAn4G+DqoY5rTMNwoNMwmFmFxvIVuXUM7xwJrIyInhrKNjMbVr+Hd8rLr8j9ObC/pB5J78ofOpFhhnbMzOrknn6CVlfkRsQ7O1WmmVk7ePZOzXZhcumYwRM2D+2J2FQ+CHhT7/alYx6fVL6X0JPwMwEs2/qb0jHTJ5R/zQF2n7hd6ZjtEt6G2yV+SX2SraVj3vqHtNfiuunly9op4bW4ddMjpWMAzvli+bQjKekUAL605ILSMS858O3DHzSI8sklBhrLwztd0eibmVWpW4duiqh0YXRJB0u6TdLSfDrmYZ0q38wsVX9Eoa0bdXLK5uXA0U37PgP8a55v57z8vpnZqFLViVxJsyUtlvRg/v+sQY45WNLPJS2XdI+kxnQ2l0v6Vd6RXipp2FxmHWv0I+JW4Knm3cAO+e0dgTWdKt/MLFVf9BXa2uBs4KaI2Be4Kb/fbCPw9xHx52Qd6S9K2qnh8Y9FxMH5tnS4Aqu+OOtDwGclPQZ8Djin1YGNV+TetWFVZRU0M6twYfTjgSvy21cAbx6kLg9sS1kTEWuA9cAuqQVW3ei/H/hwROwJfBi4rNWBjVfkHjrzxZVV0MysaBqGxs5pvp1WsqjnRcRagPz/XYc6OD8POgV4qGH3p/Nhny9ImjpcgVXP3jkFODO//W3g0orLNzMbVtFefEQsABYMdYykHwPPH+Shc8vUSdJuwH+SLTO77UKCc4AnyD4IFgBnAecP9TxVN/prgNcCt5ClVXaWTTMbddo5Mycijmz1mKR1knaLiLV5o76+xXE7AP8F/EtE3Nbw3Gvzm5slfQ346HD1qXph9PcAX8qTrm0Cyn4VMjPruArn6S8iGwG5IP//+80HSJoCXAd8PSK+3fTYtg8MkZ0PWNYcP+D5uiFv9NW7vaN0Jb835dnS5ew8/HDYoC5Z87PSMRMnlD+d8vVZh5eOAVie8GPNiLTLf9er/IL0kxMWA1/e/3TpGIDdJ8woHfNE/4m179oAAAh7SURBVB+Sypqo8r/jaUwsHfNslL/yF+Dp/s2lY1IXK//+xvKTMe69b8hEvC1NnrNP4rXrf7LLjvsXanOe/P39IypL0s7ANcBewKPACRHxlKR5wPsi4t2STga+BixvCH1nRCyVdDPZSV0BS/OYZ4Yq01fkmpk1qaozHBG/AY4YZP8S4N357W8A32gRX3r1QTf6ZmZNuvVq2yKqTsPwsvzKsnsl/SA/OWFmNqpUOE+/clWnYbgUODsiXkJ2YuJjHSzfzCyJl0tM0CINw/7ArfntxcBbO1W+mVkq9/TbZxkwP799ArBnqwMbr3T7ccKZfzOzVH3RX2jrRlU3+qcCp0u6E5gJbGl1YGMahiNnOA2DmVVnLKdWrnT2TkSsBI4CkLQf8NdVlm9mVkS3Dt0UUWlPX9Ku+f8TgH8BLqmyfDOzIrwweoIWaRi2l3R6fsh3ya4yMzMbVcZyT79jjX5EnNTioS91qkwzs3bo1vH6QopOTRqtG3DaaI0Zq2WN9vr5tfBr4a31VvXsnU5IydRZVcxYLWu016/KskZ7/aosa7TXz6h+yqaZmdXIjb6Z2TgyFhr9IZcqqzlmrJY12utXZVmjvX5VljXa62d0ySIqZmbWHmOhp29mZgW50TczG0e6ttGXdLSk+yWtknR2wZgBC7sUiNlT0k8krZC0XNKZBWKmSfqFpLvzmH8tWl4eP1HSLyX9sODxD+cL0yyVtKREOTtJulbSyvzne+Uwx++fl7Fte1rShwqU8+H8dVgm6UpJ0wrW78w8Znmrclos1jNb0mJJD+b/zyoYd0JeVn++RmmRmM/mr989kq6TtFPBuE/lMUsl3SjpBcPFNDz2UUkhac5wMZI+Kenxht/ZsUXql+//QP43tlzSZwqUdXVDOQ9LWlrwtThY0m3b3r+SDisQ4wWZUtV9oUDKBkwEHgL2AaYAdwMHFog7HDgUWFairN2AQ/PbM4EHhiuLbJHi7fPbk4HbgVeUKPOfgG8BPyx4/MPAnITX8Qrg3fntKcBOJX8HTwAvHOa43YFfAdPz+9eQLeo83PMfRJaKewbZleM/BvYt8jsFPkO2WA/A2cCFBeMOIFvz4RZgXsGYo4BJ+e0LS5S1Q8PtDwKXFHmvkqUjvwF4pPl33qKcTwIfLft3Abw+f82n5vd3LVK/hsc/D5xXsKwbgWPy28cCtxSIuQN4bX77VOBTZd//43Xr1p7+YcCqiFgdEVuAq4DjhwuKwRd2GS5mbUTcld/eAKwga8iGion404r0k/Ot0BlzSXuQZR+9tEw9y8p7RocDlwFExJaI+F2JpzgCeCgiHilw7CRguqRJZI34mgIxBwC3RcTGiOgFfgq8pfmgFr/T48k+0Mj/f3ORuIhYERH3t6pQi5gb8/oB3AbsUTDu6Ya729H0/hjivfoF4OPNxw8TM6QWce8HLoiIzfkx64uWJUnA24ArC5YVwLae+o40vT9axHhBpkTd2ujvDjzWcL+HYRridpA0FziErOc+3LET86+364HFETFsTO6LZH/UZVZoCOBGSXdKKnql4j7Ak8DX8qGkSyVtV6LMExnkj3pAxSIeBz4HPAqsBX4fETcWeP5lwOGSdpY0g6wH2HLRnSbPi4i1eflrgV0Lxo3UqcB/Fz1Y0qclPQa8AzivwPHzgccj4u6S9TojH0paONhQVwv7Aa+RdLukn0r6ixLlvQZYFxEPFjz+Q8Bn89fic8A5BWIKL8hkz9Wtjb4G2dfRuaeStge+A3yoqZc2qIjoi4iDyXp+h0k6qEAZxwHrI+LOktV7VUQcChxDtkjN4QViJpF9Zb44Ig4BniUbChmWpClkf3DfLnDsLLKe997AC4DtJJ08XFxErCAbLlkM/IhsCK93yKAaSTqXrH7fLBoTEedGxJ55zBnDPP8M4FwKfDg0uRh4EXAw2Yfu5wvGTQJmAa8gW8v6mrwHX8RJFOgQNHg/8OH8tfgw+bfPYRRekMmeq1sb/R6e+8m+B8WGDJJImkzW4H8zIr5bJjYfMrmFgYvED+ZVwHxJD5MNWb1B0jcKlLEm/3892YLzhw0dAWSvYU/DN5BryT4EijgGuCsi1hU49kjgVxHxZERsJUup/VdFComIyyLi0Ig4nOzrfdGe4zpJuwHk/68f5vgRkXQKcBzwjohI6Xx8i+GHJ15E9sF5d/7+2AO4S9LzhwqKiHV5B6Qf+CrF3huQvT++mw9V/oLsm+ecYWLIh/D+Bri6YDkAp5C9LyDrSAxbx4hYGRFHRcTLyT5gHipR3rjWrY3+HcC+kvbOe50nAos6UVDeu7kMWBER/1YwZpdtszgkTSdr+FYOFxcR50TEHhExl+xnujkihuwVS9pO0sxtt8lOLA47OykingAek7R/vusI4L7h4nJlenKPAq+QNCN/LY8gOy8yLP1p0Z29yBqSomUuImtIyP//fsG40iQdDZwFzI+IjSXi9m24O59h3h8RcW9E7BoRc/P3Rw/ZBIMnhilnt4a7b6HAeyP3PeAN+XPsR3ai/9cF4o4EVkZET8FyIOuwvTa//QYKfLjLCzKlq/tMcupGNsb7ANkn/LkFY64k+4q7leyP5l0FYl5NNnR0D7A0344dJualwC/zmGUMMouhQLmvo8DsHbKx+bvzbXnR1yKPPRhYktfze8CsAjEzgN8AO5Yo51/JGrVlwH+SzwgpEPf/yD6I7gaOKPo7BXYGbiJrPG4CZheMe0t+ezOwDrihQMwqsvNL294blxQs6zv563EP8ANg9zLvVQaZsdWinP8E7s3LWQTsVrB+U4Bv5HW8C3hDkfoBlwPvK/M3SPY3dmf+e74deHmBmDPJ/v4fAC4gzy7gbfjNaRjMzMaRbh3eMTOzBG70zczGETf6ZmbjiBt9M7NxxI2+mdk44kbfzGwccaNvZjaO/H90qtLC1XdPmgAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Key:\n", + "0 This is straight razor behavior, I never get enough\n", + "1 [Chorus]\n", + "2 Ther–Ther–Ther–There ain't an army that could strike back\n", + "3 To my man [Lake Gucciano?], one love\n", + "4 Why don't (why don't) you teach me something new\n", + "5 I ain't no gangster but I got some bangers\n", + "6 You're never gonna make it where you're goin', aheh\n", + "7 My Mustang and the Jeep Wrangler grill\n", + "8 Love one of you bucket-headed hoes? No way!\n", + "9 Fish out pith like a business card from a jar at the mall\n", + "10 Then roll the dice, then bet us up\n", + "11 If all it's gonna cause is pain\n", + "12 When they tell me to fear they law\n", + "13 Pass me a honey-dipped spliff\n", + "14 She smoked cigarettes and gets what she gets by\n", + "15 Bring a scale, stale ginger lingers\n", + "16 Ayo, put the Grants over there in the safe\n", + "17 What it is, you don't know? Here it is\n", + "18 Whether cruisin' in a Six cab or Montero Jeep\n", + "19 One problem; even with the Os on his check\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Compute document similarity using LSA components\n", + "similarity = np.asarray(np.asmatrix(X_train_lsa) * np.asmatrix(X_train_lsa).T)\n", + "#Only taking the first 10 sentences\n", + "sim_matrix=pd.DataFrame(similarity,index=X_train[0:3286]['lyrics']).iloc[0:20,0:20]\n", + "#Making a plot\n", + "ax = sns.heatmap(sim_matrix,yticklabels=range(20))\n", + "plt.show()\n", + "\n", + "#Generating a key for the plot.\n", + "print('Key:')\n", + "for i in range(20):\n", + " print(i,sim_matrix.index[i])\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Perform K-Means Clustering" + ] + }, + { + "cell_type": "code", + "execution_count": 713, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.cluster import KMeans\n", + "kmeans = KMeans(n_clusters=10,random_state=0).fit(songs_paras_tfidf)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Raw Results Give Bad Performance" + ] + }, + { + "cell_type": "code", + "execution_count": 714, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n" + ] + } + ], + "source": [ + "for i in range(0,10):\n", + " lines_for_predicting = list(df_songs['lyrics'][df_songs['artist']== df.artist.unique()[i]])\n", + " val = kmeans.predict(vectorizer.transform(lines_for_predicting))\n", + " unique_elements, counts_elements = np.unique(val, return_counts=True)\n", + " print(np.argmax(counts_elements,axis=0))" + ] + }, + { + "cell_type": "code", + "execution_count": 338, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "MeanShift(bandwidth=1.3732796495727129, bin_seeding=True, cluster_all=True,\n", + " min_bin_freq=1, n_jobs=None, seeds=None)" + ] + }, + "execution_count": 338, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.cluster import MeanShift, estimate_bandwidth\n", + "bandwidth = estimate_bandwidth(songs_paras_tfidf.toarray(), quantile=0.2, n_samples=500)\n", + "ms = MeanShift(bandwidth=bandwidth, bin_seeding=True)\n", + "ms.fit(songs_paras_tfidf.toarray())" + ] + }, + { + "cell_type": "code", + "execution_count": 715, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n" + ] + } + ], + "source": [ + "for i in range(0,10):\n", + " lines_for_predicting = list(df_songs['lyrics'][df_songs['artist']== df.artist.unique()[i]])\n", + " val = ms.predict(vectorizer.transform(lines_for_predicting))\n", + " unique_elements, counts_elements = np.unique(val, return_counts=True)\n", + " print(np.argmax(counts_elements,axis=0))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Change Corpus to entire songs" + ] + }, + { + "cell_type": "code", + "execution_count": 207, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "index = 0\n", + "df_paras = pd.DataFrame(columns=['lyrics','artist'])\n", + "\n", + "for i in range(0,10):\n", + " for j in range(0,10):\n", + " df_paras.loc[index,'lyrics']=artist[i].songs[j].lyrics\n", + " df_paras.loc[index,'artist']=artist[i].name\n", + " index = index +1 \n" + ] + }, + { + "cell_type": "code", + "execution_count": 208, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lyricsartist
0[Intro: Pebbles the Invisible Girl, MF DOOM]\\n...MF DOOM
1[Produced by Metal Fingers]\\n\\n[Skit 1]\\nNow I...MF DOOM
2[Intro: Mr. Fantastik & (MF DOOM)]\\nYo! (Yo!)\\...MF DOOM
3[Intro]\\nKeep your hoes in check...\\n(Super!)\\...MF DOOM
4[Intro]\\nBefore we go any further\\nFriends\\n\\n...MF DOOM
\n", + "
" + ], + "text/plain": [ + " lyrics artist\n", + "0 [Intro: Pebbles the Invisible Girl, MF DOOM]\\n... MF DOOM\n", + "1 [Produced by Metal Fingers]\\n\\n[Skit 1]\\nNow I... MF DOOM\n", + "2 [Intro: Mr. Fantastik & (MF DOOM)]\\nYo! (Yo!)\\... MF DOOM\n", + "3 [Intro]\\nKeep your hoes in check...\\n(Super!)\\... MF DOOM\n", + "4 [Intro]\\nBefore we go any further\\nFriends\\n\\n... MF DOOM" + ] + }, + "execution_count": 208, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_paras.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Int64Index([4177, 4178, 4179, 4180, 4181, 4182, 4183, 4184, 4185, 4186,\n", + " ...\n", + " 5201, 5202, 5203, 5204, 5205, 5206, 5207, 5208, 5209, 5210],\n", + " dtype='int64', length=1034)" + ] + }, + "execution_count": 136, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df.artist == df.artist.unique()[4]].index\n" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[421.0, 327.0, 575.0, 522.0, 1042.0, 752.0, 849.5, 1030.0]" + ] + }, + "execution_count": 138, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[842/2,1962/6,2875/5,4176/8,5210/5,6016/8,6796/8, 7210/7]" + ] + }, + { + "cell_type": "code", + "execution_count": 235, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of features: 7403\n", + "Original sentence: lyrics artist\n", + "48 [Produced by DJ Premier]\\n\\n[Chorus]\\nRepresen... Nas\n", + "6 [Intro]\\nYo, yo, yo, y'all can't stand right h... MF DOOM\n", + "99 [Intro: Madam Majestic]\\nTommy Mottola, lives ... Ghostface Killah\n", + "82 [Intro: Mos Def]\\nPeace\\nPeace, peace, peace, ... Yasiin Bey\n", + "76 [Verse 1: André 3000]\\nI, I, I left no time to... André 3000\n", + "60 [Produced by Pharoahe Monch]\\n\\n[Intro]\\nUh-uh... Pharoahe Monch\n", + "80 [Produced by DJ Premier]\\n\\n[Intro]\\nBucka-buc... Yasiin Bey\n", + "90 [Intro: Ghostface Killah, Cappadonna, & (Masta... Ghostface Killah\n", + "68 [Produced by Lee Stone]\\n\\n[Hook]\\nPull myself... Pharoahe Monch\n", + "51 [Intro: Sample]\\nYes, yes, y'all, and you don'... Aesop Rock\n", + "27 [Intro: RZA]\\nLot of people, you know what I'm... GZA\n", + "18 [Produced by Sounwave; Additional production b... Kendrick Lamar\n", + "56 [Hook]\\nHey Kirby\\nWhatcha doing Kirby\\nWhatch... Aesop Rock\n", + "63 [Intro: Pharoahe Monch & Jean Grae]\\nIn 2013, ... Pharoahe Monch\n", + "74 (Yin-Yang)\\n\\nX\\n\\nF#CK 3000\\n\\nI pray there's... André 3000\n", + "1 [Produced by Metal Fingers]\\n\\n[Skit 1]\\nNow I... MF DOOM\n", + "61 [Hook]\\nIt's not latin, or white, or black mus... Pharoahe Monch\n", + "42 [Produced by L.E.S. & Nas]\\n\\n[Intro: AZ and N... Nas\n", + "41 [Produced by Ron Browz]\\n\\n[Intro]\\nFuck Jay Z... Nas\n", + "4 [Intro]\\nBefore we go any further\\nFriends\\n\\n... MF DOOM\n", + "15 [Produced by DJ Dahi]\\n\\n[Verse 1: Kendrick La... Kendrick Lamar\n", + "17 [Produced by Scoop DeVille & Sounwave]\\n\\n[Int... Kendrick Lamar\n", + "40 [Produced by DJ Premier]\\n\\n[Intro]\\nYeah, yea... Nas\n", + "38 [Intro]\\nI got a song filled with shit for the... Eminem\n", + "5 [Intro]\\nI get no kick from champagne\\nMere al... MF DOOM\n", + "91 [Intro: Sample]\\n- \"My God, so they are killer... Ghostface Killah\n", + "59 [Verse 1]\\nMy first name is a random set of nu... Aesop Rock\n", + "0 [Intro: Pebbles the Invisible Girl, MF DOOM]\\n... MF DOOM\n", + "34 [Intro: Joyner Lucas]\\nWhoa, Joyner, Joyner, y... Eminem\n", + "28 [Drug dealing skit]\\nRZA: Yes the good life, y... GZA\n", + ".. ... ...\n", + "19 [Intro: Kendrick Lamar]\\nDamn, love or lust\\nD... Kendrick Lamar\n", + "29 [Intro: GZA]\\nHere we go, come on\\n\\n[Excerpt ... GZA\n", + "49 [Produced by DJ Premier]\\n\\n[Intro]\\n(Nas is; ... Nas\n", + "97 [Intro: Force MDs]\\nWe are the G-O-Ds\\nAnd we ... Ghostface Killah\n", + "98 [Intro: Ghostface Killah]\\nUh-huh, uh-huh, mot... Ghostface Killah\n", + "69 [Chorus: Showtyme]\\nOh, oh, oh, oh, oh, oh, oh... Pharoahe Monch\n", + "20 [Skit: Gibran Evans]\\nWhen I was little, my fa... GZA\n", + "94 [Intro]\\n[Kid #1]: What you doing on our turf ... Ghostface Killah\n", + "72 [Instrumental] André 3000\n", + "77 I dont need you and your brand new Benz\\nOr yo... André 3000\n", + "25 [Intro: RZA + (GZA)]\\nYo (yeah), check it out,... GZA\n", + "37 [Verse 1]\\nNow this shit's about to kick off, ... Eminem\n", + "81 [Hook]\\nI know I can't afford to stop\\nFor one... Yasiin Bey\n", + "46 [Produced by Q-Tip]\\n\\n[Verse 1: Nas]\\nWhat up... Nas\n", + "39 [Intro: Eminem & Lil Juice]\\nTay Keith, fuck t... Eminem\n", + "65 [Hook]\\nGotta move on\\nGotta let go\\nWould've ... Pharoahe Monch\n", + "58 [Verse 1]\\nTech support, feral army\\nIn a cave... Aesop Rock\n", + "12 [Produced by T-Minus]\\n\\n[Intro]\\nPour up (Dra... Kendrick Lamar\n", + "88 [Intro]\\nLive from America\\nYasiin, Yasiin, y'... Yasiin Bey\n", + "70 [Verse]\\nMe and my mother drivin' to the groce... André 3000\n", + "87 [Produced by Mos Def]\\n\\n[Spoken]\\nBismillah i... Yasiin Bey\n", + "36 [Chorus: Ed Sheeran]\\nI've been a liar, been a... Eminem\n", + "21 [Intro]\\nChoose the sword, and you will join m... GZA\n", + "83 [Intro]\\nYou say \"one for the treble, two for ... Yasiin Bey\n", + "9 [Verse]\\nIt's the beat, he hear it in his slee... MF DOOM\n", + "96 [Intro from the motion picture \"J.D.'s Revenge... Ghostface Killah\n", + "67 [Hook]\\nOoh, listen to the way I slay your cre... Pharoahe Monch\n", + "64 [Verse 1]\\nTotally intoxicated when he drove a... Pharoahe Monch\n", + "47 [Produced by Rashad Smith & Trackmasters]\\n\\n[... Nas\n", + "44 [Produced by Trackmasters]\\n\\n[Verse 1]\\nFake ... Nas\n", + "\n", + "[75 rows x 2 columns]\n", + "Tf_idf vector: [{'chew': 0.055861571410149115, 'root': 0.047512337694375434, 'intruder': 0.055861571410149115, 'wingspan': 0.055861571410149115, 'impressive': 0.055861571410149115, 'clusterfuck': 0.055861571410149115, 'fluster': 0.055861571410149115, 'huff': 0.055861571410149115, 'muster': 0.055861571410149115, 'gusto': 0.05097758277666476, 'quite': 0.055861571410149115, 'vibe': 0.05097758277666476, 'backstab': 0.055861571410149115, 'strapped': 0.055861571410149115, 'jetpack': 0.055861571410149115, 'commands': 0.055861571410149115, 'canyon': 0.055861571410149115, 'object': 0.055861571410149115, 'duty': 0.055861571410149115, 'list': 0.047512337694375434, 'grocery': 0.05097758277666476, 'tales': 0.055861571410149115, 'sat': 0.05097758277666476, 'jericho': 0.055861571410149115, 'triumph': 0.055861571410149115, 'violence': 0.055861571410149115, 'vile': 0.055861571410149115, 'avoiding': 0.055861571410149115, 'award': 0.05097758277666476, 'siphon': 0.055861571410149115, 'conform': 0.055861571410149115, 'comply': 0.055861571410149115, 'whore': 0.05097758277666476, 'swarm': 0.055861571410149115, 'swine': 0.055861571410149115, 'glitz': 0.055861571410149115, 'jokers': 0.055861571410149115, 'homeowner': 0.055861571410149115, 'worth': 0.04482448479048708, 'regrets': 0.055861571410149115, 'express': 0.055861571410149115, 'rollover': 0.055861571410149115, 'fritz': 0.055861571410149115, 'motor': 0.055861571410149115, 'nodoz': 0.055861571410149115, 'blitz': 0.055861571410149115, 'vocoder': 0.055861571410149115, 'rogue': 0.055861571410149115, 'relate': 0.047512337694375434, 'cone': 0.055861571410149115, 'cane': 0.16758471423044735, 'grace': 0.16758471423044735, 'rejoice': 0.16758471423044735, 'funhouse': 0.16758471423044735, 'judged': 0.16758471423044735, 'leak': 0.055861571410149115, 'wine': 0.04482448479048708, 'turns': 0.05097758277666476, 'torn': 0.055861571410149115, 'isn': 0.09502467538875087, 'allure': 0.055861571410149115, 'fork': 0.055861571410149115, 'mouths': 0.047512337694375434, 'costs': 0.055861571410149115, 'prize': 0.10195516555332952, 'hog': 0.055861571410149115, 'dogfight': 0.055861571410149115, 'flies': 0.05097758277666476, 'frogs': 0.055861571410149115, 'vines': 0.055861571410149115, 'swamps': 0.055861571410149115, 'bog': 0.055861571410149115, 'attach': 0.055861571410149115, 'primate': 0.055861571410149115, 'elapse': 0.055861571410149115, 'sign': 0.1529327483299943, 'bolt': 0.055861571410149115, 'mulch': 0.055861571410149115, 'poacher': 0.055861571410149115, 'vulgar': 0.055861571410149115, 'colorfully': 0.055861571410149115, 'lung': 0.05097758277666476, 'suddenly': 0.055861571410149115, 'fuckery': 0.055861571410149115, 'huckabee': 0.055861571410149115, 'watering': 0.055861571410149115, 'wither': 0.055861571410149115, 'zeitgeist': 0.055861571410149115, 'jittery': 0.055861571410149115, 'outside': 0.04262834906089108, 'today': 0.04077154275853626, 'tied': 0.04262834906089108, 'beach': 0.04482448479048708, 'snow': 0.05097758277666476, 'score': 0.047512337694375434, 'horse': 0.05097758277666476, 'snake': 0.09502467538875087, 'ready': 0.04482448479048708, 'bizarre': 0.047512337694375434, 'play': 0.02939512671163304, 'patrol': 0.047512337694375434, 'riot': 0.05097758277666476, 'folk': 0.047512337694375434, 'knife': 0.04077154275853626, 'puff': 0.047512337694375434, 'dark': 0.03647525107471341, 'rise': 0.03916310397860177, 'actually': 0.03916310397860177, 'piss': 0.04077154275853626, 'crowd': 0.0342791153451174, 'hole': 0.047512337694375434, 'tried': 0.09994490720409342, 'wait': 0.030813870262828086, 'art': 0.03774436042740672, 'machine': 0.04262834906089108, 'pose': 0.04482448479048708, 'miles': 0.047512337694375434, 'fall': 0.10598160605454829, 'river': 0.04482448479048708, 'shrink': 0.04482448479048708, 'cubicle': 0.05097758277666476, 'lands': 0.047512337694375434, 'woke': 0.04262834906089108, 'fetch': 0.05097758277666476, 'eat': 0.03242230904276258, 'swap': 0.047512337694375434, 'cardboard': 0.05097758277666476, 'eye': 0.09994490720409342, 'shall': 0.3669438848268263, 'belly': 0.04262834906089108, 'wouldn': 0.07548872085481344, 'struck': 0.03916310397860177, 'lure': 0.05097758277666476, 'bit': 0.03532720201818276, 'feast': 0.05097758277666476, 'cast': 0.1425370130831263, 'couldn': 0.0342791153451174, 'chain': 0.03916310397860177, 'okay': 0.0342791153451174, 'centerfold': 0.05097758277666476, 'pulse': 0.047512337694375434, 'wings': 0.05097758277666476, 'beautiful': 0.04482448479048708, 'open': 0.03242230904276258, 'spoke': 0.047512337694375434, 'death': 0.03242230904276258, 'true': 0.0342791153451174, 'blue': 0.03647525107471341, 'weed': 0.03774436042740672, 'sort': 0.03916310397860177, 'help': 0.03774436042740672, 'climb': 0.10195516555332952, 'pull': 0.0685582306902348, 'spine': 0.04482448479048708, 'cut': 0.03008362255978339, 'nerve': 0.09502467538875087, 'ran': 0.03774436042740672, 'war': 0.07548872085481344, 'cow': 0.05097758277666476, 'blood': 0.03008362255978339, 'beef': 0.03774436042740672, 'heads': 0.03774436042740672, 'gold': 0.030813870262828086, 'city': 0.030813870262828086, 'sky': 0.10942575322414021, 'throw': 0.03331496906803114, 'walls': 0.04262834906089108, 'penny': 0.047512337694375434, 'men': 0.03532720201818276, 'fix': 0.05097758277666476, 've': 0.10371952651737489, 'rush': 0.04262834906089108, 'soldier': 0.04482448479048708, 'trying': 0.06662993813606229, 'storm': 0.05097758277666476, 'people': 0.027538320409278224, 'king': 0.057487731017033944, 'fine': 0.13447345437146127, 'interlude': 0.0342791153451174, 'pass': 0.3085120381060566, 'try': 0.05507664081855645, 'buttery': 0.05097758277666476, 'old': 0.024511138078148677, 'heart': 0.03008362255978339, 'thing': 0.02812601735893973, 'water': 0.0685582306902348, 'remember': 0.10942575322414021, 'trick': 0.09502467538875087, 'cash': 0.030813870262828086, 'right': 0.02071586144486291, 'stand': 0.03647525107471341, 'young': 0.02939512671163304, 'bitch': 0.023650386410815908, 'lot': 0.030813870262828086, 'goes': 0.04262834906089108, 'way': 0.022093979668924728, 'ma': 0.02939512671163304, 'flash': 0.04077154275853626, 'police': 0.03774436042740672, 'til': 0.028743865508516972, 'little': 0.026442529127020456, 'come': 0.021045892995859364, 'face': 0.07631449336515413, 'break': 0.026977968302409085, 'day': 0.09629230130795564, 'chorus': 0.06854118677003743}, {'sent': 0.045329588509437385, 'ali': 0.06465733785800441, 'cries': 0.05900433356187969, 'laughs': 0.06465733785800441, 'faces': 0.04934045888759617, 'men': 0.04088969892552332, 'omar': 0.12931467571600883, 'baghdad': 0.06465733785800441, 'elvis': 0.06465733785800441, 'considered': 0.06465733785800441, 'glad': 0.05900433356187969, 'jaw': 0.0549934631837209, 'arab': 0.05900433356187969, 'da': 0.04719128639929027, 'di': 0.11800866712375938, 'la': 0.05900433356187969, 'fabulous': 0.06465733785800441, 'kicked': 0.0549934631837209, 'crap': 0.0549934631837209, 'trapped': 0.0549934631837209, 'realized': 0.0549934631837209, 'instruments': 0.06465733785800441, 'eastern': 0.05900433356187969, 'getting': 0.035665713835153864, 'gentlemen': 0.0549934631837209, 'sentiment': 0.05900433356187969, 'increasing': 0.06465733785800441, 'manage': 0.05900433356187969, 'gonna': 0.03001270953902913, '15': 0.0549934631837209, 'planet': 0.0549934631837209, 'understand': 0.04088969892552332, 'bastard': 0.04934045888759617, 'food': 0.043687454591471435, 'damn': 0.03482048389865383, 'breakin': 0.06465733785800441, 'apples': 0.06465733785800441, 'buying': 0.05900433356187969, 'bye': 0.05900433356187969, 'soon': 0.04088969892552332, 'differences': 0.06465733785800441, 'fix': 0.05900433356187969, 'surely': 0.06465733785800441, 'wound': 0.05900433356187969, 'pissed': 0.06465733785800441, 've': 0.03001270953902913, 'distrust': 0.06465733785800441, 'rush': 0.04934045888759617, 'walk': 0.07935316842662529, 'grab': 0.043687454591471435, 'moms': 0.0549934631837209, 'jihad': 0.06465733785800441, 'stuff': 0.09868091777519233, 'barkin': 0.06465733785800441, 'arabian': 0.06465733785800441, 'country': 0.05900433356187969, 'oil': 0.05900433356187969, 'gimme': 0.05900433356187969, 'hungry': 0.04934045888759617, 'wrong': 0.04934045888759617, 'laundry': 0.06465733785800441, 'carrying': 0.06465733785800441, 'iraqi': 0.06465733785800441, 'curious': 0.06465733785800441, 'lookin': 0.042218515746315056, 'whip': 0.04934045888759617, 'comin': 0.042218515746315056, 'noonish': 0.06465733785800441, 'iraq': 0.06465733785800441, 'middle': 0.11800866712375938, 'soldier': 0.05188239042059858, 'patch': 0.06465733785800441, 'mac': 0.04719128639929027, 'riddle': 0.06465733785800441, 'relax': 0.05188239042059858, 'rick': 0.0549934631837209, 'slick': 0.05900433356187969, 'ruler': 0.06465733785800441, 'rockin': 0.06465733785800441, 'original': 0.04934045888759617, 'fantastic': 0.05900433356187969, 'punto': 0.06465733785800441, 'en': 0.05900433356187969, 'ecstatic': 0.19397201357401325, 'hook': 0.058887136617818435, 'remind': 0.05900433356187969, 'clouds': 0.05188239042059858, 'sun': 0.04719128639929027, 'struggle': 0.05188239042059858, 'hide': 0.05900433356187969, 'trying': 0.0385606268564314, 'suckas': 0.06465733785800441, 'fightin': 0.06465733785800441, 'world': 0.02737429302532395, 'lopsided': 0.06465733785800441, 'giant': 0.0549934631837209, 'act': 0.04719128639929027, 'small': 0.045329588509437385, 'shocked': 0.0549934631837209, 'tyrant': 0.06465733785800441, 'ring': 0.04088969892552332, 'round': 0.045329588509437385, 'swing': 0.0549934631837209, 'siren': 0.06465733785800441, 'voice': 0.045329588509437385, 'roar': 0.06465733785800441, 'lion': 0.06465733785800441, 'level': 0.05188239042059858, 'force': 0.04719128639929027, 'pushed': 0.05900433356187969, 'form': 0.0549934631837209, 'vital': 0.11800866712375938, 'storm': 0.05900433356187969, 'quiet': 0.0549934631837209, 'holla': 0.1099869263674418, 'ghetto': 0.08737490918294287, 'universal': 0.1099869263674418, 'cell': 0.08177939785104664, 'cathedral': 0.12931467571600883, 'tall': 0.11800866712375938, 'grave': 0.09438257279858055, 'cradle': 0.12931467571600883, 'curb': 0.11800866712375938, 'pavement': 0.12931467571600883, 'penthouse': 0.12931467571600883, 'presence': 0.0549934631837209, 'beat': 0.03752741172500675, 'scriptures': 0.05188239042059858, 'volumes': 0.12931467571600883, 'deep': 0.036565511450190324, 'sleep': 0.033269773416928314, 'hardly': 0.05900433356187969, 'awake': 0.0549934631837209, 'wide': 0.0549934631837209, 'bones': 0.06465733785800441, 'gotta': 0.034023579917187914, 'nations': 0.06465733785800441, 'bass': 0.04719128639929027, 'past': 0.045329588509437385, 'push': 0.04719128639929027, 'hear': 0.033269773416928314, 'clearly': 0.11800866712375938, 'speak': 0.08737490918294287, 'weary': 0.06465733785800441, 'grow': 0.04719128639929027, 'teary': 0.06465733785800441, 'eyes': 0.03187440742888202, 'sharp': 0.045329588509437385, 'turn': 0.030606076707596158, 'light': 0.036565511450190324, 'cleared': 0.06465733785800441, 'focus': 0.12931467571600883, 'dimmin': 0.06465733785800441, 'motion': 0.05188239042059858, 'goin': 0.045329588509437385, 'breathe': 0.08177939785104664, 'people': 0.03187440742888202, 'joke': 0.06465733785800441, 'smoke': 0.036565511450190324, 'blowin': 0.0549934631837209, 'mellow': 0.05900433356187969, 'chill': 0.04719128639929027, 'passionate': 0.05900433356187969, 'things': 0.042218515746315056, 'sit': 0.0771212537128628, 'hard': 0.034023579917187914, 'feel': 0.11145414820289297, 'flavor': 0.05900433356187969, 'amazin': 0.06465733785800441, 'data': 0.05900433356187969, 'operator': 0.06465733785800441, 'erator': 0.06465733785800441, 'madlib': 0.05900433356187969, 'def': 0.18131835403774954, 'mos': 0.13598876552831216, 'peace': 0.27856387118923065, 'smile': 0.04934045888759617, 'bust': 0.042218515746315056, 'interlude': 0.039676584213312646, 'try': 0.03187440742888202, 'months': 0.0549934631837209, 'uh': 0.0385606268564314, 'ya': 0.031225824251239803, 'sample': 0.04719128639929027, 'feeling': 0.042218515746315056, 'wish': 0.042218515746315056, 'soul': 0.036565511450190324, 'hope': 0.0750548234500135, 'forever': 0.045329588509437385, 'really': 0.03482048389865383, 'flow': 0.042218515746315056, 'pen': 0.036565511450190324, 'power': 0.08177939785104664, 'high': 0.028896752182147878, 'times': 0.03752741172500675, 'dangerous': 0.04719128639929027, 'right': 0.04795541617065059, 'bring': 0.03187440742888202, 'young': 0.034023579917187914, 'word': 0.032554641072031536, 'kid': 0.06804715983437583, 'mind': 0.09003812861708738, 'way': 0.02557281995511507, 'rock': 0.03187440742888202, 'need': 0.026901636775906807, 'black': 0.10400735664348139, 'rap': 0.030606076707596158, 'drop': 0.03752741172500675, 'raps': 0.043687454591471435, 'street': 0.036565511450190324, 'won': 0.031225824251239803, 'til': 0.033269773416928314, 'come': 0.048719410485808794, 'knock': 0.045329588509437385, 'face': 0.029443568308909217, 'real': 0.030606076707596158}, {'safety': 0.04715330572423591, 'forgiveness': 0.05167090339451619, 'eclipses': 0.05167090339451619, 'solar': 0.05167090339451619, 'lunar': 0.05167090339451619, 'heavens': 0.05167090339451619, 'saved': 0.05167090339451619, 'amen': 0.05167090339451619, 'babylon': 0.05167090339451619, 'towers': 0.05167090339451619, 'kings': 0.05167090339451619, 'whatsoever': 0.05167090339451619, 'guerillas': 0.05167090339451619, 'poorest': 0.05167090339451619, 'insurance': 0.05167090339451619, 'doctors': 0.05167090339451619, 'margiela': 0.05167090339451619, 'williams': 0.05167090339451619, 'france': 0.05167090339451619, 'french': 0.05167090339451619, 'bougie': 0.05167090339451619, 'landlord': 0.05167090339451619, 'spring': 0.05167090339451619, 'diabetics': 0.05167090339451619, 'bey': 0.05167090339451619, 'stall': 0.05167090339451619, 'bathroom': 0.05167090339451619, 'drawers': 0.05167090339451619, 'scary': 0.05167090339451619, 'cray': 0.10334180678903238, 'casket': 0.05167090339451619, 'closed': 0.05167090339451619, 'trey': 0.05167090339451619, 'behave': 0.05167090339451619, 'grade': 0.05167090339451619, 'sixth': 0.05167090339451619, 'maurice': 0.05167090339451619, 'zoo': 0.05167090339451619, 'local': 0.05167090339451619, 'marvin': 0.05167090339451619, 'starving': 0.05167090339451619, 'jumbotrons': 0.05167090339451619, 'stove': 0.05167090339451619, 'holey': 0.05167090339451619, 'myers': 0.15501271018354856, 'liable': 0.05167090339451619, 'tracing': 0.05167090339451619, 'surveillance': 0.05167090339451619, 'thoroughfare': 0.05167090339451619, 'stares': 0.05167090339451619, 'yasiin': 0.10334180678903238, 'role': 0.04715330572423591, 'deuce': 0.09430661144847181, 'father': 0.03943042149710872, 'air': 0.0414618057611143, 'illest': 0.04715330572423591, 'rob': 0.0414618057611143, 'astronauts': 0.04715330572423591, 'grimy': 0.04394801916738901, 'cameras': 0.0414618057611143, 'pants': 0.03943042149710872, 'lying': 0.04715330572423591, 'dying': 0.04715330572423591, 'mall': 0.04715330572423591, 'gucci': 0.04715330572423591, 'ice': 0.03943042149710872, 'believed': 0.04715330572423591, 'chopper': 0.04394801916738901, 'outside': 0.03943042149710872, 'psycho': 0.04715330572423591, 'nervous': 0.0414618057611143, 'written': 0.0414618057611143, 'winter': 0.04715330572423591, 'birds': 0.04394801916738901, 'allah': 0.04715330572423591, 'weird': 0.0414618057611143, 'filet': 0.04394801916738901, 'mama': 0.0414618057611143, 'caught': 0.35065588636448203, 'faded': 0.04394801916738901, 'louis': 0.04715330572423591, 'silver': 0.04715330572423591, 'prey': 0.04715330572423591, 'seeking': 0.04394801916738901, 'standing': 0.0414618057611143, 'signs': 0.037712910574136844, 'scared': 0.0414618057611143, 'acting': 0.04715330572423591, 'annual': 0.04715330572423591, 'salary': 0.04715330572423591, 'clothes': 0.03491282382682844, 'rise': 0.03622513494026183, 'easy': 0.037712910574136844, 'grief': 0.04715330572423591, 'fish': 0.03943042149710872, 'children': 0.03491282382682844, 'wearing': 0.04394801916738901, 'ask': 0.030815720088976588, 'fall': 0.03267699773924434, 'heat': 0.06747784306797423, 'earth': 0.033738921533987117, 'socks': 0.03943042149710872, 'shall': 0.037712910574136844, 'prince': 0.0414618057611143, 'look': 0.024458842340778098, 'pick': 0.033738921533987117, 'open': 0.02999002634700967, 'clean': 0.04394801916738901, 'looking': 0.03491282382682844, 'dealer': 0.04394801916738901, 'escape': 0.0414618057611143, 'sing': 0.04394801916738901, 'place': 0.029221323863706836, 'worry': 0.04394801916738901, 'case': 0.031707537269981545, 'malcolm': 0.04715330572423591, 'devils': 0.0414618057611143, 'family': 0.037712910574136844, 'killa': 0.037712910574136844, 'women': 0.03943042149710872, 'pretty': 0.03622513494026183, 'bloods': 0.04394801916738901, 'michael': 0.03943042149710872, 'home': 0.02718993959970126, 'fear': 0.037712910574136844, '20': 0.03491282382682844, 'dead': 0.02850225071313466, 'poor': 0.3771291057413685, 'prison': 0.0414618057611143, 'orbit': 0.04394801916738901, 'control': 0.03622513494026183, 'gold': 0.02850225071313466, 'took': 0.02718993959970126, 'fuckin': 0.02718993959970126, 'queens': 0.0414618057611143, 'died': 0.03622513494026183, 'getting': 0.02850225071313466, 'planet': 0.04394801916738901, 'food': 0.03491282382682844, 'walk': 0.031707537269981545, 'grab': 0.03491282382682844, 'hook': 0.04705964780117046, 'world': 0.021876162818689048, 'ghetto': 0.03491282382682844, 'turn': 0.024458842340778098, 'people': 0.025472428676729383, 'hard': 0.29908933559671386, 'peace': 0.02782678531598268, 'throne': 0.4975416691333716, 'hate': 0.031707537269981545, 'model': 0.04394801916738901, 'interlude': 0.031707537269981545, 'dope': 0.07542582114827369, 'dance': 0.03622513494026183, 'girl': 0.030815720088976588, 'ago': 0.03943042149710872, 'house': 0.03267699773924434, 'huh': 0.03267699773924434, 'tell': 0.022672341929420973, 'america': 0.03491282382682844, 'want': 0.02352982390058523, 'soul': 0.029221323863706836, 'seen': 0.030815720088976588, 'saying': 0.03491282382682844, 'years': 0.03267699773924434, 'high': 0.02309283586184941, 'hand': 0.029221323863706836, 'right': 0.019161782392272963, 'anybody': 0.04394801916738901, 'young': 0.05437987919940252, 'bitch': 0.021876162818689048, 'crazy': 0.030815720088976588, 'goes': 0.03943042149710872, 'mind': 0.023984653042854367, 'drugs': 0.03622513494026183, 'blow': 0.02850225071313466, 'live': 0.04705964780117046, 'rock': 0.025472428676729383, 'grand': 0.037712910574136844, 'block': 0.02999002634700967, 'black': 0.020779366486007478, 'game': 0.02309283586184941, 'fake': 0.05998005269401934, 'nigga': 0.08750465127475619, 'cold': 0.08997007904102901, 'police': 0.03491282382682844, 'rebel': 0.0414618057611143, 'little': 0.024458842340778098, 'hot': 0.02718993959970126, 'niggas': 0.021876162818689048, 'real': 0.024458842340778098}, {'production': 0.06560440766952816, 'disc': 0.07188974259347279, 'area': 0.06560440766952816, 'chambers': 0.07188974259347279, 'banger': 0.07188974259347279, 'drastic': 0.06560440766952816, 'systems': 0.07188974259347279, 'broadcasting': 0.07188974259347279, 'central': 0.06560440766952816, 'motown': 0.07188974259347279, 'struck': 0.0504000405486548, 'geffen': 0.07188974259347279, 'released': 0.07188974259347279, 'weapons': 0.07188974259347279, 'firing': 0.07188974259347279, 'arista': 0.07188974259347279, 'character': 0.06560440766952816, 'bad': 0.04172513218893721, 'atlantic': 0.06114489157106379, 'boat': 0.07188974259347279, 'panic': 0.07188974259347279, 'slave': 0.054859556647119154, 'rca': 0.07188974259347279, 'interscope': 0.06560440766952816, 'index': 0.06560440766952816, 'colombia': 0.07188974259347279, 'weight': 0.05246998321134621, 'ppendix': 0.07188974259347279, 'numb': 0.06114489157106379, 'pendulum': 0.07188974259347279, 'master': 0.054859556647119154, 'abbot': 0.07188974259347279, 'look': 0.03402959430741215, 'sorority': 0.07188974259347279, 'priority': 0.14377948518694558, 'bombing': 0.06560440766952816, '4th': 0.06560440766952816, 'pitch': 0.07188974259347279, 'batters': 0.07188974259347279, 'hitting': 0.06114489157106379, 'phat': 0.13120881533905632, 'plateau': 0.06114489157106379, 'atco': 0.07188974259347279, 'west': 0.05246998321134621, 'east': 0.05246998321134621, 'associated': 0.07188974259347279, 'epic': 0.07188974259347279, 'cables': 0.06114489157106379, 'row': 0.07188974259347279, 'natural': 0.054859556647119154, 'unpredictable': 0.06560440766952816, 'slang': 0.0504000405486548, 'rugged': 0.06560440766952816, 'capitol': 0.07188974259347279, 'mercury': 0.06560440766952816, 'driving': 0.06560440766952816, 'venus': 0.07188974259347279, 'going': 0.04546351625141281, 'hurt': 0.05246998321134621, 'boned': 0.07188974259347279, 'virgin': 0.07188974259347279, 'microphone': 0.057685822151571135, 'surgeons': 0.07188974259347279, 'lyrical': 0.054859556647119154, 'tough': 0.057685822151571135, 'reel': 0.14377948518694558, 'comedian': 0.07188974259347279, 'soft': 0.054859556647119154, 'profile': 0.07188974259347279, 'jive': 0.06560440766952816, 'wild': 0.10493996642269242, 'clan': 0.13120881533905632, 'ruthless': 0.07188974259347279, 'warn': 0.06114489157106379, 'chillin': 0.06114489157106379, 'smother': 0.07188974259347279, 'rough': 0.12228978314212759, 'jam': 0.05246998321134621, 'emerge': 0.07188974259347279, 'employ': 0.06560440766952816, 'moves': 0.06560440766952816, 'boy': 0.09388194225832427, 'motherfuckin': 0.10493996642269242, 'gza': 0.1008000810973096, 'poisoned': 0.07188974259347279, 'label': 0.20987993284538484, 'web': 0.057685822151571135, 'spiders': 0.07188974259347279, 'lure': 0.06560440766952816, 'labels': 0.13120881533905632, 'misinformed': 0.07188974259347279, 'duck': 0.057685822151571135, 'couldn': 0.044114705624710156, 'sleeping': 0.06560440766952816, 'dirty': 0.05246998321134621, 'thirty': 0.05246998321134621, 'death': 0.08345026437787442, 'bee': 0.06114489157106379, 'read': 0.17645882249884062, 'island': 0.04694097112916214, 'rich': 0.04546351625141281, 'mental': 0.057685822151571135, 'tracks': 0.054859556647119154, 'bone': 0.057685822151571135, 'bomb': 0.05246998321134621, 'rza': 0.2016001621946192, 'mic': 0.07565874140153105, 'tang': 0.10493996642269242, 'wu': 0.1408229133874864, 'killa': 0.10493996642269242, 'masta': 0.10971911329423831, 'secret': 0.05246998321134621, 'large': 0.05246998321134621, 'set': 0.0406556362052175, 'broadway': 0.06560440766952816, 'coming': 0.1008000810973096, 'deal': 0.044114705624710156, 'free': 0.04694097112916214, 'uptown': 0.06114489157106379, 'holding': 0.04857422172317452, 'style': 0.08822941124942031, 'flip': 0.04546351625141281, 'witty': 0.13120881533905632, 'city': 0.0396551895262458, 'throw': 0.04287392012705061, 'getting': 0.0793103790524916, 'gonna': 0.06673970920460232, 'understand': 0.04546351625141281, 'bastard': 0.054859556647119154, 'damn': 0.038715414327014294, 'rush': 0.054859556647119154, 'trying': 0.04287392012705061, 'act': 0.05246998321134621, 'gotta': 0.11348811210229656, 'speak': 0.04857422172317452, 'sharp': 0.0504000405486548, 'people': 0.10631939179497771, 'def': 0.0504000405486548, 'low': 0.0406556362052175, 'saw': 0.04857422172317452, 'tommy': 0.06560440766952816, 'house': 0.04546351625141281, 'ya': 0.03471866522900381, 'bag': 0.054859556647119154, 'old': 0.031544035776820877, 'soul': 0.0406556362052175, 'fiend': 0.054859556647119154, 'thought': 0.04287392012705061, 'saying': 0.14572266516952356, 'talent': 0.06114489157106379, 'loud': 0.04694097112916214, 'bring': 0.03543979726499257, 'motherfuckers': 0.0504000405486548, 'bitch': 0.030436311553541814, 'lot': 0.0396551895262458, 'kid': 0.03782937070076552, 'living': 0.044114705624710156, 'outro': 0.030980281166528217, 'blow': 0.0396551895262458, 'brother': 0.0406556362052175, 'god': 0.0578206770076736, 'breaking': 0.06560440766952816, 'wasn': 0.04694097112916214, 'plan': 0.04694097112916214, 'mc': 0.21436960063525307, 'game': 0.06425813820928322, 'rap': 0.03402959430741215, 'fake': 0.04172513218893721, 'razor': 0.10493996642269242, 'nigga': 0.06087262310708363, 'cold': 0.04172513218893721, 'thinking': 0.10493996642269242, 'little': 0.03402959430741215, 'come': 0.02708451967835652, 'niggas': 0.09130893466062545, 'll': 0.053319586588023146, 'day': 0.030980281166528217}, {'unsensitive': 0.04109094761134293, 'actin': 0.03297222956203312, 'dust': 0.04109094761134293, 'angel': 0.08218189522268586, 'usa': 0.04109094761134293, 'tithes': 0.04109094761134293, 'deposit': 0.04109094761134293, 'concept': 0.04109094761134293, 'coward': 0.037498357642840215, 'arrive': 0.04109094761134293, 'flame': 0.04109094761134293, 'powder': 0.03494937449499155, 'constantly': 0.03494937449499155, 'toxins': 0.04109094761134293, 'drown': 0.037498357642840215, 'option': 0.037498357642840215, 'vandalizin': 0.04109094761134293, 'corn': 0.04109094761134293, 'gossip': 0.04109094761134293, 'lawyer': 0.04109094761134293, 'relief': 0.037498357642840215, 'jump': 0.03297222956203312, 'skeletons': 0.04109094761134293, 'mentioned': 0.04109094761134293, 'laters': 0.04109094761134293, 'basketball': 0.04109094761134293, 'innocent': 0.037498357642840215, 'sixteen': 0.04109094761134293, 'mothafucka': 0.04109094761134293, 'outcome': 0.037498357642840215, 'boulevard': 0.04109094761134293, 'regulators': 0.04109094761134293, 'mount': 0.04109094761134293, 'brave': 0.04109094761134293, 'hearts': 0.03297222956203312, 'crave': 0.037498357642840215, 'slay': 0.03494937449499155, 'finna': 0.04109094761134293, 'iv': 0.04109094761134293, 'lately': 0.037498357642840215, 'colors': 0.03494937449499155, 'rep': 0.04109094761134293, 'bullis': 0.04109094761134293, 'alondra': 0.04109094761134293, 'cluck': 0.04109094761134293, 'dip': 0.037498357642840215, 'nakeds': 0.04109094761134293, 'butt': 0.037498357642840215, 'sticks': 0.04109094761134293, 'sherm': 0.04109094761134293, '80s': 0.04109094761134293, 'mixin': 0.04109094761134293, 'sacrifice': 0.04109094761134293, 'reasons': 0.04109094761134293, 'bleedin': 0.04109094761134293, 'allegiance': 0.04109094761134293, 'weekend': 0.037498357642840215, 'tweakin': 0.04109094761134293, 'foamin': 0.04109094761134293, 'rarely': 0.037498357642840215, 'tore': 0.037498357642840215, 'clocked': 0.037498357642840215, 'saturday': 0.04109094761134293, 'inspired': 0.037498357642840215, 'ended': 0.037498357642840215, 'month': 0.03494937449499155, 'security': 0.04109094761134293, 'believed': 0.037498357642840215, 'pops': 0.037498357642840215, 'dashed': 0.04109094761134293, 'hopped': 0.04109094761134293, 'pad': 0.03494937449499155, 'sleepin': 0.037498357642840215, 'grad': 0.04109094761134293, 'cuz': 0.04109094761134293, 'sup': 0.04109094761134293, 'thang': 0.10484812348497467, 'eiht': 0.12327284283402878, 'ii': 0.04109094761134293, 'speed': 0.03494937449499155, 'chopper': 0.0698987489899831, 'buy': 0.03297222956203312, 'movin': 0.037498357642840215, 'tragic': 0.04109094761134293, 'traffic': 0.04109094761134293, 'taxes': 0.04109094761134293, 'governor': 0.04109094761134293, 'collect': 0.08218189522268586, 'corporate': 0.03494937449499155, 'color': 0.03494937449499155, 'trolley': 0.04109094761134293, 'isleys': 0.04109094761134293, 'sheets': 0.04109094761134293, 'coroner': 0.04109094761134293, 'ivs': 0.08218189522268586, 'approve': 0.04109094761134293, 'bgs': 0.04109094761134293, 'piecin': 0.04109094761134293, 'treaty': 0.04109094761134293, 'news': 0.03297222956203312, 'noose': 0.04109094761134293, 'crawl': 0.037498357642840215, 'truce': 0.04109094761134293, 'ar': 0.037498357642840215, 'ak': 0.037498357642840215, 'punch': 0.037498357642840215, 'sucker': 0.03494937449499155, 'suck': 0.03494937449499155, 'suckers': 0.04109094761134293, 'pump': 0.037498357642840215, 'pickin': 0.08218189522268586, 'sliding': 0.04109094761134293, 'adapt': 0.04109094761134293, 'porch': 0.04109094761134293, 'pakistan': 0.04109094761134293, 'joey': 0.04109094761134293, 'recorder': 0.037498357642840215, 'beep': 0.04109094761134293, 'skinned': 0.04109094761134293, 'driver': 0.03494937449499155, 'society': 0.04109094761134293, 'conans': 0.04109094761134293, 'wavin': 0.04109094761134293, 'rosecrans': 0.08218189522268586, 'ride': 0.03135678452648884, 'yg': 0.04109094761134293, 'yan': 0.08218189522268586, 'boog': 0.04109094761134293, 'weighin': 0.04109094761134293, 'sergeant': 0.04109094761134293, 'drill': 0.04109094761134293, 'major': 0.037498357642840215, 'sac': 0.08218189522268586, 'cul': 0.08218189522268586, 'slingin': 0.04109094761134293, 'memory': 0.03494937449499155, 'yawk': 0.28763663327940053, 'crips': 0.08218189522268586, 'pirus': 0.08218189522268586, 'schoolboy': 0.08218189522268586, 'spray': 0.03297222956203312, 'outta': 0.03494937449499155, 'bein': 0.03297222956203312, 'lie': 0.03297222956203312, 'needed': 0.03494937449499155, 'nothin': 0.05761560275728037, 'job': 0.03135678452648884, 'lucky': 0.03494937449499155, 'cognac': 0.03494937449499155, 'strap': 0.0698987489899831, 'mother': 0.029990945210328617, 'burger': 0.03494937449499155, 'grip': 0.03494937449499155, 'bodies': 0.06271356905297767, 'fired': 0.03494937449499155, 'laced': 0.029990945210328617, 'lay': 0.027764194557986115, 'correct': 0.037498357642840215, 'drinkin': 0.037498357642840215, 'intelligence': 0.03494937449499155, 'slide': 0.03297222956203312, 'price': 0.03297222956203312, 'guard': 0.037498357642840215, 'shootin': 0.03494937449499155, 'holdin': 0.03297222956203312, 'van': 0.037498357642840215, 'fact': 0.027764194557986115, 'grandma': 0.0698987489899831, 'drive': 0.0698987489899831, 'goddamn': 0.03494937449499155, 'eatin': 0.03297222956203312, 'imagine': 0.03297222956203312, 'window': 0.03135678452648884, 'lane': 0.037498357642840215, 'happens': 0.03297222956203312, 'lessons': 0.03494937449499155, 'crime': 0.028807801378640186, 'loc': 0.10484812348497467, 'signs': 0.029990945210328617, 'slow': 0.028807801378640186, 'great': 0.027764194557986115, 'callin': 0.037498357642840215, 'fucked': 0.025986168500815563, 'brace': 0.037498357642840215, 'teach': 0.03494937449499155, 'pack': 0.026830656445681746, 'loose': 0.029990945210328617, 'bottle': 0.029990945210328617, 'instead': 0.03135678452648884, 'plain': 0.037498357642840215, 'fresh': 0.028807801378640186, 'plenty': 0.03494937449499155, 'leavin': 0.03494937449499155, 'somethin': 0.023238066477179024, 'safe': 0.03297222956203312, 'sayin': 0.026830656445681746, 'scratches': 0.037498357642840215, 'human': 0.03135678452648884, 'listen': 0.023849372093977243, 'pistol': 0.03494937449499155, 'doctor': 0.0698987489899831, 'aim': 0.027764194557986115, 'bang': 0.05366131289136349, 'bullets': 0.028807801378640186, 'grew': 0.029990945210328617, 'reality': 0.03297222956203312, 'punk': 0.05552838911597223, 'pre': 0.03297222956203312, 'crowd': 0.025215211410137463, 'ugly': 0.028807801378640186, 'suggest': 0.037498357642840215, 'cool': 0.023849372093977243, 'lunch': 0.03297222956203312, 'obviously': 0.03494937449499155, 'children': 0.027764194557986115, 'shut': 0.027764194557986115, 'foot': 0.03297222956203312, 'bird': 0.027764194557986115, 'brains': 0.03297222956203312, 'packed': 0.029990945210328617, 'seat': 0.06271356905297767, 'eat': 0.023849372093977243, 'warriors': 0.037498357642840215, 'euphoria': 0.037498357642840215, 'eye': 0.024505999636080123, 'hostage': 0.037498357642840215, 'belly': 0.03135678452648884, 'aw': 0.029990945210328617, 'momma': 0.059981890420657234, 'compton': 0.22499014585704127, 'probably': 0.07564563423041239, 'enemy': 0.03135678452648884, 'walkin': 0.029990945210328617, 'ayy': 0.027764194557986115, 'mouth': 0.03135678452648884, 'lamar': 0.20165460965048132, 'kendrick': 0.24147590801113572, 'martin': 0.03297222956203312, 'terrace': 0.037498357642840215, 'sounwave': 0.03494937449499155, 'struck': 0.028807801378640186, 'rough': 0.03494937449499155, 'boy': 0.026830656445681746, 'tape': 0.025986168500815563, 'duck': 0.03297222956203312, 'hang': 0.03135678452648884, 'crash': 0.028807801378640186, 'promise': 0.037498357642840215, 'generation': 0.037498357642840215, 'trip': 0.10484812348497467, 'crooked': 0.03297222956203312, 'cousin': 0.029990945210328617, 'weed': 0.027764194557986115, 'rules': 0.03135678452648884, 'dreams': 0.027764194557986115, 'stay': 0.04228712662183969, 'car': 0.025215211410137463, 'thrown': 0.03494937449499155, 'dial': 0.03494937449499155, 'blunt': 0.03297222956203312, 'stage': 0.03135678452648884, 'threat': 0.03297222956203312, 'kill': 0.020689083329330372, 'wind': 0.028807801378640186, 'blown': 0.037498357642840215, 'ran': 0.027764194557986115, 'pole': 0.037498357642840215, 'did': 0.020256782125474524, 'livin': 0.024505999636080123, 'robbery': 0.037498357642840215, 'white': 0.023849372093977243, 'die': 0.025986168500815563, 'simple': 0.03135678452648884, 'dead': 0.022666228262288816, 'hop': 0.023849372093977243, 'hell': 0.022129068827786022, 'deal': 0.025215211410137463, 'free': 0.026830656445681746, 'heads': 0.027764194557986115, 'wall': 0.027764194557986115, 'shots': 0.04769874418795449, 'flip': 0.025986168500815563, 'room': 0.025215211410137463, 'good': 0.018711938396371936, 'hood': 0.14703599781648072, 'took': 0.02162262144163474, 'pain': 0.023849372093977243, 'fuckin': 0.06486786432490423, 'city': 0.1359973695737329, 'said': 0.03419298672165531, 'left': 0.020689083329330372, 'damn': 0.022129068827786022, 'grab': 0.027764194557986115, 'lookin': 0.026830656445681746, 'whip': 0.03135678452648884, 'comin': 0.026830656445681746, 'sleep': 0.04228712662183969, 'hear': 0.04228712662183969, 'turn': 0.019450734228224725, 'light': 0.04647613295435805, 'smoke': 0.06971419943153707, 'peace': 0.022129068827786022, 'hey': 0.026830656445681746, 'inside': 0.021143563310919846, 'follow': 0.03494937449499155, 'fine': 0.03297222956203312, 'dick': 0.022666228262288816, 'doin': 0.025215211410137463, 'interlude': 0.025215211410137463, 'couple': 0.05366131289136349, 'body': 0.022129068827786022, 'door': 0.026830656445681746, 'dance': 0.028807801378640186, 'pass': 0.05043042282027493, 'wonder': 0.03135678452648884, 'maybe': 0.022666228262288816, 'dot': 0.059981890420657234, 'song': 0.05043042282027493, 'end': 0.04647613295435805, 'uh': 0.024505999636080123, 'huh': 0.051972337001631126, 'sure': 0.04533245652457763, 'check': 0.020689083329330372, 'bridge': 0.02162262144163474, 'broke': 0.05043042282027493, 'told': 0.01907363829378609, 'hope': 0.023849372093977243, 'head': 0.03742387679274387, 'seen': 0.07351799890824036, 'killed': 0.08329258367395835, 'thought': 0.024505999636080123, 'high': 0.01836442651972875, 'hand': 0.04647613295435805, 'stand': 0.05366131289136349, 'bitch': 0.01739687524827292, 'ass': 0.020256782125474524, 'word': 0.020689083329330372, '94': 0.037498357642840215, 'gang': 0.027764194557986115, 'living': 0.025215211410137463, 'everybody': 0.022666228262288816, 'outro': 0.017707798977625876, 'projects': 0.05552838911597223, 'brain': 0.024505999636080123, 'live': 0.018711938396371936, 'hit': 0.05409009441939605, 'gun': 0.04533245652457763, 'grand': 0.029990945210328617, 'cocaine': 0.08642340413592056, 'different': 0.03494937449499155, 'block': 0.04769874418795449, 'wake': 0.027764194557986115, 'mc': 0.07351799890824036, 'rap': 0.019450734228224725, 'crew': 0.024505999636080123, 'stress': 0.03297222956203312, 'school': 0.05366131289136349, 'nigga': 0.2957468792206396, 'crack': 0.023849372093977243, 'friends': 0.022666228262288816, 'guess': 0.021143563310919846, 'marijuana': 0.03494937449499155, 'tec': 0.03135678452648884, 'street': 0.11619033238589511, 'backwards': 0.03494937449499155, 'believe': 0.025215211410137463, 'run': 0.03890146845644945, 'hold': 0.01984459538446419, 'drink': 0.029990945210328617, 'watch': 0.020689083329330372, 'niggas': 0.06958750099309167, 'll': 0.03047656397292274, 'guns': 0.027764194557986115, 'day': 0.017707798977625876, 'real': 0.03890146845644945, 'straight': 0.02162262144163474, 'chorus': 0.03361192370939022, 'produced': 0.041378166658660745}, {'disobedient': 0.066198645862921, 'regency': 0.066198645862921, 'paupers': 0.066198645862921, 'coffee': 0.066198645862921, 'offin': 0.066198645862921, 'weasel': 0.066198645862921, 'divas': 0.066198645862921, 'medium': 0.066198645862921, 'grata': 0.066198645862921, 'non': 0.060410884692138365, 'persona': 0.066198645862921, 'voluntarily': 0.066198645862921, 'comedy': 0.066198645862921, 'melodrama': 0.066198645862921, 'compelling': 0.066198645862921, 'mollies': 0.066198645862921, 'rama': 0.066198645862921, 'whistle': 0.066198645862921, 'disillusionment': 0.066198645862921, 'gazelle': 0.066198645862921, 'infant': 0.066198645862921, 'wobble': 0.066198645862921, 'miniature': 0.060410884692138365, 'hobby': 0.066198645862921, 'notably': 0.066198645862921, 'probity': 0.066198645862921, 'corrode': 0.060410884692138365, 'gross': 0.05630440278982255, 'jokey': 0.066198645862921, 'braggadocio': 0.066198645862921, 'emotional': 0.066198645862921, 'exploding': 0.066198645862921, 'insecurities': 0.066198645862921, 'expose': 0.066198645862921, 'sabers': 0.066198645862921, 'unfair': 0.066198645862921, 'bark': 0.066198645862921, 'sorcery': 0.066198645862921, 'manticore': 0.066198645862921, 'remarks': 0.066198645862921, 'sordid': 0.066198645862921, 'parts': 0.066198645862921, 'cooler': 0.066198645862921, 'source': 0.1126088055796451, 'maggot': 0.066198645862921, 'surfing': 0.066198645862921, 'dirge': 0.066198645862921, 'piano': 0.066198645862921, 'tower': 0.066198645862921, 'ivory': 0.060410884692138365, 'almighty': 0.066198645862921, 'baffling': 0.066198645862921, 'pageantry': 0.066198645862921, 'posturing': 0.066198645862921, 'fantasy': 0.066198645862921, 'obnoxious': 0.05630440278982255, 'mess': 0.060410884692138365, 'cogs': 0.066198645862921, 'patronize': 0.066198645862921, 'pedestal': 0.066198645862921, 'ascend': 0.066198645862921, 'flaws': 0.066198645862921, 'imperfections': 0.066198645862921, 'fog': 0.066198645862921, 'impregnable': 0.066198645862921, 'echolocation': 0.066198645862921, 'quest': 0.066198645862921, 'weirdos': 0.066198645862921, 'naive': 0.066198645862921, 'sentimentalize': 0.066198645862921, 'community': 0.066198645862921, 'fugitive': 0.066198645862921, 'tee': 0.19859593758876298, 'involves': 0.066198645862921, 'spectrum': 0.066198645862921, 'measure': 0.066198645862921, 'haunts': 0.066198645862921, 'identical': 0.060410884692138365, 'defendants': 0.066198645862921, 'ostensibly': 0.066198645862921, 'dorks': 0.19859593758876298, 'delusion': 0.066198645862921, 'vinci': 0.060410884692138365, 'sketching': 0.066198645862921, 'convinced': 0.066198645862921, 'separately': 0.066198645862921, 'pants': 0.05051664161903992, 'skippies': 0.066198645862921, 'flimsy': 0.066198645862921, 'miserable': 0.066198645862921, 'sycophants': 0.066198645862921, 'jealous': 0.066198645862921, 'jellyfish': 0.066198645862921, 'jumping': 0.066198645862921, 'theatre': 0.066198645862921, 'seasoned': 0.066198645862921, 'akin': 0.066198645862921, 'mingling': 0.066198645862921, 'ducks': 0.066198645862921, 'popular': 0.060410884692138365, 'occupation': 0.066198645862921, 'flux': 0.066198645862921, 'lima': 0.066198645862921, 'stockholm': 0.066198645862921, 'imposed': 0.066198645862921, 'steep': 0.066198645862921, 'crutch': 0.066198645862921, 'tedious': 0.066198645862921, 'routine': 0.066198645862921, 'comfortably': 0.066198645862921, 'waste': 0.05630440278982255, 'hazardous': 0.066198645862921, 'ballast': 0.066198645862921, 'jettison': 0.066198645862921, 'albatross': 0.066198645862921, 'corpse': 0.066198645862921, 'neighbors': 0.066198645862921, 'apartment': 0.066198645862921, 'funny': 0.05630440278982255, 'menacing': 0.060410884692138365, 'floss': 0.05630440278982255, 'faced': 0.05630440278982255, 'tea': 0.060410884692138365, 'root': 0.05630440278982255, 'saga': 0.060410884692138365, 'job': 0.05051664161903992, 'pissy': 0.060410884692138365, 'difficult': 0.1126088055796451, 'beach': 0.053119167966947496, 'leaders': 0.060410884692138365, 'bunch': 0.05630440278982255, 'demons': 0.060410884692138365, 'ate': 0.053119167966947496, 'belong': 0.060410884692138365, 'smooth': 0.16891320836946766, 'communication': 0.060410884692138365, 'play': 0.03483463737515884, 'somebody': 0.043224924893849055, 'lesson': 0.05630440278982255, 'kane': 0.060410884692138365, 'rat': 0.053119167966947496, 'daddy': 0.046410159716724124, 'load': 0.053119167966947496, 'piranha': 0.05630440278982255, 'cares': 0.060410884692138365, 'odd': 0.060410884692138365, 'bell': 0.05051664161903992, 'art': 0.044728880448257284, 'pile': 0.05630440278982255, 'poker': 0.060410884692138365, 'think': 0.06666136364150123, 'cage': 0.060410884692138365, 'homie': 0.053119167966947496, 'keys': 0.053119167966947496, 'heroes': 0.060410884692138365, 'queen': 0.060410884692138365, 'momma': 0.048316236944722174, 'wouldn': 0.044728880448257284, 'smell': 0.05051664161903992, 'question': 0.05051664161903992, 'numb': 0.05630440278982255, 'cat': 0.05051664161903992, 'sweet': 0.15154992485711974, 'camp': 0.05630440278982255, 'chain': 0.046410159716724124, 'impressed': 0.060410884692138365, 'rest': 0.053119167966947496, 'hang': 0.05051664161903992, 'breed': 0.053119167966947496, 'tempest': 0.060410884692138365, 'view': 0.053119167966947496, 'scene': 0.046410159716724124, 'pill': 0.048316236944722174, 'means': 0.048316236944722174, 'meant': 0.05051664161903992, 'help': 0.13418664134477187, 'step': 0.05051664161903992, 'wanna': 0.0326342327008411, 'rattling': 0.060410884692138365, 'shop': 0.05630440278982255, 'threat': 0.053119167966947496, 'bear': 0.053119167966947496, 'code': 0.048316236944722174, 'heavy': 0.048316236944722174, 'learn': 0.048316236944722174, 'prison': 0.053119167966947496, 'hell': 0.035650538032431005, 'fuckin': 0.06966927475031769, 'hands': 0.04062239854594148, 'died': 0.046410159716724124, 'da': 0.048316236944722174, 'trying': 0.03947983888738359, 'round': 0.046410159716724124, 'breathe': 0.04186443160645964, 'feel': 0.028527750798525306, 'truly': 0.1126088055796451, 'stuffed': 0.05630440278982255, 'party': 0.12967477468154714, 'couple': 0.043224924893849055, 'maybe': 0.10954774993087706, 'sample': 0.14494871083416652, 'self': 0.048316236944722174, 'lost': 0.03743716372306642, 'takes': 0.048316236944722174, 'songs': 0.053119167966947496, 'rappers': 0.04186443160645964, 'lot': 0.03651591664362568, 'kid': 0.03483463737515884, 'fucking': 0.03947983888738359, 'ghost': 0.043224924893849055, 'way': 0.026182427362578562, 'chop': 0.060410884692138365, 'god': 0.026621673570527245, 'need': 0.11017168259987192, 'black': 0.026621673570527245, 'used': 0.07303183328725137, 'sell': 0.043224924893849055, 'turned': 0.04186443160645964, 'dress': 0.05051664161903992, 'believe': 0.04062239854594148, 'til': 0.03406286156110597, 'little': 0.03133566738657072, 'face': 0.030145446997875556, 'mad': 0.03406286156110597, 'corners': 0.048316236944722174, 'll': 0.07364787317554757}, {'increase': 0.04834551132528394, 'clubs': 0.04834551132528394, 'attract': 0.04834551132528394, 'glocks': 0.04834551132528394, 'unstoppable': 0.04834551132528394, 'punchlines': 0.04834551132528394, 'topic': 0.04834551132528394, 'received': 0.04834551132528394, 'microscopic': 0.04834551132528394, 'beatbox': 0.04411865336493346, 'sheet': 0.04834551132528394, 'materials': 0.04834551132528394, 'basements': 0.04834551132528394, 'replacements': 0.04834551132528394, 'tracements': 0.04834551132528394, 'draftin': 0.04834551132528394, 'renovate': 0.04834551132528394, 'site': 0.04834551132528394, 'construct': 0.04834551132528394, 'narrow': 0.04834551132528394, 'subliminal': 0.04834551132528394, 'knives': 0.04834551132528394, 'vibes': 0.04834551132528394, 'dive': 0.041119649915126, 'getaway': 0.04834551132528394, 'survivor': 0.04834551132528394, 'sole': 0.04834551132528394, 'fleeing': 0.04834551132528394, 'robbers': 0.04834551132528394, 'harbor': 0.04834551132528394, 'pearl': 0.04834551132528394, 'japs': 0.04834551132528394, 'saws': 0.04834551132528394, 'ants': 0.04834551132528394, 'elephants': 0.04834551132528394, 'unbalanced': 0.04834551132528394, 'keyboards': 0.04834551132528394, 'strictly': 0.04411865336493346, 'swingin': 0.04834551132528394, 'singin': 0.04834551132528394, 'stingin': 0.04834551132528394, 'bees': 0.04834551132528394, 'celeb': 0.04834551132528394, 'trucks': 0.04834551132528394, 'cemeteries': 0.04834551132528394, 'preliminary': 0.04834551132528394, 'demonstrate': 0.04834551132528394, 'mcin': 0.04834551132528394, 'inverted': 0.04834551132528394, 'strangle': 0.04834551132528394, 'massive': 0.04834551132528394, 'spikes': 0.04834551132528394, 'flying': 0.04411865336493346, 'flashbacks': 0.04834551132528394, 'strike': 0.041119649915126, 'tampered': 0.04834551132528394, 'harm': 0.04834551132528394, 'ditties': 0.04834551132528394, 'parable': 0.04834551132528394, 'necessary': 0.04834551132528394, 'military': 0.04834551132528394, 'bind': 0.04834551132528394, 'hillsides': 0.04834551132528394, 'unleaded': 0.04834551132528394, 'gassed': 0.04834551132528394, 'beheaded': 0.04834551132528394, 'guillotine': 0.04834551132528394, 'edged': 0.04834551132528394, 'chevy': 0.04834551132528394, 'vehicle': 0.04834551132528394, 'hearin': 0.19338204530113576, 'crop': 0.04834551132528394, 'fathers': 0.04834551132528394, 'sorcerers': 0.04834551132528394, 'ranch': 0.04834551132528394, 'capital': 0.04834551132528394, 'soo': 0.04834551132528394, 'gamble': 0.04411865336493346, 'father': 0.03689279195477551, 'station': 0.041119649915126, 'boxes': 0.04411865336493346, 'shatter': 0.13235596009480038, 'armed': 0.04411865336493346, 'tropical': 0.04411865336493346, 'glass': 0.11067837586432651, 'roll': 0.03528581513952888, 'played': 0.03689279195477551, 'gross': 0.041119649915126, 'obnoxious': 0.041119649915126, 'vocal': 0.04411865336493346, 'scope': 0.041119649915126, 'marks': 0.041119649915126, 'angle': 0.04411865336493346, 'minded': 0.04411865336493346, 'heavily': 0.04411865336493346, 'duel': 0.04411865336493346, 'givin': 0.04411865336493346, 'date': 0.041119649915126, 'gate': 0.03879344211743374, 'dip': 0.04411865336493346, 'driver': 0.041119649915126, 'major': 0.04411865336493346, 'bombs': 0.041119649915126, 'raise': 0.23276065270460244, 'today': 0.1764290756976444, 'statement': 0.04411865336493346, 'religious': 0.04411865336493346, 'tangled': 0.041119649915126, 'ropes': 0.041119649915126, 'shout': 0.03689279195477551, 'double': 0.03689279195477551, 'combination': 0.04411865336493346, 'tapes': 0.041119649915126, 'criminal': 0.03879344211743374, 'thoughts': 0.03156758070727579, 'caught': 0.027340722746925304, 'proof': 0.03689279195477551, 'sounds': 0.03689279195477551, 'powerful': 0.03879344211743374, 'socialize': 0.04411865336493346, 'gunned': 0.04411865336493346, 'stabbed': 0.041119649915126, 'chased': 0.03879344211743374, 'handle': 0.11638032635230122, 'luck': 0.03528581513952888, 'somethin': 0.027340722746925304, 'sayin': 0.03156758070727579, 'optics': 0.04411865336493346, 'iron': 0.032665933994425016, 'punk': 0.09799780198327507, 'commercial': 0.04411865336493346, 'tried': 0.02883250817551043, 'regular': 0.03879344211743374, 'alright': 0.20336273102980834, 'bank': 0.03528581513952888, 'ok': 0.12335894974537799, 'shut': 0.032665933994425016, 'fatal': 0.03689279195477551, 'packed': 0.03528581513952888, 'think': 0.02434171929711785, 'based': 0.04411865336493346, 'bet': 0.032665933994425016, 'talkin': 0.030573999301250404, 'struck': 0.033893788504968055, 'bad': 0.028059953729370934, 'weight': 0.03528581513952888, 'look': 0.022884740960710928, 'slang': 0.13557515401987222, 'microphone': 0.03879344211743374, 'lyrical': 0.03689279195477551, 'motherfuckin': 0.03528581513952888, 'gza': 0.1694689425248403, 'web': 0.03879344211743374, 'labels': 0.04411865336493346, 'okay': 0.08900079163385267, 'spangled': 0.04411865336493346, 'cousin': 0.03528581513952888, 'scene': 0.033893788504968055, 'place': 0.027340722746925304, 'rules': 0.07378558390955102, 'define': 0.04411865336493346, 'method': 0.08823730672986692, 'heard': 0.02666792709481011, 'murderous': 0.041119649915126, 'tracks': 0.03689279195477551, 'holds': 0.04411865336493346, 'swords': 0.041119649915126, 'cords': 0.04411865336493346, 'rza': 0.06778757700993611, 'mic': 0.025440072584267073, 'tang': 0.21171489083717326, 'wu': 0.22097306495093055, 'women': 0.11067837586432651, 'livin': 0.11533003270204172, 'cream': 0.032665933994425016, 'heavy': 0.03528581513952888, 'mcs': 0.11067837586432651, 'set': 0.027340722746925304, 'hop': 0.028059953729370934, 'hip': 0.03156758070727579, 'best': 0.028059953729370934, 'heads': 0.032665933994425016, 'point': 0.033893788504968055, 'style': 0.02966693054461756, 'shots': 0.028059953729370934, 'fuckin': 0.025440072584267073, 'hands': 0.17800158326770535, 'throw': 0.02883250817551043, 'jaw': 0.12335894974537799, 'gonna': 0.022441069134459615, 'hook': 0.06604653449827677, 'world': 0.12280965198881325, 'ring': 0.030573999301250404, 'sleep': 0.02487643724290169, 'sharp': 0.033893788504968055, 'hard': 0.025440072584267073, 'flavor': 0.04411865336493346, 'peace': 0.026035932725396508, 'king': 0.02487643724290169, 'star': 0.033893788504968055, 'attack': 0.06313516141455158, 'try': 0.023833095769020443, 'huh': 0.030573999301250404, 'sure': 0.08000378128443034, 'check': 0.07302515789135354, 'bridge': 0.025440072584267073, 'bout': 0.02883250817551043, 'old': 0.02121321462391658, 'rhyme': 0.02966693054461756, 'pipe': 0.03689279195477551, 'sound': 0.07632021775280122, 'rappers': 0.030573999301250404, 'cash': 0.05333585418962022, 'right': 0.017928584692726235, 'lot': 0.02666792709481011, 'way': 0.0573638397922259, 'live': 0.022015511499425593, 'rock': 0.023833095769020443, 'son': 0.07462931172870507, 'god': 0.038884131369304326, 'cops': 0.030573999301250404, 'mc': 0.02883250817551043, 'stacks': 0.033893788504968055, 'fat': 0.030573999301250404, 'rap': 0.022884740960710928, 'crew': 0.02883250817551043, 'school': 0.03156758070727579, 'razor': 0.03528581513952888, 'raps': 0.032665933994425016, 'nigga': 0.04093655066293774, 'love': 0.0555236535645622, 'police': 0.032665933994425016, 'run': 0.022884740960710928, 'clap': 0.13235596009480038, 'break': 0.07004441367327738, 'mad': 0.07462931172870507, 'spot': 0.06114799860250081, 'niggas': 0.2251510286461576, 'blast': 0.20559824957563, 'dj': 0.033893788504968055}, {'bob': 0.039721134636136246, 'kool': 0.04210297053623648, 'com': 0.04950162861525131, 'hairline': 0.04950162861525131, 'dot': 0.07225925503904522, 'www': 0.04950162861525131, 'tricked': 0.09900325723050261, 'song': 0.030376374925340364, 'dawn': 0.04517369108337002, 'yes': 0.11808799391093681, 'biscuits': 0.04950162861525131, 'sauce': 0.04517369108337002, 'apple': 0.04210297053623648, 'potatoes': 0.04950162861525131, 'mashed': 0.04950162861525131, 'woo': 0.06940862491444333, 'records': 0.04210297053623648, 'end': 0.027994539025240132, 'posed': 0.04950162861525131, '1999': 0.04950162861525131, 'recordings': 0.04950162861525131, 'fondle': 0.04950162861525131, 'status': 0.04517369108337002, 'regulation': 0.04950162861525131, 'wee': 0.04210297053623648, 'hoo': 0.04210297053623648, 'eh': 0.04517369108337002, 'ah': 0.11332509901306556, 'nugget': 0.04950162861525131, 'house': 0.03130513500023596, 'shocking': 0.04517369108337002, 'doom': 0.07225925503904522, 'mf': 0.09034738216674004, 'lakes': 0.04517369108337002, 'land': 0.039721134636136246, 'slickness': 0.04950162861525131, 'buttery': 0.09034738216674004, 'listening': 0.09900325723050261, 'uh': 0.20665398934413945, 'ha': 0.33997529703919666, 'huh': 0.03130513500023596, 'shot': 0.02730565437820684, 'sure': 0.02730565437820684, 'ya': 0.023906476921221137, 'check': 0.0249238184781066, 'slice': 0.04950162861525131, 'cucumber': 0.04950162861525131, 'pay': 0.034704312457221664, 'wants': 0.039721134636136246, 'debts': 0.04517369108337002, 'sweetest': 0.04517369108337002, 'owes': 0.04950162861525131, 'reflect': 0.04950162861525131, 'tonight': 0.04517369108337002, 'arms': 0.03612962751952261, 'sample': 0.03612962751952261, 'bridge': 0.026048437393459068, 'broke': 0.030376374925340364, 'bout': 0.029521998477734204, 'tell': 0.02172049986157777, 'logical': 0.04950162861525131, 'feeling': 0.03232247655712143, 'destruct': 0.04517369108337002, 'self': 0.03612962751952261, 'attitude': 0.04517369108337002, 'buck': 0.039721134636136246, 'healthy': 0.04950162861525131, 'earn': 0.039721134636136246, 'america': 0.033447095472473896, 'gack': 0.04950162861525131, 'want': 0.022541982578006367, 'bag': 0.03777503300435519, 'credit': 0.04950162861525131, 'told': 0.02297771684632554, 'motorola': 0.04517369108337002, 'erase': 0.04950162861525131, 'wish': 0.03232247655712143, 'cola': 0.04950162861525131, 'coca': 0.04950162861525131, 'chase': 0.03612962751952261, 'taste': 0.03232247655712143, 'old': 0.04344099972315554, 'nasty': 0.03777503300435519, 'heaven': 0.04210297053623648, 'soul': 0.027994539025240132, 'hope': 0.02873096944050778, 'rhyme': 0.030376374925340364, 'telling': 0.03612962751952261, 'heart': 0.026658546721176422, 'clementine': 0.04950162861525131, 'darling': 0.04950162861525131, 'forever': 0.034704312457221664, 'lost': 0.055989078050480263, 'gone': 0.03232247655712143, 'thanks': 0.03777503300435519, 'really': 0.026658546721176422, 'kind': 0.04210297053623648, 'oh': 0.09191086738530216, 'blanks': 0.04517369108337002, 'billy': 0.04517369108337002, 'tae': 0.04517369108337002, 'practice': 0.04517369108337002, 'flow': 0.03232247655712143, 'dro': 0.04950162861525131, 'mo': 0.04517369108337002, 'bottles': 0.03777503300435519, 'battle': 0.03612962751952261, 'dough': 0.034704312457221664, 'toe': 0.04517369108337002, 'head': 0.022541982578006367, 'jet': 0.03612962751952261, 'gots': 0.04950162861525131, 'wet': 0.03232247655712143, 'connects': 0.04950162861525131, 'setbacks': 0.04950162861525131, 'suffer': 0.04210297053623648, 'surrender': 0.04950162861525131, 'takes': 0.03612962751952261, 'matters': 0.04210297053623648, 'songs': 0.039721134636136246, 'money': 0.04595543369265108, 'krill': 0.09900325723050261, 'thing': 0.0498476369562132, 'dunny': 0.09900325723050261, 'seen': 0.05904399695546841, 'write': 0.05904399695546841, 'friend': 0.06261027000047192, 'lent': 0.09900325723050261, 'gentleman': 0.09900325723050261, 'pipe': 0.07555006600871038, 'fiend': 0.07555006600871038, 'pen': 0.11197815610096053, 'juice': 0.07555006600871038, 'filtered': 0.09900325723050261, 'water': 0.06075274985068073, 'brita': 0.09900325723050261, 'pure': 0.09034738216674004, 'power': 0.06261027000047192, 'goose': 0.09900325723050261, 'killed': 0.06689419094494779, 'thought': 0.11808799391093681, 'shitter': 0.09900325723050261, 'slit': 0.09034738216674004, 'clock': 0.07225925503904522, 'biological': 0.09900325723050261, 'shocks': 0.09900325723050261, 'spock': 0.09900325723050261, 'logic': 0.04517369108337002, 'blocks': 0.07555006600871038, 'field': 0.04517369108337002, 'electromagnetic': 0.09900325723050261, 'saying': 0.06689419094494779, 'stayed': 0.09034738216674004, 'laying': 0.08420594107247296, 'years': 0.06261027000047192, 'came': 0.052096874786918136, 'spades': 0.08420594107247296, 'joker': 0.09900325723050261, 'high': 0.04424668079743876, 'ho': 0.05904399695546841, 'tally': 0.09900325723050261, 'alamo': 0.09900325723050261, 'remember': 0.06464495311424286, 'talent': 0.08420594107247296, 'sound': 0.052096874786918136, 'chapstick': 0.09900325723050261, 'rappers': 0.06261027000047192, 'slapstick': 0.09900325723050261, 'classical': 0.09900325723050261, 'trick': 0.08420594107247296, 'happy': 0.08420594107247296, 'joking': 0.09900325723050261, 'times': 0.11492387776203113, 'broker': 0.14850488584575391, 'brag': 0.14850488584575391, 'cash': 0.10922261751282736, 'dimes': 0.15888453854454498, 'rhymes': 0.20665398934413945, 'strange': 0.04517369108337002, 'dangerous': 0.03612962751952261, 'range': 0.033447095472473896, 'close': 0.03130513500023596, 'eardrum': 0.04517369108337002, 'burst': 0.04950162861525131, 'loud': 0.03232247655712143, 'nightmare': 0.04517369108337002, 'worst': 0.04517369108337002, 'hand': 0.027994539025240132, 'right': 0.07342928985361816, 'stand': 0.03232247655712143, 'lot': 0.08191696313462052, 'outro': 0.021332311361492964, 'stop': 0.04880606381725298, 'way': 0.019578539389339844, 'bo': 0.039721134636136246, 'rock': 0.02440303190862649, 'hit': 0.04344099972315554, 'need': 0.041191761892450614, 'stacks': 0.034704312457221664, 'fly': 0.03130513500023596, 'black': 0.019906996299192015, 'game': 0.06637002119615813, 'sell': 0.1292899062284857, 'love': 0.018950475461392727, 'hold': 0.023906476921221137, 'come': 0.03729955862888849, 'break': 0.023906476921221137, 'better': 0.04266462272298593, 'll': 0.01835732246340454, 'chorus': 0.08098352854958739}, {'cleaners': 0.045616780205680475, 'ironin': 0.045616780205680475, 'ringer': 0.045616780205680475, 'puttin': 0.04162849576618796, 'sesh': 0.045616780205680475, 'counseling': 0.045616780205680475, 'givin': 0.04162849576618796, 'pannin': 0.045616780205680475, 'penis': 0.04162849576618796, 'mouthful': 0.045616780205680475, 'journalist': 0.045616780205680475, 'meaty': 0.045616780205680475, 'journalists': 0.045616780205680475, 'media': 0.09123356041136095, 'lyricists': 0.045616780205680475, 'linked': 0.045616780205680475, 'hurtin': 0.04162849576618796, 'agent': 0.045616780205680475, 'lyrically': 0.04162849576618796, 'knows': 0.04162849576618796, 'scurred': 0.045616780205680475, 'verses': 0.045616780205680475, 'deserted': 0.04162849576618796, 'serpent': 0.045616780205680475, 'empathize': 0.045616780205680475, 'reword': 0.045616780205680475, 'worshipped': 0.04162849576618796, 'critiqued': 0.045616780205680475, 'determined': 0.09123356041136095, 'verdict': 0.045616780205680475, 'reached': 0.045616780205680475, 'public': 0.03879876292324671, 'thirds': 0.045616780205680475, 'startin': 0.045616780205680475, 'worthless': 0.045616780205680475, 'turning': 0.04162849576618796, 'sand': 0.04162849576618796, 'burden': 0.045616780205680475, 'preach': 0.04162849576618796, 'invite': 0.045616780205680475, 'slaughterhouse': 0.045616780205680475, 'underway': 0.045616780205680475, '2018': 0.045616780205680475, 'donkey': 0.045616780205680475, 'charlamagne': 0.045616780205680475, 'dang': 0.04162849576618796, 'dookie': 0.045616780205680475, 'gucci': 0.04162849576618796, 'pootie': 0.045616780205680475, 'peach': 0.045616780205680475, 'olive': 0.04162849576618796, 'date': 0.03879876292324671, 'dawg': 0.045616780205680475, 'pink': 0.045616780205680475, 'aquamarine': 0.045616780205680475, 'engine': 0.045616780205680475, 'colorblind': 0.045616780205680475, 'reach': 0.045616780205680475, 'orange': 0.08325699153237592, 'sneeze': 0.045616780205680475, 'nod': 0.045616780205680475, 'doze': 0.045616780205680475, 'blink': 0.04162849576618796, 'wink': 0.045616780205680475, 'slippin': 0.04162849576618796, 'deceased': 0.045616780205680475, 'cease': 0.04162849576618796, 'enemies': 0.045616780205680475, 'beefs': 0.045616780205680475, 'malt': 0.045616780205680475, 'alcoholic': 0.045616780205680475, 'forties': 0.045616780205680475, 'flawless': 0.045616780205680475, 'regardless': 0.03879876292324671, 'harder': 0.03879876292324671, 'expertise': 0.045616780205680475, 'smartest': 0.045616780205680475, 'woulda': 0.04162849576618796, 'tuned': 0.045616780205680475, 'vocals': 0.04162849576618796, 'slider': 0.045616780205680475, 'serve': 0.045616780205680475, 'revival': 0.045616780205680475, 'porterhouse': 0.045616780205680475, 'mcdonald': 0.045616780205680475, 'pounder': 0.045616780205680475, 'whopper': 0.045616780205680475, 'expect': 0.045616780205680475, 'bk': 0.045616780205680475, 'goner': 0.045616780205680475, 'sean': 0.04162849576618796, 'cole': 0.045616780205680475, 'dump': 0.045616780205680475, 'crumble': 0.045616780205680475, 'pummel': 0.045616780205680475, 'jumbo': 0.045616780205680475, 'mumbo': 0.045616780205680475, 'jumbled': 0.045616780205680475, 'mumblin': 0.045616780205680475, 'rumble': 0.045616780205680475, 'rumblings': 0.045616780205680475, 'wayne': 0.045616780205680475, 'imitate': 0.045616780205680475, 'xan': 0.045616780205680475, 'azae': 0.045616780205680475, 'igg': 0.045616780205680475, 'mgk': 0.045616780205680475, 'wang': 0.045616780205680475, 'nfing': 0.045616780205680475, 'clone': 0.045616780205680475, 'recovery': 0.04162849576618796, 'effing': 0.045616780205680475, 'especially': 0.036603851608603695, 'oooouuu': 0.045616780205680475, 'mathers': 0.03879876292324671, 'mailed': 0.09123356041136095, 'ooouuu': 0.045616780205680475, 'sucks': 0.045616780205680475, 'sourpuss': 0.045616780205680475, 'caliber': 0.04162849576618796, 'valium': 0.045616780205680475, 'nightstick': 0.045616780205680475, 'club': 0.03879876292324671, 'upside': 0.045616780205680475, 'bashed': 0.045616780205680475, 'thames': 0.045616780205680475, 'polarize': 0.045616780205680475, 'icy': 0.045616780205680475, 'christ': 0.03879876292324671, 'tenths': 0.045616780205680475, 'strip': 0.045616780205680475, 'sidekick': 0.045616780205680475, 'pence': 0.045616780205680475, 'president': 0.04162849576618796, 'vice': 0.045616780205680475, 'sack': 0.04162849576618796, 'wrench': 0.045616780205680475, 'fence': 0.04162849576618796, 'spike': 0.09123356041136095, 'vise': 0.045616780205680475, 'ice': 0.06962095696750839, 'whitestrip': 0.045616780205680475, 'crest': 0.045616780205680475, 'spelled': 0.045616780205680475, 'possessed': 0.045616780205680475, 'possibly': 0.045616780205680475, 'preferably': 0.045616780205680475, 'stir': 0.045616780205680475, 'syrup': 0.03879876292324671, 'tea': 0.04162849576618796, 'cup': 0.07759752584649342, 'emcee': 0.045616780205680475, 'simply': 0.04162849576618796, 'yachty': 0.045616780205680475, 'adiós': 0.045616780205680475, 'audi': 0.045616780205680475, 'copies': 0.045616780205680475, 'choppy': 0.045616780205680475, 'idea': 0.04162849576618796, 'listenin': 0.045616780205680475, 'renewed': 0.045616780205680475, 'misconstrued': 0.045616780205680475, 'fuse': 0.045616780205680475, 'lit': 0.04162849576618796, 'clicks': 0.045616780205680475, 'reviews': 0.045616780205680475, 'skim': 0.045616780205680475, 'cents': 0.045616780205680475, 'billions': 0.045616780205680475, 'views': 0.09123356041136095, 'millions': 0.045616780205680475, 'mention': 0.09123356041136095, 'opinion': 0.09123356041136095, 'par': 0.045616780205680475, 'sub': 0.03879876292324671, 'critiquin': 0.045616780205680475, 'kala': 0.045616780205680475, 'account': 0.045616780205680475, 'savage': 0.04162849576618796, 'staples': 0.045616780205680475, 'magazine': 0.03879876292324671, 'brrr': 0.045616780205680475, 'anger': 0.045616780205680475, 'issue': 0.045616780205680475, 'brows': 0.045616780205680475, 'alphabet': 0.045616780205680475, 'rape': 0.03879876292324671, 'mistake': 0.045616780205680475, 'allowed': 0.045616780205680475, 'mistakes': 0.03879876292324671, 'gate': 0.036603851608603695, 'greatness': 0.045616780205680475, 'explain': 0.04162849576618796, 'illa': 0.04162849576618796, 'actin': 0.036603851608603695, 'news': 0.036603851608603695, 'punch': 0.04162849576618796, 'pump': 0.04162849576618796, 'list': 0.03879876292324671, 'worth': 0.036603851608603695, 'isn': 0.03879876292324671, 'mouths': 0.03879876292324671, 'raise': 0.036603851608603695, 'missed': 0.04162849576618796, 'workin': 0.04162849576618796, 'bein': 0.036603851608603695, 'evil': 0.1248854872985639, 'lil': 0.15990372820406473, 'lean': 0.03879876292324671, 'joyner': 0.04162849576618796, 'line': 0.05957166865233985, 'audio': 0.04162849576618796, 'terrorists': 0.03879876292324671, 'press': 0.06962095696750839, 'burger': 0.03879876292324671, 'service': 0.03879876292324671, 'nervous': 0.036603851608603695, 'smash': 0.03879876292324671, 'shout': 0.034810478483754195, 'rumor': 0.04162849576618796, 'chicken': 0.03879876292324671, 'grip': 0.03879876292324671, 'study': 0.04162849576618796, 'doesn': 0.08325699153237592, 'retarded': 0.04162849576618796, 'shoulda': 0.034810478483754195, 'lay': 0.030822194044261675, 'finger': 0.07320770321720739, 'breath': 0.03198074564081294, 'ly': 0.03879876292324671, 'prob': 0.03879876292324671, 'thoughts': 0.029785834326169925, 'base': 0.03879876292324671, 'defeat': 0.08325699153237592, 'fact': 0.030822194044261675, 'caught': 0.05159509977335482, 'mirror': 0.034810478483754195, 'makin': 0.06962095696750839, 'plane': 0.036603851608603695, 'mean': 0.027992461201320425, 'eatin': 0.036603851608603695, 'thinkin': 0.030822194044261675, 'freeze': 0.04162849576618796, 'pretend': 0.03879876292324671, 'bucks': 0.03879876292324671, 'chick': 0.034810478483754195, 'number': 0.030822194044261675, 'attention': 0.034810478483754195, 'looks': 0.036603851608603695, 'nah': 0.036603851608603695, 'knowledge': 0.029785834326169925, 'stan': 0.03879876292324671, 'fan': 0.08325699153237592, 'dissin': 0.04162849576618796, 'album': 0.07759752584649342, 'garbage': 0.03879876292324671, 'lose': 0.06658840622319999, 'bottle': 0.06658840622319999, 'bought': 0.034810478483754195, 'skull': 0.03879876292324671, 'sayin': 0.029785834326169925, 'cypher': 0.04162849576618796, 'rise': 0.03198074564081294, 'jesus': 0.034810478483754195, 'answer': 0.03879876292324671, 'watchin': 0.034810478483754195, 'aim': 0.030822194044261675, 'bang': 0.08935750297850976, 'copy': 0.036603851608603695, 'ex': 0.033294203111599995, 'auto': 0.03879876292324671, 'flesh': 0.03879876292324671, 'week': 0.03879876292324671, 'tried': 0.027205135537223937, 'bank': 0.033294203111599995, 'wait': 0.025162728358379176, 'fingers': 0.036603851608603695, 'sorry': 0.029785834326169925, 'shut': 0.06164438808852335, 'paul': 0.036603851608603695, 'matter': 0.06164438808852335, 'person': 0.03198074564081294, 'artist': 0.034810478483754195, 'comes': 0.036603851608603695, 'flick': 0.04162849576618796, 'tip': 0.033294203111599995, 'spit': 0.028848332924847328, 'ask': 0.027205135537223937, 'bar': 0.033294203111599995, 'jaws': 0.04162849576618796, 'ball': 0.03879876292324671, 'liquor': 0.034810478483754195, 'order': 0.034810478483754195, 'shrink': 0.036603851608603695, 'think': 0.06890345113120847, 'feet': 0.036603851608603695, 'eat': 0.026476185829166228, 'purpose': 0.036603851608603695, 'bet': 0.06164438808852335, 'era': 0.04162849576618796, 'beast': 0.03879876292324671, 'aw': 0.033294203111599995, 'court': 0.030822194044261675, 'honest': 0.034810478483754195, 'probably': 0.027992461201320425, 'brown': 0.034810478483754195, 'talkin': 0.028848332924847328, 'kendrick': 0.029785834326169925, 'look': 0.02159307389355763, 'east': 0.033294203111599995, 'jam': 0.033294203111599995, 'bit': 0.028848332924847328, 'stomach': 0.03879876292324671, 'couldn': 0.027992461201320425, 'chain': 0.03198074564081294, 'pick': 0.05957166865233985, 'hang': 0.034810478483754195, 'crash': 0.03198074564081294, 'stick': 0.029785834326169925, 'death': 0.052952371658332456, 'meet': 0.03198074564081294, 'bleed': 0.036603851608603695, 'started': 0.030822194044261675, 'view': 0.036603851608603695, 'win': 0.07759752584649342, 'welcome': 0.03879876292324671, 'pill': 0.033294203111599995, 'mentally': 0.036603851608603695, 'help': 0.030822194044261675, 'pull': 0.027992461201320425, 'weak': 0.03198074564081294, 'lp': 0.03879876292324671, 'wanna': 0.08995160555869484, 'switch': 0.033294203111599995, 'stupid': 0.033294203111599995, 'music': 0.028848332924847328, 'heard': 0.1006509134335167, 'brought': 0.036603851608603695, 'thousand': 0.03198074564081294, 'split': 0.034810478483754195, 'mic': 0.02400417676182791, 'tang': 0.033294203111599995, 'secret': 0.033294203111599995, 'did': 0.02248790138967371, 'business': 0.034810478483754195, 'die': 0.028848332924847328, 'spell': 0.034810478483754195, 'longer': 0.08325699153237592, 'quarter': 0.034810478483754195, 'half': 0.027992461201320425, 'dead': 0.025162728358379176, 'dream': 0.028848332924847328, 'industry': 0.03879876292324671, 'ink': 0.03198074564081294, 'beats': 0.030822194044261675, 'beef': 0.06164438808852335, 'sold': 0.033294203111599995, 'took': 0.02400417676182791, 'fuckin': 0.12002088380913954, 'words': 0.028848332924847328, 'said': 0.05693859781273093, 'went': 0.0245664051951636, 'sent': 0.03198074564081294, 'gonna': 0.1905699952699799, 'walk': 0.027992461201320425, 'hungry': 0.034810478483754195, 'lookin': 0.029785834326169925, 'comin': 0.029785834326169925, 'world': 0.03862599821119933, 'beat': 0.026476185829166228, 'sleep': 0.02347235428692998, 'hear': 0.02347235428692998, 'eyes': 0.02248790138967371, 'turn': 0.08637229557423053, 'light': 0.02579754988667741, 'breathe': 0.028848332924847328, 'people': 0.08995160555869484, 'chill': 0.033294203111599995, 'things': 0.029785834326169925, 'feel': 0.03931633709346493, 'king': 0.02347235428692998, 'hate': 0.05598492240264085, 'dick': 0.025162728358379176, 'fed': 0.034810478483754195, 'shake': 0.03879876292324671, 'maybe': 0.1006509134335167, 'yes': 0.027205135537223937, 'apple': 0.03879876292324671, 'wee': 0.03879876292324671, 'sure': 0.025162728358379176, 'wants': 0.07320770321720739, 'bout': 0.10882054214889575, 'tell': 0.020015892322335388, 'want': 0.04154581145818629, 'old': 0.020015892322335388, 'rhyme': 0.027992461201320425, 'gone': 0.029785834326169925, 'really': 0.0245664051951636, 'oh': 0.06352333175665996, 'flow': 0.029785834326169925, 'head': 0.020772905729093145, 'takes': 0.033294203111599995, 'thing': 0.04593563408747232, 'write': 0.027205135537223937, 'pipe': 0.034810478483754195, 'water': 0.027992461201320425, 'killed': 0.030822194044261675, 'talent': 0.07759752584649342, 'times': 0.026476185829166228, 'close': 0.028848332924847328, 'loud': 0.029785834326169925, 'right': 0.03383330881844662, 'bring': 0.02248790138967371, 'motherfucker': 0.028848332924847328, 'bitch': 0.173816991950397, 'word': 0.02296781704373616, 'gang': 0.030822194044261675, 'everybody': 0.025162728358379176, 'way': 0.03608406240584209, 'mike': 0.03879876292324671, 'ma': 0.02400417676182791, 'hit': 0.040031784644670776, 'god': 0.018344711075945406, 'green': 0.034810478483754195, 'need': 0.01897953260424364, 'dissed': 0.036603851608603695, 'new': 0.02038711825479017, 'game': 0.02038711825479017, 'love': 0.017463257232089448, 'cold': 0.026476185829166228, 'guess': 0.02347235428692998, 'run': 0.02159307389355763, 'won': 0.02203031564241356, 'til': 0.02347235428692998, 'ill': 0.026476185829166228, 'hold': 0.06609094692724068, 'watch': 0.02296781704373616, 'tryin': 0.028848332924847328, 'face': 0.020772905729093145, 'break': 0.02203031564241356, 'better': 0.019658168546732465, 'mad': 0.02347235428692998, 'll': 0.1353332352737865, 'humble': 0.036603851608603695, 'murdered': 0.033294203111599995, 'day': 0.03931633709346493, 'straight': 0.02400417676182791}, {'rook': 0.10245411212998407, 'hooks': 0.10245411212998407, 'hinge': 0.10245411212998407, 'independent': 0.10245411212998407, 'mock': 0.10245411212998407, 'contin': 0.10245411212998407, 'oxy': 0.10245411212998407, 'moxie': 0.10245411212998407, 'defeated': 0.10245411212998407, 'deception': 0.10245411212998407, 'retired': 0.10245411212998407, 'admired': 0.10245411212998407, 'exciting': 0.10245411212998407, 'virtue': 0.10245411212998407, 'renegade': 0.10245411212998407, 'x2': 0.10245411212998407, 'games': 0.10245411212998407, 'pussies': 0.10245411212998407, 'dicks': 0.10245411212998407, 'favorite': 0.10245411212998407, 'apparel': 0.10245411212998407, 'latest': 0.10245411212998407, 'narrows': 0.10245411212998407, 'verrazano': 0.10245411212998407, 'aston': 0.10245411212998407, 'mashing': 0.10245411212998407, 'wits': 0.10245411212998407, 'dateline': 0.10245411212998407, 'drove': 0.10245411212998407, 'intoxicated': 0.10245411212998407, 'reign': 0.09349652811533779, 'deceit': 0.09349652811533779, 'liar': 0.18699305623067558, 'murk': 0.09349652811533779, 'circle': 0.08714102111371692, 'walked': 0.08714102111371692, 'liars': 0.18699305623067558, 'ecstasy': 0.09349652811533779, 'books': 0.08714102111371692, 'deleted': 0.09349652811533779, 'putting': 0.17428204222743385, '80': 0.08714102111371692, 'meds': 0.08221130689601326, 'mercedes': 0.08714102111371692, 'carbon': 0.09349652811533779, 'lyrically': 0.09349652811533779, 'crave': 0.09349652811533779, 'sucker': 0.08714102111371692, 'singing': 0.08714102111371692, 'lie': 0.16442261379202652, 'line': 0.06689821587974612, 'pulled': 0.08714102111371692, 'insane': 0.15636687419814127, 'ol': 0.07818343709907064, 'poppin': 0.07818343709907064, 'wit': 0.09349652811533779, 'building': 0.0718279300974498, 'totally': 0.09349652811533779, 'listen': 0.05946483069355043, 'copy': 0.08221130689601326, 'work': 0.1384517061688487, 'shut': 0.06922585308442435, 'swag': 0.09349652811533779, 'ask': 0.06110203294214674, 'ladies': 0.0718279300974498, 'eat': 0.05946483069355043, 'greatest': 0.07477792170981758, 'playing': 0.07818343709907064, 'pop': 0.0628703460828035, 'rapper': 0.1436558601948996, 'mouth': 0.07818343709907064, 'martin': 0.08221130689601326, 'bad': 0.11892966138710086, 'look': 0.04849748719542675, 'going': 0.06479261190550592, 'didn': 0.06479261190550592, 'chain': 0.0718279300974498, 'truth': 0.06922585308442435, 'pussy': 0.20069464763923833, 'music': 0.06479261190550592, 'mic': 0.0539127620681572, 'state': 0.0628703460828035, 'story': 0.06922585308442435, 'talking': 0.0718279300974498, 'worldwide': 0.08714102111371692, 'best': 0.05946483069355043, 'room': 0.0628703460828035, 'pain': 0.05946483069355043, 'pharoahe': 0.07477792170981758, 'said': 0.08525508169766537, 'wrong': 0.07818343709907064, 'hook': 0.09331082129155062, 'universal': 0.08714102111371692, 'baby': 0.10317024972695796, 'inside': 0.05271830250238423, 'song': 0.0628703460828035, 'uh': 0.06110203294214674, 'bridge': 0.1078255241363144, 'tell': 0.044955178053510896, 'bag': 0.07818343709907064, 'told': 0.047557255066536346, 'lost': 0.057940631865099824, 'gone': 0.06689821587974612, 'saying': 0.06922585308442435, 'bring': 0.05050724667890413, 'motherfucker': 0.12958522381101184, 'fucking': 0.12220406588429349, 'stop': 0.05050724667890413, 'ma': 0.0539127620681572, 'game': 0.045788941925879595, 'love': 0.039222025459579625, 'mad': 0.05271830250238423}, {'andre': 0.1354163907553968, 'compassion': 0.1483901740776531, 'shallow': 0.1483901740776531, 'deeply': 0.1483901740776531, 'narcissistic': 0.1483901740776531, 'lonely': 0.1483901740776531, 'loners': 0.1483901740776531, 'poseidon': 0.1483901740776531, 'sloppy': 0.1483901740776531, 'ninjas': 0.1354163907553968, 'temporary': 0.1483901740776531, 'gram': 0.1483901740776531, 'inst': 0.1483901740776531, 'twitt': 0.1483901740776531, 'ckbook': 0.1483901740776531, 'fart': 0.1354163907553968, 'art': 0.10026377835219608, 'cure': 0.12621134499670872, 'ok': 0.12621134499670872, 'darker': 0.1483901740776531, 'cultures': 0.1483901740776531, 'pyramid': 0.1354163907553968, 'umm': 0.1354163907553968, 'addict': 0.11907135680384787, 'snack': 0.12621134499670872, 'fruit': 0.12621134499670872, 'oblivious': 0.1483901740776531, 'obviously': 0.12621134499670872, 'sorry': 0.09689252772290348, 'afrika': 0.1483901740776531, 'cornbread': 0.1483901740776531, 'children': 0.10026377835219608, 'baths': 0.1354163907553968, 'short': 0.12621134499670872, 'ck': 0.1354163907553968, 'yang': 0.1354163907553968, 'yin': 0.1354163907553968, 'pray': 0.10830515817273394, 'playing': 0.1132375616744524, 'beautiful': 0.11907135680384787, 'forgot': 0.1132375616744524, 'kill': 0.07471369864195909, 'thousand': 0.10403251591576435, 'americans': 0.1354163907553968, 'good': 0.06757371044909824, 'girls': 0.10830515817273394, '3000': 0.1354163907553968, 've': 0.13775980702512727, 'breathe': 0.0938428605716261, 'people': 0.14630509153906648, 'passionate': 0.1354163907553968, 'end': 0.08391874440064716, 'old': 0.06511116594899535, 'wet': 0.09689252772290348, 'suffer': 0.12621134499670872, 'friend': 0.0938428605716261, 'hand': 0.08391874440064716, 'stop': 0.07315254576953324, 'big': 0.07808494927125169, 'god': 0.17902457326162677, 'love': 0.05680751181798433, 'thinking': 0.10830515817273394}, {'cecilia': 0.06710800121255817, 'shaved': 0.06124073491724517, 'werewolf': 0.06710800121255817, 'paraphernalia': 0.06710800121255817, 'nail': 0.06710800121255817, 'genitalia': 0.06710800121255817, 'trailer': 0.06710800121255817, 'gift': 0.06124073491724517, 'mail': 0.06710800121255817, 'armor': 0.06124073491724517, 'knight': 0.06710800121255817, 'miley': 0.06710800121255817, 'lama': 0.06124073491724517, 'dalai': 0.06710800121255817, 'dahmer': 0.06710800121255817, 'osama': 0.06710800121255817, 'calmer': 0.06710800121255817, 'saddam': 0.06710800121255817, 'drama': 0.05707784323135476, 'bombom': 0.06710800121255817, 'paula': 0.06710800121255817, 'chihuahua': 0.06710800121255817, 'maul': 0.06710800121255817, 'koala': 0.06710800121255817, 'wallet': 0.06710800121255817, 'raped': 0.06124073491724517, 'inch': 0.06124073491724517, 'flinch': 0.06710800121255817, 'ribs': 0.06124073491724517, 'barbiturates': 0.06710800121255817, 'ding': 0.06710800121255817, 'rope': 0.06710800121255817, 'hoping': 0.06124073491724517, 'dopamine': 0.06710800121255817, 'opening': 0.13421600242511633, 'hyman': 0.06710800121255817, 'phyllis': 0.06710800121255817, 'bi': 0.06710800121255817, 'rolla': 0.06710800121255817, 'shining': 0.13421600242511633, 'philly': 0.06710800121255817, 'grimy': 0.05707784323135476, 'whites': 0.06710800121255817, 'swimming': 0.06124073491724517, 'johnny': 0.06124073491724517, 'diary': 0.06124073491724517, 'dear': 0.06124073491724517, 'rodney': 0.06710800121255817, 'luther': 0.06710800121255817, 'focused': 0.06710800121255817, 'illadelph': 0.06710800121255817, 'radar': 0.06710800121255817, 'assistance': 0.06710800121255817, 'sans': 0.06710800121255817, 'sacred': 0.06710800121255817, 'hated': 0.06124073491724517, 'graduated': 0.06710800121255817, 'underestimated': 0.06710800121255817, 'underachievers': 0.06710800121255817, 'appreciated': 0.06710800121255817, 'underrated': 0.06124073491724517, 'unsung': 0.06710800121255817, 'eventually': 0.05707784323135476, 'tempurpedic': 0.06710800121255817, 'blastoff': 0.06710800121255817, 'deleted': 0.06124073491724517, 'trash': 0.06710800121255817, 'cement': 0.06710800121255817, 'asphalt': 0.06710800121255817, 'greenest': 0.06124073491724517, 'thumb': 0.06710800121255817, 'sowing': 0.06710800121255817, 'knowing': 0.05707784323135476, 'genius': 0.06710800121255817, 'straining': 0.06710800121255817, 'phoenix': 0.06710800121255817, 'flames': 0.06710800121255817, 'rising': 0.06710800121255817, 'remix': 0.06710800121255817, 'furthermore': 0.06710800121255817, 'moon': 0.05384885358104667, 'mastermind': 0.06710800121255817, 'medina': 0.06124073491724517, 'direct': 0.06710800121255817, 'stationed': 0.06710800121255817, 'pyrrhus': 0.06710800121255817, 'bombardier': 0.06710800121255817, 'pilot': 0.06710800121255817, 'flyingest': 0.06710800121255817, 'livest': 0.06710800121255817, 'stuyvesant': 0.06710800121255817, 'cypress': 0.06710800121255817, 'cooper': 0.06710800121255817, 'avenue': 0.06124073491724517, 'clarendon': 0.06710800121255817, 'cadman': 0.06710800121255817, 'bergen': 0.06710800121255817, 'ave': 0.11415568646270952, 'bedford': 0.13421600242511633, 'baltic': 0.06710800121255817, 'albany': 0.06710800121255817, 'alblemarle': 0.06710800121255817, 'ashland': 0.06710800121255817, 'asia': 0.06710800121255817, 'europe': 0.06124073491724517, 'miracles': 0.06710800121255817, 'automatics': 0.06710800121255817, 'derringers': 0.06710800121255817, 'swaggerers': 0.06710800121255817, 'swingers': 0.06710800121255817, 'cameras': 0.05384885358104667, 'racketeers': 0.06710800121255817, 'talented': 0.06710800121255817, 'traffickers': 0.06710800121255817, 'narcotic': 0.06710800121255817, 'champions': 0.06710800121255817, 'dignitaries': 0.06710800121255817, 'gamblers': 0.06710800121255817, 'scramblers': 0.06710800121255817, 'saints': 0.06710800121255817, 'sheep': 0.06124073491724517, 'swift': 0.051210576936041745, 'taylor': 0.06124073491724517, 'page': 0.05707784323135476, 'funny': 0.05707784323135476, 'obama': 0.06124073491724517, 'choke': 0.05707784323135476, 'prize': 0.06124073491724517, 'barrels': 0.05707784323135476, 'job': 0.051210576936041745, 'lock': 0.11415568646270952, 'difference': 0.05707784323135476, 'holler': 0.06124073491724517, 'fans': 0.05707784323135476, 'earths': 0.06124073491724517, 'africa': 0.05707784323135476, 'double': 0.051210576936041745, 'lay': 0.04534331064072874, 'finally': 0.05384885358104667, 'mama': 0.05384885358104667, 'hair': 0.04534331064072874, 'nation': 0.06124073491724517, 'mean': 0.04118041895483834, 'swear': 0.11415568646270952, 'number': 0.04534331064072874, 'eminem': 0.04897994581621482, 'knowledge': 0.043818695599843256, 'great': 0.04534331064072874, 'late': 0.04897994581621482, 'bottle': 0.04897994581621482, 'carry': 0.04897994581621482, 'sinners': 0.05707784323135476, 'clothes': 0.04534331064072874, 'picture': 0.04704768525015135, 'actually': 0.04704768525015135, 'note': 0.051210576936041745, 'bell': 0.051210576936041745, 'cool': 0.03894978783501141, 'wait': 0.037017527268947935, 'stitch': 0.06124073491724517, 'drug': 0.04897994581621482, 'stealth': 0.06124073491724517, 'think': 0.03378853761863984, 'eat': 0.03894978783501141, 'bet': 0.04534331064072874, 'handlers': 0.06124073491724517, 'church': 0.05384885358104667, 'doing': 0.22671655320364367, 'clinton': 0.06124073491724517, 'baller': 0.06124073491724517, 'bum': 0.05707784323135476, 'martin': 0.05384885358104667, 'central': 0.06124073491724517, 'atlantic': 0.05707784323135476, 'weight': 0.04897994581621482, 'slang': 0.04704768525015135, 'stars': 0.11415568646270952, 'polar': 0.05707784323135476, 'talk': 0.037017527268947935, 'cross': 0.05707784323135476, 'dirty': 0.04897994581621482, 'bleed': 0.05384885358104667, 'night': 0.03453077514122184, 'win': 0.05707784323135476, 'pill': 0.04897994581621482, 'born': 0.042439513533659254, 'read': 0.04118041895483834, 'dollar': 0.08763739119968651, 'smoked': 0.051210576936041745, 'switch': 0.04897994581621482, 'stage': 0.051210576936041745, 'beware': 0.05707784323135476, 'kill': 0.06757707523727968, 'throat': 0.051210576936041745, 'bomb': 0.04897994581621482, 'did': 0.0330825215396984, 'seeds': 0.04897994581621482, 'add': 0.05707784323135476, 'set': 0.0759028586090605, 'said': 0.027921271323326835, 'gonna': 0.031150260973634922, 'sun': 0.04897994581621482, 'sleep': 0.03453077514122184, 'eyes': 0.0330825215396984, 'hard': 0.07062630531905065, 'def': 0.04704768525015135, 'mos': 0.04704768525015135, 'peace': 0.03614026115372212, 'king': 0.03453077514122184, 'inside': 0.03453077514122184, 'dick': 0.037017527268947935, 'dope': 0.09795989163242964, 'road': 0.04704768525015135, 'house': 0.042439513533659254, 'ya': 0.12963742220982338, 'check': 0.03378853761863984, 'bridge': 0.035313152659525324, 'tell': 0.029445886364212314, 'america': 0.04534331064072874, 'told': 0.031150260973634922, 'forever': 0.04704768525015135, 'oh': 0.062300521947269843, 'money': 0.031150260973634922, 'write': 0.0400221642208866, 'fiend': 0.051210576936041745, 'thought': 0.0800443284417732, 'saying': 0.04534331064072874, 'high': 0.02999200623968319, 'remember': 0.043818695599843256, 'sound': 0.035313152659525324, 'right': 0.0248865189407914, 'bring': 0.0330825215396984, 'bitch': 0.02841184234294827, 'fucking': 0.1200664926626598, 'goes': 0.051210576936041745, 'mind': 0.031150260973634922, 'brain': 0.0400221642208866, 'big': 0.035313152659525324, 'live': 0.061119095936663516, 'ma': 0.035313152659525324, 'rock': 0.0330825215396984, 'hit': 0.029445886364212314, 'need': 0.027921271323326835, 'black': 0.05397473857548905, 'used': 0.037017527268947935, 'guess': 0.03453077514122184, 'street': 0.03795142930453025, 'gods': 0.04897994581621482, 'runners': 0.06124073491724517, 'little': 0.03176611813674822, 'watch': 0.03378853761863984, 'face': 0.030559547968331758, 'break': 0.032409355552455846}, {'domain': 0.058771511236028376, 'wander': 0.058771511236028376, 'foolishly': 0.058771511236028376, 'travelers': 0.058771511236028376, 'prey': 0.05363310596736974, 'bandits': 0.058771511236028376, 'threatened': 0.058771511236028376, 'unless': 0.04715948092778979, 'showing': 0.04998734940971662, 'search': 0.058771511236028376, 'continued': 0.05363310596736974, 'seldom': 0.058771511236028376, 'strangers': 0.05363310596736974, 'villages': 0.058771511236028376, 'remote': 0.05363310596736974, 'sir': 0.05363310596736974, 'disfigured': 0.058771511236028376, 'seeking': 0.04998734940971662, 'traveled': 0.11754302247205675, 'hideous': 0.058771511236028376, 'screams': 0.058771511236028376, 'vengeful': 0.058771511236028376, 'angry': 0.058771511236028376, 'bitter': 0.05363310596736974, 'lesson': 0.04998734940971662, 'learned': 0.04715948092778979, 'injuries': 0.058771511236028376, 'recovered': 0.058771511236028376, 'later': 0.04289541312309332, 'sounds': 0.044848944141057986, 'explosion': 0.058771511236028376, 'experiment': 0.05363310596736974, 'conducting': 0.058771511236028376, 'experiments': 0.058771511236028376, 'forbidden': 0.04998734940971662, 'pursue': 0.05363310596736974, 'happens': 0.04715948092778979, 'lord': 0.04715948092778979, 'ironclad': 0.058771511236028376, 'feared': 0.058771511236028376, 'vigilance': 0.058771511236028376, 'relaxes': 0.058771511236028376, 'sleeps': 0.05363310596736974, 'fighting': 0.04998734940971662, 'guided': 0.05363310596736974, 'monarch': 0.05363310596736974, 'mysterious': 0.058771511236028376, 'powerful': 0.04715948092778979, 'invisible': 0.044848944141057986, 'escaped': 0.058771511236028376, 'humor': 0.05363310596736974, 'neighborhood': 0.05363310596736974, 'silly': 0.05363310596736974, 'ones': 0.05363310596736974, 'pretend': 0.04998734940971662, 'lessons': 0.04998734940971662, 'memorize': 0.058771511236028376, 'skins': 0.058771511236028376, 'swings': 0.058771511236028376, 'tramp': 0.058771511236028376, 'rings': 0.05363310596736974, 'standing': 0.04715948092778979, 'lovers': 0.05363310596736974, 'glory': 0.04998734940971662, 'blaze': 0.058771511236028376, 'royalty': 0.058771511236028376, 'crooks': 0.058771511236028376, 'loyalty': 0.05363310596736974, 'penance': 0.058771511236028376, 'begging': 0.05363310596736974, 'lower': 0.058771511236028376, 'bucks': 0.04998734940971662, 'codefendants': 0.058771511236028376, 'codependence': 0.058771511236028376, 'depend': 0.11754302247205675, 'plot': 0.05363310596736974, 'focusing': 0.058771511236028376, 'trouble': 0.04998734940971662, 'buys': 0.058771511236028376, 'darken': 0.058771511236028376, 'sparkin': 0.058771511236028376, 'fantastik': 0.058771511236028376, 'riot': 0.05363310596736974, 'thief': 0.05363310596736974, 'click': 0.04998734940971662, 'eyelid': 0.058771511236028376, 'apt': 0.058771511236028376, 'crime': 0.04120318758340488, 'bolster': 0.058771511236028376, 'sided': 0.058771511236028376, 'attributes': 0.058771511236028376, 'helper': 0.058771511236028376, 'sympathiser': 0.058771511236028376, 'socialize': 0.05363310596736974, 'likes': 0.058771511236028376, 'dictionary': 0.05363310596736974, 'chick': 0.044848944141057986, 'loc': 0.04998734940971662, 'stack': 0.04998734940971662, 'cinderellas': 0.058771511236028376, 'folk': 0.04998734940971662, 'number': 0.03971053887239935, 'jealousy': 0.058771511236028376, 'crews': 0.04998734940971662, 'choosy': 0.058771511236028376, 'loosely': 0.058771511236028376, 'mans': 0.05363310596736974, 'chance': 0.04998734940971662, 'glance': 0.05363310596736974, 'wounds': 0.05363310596736974, 'stab': 0.10726621193473948, 'seein': 0.058771511236028376, 'baboon': 0.058771511236028376, 'signs': 0.04289541312309332, 'advice': 0.05363310596736974, 'ignore': 0.058771511236028376, 'bummy': 0.058771511236028376, 'fam': 0.04998734940971662, 'funnies': 0.058771511236028376, 'sunday': 0.058771511236028376, 'dunnies': 0.058771511236028376, 'duns': 0.058771511236028376, 'sisters': 0.058771511236028376, 'comrade': 0.058771511236028376, 'homies': 0.05363310596736974, 'boys': 0.04289541312309332, 'asssociates': 0.058771511236028376, 'lies': 0.04289541312309332, 'finish': 0.05363310596736974, 'surprise': 0.05363310596736974, 'bright': 0.05363310596736974, 'knife': 0.04289541312309332, 'letter': 0.04998734940971662, 'send': 0.04998734940971662, 'cellular': 0.058771511236028376, 'deaf': 0.05363310596736974, 'trees': 0.04289541312309332, 'fellas': 0.10726621193473948, 'dad': 0.044848944141057986, 'sad': 0.05363310596736974, 'friendly': 0.05363310596736974, 'instead': 0.044848944141057986, 'somethin': 0.033236913832819404, 'peeps': 0.04998734940971662, 'depends': 0.04715948092778979, 'mr': 0.09431896185557959, 'size': 0.04998734940971662, 'actually': 0.04120318758340488, 'negro': 0.04998734940971662, 'note': 0.044848944141057986, 'feeding': 0.05363310596736974, 'cheap': 0.04715948092778979, 'mom': 0.04289541312309332, 'lead': 0.08240637516680976, 'plans': 0.04715948092778979, 'choose': 0.04998734940971662, 'guys': 0.044848944141057986, 'cure': 0.04998734940971662, 'sorry': 0.03837531910147804, 'person': 0.04120318758340488, 'having': 0.04998734940971662, 'trust': 0.04289541312309332, 'skit': 0.08240637516680976, 'foes': 0.044848944141057986, 'called': 0.03606478231474624, 'think': 0.029591157275166292, 'strings': 0.04715948092778979, 'bubble': 0.04998734940971662, 'sense': 0.04998734940971662, 'met': 0.09431896185557959, 'awesome': 0.05363310596736974, 'shoot': 0.03837531910147804, 'enemy': 0.044848944141057986, 'wouldn': 0.03971053887239935, 'happened': 0.08969788828211597, 'talkin': 0.037167465897170515, 'drastic': 0.05363310596736974, 'character': 0.10726621193473948, 'going': 0.037167465897170515, 'wild': 0.04289541312309332, 'woman': 0.09997469881943324, 'similar': 0.04715948092778979, 'laugh': 0.03606478231474624, 'bleeding': 0.04715948092778979, 'honor': 0.04998734940971662, 'catch': 0.03241902575709313, 'meaning': 0.05363310596736974, 'night': 0.030241190357809596, 'dummy': 0.04998734940971662, 'paid': 0.04715948092778979, 'read': 0.03606478231474624, 'cut': 0.03165073800576113, 'blunt': 0.04715948092778979, 'switch': 0.04289541312309332, 'worthy': 0.04998734940971662, 'nice': 0.07675063820295608, 'ear': 0.04715948092778979, 'spitting': 0.04715948092778979, 'secret': 0.04289541312309332, 'jail': 0.04120318758340488, 'white': 0.06822250259356315, 'steel': 0.08240637516680976, 'story': 0.03971053887239935, 'spell': 0.044848944141057986, 'phone': 0.03837531910147804, 'sentence': 0.04998734940971662, 'hell': 0.03165073800576113, 'deal': 0.03606478231474624, 'good': 0.026763288793239456, 'term': 0.04998734940971662, 'girls': 0.04289541312309332, 'hands': 0.03606478231474624, 'said': 0.024452752006507657, 'left': 0.029591157275166292, 'damn': 0.03165073800576113, 'moms': 0.04998734940971662, 'fantastic': 0.05363310596736974, 'hide': 0.05363310596736974, 'world': 0.07464714555597764, 'act': 0.04289541312309332, 'force': 0.04289541312309332, 'form': 0.04998734940971662, 'quiet': 0.04998734940971662, 'ghetto': 0.03971053887239935, 'hear': 0.030241190357809596, 'eyes': 0.028972846028122938, 'turn': 0.02781997280898801, 'light': 0.033236913832819404, 'people': 0.057945692056245876, 'smoke': 0.033236913832819404, 'things': 0.03837531910147804, 'feel': 0.05065417894093966, 'peace': 0.03165073800576113, 'smile': 0.044848944141057986, 'dr': 0.044848944141057986, 'dance': 0.04120318758340488, 'try': 0.057945692056245876, 'ago': 0.044848944141057986, 'end': 0.09971074149845822, 'doom': 0.21447706561546662, 'sure': 0.03241902575709313, 'ya': 0.11353321628343506, 'check': 0.029591157275166292, 'arms': 0.04289541312309332, 'broke': 0.03606478231474624, 'tell': 0.07736391533228688, 'hope': 0.06822250259356315, 'telling': 0.04289541312309332, 'really': 0.03165073800576113, 'battle': 0.04289541312309332, 'money': 0.02728062048843449, 'thing': 0.059182314550332585, 'seen': 0.03505041174967734, 'friend': 0.037167465897170515, 'years': 0.07433493179434103, 'ho': 0.03505041174967734, 'times': 0.034111251296781574, 'dangerous': 0.04289541312309332, 'close': 0.037167465897170515, 'worst': 0.05363310596736974, 'right': 0.021794991672031045, 'bitch': 0.024882381851992545, 'lot': 0.06483805151418626, 'mind': 0.02728062048843449, 'outro': 0.05065417894093966, 'bitches': 0.03606478231474624, 'way': 0.04648979760440026, 'blow': 0.03241902575709313, 'wanted': 0.04120318758340488, 'use': 0.03837531910147804, 'need': 0.09781100802603063, 'nowadays': 0.05363310596736974, 'black': 0.02363486393078138, 'used': 0.03241902575709313, 'crack': 0.06822250259356315, 'friends': 0.3241902575709313, 'type': 0.07675063820295608, 'leave': 0.03505041174967734, 'come': 0.04428443043955171, 'killer': 0.04120318758340488, 'tryin': 0.037167465897170515, 'brothers': 0.04120318758340488, 'face': 0.10705315517295783, 'better': 0.05065417894093966, 'niggas': 0.04976476370398509, 'll': 0.06538497501609314, 'guns': 0.03971053887239935, 'day': 0.02532708947046983, 'real': 0.08345991842696403}, {'continues': 0.046228727674644775, 'saga': 0.04218694054256299, 'visas': 0.046228727674644775, 'immigrants': 0.046228727674644775, 'reefer': 0.046228727674644775, 'pounds': 0.04218694054256299, 'barrels': 0.03931924693511193, 'rica': 0.046228727674644775, 'costa': 0.046228727674644775, 'plants': 0.046228727674644775, 'processing': 0.046228727674644775, 'fargo': 0.046228727674644775, 'wells': 0.046228727674644775, 'launder': 0.046228727674644775, 'cargo': 0.046228727674644775, 'freight': 0.046228727674644775, 'ship': 0.046228727674644775, 'interior': 0.046228727674644775, 'ripped': 0.046228727674644775, 'intestines': 0.04218694054256299, 'syria': 0.046228727674644775, 'commit': 0.046228727674644775, 'bribe': 0.046228727674644775, 'judges': 0.04218694054256299, 'prosecutor': 0.04218694054256299, 'shooters': 0.046228727674644775, 'stands': 0.046228727674644775, 'blasting': 0.04218694054256299, 'gravano': 0.046228727674644775, 'sammy': 0.046228727674644775, 'soprano': 0.04218694054256299, 'customs': 0.04218694054256299, 'rushed': 0.046228727674644775, 'feds': 0.046228727674644775, 'limp': 0.046228727674644775, 'pirate': 0.046228727674644775, 'surgery': 0.046228727674644775, 'underwent': 0.046228727674644775, 'leg': 0.03931924693511193, 'key': 0.03931924693511193, 'smuggle': 0.03931924693511193, 'worker': 0.046228727674644775, 'cork': 0.046228727674644775, 'popped': 0.046228727674644775, 'bombs': 0.03931924693511193, 'terrorist': 0.046228727674644775, 'initiated': 0.046228727674644775, 'specialist': 0.046228727674644775, 'newsstand': 0.046228727674644775, 'iran': 0.046228727674644775, 'afghanistan': 0.046228727674644775, 'muhammad': 0.046228727674644775, 'spray': 0.0370948909639732, 'burial': 0.046228727674644775, 'yachts': 0.046228727674644775, 'custom': 0.046228727674644775, 'luxurious': 0.046228727674644775, 'docks': 0.046228727674644775, 'thailand': 0.046228727674644775, 'sacks': 0.046228727674644775, 'rice': 0.046228727674644775, 'copilot': 0.046228727674644775, 'castro': 0.046228727674644775, 'burlington': 0.046228727674644775, 'heist': 0.046228727674644775, 'blasphemy': 0.046228727674644775, 'singers': 0.046228727674644775, 'district': 0.046228727674644775, 'garment': 0.046228727674644775, 'raise': 0.0370948909639732, 'shark': 0.04218694054256299, 'loan': 0.046228727674644775, 'parks': 0.046228727674644775, 'bricklaying': 0.046228727674644775, 'contracting': 0.046228727674644775, 'wedding': 0.046228727674644775, 'missed': 0.04218694054256299, 'sour': 0.046228727674644775, 'steak': 0.03931924693511193, 'sparks': 0.046228727674644775, 'outside': 0.03527745980303014, 'chaos': 0.046228727674644775, 'stakeout': 0.046228727674644775, 'restaurant': 0.046228727674644775, '10304': 0.09245745534928955, 'hills': 0.09245745534928955, 'singing': 0.07863849387022386, 'precinct': 0.046228727674644775, 'rodriguez': 0.13868618302393432, 'bastards': 0.046228727674644775, 'agreed': 0.046228727674644775, 'uhm': 0.046228727674644775, 'outta': 0.07863849387022386, 'nicely': 0.046228727674644775, 'planned': 0.046228727674644775, 'pleasure': 0.046228727674644775, 'dk': 0.32360109372251344, 'briefcase': 0.08437388108512597, 'greco': 0.1849149106985791, 'noodles': 0.046228727674644775, 'maximillion': 0.046228727674644775, 'lovely': 0.03931924693511193, 'starks': 0.11795774080533579, 'steels': 0.23114363837322385, 'bobby': 0.13868618302393432, 'ahh': 0.04218694054256299, 'mk': 0.046228727674644775, 'hells': 0.13868618302393432, 'dealing': 0.04218694054256299, 'bullshit': 0.04218694054256299, 'lucky': 0.03931924693511193, 'line': 0.030185410224440355, 'known': 0.03931924693511193, 'witness': 0.04218694054256299, 'smash': 0.03931924693511193, 'jobs': 0.04218694054256299, 'plots': 0.03931924693511193, 'sewn': 0.04218694054256299, 'finger': 0.0370948909639732, 'wives': 0.04218694054256299, 'price': 0.0370948909639732, 'aight': 0.03931924693511193, 'photographs': 0.04218694054256299, 'rule': 0.04218694054256299, 'champagne': 0.0370948909639732, 'remote': 0.04218694054256299, 'powerful': 0.0370948909639732, 'neighborhood': 0.04218694054256299, 'standing': 0.0370948909639732, 'classics': 0.04218694054256299, 'late': 0.033740843651187874, 'south': 0.0370948909639732, 'ether': 0.04218694054256299, 'bought': 0.03527745980303014, 'jewels': 0.03527745980303014, 'maintain': 0.03527745980303014, 'suicide': 0.03931924693511193, 'mr': 0.1483795638558928, 'coat': 0.0370948909639732, 'ex': 0.033740843651187874, 'grew': 0.033740843651187874, 'tried': 0.0275700914538794, 'guys': 0.03527745980303014, 'ok': 0.11795774080533579, 'baths': 0.04218694054256299, 'person': 0.032409766195579094, 'skit': 0.032409766195579094, 'fatal': 0.03527745980303014, 'bird': 0.031235672670948345, 'miles': 0.03931924693511193, 'ask': 0.0551401829077588, 'brains': 0.0370948909639732, 'drug': 0.10122253095356362, 'order': 0.03527745980303014, 'think': 0.02327592948490751, 'taking': 0.033740843651187874, 'question': 0.03527745980303014, 'area': 0.04218694054256299, 'look': 0.021882744204718176, 'going': 0.029235332275472283, 'wild': 0.033740843651187874, 'gza': 0.2916878957602118, 'label': 0.033740843651187874, 'talk': 0.051000570912092494, 'didn': 0.029235332275472283, 'angels': 0.07863849387022386, 'dealer': 0.07863849387022386, 'scene': 0.032409766195579094, 'schemes': 0.03931924693511193, 'runs': 0.04218694054256299, 'rules': 0.03527745980303014, 'reconstruct': 0.04218694054256299, 'island': 0.030185410224440355, 'away': 0.028367979063497292, 'thousand': 0.06481953239115819, 'team': 0.03527745980303014, 'bomb': 0.033740843651187874, 'rza': 0.3240976619557909, 'hour': 0.031235672670948345, 'state': 0.028367979063497292, 'cream': 0.031235672670948345, 'minimum': 0.0370948909639732, 'talking': 0.032409766195579094, 'gave': 0.029235332275472283, 'half': 0.11347191625398917, 'dead': 0.025500285456046247, 'set': 0.026143623092358563, 'working': 0.07863849387022386, 'coming': 0.06481953239115819, 'deal': 0.028367979063497292, 'bronx': 0.04218694054256299, 'point': 0.032409766195579094, 'shots': 0.026831362911655034, 'dollars': 0.032409766195579094, 'good': 0.08420629405507513, 'gold': 0.025500285456046247, 'city': 0.025500285456046247, 'hands': 0.028367979063497292, 'left': 0.02327592948490751, 'sent': 0.032409766195579094, 'men': 0.029235332275472283, 'eastern': 0.04218694054256299, 'food': 0.031235672670948345, 'middle': 0.04218694054256299, 'hook': 0.04210314702753756, 'small': 0.032409766195579094, 'sharp': 0.032409766195579094, 'feel': 0.019921882172122193, 'peace': 0.024895962639002206, 'tony': 0.07863849387022386, 'baby': 0.02327592948490751, 'hey': 0.06037082044888071, 'killah': 0.06037082044888071, 'yes': 0.0275700914538794, 'house': 0.029235332275472283, 'land': 0.0370948909639732, 'want': 0.02105157351376878, 'soul': 0.026143623092358563, 'lost': 0.026143623092358563, 'gone': 0.030185410224440355, 'thanks': 0.03527745980303014, 'oh': 0.021458498323964452, 'bottles': 0.03527745980303014, 'friend': 0.029235332275472283, 'power': 0.029235332275472283, 'cash': 0.10200114182418499, 'right': 0.10286154432521907, 'stand': 0.030185410224440355, 'motherfucker': 0.029235332275472283, 'ass': 0.02278957577957324, 'forget': 0.033740843651187874, 'kid': 0.0243261919314155, 'fucking': 0.16542054872327638, 'outro': 0.019921882172122193, 'blow': 0.025500285456046247, 'hit': 0.08113761919733481, 'use': 0.030185410224440355, 'grand': 0.06748168730237575, 'need': 0.01923414235282572, 'factory': 0.04218694054256299, 'plan': 0.030185410224440355, 'used': 0.025500285456046247, 'game': 0.020660610714346557, 'fake': 0.026831362911655034, 'drop': 0.026831362911655034, 'nigga': 0.0587162468859812, 'turned': 0.029235332275472283, 'believe': 0.028367979063497292, 'filled': 0.03527745980303014, 'niggas': 0.07828832918130826}, {'ships': 0.06858312680765201, 'apathy': 0.06858312680765201, 'profound': 0.06858312680765201, 'ghosts': 0.06858312680765201, 'corrosive': 0.06858312680765201, 'throes': 0.06858312680765201, 'occultism': 0.06858312680765201, 'swim': 0.06858312680765201, 'tzu': 0.06858312680765201, 'chug': 0.06858312680765201, 'amore': 0.06858312680765201, 'yelled': 0.06858312680765201, 'morn': 0.06858312680765201, 'fiscal': 0.06858312680765201, 'crucifix': 0.06858312680765201, 'soups': 0.06858312680765201, 'disrepair': 0.06858312680765201, 'blisters': 0.06858312680765201, 'assisted': 0.06858312680765201, 'fisher': 0.06858312680765201, 'unloved': 0.06858312680765201, 'wholly': 0.06858312680765201, 'buzzed': 0.06858312680765201, 'asteroid': 0.06858312680765201, 'contain': 0.06858312680765201, 'oooh': 0.06258688997933157, 'wolf': 0.13716625361530402, 'xerxes': 0.06858312680765201, 'adopt': 0.06858312680765201, 'slurpee': 0.06858312680765201, 'surly': 0.06858312680765201, 'detox': 0.06858312680765201, 'robes': 0.06858312680765201, 'cloth': 0.06858312680765201, 'terry': 0.06858312680765201, 'claw': 0.06858312680765201, 'dragon': 0.06258688997933157, 'orb': 0.06858312680765201, 'kools': 0.06858312680765201, 'seraphim': 0.06858312680765201, 'chimera': 0.06858312680765201, 'sourdough': 0.06858312680765201, 'vivarium': 0.06858312680765201, 'survive': 0.06858312680765201, 'id': 0.06858312680765201, 'bacteria': 0.06858312680765201, 'norcal': 0.06858312680765201, 'fray': 0.06858312680765201, 'kites': 0.13716625361530402, 'grid': 0.06858312680765201, 'sumner': 0.06858312680765201, 'pigs': 0.06258688997933157, 'rex': 0.06858312680765201, 'sara': 0.06858312680765201, 'ordering': 0.06858312680765201, 'cafe': 0.06858312680765201, 'grits': 0.06858312680765201, 'pillow': 0.06258688997933157, 'shrimp': 0.06858312680765201, 'crypt': 0.06858312680765201, 'sandwich': 0.06258688997933157, 'camry': 0.06858312680765201, 'aesop': 0.06858312680765201, 'backseat': 0.06858312680765201, 'shaped': 0.06858312680765201, 'fancy': 0.06858312680765201, 'cellophane': 0.06858312680765201, 'medellin': 0.06858312680765201, 'smells': 0.06858312680765201, 'peg': 0.06858312680765201, 'lice': 0.06858312680765201, 'grin': 0.06858312680765201, 'income': 0.06858312680765201, 'drencrom': 0.06858312680765201, 'breadcrumbs': 0.06858312680765201, 'h1n1': 0.06858312680765201, 'bile': 0.06858312680765201, 'hack': 0.06858312680765201, 'schmoozing': 0.06858312680765201, 'chewin': 0.06858312680765201, 'sale': 0.06858312680765201, 'howard': 0.06858312680765201, 'foresight': 0.06858312680765201, 'vincent': 0.06858312680765201, 'st': 0.06858312680765201, 'curdles': 0.06858312680765201, 'dairy': 0.06858312680765201, 'warehouse': 0.06858312680765201, 'thermals': 0.06858312680765201, 'thermos': 0.06858312680765201, 'shorn': 0.06858312680765201, 'paranormal': 0.06858312680765201, 'terraforming': 0.06858312680765201, 'cave': 0.06858312680765201, 'feral': 0.06858312680765201, 'support': 0.06858312680765201, 'heroin': 0.06258688997933157, 'tech': 0.06258688997933157, 'army': 0.05833249224402077, 'tone': 0.06258688997933157, 'dive': 0.05833249224402077, 'circle': 0.11666498448804154, 'ton': 0.06258688997933157, 'air': 0.05503252498756441, 'chips': 0.05833249224402077, 'bug': 0.11006504997512882, 'diary': 0.06258688997933157, 'moon': 0.05503252498756441, 'losing': 0.05833249224402077, 'gross': 0.05833249224402077, 'source': 0.05833249224402077, 'pants': 0.05233625541570032, 'yelling': 0.06258688997933157, 'meds': 0.05503252498756441, 'failed': 0.05503252498756441, 'hello': 0.06258688997933157, 'cherry': 0.06258688997933157, 'fortune': 0.06258688997933157, 'shoes': 0.050056591974859274, 'worms': 0.06258688997933157, 'darts': 0.06258688997933157, 'cup': 0.05833249224402077, 'gate': 0.05503252498756441, 'leg': 0.05833249224402077, 'outside': 0.10467251083140064, 'wheels': 0.06258688997933157, 'asleep': 0.05503252498756441, 'tooth': 0.05503252498756441, 'address': 0.06258688997933157, 'host': 0.06258688997933157, 'fried': 0.05503252498756441, 'fools': 0.05833249224402077, 'mud': 0.06258688997933157, 'pale': 0.05833249224402077, 'stepped': 0.06258688997933157, 'hair': 0.046340018587379864, 'curse': 0.05503252498756441, 'pretend': 0.05833249224402077, 'loc': 0.05833249224402077, 'knife': 0.050056591974859274, 'lips': 0.050056591974859274, 'fresh': 0.04808185768038952, 'picture': 0.04808185768038952, 'coat': 0.05503252498756441, 'doctor': 0.05833249224402077, 'ex': 0.050056591974859274, 'piss': 0.050056591974859274, 'dude': 0.05833249224402077, 'tail': 0.06258688997933157, 'meal': 0.06258688997933157, 'meat': 0.05833249224402077, 'mystery': 0.06258688997933157, 'fish': 0.05233625541570032, 'marshall': 0.05233625541570032, 'paul': 0.05503252498756441, 'wearing': 0.05833249224402077, 'river': 0.05503252498756441, 'seat': 0.05233625541570032, 'dogs': 0.05503252498756441, 'pair': 0.050056591974859274, 'eat': 0.03980595741122803, 'eye': 0.12270571828761692, 'court': 0.046340018587379864, 'shoot': 0.04478189042393316, 'probably': 0.042085620852069065, 'bum': 0.05833249224402077, 'nose': 0.05833249224402077, 'question': 0.05233625541570032, 'look': 0.03246438083379787, 'soft': 0.05233625541570032, 'employ': 0.06258688997933157, 'bit': 0.04337239205076099, 'kiss': 0.046340018587379864, 'box': 0.046340018587379864, 'pick': 0.04478189042393316, 'open': 0.03980595741122803, 'true': 0.042085620852069065, 'blue': 0.08956378084786631, 'night': 0.07057961755635661, 'help': 0.046340018587379864, 'born': 0.04337239205076099, 'stay': 0.035289808778178305, 'cut': 0.036934673493204145, 'map': 0.05833249224402077, 'cassette': 0.06258688997933157, 'bear': 0.05503252498756441, 'lick': 0.04808185768038952, 'square': 0.05233625541570032, 'avoid': 0.06258688997933157, 'wind': 0.04808185768038952, 'belt': 0.05233625541570032, 'year': 0.046340018587379864, 'ways': 0.04808185768038952, 'dice': 0.05503252498756441, 'home': 0.036089384023748616, 'gave': 0.08674478410152198, 'fear': 0.050056591974859274, 'cats': 0.050056591974859274, 'deal': 0.042085620852069065, 'good': 0.031231288603845553, 'took': 0.036089384023748616, 'long': 0.036934673493204145, 'said': 0.05707003806396292, 'understand': 0.04337239205076099, 'damn': 0.036934673493204145, 'rush': 0.05233625541570032, 'sun': 0.050056591974859274, 'trying': 0.04090190609587231, 'ring': 0.08674478410152198, 'beat': 0.03980595741122803, 'hear': 0.035289808778178305, 'eyes': 0.03380972058290758, 'turn': 0.06492876166759574, 'king': 0.035289808778178305, 'shirt': 0.05833249224402077, 'cop': 0.04808185768038952, 'body': 0.036934673493204145, 'plus': 0.03878565359561271, 'door': 0.04478189042393316, 'try': 0.03380972058290758, 'end': 0.03878565359561271, 'heart': 0.036934673493204145, 'head': 0.062462577207691106, 'pipe': 0.05233625541570032, 'juice': 0.05233625541570032, 'power': 0.04337239205076099, 'high': 0.03065127153224106, 'close': 0.04337239205076099, 'bitch': 0.029036373473164845, 'word': 0.24171879102211338, 'god': 0.027580588553127023, 'wake': 0.046340018587379864, 'new': 0.06130254306448212, 'fly': 0.13011717615228297, 'black': 0.027580588553127023, 'crack': 0.07961191482245605, 'friends': 0.037831223116758274, 'cold': 0.03980595741122803, 'corner': 0.042085620852069065, 'hold': 0.06624351497425948, 'care': 0.04478189042393316, 'corners': 0.050056591974859274, 'day': 0.029555322847596783, 'chorus': 0.028050105437017157}, {'realest': 0.015085257837911774, 'meds': 0.013264436516703206, 'poupon': 0.016530525027929805, 'grey': 0.016530525027929805, 'elaborate': 0.016530525027929805, 'modest': 0.016530525027929805, 'fakin': 0.016530525027929805, 'fabricate': 0.016530525027929805, 'paged': 0.016530525027929805, 'obama': 0.015085257837911774, 'ac': 0.015085257837911774, 'amaze': 0.015085257837911774, 'polo': 0.016530525027929805, 'couch': 0.016530525027929805, 'marks': 0.014059824447574188, 'afro': 0.016530525027929805, 'photoshop': 0.016530525027929805, 'sandman': 0.03306105005585961, 'frontin': 0.014059824447574188, 'spiral': 0.016530525027929805, 'viral': 0.016530525027929805, 'season': 0.016530525027929805, 'mercedes': 0.014059824447574188, 'bm': 0.015085257837911774, 'diem': 0.016530525027929805, 'tetris': 0.016530525027929805, 'extras': 0.016530525027929805, 'petty': 0.015085257837911774, 'paystub': 0.016530525027929805, 'analysts': 0.016530525027929805, 'aid': 0.016530525027929805, 'tastes': 0.016530525027929805, 'bae': 0.016530525027929805, 'ussé': 0.016530525027929805, 'downin': 0.016530525027929805, 'accountant': 0.016530525027929805, 'parmesan': 0.016530525027929805, 'counterfeits': 0.016530525027929805, 'finesse': 0.016530525027929805, 'allowances': 0.016530525027929805, 'sandwiches': 0.016530525027929805, 'waaaaay': 0.016530525027929805, 'syrup': 0.014059824447574188, 'buy': 0.013264436516703206, 'ride': 0.012614557257556155, 'soprano': 0.015085257837911774, 'levels': 0.015085257837911774, 'lil': 0.28972809668046434, 'ted': 0.015085257837911774, 'alcohol': 0.015085257837911774, 'blew': 0.010793735936347588, 'fact': 0.011169290067538123, 'mama': 0.013264436516703206, 'hol': 0.8435894668544512, 'play': 0.008698589487182508, 'thinkin': 0.011169290067538123, 'crime': 0.011589123867218573, 'somethin': 0.01869693749265911, 'quit': 0.03017051567582355, 'playin': 0.013264436516703206, 'piss': 0.012065092173093503, 'note': 0.012614557257556155, 'cool': 0.009594391592737886, 'evian': 0.015085257837911774, 'stroke': 0.02652887303340641, 'pray': 0.012065092173093503, 'stretch': 0.014059824447574188, 'greatest': 0.012065092173093503, 'socks': 0.012614557257556155, 'funk': 0.05305774606681282, 'pryor': 0.013264436516703206, 'richard': 0.014059824447574188, 'ayy': 0.1452007708779956, 'natural': 0.02522911451511231, 'talk': 0.01823684657372591, 'countin': 0.015085257837911774, 'ooh': 0.010793735936347588, 'pull': 0.01014385667720054, 'stay': 0.008505868635511766, 'pussy': 0.010793735936347588, 'stage': 0.012614557257556155, 'dat': 0.015085257837911774, 'kill': 0.008323035355991971, 'bloods': 0.014059824447574188, 'good': 0.007527647425120987, 'fuckin': 0.008698589487182508, 'went': 0.008902328794226191, 'left': 0.008323035355991971, 'world': 0.006998609144267174, 'gotta': 0.008698589487182508, 'speak': 0.011169290067538123, 'sit': 0.2464636762275813, 'boo': 0.014059824447574188, 'hate': 0.01014385667720054, 'baby': 0.008323035355991971, 'dick': 0.009118423286862956, 'tired': 0.013264436516703206, 'sick': 0.010454005900417682, 'girl': 0.009858547049103251, 'lives': 0.011589123867218573, 'kool': 0.014059824447574188, 'bout': 0.009858547049103251, 'taste': 0.010793735936347588, 'soul': 0.009348468746329556, 'high': 0.007387846468747635, 'remember': 0.010793735936347588, 'right': 0.01839067846347137, 'bitch': 0.22395549261654957, 'ass': 0.016298248805439706, 'crazy': 0.009858547049103251, 'fucking': 0.009858547049103251, 'way': 0.013076076260088065, 'block': 0.009594391592737886, 'nigga': 0.027994436577068696, 'won': 0.01596661064012413, 'watch': 0.008323035355991971, 'break': 0.007983305320062065, 'humble': 0.2122309842672513, 'day': 0.007123691012382271, 'chorus': 0.013521779818033831}, {'apologize': 0.042405869003141826, 'classics': 0.042405869003141826, 'carter': 0.046468630925607414, 'record': 0.031397769700148556, 'evans': 0.042405869003141826, 'clapped': 0.1696234760125673, 'gunned': 0.1696234760125673, 'simmons': 0.046468630925607414, 'russell': 0.042405869003141826, 'attention': 0.035460531622614144, 'faggot': 0.042405869003141826, 'ridin': 0.042405869003141826, 'eminem': 0.033915941225560055, 'irv': 0.046468630925607414, 'kane': 0.042405869003141826, 'stabbed': 0.03952329354507974, 'whack': 0.046468630925607414, 'beans': 0.042405869003141826, 'compared': 0.046468630925607414, 'rat': 0.03728739431381648, 'whiskers': 0.046468630925607414, 'havin': 0.042405869003141826, 'mustache': 0.046468630925607414, 'gro': 0.046468630925607414, 'ne': 0.046468630925607414, 'looks': 0.03728739431381648, 'puss': 0.042405869003141826, 'foxy': 0.046468630925607414, 'pine': 0.046468630925607414, 'fellas': 0.21202934501570914, 'chose': 0.03952329354507974, 'chapter': 0.046468630925607414, 'rocafella': 0.046468630925607414, 'puffy': 0.046468630925607414, 'daddy': 0.032577956164552065, 'diddy': 0.03952329354507974, 'slow': 0.032577956164552065, 'nah': 0.03728739431381648, 'knowledge': 0.030342056933288803, 'brolic': 0.046468630925607414, 'karate': 0.046468630925607414, '36': 0.046468630925607414, 'stan': 0.03952329354507974, 'fan': 0.042405869003141826, 'hangin': 0.07904658709015948, 'shirts': 0.046468630925607414, 'pies': 0.046468630925607414, 'jigga': 0.046468630925607414, 'jaz': 0.13940589277682225, 'wearin': 0.046468630925607414, 'smilin': 0.046468630925607414, 'crib': 0.035460531622614144, 'building': 0.032577956164552065, 'chased': 0.03728739431381648, '88': 0.046468630925607414, 'indirectly': 0.046468630925607414, 'blatant': 0.046468630925607414, 'disrespect': 0.042405869003141826, 'reject': 0.046468630925607414, 'hug': 0.03952329354507974, 'harsh': 0.042405869003141826, 'scared': 0.03728739431381648, 'abused': 0.042405869003141826, 'dissin': 0.042405869003141826, 'concerned': 0.042405869003141826, 'dad': 0.035460531622614144, 'proud': 0.046468630925607414, 'famous': 0.03952329354507974, 'watched': 0.046468630925607414, 'riches': 0.046468630925607414, 'traded': 0.046468630925607414, 'sad': 0.042405869003141826, 'emotions': 0.046468630925607414, 'crown': 0.046468630925607414, 'veteran': 0.042405869003141826, 'great': 0.031397769700148556, 'late': 0.033915941225560055, 'lips': 0.06783188245112011, 'suckin': 0.042405869003141826, 'biggie': 0.1272176070094255, 'blueprint': 0.046468630925607414, 'album': 0.03952329354507974, 'krs': 0.046468630925607414, 'manuscript': 0.046468630925607414, 'dolo': 0.046468630925607414, 'handle': 0.03728739431381648, 'explode': 0.042405869003141826, 'ammo': 0.042405869003141826, 'loadin': 0.046468630925607414, 'slowly': 0.046468630925607414, 'weapon': 0.046468630925607414, 'cockin': 0.046468630925607414, 'gay': 0.046468630925607414, 'callin': 0.08481173800628365, 'hiding': 0.042405869003141826, 'envy': 0.046468630925607414, 'acting': 0.042405869003141826, 'friendly': 0.042405869003141826, 'wishers': 0.046468630925607414, 'stiff': 0.046468630925607414, 'hoped': 0.046468630925607414, 'luck': 0.033915941225560055, 'forgotten': 0.03952329354507974, 'fucked': 0.029387048569834106, 'kneel': 0.046468630925607414, 'faggots': 0.046468630925607414, 'ashes': 0.042405869003141826, 'fame': 0.031397769700148556, 'sophie': 0.046468630925607414, 'hawaiian': 0.09293726185121483, 'judas': 0.042405869003141826, 'chapters': 0.046468630925607414, 'influenced': 0.042405869003141826, 'truest': 0.046468630925607414, 'locked': 0.033915941225560055, 'burner': 0.042405869003141826, 'cartilage': 0.046468630925607414, 'autos': 0.046468630925607414, 'semi': 0.035460531622614144, 'garbage': 0.03952329354507974, 'chest': 0.03952329354507974, 'guts': 0.046468630925607414, 'napalm': 0.042405869003141826, 'embrace': 0.042405869003141826, 'greedy': 0.046468630925607414, 'flossed': 0.046468630925607414, 'south': 0.03728739431381648, 'pac': 0.042405869003141826, 'positive': 0.042405869003141826, 'results': 0.046468630925607414, 'test': 0.042405869003141826, 'waitin': 0.03952329354507974, 'impatiently': 0.046468630925607414, 'event': 0.046468630925607414, 'main': 0.03728739431381648, 'brace': 0.042405869003141826, 'lose': 0.16957970612780027, 'teach': 0.15809317418031896, 'ether': 0.21202934501570914, 'dog': 0.03728739431381648, 'browz': 0.046468630925607414, 'ron': 0.046468630925607414, 'quick': 0.13031182465820826, 'ayo': 0.11186218294144945, 'hoes': 0.035460531622614144, 'prove': 0.1976164677253987, 'watchin': 0.035460531622614144, 'piss': 0.033915941225560055, 'rotten': 0.03952329354507974, 'ugly': 0.032577956164552065, 'phony': 0.03952329354507974, 'work': 0.031397769700148556, 'bread': 0.03728739431381648, 'cock': 0.032577956164552065, 'spit': 0.029387048569834106, 'ask': 0.08313949802202139, 'rocks': 0.035460531622614144, 'kick': 0.06515591232910413, 'called': 0.05703038848417294, 'think': 0.023396719552761125, 'company': 0.03952329354507974, 'pop': 0.02851519424208647, 'belly': 0.17730265811307075, 'gettin': 0.08554558272625941, 'rapper': 0.032577956164552065, 'talkin': 0.029387048569834106, 'west': 0.033915941225560055, 'east': 0.033915941225560055, 'motherfuckin': 0.033915941225560055, 'label': 0.033915941225560055, 'kiss': 0.06279553940029711, 'talk': 0.02563261878402439, 'box': 0.031397769700148556, 'blame': 0.03952329354507974, 'rest': 0.03728739431381648, 'laugh': 0.02851519424208647, 'cars': 0.03728739431381648, 'started': 0.031397769700148556, 'weed': 0.031397769700148556, 'dummy': 0.03952329354507974, 'pussy': 0.030342056933288803, 'case': 0.02851519424208647, 'snakes': 0.035460531622614144, 'stupid': 0.033915941225560055, 'tryna': 0.13031182465820826, 'music': 0.029387048569834106, 'heard': 0.02563261878402439, 'nerve': 0.03952329354507974, 'dome': 0.033915941225560055, 'blows': 0.03952329354507974, 'ran': 0.031397769700148556, 'dame': 0.1272176070094255, 'camel': 0.042405869003141826, 'did': 0.02290784192256678, 'women': 0.035460531622614144, 'child': 0.07092106324522829, 'jail': 0.032577956164552065, 'soldiers': 0.03952329354507974, 'learn': 0.033915941225560055, 'aids': 0.07904658709015948, 'gave': 0.029387048569834106, 'bars': 0.035460531622614144, 'numbers': 0.035460531622614144, 'dead': 0.02563261878402439, 'class': 0.03728739431381648, 'burn': 0.02851519424208647, 'deal': 0.02851519424208647, 'best': 0.05394120769006475, 'beef': 0.031397769700148556, 'style': 0.05703038848417294, 'shots': 0.026970603845032377, 'girls': 0.033915941225560055, 'queens': 0.03728739431381648, 'hands': 0.02851519424208647, 'died': 0.032577956164552065, 'went': 0.025025159843281245, 'guy': 0.035460531622614144, 'dry': 0.035460531622614144, 'kept': 0.06515591232910413, 'left': 0.04679343910552225, 'glad': 0.042405869003141826, 'gonna': 0.02156985686155879, 'damn': 0.05005031968656249, 've': 0.04313971372311758, 'whip': 0.035460531622614144, 'ring': 0.029387048569834106, 'grave': 0.033915941225560055, 'sleep': 0.023910678557243378, 'grow': 0.033915941225560055, 'eyes': 0.02290784192256678, 'feel': 0.020025266464504702, 'peace': 0.025025159843281245, 'throne': 0.03728739431381648, 'king': 0.11955339278621689, 'smile': 0.07092106324522829, 'dick': 0.12816309392012193, 'interlude': 0.05703038848417294, 'pass': 0.02851519424208647, 'try': 0.02290784192256678, 'records': 0.07904658709015948, 'end': 0.02627929501082321, 'ha': 0.035460531622614144, 'chase': 0.033915941225560055, 'soul': 0.15767577006493927, 'lost': 0.13139647505411606, 'gone': 0.060684113866577606, 'oh': 0.02156985686155879, 'tae': 0.042405869003141826, 'money': 0.02156985686155879, 'ho': 0.027713166007340466, 'sound': 0.024452432319620878, 'cash': 0.02563261878402439, 'rhymes': 0.027713166007340466, 'ass': 0.04581568384513356, 'jay': 0.14914957725526592, 'shorty': 0.033915941225560055, 'shawn': 0.042405869003141826, 'bitches': 0.02851519424208647, 'bo': 0.03728739431381648, 'brother': 0.02627929501082321, 'live': 0.021160820321497867, 'rock': 0.04581568384513356, 'wanted': 0.06515591232910413, 'son': 0.14346407134346026, 'god': 0.11212368842098028, 'need': 0.019333957630295533, 'dissed': 0.03728739431381648, 'chains': 0.03728739431381648, 'fat': 0.029387048569834106, 'fake': 0.026970603845032377, 'nigga': 0.05902095392034758, 'love': 0.05336810169972433, 'fella': 0.03952329354507974, 'tec': 0.035460531622614144, 'nas': 0.06279553940029711, 'run': 0.043992608719198856, 'ill': 0.026970603845032377, 'glock': 0.033915941225560055, 'little': 0.043992608719198856, 'come': 0.0350141898781864, 'streets': 0.02851519424208647, 'face': 0.08464328128599147, 'north': 0.03728739431381648, 'break': 0.022441711189306428, 'better': 0.020025266464504702, 'spot': 0.05877409713966821, 'hot': 0.048904864639241756, 'niggas': 0.11804190784069515, 'murdered': 0.033915941225560055, 'chorus': 0.07602161392453133, 'produced': 0.023396719552761125}, {'anybody': 0.06194198158622914, 'warm': 0.036413451700934726, 'bring': 0.017950896740544106, 'motherfucker': 0.023028091261044388, 'queensbridge': 0.03097099079311457, 'motherfuckers': 0.02552852988529442, 'young': 0.019161258799863197, 'bitch': 0.04624962285551945, 'ass': 0.07180358696217642, 'harry': 0.036413451700934726, 'word': 0.018333987905920772, '94': 0.03322981615821912, 'starr': 0.036413451700934726, 'gang': 0.024603719707683352, 'premo': 0.03322981615821912, 'phd': 0.036413451700934726, 'lot': 0.020086068977474263, 'dove': 0.03322981615821912, 'barrio': 0.036413451700934726, 'crazy': 0.021716414101026957, 'oogie': 0.03322981615821912, 'jay': 0.029218909721561086, 'wallethead': 0.036413451700934726, 'slate': 0.036413451700934726, 'hillbillies': 0.036413451700934726, 'draws': 0.03322981615821912, 'forget': 0.026576993191079874, 'kid': 0.019161258799863197, 'lakey': 0.036413451700934726, 'cormega': 0.03322981615821912, 'goodfellas': 0.036413451700934726, 'posse': 0.07282690340186945, '41st': 0.036413451700934726, 'shorty': 0.026576993191079874, 'busters': 0.07282690340186945, 'penn': 0.036413451700934726, 'shawn': 0.03322981615821912, 'lo': 0.03322981615821912, 'cee': 0.03097099079311457, 'vernon': 0.07282690340186945, '40': 0.05557471050079792, 'fucking': 0.021716414101026957, 'living': 0.022344894342578806, 'york': 0.024603719707683352, 'everybody': 0.020086068977474263, 'goes': 0.02778735525039896, 'mind': 0.01690243343475865, 'mothafuckin': 0.03322981615821912, 'outro': 0.015692071375439567, 'ghost': 0.02377644881374093, 'projects': 0.049207439415366705, 'respect': 0.02778735525039896, 'nuff': 0.03322981615821912, 'thugs': 0.026576993191079874, 'bitches': 0.022344894342578806, 'drugs': 0.02552852988529442, 'brain': 0.021716414101026957, 'stop': 0.017950896740544106, 'jakes': 0.036413451700934726, 'way': 0.014401994810508623, 'profit': 0.03322981615821912, 'count': 0.02778735525039896, 'mayo': 0.03322981615821912, 'chop': 0.03322981615821912, 'mike': 0.03097099079311457, 'blow': 0.020086068977474263, 'cooks': 0.036413451700934726, 'bo': 0.029218909721561086, 'big': 0.11496755279917918, 'brother': 0.020592813271025318, 'bokeem': 0.036413451700934726, 'swoop': 0.036413451700934726, 'live': 0.016581906834367287, 'sam': 0.036413451700934726, 'ma': 0.019161258799863197, 'rock': 0.03590179348108821, 'hit': 0.01597762325714758, 'wanted': 0.02552852988529442, 'son': 0.03747346635516899, 'gun': 0.020086068977474263, 'use': 0.02377644881374093, 'grand': 0.026576993191079874, 'god': 0.014643608069654108, 'yard': 0.029218909721561086, 'flash': 0.026576993191079874, 'green': 0.02778735525039896, 'need': 0.015150352363205164, 'nowadays': 0.03322981615821912, 'locks': 0.03322981615821912, 'breaking': 0.03322981615821912, 'factory': 0.03322981615821912, 'candy': 0.03322981615821912, 'spots': 0.036413451700934726, 'cocaine': 0.02552852988529442, 'hanging': 0.029218909721561086, 'wasn': 0.02377644881374093, 'cops': 0.023028091261044388, 'running': 0.02778735525039896, 'plan': 0.02377644881374093, 'different': 0.03097099079311457, 'block': 0.02113453228325972, 'morning': 0.029218909721561086, 'wake': 0.024603719707683352, 'roxanne': 0.036413451700934726, 'dissed': 0.029218909721561086, 'shante': 0.036413451700934726, 'shan': 0.036413451700934726, 'mc': 0.021716414101026957, 'conflict': 0.03322981615821912, 'bdp': 0.036413451700934726, 'stacks': 0.02552852988529442, 'doubt': 0.029218909721561086, 'beck': 0.036413451700934726, 'heines': 0.036413451700934726, 'kicks': 0.02778735525039896, 'chicks': 0.03097099079311457, 'new': 0.048821859579620396, 'fly': 0.046056182522088776, 'tecs': 0.03322981615821912, 'sex': 0.02778735525039896, 'chains': 0.029218909721561086, 'fat': 0.046056182522088776, 'frames': 0.036413451700934726, 'black': 0.029287216139308216, 'cazals': 0.036413451700934726, 'bally': 0.03322981615821912, 'sport': 0.036413451700934726, 'used': 0.04017213795494853, 'reminds': 0.036413451700934726, 'game': 0.032547906386413604, 'rap': 0.017236603498812116, 'elevator': 0.02778735525039896, 'pissing': 0.03322981615821912, 'accelerator': 0.036413451700934726, 'sizer': 0.036413451700934726, 'crew': 0.08686565640410783, 'brutalizer': 0.036413451700934726, 'blunts': 0.029218909721561086, 'hennessy': 0.036413451700934726, 'guzzle': 0.03097099079311457, 'stunts': 0.036413451700934726, 'crab': 0.05843781944312217, 'fake': 0.02113453228325972, 'stress': 0.029218909721561086, 'liked': 0.03322981615821912, 'drop': 0.02113453228325972, 'school': 0.02377644881374093, 'tongue': 0.029218909721561086, 'razor': 0.026576993191079874, 'raps': 0.024603719707683352, 'nigga': 0.030833081903679633, 'crack': 0.04226906456651944, 'sell': 0.02377644881374093, 'friends': 0.020086068977474263, 'sins': 0.03322981615821912, 'committing': 0.036413451700934726, 'love': 0.027879980607772154, 'turned': 0.023028091261044388, 'hat': 0.03322981615821912, 'bop': 0.036413451700934726, 'walking': 0.03322981615821912, 'cold': 0.02113453228325972, 'guess': 0.018736733177584494, 'dress': 0.02778735525039896, 'blessed': 0.03322981615821912, 'rolling': 0.026576993191079874, 'dweller': 0.036413451700934726, 'smoking': 0.029218909721561086, 'marijuana': 0.03097099079311457, 'drinking': 0.03322981615821912, 'moët': 0.036413451700934726, 'fella': 0.03097099079311457, 'type': 0.04755289762748186, 'legal': 0.03322981615821912, 'pressure': 0.02778735525039896, 'police': 0.024603719707683352, 'dresser': 0.036413451700934726, 'tec': 0.02778735525039896, 'pulling': 0.07282690340186945, 'corner': 0.04468978868515761, 'street': 0.041185626542050637, 'rebel': 0.029218909721561086, 'nas': 0.07381115912305006, 'backwards': 0.03097099079311457, 'facts': 0.029218909721561086, 'believe': 0.022344894342578806, 'gods': 0.026576993191079874, 'run': 0.017236603498812116, 'won': 0.017585630353224233, 'leave': 0.021716414101026957, 'clap': 0.03322981615821912, 'trap': 0.03097099079311457, 'til': 0.018736733177584494, 'happen': 0.03097099079311457, 'thinking': 0.026576993191079874, 'runners': 0.03322981615821912, 'ill': 0.02113453228325972, 'wannabe': 0.03322981615821912, 'fronters': 0.036413451700934726, 'glock': 0.026576993191079874, 'hold': 0.017585630353224233, 'spark': 0.02778735525039896, 'vodka': 0.03322981615821912, 'little': 0.017236603498812116, 'drink': 0.026576993191079874, 'helicopters': 0.03322981615821912, 'come': 0.02743759578408608, 'coppers': 0.036413451700934726, 'killer': 0.02552852988529442, 'knock': 0.02552852988529442, 'watch': 0.018333987905920772, 'tryin': 0.023028091261044388, 'roof': 0.03322981615821912, 'brothers': 0.02552852988529442, 'chasing': 0.03322981615821912, 'homicide': 0.036413451700934726, 'undercovers': 0.03322981615821912, 'filled': 0.02778735525039896, 'streets': 0.04468978868515761, 'face': 0.016581906834367287, 'pounders': 0.036413451700934726, 'north': 0.029218909721561086, 'break': 0.017585630353224233, 'better': 0.015692071375439567, 'ay': 0.03097099079311457, 'towners': 0.036413451700934726, 'stare': 0.03097099079311457, 'beers': 0.029218909721561086, 'guzzling': 0.036413451700934726, 'care': 0.02377644881374093, 'criminals': 0.036413451700934726, 'mad': 0.03747346635516899, 'spot': 0.06908427378313317, 'hot': 0.019161258799863197, 'corners': 0.026576993191079874, 'tumble': 0.036413451700934726, 'niggas': 0.0924992457110389, 'blast': 0.03097099079311457, 'll': 0.04051099894562156, 'guns': 0.024603719707683352, 'humble': 0.029218909721561086, 'murdered': 0.026576993191079874, 'jungle': 0.05843781944312217, 'day': 0.0470762141263187, 'real': 0.06894641399524847, 'straight': 0.019161258799863197, 'represent': 0.8336206575119689, 'chorus': 0.05957157143922987, 'premier': 0.029218909721561086, 'dj': 0.02552852988529442, 'produced': 0.018333987905920772}, {'longevity': 0.03347076341181, 'felonies': 0.03347076341181, 'jealousies': 0.03347076341181, 'infinit': 0.03347076341181, 'scrambler': 0.03347076341181, 'atlanta': 0.03347076341181, 'gat': 0.03054440770911983, 'marinate': 0.03347076341181, 'papes': 0.03347076341181, 'seats': 0.03347076341181, 'attica': 0.03347076341181, 'willies': 0.03347076341181, 'scott': 0.03347076341181, 'coretta': 0.03347076341181, 'indies': 0.03347076341181, 'breeze': 0.03347076341181, 'skis': 0.03347076341181, 'm3': 0.03347076341181, 'prisoners': 0.03347076341181, 'political': 0.03347076341181, 'lavish': 0.03347076341181, 'paris': 0.03347076341181, 'trips': 0.03347076341181, 'tricking': 0.03347076341181, 'controllin': 0.03347076341181, 'owl': 0.03347076341181, 'depression': 0.03347076341181, 'stretches': 0.03347076341181, 'sexes': 0.03347076341181, 'breakfast': 0.03347076341181, 'villa': 0.03347076341181, 'iller': 0.03347076341181, 'shabazz': 0.03347076341181, 'tribe': 0.03347076341181, 'deranged': 0.03347076341181, 'saxon': 0.03347076341181, 'anglo': 0.03347076341181, 'latino': 0.03347076341181, 'relaxin': 0.03347076341181, 'pearls': 0.16735381705905, 'ruled': 0.63594450482439, 'lauryn': 0.16735381705905, 'blimp': 0.03347076341181, 'rubbers': 0.03347076341181, 'parole': 0.03347076341181, 'roles': 0.03347076341181, 'diamond': 0.03347076341181, 'clique': 0.03054440770911983, 'lacing': 0.03347076341181, 'fashion': 0.03347076341181, 'evidently': 0.03347076341181, 'cobra': 0.03347076341181, 'colder': 0.03347076341181, 'shorter': 0.03347076341181, 'supporters': 0.03347076341181, 'welfare': 0.03347076341181, 'waters': 0.03347076341181, 'bahama': 0.03347076341181, 'cruising': 0.03347076341181, 'trial': 0.03347076341181, 'harassin': 0.03347076341181, 'trackmasters': 0.03054440770911983, 'rashad': 0.03347076341181, 'glimpse': 0.03054440770911983, 'hammer': 0.028468125295550428, 'hunger': 0.03054440770911983, 'limit': 0.03054440770911983, 'seeing': 0.028468125295550428, 'foul': 0.06108881541823966, 'rollin': 0.028468125295550428, 'civilized': 0.03054440770911983, 'exchange': 0.03054440770911983, 'strictly': 0.03054440770911983, 'strike': 0.028468125295550428, 'diamonds': 0.22774500236440343, 'benz': 0.028468125295550428, 'brand': 0.03054440770911983, 'millionaire': 0.03054440770911983, 'making': 0.028468125295550428, 'chips': 0.028468125295550428, 'paradise': 0.03054440770911983, 'armani': 0.03054440770911983, 'jake': 0.028468125295550428, 'designer': 0.028468125295550428, 'daughters': 0.028468125295550428, 'sons': 0.14234062647775214, 'eventually': 0.028468125295550428, 'shine': 0.09771688315646113, 'conscious': 0.03054440770911983, 'town': 0.02685763553737208, 'savage': 0.03054440770911983, 'mistakes': 0.028468125295550428, 'raise': 0.05371527107474416, 'path': 0.028468125295550428, 'plate': 0.025541769592860256, 'today': 0.09771688315646113, 'trife': 0.02685763553737208, 'history': 0.02685763553737208, 'purple': 0.028468125295550428, 'africa': 0.028468125295550428, 'trooping': 0.03054440770911983, 'reverse': 0.028468125295550428, 'cocked': 0.02685763553737208, 'laced': 0.02442922078911528, 'breaks': 0.03054440770911983, 'smith': 0.03054440770911983, 'knocked': 0.03054440770911983, '45': 0.028468125295550428, 'kids': 0.021167117052081078, 'thoughts': 0.021854997421112507, 'holdin': 0.02685763553737208, 'nights': 0.028468125295550428, 'imagine': 0.21486108429897663, 'wise': 0.03054440770911983, 'lifestyle': 0.028468125295550428, 'sounds': 0.025541769592860256, 'click': 0.028468125295550428, 'stack': 0.028468125295550428, 'lies': 0.02442922078911528, 'send': 0.028468125295550428, 'trees': 0.02442922078911528, 'knowledge': 0.021854997421112507, 'chased': 0.02685763553737208, 'garbage': 0.028468125295550428, 'flashin': 0.03054440770911983, 'carry': 0.02442922078911528, 'clothes': 0.02261541389017008, 'safe': 0.02685763553737208, 'release': 0.025541769592860256, 'reality': 0.02685763553737208, 'coke': 0.028468125295550428, 'cooked': 0.028468125295550428, 'whips': 0.028468125295550428, 'work': 0.02261541389017008, 'wait': 0.01846284906303128, 'having': 0.028468125295550428, 'ace': 0.02685763553737208, 'heat': 0.021854997421112507, 'court': 0.02261541389017008, 'mayor': 0.03054440770911983, 'elementary': 0.03054440770911983, 'days': 0.10927498710556253, 'wouldn': 0.02261541389017008, 'struck': 0.023465487179290857, 'weight': 0.02442922078911528, 'west': 0.02442922078911528, 'going': 0.021167117052081078, 'moves': 0.03054440770911983, 'vision': 0.028468125295550428, 'duck': 0.02685763553737208, 'crash': 0.023465487179290857, 'laugh': 0.02053913147660068, 'open': 0.03885316534571141, 'meet': 0.023465487179290857, 'blue': 0.021854997421112507, 'weed': 0.02261541389017008, 'fiends': 0.02442922078911528, 'place': 0.01892864171842233, 'destiny': 0.03054440770911983, 'read': 0.02053913147660068, 'car': 0.02053913147660068, 'dime': 0.025541769592860256, 'worry': 0.028468125295550428, 'rich': 0.021167117052081078, 'snakes': 0.025541769592860256, 'wind': 0.023465487179290857, 'raw': 0.02442922078911528, 'child': 0.025541769592860256, 'digits': 0.03054440770911983, 'state': 0.04107826295320136, 'livin': 0.019961440747176113, 'hill': 0.12770884796430126, 'mandatory': 0.03054440770911983, 'story': 0.02261541389017008, 'law': 0.02442922078911528, 'cities': 0.03054440770911983, 'set': 0.01892864171842233, 'poor': 0.02442922078911528, 'forth': 0.028468125295550428, 'free': 0.17483997936890006, 'holding': 0.02261541389017008, 'flip': 0.021167117052081078, 'dollars': 0.023465487179290857, 'gold': 0.01846284906303128, 'sky': 0.021854997421112507, 'getting': 0.01846284906303128, 'walk': 0.08215652590640272, 'sun': 0.09771688315646113, 'trying': 0.019961440747176113, 'world': 0.19838952887291675, 'cell': 0.021167117052081078, 'push': 0.02442922078911528, 'hear': 0.017222557434208943, 'eyes': 0.01650022697016553, 'turn': 0.015843658065437048, 'people': 0.01650022697016553, 'things': 0.021854997421112507, 'feel': 0.014423944556596133, 'king': 0.017222557434208943, 'baby': 0.10111415582911758, 'plus': 0.01892864171842233, 'girl': 0.019961440747176113, 'wonder': 0.025541769592860256, 'house': 0.021167117052081078, 'land': 0.05371527107474416, 'shot': 0.01846284906303128, 'bridge': 0.017612775773910506, 'feeling': 0.021854997421112507, 'want': 0.030483739093349164, 'told': 0.015536493360341104, 'old': 0.01468642007122033, 'lost': 0.01892864171842233, 'gone': 0.021854997421112507, 'dough': 0.023465487179290857, 'jet': 0.02442922078911528, 'thing': 0.016852359304852932, 'thought': 0.019961440747176113, 'years': 0.021167117052081078, 'times': 0.07770633069142283, 'cash': 0.01846284906303128, 'hand': 0.07571456687368933, 'right': 0.04964956622518988, 'living': 0.1026956573830034, 'everybody': 0.01846284906303128, 'mind': 0.015536493360341104, 'outro': 0.014423944556596133, 'thugs': 0.02442922078911528, 'way': 0.02647624646626266, 'live': 0.015241869546674582, 'son': 0.017222557434208943, 'cops': 0.021167117052081078, 'running': 0.025541769592860256, 'plan': 0.021854997421112507, 'kicks': 0.025541769592860256, 'new': 0.01495880263091654, 'black': 0.12114189852094535, 'crew': 0.019961440747176113, 'stress': 0.02685763553737208, 'nigga': 0.014170680633779768, 'love': 0.1665749123794312, 'smoking': 0.02685763553737208, 'type': 0.021854997421112507, 'nas': 0.15830789723119057, 'won': 0.032328957871643006, 'watch': 0.016852359304852932, 'undercovers': 0.03054440770911983, 'streets': 0.02053913147660068, 'better': 0.028847889113192266, 'hot': 0.017612775773910506, 'll': 0.04964956622518988, 'chorus': 0.04106805069088694, 'produced': 0.016852359304852932}, {'nude': 0.05621131861006183, 'dude': 0.04780981065566947, 'screwed': 0.05621131861006183, 'sweater': 0.0512967515072318, 'cosby': 0.05621131861006183, 'iron': 0.037980676450009396, 'punk': 0.037980676450009396, 'thunk': 0.05621131861006183, 'overproof': 0.05621131861006183, 'monk': 0.05621131861006183, 'lab': 0.042895243552839434, 'scooby': 0.05621131861006183, 'villain': 0.03940830270127712, 'ruby': 0.05621131861006183, 'glow': 0.05621131861006183, 'doobie': 0.05621131861006183, 'ale': 0.05621131861006183, 'sippin': 0.04510512920573092, 'tail': 0.0512967515072318, 'whippin': 0.0512967515072318, 'dippin': 0.05621131861006183, 'bail': 0.0512967515072318, 'skippin': 0.05621131861006183, 'peoples': 0.04780981065566947, 'sales': 0.05621131861006183, 'shippin': 0.05621131861006183, 'counted': 0.05621131861006183, 'orders': 0.05621131861006183, 'pre': 0.04510512920573092, 'scales': 0.05621131861006183, 'tippin': 0.05621131861006183, 'nails': 0.04780981065566947, 'chippin': 0.05621131861006183, 'chippendales': 0.05621131861006183, 'jerks': 0.05621131861006183, 'males': 0.05621131861006183, 'strippin': 0.05621131861006183, 'rhymers': 0.05621131861006183, 'yuck': 0.05621131861006183, 'button': 0.04510512920573092, 'shutting': 0.05621131861006183, 'meal': 0.0512967515072318, 'twirl': 0.05621131861006183, 'ballers': 0.05621131861006183, 'appeal': 0.05621131861006183, 'veal': 0.05621131861006183, 'halal': 0.05621131861006183, 'squeal': 0.0512967515072318, 'bills': 0.0512967515072318, 'collar': 0.04780981065566947, 'flea': 0.05621131861006183, 'pills': 0.042895243552839434, 'jello': 0.05621131861006183, 'devil': 0.042895243552839434, 'yello': 0.05621131861006183, 'mello': 0.05621131861006183, 'commercial': 0.0512967515072318, 'mil': 0.0512967515072318, 'spiritual': 0.0512967515072318, 'negro': 0.04780981065566947, 'crowd': 0.034493735598447074, 'proceed': 0.05621131861006183, 'miracle': 0.05621131861006183, 'mineral': 0.05621131861006183, 'vegetable': 0.05621131861006183, 'animal': 0.04780981065566947, 'cynical': 0.05621131861006183, 'dressed': 0.0512967515072318, 'cannibal': 0.05621131861006183, 'rhyming': 0.0512967515072318, 'cares': 0.0512967515072318, 'note': 0.042895243552839434, 'wrote': 0.042895243552839434, 'gotten': 0.0512967515072318, 'rotten': 0.04780981065566947, 'fears': 0.05621131861006183, 'swears': 0.05621131861006183, 'odd': 0.0512967515072318, 'squares': 0.05621131861006183, 'lard': 0.0512967515072318, 'sugar': 0.04102681185598469, 'colored': 0.0512967515072318, 'feeding': 0.0512967515072318, 'gears': 0.05621131861006183, 'rod': 0.05621131861006183, 'loaded': 0.04780981065566947, 'bell': 0.042895243552839434, 'cheap': 0.04510512920573092, 'fell': 0.04102681185598469, 'jar': 0.0512967515072318, 'cooker': 0.05621131861006183, 'carvel': 0.05621131861006183, 'barred': 0.05621131861006183, 'card': 0.04780981065566947, 'tit': 0.05621131861006183, 'hole': 0.04780981065566947, 'whips': 0.04780981065566947, 'joints': 0.04780981065566947, 'gorgeous': 0.05621131861006183, 'flows': 0.0512967515072318, 'ugly': 0.03940830270127712, 'flesh': 0.04780981065566947, 'cover': 0.0512967515072318, 'mask': 0.09021025841146184, 'wears': 0.04780981065566947, 'stewed': 0.05621131861006183, 'seaweed': 0.05621131861006183, 'meat': 0.04780981065566947, 'mystery': 0.0512967515072318, 'week': 0.04780981065566947, 'mood': 0.04780981065566947, 'tv': 0.042895243552839434, 'feud': 0.05621131861006183, 'glued': 0.05621131861006183, 'pc': 0.05621131861006183, 'boil': 0.05621131861006183, 'foil': 0.05621131861006183, 'brillo': 0.05621131861006183, 'batteries': 0.05621131861006183, 'toilet': 0.05621131861006183, 'milk': 0.04780981065566947, 'justice': 0.04780981065566947, 'wealth': 0.05621131861006183, 'discuss': 0.05621131861006183, 'pardon': 0.05621131861006183, 'disgusting': 0.05621131861006183, 'bullpen': 0.05621131861006183, 'bologna': 0.05621131861006183, 'phony': 0.04780981065566947, 'easy': 0.04102681185598469, 'squeeze': 0.04102681185598469, 'arteries': 0.0512967515072318, 'starting': 0.0512967515072318, 'disease': 0.05621131861006183, 'fry': 0.05621131861006183, 'diet': 0.05621131861006183, 'suggest': 0.0512967515072318, 'grief': 0.0512967515072318, 'dukes': 0.04780981065566947, 'mom': 0.04102681185598469, 'wreath': 0.05621131861006183, 'capped': 0.05621131861006183, 'teeth': 0.04780981065566947, 'lead': 0.07881660540255424, 'plans': 0.04510512920573092, 'special': 0.0512967515072318, 'tried': 0.03352355283774239, 'traitor': 0.05621131861006183, 'prisoner': 0.05621131861006183, 'work': 0.07596135290001879, 'dissappoint': 0.05621131861006183, 'choose': 0.04780981065566947, 'rights': 0.11242263722012366, 'testing': 0.0512967515072318, 'casualty': 0.0512967515072318, 'intercoms': 0.05621131861006183, 'complete': 0.0512967515072318, 'doomsday': 0.0512967515072318, 'operation': 0.05621131861006183, 'thank': 0.04780981065566947, 'save': 0.037980676450009396, 'arrested': 0.0512967515072318, 'store': 0.04780981065566947, 'fast': 0.04510512920573092, 'protein': 0.05621131861006183, 'fish': 0.042895243552839434, 'procedure': 0.05621131861006183, 'storage': 0.05621131861006183, 'regular': 0.04510512920573092, 'butter': 0.1025935030144636, 'bread': 0.09021025841146184, 'soup': 0.05621131861006183, 'comfort': 0.05621131861006183, 'munch': 0.05621131861006183, 'guys': 0.042895243552839434, 'alright': 0.03940830270127712, 'cool': 0.06525060780318466, 'bank': 0.04102681185598469, 'lunch': 0.04510512920573092, 'wait': 0.09302038424065427, 'eaten': 0.05621131861006183, 'haven': 0.0512967515072318, 'fingers': 0.04510512920573092, 'snack': 0.04780981065566947, 'shut': 0.07596135290001879, 'hooker': 0.0512967515072318, 'stroke': 0.04510512920573092, 'skit': 0.2364498162076627, 'hollow': 0.04780981065566947, 'bird': 0.037980676450009396, 'ask': 0.03352355283774239, 'faster': 0.04510512920573092, 'drunk': 0.04510512920573092, 'heat': 0.03670362125133856, 'pair': 0.04102681185598469, 'eat': 0.03262530390159233, 'aw': 0.04102681185598469, 'wouldn': 0.037980676450009396, 'happened': 0.08579048710567887, 'dig': 0.04510512920573092, 'smell': 0.042895243552839434, 'lyrical': 0.042895243552839434, 'bit': 0.035548384302796505, 'metal': 0.04510512920573092, 'talk': 0.06201358949376951, 'couldn': 0.034493735598447074, 'bleeding': 0.04510512920573092, 'bra': 0.0512967515072318, 'coated': 0.0512967515072318, 'problem': 0.03940830270127712, 'change': 0.04102681185598469, 'damage': 0.042895243552839434, 'dollar': 0.03670362125133856, 'course': 0.042895243552839434, 'cd': 0.04780981065566947, 'kill': 0.028302113296946197, 'buddha': 0.04510512920573092, 'hour': 0.037980676450009396, 'start': 0.03178905414850852, 'raw': 0.04102681185598469, 'did': 0.02771073679876229, 'jail': 0.03940830270127712, 'pretty': 0.03940830270127712, 'krills': 0.04780981065566947, 'year': 0.037980676450009396, 'talking': 0.03940830270127712, 'babies': 0.04780981065566947, 'half': 0.034493735598447074, 'bars': 0.042895243552839434, 'blood': 0.03027197499040627, 'dead': 0.031006794746884756, 'hell': 0.06054394998081254, 'beats': 0.037980676450009396, 'deal': 0.034493735598447074, 'beef': 0.037980676450009396, 'shots': 0.03262530390159233, 'good': 0.025597431847007645, 'took': 0.029579168495617036, 'troubled': 0.0512967515072318, 'went': 0.03027197499040627, 'kicked': 0.04780981065566947, 'crap': 0.04780981065566947, 'getting': 0.031006794746884756, 'gonna': 0.05218445528810943, 'food': 0.4177874409501034, 've': 0.026092227644054715, 'hungry': 0.042895243552839434, 'hook': 0.05119486369401529, 'hear': 0.028923829770575754, 'turn': 0.02660808480845454, 'light': 0.03178905414850852, 'people': 0.08313221039628686, 'hard': 0.029579168495617036, 'swallow': 0.042895243552839434, 'follow': 0.04780981065566947, 'shirt': 0.04780981065566947, 'bust': 0.03670362125133856, 'couple': 0.03670362125133856, 'cop': 0.03940830270127712, 'body': 0.03027197499040627, 'attack': 0.03670362125133856, 'try': 0.02771073679876229, 'maybe': 0.031006794746884756, 'yes': 0.06704710567548477, 'ah': 0.042895243552839434, 'doom': 0.08205362371196938, 'ya': 0.027146876348404143, 'bout': 0.03352355283774239, 'tell': 0.04932920278557399, 'self': 0.04102681185598469, 'old': 0.04932920278557399, 'heart': 0.06054394998081254, 'thanks': 0.042895243552839434, 'really': 0.03027197499040627, 'oh': 0.026092227644054715, 'head': 0.025597431847007645, 'seen': 0.03352355283774239, 'friend': 0.035548384302796505, 'years': 0.035548384302796505, 'high': 0.025122044883350025, 'rappers': 0.035548384302796505, 'hand': 0.03178905414850852, 'young': 0.029579168495617036, 'goes': 0.042895243552839434, 'mind': 0.026092227644054715, 'stop': 0.02771073679876229, 'way': 0.022232309245574105, 'big': 0.029579168495617036, 'brother': 0.03178905414850852, 'ma': 0.029579168495617036, 'hit': 0.024664601392786995, 'god': 0.022605286792492397, 'need': 0.07016263858234849, 'morning': 0.04510512920573092, 'new': 0.025122044883350025, 'rap': 0.02660808480845454, 'drop': 0.03262530390159233, 'sell': 0.03670362125133856, 'cold': 0.03262530390159233, 'fella': 0.04780981065566947, 'pressure': 0.042895243552839434, 'believe': 0.034493735598447074, 'til': 0.028923829770575754, 'little': 0.05321616961690908, 'drink': 0.04102681185598469, 'come': 0.042355321082449354, 'watch': 0.028302113296946197, 'streets': 0.034493735598447074, 'better': 0.04844759189439995, 'beers': 0.04510512920573092, 'll': 0.12507337605051913, 'day': 0.024223795947199974, 'real': 0.02660808480845454, 'produced': 0.028302113296946197}, {'worldwide': 0.032679231127628036, 'isle': 0.03506264458302227, 'shaolin': 0.02931999853408554, 'jeruz': 0.03842187717656476, 'bronx': 0.03506264458302227, 'missing': 0.032679231127628036, 'joint': 0.03506264458302227, 'exorcist': 0.03842187717656476, 'wicked': 0.030830512025481396, 'timex': 0.03842187717656476, 'rollies': 0.03842187717656476, 'lexus': 0.03842187717656476, 'train': 0.030830512025481396, 'riding': 0.032679231127628036, 'eses': 0.07684375435312953, 'breast': 0.03842187717656476, 'asked': 0.030830512025481396, 'es': 0.07684375435312953, 'sexist': 0.03842187717656476, 'confess': 0.03842187717656476, 'best': 0.02230023152544759, 'slated': 0.03842187717656476, 'rated': 0.032679231127628036, 'obligated': 0.03842187717656476, 'agree': 0.032679231127628036, 'everyday': 0.032679231127628036, 'free': 0.02508786597654467, 'minds': 0.030830512025481396, 'ignorant': 0.03506264458302227, '12pm': 0.03842187717656476, 'pumping': 0.03506264458302227, 'mausoleum': 0.03842187717656476, 'beef': 0.02596076594054305, 'heads': 0.02596076594054305, 'bms': 0.03842187717656476, 'fives': 0.03842187717656476, 'notorious': 0.03842187717656476, 'uptown': 0.032679231127628036, 'girlies': 0.03842187717656476, 'craps': 0.07012528916604455, 'shooting': 0.07684375435312953, 'brooklyn': 0.030830512025481396, 'point': 0.05387317015738262, 'missin': 0.03842187717656476, 'wall': 0.0519215318810861, 'holding': 0.0519215318810861, 'anoint': 0.03842187717656476, 'lyrics': 0.032679231127628036, 'greater': 0.03842187717656476, 'style': 0.023577352485148813, 'shots': 0.02230023152544759, 'waiter': 0.03842187717656476, 'tips': 0.03842187717656476, 'flip': 0.024298231909167228, 'dollars': 0.02693658507869131, 'raider': 0.03842187717656476, 'tomb': 0.032679231127628036, 'control': 0.02693658507869131, 'room': 0.023577352485148813, 'motivate': 0.03506264458302227, 'good': 0.0174965008254613, 'hood': 0.02291420769879001, 'wood': 0.03506264458302227, 'platinum': 0.03506264458302227, 'sold': 0.05608575514876863, 'gold': 0.021193939029754583, 'loot': 0.030830512025481396, 'underground': 0.03506264458302227, 'took': 0.02021811989160632, 'goals': 0.03842187717656476, 'term': 0.032679231127628036, 'long': 0.04138334178003908, 'pain': 0.02230023152544759, 'alleviated': 0.03842187717656476, 'deviated': 0.03842187717656476, 'strayed': 0.03842187717656476, 'inebriated': 0.03842187717656476, 'changed': 0.02931999853408554, 'fuckin': 0.02021811989160632, 'witty': 0.10518793374906682, 'calm': 0.09803769338288411, 'midst': 0.11526563152969428, 'shitty': 0.10518793374906682, 'fool': 0.09803769338288411, 'pity': 0.11526563152969428, 'committee': 0.11526563152969428, 'gritty': 0.11526563152969428, 'city': 0.06358181708926375, 'titties': 0.23053126305938856, 'rub': 0.2454385120811559, 'girls': 0.08412863272315295, 'gnac': 0.03842187717656476, 'sipping': 0.028042877574384315, 'queens': 0.030830512025481396, 'buh': 0.5763281576484715, 'sky': 0.075263597929634, 'hands': 0.07073205745544643, 'throw': 0.04582841539758002, 'says': 0.09803769338288411, 'simon': 0.11526563152969428, 'ahhh': 0.03842187717656476, 'monch': 0.05608575514876863, 'pharoahe': 0.05608575514876863, 'said': 0.04795796200219635, 'damn': 0.02069167089001954, 'soon': 0.024298231909167228, 'original': 0.02931999853408554, 'hook': 0.052489502476383905, 'world': 0.016266857858022427, 'act': 0.08412863272315295, 'round': 0.02693658507869131, 'hard': 0.02021811989160632, 'tired': 0.030830512025481396, 'star': 0.02693658507869131, 'song': 0.023577352485148813, 'uh': 0.5041125693733802, 'ya': 0.0185555858602305, 'old': 0.016858887298063823, 'thing': 0.01934521992760794, 'clock': 0.028042877574384315, 'range': 0.02596076594054305, 'york': 0.07788229782162916, 'outro': 0.016557585476510865, 'stop': 0.018940998931905095, 'rock': 0.018940998931905095, 'plan': 0.02508786597654467, 'block': 0.02230023152544759, 'new': 0.06868624659941314, 'game': 0.017171561649853284, 'street': 0.021728633383002176, 'til': 0.01977017907425507, 'produced': 0.01934521992760794}, {'instrumental': 1.0}, {'outlandish': 0.04684396108539354, 'cypher': 0.042748383970159023, 'optics': 0.042748383970159023, 'fiber': 0.04684396108539354, 'suicide': 0.039842525762299505, 'yea': 0.04684396108539354, 'revolution': 0.03758856702725876, 'scratches': 0.042748383970159023, 'militia': 0.042748383970159023, 'picture': 0.032841090439205474, 'behavior': 0.04684396108539354, 'syndicatin': 0.04684396108539354, 'spillin': 0.042748383970159023, 'willin': 0.04684396108539354, 'dylan': 0.04684396108539354, 'godzilla': 0.042748383970159023, 'dark': 0.030587131704164723, 'killin': 0.039842525762299505, 'parkside': 0.04684396108539354, 'cheeba': 0.08549676794031805, 'hollerin': 0.04684396108539354, 'seater': 0.04684396108539354, 'european': 0.04684396108539354, 'exotic': 0.04684396108539354, 'hoppin': 0.04684396108539354, 'cheetah': 0.042748383970159023, 'adidas': 0.042748383970159023, 'trotter': 0.04684396108539354, 'mr': 0.03758856702725876, 'hoes': 0.035746948647064986, 'coat': 0.03758856702725876, 'rhode': 0.04684396108539354, 'lazarus': 0.04684396108539354, 'rise': 0.032841090439205474, 'vocalize': 0.04684396108539354, 'nazareth': 0.04684396108539354, 'jesus': 0.035746948647064986, 'miraculous': 0.04684396108539354, 'dyin': 0.04684396108539354, 'massa': 0.04684396108539354, 'sadomasochist': 0.04684396108539354, 'lobster': 0.042748383970159023, 'barrel': 0.039842525762299505, 'monster': 0.042748383970159023, 'alien': 0.039842525762299505, 'extraterrestrial': 0.04684396108539354, 'human': 0.035746948647064986, 'higher': 0.04684396108539354, 'species': 0.04684396108539354, 'attire': 0.04684396108539354, 'prove': 0.039842525762299505, 'answer': 0.039842525762299505, 'actual': 0.042748383970159023, 'whats': 0.04684396108539354, 'anthems': 0.04684396108539354, 'stood': 0.042748383970159023, 'cam': 0.04684396108539354, 'tactical': 0.04684396108539354, 'ransom': 0.042748383970159023, 'handsome': 0.04684396108539354, 'totally': 0.042748383970159023, 'cancer': 0.04684396108539354, 'ovary': 0.039842525762299505, 'womb': 0.039842525762299505, 'seed': 0.039842525762299505, 'chances': 0.04684396108539354, 'enhancement': 0.04684396108539354, 'advancement': 0.04684396108539354, 'association': 0.04684396108539354, 'watchin': 0.035746948647064986, 'quit': 0.08549676794031805, 'listen': 0.02718844716963753, 'pistol': 0.039842525762299505, 'wave': 0.039842525762299505, 'fees': 0.04684396108539354, 'doctor': 0.039842525762299505, 'waive': 0.04684396108539354, 'psychiatrist': 0.04684396108539354, 'apostrophes': 0.04684396108539354, 'possessive': 0.04684396108539354, 'depressive': 0.04684396108539354, 'manic': 0.04684396108539354, 'sleeves': 0.042748383970159023, 'downs': 0.042748383970159023, 'socrates': 0.04684396108539354, 'greece': 0.042748383970159023, 'ancient': 0.042748383970159023, 'sending': 0.042748383970159023, 'triggers': 0.042748383970159023, 'follicle': 0.04684396108539354, 'diabolical': 0.04684396108539354, 'awkwardly': 0.04684396108539354, 'clip': 0.039842525762299505, 'extended': 0.04684396108539354, 'properly': 0.09368792217078709, 'stock': 0.07149389729412997, 'aim': 0.031651371531830466, 'monopolies': 0.04684396108539354, 'globe': 0.08549676794031805, 'bang': 0.030587131704164723, 'properties': 0.04684396108539354, 'copper': 0.04684396108539354, 'mockery': 0.04684396108539354, 'philosophical': 0.04684396108539354, 'possible': 0.042748383970159023, 'copy': 0.03758856702725876, 'atrocities': 0.04684396108539354, 'environmental': 0.04684396108539354, 'isosceles': 0.04684396108539354, 'mephistopheles': 0.04684396108539354, 'prophecy': 0.04684396108539354, 'philosophy': 0.04684396108539354, 'teams': 0.04684396108539354, 'soccer': 0.04684396108539354, 'uk': 0.04684396108539354, 'referencing': 0.04684396108539354, 'united': 0.04684396108539354, 'philanthropic': 0.04684396108539354, 'significance': 0.04684396108539354, 'megaphone': 0.04684396108539354, 'chewbacca': 0.04684396108539354, 'magnifying': 0.04684396108539354, 'twice': 0.039842525762299505, 'vocally': 0.04684396108539354, 'capillaries': 0.04684396108539354, 'cap': 0.08549676794031805, 'snap': 0.035746948647064986, 'adversaries': 0.04684396108539354, 'calibers': 0.04684396108539354, 'ex': 0.06837976498546314, 'release': 0.035746948647064986, 'divorce': 0.04684396108539354, 'file': 0.04684396108539354, 'silencer': 0.039842525762299505, 'married': 0.039842525762299505, 'monogamous': 0.04684396108539354, 'relationship': 0.042748383970159023, 'ammunition': 0.042748383970159023, 'anonymous': 0.04684396108539354, 'names': 0.042748383970159023, 'individual': 0.042748383970159023, 'specific': 0.04684396108539354, 'arranged': 0.04684396108539354, 'bullets': 0.032841090439205474, 'arrangement': 0.04684396108539354, 'watt': 0.042748383970159023, 'playin': 0.03758856702725876, 'conner': 0.04684396108539354, 'sarah': 0.04684396108539354, 'searchin': 0.04684396108539354, 'rifle': 0.042748383970159023, 'plasma': 0.04684396108539354, 'phase': 0.042748383970159023, 'medical': 0.042748383970159023, 'medicinal': 0.04684396108539354, 'collapse': 0.04684396108539354, 'actors': 0.04684396108539354, 'capitalism': 0.04684396108539354, 'pragmatic': 0.04684396108539354, 'wisdom': 0.042748383970159023, 'practical': 0.04684396108539354, 'sacrilegious': 0.04684396108539354, 'practicing': 0.04684396108539354, 'thigh': 0.042748383970159023, 'grabbed': 0.042748383970159023, 'size': 0.039842525762299505, 'grew': 0.03418988249273157, 'actually': 0.06568218087841095, 'rinsed': 0.04684396108539354, 'acid': 0.04684396108539354, 'mace': 0.04684396108539354, 'slapped': 0.07968505152459901, 'desensitized': 0.04684396108539354, 'emotionally': 0.04684396108539354, 'intensifies': 0.04684396108539354, 'banksy': 0.04684396108539354, 'statues': 0.04684396108539354, 'picasso': 0.04684396108539354, 'piss': 0.06837976498546314, 'gallery': 0.04684396108539354, 'mallory': 0.04684396108539354, 'mickey': 0.04684396108539354, 'modern': 0.04684396108539354, 'auto': 0.039842525762299505, 'giga': 0.04684396108539354, 'tera': 0.04684396108539354, 'reality': 0.03758856702725876, 'mega': 0.039842525762299505, 'figure': 0.03758856702725876, 'bites': 0.04684396108539354, 'multiple': 0.04684396108539354, 'piranha': 0.039842525762299505, 'tank': 0.09368792217078709, 'movement': 0.23421980542696771, 'rapid': 0.23421980542696771, 'duet': 0.14053188325618063, 'coke': 0.11952757728689851, 'cooked': 0.11952757728689851, 'latin': 0.14053188325618063, 'villain': 0.032841090439205474, 'button': 0.03758856702725876, 'collar': 0.039842525762299505, 'crowd': 0.02874551332397095, 'ugly': 0.032841090439205474, 'squeeze': 0.03418988249273157, 'arteries': 0.042748383970159023, 'complete': 0.042748383970159023, 'wait': 0.02583965511611144, 'art': 0.06330274306366093, 'balls': 0.03758856702725876, 'peta': 0.042748383970159023, 'opposite': 0.035746948647064986, 'cock': 0.032841090439205474, 'encrypted': 0.042748383970159023, 'spit': 0.0888732290277961, 'brains': 0.03758856702725876, 'earth': 0.030587131704164723, 'think': 0.04717139276214138, 'eye': 0.13968503527457202, 'shall': 0.03418988249273157, 'pop': 0.02874551332397095, 'gettin': 0.02874551332397095, 'rapper': 0.06568218087841095, 'taking': 0.03418988249273157, 'bad': 0.02718844716963753, 'slave': 0.035746948647064986, 'tough': 0.03758856702725876, 'warn': 0.039842525762299505, 'chillin': 0.039842525762299505, 'kiss': 0.031651371531830466, 'activism': 0.042748383970159023, 'conscience': 0.039842525762299505, 'breed': 0.03758856702725876, 'meet': 0.032841090439205474, 'remain': 0.03758856702725876, 'performance': 0.042748383970159023, 'lucid': 0.12824515191047708, 'scholar': 0.042748383970159023, 'benefit': 0.042748383970159023, 'place': 0.026491554588930204, 'change': 0.03418988249273157, 'stay': 0.02410380666592065, 'switch': 0.03418988249273157, 'murder': 0.032841090439205474, 'music': 0.1777464580555922, 'sits': 0.042748383970159023, 'bear': 0.03758856702725876, 'tracks': 0.035746948647064986, 'scream': 0.03418988249273157, 'killa': 0.03418988249273157, 'did': 0.02309287005440301, 'theft': 0.042748383970159023, 'white': 0.08156534150891259, 'hearing': 0.042748383970159023, 'gave': 0.029624409675932033, 'national': 0.08549676794031805, 'bars': 0.035746948647064986, 'blood': 0.025227289689923146, 'hip': 0.030587131704164723, 'probable': 0.042748383970159023, 'ignorant': 0.042748383970159023, 'shots': 0.02718844716963753, 'flip': 0.029624409675932033, 'hood': 0.027937007054914403, 'gold': 0.02583965511611144, 'underground': 0.042748383970159023, 'rub': 0.042748383970159023, 'throw': 0.027937007054914403, 'monch': 0.13675952997092627, 'pharoahe': 0.23932917744912097, 'sent': 0.032841090439205474, 've': 0.04348815600175383, 'walk': 0.02874551332397095, 'hook': 0.06399521293808982, 'trying': 0.027937007054914403, 'small': 0.032841090439205474, 'holla': 0.039842525762299505, 'beat': 0.02718844716963753, 'scriptures': 0.03758856702725876, 'push': 0.03418988249273157, 'eyes': 0.02309287005440301, 'breathe': 0.029624409675932033, 'feel': 0.0201870118465435, 'king': 0.02410380666592065, 'inside': 0.02410380666592065, 'dr': 0.035746948647064986, 'sick': 0.029624409675932033, 'attack': 0.030587131704164723, 'bob': 0.03758856702725876, 'arms': 0.03418988249273157, 'soul': 0.05298310917786041, 'heart': 0.025227289689923146, 'battle': 0.03418988249273157, 'pure': 0.042748383970159023, 'thought': 0.13968503527457202, 'blocks': 0.035746948647064986, 'times': 0.02718844716963753, 'strange': 0.042748383970159023, 'range': 0.031651371531830466, 'ass': 0.02309287005440301, 'shorty': 0.06837976498546314, '40': 0.07149389729412997, 'drugs': 0.032841090439205474, 'stop': 0.02309287005440301, 'ma': 0.02464993620873643, 'grand': 0.03418988249273157, 'god': 0.03767643958603481, 'black': 0.18838219793017405, 'rap': 0.08869587977258266, 'razor': 0.03418988249273157, 'crack': 0.13594223584818765, 'love': 0.017933053111502752, 'marijuana': 0.039842525762299505, 'pressure': 0.035746948647064986, 'hold': 0.022622974352837995, 'killer': 0.032841090439205474, 'face': 0.021331737646029945, 'll': 0.0347434912007239, 'day': 0.0201870118465435, 'real': 0.022173969943145664, 'straight': 0.04929987241747286, 'dj': 0.032841090439205474}, {'branded': 0.056953681688456145, 'logo': 0.056953681688456145, 'vaccinated': 0.056953681688456145, 'fascinated': 0.056953681688456145, 'tunnels': 0.056953681688456145, 'radios': 0.056953681688456145, 'funnel': 0.056953681688456145, 'entrance': 0.056953681688456145, 'bells': 0.051974209629584406, 'seashells': 0.056953681688456145, 'dl': 0.056953681688456145, 'sticking': 0.056953681688456145, 'pens': 0.056953681688456145, 'amtrak': 0.056953681688456145, 'derailed': 0.056953681688456145, 'mark': 0.056953681688456145, 'amputator': 0.056953681688456145, 'educator': 0.056953681688456145, 'stopper': 0.056953681688456145, 'dropper': 0.056953681688456145, 'choppable': 0.056953681688456145, 'blunted': 0.056953681688456145, 'circumstance': 0.056953681688456145, 'blends': 0.056953681688456145, 'tremendous': 0.056953681688456145, 'megaton': 0.056953681688456145, 'noon': 0.056953681688456145, 'typhoon': 0.056953681688456145, 'cyclones': 0.056953681688456145, 'fones': 0.056953681688456145, 'roundhouse': 0.056953681688456145, 'impact': 0.056953681688456145, 'dealt': 0.056953681688456145, 'energy': 0.056953681688456145, 'gamble': 0.051974209629584406, 'feminine': 0.056953681688456145, 'sweatshirts': 0.056953681688456145, 'zodiac': 0.056953681688456145, 'smart': 0.051974209629584406, 'swollen': 0.056953681688456145, 'stolen': 0.056953681688456145, 'op': 0.056953681688456145, 'syringe': 0.051974209629584406, 'bite': 0.04844121797884582, 'rocked': 0.14532365393653746, 'pete': 0.17086104506536842, 'snort': 0.17086104506536842, 'supposed': 0.051974209629584406, 'spies': 0.056953681688456145, 'ninja': 0.056953681688456145, 'killings': 0.056953681688456145, 'castle': 0.056953681688456145, 'lords': 0.04844121797884582, 'decapitator': 0.056953681688456145, 'shogun': 0.28476840844228074, 'empire': 0.11390736337691229, 'samurai': 0.056953681688456145, 'father': 0.13038523775992222, 'gibran': 0.056953681688456145, 'station': 0.04844121797884582, 'slid': 0.04570081675401316, 'radio': 0.04844121797884582, 'aboard': 0.051974209629584406, 'exit': 0.04844121797884582, 'travel': 0.051974209629584406, 'speakers': 0.051974209629584406, 'medina': 0.051974209629584406, 'played': 0.04346174591997408, 'source': 0.04844121797884582, 'waste': 0.04844121797884582, 'sandals': 0.051974209629584406, 'swift': 0.04346174591997408, 'wack': 0.04570081675401316, 'failed': 0.04570081675401316, 'perform': 0.15592262888875322, 'blink': 0.051974209629584406, 'speed': 0.04844121797884582, 'key': 0.04844121797884582, 'bombs': 0.04844121797884582, 'clowns': 0.051974209629584406, 'table': 0.051974209629584406, 'impossible': 0.04844121797884582, 'felt': 0.04570081675401316, 'sneakers': 0.051974209629584406, 'picked': 0.04346174591997408, 'thoughts': 0.037188353044402836, 'flipped': 0.04844121797884582, 'begin': 0.051974209629584406, 'heartbeat': 0.051974209629584406, 'insane': 0.13038523775992222, 'skin': 0.04156863850405519, 'plane': 0.1371024502620395, 'crime': 0.0399287542692355, 'signs': 0.04156863850405519, 'record': 0.03848227386110234, 'evans': 0.051974209629584406, 'knowledge': 0.037188353044402836, 'building': 0.11978626280770652, 'scared': 0.09140163350802633, 'famous': 0.04844121797884582, 'cards': 0.04570081675401316, 'justice': 0.04844121797884582, 'phony': 0.04844121797884582, 'art': 0.03848227386110234, 'mission': 0.04844121797884582, 'skit': 0.0399287542692355, 'faster': 0.04570081675401316, 'belts': 0.051974209629584406, 'think': 0.028675889334792513, 'greatest': 0.04156863850405519, 'bad': 0.03305617479444487, 'natural': 0.04346174591997408, 'hurt': 0.04156863850405519, 'wild': 0.04156863850405519, 'clan': 0.051974209629584406, 'gza': 0.11978626280770652, 'didn': 0.03601785928853798, 'bound': 0.04346174591997408, 'thirty': 0.04156863850405519, 'catch': 0.03141629055962518, 'started': 0.03848227386110234, 'weed': 0.03848227386110234, 'night': 0.058611633197645466, 'scene': 0.0399287542692355, 'problem': 0.0399287542692355, 'born': 0.10805357786561393, 'weak': 0.0399287542692355, 'cut': 0.15335883148771126, 'enter': 0.04570081675401316, 'chamber': 0.04844121797884582, 'shop': 0.04844121797884582, 'murder': 0.0399287542692355, 'devils': 0.04570081675401316, 'mental': 0.1371024502620395, 'kill': 0.028675889334792513, 'infected': 0.04844121797884582, 'styles': 0.04844121797884582, 'swords': 0.09688243595769164, 'rza': 0.19964377134617753, 'fights': 0.051974209629584406, 'mic': 0.059939620302984026, 'wu': 0.037188353044402836, 'child': 0.04346174591997408, 'state': 0.0698985644207275, 'minimum': 0.09140163350802633, 'mcs': 0.13038523775992222, 'law': 0.08313727700811038, 'home': 0.029969810151492013, 'sentence': 0.04844121797884582, 'blood': 0.03067176629754225, 'midnight': 0.04844121797884582, 'ink': 0.0399287542692355, 'heads': 0.03848227386110234, 'lyrics': 0.04844121797884582, 'flip': 0.10805357786561393, 'changed': 0.04346174591997408, 'said': 0.02369641727592077, 'track': 0.11544682158330702, 'sent': 0.0399287542692355, 'gonna': 0.02643681850075343, 'clouds': 0.04570081675401316, 'act': 0.12470591551216559, 'small': 0.0399287542692355, 'round': 0.0399287542692355, 'swing': 0.09688243595769164, 'deep': 0.032208880985531096, 'wide': 0.04844121797884582, 'gotta': 0.029969810151492013, 'turn': 0.02695948840895726, 'people': 0.02807670273557313, 'smoke': 0.032208880985531096, 'inside': 0.029305816598822733, 'insert': 0.051974209629584406, 'body': 0.03067176629754225, 'plus': 0.032208880985531096, 'low': 0.032208880985531096, 'attack': 0.07437670608880567, 'maybe': 0.03141629055962518, 'house': 0.03601785928853798, 'check': 0.028675889334792513, 'want': 0.025935488109959853, 'old': 0.024990338092620266, 'rhyme': 0.03494928221036375, 'heart': 0.03067176629754225, 'flow': 0.037188353044402836, 'head': 0.025935488109959853, 'write': 0.03396628658778977, 'fiend': 0.04346174591997408, 'pen': 0.032208880985531096, 'clock': 0.08313727700811038, 'saying': 0.03848227386110234, 'stayed': 0.051974209629584406, 'came': 0.17981886090895208, 'high': 0.025453822878179443, 'sound': 0.029969810151492013, 'rhymes': 0.03396628658778977, 'ass': 0.02807670273557313, 'forget': 0.04156863850405519, 'brain': 0.13586514635115907, 'stop': 0.02807670273557313, 'live': 0.07780646432987956, 'rock': 0.02807670273557313, 'flash': 0.04156863850405519, 'cocaine': 0.11978626280770652, 'wasn': 0.037188353044402836, 'plan': 0.037188353044402836, 'different': 0.04844121797884582, 'stacks': 0.0399287542692355, 'kicks': 0.04346174591997408, 'black': 0.022903826850014852, 'fake': 0.03305617479444487, 'drop': 0.03305617479444487, 'nigga': 0.024112758475066366, 'rolling': 0.04156863850405519, 'pressure': 0.04346174591997408, 'spark': 0.13038523775992222, 'little': 0.02695948840895726, 'come': 0.04291469288376338, 'mad': 0.029305816598822733, 'niggas': 0.12056379237533182, 'represent': 0.04346174591997408, 'chorus': 0.0698811872868385}, {'somebody': 0.01757633937787101, 'anymore': 0.026918030948568917, 'dominoes': 0.053836061897137834, 'trippin': 0.02456458198768442, 'ol': 0.041082668830866025, 'faded': 0.022894783376317514, 'feelin': 0.041082668830866025, 'anyways': 0.026918030948568917, 'weren': 0.026918030948568917, 'figured': 0.026918030948568917, 'appointment': 0.02456458198768442, 'tree': 0.021599586950122412, 'shaded': 0.026918030948568917, 'dungarees': 0.026918030948568917, 'heater': 0.026918030948568917, 'footlocker': 0.026918030948568917, 'steal': 0.022894783376317514, 'promises': 0.026918030948568917, 'sellin': 0.043199173900244824, 'lurkin': 0.026918030948568917, 'serpents': 0.026918030948568917, 'gardens': 0.026918030948568917, 'stash': 0.021599586950122412, 'bushes': 0.026918030948568917, 'parade': 0.026918030948568917, 'bands': 0.026918030948568917, 'drum': 0.021599586950122412, 'daughter': 0.021599586950122412, 'provide': 0.02456458198768442, 'cheese': 0.026918030948568917, 'eatin': 0.021599586950122412, 'thug': 0.021599586950122412, 'residue': 0.026918030948568917, 'forgive': 0.02456458198768442, 'homeboy': 0.026918030948568917, 'thanksgivin': 0.026918030948568917, 'turkey': 0.026918030948568917, 'yola': 0.026918030948568917, 'soda': 0.026918030948568917, 'bakin': 0.026918030948568917, 'poppin': 0.020541334415433012, 'pistols': 0.026918030948568917, 'liquors': 0.026918030948568917, 'stockings': 0.026918030948568917, 'miss': 0.026918030948568917, 'claus': 0.026918030948568917, 'santa': 0.026918030948568917, 'imagine': 0.021599586950122412, 'patrol': 0.04578956675263503, 'brakes': 0.053836061897137834, 'bucket': 0.043199173900244824, 'wise': 0.02456458198768442, 'anna': 0.026918030948568917, 'pot': 0.04578956675263503, 'offend': 0.026918030948568917, 'hopin': 0.022894783376317514, 'window': 0.020541334415433012, 'skirtin': 0.053836061897137834, 'pirellis': 0.053836061897137834, 'jerkin': 0.053836061897137834, 'purchase': 0.026918030948568917, 'ease': 0.04912916397536884, 'burgers': 0.026918030948568917, 'louis': 0.04912916397536884, 'tour': 0.021599586950122412, 'uncle': 0.026918030948568917, 'rational': 0.053836061897137834, 'thinkin': 0.03637577090909702, 'stevens': 0.026918030948568917, 'earl': 0.026918030948568917, 'ballin': 0.026918030948568917, 'bump': 0.02456458198768442, 'lane': 0.04912916397536884, 'shade': 0.08075409284570675, 'perfect': 0.06868435012895253, 'alleyways': 0.08075409284570675, 'canals': 0.08075409284570675, 'hustlin': 0.09157913350527006, 'shooter': 0.08075409284570675, 'poison': 0.06868435012895253, 'hallelujah': 0.08075409284570675, 'berry': 0.08075409284570675, 'halle': 0.08075409284570675, 'revenue': 0.026918030948568917, 'reverend': 0.026918030948568917, 'knew': 0.043199173900244824, 'lifestyle': 0.022894783376317514, 'spoon': 0.026918030948568917, 'silver': 0.02456458198768442, 'freeze': 0.02456458198768442, 'rhymin': 0.02456458198768442, 'ramen': 0.026918030948568917, 'raymond': 0.026918030948568917, 'usher': 0.026918030948568917, 'bros': 0.053836061897137834, 'sherane': 0.022894783376317514, 'wrappers': 0.026918030948568917, 'vacant': 0.026918030948568917, 'persuasive': 0.053836061897137834, 'invasion': 0.02456458198768442, 'wit': 0.02456458198768442, 'bish': 0.638679131679795, 'dahi': 0.026918030948568917, 'lord': 0.021599586950122412, 'signs': 0.05893978393861211, 'homies': 0.04912916397536884, 'boys': 0.019646594646204035, 'trees': 0.05893978393861211, 'nah': 0.259195043401469, 'dad': 0.041082668830866025, 'fucked': 0.01702312865976807, 'main': 0.043199173900244824, 'spillin': 0.02456458198768442, 'hoes': 0.041082668830866025, 'listen': 0.01562334707395263, 'bullets': 0.01887153580406611, 'reality': 0.021599586950122412, 'whippin': 0.02456458198768442, 'easy': 0.019646594646204035, 'mom': 0.03929318929240807, 'work': 0.01818788545454851, 'casualty': 0.02456458198768442, 'cool': 0.03124669414790526, 'grass': 0.019646594646204035, 'condom': 0.02456458198768442, 'kick': 0.01887153580406611, 'pots': 0.022894783376317514, 'called': 0.016518086843181606, 'government': 0.022894783376317514, 'broken': 0.01818788545454851, 'church': 0.021599586950122412, 'gon': 0.064213973634186, 'headed': 0.04578956675263503, 'gettin': 0.016518086843181606, 'lamar': 0.09435767902033056, 'kendrick': 0.10545803626722604, 'look': 0.025483737726370262, 'pick': 0.07030535751148403, 'crash': 0.01887153580406611, 'place': 0.045668671250959525, 'dreams': 0.05456365636364554, 'pull': 0.016518086843181606, 'truth': 0.01818788545454851, 'cut': 0.014496403568092066, 'pussy': 0.01757633937787101, 'car': 0.06607234737272642, 'dollar': 0.1757633937787101, 'park': 0.020541334415433012, 'wanna': 0.01326989811306813, 'switch': 0.03929318929240807, 'rich': 0.03404625731953614, 'tryna': 0.03774307160813222, 'lick': 0.01887153580406611, 'belt': 0.020541334415433012, 'dome': 0.019646594646204035, 'war': 0.01818788545454851, 'start': 0.015222890416986507, 'did': 0.01326989811306813, 'code': 0.03929318929240807, 'livin': 0.032106986817093, 'home': 0.028329275764594212, 'pockets': 0.019646594646204035, 'blood': 0.014496403568092066, 'poor': 0.019646594646204035, 'burn': 0.03303617368636321, 'million': 0.03929318929240807, 'hell': 0.014496403568092066, 'free': 0.03515267875574202, 'good': 0.03677368613827351, 'hood': 0.0160534934085465, 'gold': 0.02969657646362941, 'pain': 0.03124669414790526, 'said': 0.011199642844735102, 'went': 0.014496403568092066, 'gonna': 0.012494839270930203, 'damn': 0.014496403568092066, 'lookin': 0.01757633937787101, 'hook': 0.03677368613827351, 'gotta': 0.014164637882297106, 'turn': 0.025483737726370262, 'goin': 0.01887153580406611, 'feel': 0.1276010945187135, 'tony': 0.04578956675263503, 'doin': 0.04955426052954482, 'body': 0.057985614272368265, 'girl': 0.064213973634186, 'lives': 0.056614607412198335, 'sauce': 0.02456458198768442, 'house': 0.03404625731953614, 'uh': 0.0160534934085465, 'ya': 0.31199714610039997, 'bridge': 0.014164637882297106, 'tell': 0.10630070029271342, 'want': 0.04903158151769801, 'hope': 0.03124669414790526, 'forever': 0.11322921482439667, 'dough': 0.03774307160813222, 'head': 0.024515790758849004, 'money': 0.04997935708372081, 'thing': 0.027106183611239204, 'came': 0.056658551529188424, 'high': 0.012030245836295098, 'rappers': 0.06809251463907227, 'bring': 0.039809694339204386, 'motherfucker': 0.01702312865976807, 'bitch': 0.02279283655225971, 'ass': 0.039809694339204386, 'gang': 0.01818788545454851, 'jay': 0.021599586950122412, '40': 0.020541334415433012, 'everybody': 0.044544864695444115, 'mind': 0.024989678541860405, 'outro': 0.011600099501701228, 'projects': 0.01818788545454851, 'respect': 0.06162400324629903, 'bitches': 0.016518086843181606, 'drugs': 0.01887153580406611, 'way': 0.17034291402611462, 'big': 0.04249391364689132, 'ma': 0.014164637882297106, 'rock': 0.02653979622613626, 'hit': 0.05905594460706302, 'gun': 0.08908972939088823, 'cocaine': 0.01887153580406611, 'wasn': 0.03515267875574202, 'new': 0.012030245836295098, 'fat': 0.03404625731953614, 'drop': 0.01562334707395263, 'school': 0.03515267875574202, 'nigga': 0.011396418276129855, 'love': 0.020609806151012253, 'won': 0.025999762175033327, 'come': 0.020282780620091402, 'watch': 0.013553091805619602, 'streets': 0.04955426052954482, 'break': 0.025999762175033327, 'hot': 0.014164637882297106, 'niggas': 0.056982091380649275, 'll': 0.009982357914796743, 'day': 0.0812006965119086, 'dj': 0.01887153580406611, 'produced': 0.013553091805619602}, {'vomitspit': 0.09149777789703577, 'kegs': 0.09149777789703577, 'begged': 0.09149777789703577, 'booger': 0.09149777789703577, 'medicated': 0.09149777789703577, 'skata': 0.09149777789703577, 'creep': 0.09149777789703577, 'theta': 0.09149777789703577, 'meditated': 0.09149777789703577, 'edumacated': 0.09149777789703577, 'shifty': 0.09149777789703577, 'jiffy': 0.09149777789703577, 'spiffy': 0.09149777789703577, 'patiently': 0.09149777789703577, 'stiffly': 0.09149777789703577, 'fifth': 0.09149777789703577, 'plead': 0.09149777789703577, 'scooped': 0.09149777789703577, 'gear': 0.09149777789703577, 'tier': 0.09149777789703577, 'stogs': 0.09149777789703577, 'peel': 0.09149777789703577, 'popo': 0.09149777789703577, 'snitchin': 0.09149777789703577, 'bridges': 0.09149777789703577, 'board': 0.09149777789703577, 'pipes': 0.09149777789703577, 'wacko': 0.09149777789703577, 'basket': 0.09149777789703577, 'jason': 0.09149777789703577, 'horror': 0.09149777789703577, 'glorious': 0.09149777789703577, 'oratory': 0.09149777789703577, 'sheetrock': 0.09149777789703577, 'pox': 0.09149777789703577, 'skips': 0.09149777789703577, 'anywho': 0.09149777789703577, 'juggy': 0.09149777789703577, 'fatty': 0.09149777789703577, 'flossy': 0.09149777789703577, 'softly': 0.09149777789703577, 'buggy': 0.09149777789703577, 'caddy': 0.09149777789703577, 'ballad': 0.09149777789703577, 'bland': 0.09149777789703577, 'salt': 0.09149777789703577, 'touchin': 0.09149777789703577, 'hologram': 0.09149777789703577, 'blare': 0.09149777789703577, 'blues': 0.08349810842914449, 'sandwich': 0.08349810842914449, 'rollin': 0.0778222526145961, 'ham': 0.0778222526145961, 'beatbox': 0.08349810842914449, 'laboratory': 0.08349810842914449, 'busted': 0.08349810842914449, 'message': 0.08349810842914449, 'exit': 0.0778222526145961, 'gift': 0.08349810842914449, 'ribs': 0.08349810842914449, 'mess': 0.08349810842914449, 'leather': 0.0778222526145961, 'swift': 0.06982258314670482, 'shoes': 0.06678124996609525, 'rake': 0.08349810842914449, 'sand': 0.08349810842914449, 'orange': 0.08349810842914449, 'news': 0.07341971681383636, 'wine': 0.07341971681383636, 'threw': 0.07341971681383636, 'salad': 0.08349810842914449, 'criminal': 0.07341971681383636, 'keeps': 0.0778222526145961, 'funky': 0.08349810842914449, 'curse': 0.07341971681383636, 'later': 0.1335624999321905, 'happens': 0.07341971681383636, 'lord': 0.07341971681383636, 'chance': 0.0778222526145961, 'daddy': 0.06414672733215646, 'waitin': 0.0778222526145961, 'loose': 0.06678124996609525, 'instead': 0.06982258314670482, 'peoples': 0.0778222526145961, 'pills': 0.06982258314670482, 'sugar': 0.06678124996609525, 'cheap': 0.07341971681383636, 'ugly': 0.06414672733215646, 'mask': 0.07341971681383636, 'regular': 0.07341971681383636, 'butter': 0.08349810842914449, 'sip': 0.07341971681383636, 'heat': 0.05974419153139669, 'eat': 0.05310572468365559, 'socks': 0.06982258314670482, 'funk': 0.07341971681383636, 'walkin': 0.06678124996609525, 'monkey': 0.07341971681383636, 'bad': 0.05310572468365559, 'similar': 0.07341971681383636, 'catch': 0.0504712020497168, 'snooze': 0.08349810842914449, 'pill': 0.06678124996609525, 'swallowed': 0.08349810842914449, 'sing': 0.0778222526145961, 'place': 0.0517445220635054, 'read': 0.05614705786426516, 'stay': 0.04708066307140665, 'jeep': 0.07341971681383636, 'wanna': 0.045106055215764294, 'case': 0.05614705786426516, 'stupid': 0.06678124996609525, 'dedicated': 0.0778222526145961, 'heard': 0.0504712020497168, 'effects': 0.08349810842914449, 'mic': 0.048147388396373864, 'grind': 0.08349810842914449, 'krills': 0.0778222526145961, 'seeds': 0.06678124996609525, 'year': 0.061822913678813526, 'story': 0.061822913678813526, 'home': 0.048147388396373864, 'hell': 0.049275101752923774, 'everyday': 0.0778222526145961, 'good': 0.04166613044819728, 'hood': 0.05456784625789304, 'calm': 0.0778222526145961, 'dry': 0.06982258314670482, 've': 0.0424715325818255, 'stuff': 0.06982258314670482, 'beat': 0.05310572468365559, 'deep': 0.0517445220635054, 'sleep': 0.0941613261428133, 'hear': 0.0941613261428133, 'sit': 0.05456784625789304, 'feel': 0.039430199401215935, 'data': 0.08349810842914449, 'hate': 0.05614705786426516, 'low': 0.1034890441270108, 'doom': 0.06678124996609525, 'ya': 0.044188233333490264, 'tell': 0.04014771892848256, 'self': 0.06678124996609525, 'told': 0.084943065163651, 'old': 0.04014771892848256, 'gone': 0.05974419153139669, 'kind': 0.0778222526145961, 'juice': 0.06982258314670482, 'came': 0.048147388396373864, 'ho': 0.05456784625789304, 'rhymes': 0.10913569251578609, 'bring': 0.045106055215764294, 'bitch': 0.03873786125899695, 'lot': 0.0504712020497168, 'york': 0.061822913678813526, 'mind': 0.0424715325818255, 'need': 0.07613799356213148, 'new': 0.04089232097545339, 'fake': 0.05310572468365559, 'crack': 0.05310572468365559, 'guess': 0.04708066307140665, 'blessed': 0.08349810842914449, 'type': 0.05974419153139669, 'street': 0.0517445220635054, 'believe': 0.05614705786426516, 'won': 0.044188233333490264, 'ill': 0.05310572468365559, 'come': 0.03447186311393421, 'break': 0.044188233333490264, 'better': 0.039430199401215935, 'stare': 0.0778222526145961, 'real': 0.043311217282735556}, {'visited': 0.05915763989820872, 'death': 0.03433536212108261, 'cousin': 0.08635447173137334, 'meet': 0.0414738924090006, 'snooze': 0.053985475321504404, 'ridiculous': 0.053985475321504404, 'unicorns': 0.05915763989820872, 'looking': 0.039971437000196015, 'korea': 0.05915763989820872, 'rodman': 0.05915763989820872, 'dennis': 0.05915763989820872, 'uniform': 0.05915763989820872, 'true': 0.03630172783229627, 'staying': 0.05915763989820872, 'blue': 0.03862744483916562, 'bleed': 0.04746931858376969, 'ark': 0.053985475321504404, 'noah': 0.05915763989820872, 'floating': 0.05915763989820872, 'sandy': 0.05915763989820872, 'named': 0.053985475321504404, 'hurricanes': 0.05915763989820872, 'bra': 0.053985475321504404, 'panties': 0.05915763989820872, 'cars': 0.04746931858376969, 'coated': 0.053985475321504404, 'dreamed': 0.05915763989820872, 'dreaming': 0.04746931858376969, 'started': 0.039971437000196015, 'lungs': 0.053985475321504404, 'meaning': 0.053985475321504404, 'clouded': 0.05915763989820872, 'weed': 0.039971437000196015, 'remain': 0.04746931858376969, 'sunlight': 0.053985475321504404, 'dormant': 0.05915763989820872, 'required': 0.05915763989820872, 'vampire': 0.05915763989820872, 'coffin': 0.053985475321504404, 'touring': 0.05915763989820872, 'performance': 0.053985475321504404, 'night': 0.030439874892714734, 'keeping': 0.053985475321504404, 'sunny': 0.05915763989820872, 'philadelphia': 0.05915763989820872, 'cali': 0.053985475321504404, 'southern': 0.05915763989820872, 'rains': 0.05915763989820872, 'junkie': 0.05915763989820872, 'dealer': 0.05031576615360466, 'sort': 0.0414738924090006, 'strung': 0.05915763989820872, 'scrilla': 0.05915763989820872, 'excellent': 0.05915763989820872, 'kweli': 0.10797095064300881, 'talib': 0.10797095064300881, 'recruits': 0.05915763989820872, 'boost': 0.05915763989820872, 'lucid': 0.053985475321504404, 'claim': 0.04746931858376969, 'elusive': 0.053985475321504404, 'daydream': 0.05915763989820872, 'futures': 0.05915763989820872, 'shape': 0.04746931858376969, 'view': 0.04746931858376969, 'fiends': 0.04317723586568667, 'strategy': 0.05915763989820872, 'screen': 0.04746931858376969, 'win': 0.05031576615360466, 'scene': 0.0414738924090006, 'escape': 0.04746931858376969, 'precariously': 0.05915763989820872, 'schemes': 0.05031576615360466, 'various': 0.053985475321504404, 'stages': 0.05915763989820872, 'aquarius': 0.05915763989820872, 'age': 0.04746931858376969, 'welcome': 0.05031576615360466, 'pill': 0.08635447173137334, 'red': 0.03862744483916562, 'swallowed': 0.053985475321504404, 'wool': 0.053985475321504404, 'visualise': 0.05915763989820872, 'scholar': 0.053985475321504404, 'dummy': 0.05031576615360466, 'mentally': 0.04746931858376969, 'aspect': 0.05915763989820872, 'runs': 0.053985475321504404, 'determination': 0.05915763989820872, 'means': 0.08635447173137334, 'genesis': 0.05915763989820872, 'intrinsic': 0.05915763989820872, 'kindred': 0.05915763989820872, 'infamous': 0.05915763989820872, 'heartstrings': 0.05915763989820872, 'pulls': 0.05915763989820872, 'spirit': 0.053985475321504404, 'hits': 0.053985475321504404, 'mimic': 0.05915763989820872, 'meant': 0.04514360157690034, 'memorex': 0.053985475321504404, 'sing': 0.10063153230720932, 'internet': 0.053985475321504404, 'benefit': 0.053985475321504404, 'scenes': 0.05915763989820872, 'potental': 0.05915763989820872, 'infinite': 0.05915763989820872, 'increments': 0.05915763989820872, 'limited': 0.053985475321504404, 'limitless': 0.05915763989820872, 'limericks': 0.05915763989820872, 'place': 0.0669105605249226, 'pmc': 0.05915763989820872, 'lend': 0.11831527979641744, 'problem': 0.0829477848180012, 'palms': 0.11831527979641744, 'rules': 0.04514360157690034, 'destiny': 0.053985475321504404, 'help': 0.11991431100058805, 'dreams': 0.4396858070021562, 'race': 0.053985475321504404, 'ooh': 0.03862744483916562, 'hilltop': 0.05915763989820872, 'climb': 0.053985475321504404, 'pull': 0.07260345566459254, 'stone': 0.053985475321504404, 'lee': 0.053985475321504404, 'truth': 0.039971437000196015, 'stay': 0.06087974978542947, 'dollar': 0.1545097793566625, 'stupid': 0.04317723586568667, 'music': 0.07482331208546107, 'skill': 0.053985475321504404, 'academy': 0.053985475321504404, 'spitting': 0.04746931858376969, 'theme': 0.053985475321504404, 'ways': 0.0414738924090006, 'simple': 0.04514360157690034, 'teens': 0.05031576615360466, 'home': 0.031129563255591953, 'minute': 0.04317723586568667, 'dead': 0.032632018664396543, 'dream': 0.2244699362563832, 'deal': 0.03630172783229627, 'best': 0.03433536212108261, 'took': 0.031129563255591953, 'queens': 0.04746931858376969, 'sky': 0.07725488967833125, 'hands': 0.03630172783229627, 'monch': 0.08635447173137334, 'pharoahe': 0.12953170759706, 'getting': 0.06526403732879309, 'sentiment': 0.053985475321504404, 've': 0.1922189786138455, 'hook': 0.10775649409890635, 'clouds': 0.09493863716753938, 'world': 0.025045859030208794, 'holla': 0.10063153230720932, 'deep': 0.0334552802624613, 'sleep': 0.030439874892714734, 'awake': 0.05031576615360466, 'eyes': 0.029163197544378287, 'smoke': 0.0669105605249226, 'feel': 0.05098697675295711, 'king': 0.030439874892714734, 'baby': 0.02978557109456156, 'swallow': 0.04514360157690034, 'tired': 0.04746931858376969, 'song': 0.03630172783229627, 'broke': 0.07260345566459254, 'oh': 0.027459854087692213, 'money': 0.05491970817538443, 'clock': 0.04317723586568667, 'remember': 0.27039211387415935, 'range': 0.039971437000196015, 'right': 0.021938184705518914, 'everybody': 0.06526403732879309, 'brain': 0.03528069285549101, 'hit': 0.025957398678887626, 'use': 0.03862744483916562, 'candy': 0.053985475321504404, 'morning': 0.04746931858376969, 'doubt': 0.04746931858376969, 'new': 0.052877638221773895, 'used': 0.032632018664396543, 'police': 0.039971437000196015, 'believe': 0.03630172783229627, 'come': 0.02228768951098789, 'face': 0.026939123524726587, 'north': 0.04746931858376969, 'break': 0.028569782298126473, 'better': 0.025493488376478555, 'll': 0.021938184705518914, 'real': 0.056005499902924985, 'produced': 0.02978557109456156}, {'twin': 0.048844748722722556, 'ends': 0.04457424233442868, 'amish': 0.048844748722722556, 'cleaner': 0.048844748722722556, 'crotch': 0.048844748722722556, 'jackpot': 0.048844748722722556, 'marshall': 0.03727376344385176, 'evian': 0.04457424233442868, 'claiming': 0.048844748722722556, 'deadliest': 0.048844748722722556, 'stalls': 0.048844748722722556, 'shut': 0.033003257055557886, 'dawes': 0.048844748722722556, 'dominique': 0.048844748722722556, 'balls': 0.03919404057113682, 'licks': 0.048844748722722556, 'hooker': 0.04457424233442868, 'paul': 0.03919404057113682, 'chris': 0.048844748722722556, 'coconuts': 0.048844748722722556, 'sniff': 0.04457424233442868, 'wearing': 0.041544269832145646, 'matter': 0.033003257055557886, 'paint': 0.041544269832145646, 'peta': 0.04457424233442868, 'furs': 0.048844748722722556, 'flailing': 0.048844748722722556, 'accidentally': 0.048844748722722556, 'script': 0.04457424233442868, 'person': 0.034243790941568736, 'familiar': 0.04457424233442868, 'bloody': 0.04457424233442868, 'stroke': 0.03919404057113682, 'thangs': 0.048844748722722556, 'australian': 0.048844748722722556, 'machine': 0.03727376344385176, 'having': 0.041544269832145646, 'backyard': 0.048844748722722556, 'automatic': 0.048844748722722556, 'garden': 0.04457424233442868, 'rocking': 0.03565019226646074, 'grass': 0.03565019226646074, 'irony': 0.09768949744544511, 'artist': 0.03727376344385176, 'opposite': 0.03727376344385176, 'condom': 0.04457424233442868, 'durex': 0.048844748722722556, 'cock': 0.034243790941568736, 'burlesque': 0.048844748722722556, 'slash': 0.048844748722722556, 'stripper': 0.04457424233442868, 'royce': 0.04457424233442868, 'comes': 0.03919404057113682, 'mission': 0.041544269832145646, 'ruin': 0.048844748722722556, 'does': 0.03919404057113682, 'jg': 0.09768949744544511, 'trust': 0.07130038453292148, 'skit': 0.034243790941568736, 'renegades': 0.048844748722722556, 'screaming': 0.041544269832145646, 'detainees': 0.048844748722722556, 'pile': 0.041544269832145646, 'foot': 0.03919404057113682, 'pose': 0.03919404057113682, 'morgan': 0.048844748722722556, 'pics': 0.048844748722722556, 'bay': 0.04457424233442868, 'guantanamo': 0.048844748722722556, 'geronimo': 0.048844748722722556, 'grainy': 0.048844748722722556, 'flick': 0.04457424233442868, 'depicted': 0.04457424233442868, 'film': 0.04457424233442868, 'documentary': 0.048844748722722556, 'cheney': 0.048844748722722556, 'mainly': 0.04457424233442868, 'clips': 0.041544269832145646, 'tip': 0.03565019226646074, 'hollow': 0.041544269832145646, 'shift': 0.048844748722722556, 'professional': 0.048844748722722556, 'swag': 0.04457424233442868, 'uses': 0.048844748722722556, 'smacking': 0.048844748722722556, 'capita': 0.048844748722722556, 'attraction': 0.04457424233442868, 'fatal': 0.03727376344385176, 'glenn': 0.048844748722722556, 'sicker': 0.048844748722722556, 'encrypted': 0.04457424233442868, 'cryptic': 0.048844748722722556, 'crip': 0.04457424233442868, 'blacula': 0.048844748722722556, 'bird': 0.033003257055557886, 'bloomberg': 0.048844748722722556, 'acura': 0.048844748722722556, 'legend': 0.04457424233442868, 'accurate': 0.048844748722722556, 'spectacular': 0.048844748722722556, 'spit': 0.06177944021608712, 'fit': 0.03919404057113682, 'specifically': 0.048844748722722556, 'vernacular': 0.09768949744544511, 'particularly': 0.04457424233442868, 'vehicular': 0.04457424233442868, 'archery': 0.048844748722722556, 'ace': 0.03919404057113682, 'gambit': 0.048844748722722556, 'marksman': 0.048844748722722556, 'spar': 0.048844748722722556, 'prepared': 0.04457424233442868, 'barkley': 0.048844748722722556, 'charles': 0.048844748722722556, 'gnarly': 0.048844748722722556, 'skateboard': 0.048844748722722556, 'radical': 0.048844748722722556, 'marley': 0.048844748722722556, 'davis': 0.048844748722722556, 'miles': 0.041544269832145646, 'garvey': 0.048844748722722556, 'marcus': 0.048844748722722556, 'mixture': 0.048844748722722556, 'regarded': 0.048844748722722556, 'highly': 0.048844748722722556, 'ask': 0.029130245565158048, 'bar': 0.03565019226646074, 'cackling': 0.048844748722722556, 'backing': 0.048844748722722556, 'blacking': 0.048844748722722556, 'jaws': 0.04457424233442868, 'racking': 0.048844748722722556, 'corridor': 0.048844748722722556, 'pour': 0.03919404057113682, 'gas': 0.041544269832145646, 'gasping': 0.048844748722722556, 'kardashian': 0.04457424233442868, 'slack': 0.048844748722722556, 'asses': 0.048844748722722556, 'faster': 0.03919404057113682, 'fall': 0.03088972010804356, 'warning': 0.048844748722722556, 'brashest': 0.048844748722722556, 'broad': 0.041544269832145646, 'brawl': 0.048844748722722556, 'gall': 0.048844748722722556, 'fakers': 0.048844748722722556, 'breaker': 0.04457424233442868, 'ball': 0.08308853966429129, 'equivalent': 0.04457424233442868, 'clever': 0.048844748722722556, 'ignint': 0.048844748722722556, 'capri': 0.04457424233442868, 'sieve': 0.048844748722722556, 'liver': 0.041544269832145646, 'riddled': 0.048844748722722556, 'liquor': 0.03727376344385176, 'rocks': 0.03727376344385176, 'kick': 0.06848758188313747, 'brains': 0.03919404057113682, 'sip': 0.03919404057113682, 'james': 0.04457424233442868, 'stitch': 0.04457424233442868, 'veins': 0.048844748722722556, 'itching': 0.048844748722722556, 'dickbrain': 0.048844748722722556, 'kidney': 0.048844748722722556, 'drunk': 0.03919404057113682, 'drinks': 0.041544269832145646, 'strychnine': 0.048844748722722556, 'drug': 0.03565019226646074, 'frame': 0.041544269832145646, 'wracked': 0.048844748722722556, 'packed': 0.03565019226646074, 'blistering': 0.048844748722722556, 'whittling': 0.048844748722722556, 'villains': 0.041544269832145646, 'toes': 0.048844748722722556, 'whispering': 0.04457424233442868, 'praise': 0.041544269832145646, 'pray': 0.03565019226646074, 'foes': 0.03727376344385176, 'ladies': 0.034243790941568736, 'deliberate': 0.048844748722722556, 'hades': 0.048844748722722556, 'styx': 0.048844748722722556, 'river': 0.03919404057113682, 'deliver': 0.048844748722722556, 'passing': 0.041544269832145646, 'troy': 0.04457424233442868, 'decoy': 0.048844748722722556, 'attractive': 0.048844748722722556, 'actions': 0.041544269832145646, 'destructive': 0.048844748722722556, 'audible': 0.048844748722722556, 'deplorable': 0.048844748722722556, 'deploy': 0.048844748722722556, 'employed': 0.04457424233442868, 'mccoy': 0.048844748722722556, 'stealth': 0.04457424233442868, 'heat': 0.0318935616805599, 'purse': 0.048844748722722556, 'flashing': 0.048844748722722556, 'earth': 0.0318935616805599, 'belts': 0.04457424233442868, 'seat': 0.03727376344385176, 'fasten': 0.048844748722722556, 'space': 0.03919404057113682, 'able': 0.041544269832145646, 'rumored': 0.048844748722722556, 'entire': 0.048844748722722556, 'rival': 0.048844748722722556, 'arsenal': 0.04457424233442868, 'remained': 0.048844748722722556, 'executed': 0.048844748722722556, 'tortured': 0.048844748722722556, 'captured': 0.048844748722722556, 'ninety': 0.04457424233442868, 'files': 0.048844748722722556, 'headquarters': 0.048844748722722556, 'infiltrate': 0.048844748722722556, 'assassins': 0.14653424616816768, 'hired': 0.048844748722722556, 'pots': 0.041544269832145646, 'gnikcuf': 0.048844748722722556, 'gnidaolnwod': 0.048844748722722556, 'cisum': 0.048844748722722556, 'rof': 0.048844748722722556, 'eerf': 0.048844748722722556, 'dna': 0.041544269832145646, 'ew': 0.048844748722722556, 'nac': 0.048844748722722556, 'evas': 0.048844748722722556, 'pih': 0.048844748722722556, 'poh': 0.048844748722722556, 'called': 0.02997328455327485, 'organization': 0.048844748722722556, 'funded': 0.048844748722722556, 'independently': 0.048844748722722556, 'order': 0.03727376344385176, 'individuals': 0.04457424233442868, 'freethinking': 0.048844748722722556, 'sanctions': 0.048844748722722556, 'placed': 0.048844748722722556, 'government': 0.041544269832145646, '2013': 0.048844748722722556, 'grae': 0.29306849233633536, 'jean': 0.2442237436136128, 'purpose': 0.03919404057113682, 'pop': 0.02997328455327485, 'beast': 0.041544269832145646, 'court': 0.033003257055557886, 'honest': 0.03727376344385176, 'shoot': 0.0318935616805599, 'probably': 0.02997328455327485, 'rapper': 0.06848758188313747, 'taking': 0.03565019226646074, 'bad': 0.028349713375883823, 'atlantic': 0.041544269832145646, 'master': 0.03727376344385176, 'look': 0.02312105904288844, 'slang': 0.034243790941568736, 'going': 0.06177944021608712, 'passion': 0.03565019226646074, 'captain': 0.04457424233442868, 'okay': 0.02997328455327485, 'adhere': 0.04457424233442868, 'seven': 0.03727376344385176, 'crash': 0.06848758188313747, 'open': 0.028349713375883823, 'splash': 0.03727376344385176, 'catch': 0.026943312050991822, 'stick': 0.0318935616805599, 'weed': 0.033003257055557886, 'shape': 0.03919404057113682, 'age': 0.03919404057113682, 'limited': 0.04457424233442868, 'stone': 0.04457424233442868, 'spine': 0.03919404057113682, 'stay': 0.025133322472703702, 'car': 0.0599465691065497, 'kill': 0.024593082789982987, 'fully': 0.041544269832145646, 'prepare': 0.041544269832145646, 'lines': 0.07130038453292148, 'white': 0.028349713375883823, 'pm': 0.08914848466885736, 'deadly': 0.03919404057113682, 'whipping': 0.04457424233442868, 'gave': 0.06177944021608712, 'blood': 0.026304791424733836, 'riding': 0.041544269832145646, 'best': 0.028349713375883823, 'point': 0.06848758188313747, 'holding': 0.033003257055557886, 'flip': 0.09266916032413068, 'control': 0.034243790941568736, 'term': 0.041544269832145646, 'pain': 0.028349713375883823, 'city': 0.053886624101983645, 'sipping': 0.03565019226646074, 'monch': 0.2139011535987644, 'pharoahe': 0.1782509613323037, 'walls': 0.03727376344385176, 'said': 0.020322576401689104, 'kept': 0.034243790941568736, 'left': 0.024593082789982987, 'men': 0.03088972010804356, 'da': 0.03565019226646074, 'trapped': 0.041544269832145646, 'gonna': 0.09069122265079174, 'bastard': 0.03727376344385176, 'whip': 0.07454752688770352, 'rick': 0.041544269832145646, 'sun': 0.03565019226646074, 'world': 0.020679639907546805, 'round': 0.034243790941568736, 'force': 0.07130038453292148, 'scriptures': 0.03919404057113682, 'hardly': 0.04457424233442868, 'people': 0.024079206987589943, 'feel': 0.021049234485306913, 'second': 0.03727376344385176, 'model': 0.041544269832145646, 'floor': 0.03565019226646074, 'dick': 0.053886624101983645, 'sick': 0.06177944021608712, 'body': 0.026304791424733836, 'plus': 0.02762305529226602, 'door': 0.0318935616805599, 'attack': 0.0318935616805599, 'pass': 0.0599465691065497, 'try': 0.024079206987589943, 'lives': 0.034243790941568736, 'bob': 0.03919404057113682, 'pay': 0.034243790941568736, 'really': 0.026304791424733836, 'flow': 0.0637871233611198, 'friend': 0.03088972010804356, 'water': 0.02997328455327485, 'slit': 0.04457424233442868, 'spades': 0.041544269832145646, 'dimes': 0.03919404057113682, 'rhymes': 0.029130245565158048, 'close': 0.03088972010804356, 'bitch': 0.08271855963018722, 'ass': 0.048158413975179885, 'word': 0.024593082789982987, 'mind': 0.04534561132539587, 'bitches': 0.0599465691065497, 'brain': 0.029130245565158048, 'stop': 0.024079206987589943, 'way': 0.03863746965834553, 'blow': 0.026943312050991822, 'hit': 0.021432271776687082, 'god': 0.019642833160414905, 'black': 0.019642833160414905, 'nigga': 0.020679639907546805, 'cold': 0.028349713375883823, 'guess': 0.025133322472703702, 'police': 0.033003257055557886, 'backwards': 0.08308853966429129, 'spark': 0.03727376344385176, 'face': 0.022242853528974156, 'hot': 0.02570277816498097, 'niggas': 0.04135927981509361, 'll': 0.05434116985824141, 'day': 0.021049234485306913, 'real': 0.02312105904288844}, {'fortunately': 0.068740361053862, 'rye': 0.068740361053862, 'sess': 0.068740361053862, 'canada': 0.068740361053862, 'fore': 0.058466225800282524, 'fronting': 0.06273037720318077, 'nuts': 0.06273037720318077, 'wrinkled': 0.068740361053862, 'chamberlain': 0.068740361053862, 'wilt': 0.068740361053862, 'mandolin': 0.068740361053862, 'scrambling': 0.068740361053862, 'genetics': 0.068740361053862, 'scroll': 0.068740361053862, 'velvet': 0.068740361053862, 'silhouette': 0.06273037720318077, 'schedules': 0.068740361053862, 'overnight': 0.058466225800282524, 'selena': 0.068740361053862, 'binos': 0.068740361053862, 'zima': 0.068740361053862, 'beach': 0.055158693011482594, 'beaming': 0.068740361053862, 'fairfax': 0.068740361053862, 'wilshire': 0.068740361053862, 'totalled': 0.068740361053862, 'smash': 0.058466225800282524, 'miramax': 0.068740361053862, 'staff': 0.068740361053862, 'brass': 0.068740361053862, 'fiery': 0.068740361053862, 'woolly': 0.068740361053862, 'tangled': 0.058466225800282524, 'ropes': 0.058466225800282524, 'priceless': 0.068740361053862, 'bangles': 0.068740361053862, 'glitter': 0.068740361053862, 'culprit': 0.06273037720318077, 'jeter': 0.068740361053862, 'derek': 0.068740361053862, 'ringleader': 0.068740361053862, 'spiteful': 0.068740361053862, 'eiffel': 0.068740361053862, 'expert': 0.068740361053862, 'koppel': 0.068740361053862, 'ted': 0.06273037720318077, 'giggle': 0.068740361053862, 'shout': 0.05245624194960129, 'wiggle': 0.068740361053862, 'gates': 0.068740361053862, 'neck': 0.0963841810934061, 'founder': 0.068740361053862, 'chip': 0.058466225800282524, 'micro': 0.068740361053862, 'props': 0.06273037720318077, 'checkmate': 0.068740361053862, 'fans': 0.058466225800282524, 'winter': 0.06273037720318077, 'vanished': 0.06273037720318077, 'scissor': 0.068740361053862, 'pulsar': 0.068740361053862, 'urge': 0.068740361053862, 'marrying': 0.068740361053862, 'herbs': 0.068740361053862, 'pharmacy': 0.068740361053862, 'birds': 0.058466225800282524, 'immune': 0.068740361053862, 'blacks': 0.06273037720318077, 'rumor': 0.06273037720318077, 'candyland': 0.068740361053862, 'burnt': 0.06273037720318077, 'duracell': 0.068740361053862, 'propel': 0.068740361053862, 'alikes': 0.068740361053862, 'allah': 0.12546075440636154, 'whoopi': 0.068740361053862, 'earths': 0.06273037720318077, 'nuns': 0.068740361053862, 'duels': 0.068740361053862, 'pool': 0.058466225800282524, 'brighton': 0.068740361053862, 'broom': 0.068740361053862, 'cycle': 0.068740361053862, 'wildflower': 0.068740361053862, 'trifling': 0.068740361053862, 'intellect': 0.068740361053862, 'expo': 0.068740361053862, 'hall': 0.068740361053862, 'monty': 0.068740361053862, 'host': 0.06273037720318077, 'rae': 0.068740361053862, 'purple': 0.058466225800282524, 'touch': 0.058466225800282524, 'dusty': 0.068740361053862, 'kinda': 0.058466225800282524, 'rusty': 0.06273037720318077, 'chilling': 0.068740361053862, 'clusty': 0.068740361053862, 'develop': 0.12546075440636154, 'lots': 0.068740361053862, 'killers': 0.137480722107724, 'herb': 0.055158693011482594, 'eating': 0.05245624194960129, 'blew': 0.044884557757903114, 'lay': 0.0928925161978401, 'inhale': 0.06273037720318077, 'parallel': 0.06273037720318077, 'breath': 0.04819209054670305, 'kids': 0.04347182795705251, 'picked': 0.05245624194960129, 'hair': 0.04644625809892005, 'busy': 0.058466225800282524, 'hug': 0.058466225800282524, 'handle': 0.055158693011482594, 'burner': 0.06273037720318077, 'depends': 0.055158693011482594, 'wifey': 0.06273037720318077, 'stock': 0.05245624194960129, 'snap': 0.10491248389920257, 'ex': 0.05017135213341958, 'rifle': 0.06273037720318077, 'iron': 0.04644625809892005, 'easy': 0.05017135213341958, 'fingers': 0.055158693011482594, 'sorry': 0.044884557757903114, 'script': 0.06273037720318077, 'grass': 0.05017135213341958, 'trust': 0.05017135213341958, 'dna': 0.058466225800282524, 'feet': 0.055158693011482594, 'prince': 0.055158693011482594, 'flag': 0.055158693011482594, 'bad': 0.0398972168798401, 'west': 0.05017135213341958, 'boy': 0.044884557757903114, 'tape': 0.04347182795705251, 'ground': 0.058466225800282524, 'knot': 0.06273037720318077, 'hang': 0.05245624194960129, 'laugh': 0.04218210669602181, 'following': 0.06273037720318077, 'smack': 0.058466225800282524, 'sort': 0.0963841810934061, 'red': 0.044884557757903114, 'pro': 0.05245624194960129, 'read': 0.04218210669602181, 'wax': 0.06273037720318077, 'heard': 0.03791795529312358, 'kill': 0.06922084500864728, 'nice': 0.044884557757903114, 'mics': 0.11031738602296519, 'touched': 0.055158693011482594, 'wig': 0.06273037720318077, 'wu': 0.044884557757903114, 'scream': 0.05017135213341958, 'did': 0.033887233029158866, 'pretty': 0.04819209054670305, 'learn': 0.10034270426683917, 'michael': 0.05245624194960129, 'blood': 0.07403870046491047, 'killing': 0.2338649032011301, 'dead': 0.03791795529312358, 'set': 0.038874573907221883, 'burn': 0.04218210669602181, 'hell': 0.037019350232455235, 'latinos': 0.06273037720318077, 'beats': 0.04644625809892005, 'control': 0.04819209054670305, 'good': 0.03130288971552371, 'sipping': 0.05017135213341958, 'hands': 0.08436421339204361, 'dry': 0.05245624194960129, 'men': 0.13041548387115753, 'understand': 0.04347182795705251, 'damn': 0.037019350232455235, 'soon': 0.04347182795705251, 've': 0.03190797144244233, 'world': 0.029102942504182182, 'cell': 0.04347182795705251, 'eyes': 0.033887233029158866, 'turn': 0.03253880894296519, 'people': 0.033887233029158866, 'feel': 0.029623081626260636, 'king': 0.035370714486920536, 'party': 0.044884557757903114, 'fed': 0.05245624194960129, 'body': 0.07403870046491047, 'shake': 0.058466225800282524, 'low': 0.07774914781444377, 'killah': 0.13465367327370933, 'ghostface': 0.13465367327370933, 'yes': 0.040995678145542384, 'land': 0.055158693011482594, 'check': 0.03461042250432364, 'sample': 0.05017135213341958, 'bridge': 0.03617212284534057, 'want': 0.06260577943104742, 'wish': 0.044884557757903114, 'taste': 0.08976911551580623, 'old': 0.03016213899465933, 'thing': 0.03461042250432364, 'thought': 0.08199135629108477, 'saying': 0.13933877429676014, 'hand': 0.038874573907221883, 'right': 0.050983735663509666, 'word': 0.03461042250432364, 'kid': 0.03617212284534057, 'living': 0.04218210669602181, 'outro': 0.029623081626260636, 'ghost': 0.08976911551580623, 'stop': 0.033887233029158866, 'blow': 0.03791795529312358, 'big': 0.03617212284534057, 'hit': 0.03016213899465933, 'son': 0.1061121434607616, 'god': 0.1658629202372646, 'flash': 0.05017135213341958, 'game': 0.06144308578392581, 'rap': 0.03253880894296519, 'school': 0.044884557757903114, 'love': 0.026315548837460703, 'rolling': 0.05017135213341958, 'ill': 0.0398972168798401, 'come': 0.025897987591761096, 'killer': 0.04819209054670305, 'face': 0.03130288971552371, 'break': 0.03319769270347303, 'hot': 0.03617212284534057, 'll': 0.050983735663509666}, {'violin': 0.03985927959326719, 'lush': 0.04367806145519384, 'lying': 0.03985927959326719, 'crushed': 0.03985927959326719, 'dying': 0.03985927959326719, 'sail': 0.04367806145519384, 'sea': 0.04367806145519384, 'prevail': 0.04367806145519384, 'foundation': 0.04367806145519384, 'marching': 0.04367806145519384, 'planted': 0.04367806145519384, 'pamphlet': 0.04367806145519384, 'lighter': 0.04367806145519384, 'heavenly': 0.03985927959326719, 'acoustics': 0.04367806145519384, 'organic': 0.04367806145519384, 'roots': 0.04367806145519384, 'juices': 0.04367806145519384, 'saliva': 0.04367806145519384, 'spitters': 0.04367806145519384, 'smoothest': 0.04367806145519384, 'lewis': 0.04367806145519384, 'carl': 0.04367806145519384, 'produces': 0.04367806145519384, 'nooses': 0.04367806145519384, 'searching': 0.03985927959326719, 'religion': 0.04367806145519384, 'given': 0.04367806145519384, 'negative': 0.04367806145519384, 'intelligent': 0.04367806145519384, 'recognized': 0.03985927959326719, 'wondering': 0.03714981074302209, 'differ': 0.04367806145519384, 'thighs': 0.04367806145519384, 'venders': 0.04367806145519384, 'prophets': 0.04367806145519384, 'naturally': 0.04367806145519384, 'rewind': 0.04367806145519384, 'vocal': 0.11957783877980156, 'female': 0.1310341843655815, 'denial': 0.04367806145519384, 'hidden': 0.07971855918653438, 'discovery': 0.04367806145519384, 'clearer': 0.04367806145519384, 'error': 0.04367806145519384, 'visions': 0.03714981074302209, 'refracts': 0.04367806145519384, 'brings': 0.04367806145519384, 'sting': 0.04367806145519384, 'electricity': 0.04367806145519384, 'cling': 0.04367806145519384, 'stable': 0.04367806145519384, 'paves': 0.04367806145519384, 'jamerson': 0.04367806145519384, 'donald': 0.03985927959326719, 'false': 0.08735612291038768, 'deliverance': 0.04367806145519384, 'stray': 0.03985927959326719, 'stated': 0.04367806145519384, 'conceived': 0.04367806145519384, 'angles': 0.04367806145519384, 'balance': 0.04367806145519384, 'existence': 0.04367806145519384, 'creator': 0.04367806145519384, 'healing': 0.04367806145519384, 'revealed': 0.03985927959326719, 'nypd': 0.04367806145519384, 'notch': 0.03714981074302209, 'amateur': 0.04367806145519384, 'observing': 0.04367806145519384, 'parallels': 0.04367806145519384, 'watching': 0.03504818342830557, 'minoxodil': 0.04367806145519384, 'makes': 0.03504818342830557, 'boxing': 0.04367806145519384, 'conscious': 0.03985927959326719, 'skills': 0.03714981074302209, 'video': 0.03985927959326719, 'marks': 0.03714981074302209, 'enabling': 0.03985927959326719, 'faced': 0.03714981074302209, 'constantly': 0.03714981074302209, 'outside': 0.06666205776219086, 'lovely': 0.03714981074302209, 'path': 0.03714981074302209, 'fronting': 0.03985927959326719, 'ropes': 0.03714981074302209, 'neck': 0.061243120061700684, 'develop': 0.03985927959326719, 'lay': 0.02951224701916878, 'tapes': 0.03714981074302209, 'breath': 0.030621560030850342, 'kids': 0.027622275239287182, 'blind': 0.03985927959326719, 'common': 0.03714981074302209, 'mirror': 0.03333102888109543, 'proof': 0.03333102888109543, 'hair': 0.02951224701916878, 'unless': 0.07009636685661114, 'forbidden': 0.03714981074302209, 'great': 0.02951224701916878, 'lips': 0.031879195398124165, 'semi': 0.03333102888109543, 'chest': 0.03714981074302209, 'positive': 0.03985927959326719, 'pack': 0.02851993271613382, 'static': 0.03985927959326719, 'created': 0.03714981074302209, 'sinners': 0.03714981074302209, 'picture': 0.030621560030850342, 'dark': 0.02851993271613382, 'rise': 0.030621560030850342, 'sending': 0.03985927959326719, 'names': 0.03985927959326719, 'ugly': 0.030621560030850342, 'tried': 0.026048913942062372, 'art': 0.02951224701916878, 'rocking': 0.031879195398124165, 'opposite': 0.03333102888109543, 'stripper': 0.03985927959326719, 'troy': 0.03985927959326719, 'earth': 0.05703986543226764, 'met': 0.03504818342830557, 'shall': 0.031879195398124165, 'days': 0.02851993271613382, 'slave': 0.03333102888109543, 'weight': 0.031879195398124165, 'seek': 0.03985927959326719, 'similar': 0.03504818342830557, 'souls': 0.03714981074302209, 'open': 0.025350944685952413, 'death': 0.025350944685952413, 'true': 0.10721111267569473, 'sort': 0.030621560030850342, 'kweli': 0.03985927959326719, 'talib': 0.03985927959326719, 'truth': 0.7968306695175571, 'speaking': 0.07009636685661114, 'born': 0.027622275239287182, 'stay': 0.02247477635247353, 'divine': 0.03714981074302209, 'battling': 0.03985927959326719, 'course': 0.03333102888109543, 'away': 0.026802778168923683, 'heard': 0.02409330931867859, 'kill': 0.04398336400792414, 'wind': 0.030621560030850342, 'ran': 0.02951224701916878, 'did': 0.02153216282402576, 'feelings': 0.03985927959326719, 'state': 0.026802778168923683, 'rate': 0.03714981074302209, 'fear': 0.06375839079624833, 'spent': 0.03333102888109543, 'set': 0.024701150854207165, 'free': 0.02851993271613382, 'minds': 0.03504818342830557, 'took': 0.045967992613994056, 'monch': 0.031879195398124165, 'pharoahe': 0.031879195398124165, 'words': 0.055244550478574364, 'said': 0.018172900142035413, 'men': 0.055244550478574364, 'planet': 0.03714981074302209, 'understand': 0.027622275239287182, 'damn': 0.023522329962997496, 'wrong': 0.03333102888109543, 'world': 0.018492194276207186, 'gotta': 0.06895198892099108, 'speak': 0.05902449403833756, 'grow': 0.031879195398124165, 'eyes': 0.02153216282402576, 'light': 0.07410345256262149, 'breathe': 0.027622275239287182, 'things': 0.02851993271613382, 'hate': 0.026802778168923683, 'inside': 0.04494955270494706, 'lives': 0.030621560030850342, 'end': 0.024701150854207165, 'sure': 0.02409330931867859, 'check': 0.02199168200396207, 'self': 0.031879195398124165, 'told': 0.040549054913503864, 'old': 0.01916521444507037, 'rhyme': 0.026802778168923683, 'telling': 0.031879195398124165, 'heart': 0.04704465992599499, 'clock': 0.031879195398124165, 'sound': 0.045967992613994056, 'right': 0.04859308356951863, 'bring': 0.02153216282402576, 'young': 0.022983996306997028, 'word': 0.02199168200396207, 'everybody': 0.02409330931867859, 'mind': 0.020274527456751932, 'way': 0.03455048533037755, 'live': 0.01989005468924555, 'god': 0.03513011721301367, 'cops': 0.027622275239287182, 'crew': 0.026048913942062372, 'nigga': 0.018492194276207186, 'run': 0.020675365606183358, 'ill': 0.050701889371904826, 'drink': 0.031879195398124165, 'niggas': 0.03698438855241437, 'll': 0.016197694523172875, 'jungle': 0.03504818342830557, 'real': 0.020675365606183358, 'chorus': 0.053592229727531436}, {'dara': 0.06251259952160187, 'olu': 0.06251259952160187, 'trumpet': 0.06251259952160187, 'cabbage': 0.06251259952160187, 'matic': 0.06251259952160187, 'pack': 0.040818092032211796, 'fabric': 0.057047110137649584, 'static': 0.057047110137649584, 'illmatic': 0.057047110137649584, 'produce': 0.06251259952160187, 'cracks': 0.05316928370697391, 'loose': 0.04562591169569537, 'lotto': 0.06251259952160187, 'bottle': 0.04562591169569537, 'bought': 0.04770379432302161, 'instead': 0.04770379432302161, 'motto': 0.057047110137649584, 'switched': 0.06251259952160187, 'hundreds': 0.057047110137649584, 'abundance': 0.06251259952160187, 'hash': 0.06251259952160187, 'smokin': 0.06251259952160187, 'piece': 0.05316928370697391, 'quick': 0.04382596789234595, 'flashin': 0.057047110137649584, 'cards': 0.05016140784683976, 'rip': 0.06251259952160187, 'jewels': 0.04770379432302161, 'wallets': 0.06251259952160187, 'foreigners': 0.057047110137649584, 'robbin': 0.06251259952160187, 'plain': 0.057047110137649584, 'grain': 0.06251259952160187, 'maintain': 0.04770379432302161, 'vein': 0.057047110137649584, 'skull': 0.05316928370697391, 'pus': 0.06251259952160187, 'cuss': 0.06251259952160187, 'load': 0.05016140784683976, 'annual': 0.057047110137649584, 'created': 0.05316928370697391, 'godly': 0.06251259952160187, 'celebrated': 0.06251259952160187, 'physical': 0.06251259952160187, 'fresh': 0.04382596789234595, 'leaves': 0.057047110137649584, 'adolescence': 0.06251259952160187, 'blessin': 0.06251259952160187, 'lye': 0.2500503980864075, 'puff': 0.21267713482789563, 'packin': 0.06251259952160187, 'papers': 0.057047110137649584, 'plenty': 0.05316928370697391, 'stackin': 0.06251259952160187, 'capers': 0.06251259952160187, 'vapors': 0.057047110137649584, 'expire': 0.06251259952160187, 'thievin': 0.06251259952160187, 'leavin': 0.10633856741394782, 'guide': 0.06251259952160187, 'insight': 0.06251259952160187, 'proper': 0.06251259952160187, 'provides': 0.06251259952160187, 'essence': 0.11409422027529917, 'schweppervescent': 0.06251259952160187, 'tradition': 0.06251259952160187, 'carry': 0.04562591169569537, 'quentin': 0.06251259952160187, 'san': 0.06251259952160187, 'restin': 0.06251259952160187, 'sinners': 0.05316928370697391, 'somethin': 0.03535260264825949, 'percenters': 0.06251259952160187, 'beginners': 0.06251259952160187, 'peeps': 0.05316928370697391, 'destined': 0.06251259952160187, 'orientated': 0.057047110137649584, 'mentality': 0.06251259952160187, 'salary': 0.057047110137649584, 'depends': 0.05016140784683976, 'baddest': 0.06251259952160187, 'actuality': 0.06251259952160187, 'realism': 0.06251259952160187, 'visualizin': 0.06251259952160187, 'bankrolls': 0.06251259952160187, 'clothes': 0.04223830493906931, 'wifey': 0.057047110137649584, 'washingtons': 0.06251259952160187, 'jacksons': 0.06251259952160187, 'spendin': 0.06251259952160187, 'safe': 0.05016140784683976, 'grants': 0.057047110137649584, 'sayin': 0.204090460161059, 'ayo': 0.10032281569367953, 'az': 0.22818844055059834, 'hoes': 0.04770379432302161, 'stood': 0.057047110137649584, 'cooked': 0.05316928370697391, 'person': 0.04382596789234595, 'frame': 0.05316928370697391, 'woke': 0.04770379432302161, 'tomorrow': 0.04382596789234595, 'gettin': 0.03836047850839364, 'days': 0.040818092032211796, '365': 0.057047110137649584, 'sittin': 0.05316928370697391, 'struck': 0.04382596789234595, 'pieces': 0.057047110137649584, 'early': 0.057047110137649584, 'wool': 0.057047110137649584, 'born': 0.039533353184191954, 'cut': 0.03366545912987138, 'rich': 0.039533353184191954, 'dipped': 0.05316928370697391, 'mic': 0.03289498912444134, 'steel': 0.04382596789234595, 'die': 0.39533353184191955, 'simple': 0.04770379432302161, 'quarter': 0.04770379432302161, '20': 0.04223830493906931, 'dream': 0.039533353184191954, 'keepin': 0.11409422027529917, 'hood': 0.03728153839664472, 'loot': 0.05016140784683976, 'long': 0.03366545912987138, 'pain': 0.0362825958810674, 'gonna': 0.20312013885635968, 've': 0.05803432538753134, 'small': 0.04382596789234595, 'ghetto': 0.04223830493906931, 'gotta': 0.03289498912444134, 'turn': 0.02959084737375293, 'hard': 0.03289498912444134, 'peace': 0.03366545912987138, 'inside': 0.03216618702047914, 'bust': 0.040818092032211796, 'doin': 0.03836047850839364, 'body': 0.03366545912987138, 'plus': 0.03535260264825949, 'status': 0.057047110137649584, 'buck': 0.05016140784683976, 'kind': 0.05316928370697391, 'dough': 0.04382596789234595, 'money': 0.08705148808129701, 'thing': 0.06294955243516764, 'years': 0.039533353184191954, 'high': 0.13969111291008376, 'cash': 0.06896530415543595, 'rhymes': 0.03728153839664472, 'right': 0.023182347319581985, 'young': 0.03289498912444134, 'bitch': 0.26466264677292284, 'ass': 0.030817106497115096, 'outro': 0.026939280066439433, 'projects': 0.04223830493906931, 'brain': 0.03728153839664472, 'count': 0.04770379432302161, 'live': 0.02846690035744968, 'son': 0.03216618702047914, 'green': 0.04770379432302161, 'block': 0.0362825958810674, 'stacks': 0.04382596789234595, 'used': 0.06896530415543595, 'blunts': 0.05016140784683976, 'crack': 0.0362825958810674, 'turned': 0.039533353184191954, 'street': 0.03535260264825949, 'nas': 0.12671491481720795, 'run': 0.02959084737375293, 'tryin': 0.039533353184191954, 'niggas': 0.026466264677292288, 'll': 0.023182347319581985, 'day': 0.05387856013287887, 'real': 0.05918169474750586, 'chorus': 0.051134589201241254, 'produced': 0.03147477621758382}, {'granite': 0.06960895768210508, 'overgrown': 0.06960895768210508, 'chicken': 0.05920499943803564, 'ben': 0.13921791536421016, 'meter': 0.06960895768210508, 'bend': 0.05920499943803564, 'grip': 0.05920499943803564, 'masseur': 0.06960895768210508, 'staring': 0.06960895768210508, 'weird': 0.0558556729812347, 'bore': 0.06960895768210508, 'attempts': 0.06960895768210508, 'book': 0.06352303225025574, 'gosh': 0.06960895768210508, 'concern': 0.06960895768210508, 'risking': 0.06960895768210508, 'snappin': 0.13921791536421016, 'snow': 0.06352303225025574, 'foolproof': 0.06960895768210508, 'voted': 0.06960895768210508, 'session': 0.06960895768210508, 'leaders': 0.06352303225025574, 'programmed': 0.06960895768210508, 'africa': 0.05920499943803564, 'representative': 0.06960895768210508, 'score': 0.05920499943803564, 'jobs': 0.06352303225025574, 'string': 0.06960895768210508, 'shotty': 0.06352303225025574, 'sweatshirt': 0.06960895768210508, 'bodies': 0.05311907400618629, 'robberies': 0.06960895768210508, 'shows': 0.06960895768210508, 'plots': 0.05920499943803564, 'helmet': 0.06960895768210508, 'tarded': 0.06960895768210508, 'fewer': 0.06960895768210508, 'tubbies': 0.06960895768210508, 'tellie': 0.06960895768210508, 'hubbies': 0.06960895768210508, 'smelly': 0.06960895768210508, 'blingin': 0.06960895768210508, 'kingpin': 0.06960895768210508, 'dancing': 0.06960895768210508, 'rapping': 0.06352303225025574, 'cheerleaders': 0.06960895768210508, 'tweeters': 0.06352303225025574, 'spare': 0.06960895768210508, 'looser': 0.06960895768210508, 'truancy': 0.06960895768210508, 'cutting': 0.06960895768210508, 'herb': 0.0558556729812347, 'fixed': 0.06960895768210508, 'plumbing': 0.06960895768210508, 'uhh': 0.06960895768210508, 'nerves': 0.06960895768210508, 'curves': 0.06352303225025574, 'skeezer': 0.06960895768210508, 'skeet': 0.06960895768210508, 'pizza': 0.06960895768210508, 'study': 0.06352303225025574, 'geek': 0.06960895768210508, 'nerd': 0.06960895768210508, 'mold': 0.06352303225025574, 'pride': 0.06960895768210508, 'turd': 0.06960895768210508, 'toad': 0.06960895768210508, 'fried': 0.0558556729812347, 'derriere': 0.06960895768210508, 'autograph': 0.11840999887607127, 'trooping': 0.06352303225025574, 'group': 0.06960895768210508, 'cough': 0.06352303225025574, 'whooping': 0.06960895768210508, 'choking': 0.06352303225025574, 'drooping': 0.06960895768210508, 'watermelon': 0.06960895768210508, 'eating': 0.05311907400618629, 'leads': 0.06960895768210508, 'dt': 0.06960895768210508, 'bunch': 0.05920499943803564, 'toss': 0.06960895768210508, 'crush': 0.06352303225025574, 'forfeit': 0.06960895768210508, 'leaving': 0.05920499943803564, 'horse': 0.06352303225025574, 'cab': 0.06352303225025574, 'tab': 0.06960895768210508, 'table': 0.06352303225025574, 'emcees': 0.06352303225025574, 'tempt': 0.06960895768210508, 'beer': 0.06352303225025574, 'brew': 0.06960895768210508, 'shouldn': 0.06960895768210508, 'thrill': 0.06960895768210508, 'doesn': 0.06352303225025574, 'alcohol': 0.06352303225025574, 'mere': 0.06960895768210508, 'super': 0.05920499943803564, 'taken': 0.05920499943803564, 'slide': 0.0558556729812347, 'fact': 0.04703314857433694, 'caught': 0.0393657893053159, 'champagne': 0.0558556729812347, 'tour': 0.0558556729812347, 'humor': 0.06352303225025574, 'number': 0.04703314857433694, 'deaf': 0.06352303225025574, 'great': 0.04703314857433694, 'south': 0.0558556729812347, 'pack': 0.04545171473716525, 'load': 0.0558556729812347, 'adidas': 0.06352303225025574, 'listen': 0.04040135429673494, 'thigh': 0.06352303225025574, 'dude': 0.05920499943803564, 'iron': 0.04703314857433694, 'villain': 0.0488010411939662, 'mask': 0.0558556729812347, 'wears': 0.05920499943803564, 'squeeze': 0.050805312540804386, 'lead': 0.0488010411939662, 'special': 0.06352303225025574, 'tried': 0.04151369561393851, 'store': 0.05920499943803564, 'fart': 0.06352303225025574, 'matter': 0.14109944572301084, 'comes': 0.0558556729812347, 'skit': 0.0976020823879324, 'screaming': 0.05920499943803564, 'foot': 0.0558556729812347, 'bird': 0.04703314857433694, 'bar': 0.050805312540804386, 'kick': 0.0976020823879324, 'ladies': 0.0488010411939662, 'heat': 0.0909034294743305, 'earth': 0.04545171473716525, 'pair': 0.050805312540804386, 'ears': 0.06352303225025574, 'eat': 0.08080270859346989, 'tomorrow': 0.0488010411939662, 'eye': 0.08302739122787701, 'doing': 0.04703314857433694, 'shall': 0.050805312540804386, 'aw': 0.050805312540804386, 'probably': 0.04271511576211685, 'happened': 0.05311907400618629, 'master': 0.05311907400618629, 'look': 0.03294996622089627, 'hurt': 0.050805312540804386, 'soft': 0.05311907400618629, 'warn': 0.05920499943803564, 'boy': 0.04545171473716525, 'label': 0.050805312540804386, 'freaks': 0.05920499943803564, 'laugh': 0.04271511576211685, 'stole': 0.0558556729812347, 'open': 0.08080270859346989, 'crooked': 0.0558556729812347, 'meet': 0.0488010411939662, 'true': 0.04271511576211685, 'weed': 0.04703314857433694, 'night': 0.03581765545247373, 'red': 0.04545171473716525, 'speaking': 0.0558556729812347, 'read': 0.0854302315242337, 'stay': 0.03581765545247373, 'case': 0.04271511576211685, 'brought': 0.1117113459624694, 'spitting': 0.0558556729812347, 'war': 0.04703314857433694, 'mic': 0.073258380660535, 'hour': 0.04703314857433694, 'start': 0.0787315786106318, 'code': 0.050805312540804386, 'steel': 0.0488010411939662, 'seeds': 0.10161062508160877, 'die': 0.04402113381765852, 'story': 0.04703314857433694, 'coming': 0.0488010411939662, 'asked': 0.0558556729812347, 'minds': 0.0558556729812347, 'control': 0.0488010411939662, 'good': 0.03169843003629486, 'words': 0.04402113381765852, 'went': 0.037487123201620544, 'guy': 0.05311907400618629, 'left': 0.07009551298619161, 'realized': 0.05920499943803564, 'getting': 0.07679416589979352, 'gentlemen': 0.05920499943803564, 'soon': 0.04402113381765852, 'relax': 0.0558556729812347, 'world': 0.058941369004768686, 'wide': 0.05920499943803564, 'eyes': 0.034315428864885596, 'feel': 0.059994792105331, 'madlib': 0.06352303225025574, 'floor': 0.050805312540804386, 'door': 0.04545171473716525, 'maybe': 0.03839708294989676, 'road': 0.0488010411939662, 'doom': 0.15241593762241315, 'uh': 0.04151369561393851, 'sure': 0.03839708294989676, 'ya': 0.06723435114717814, 'tell': 0.12217305959367257, 'told': 0.0969334725541422, 'wish': 0.04545171473716525, 'taste': 0.04545171473716525, 'old': 0.030543264898418142, 'hope': 0.04040135429673494, 'heart': 0.037487123201620544, 'lost': 0.0393657893053159, 'gone': 0.04545171473716525, 'oh': 0.06462231503609481, 'flow': 0.04545171473716525, 'head': 0.1584921501814743, 'wet': 0.04545171473716525, 'money': 0.032311157518047404, 'thing': 0.07009551298619161, 'came': 0.073258380660535, 'sound': 0.0366291903302675, 'rappers': 0.04402113381765852, 'cash': 0.03839708294989676, 'rhymes': 0.04151369561393851, 'right': 0.05162796127148781, 'bring': 0.034315428864885596, 'kid': 0.0366291903302675, 'everybody': 0.03839708294989676, 'mind': 0.032311157518047404, 'way': 0.027531250141739724, 'yard': 0.0558556729812347, 'need': 0.028961831061246456, 'plan': 0.04545171473716525, 'wake': 0.04703314857433694, 'mc': 0.04151369561393851, 'new': 0.062219474739738115, 'fly': 0.04402113381765852, 'sell': 0.04545171473716525, 'love': 0.026648069595864556, 'cold': 0.04040135429673494, 'corner': 0.04271511576211685, 'run': 0.03294996622089627, 'won': 0.03361717557358907, 'hold': 0.06723435114717814, 'little': 0.03294996622089627, 'drink': 0.050805312540804386, 'knock': 0.0488010411939662, 'face': 0.03169843003629486, 'll': 0.025813980635743906, 'produced': 0.03504775649309581}, {'lawyers': 0.04688343247966514, 'sparrow': 0.04688343247966514, 'arrows': 0.04688343247966514, 'angrily': 0.04688343247966514, 'vendettas': 0.04688343247966514, 'personal': 0.04278440437234243, 'crushing': 0.04688343247966514, 'armarettas': 0.04688343247966514, 'headers': 0.04688343247966514, 'bald': 0.04688343247966514, 'moet': 0.04688343247966514, 'spirals': 0.04688343247966514, 'mirrors': 0.04688343247966514, 'shatter': 0.04278440437234243, 'vine': 0.04688343247966514, 'swinging': 0.04688343247966514, 'tarzan': 0.04688343247966514, 'memphis': 0.04688343247966514, 'rednecks': 0.04688343247966514, 'benches': 0.04278440437234243, 'thieves': 0.04688343247966514, 'emperor': 0.04688343247966514, 'labelled': 0.04688343247966514, 'rocky': 0.04688343247966514, 'bing': 0.04688343247966514, 'springs': 0.04688343247966514, 'jeans': 0.04688343247966514, 'baggy': 0.04688343247966514, 'hats': 0.04688343247966514, 'noodle': 0.04688343247966514, 'expensive': 0.04688343247966514, 'jack': 0.03987609764662998, 'elegant': 0.04688343247966514, 'risen': 0.04688343247966514, 'pigeons': 0.04688343247966514, 'throwing': 0.04278440437234243, 'copywritten': 0.04688343247966514, 'velours': 0.04688343247966514, 'reeboks': 0.04688343247966514, 'wars': 0.04688343247966514, 'kufi': 0.04688343247966514, 'muslims': 0.04688343247966514, 'revenge': 0.03987609764662998, 'operations': 0.09376686495933027, 'laundering': 0.09376686495933027, 'smuggling': 0.09376686495933027, 'insure': 0.09376686495933027, 'positions': 0.09376686495933027, 'integrated': 0.09376686495933027, 'gallons': 0.04688343247966514, 'shorties': 0.04688343247966514, 'endangered': 0.04688343247966514, 'premeditate': 0.04688343247966514, 'chk': 0.09376686495933027, 'complaints': 0.04688343247966514, 'stuttering': 0.04688343247966514, 'carpet': 0.04688343247966514, 'laid': 0.04278440437234243, 'kaufman': 0.04688343247966514, 'spofford': 0.04688343247966514, 'sniper': 0.04688343247966514, 'jfk': 0.04688343247966514, 'hyper': 0.04278440437234243, 'franklin': 0.04688343247966514, 'putnam': 0.04688343247966514, 'chemical': 0.04688343247966514, 'dug': 0.04278440437234243, 'contestant': 0.04688343247966514, 'astronauts': 0.04278440437234243, 'victims': 0.04688343247966514, 'gagged': 0.04688343247966514, 'scars': 0.04278440437234243, 'armed': 0.04278440437234243, 'psychos': 0.04688343247966514, 'calling': 0.09376686495933027, 'reports': 0.09376686495933027, 'investigative': 0.09376686495933027, 'buildings': 0.09376686495933027, 'tokers': 0.09376686495933027, 'mocha': 0.09376686495933027, 'carriers': 0.09376686495933027, 'vial': 0.08556880874468487, 'smokers': 0.09376686495933027, 'clash': 0.04278440437234243, 'bloodiest': 0.04688343247966514, 'paradise': 0.04278440437234243, 'jacked': 0.04278440437234243, 'gats': 0.04278440437234243, 'tackable': 0.04688343247966514, 'sparkable': 0.04688343247966514, 'remarkable': 0.04688343247966514, 'chef': 0.04278440437234243, 'breathing': 0.04688343247966514, 'feed': 0.04278440437234243, 'vendetta': 0.04688343247966514, 'route': 0.04688343247966514, 'morgue': 0.04688343247966514, 'guyanese': 0.04688343247966514, 'faculties': 0.04688343247966514, 'leathers': 0.04278440437234243, 'tropical': 0.04278440437234243, 'brutes': 0.04688343247966514, 'felony': 0.04278440437234243, 'roofs': 0.04688343247966514, 'youths': 0.04688343247966514, 'analyzing': 0.04688343247966514, 'collaboration': 0.04688343247966514, 'ringers': 0.09376686495933027, 'slingers': 0.09376686495933027, 'anxiety': 0.09376686495933027, 'profanity': 0.09376686495933027, 'starvation': 0.09376686495933027, 'growers': 0.09376686495933027, 'blowers': 0.09376686495933027, 'backstabbers': 0.09376686495933027, 'lifers': 0.09376686495933027, 'droppers': 0.09376686495933027, 'crimesters': 0.09376686495933027, 'rhymsters': 0.09376686495933027, 'neighborhoods': 0.04688343247966514, 'gowanus': 0.04688343247966514, 'slope': 0.04688343247966514, 'cemetery': 0.04688343247966514, 'prospect': 0.04688343247966514, '000': 0.08556880874468487, 'hessian': 0.04688343247966514, 'fought': 0.04688343247966514, 'report': 0.18753372991866055, 'excerpt': 0.18753372991866055, 'success': 0.07975219529325996, 'illegal': 0.08556880874468487, 'seas': 0.03987609764662998, 'roll': 0.034218691378673345, 'avenue': 0.04278440437234243, 'visions': 0.03987609764662998, 'shadows': 0.04278440437234243, 'corrupt': 0.08556880874468487, 'timers': 0.04278440437234243, 'plush': 0.04278440437234243, 'christ': 0.03987609764662998, 'ice': 0.03577706953930727, 'barrels': 0.03987609764662998, 'judges': 0.08556880874468487, 'bull': 0.04278440437234243, 'nines': 0.04278440437234243, 'ers': 0.04278440437234243, 'trife': 0.03762023969359311, 'cipher': 0.03987609764662998, 'press': 0.03577706953930727, 'burnt': 0.08556880874468487, 'leaving': 0.03987609764662998, 'kids': 0.029649371628919962, 'caught': 0.026513876753235247, 'play': 0.024670706598949398, 'continued': 0.08556880874468487, 'fighting': 0.07975219529325996, 'standing': 0.03762023969359311, 'number': 0.06335608286396911, 'trees': 0.034218691378673345, 'building': 0.06573752562718964, 'locked': 0.06843738275734669, 'lose': 0.034218691378673345, 'loose': 0.034218691378673345, 'puff': 0.03987609764662998, 'revolution': 0.03762023969359311, 'seed': 0.03987609764662998, 'aim': 0.031678041431984556, 'release': 0.03577706953930727, 'lab': 0.03577706953930727, 'villain': 0.03286876281359482, 'devil': 0.03577706953930727, 'loaded': 0.03987609764662998, 'tv': 0.14310827815722907, 'milk': 0.03987609764662998, 'starting': 0.04278440437234243, 'save': 0.09503412429595369, 'bread': 0.03762023969359311, 'bank': 0.034218691378673345, 'children': 0.06335608286396911, 'ends': 0.04278440437234243, 'rocking': 0.06843738275734669, 'depicted': 0.04278440437234243, 'fall': 0.029649371628919962, 'kick': 0.03286876281359482, 'drug': 0.10265607413602003, 'packed': 0.034218691378673345, 'praise': 0.03987609764662998, 'heat': 0.030612904860557958, 'mix': 0.03762023969359311, 'strings': 0.03762023969359311, 'bubble': 0.03987609764662998, 'keys': 0.03762023969359311, 'eye': 0.055921094356446835, 'master': 0.03577706953930727, 'slang': 0.06573752562718964, 'rugged': 0.08556880874468487, 'boy': 0.030612904860557958, 'gza': 0.06573752562718964, 'seven': 0.03577706953930727, 'bound': 0.03577706953930727, 'american': 0.03762023969359311, 'crooked': 0.07524047938718623, 'blue': 0.030612904860557958, 'cars': 0.07524047938718623, 'remain': 0.03762023969359311, 'red': 0.030612904860557958, 'place': 0.053027753506470494, 'dreams': 0.031678041431984556, 'pull': 0.02876973470627211, 'change': 0.034218691378673345, 'island': 0.030612904860557958, 'dollar': 0.030612904860557958, 'park': 0.07155413907861453, 'dime': 0.14310827815722907, 'nice': 0.030612904860557958, 'palm': 0.03987609764662998, 'golden': 0.03762023969359311, 'raekwon': 0.03577706953930727, 'white': 0.027211356545638183, 'cream': 0.031678041431984556, 'average': 0.04278440437234243, 'soldiers': 0.07975219529325996, 'patients': 0.08556880874468487, 'home': 0.024670706598949398, 'fear': 0.034218691378673345, 'pockets': 0.034218691378673345, 'blood': 0.025248546566469934, 'dead': 0.05172285596111933, 'pow': 0.03577706953930727, 'shaolin': 0.03577706953930727, 'best': 0.027211356545638183, 'craps': 0.04278440437234243, 'brooklyn': 0.07524047938718623, 'shots': 0.027211356545638183, 'wood': 0.04278440437234243, 'took': 0.0740121197968482, 'men': 0.059298743257839924, 'getting': 0.025861427980559664, 'grab': 0.06335608286396911, 'hook': 0.04269942414897187, 'trying': 0.055921094356446835, 'world': 0.019849267867320056, 'ring': 0.029649371628919962, 'level': 0.07524047938718623, 'ghetto': 0.031678041431984556, 'sleep': 0.024124116879538634, 'light': 0.026513876753235247, 'king': 0.04824823375907727, 'interlude': 0.05753946941254422, 'plus': 0.026513876753235247, 'low': 0.053027753506470494, 'girl': 0.027960547178223417, 'killah': 0.030612904860557958, 'ghostface': 0.030612904860557958, 'shot': 0.10344571192223866, 'ya': 0.022642036795884803, 'america': 0.031678041431984556, 'want': 0.021349712074485935, 'old': 0.020571678491626683, 'oh': 0.02176239987323695, 'flow': 0.030612904860557958, 'battle': 0.13687476551469338, 'head': 0.021349712074485935, 'jet': 0.034218691378673345, 'money': 0.0435247997464739, 'pen': 0.026513876753235247, 'killed': 0.06335608286396911, 'laying': 0.03987609764662998, 'came': 0.024670706598949398, 'high': 0.04190642469037652, 'dangerous': 0.034218691378673345, 'right': 0.034772766565312634, 'young': 0.024670706598949398, 'ass': 0.023112328438315472, 'word': 0.04721114005504559, 'kid': 0.024670706598949398, 'living': 0.02876973470627211, 'stop': 0.023112328438315472, 'way': 0.037086017377124185, 'big': 0.049341413197898795, 'hit': 0.04114335698325337, 'gun': 0.07758428394167899, 'use': 0.030612904860557958, 'god': 0.09427046573762252, 'green': 0.03577706953930727, 'need': 0.01950654192020009, 'cocaine': 0.06573752562718964, 'hanging': 0.03762023969359311, 'cops': 0.059298743257839924, 'block': 0.027211356545638183, 'chicks': 0.03987609764662998, 'black': 0.037708186295049004, 'used': 0.025861427980559664, 'rap': 0.022192654048629332, 'raps': 0.031678041431984556, 'crack': 0.054422713091276366, 'guess': 0.024124116879538634, 'rolling': 0.034218691378673345, 'corner': 0.02876973470627211, 'run': 0.022192654048629332, 'thinking': 0.034218691378673345, 'hold': 0.022642036795884803, 'little': 0.022192654048629332, 'come': 0.03532674353182848, 'brothers': 0.16434381406797413, 'better': 0.040408043425206056, 'mad': 0.024124116879538634, 'spot': 0.029649371628919962, 'niggas': 0.03969853573464011, 'blast': 0.03987609764662998, 'guns': 0.031678041431984556, 'jungle': 0.03762023969359311}, {'suit': 0.0389691260414563, 'brock': 0.04270262532244641, 'eddie': 0.04270262532244641, 'marvel': 0.04270262532244641, 'marbles': 0.04270262532244641, 'losin': 0.036320166145341275, 'super': 0.036320166145341275, 'fools': 0.036320166145341275, 'retarded': 0.0389691260414563, 'responsible': 0.04270262532244641, 'childhood': 0.04270262532244641, 'parents': 0.04270262532244641, 'ruined': 0.04270262532244641, 'parasite': 0.04270262532244641, 'latch': 0.04270262532244641, 'impossible': 0.036320166145341275, 'escapin': 0.04270262532244641, 'chasin': 0.04270262532244641, 'bonded': 0.04270262532244641, 'demons': 0.0389691260414563, 'rectangular': 0.04270262532244641, 'headache': 0.04270262532244641, 'faint': 0.0389691260414563, 'drank': 0.0389691260414563, 'thinner': 0.04270262532244641, 'ate': 0.03426547322175945, 'sunblock': 0.04270262532244641, 'doc': 0.0389691260414563, 'joc': 0.04270262532244641, 'yung': 0.04270262532244641, 'juggernaut': 0.04270262532244641, 'fired': 0.036320166145341275, 'knots': 0.04270262532244641, 'tie': 0.0389691260414563, 'garrote': 0.04270262532244641, 'thumper': 0.04270262532244641, 'tire': 0.04270262532244641, 'buckshot': 0.04270262532244641, 'aught': 0.04270262532244641, 'double': 0.03258666686435116, 'ballpoint': 0.04270262532244641, 'bitten': 0.04270262532244641, 'snake': 0.036320166145341275, 'fangs': 0.04270262532244641, 'symbiote': 0.04270262532244641, 'loco': 0.04270262532244641, 'chokehold': 0.04270262532244641, 'elliott': 0.04270262532244641, 'backin': 0.04270262532244641, 'translation': 0.04270262532244641, 'gandhi': 0.08540525064489282, 'kamikaze': 0.04270262532244641, 'combination': 0.0389691260414563, 'fender': 0.04270262532244641, 'rear': 0.04270262532244641, 'smashed': 0.036320166145341275, 'grill': 0.0389691260414563, 'wrangler': 0.04270262532244641, 'mustang': 0.04270262532244641, 'mangled': 0.04270262532244641, 'crashin': 0.04270262532244641, 'nut': 0.0389691260414563, 'indy': 0.04270262532244641, 'reverse': 0.036320166145341275, 'threw': 0.03426547322175945, 'patrick': 0.04270262532244641, 'danica': 0.04270262532244641, 'painkiller': 0.04270262532244641, 'tap': 0.0389691260414563, 'strangler': 0.04270262532244641, 'flap': 0.04270262532244641, 'mud': 0.0389691260414563, 'hubcap': 0.04270262532244641, 'venomous': 0.04270262532244641, 'evident': 0.04270262532244641, 'cocked': 0.0685309464435189, 'felt': 0.03426547322175945, 'pellets': 0.04270262532244641, 'shotgun': 0.0389691260414563, 'ready': 0.20559283933055672, 'knowin': 0.2562157519346785, 'momentum': 0.2562157519346785, 'adrenaline': 0.23381475624873782, 'venom': 0.29891837725712495, 'laced': 0.03116725631387371, 'snare': 0.04270262532244641, 'barely': 0.04270262532244641, 'mel': 0.04270262532244641, 'postcard': 0.04270262532244641, 'stamp': 0.04270262532244641, 'dre': 0.036320166145341275, 'motel': 0.04270262532244641, 'slept': 0.0389691260414563, 'florida': 0.04270262532244641, 'bizarre': 0.036320166145341275, 'freaknik': 0.04270262532244641, '97': 0.04270262532244641, 'olympics': 0.04270262532244641, 'scribble': 0.04270262532244641, 'filet': 0.036320166145341275, 'rail': 0.04270262532244641, 'hellmann': 0.04270262532244641, 'pale': 0.036320166145341275, 'matches': 0.04270262532244641, 'tailspin': 0.04270262532244641, 'volkswagen': 0.04270262532244641, 'blew': 0.02788301404465431, 'accelerants': 0.04270262532244641, 'kahlúa': 0.04270262532244641, 'manure': 0.04270262532244641, 'elephant': 0.04270262532244641, 'scent': 0.04270262532244641, 'smelled': 0.04270262532244641, 'meltin': 0.04270262532244641, 'skeleton': 0.04270262532244641, 'gelatins': 0.04270262532244641, 'tylenol': 0.04270262532244641, 'liquid': 0.0389691260414563, 'shoulda': 0.03258666686435116, 'bedridden': 0.04270262532244641, 'poe': 0.04270262532244641, 'allan': 0.04270262532244641, 'edgar': 0.04270262532244641, 'bowl': 0.0389691260414563, 'salad': 0.0389691260414563, 'medicine': 0.0389691260414563, 'spinnin': 0.0389691260414563, 'manevolent': 0.04270262532244641, 'latched': 0.04270262532244641, 'mitochondrial': 0.04270262532244641, 'tells': 0.0389691260414563, 'belong': 0.0389691260414563, 'talks': 0.04270262532244641, 'screw': 0.0779382520829126, 'sets': 0.0389691260414563, 'gives': 0.0389691260414563, 'willed': 0.04270262532244641, 'assassin': 0.0389691260414563, 'thoughts': 0.02788301404465431, 'caught': 0.04829902952732839, 'proof': 0.03258666686435116, 'skin': 0.03116725631387371, 'bucket': 0.03426547322175945, 'thinkin': 0.1731190055001663, 'bump': 0.0389691260414563, 'slow': 0.1796262418094168, 'chased': 0.03426547322175945, 'dad': 0.03258666686435116, 'alien': 0.036320166145341275, 'actual': 0.0389691260414563, 'stock': 0.03258666686435116, 'snap': 0.19552000118610693, 'grew': 0.03116725631387371, 'piss': 0.03116725631387371, 'punk': 0.028853167583361043, 'villain': 0.029937706968236135, 'pills': 0.03258666686435116, 'devil': 0.09776000059305347, 'mom': 0.03116725631387371, 'fish': 0.03258666686435116, 'wait': 0.047110495582261984, 'paint': 0.036320166145341275, 'liquor': 0.03258666686435116, 'able': 0.036320166145341275, 'think': 0.04300110973509834, 'moment': 0.16729808426792583, 'spun': 0.036320166145341275, 'eat': 0.02478479713676857, 'screamin': 0.0389691260414563, 'probably': 0.052408415374492034, 'happenin': 0.0389691260414563, 'jam': 0.03116725631387371, 'web': 0.03426547322175945, 'bit': 0.18903782392328572, 'catch': 0.023555247791130992, 'wheel': 0.03258666686435116, 'shape': 0.03426547322175945, 'meant': 0.03258666686435116, 'jeep': 0.03426547322175945, 'car': 0.026204207687246017, 'music': 0.027005403417612244, 'strong': 0.03426547322175945, 'kill': 0.02150055486754917, 'square': 0.03258666686435116, 'held': 0.03426547322175945, 'throat': 0.03258666686435116, 'prepare': 0.036320166145341275, 'scream': 0.03116725631387371, 'raw': 0.03116725631387371, 'steel': 0.029937706968236135, 'home': 0.022470708406255903, 'phone': 0.02788301404465431, 'dead': 0.023555247791130992, 'hell': 0.0919880791093483, 'deal': 0.026204207687246017, 'wicked': 0.03426547322175945, 'room': 0.026204207687246017, 'long': 0.022997019777337074, 'fuckin': 0.022470708406255903, 'said': 0.05330116675967717, 'track': 0.028853167583361043, 'went': 0.04599403955467415, 'da': 0.03116725631387371, 'gonna': 0.317147976162254, 've': 0.03964349702028175, 'wrong': 0.03258666686435116, 'world': 0.036158438229994434, 'beat': 0.02478479713676857, 'awake': 0.036320166145341275, 'bass': 0.03116725631387371, 'goin': 0.029937706968236135, 'feel': 0.018402337959663433, 'hate': 0.026204207687246017, 'slim': 0.03258666686435116, 'floor': 0.03116725631387371, 'dr': 0.03258666686435116, 'couple': 0.02788301404465431, 'attack': 0.02788301404465431, 'ago': 0.03258666686435116, 'song': 0.026204207687246017, 'end': 0.04829902952732839, 'shot': 0.023555247791130992, 'ya': 0.06186883272152131, 'tell': 0.018737209125265785, 'taste': 0.05576602808930862, 'telling': 0.03116725631387371, 'head': 0.01944586194396735, 'pen': 0.04829902952732839, 'field': 0.0389691260414563, 'high': 0.01908471988407244, 'ho': 0.02546717906117758, 'bitch': 0.018079219114997217, 'word': 0.02150055486754917, 'mayo': 0.0389691260414563, 'rock': 0.021051297855778455, 'hit': 0.1311604638768605, 'gun': 0.023555247791130992, 'game': 0.01908471988407244, 'rap': 0.020213634979911792, 'love': 0.01634764503608161, 'til': 0.06591858167308837, 'knock': 0.1796262418094168, 'filled': 0.03258666686435116, 'face': 0.0388917238879347, 'better': 0.018402337959663433, 'care': 0.02788301404465431, 'hot': 0.022470708406255903, 'straight': 0.022470708406255903, 'chorus': 0.05239538637942724}, {'sli': 0.044882252717233354, 'champ': 0.16383275266619235, 'incomprehensible': 0.35905802173786683, 'wham': 0.13464675815170007, 'till': 0.04095818816654809, 'fashioned': 0.044882252717233354, 'contract': 0.044882252717233354, 'cadillac': 0.044882252717233354, 'volkswag': 0.044882252717233354, 'rabbit': 0.044882252717233354, 'shawty': 0.7181160434757337, 'li': 0.17952901086893341, 'lil': 0.03146578740245645, 'plate': 0.03424995550915963, 'price': 0.03601445150039065, 'sellin': 0.03601445150039065, 'sir': 0.20479094083274044, 'stack': 0.0381740200598449, 'record': 0.030325890958474353, 'fame': 0.030325890958474353, 'cheap': 0.03601445150039065, 'wait': 0.024757554745067998, 'welcome': 0.0381740200598449, 'hop': 0.02604986274820632, 'million': 0.032758095405594774, 'hood': 0.026767074810690412, 'gold': 0.024757554745067998, 'guy': 0.13699982203663852, 'gonna': 0.020833490194382718, 'world': 0.07600807445653829, 'beat': 0.02604986274820632, 'past': 0.03146578740245645, 'hear': 0.023094399302720624, 'star': 0.03146578740245645, 'yes': 0.2676707481069041, 'records': 0.0763480401196898, 'ah': 0.03424995550915963, 'earn': 0.03601445150039065, 'want': 0.08175367050463796, 'old': 0.01969359375040062, 'soul': 0.2284393886308523, 'hope': 0.02604986274820632, 'oh': 0.020833490194382718, 'takes': 0.06551619081118955, 'way': 0.017751516006403165, 'ma': 0.14170594980651538, 'sell': 0.029306218843002194, 'straight': 0.1180882915054295}, {'gucciano': 0.03636972963892019, 'lake': 0.03636972963892019, 'broze': 0.03636972963892019, 'ash': 0.03636972963892019, 'wipin': 0.03636972963892019, 'foul': 0.033189916725044434, 'blooded': 0.033189916725044434, 'solo': 0.03636972963892019, 'heed': 0.03636972963892019, 'bucked': 0.03636972963892019, 'coulda': 0.03636972963892019, 'families': 0.03636972963892019, 'starts': 0.03636972963892019, 'blasted': 0.03636972963892019, 'army': 0.0309338035582644, 'peeked': 0.03636972963892019, 'coughin': 0.03636972963892019, 'inhaled': 0.03636972963892019, 'deuce': 0.033189916725044434, 'tre': 0.03636972963892019, 'wear': 0.03636972963892019, 'bustin': 0.03636972963892019, 'wops': 0.03636972963892019, 'oo': 0.03636972963892019, 'phillies': 0.03636972963892019, 'rollin': 0.0309338035582644, 'wop': 0.07273945927784038, 'grim': 0.03636972963892019, 'maximum': 0.03636972963892019, 'hdm': 0.03636972963892019, 'bellevue': 0.03636972963892019, 'terrible': 0.03636972963892019, 'stressed': 0.03636972963892019, 'vexed': 0.03636972963892019, 'lecture': 0.03636972963892019, 'bibles': 0.033189916725044434, 'exist': 0.03636972963892019, 'slugs': 0.033189916725044434, 'gloves': 0.03636972963892019, 'reala': 0.03636972963892019, 'dies': 0.033189916725044434, 'incarcerated': 0.03636972963892019, 'civilized': 0.033189916725044434, 'lowkey': 0.03636972963892019, 'buckwildin': 0.03636972963892019, 'flicks': 0.033189916725044434, 'reals': 0.03636972963892019, 'showers': 0.03636972963892019, 'elmira': 0.03636972963892019, 'wildin': 0.033189916725044434, 'loudmouths': 0.03636972963892019, 'stalkin': 0.03636972963892019, 'crackheads': 0.03636972963892019, 'shove': 0.03636972963892019, 'commissary': 0.03636972963892019, 'fullest': 0.03636972963892019, 'bugged': 0.03636972963892019, 'jones': 0.033189916725044434, 'jerome': 0.03636972963892019, 'tellin': 0.03636972963892019, 'riffin': 0.03636972963892019, 'acts': 0.03636972963892019, 'flippin': 0.03636972963892019, 'visit': 0.033189916725044434, 'congratulations': 0.03636972963892019, 'bid': 0.03636972963892019, 'mack': 0.033189916725044434, 'slid': 0.029183826231170353, 'rob': 0.029183826231170353, 'bulletproof': 0.033189916725044434, 'benches': 0.033189916725044434, 'hyper': 0.033189916725044434, 'jake': 0.0309338035582644, 'froze': 0.033189916725044434, 'cetera': 0.033189916725044434, 'et': 0.033189916725044434, 'niece': 0.033189916725044434, 'yesterday': 0.033189916725044434, 'books': 0.0309338035582644, 'dear': 0.033189916725044434, 'pumped': 0.033189916725044434, 'makes': 0.029183826231170353, 'frontin': 0.0309338035582644, 'goon': 0.033189916725044434, 'hurtin': 0.033189916725044434, 'cease': 0.033189916725044434, 'sack': 0.033189916725044434, 'ice': 0.027753990644388632, 'mistakes': 0.0309338035582644, 'weekend': 0.033189916725044434, 'pad': 0.0309338035582644, 'sleepin': 0.033189916725044434, 'sat': 0.033189916725044434, 'flies': 0.033189916725044434, '12': 0.033189916725044434, 'pumpin': 0.033189916725044434, 'er': 0.033189916725044434, 'ox': 0.033189916725044434, 'trife': 0.029183826231170353, 'mother': 0.02654508188110564, 'written': 0.029183826231170353, 'beach': 0.029183826231170353, 'kinda': 0.0309338035582644, 'herb': 0.08755147869351107, 'suit': 0.033189916725044434, 'snake': 0.0309338035582644, 'blew': 0.023747900150514558, 'shoulda': 0.027753990644388632, 'keeps': 0.0309338035582644, 'hittin': 0.033189916725044434, 'bullet': 0.029183826231170353, 'caught': 0.04113617447327758, 'play': 0.019138251649857073, 'sellin': 0.029183826231170353, 'thinkin': 0.024574177730512868, 'lies': 0.02654508188110564, 'looks': 0.029183826231170353, 'chose': 0.0309338035582644, 'hangin': 0.0309338035582644, 'crib': 0.027753990644388632, 'luck': 0.02654508188110564, 'fucked': 0.023000441159580214, 'locked': 0.02654508188110564, 'main': 0.029183826231170353, 'pack': 0.023747900150514558, 'cracks': 0.0309338035582644, 'loose': 0.02654508188110564, 'piece': 0.0618676071165288, 'jewels': 0.027753990644388632, 'maintain': 0.027753990644388632, 'skull': 0.0309338035582644, 'carry': 0.02654508188110564, 'somethin': 0.04113617447327758, 'clothes': 0.024574177730512868, 'revolution': 0.029183826231170353, 'rise': 0.025497877477608608, 'listen': 0.021109155800449846, 'pistol': 0.0309338035582644, 'wisdom': 0.033189916725044434, 'squeal': 0.033189916725044434, 'crowd': 0.022318064563732837, 'wrote': 0.055507981288777264, 'mask': 0.029183826231170353, 'dukes': 0.0309338035582644, 'mom': 0.02654508188110564, 'tried': 0.043380677891676496, 'cool': 0.021109155800449846, 'shut': 0.024574177730512868, 'comes': 0.029183826231170353, 'tip': 0.10618032752442257, 'fort': 0.033189916725044434, 'eye': 0.043380677891676496, 'probably': 0.022318064563732837, 'nose': 0.0309338035582644, 'talkin': 0.06900132347874063, 'walkin': 0.02654508188110564, 'struck': 0.025497877477608608, 'look': 0.017215907305183333, 'tough': 0.029183826231170353, 'chillin': 0.0309338035582644, 'rough': 0.0618676071165288, 'motherfuckin': 0.02654508188110564, 'didn': 0.04600088231916043, 'laugh': 0.022318064563732837, 'catch': 0.020061951396952812, 'spoke': 0.0309338035582644, 'bleed': 0.029183826231170353, 'started': 0.024574177730512868, 'night': 0.018714235760512687, 'born': 0.023000441159580214, 'stay': 0.05614270728153806, 'island': 0.023747900150514558, 'blunt': 0.029183826231170353, 'dime': 0.027753990644388632, 'case': 0.022318064563732837, 'murder': 0.025497877477608608, 'strong': 0.029183826231170353, 'heard': 0.06018585419085844, 'appear': 0.0309338035582644, 'dome': 0.05309016376221128, 'blows': 0.0309338035582644, 'buddha': 0.029183826231170353, 'start': 0.02056808723663879, 'did': 0.017929342886574082, 'state': 0.022318064563732837, '10': 0.02654508188110564, 'year': 0.024574177730512868, 'story': 0.024574177730512868, 'home': 0.09569125824928537, 'phone': 0.047495800301029116, 'gave': 0.04600088231916043, 'half': 0.022318064563732837, 'numbers': 0.027753990644388632, 'passed': 0.033189916725044434, 'text': 0.029183826231170353, 'future': 0.02654508188110564, 'deal': 0.022318064563732837, 'style': 0.022318064563732837, 'loot': 0.029183826231170353, 'took': 0.019138251649857073, 'fuckin': 0.038276503299714146, 'fool': 0.0309338035582644, 'words': 0.023000441159580214, 'said': 0.03026432231196599, 'left': 0.054935922209576285, 'sent': 0.025497877477608608, 'cries': 0.033189916725044434, 'bastard': 0.027753990644388632, 'soon': 0.023000441159580214, 'moms': 0.0309338035582644, 'stuff': 0.027753990644388632, 'lookin': 0.023747900150514558, 'relax': 0.029183826231170353, 'hook': 0.04968599022829415, 'world': 0.015398030128831827, 'beat': 0.021109155800449846, 'deep': 0.02056808723663879, 'sleep': 0.018714235760512687, 'push': 0.02654508188110564, 'speak': 0.024574177730512868, 'eyes': 0.017929342886574082, 'goin': 0.025497877477608608, 'smoke': 0.02056808723663879, 'chill': 0.05309016376221128, 'sit': 0.021690338945838248, 'hate': 0.044636129127465674, 'doo': 0.0309338035582644, 'bust': 0.047495800301029116, 'doin': 0.022318064563732837, 'plus': 0.06170426170991638, 'rose': 0.033189916725044434, 'try': 0.017929342886574082, 'lady': 0.02654508188110564, 'shot': 0.040123902793905625, 'ya': 0.03512903015784884, 'check': 0.018311974069858763, 'bridge': 0.019138251649857073, 'tell': 0.015958438735981302, 'want': 0.016561996742764717, 'told': 0.050646415449231125, 'heart': 0.01958650985711183, 'write': 0.021690338945838248, 'pen': 0.04113617447327758, 'came': 0.038276503299714146, 'right': 0.013487452303393474, 'queensbridge': 0.0309338035582644, 'young': 0.019138251649857073, 'ass': 0.017929342886574082, 'word': 0.018311974069858763, 'oogie': 0.033189916725044434, 'forget': 0.02654508188110564, 'kid': 0.019138251649857073, 'cormega': 0.033189916725044434, 'shorty': 0.10618032752442257, 'york': 0.024574177730512868, 'mind': 0.03376427696615408, 'outro': 0.015673229719794055, 'ghost': 0.047495800301029116, 'projects': 0.024574177730512868, 'thugs': 0.02654508188110564, 'drugs': 0.025497877477608608, 'way': 0.014384702165048653, 'blow': 0.020061951396952812, 'bo': 0.029183826231170353, 'big': 0.019138251649857073, 'brother': 0.02056808723663879, 'ma': 0.038276503299714146, 'hit': 0.015958438735981302, 'son': 0.037428471521025374, 'need': 0.015132161155982995, 'cops': 0.023000441159580214, 'block': 0.021109155800449846, 'kicks': 0.027753990644388632, 'new': 0.016254412865182453, 'black': 0.04387807594889105, 'crew': 0.021690338945838248, 'crab': 0.029183826231170353, 'fake': 0.021109155800449846, 'liked': 0.033189916725044434, 'school': 0.07124370045154366, 'nigga': 0.06159212051532731, 'sell': 0.023747900150514558, 'love': 0.7797021339912004, 'cold': 0.021109155800449846, 'guess': 0.018714235760512687, 'corner': 0.022318064563732837, 'nas': 0.14744506638307722, 'facts': 0.029183826231170353, 'run': 0.017215907305183333, 'til': 0.018714235760512687, 'happen': 0.0309338035582644, 'glock': 0.02654508188110564, 'hold': 0.03512903015784884, 'little': 0.05164772191554999, 'come': 0.027404651138402552, 'watch': 0.018311974069858763, 'tryin': 0.023000441159580214, 'roof': 0.033189916725044434, 'streets': 0.044636129127465674, 'better': 0.015673229719794055, 'care': 0.023747900150514558, 'mad': 0.018714235760512687, 'corners': 0.02654508188110564, 'niggas': 0.10778621090182279, 'll': 0.026974904606786948, 'murdered': 0.02654508188110564, 'day': 0.015673229719794055, 'represent': 0.027753990644388632, 'produced': 0.018311974069858763}, {'kitten': 0.04734859115248134, 'ionno': 0.04734859115248134, 'shrink': 0.03799349267105993, 'prescriptions': 0.04734859115248134, 'poker': 0.04320889412709114, 'dogs': 0.03799349267105993, 'cubicle': 0.04320889412709114, 'decorate': 0.04734859115248134, 'toaster': 0.04320889412709114, 'nap': 0.04734859115248134, 'training': 0.04320889412709114, 'mouser': 0.04734859115248134, 'broken': 0.031992338294022336, 'think': 0.02383977505570274, 'feet': 0.03799349267105993, 'lands': 0.040271732344802746, 'moment': 0.030916633863381334, 'frisky': 0.04734859115248134, 'dizzy': 0.04320889412709114, 'plum': 0.04734859115248134, 'spun': 0.040271732344802746, 'chantilly': 0.04734859115248134, 'milli': 0.04320889412709114, 'kirbs': 0.04734859115248134, 'slurp': 0.04734859115248134, 'cowlick': 0.04734859115248134, 'remedy': 0.04320889412709114, 'earbuds': 0.04734859115248134, 'pair': 0.034558195553716725, 'shred': 0.04734859115248134, 'mix': 0.03799349267105993, 'meow': 0.04734859115248134, 'puke': 0.04734859115248134, 'ears': 0.04320889412709114, 'oversized': 0.04734859115248134, 'azazel': 0.04734859115248134, 'based': 0.04320889412709114, 'brazen': 0.04734859115248134, 'maze': 0.04320889412709114, 'cage': 0.04320889412709114, 'lasers': 0.04734859115248134, 'tails': 0.04320889412709114, 'strings': 0.03799349267105993, 'draw': 0.04320889412709114, 'danger': 0.040271732344802746, 'stranger': 0.04734859115248134, 'company': 0.040271732344802746, 'skittish': 0.04734859115248134, 'goldfish': 0.04734859115248134, 'bowls': 0.04320889412709114, 'bubble': 0.040271732344802746, 'stretch': 0.040271732344802746, 'woke': 0.03613203531941254, 'fetch': 0.04320889412709114, 'homie': 0.03799349267105993, 'leaf': 0.03799349267105993, 'eat': 0.027481336746038136, 'shorts': 0.04734859115248134, 'takin': 0.034558195553716725, 'warriors': 0.04320889412709114, 'greatest': 0.034558195553716725, 'hailed': 0.04734859115248134, 'euphoria': 0.04320889412709114, 'keys': 0.03799349267105993, 'bat': 0.04320889412709114, 'purpose': 0.03799349267105993, 'sense': 0.040271732344802746, 'recommended': 0.04734859115248134, 'md': 0.04734859115248134, 'pet': 0.04734859115248134, 'bet': 0.031992338294022336, 'handlers': 0.04320889412709114, 'heels': 0.04734859115248134, 'jeopardy': 0.04734859115248134, 'samplers': 0.04734859115248134, 'era': 0.04320889412709114, 'misery': 0.04734859115248134, 'panther': 0.04734859115248134, 'playing': 0.07226407063882508, 'briefs': 0.04734859115248134, 'hamper': 0.04734859115248134, 'haunt': 0.04734859115248134, 'warlock': 0.04734859115248134, 'swap': 0.040271732344802746, 'knox': 0.04734859115248134, 'fort': 0.04320889412709114, 'hoarding': 0.04734859115248134, 'cardboard': 0.04320889412709114, 'tomorrow': 0.03319487353712416, 'heroes': 0.04320889412709114, 'parking': 0.04734859115248134, 'met': 0.03799349267105993, 'wizard': 0.04320889412709114, 'eye': 0.02823796054854946, 'slipper': 0.04734859115248134, 'hides': 0.04734859115248134, 'awesome': 0.04320889412709114, 'weeks': 0.04320889412709114, 'hostage': 0.04320889412709114, 'socks': 0.03613203531941254, 'church': 0.03799349267105993, 'deem': 0.04734859115248134, 'queen': 0.04320889412709114, 'vaccine': 0.04734859115248134, 'strongid': 0.04734859115248134, 'hobgoblin': 0.04734859115248134, 'doing': 0.3519157212342457, 'whatcha': 0.5208345026772948, 'kirby': 0.568183093829776, 'probably': 0.029055176511733945, 'taking': 0.034558195553716725, 'look': 0.02241284068935806, 'cables': 0.040271732344802746, 'cat': 0.03613203531941254, 'box': 0.031992338294022336, 'wheel': 0.03613203531941254, 'looking': 0.031992338294022336, 'means': 0.034558195553716725, 'rich': 0.029943540840244767, 'worship': 0.04320889412709114, 'golden': 0.03799349267105993, 'steel': 0.03319487353712416, '20': 0.031992338294022336, 'shots': 0.027481336746038136, 'good': 0.021561535381959922, '15': 0.040271732344802746, 'soon': 0.029943540840244767, 'hook': 0.06468460614587976, 'sharp': 0.03319487353712416, 'hey': 0.185499803180288, 'cop': 0.03319487353712416, 'match': 0.03799349267105993, 'maybe': 0.026118014729445565, 'lady': 0.034558195553716725, 'chase': 0.034558195553716725, 'old': 0.02077578246095353, 'thanks': 0.03613203531941254, 'head': 0.021561535381959922, 'thought': 0.02823796054854946, 'years': 0.029943540840244767, 'lot': 0.026118014729445565, '40': 0.03613203531941254, 'god': 0.019041155921766972, 'game': 0.021161101740870863, 'walking': 0.04320889412709114, 'cold': 0.05496267349207627, 'face': 0.021561535381959922, 'spot': 0.029943540840244767, 'hot': 0.02491547948634374, 'corners': 0.034558195553716725}, {'earrings': 0.05108004631455376, 'blonde': 0.05108004631455376, 'tune': 0.05108004631455376, 'admits': 0.05108004631455376, 'skills': 0.043445473313349775, 'boss': 0.05108004631455376, 'idiot': 0.05108004631455376, 'fail': 0.05108004631455376, 'killshot': 0.05108004631455376, 'cottonelle': 0.05108004631455376, 'coffins': 0.04661410739983126, 'budden': 0.05108004631455376, 'fails': 0.05108004631455376, 'attempt': 0.05108004631455376, 'kells': 0.10216009262910752, 'excuse': 0.04098768977179368, 'dissing': 0.05108004631455376, 'pic': 0.05108004631455376, 'thinks': 0.05108004631455376, 'toothpick': 0.05108004631455376, 'leather': 0.043445473313349775, 'halsey': 0.05108004631455376, 'gerald': 0.05108004631455376, 'salty': 0.05108004631455376, 'sombrero': 0.05108004631455376, 'offspring': 0.05108004631455376, 'letting': 0.05108004631455376, 'exhausting': 0.05108004631455376, 'shadow': 0.05108004631455376, 'shady': 0.04661410739983126, 'sandals': 0.04661410739983126, 'flannel': 0.05108004631455376, 'kim': 0.05108004631455376, 'tatted': 0.05108004631455376, 'rambo': 0.05108004631455376, 'solidified': 0.05108004631455376, 'channel': 0.05108004631455376, 'ballsack': 0.05108004631455376, 'injection': 0.05108004631455376, 'lethal': 0.05108004631455376, 'career': 0.04661410739983126, 'enjoy': 0.05108004631455376, 'bliss': 0.05108004631455376, 'clickbait': 0.05108004631455376, 'usin': 0.10216009262910752, 'prick': 0.09322821479966252, 'shamed': 0.05108004631455376, 'labor': 0.05108004631455376, 'jade': 0.05108004631455376, 'mwah': 0.05108004631455376, 'flops': 0.05108004631455376, 'biggest': 0.04661410739983126, 'satanist': 0.05108004631455376, 'hailie': 0.04661410739983126, 'benzino': 0.05108004631455376, 'ja': 0.04661410739983126, 'putting': 0.043445473313349775, 'iggy': 0.05108004631455376, 'swift': 0.038979534398627266, 'taylor': 0.04661410739983126, 'video': 0.04661410739983126, 'tay': 0.04661410739983126, 'babysitting': 0.05108004631455376, 'kiddy': 0.05108004631455376, 'rage': 0.05108004631455376, 'page': 0.043445473313349775, '80': 0.043445473313349775, 'funny': 0.043445473313349775, 'wack': 0.08197537954358736, '02': 0.05108004631455376, 'goof': 0.05108004631455376, 'oops': 0.04661410739983126, 'sucked': 0.05108004631455376, 'material': 0.05108004631455376, 'reading': 0.05108004631455376, 'cheerios': 0.05108004631455376, 'wheaties': 0.05108004631455376, 'oatmeal': 0.05108004631455376, 'cereal': 0.05108004631455376, 'brrt': 0.05108004631455376, 'sprayin': 0.05108004631455376, 'arrow': 0.05108004631455376, 'bow': 0.043445473313349775, 'gunner': 0.05108004631455376, 'marrow': 0.05108004631455376, 'mountain': 0.05108004631455376, 'mole': 0.05108004631455376, 'stealin': 0.04661410739983126, 'albums': 0.1398423221994938, '29': 0.05108004631455376, 'outselling': 0.05108004631455376, 'kelly': 0.1398423221994938, 'ow': 0.05108004631455376, 'corny': 0.05108004631455376, 'yelling': 0.04661410739983126, 'reply': 0.05108004631455376, 'swayze': 0.05108004631455376, 'scope': 0.043445473313349775, 'stoked': 0.05108004631455376, 'supplyin': 0.05108004631455376, 'undeniable': 0.05108004631455376, 'bun': 0.05108004631455376, 'starter': 0.04661410739983126, 'nordictrack': 0.05108004631455376, 'compliment': 0.05108004631455376, 'insult': 0.04661410739983126, 'perplexed': 0.05108004631455376, 'hickeys': 0.05108004631455376, 'rihanna': 0.04661410739983126, 'yell': 0.05108004631455376, 'yellin': 0.10216009262910752, 'beard': 0.1398423221994938, 'haters': 0.05108004631455376, 'petty': 0.04661410739983126, 'alike': 0.043445473313349775, 'vain': 0.04661410739983126, 'knows': 0.04661410739983126, 'recovery': 0.04661410739983126, 'mathers': 0.08689094662669955, 'illa': 0.04661410739983126, 'actin': 0.04098768977179368, 'slay': 0.043445473313349775, 'pops': 0.04661410739983126, 'suck': 0.043445473313349775, 'list': 0.043445473313349775, 'isn': 0.043445473313349775, 'outta': 0.043445473313349775, 'mile': 0.04661410739983126, 'bein': 0.08197537954358736, 'lil': 0.10743270093643736, 'mumble': 0.08689094662669955, 'nothin': 0.03581090031214578, 'line': 0.033353116770589684, 'neck': 0.03581090031214578, 'fans': 0.08689094662669955, 'weird': 0.12296306931538105, 'autograph': 0.043445473313349775, 'eating': 0.038979534398627266, 'losin': 0.043445473313349775, 'doc': 0.04661410739983126, 'blew': 0.033353116770589684, 'bowl': 0.04661410739983126, 'tells': 0.04661410739983126, 'luxury': 0.043445473313349775, 'grazed': 0.04661410739983126, '45': 0.043445473313349775, 'younger': 0.04661410739983126, 'picked': 0.038979534398627266, 'shootin': 0.043445473313349775, 'mirror': 0.038979534398627266, 'fight': 0.04098768977179368, 'hair': 0.03451359548390476, 'goddamn': 0.043445473313349775, 'play': 0.026879022482700764, 'champagne': 0.04098768977179368, 'mean': 0.03134496139742327, 'daughter': 0.12296306931538105, 'dictionary': 0.04661410739983126, 'letter': 0.043445473313349775, 'record': 0.03451359548390476, 'diddy': 0.13033641994004933, 'stan': 0.08689094662669955, 'dad': 0.038979534398627266, 'biggie': 0.04661410739983126, 'ammo': 0.04661410739983126, 'pac': 0.04661410739983126, 'somethin': 0.02888717785586718, 'sayin': 0.033353116770589684, 'barrel': 0.08689094662669955, 'alien': 0.043445473313349775, 'watchin': 0.038979534398627266, 'listen': 0.029647090221815643, 'aim': 0.03451359548390476, 'cap': 0.04661410739983126, 'bullets': 0.03581090031214578, 'playin': 0.08197537954358736, 'auto': 0.043445473313349775, 'sweater': 0.04661410739983126, 'nails': 0.043445473313349775, 'pills': 0.038979534398627266, 'crowd': 0.03134496139742327, 'wrote': 0.038979534398627266, 'milk': 0.043445473313349775, 'lead': 0.03581090031214578, 'alright': 0.03581090031214578, 'wait': 0.02817632731094179, 'sorry': 0.033353116770589684, 'marshall': 0.07795906879725453, 'shut': 0.03451359548390476, 'balls': 0.04098768977179368, 'machine': 0.038979534398627266, 'cock': 0.07162180062429156, 'foot': 0.04098768977179368, 'think': 0.025718543769385694, 'feet': 0.04098768977179368, 'moment': 0.033353116770589684, 'woke': 0.038979534398627266, 'takin': 0.03728166322301964, 'greatest': 0.03728166322301964, 'gon': 0.030463342151054867, 'pop': 0.06268992279484654, 'shoot': 0.033353116770589684, 'goat': 0.04661410739983126, 'rapper': 0.03581090031214578, 'dig': 0.04098768977179368, 'mouth': 0.11693860319588179, 'interscope': 0.04661410739983126, 'look': 0.04835831067354274, 'hitting': 0.043445473313349775, 'soft': 0.038979534398627266, 'kiss': 0.03451359548390476, 'talk': 0.14088163655470895, 'okay': 0.03134496139742327, 'forgot': 0.038979534398627266, 'open': 0.029647090221815643, 'death': 0.029647090221815643, 'true': 0.03134496139742327, 'night': 0.026283506610549755, 'age': 0.04098768977179368, 'red': 0.033353116770589684, 'hits': 0.04661410739983126, 'ooh': 0.033353116770589684, 'rich': 0.03230333608059802, 'threat': 0.04098768977179368, 'lick': 0.07162180062429156, 'destroy': 0.043445473313349775, 'effort': 0.04661410739983126, 'bone': 0.04098768977179368, 'chrome': 0.043445473313349775, 'mic': 0.10751608993080305, 'lines': 0.03728166322301964, 'state': 0.03134496139742327, 'white': 0.029647090221815643, 'hill': 0.038979534398627266, '10': 0.03728166322301964, 'year': 0.10354078645171429, 'die': 0.06460667216119605, 'phone': 0.033353116770589684, 'spent': 0.038979534398627266, '20': 0.03451359548390476, 'dead': 0.02817632731094179, 'burn': 0.03134496139742327, 'text': 0.04098768977179368, 'good': 0.0232607602278296, 'long': 0.027508585864523358, 'changed': 0.038979534398627266, 'fuckin': 0.24191120234430688, 'city': 0.02817632731094179, 'said': 0.021252604854663185, 'left': 0.025718543769385694, 'realized': 0.043445473313349775, 'gonna': 0.04742077679243856, 'food': 0.03451359548390476, 'damn': 0.055017171729046715, 'giant': 0.043445473313349775, 'grave': 0.03728166322301964, 'deep': 0.05777435571173436, 'sleep': 0.026283506610549755, 'gotta': 0.05375804496540153, 'eyes': 0.025181151307093134, 'smoke': 0.05777435571173436, 'chill': 0.03728166322301964, 'feel': 0.022012517220611653, 'second': 0.038979534398627266, 'inside': 0.026283506610549755, 'slim': 0.07795906879725453, 'dick': 0.05635265462188358, 'doin': 0.03134496139742327, 'sick': 0.09691000824179406, 'attack': 0.033353116770589684, 'dance': 0.03581090031214578, 'ago': 0.038979534398627266, 'woo': 0.07162180062429156, 'ah': 0.038979534398627266, 'broke': 0.03134496139742327, 'want': 0.0697822806834888, 'old': 0.11206541783989127, 'heart': 0.027508585864523358, 'thanks': 0.038979534398627266, 'really': 0.11003434345809343, 'oh': 0.07113116518865784, 'billy': 0.04661410739983126, 'battle': 0.03728166322301964, 'money': 0.02371038839621928, 'write': 0.030463342151054867, 'killed': 0.03451359548390476, 'ho': 0.09139002645316459, 'sound': 0.026879022482700764, 'right': 0.018942667299495713, 'motherfucker': 0.06460667216119605, 'young': 0.026879022482700764, 'bitch': 0.15138206138996285, 'jay': 0.04098768977179368, 'mothafuckin': 0.09322821479966252, 'outro': 0.022012517220611653, 'brain': 0.030463342151054867, 'blow': 0.02817632731094179, 'big': 0.026879022482700764, 'live': 0.0232607602278296, 'ma': 0.026879022482700764, 'hit': 0.06723925070393476, 'son': 0.026283506610549755, 'gun': 0.08452898193282538, 'need': 0.04250520970932637, 'locks': 0.04661410739983126, 'wake': 0.06902719096780952, 'dissed': 0.04098768977179368, 'black': 0.020541754309737797, 'game': 0.022828769149850874, 'rap': 0.04835831067354274, 'love': 0.03910946735811112, 'dress': 0.038979534398627266, 'facts': 0.04098768977179368, 'run': 0.02417915533677137, 'leave': 0.030463342151054867, 'til': 0.026283506610549755, 'hold': 0.04933752615878806, 'little': 0.02417915533677137, 'come': 0.019244449481496773, 'better': 0.044025034441223306, 'care': 0.033353116770589684, 'mad': 0.026283506610549755, 'll': 0.09471333649747857, 'day': 0.08805006888244661}, {'van': 0.04025174231391767, 'fact': 0.029802830714505023, 'mama': 0.03539327509986838, 'grandma': 0.03751559547231558, 'hol': 0.11254678641694675, 'wrap': 0.04025174231391767, 'blind': 0.04025174231391767, 'sincerely': 0.03751559547231558, 'mines': 0.04025174231391767, 'caught': 0.024944363500455733, 'heartbeat': 0.04025174231391767, 'coherent': 0.04410812469282295, 'interference': 0.04410812469282295, 'swerve': 0.04410812469282295, 'drive': 0.03751559547231558, 'steerin': 0.04410812469282295, 'common': 0.07503119094463116, 'insane': 0.0336592130934103, 'mirror': 0.0336592130934103, 'verb': 0.13232437407846884, 'proof': 0.0336592130934103, 'metaphor': 0.04410812469282295, 'margin': 0.04410812469282295, 'curve': 0.04410812469282295, 'punctuation': 0.04410812469282295, 'makin': 0.0336592130934103, 'taboo': 0.04025174231391767, 'relations': 0.04410812469282295, 'communication': 0.04025174231391767, 'fight': 0.03539327509986838, 'sundress': 0.04410812469282295, 'skin': 0.03219308455733038, 'hair': 0.029802830714505023, 'fun': 0.04025174231391767, 'adjusted': 0.04410812469282295, 'goddamn': 0.03751559547231558, 'motherland': 0.04410812469282295, 'plane': 0.03539327509986838, 'busy': 0.03751559547231558, 'vacations': 0.04410812469282295, 'photographs': 0.04025174231391767, 'seductive': 0.04410812469282295, 'play': 0.023210301493997658, 'drake': 0.04025174231391767, 'wrongs': 0.0882162493856459, 'nation': 0.04025174231391767, 'rule': 0.04025174231391767, 'conversation': 0.03751559547231558, 'atari': 0.04410812469282295, 'approach': 0.03751559547231558, 'bitty': 0.04025174231391767, 'curled': 0.04410812469282295, 'girlfriends': 0.04410812469282295, 'curse': 0.03539327509986838, 'nights': 0.03751559547231558, 'champagne': 0.03539327509986838, 'empathy': 0.04410812469282295, 'poems': 0.08050348462783534, 'mean': 0.10826673549161175, 'bloomed': 0.0882162493856459, 'flower': 0.08050348462783534, 'poetic': 0.48518937162105247, 'basis': 0.04410812469282295, 'basic': 0.04025174231391767, 'maintenance': 0.04410812469282295, 'hmm': 0.04025174231391767, 'fragrance': 0.04410812469282295, 'recognize': 0.04025174231391767, 'perfume': 0.04410812469282295, 'lights': 0.04410812469282295, 'dim': 0.04410812469282295, 'swear': 0.03751559547231558, 'deville': 0.04410812469282295, 'scoop': 0.04410812469282295, 'ol': 0.0336592130934103, 'sherane': 0.03751559547231558, 'unless': 0.03539327509986838, 'letter': 0.03751559547231558, 'daddy': 0.030923066251808223, 'slow': 0.030923066251808223, 'test': 0.04025174231391767, 'plenty': 0.03751559547231558, 'dark': 0.08640223763808304, 'figure': 0.07078655019973676, 'mood': 0.07503119094463116, 'justice': 0.4126715501954714, 'save': 0.029802830714505023, 'alright': 0.15461533125904112, 'sorry': 0.05760149175872203, 'matter': 0.029802830714505023, 'trust': 0.06438616911466076, 'skit': 0.030923066251808223, 'attraction': 0.04025174231391767, 'fatal': 0.0336592130934103, 'ask': 0.02630539694275913, 'pour': 0.03539327509986838, 'called': 0.05413336774580588, 'homie': 0.17696637549934188, 'takin': 0.03219308455733038, 'sense': 0.03751559547231558, 'gon': 0.07891619082827737, 'momma': 0.03219308455733038, 'talkin': 0.08368274964335053, 'ayy': 0.029802830714505023, 'lamar': 0.18553839751084933, 'kendrick': 0.17280447527616608, 'sounwave': 0.03751559547231558, 'bad': 0.025600555336823018, 'east': 0.03219308455733038, 'natural': 0.0336592130934103, 'soft': 0.0336592130934103, 'bit': 0.027894249881116842, 'talk': 0.024330537031300857, 'okay': 0.10826673549161175, 'patience': 0.04025174231391767, 'true': 0.02706668387290294, 'problem': 0.030923066251808223, 'ooh': 0.028800745879361014, 'read': 0.02706668387290294, 'stay': 0.06808820296306886, 'car': 0.02706668387290294, 'wanna': 0.08697669183167095, 'tryna': 0.030923066251808223, 'dedicated': 0.07503119094463116, 'heard': 0.024330537031300857, 'snatch': 0.0336592130934103, 'lines': 0.03219308455733038, 'livin': 0.02630539694275913, 'minute': 0.03219308455733038, 'blood': 0.023753935694649394, 'everyday': 0.03751559547231558, 'room': 0.0812000516187088, 'good': 0.04017179257281289, 'gold': 0.024330537031300857, 'pain': 0.025600555336823018, 'fuckin': 0.023210301493997658, 'city': 0.024330537031300857, 'hands': 0.0812000516187088, 'words': 0.027894249881116842, 'gonna': 0.020474154652395573, 've': 0.020474154652395573, 'walk': 0.02706668387290294, 'lookin': 0.05760149175872203, 'gotta': 0.023210301493997658, 'hear': 0.06808820296306886, 'clearly': 0.04025174231391767, 'truly': 0.03751559547231558, 'second': 0.0336592130934103, 'party': 0.05760149175872203, 'doin': 0.02706668387290294, 'african': 0.04025174231391767, 'girl': 0.05261079388551826, 'maybe': 0.048661074062601714, 'song': 0.13533341936451468, 'uh': 0.10522158777103652, 'huh': 0.055788499762233684, 'sure': 0.024330537031300857, 'tell': 0.11612351469055424, 'want': 0.12051537771843868, 'told': 0.040948309304791146, 'wish': 0.028800745879361014, 'taste': 0.028800745879361014, 'hope': 0.025600555336823018, 'really': 0.07126180708394819, 'songs': 0.07078655019973676, 'thing': 0.022208216658853648, 'write': 0.13152698471379565, 'pen': 0.024944363500455733, 'power': 0.027894249881116842, 'high': 0.07885147088900706, 'sound': 0.023210301493997658, 'range': 0.029802830714505023, 'right': 0.06542872151020411, 'motherfucker': 0.027894249881116842, 'young': 0.023210301493997658, 'bitch': 0.01867427225028235, 'ass': 0.021744172957917737, 'lot': 0.024330537031300857, 'crazy': 0.02630539694275913, 'everybody': 0.024330537031300857, 'outro': 0.019008026116315656, 'big': 0.023210301493997658, 'live': 0.020085896286406446, 'ma': 0.023210301493997658, 'god': 0.01773800781079349, 'need': 0.05505550283984511, 'new': 0.019712867722251764, 'sex': 0.0673184261868206, 'game': 0.03942573544450353, 'nigga': 0.056022816750847054, 'friends': 0.024330537031300857, 'love': 0.050657117231605354, 'cold': 0.025600555336823018, 'run': 0.020878939537249005, 'hold': 0.021301720660609477, 'little': 0.04175787907449801, 'come': 0.016617772273490292, 'better': 0.019008026116315656, 'care': 0.028800745879361014, 'll': 0.016357180377551028, 'day': 0.019008026116315656, 'real': 0.04175787907449801, 'chorus': 0.0541199099189252, 'produced': 0.022208216658853648}, {'pedaled': 0.0384762341022846, 'passion': 0.02808255092522755, 'bit': 0.024332607563978172, 'askin': 0.029361478677679236, 'cat': 0.029361478677679236, 'captain': 0.03511224907158961, 'metal': 0.03087412915132802, 'feast': 0.03511224907158961, 'stars': 0.03272546370837423, 'seek': 0.03511224907158961, 'nature': 0.03511224907158961, 'polar': 0.03272546370837423, 'pixels': 0.0384762341022846, 'vision': 0.03272546370837423, 'tape': 0.024332607563978172, 'ticker': 0.0384762341022846, 'hunt': 0.0384762341022846, 'duck': 0.03087412915132802, 'vigils': 0.0384762341022846, 'cast': 0.03272546370837423, 'span': 0.0384762341022846, 'kibbles': 0.0384762341022846, 'stomach': 0.03272546370837423, 'threshold': 0.0384762341022846, 'pegging': 0.0384762341022846, 'pacifism': 0.0384762341022846, 'peter': 0.0384762341022846, 'wire': 0.03511224907158961, 'speaker': 0.0384762341022846, 'kiss': 0.025997493646984237, 'princess': 0.0384762341022846, 'talk': 0.021223922920553494, 'sweet': 0.029361478677679236, 'couldn': 0.023610708283768864, 'asshole': 0.0384762341022846, 'interests': 0.0384762341022846, 'shared': 0.0384762341022846, 'didn': 0.024332607563978172, 'woman': 0.03272546370837423, 'bickering': 0.0384762341022846, 'pampered': 0.0384762341022846, 'congregate': 0.0384762341022846, 'crabs': 0.0384762341022846, 'fiddler': 0.0384762341022846, 'icarus': 0.0384762341022846, 'camp': 0.03272546370837423, 'backbones': 0.0384762341022846, 'similar': 0.09262238745398407, 'yellow': 0.03511224907158961, 'bricks': 0.0384762341022846, 'gripped': 0.0384762341022846, 'bellow': 0.0384762341022846, 'cinema': 0.0384762341022846, 'box': 0.025997493646984237, 'freaks': 0.03272546370837423, 'holiday': 0.0384762341022846, 'goblins': 0.0384762341022846, 'batch': 0.0384762341022846, 'festive': 0.0384762341022846, 'houston': 0.03511224907158961, 'gotham': 0.0384762341022846, 'installment': 0.0384762341022846, 'windows': 0.03087412915132802, 'brick': 0.03511224907158961, 'badge': 0.0384762341022846, 'zag': 0.0384762341022846, 'zig': 0.0769524682045692, 'waddle': 0.0384762341022846, 'chaplin': 0.0384762341022846, 'cabin': 0.0384762341022846, 'log': 0.0384762341022846, 'lincoln': 0.0384762341022846, 'sinking': 0.0384762341022846, 'gospel': 0.0384762341022846, 'alley': 0.0384762341022846, 'spreading': 0.0384762341022846, 'morbid': 0.0384762341022846, 'coursed': 0.0384762341022846, 'hock': 0.0384762341022846, 'pendragon': 0.0384762341022846, 'cenobite': 0.0384762341022846, 'deteriorating': 0.0384762341022846, 'plug': 0.03511224907158961, 'sweep': 0.03511224907158961, 'activate': 0.0384762341022846, 'chain': 0.026974693314463866, 'activism': 0.03511224907158961, 'link': 0.0384762341022846, 'okay': 0.023610708283768864, 'accomplished': 0.0384762341022846, 'countin': 0.03511224907158961, 'lowlife': 0.0384762341022846, 'result': 0.0384762341022846, 'crystal': 0.0384762341022846, 'blame': 0.03272546370837423, 'adhere': 0.03511224907158961, 'stains': 0.0384762341022846, 'seven': 0.029361478677679236, 'souls': 0.03272546370837423, 'crumbs': 0.0384762341022846, 'divvy': 0.0384762341022846, 'engulfed': 0.0384762341022846, 'centerfold': 0.03511224907158961, 'cross': 0.03272546370837423, 'shimmy': 0.0384762341022846, 'pulse': 0.03272546370837423, 'headline': 0.0384762341022846, 'tabloid': 0.0384762341022846, 'intimate': 0.0384762341022846, 'bound': 0.029361478677679236, 'slacker': 0.0384762341022846, 'pieces': 0.28089799257271686, 'apart': 0.3462861069205614, 'pick': 0.22611022881675885, 'settle': 0.0384762341022846, 'ticket': 0.0384762341022846, 'lottery': 0.03272546370837423, 'feather': 0.0384762341022846, 'ground': 0.03272546370837423, 'wings': 0.07022449814317921, 'beautiful': 0.06174825830265604, 'origami': 0.0384762341022846, 'forgot': 0.029361478677679236, 'knot': 0.03511224907158961, 'impressed': 0.03511224907158961, 'rest': 0.03087412915132802, 'boots': 0.0384762341022846, 'hang': 0.029361478677679236, 'epitaphs': 0.0384762341022846, 'spangled': 0.03511224907158961, 'lawn': 0.03272546370837423, 'rags': 0.0384762341022846, 'flags': 0.0384762341022846, 'drag': 0.03511224907158961, 'buzzards': 0.0384762341022846, 'crash': 0.026974693314463866, 'wagons': 0.0384762341022846, 'covered': 0.0384762341022846, 'laughing': 0.14044899628635843, 'laugh': 0.023610708283768864, 'settlers': 0.0384762341022846, 'wow': 0.03511224907158961, 'sleeping': 0.03511224907158961, 'wattage': 0.0384762341022846, 'divorced': 0.0384762341022846, 'spores': 0.0769524682045692, 'responsive': 0.0384762341022846, 'accents': 0.0384762341022846, 'creed': 0.0384762341022846, 'conscience': 0.06545092741674846, 'bleeding': 0.03087412915132802, 'breed': 0.03087412915132802, 'tossed': 0.0384762341022846, 'tempest': 0.03511224907158961, 'promise': 0.03511224907158961, 'resonance': 0.0384762341022846, 'teeming': 0.0384762341022846, 'refuse': 0.0384762341022846, 'wretched': 0.0769524682045692, 'crutched': 0.0384762341022846, 'merit': 0.03511224907158961, 'heritage': 0.0384762341022846, 'stole': 0.03087412915132802, 'honor': 0.03272546370837423, 'gym': 0.03272546370837423, 'following': 0.03511224907158961, 'stumble': 0.0384762341022846, 'open': 0.022331780531317177, 'hogging': 0.0384762341022846, 'american': 0.03087412915132802, 'picket': 0.03511224907158961, 'retirement': 0.0384762341022846, 'early': 0.03511224907158961, 'duke': 0.03272546370837423, 'splash': 0.029361478677679236, 'cretin': 0.0384762341022846, 'completion': 0.0384762341022846, 'zero': 0.03511224907158961, 'pace': 0.03511224907158961, 'kraken': 0.0384762341022846, 'smack': 0.03272546370837423, 'hero': 0.0384762341022846, 'anti': 0.0384762341022846, 'trickle': 0.0384762341022846, 'generation': 0.03511224907158961, 'splicing': 0.0384762341022846, 'fathom': 0.0384762341022846, 'trip': 0.03272546370837423, 'bloom': 0.0384762341022846, 'platoon': 0.03272546370837423, 'med': 0.0384762341022846, 'cooperative': 0.0384762341022846, 'dirty': 0.02808255092522755, 'visual': 0.0384762341022846, 'thirty': 0.02808255092522755, 'catch': 0.021223922920553494, 'patience': 0.03511224907158961, 'poking': 0.0384762341022846, 'stick': 0.025123358757417648, 'halo': 0.0769524682045692, 'basement': 0.03511224907158961, 'roped': 0.0384762341022846, 'angels': 0.03272546370837423, 'lassos': 0.0384762341022846, 'sixers': 0.0384762341022846, 'adjacent': 0.0384762341022846, 'spoke': 0.03272546370837423, 'crooked': 0.03087412915132802, 'wheel': 0.029361478677679236, 'invent': 0.0384762341022846, 'procreation': 0.0384762341022846, 'clean': 0.03272546370837423, 'shackle': 0.0384762341022846, 'ridiculous': 0.03511224907158961, 'night': 0.019798148716406307, 'sort': 0.026974693314463866, 'screen': 0.03087412915132802, 'red': 0.025123358757417648, 'problem': 0.026974693314463866, 'dreams': 0.025997493646984237, 'cut': 0.020720944202523756, 'pussy': 0.025123358757417648, 'enter': 0.03087412915132802, 'split': 0.05872295735535847, 'hour': 0.025997493646984237, 'sparkle': 0.03511224907158961, 'did': 0.018967795500622178, 'attached': 0.03272546370837423, 'triple': 0.07022449814317921, 'deadly': 0.03087412915132802, 'spell': 0.029361478677679236, 'dead': 0.021223922920553494, 'dream': 0.048665215127956345, 'charlie': 0.03511224907158961, 'wall': 0.025997493646984237, 'city': 0.021223922920553494, 'men': 0.024332607563978172, 've': 0.017859937889858492, 'walk': 0.023610708283768864, 'past': 0.026974693314463866, 'turn': 0.018213038324283018, 'sit': 0.022946625320659143, 'feel': 0.01658101013740681, 'peace': 0.020720944202523756, 'second': 0.029361478677679236, 'door': 0.025123358757417648, 'maybe': 0.04244784584110699, 'road': 0.026974693314463866, 'dawn': 0.28089799257271686, 'yes': 0.3671460051305463, 'sample': 0.0561651018504551, 'told': 0.017859937889858492, 'lost': 0.021759373726722653, 'head': 0.03504250761292213, 'seen': 0.022946625320659143, 'friend': 0.024332607563978172, 'logic': 0.03511224907158961, 'high': 0.01719585492674877, 'nightmare': 0.03511224907158961, 'hand': 0.021759373726722653, 'bitch': 0.03257974243047218, 'outro': 0.01658101013740681, 'stop': 0.1707101595055996, 'way': 0.12174281711498243, 'brother': 0.021759373726722653, 'wanted': 0.21579754651571093, 'flash': 0.02808255092522755, 'block': 0.022331780531317177, 'black': 0.01547315252664312, 'game': 0.01719585492674877, 'street': 0.021759373726722653, 'won': 0.092909185850339, 'leave': 0.022946625320659143, 'til': 0.15838518973125046, 'hold': 0.0185818371700678, 'watch': 0.019372588363507276, 'break': 0.1486546973605424, 'better': 0.01658101013740681, 'mad': 0.019798148716406307, 'll': 0.028537268625358547, 'jungle': 0.03087412915132802, 'day': 0.13264808109925447, 'chorus': 0.03147311805760428}, {'discussing': 0.08087007072295851, 'elated': 0.08087007072295851, 'crass': 0.08087007072295851, 'motivated': 0.08087007072295851, 'slauson': 0.08087007072295851, 'gangrene': 0.08087007072295851, 'morphine': 0.08087007072295851, 'gowns': 0.08087007072295851, 'bridal': 0.08087007072295851, 'organs': 0.08087007072295851, 'rivals': 0.08087007072295851, 'horrified': 0.08087007072295851, 'mortified': 0.08087007072295851, 'certified': 0.08087007072295851, 'willing': 0.08087007072295851, 'dillinger': 0.08087007072295851, 'pillage': 0.08087007072295851, '44': 0.08087007072295851, 'calendar': 0.08087007072295851, 'oliver': 0.08087007072295851, 'nets': 0.08087007072295851, 'vet': 0.08087007072295851, 'traumatic': 0.08087007072295851, 'post': 0.08087007072295851, 'laws': 0.08087007072295851, 'maim': 0.08087007072295851, 'lasting': 0.08087007072295851, 'deadlier': 0.08087007072295851, 'piercing': 0.08087007072295851, 'fodder': 0.08087007072295851, 'cannon': 0.08087007072295851, 'aiyana': 0.08087007072295851, 'oscar': 0.08087007072295851, 'trayvon': 0.08087007072295851, 'tattoos': 0.08087007072295851, 'displaying': 0.08087007072295851, 'avon': 0.08087007072295851, 'laser': 0.08087007072295851, 'figgity': 0.08087007072295851, 'tase': 0.08087007072295851, 'tigitty': 0.08087007072295851, 'faze': 0.08087007072295851, 'figitty': 0.08087007072295851, 'annually': 0.08087007072295851, 'manually': 0.08087007072295851, 'fanity': 0.08087007072295851, 'fo': 0.16174014144591703, 'insanity': 0.08087007072295851, 'converted': 0.08087007072295851, 'martyr': 0.08087007072295851, 'anarchy': 0.08087007072295851, 'proverbial': 0.08087007072295851, 'murderer': 0.08087007072295851, 'exactly': 0.08087007072295851, 'loathe': 0.08087007072295851, 'dali': 0.08087007072295851, 'dollys': 0.08087007072295851, 'llamas': 0.08087007072295851, 'hammers': 0.08087007072295851, 'hammer': 0.06878299361373037, 'fortified': 0.07379958387073499, 'safety': 0.07379958387073499, 'pigs': 0.07379958387073499, 'catching': 0.07379958387073499, 'bibles': 0.07379958387073499, 'jones': 0.07379958387073499, 'scratch': 0.07379958387073499, 'flying': 0.07379958387073499, 'dont': 0.07379958387073499, 'twist': 0.14759916774146997, 'father': 0.06171250676150683, 'minus': 0.06878299361373037, 'holy': 0.06878299361373037, 'slaughter': 0.06878299361373037, 'worked': 0.07379958387073499, 'inserted': 0.07379958387073499, 'camera': 0.07379958387073499, 'members': 0.07379958387073499, 'daughters': 0.06878299361373037, 'disorder': 0.07379958387073499, 'sworn': 0.07379958387073499, 'armor': 0.07379958387073499, 'lama': 0.07379958387073499, 'drama': 0.06878299361373037, 'cameras': 0.0648918239071999, 'stray': 0.07379958387073499, 'coffins': 0.07379958387073499, 'scope': 0.06878299361373037, 'starter': 0.07379958387073499, 'town': 0.0648918239071999, 'sean': 0.07379958387073499, 'caliber': 0.07379958387073499, 'slay': 0.06878299361373037, 'news': 0.0648918239071999, 'award': 0.07379958387073499, 'circus': 0.07379958387073499, 'winning': 0.07379958387073499, 'rounds': 0.07379958387073499, 'bodies': 0.12342501352301366, 'mold': 0.07379958387073499, 'greet': 0.07379958387073499, 'bullet': 0.1297836478143998, 'conversation': 0.06878299361373037, 'bitty': 0.07379958387073499, 'curse': 0.0648918239071999, 'fame': 0.054642019909283294, 'napalm': 0.07379958387073499, 'load': 0.0648918239071999, 'listen': 0.04693735530707707, 'wave': 0.06878299361373037, 'clip': 0.06878299361373037, 'aim': 0.054642019909283294, 'bang': 0.05280474679797175, 'silencer': 0.06878299361373037, 'bell': 0.06171250676150683, 'cock': 0.056695916504502224, 'ask': 0.04822964762096481, 'liver': 0.06878299361373037, 'purpose': 0.0648918239071999, 'swap': 0.06878299361373037, 'pop': 0.04962542965227868, 'flag': 0.0648918239071999, 'laugh': 0.04962542965227868, 'meet': 0.11339183300900445, 'sort': 0.056695916504502224, 'view': 0.0648918239071999, 'screen': 0.0648918239071999, 'various': 0.07379958387073499, 'ooh': 0.05280474679797175, 'pull': 0.04962542965227868, 'pro': 0.06171250676150683, 'change': 0.05902443241630523, 'cut': 0.04355166928888904, 'damage': 0.24685002704602732, 'bro': 0.0648918239071999, 'heard': 0.044608839395274075, 'family': 0.05902443241630523, 'mass': 0.07379958387073499, 'palm': 0.06878299361373037, 'attached': 0.06878299361373037, 'tumblers': 0.07379958387073499, 'half': 0.09925085930455736, 'killing': 0.06878299361373037, 'point': 0.056695916504502224, 'flip': 0.05114273110361571, 'fuckin': 0.042554942800055146, 've': 0.07507670508610106, 'hook': 0.11047949994663941, 'ring': 0.05114273110361571, 'vital': 0.07379958387073499, 'sleep': 0.04161212042278226, 'hate': 0.09925085930455736, 'baby': 0.0407176696887436, 'hey': 0.05280474679797175, 'blanks': 0.07379958387073499, 'seen': 0.04822964762096481, 'hand': 0.045734259945748215, 'gang': 0.054642019909283294, 'draws': 0.07379958387073499, 'fucking': 0.04822964762096481, 'stop': 0.039866868454853537, 'way': 0.03198516714216402, 'live': 0.036826499982213136, 'gun': 0.08921767879054815, 'need': 0.033647182836520066, 'cops': 0.05114273110361571, 'crew': 0.04822964762096481, 'stress': 0.0648918239071999, 'nigga': 0.06847671389782961, 'love': 0.030959108491318464, 'won': 0.039055653994387554, 'hold': 0.039055653994387554, 'little': 0.03828050566095464}, {'fused': 0.06074979655473614, 'detonate': 0.06074979655473614, 'hesitate': 0.06074979655473614, 'clues': 0.06074979655473614, 'scented': 0.06074979655473614, 'opium': 0.06074979655473614, 'unprecedented': 0.06074979655473614, 'scarred': 0.06074979655473614, 'bumps': 0.06074979655473614, 'pumps': 0.06074979655473614, 'hiss': 0.06074979655473614, 'thump': 0.06074979655473614, 'woofers': 0.06074979655473614, 'tenth': 0.06074979655473614, 'truncate': 0.06074979655473614, 'fraction': 0.06074979655473614, 'action': 0.06074979655473614, 'disciplinary': 0.06074979655473614, 'floods': 0.06074979655473614, 'drawn': 0.06074979655473614, 'spiced': 0.06074979655473614, 'scams': 0.06074979655473614, 'cons': 0.06074979655473614, 'counterfeit': 0.06074979655473614, 'bounty': 0.06074979655473614, 'cows': 0.06074979655473614, 'unnecessary': 0.06074979655473614, 'degree': 0.06074979655473614, 'opposites': 0.06074979655473614, 'electrons': 0.06074979655473614, 'protons': 0.06074979655473614, 'chosen': 0.06074979655473614, '144': 0.06074979655473614, 'tribes': 0.06074979655473614, 'lamb': 0.06074979655473614, 'stuffing': 0.06074979655473614, 'blanket': 0.06074979655473614, 'minerals': 0.06074979655473614, 'essential': 0.06074979655473614, 'fortified': 0.05543842939534555, 'soil': 0.06074979655473614, 'fertile': 0.06074979655473614, 'plant': 0.06074979655473614, 'oyl': 0.06074979655473614, 'chickenheads': 0.05543842939534555, 'boils': 0.06074979655473614, 'boiling': 0.06074979655473614, 'unloyal': 0.06074979655473614, 'iris': 0.06074979655473614, 'weakness': 0.06074979655473614, 'cyrus': 0.06074979655473614, 'reign': 0.05543842939534555, 'virus': 0.06074979655473614, 'ebola': 0.06074979655473614, 'bubonic': 0.06074979655473614, '2002': 0.06074979655473614, 'hebrew': 0.06074979655473614, 'asiatic': 0.06074979655473614, 'islamic': 0.06074979655473614, 'dominant': 0.06074979655473614, 'prominent': 0.06074979655473614, 'lynched': 0.06074979655473614, 'continents': 0.06074979655473614, 'documents': 0.06074979655473614, 'residence': 0.06074979655473614, 'raid': 0.06074979655473614, 'scaling': 0.06074979655473614, 'chameleon': 0.06074979655473614, 'camouflage': 0.06074979655473614, 'aiyo': 0.06074979655473614, 'ragged': 0.06074979655473614, 'cheeks': 0.06074979655473614, 'types': 0.06074979655473614, 'fists': 0.06074979655473614, 'growl': 0.06074979655473614, 'budge': 0.06074979655473614, 'fragile': 0.06074979655473614, 'tile': 0.06074979655473614, 'realm': 0.06074979655473614, 'roams': 0.06074979655473614, 'overwhelmed': 0.06074979655473614, 'thrones': 0.06074979655473614, 'lively': 0.06074979655473614, 'pillars': 0.06074979655473614, 'lounging': 0.06074979655473614, 'wisely': 0.06074979655473614, 'priest': 0.06074979655473614, 'khan': 0.06074979655473614, 'genghis': 0.06074979655473614, '8th': 0.06074979655473614, 'henry': 0.06074979655473614, 'constantine': 0.06074979655473614, 'ages': 0.06074979655473614, 'promoters': 0.06074979655473614, 'rainbow': 0.06074979655473614, 'kangols': 0.06074979655473614, 'boggles': 0.06074979655473614, 'tingle': 0.06074979655473614, 'windy': 0.06074979655473614, 'nozzles': 0.06074979655473614, 'aiming': 0.06074979655473614, 'noriega': 0.06074979655473614, 'unflammable': 0.06074979655473614, 'stanley': 0.06074979655473614, 'rum': 0.06074979655473614, 'romans': 0.06074979655473614, 'ashy': 0.06074979655473614, 'boone': 0.06074979655473614, 'raccoons': 0.06074979655473614, 'hex': 0.06074979655473614, 'haiti': 0.06074979655473614, 'fostex': 0.06074979655473614, 'performed': 0.06074979655473614, '83': 0.06074979655473614, 'gurgling': 0.06074979655473614, 'chicago': 0.05543842939534555, 'pillow': 0.05543842939534555, 'sword': 0.05543842939534555, 'cups': 0.05543842939534555, 'explosions': 0.05543842939534555, 'flu': 0.05543842939534555, 'ham': 0.05166995442324461, 'rocked': 0.05166995442324461, 'lords': 0.05166995442324461, 'tax': 0.05543842939534555, 'air': 0.04874689814397554, 'cloud': 0.05543842939534555, 'wally': 0.05166995442324461, 'ironman': 0.05543842939534555, 'feed': 0.1108768587906911, '000': 0.05543842939534555, 'evidence': 0.05166995442324461, 'po': 0.05543842939534555, 'banks': 0.05543842939534555, 'sons': 0.05166995442324461, 'shaved': 0.05543842939534555, 'raped': 0.05543842939534555, 'ivory': 0.05543842939534555, 'visions': 0.05166995442324461, 'swift': 0.046358587263854015, 'cartoon': 0.05543842939534555, 'tale': 0.05543842939534555, 'shoes': 0.04433929918687892, 'ducking': 0.05543842939534555, 'suede': 0.05166995442324461, 'veterans': 0.05543842939534555, 'olive': 0.05543842939534555, 'president': 0.05543842939534555, 'sub': 0.05166995442324461, 'colors': 0.05166995442324461, 'memory': 0.05166995442324461, 'wine': 0.04874689814397554, 'mouths': 0.05166995442324461, 'decks': 0.05543842939534555, 'invented': 0.05543842939534555, 'wife': 0.05543842939534555, 'clutch': 0.05543842939534555, 'built': 0.05166995442324461, 'mother': 0.04433929918687892, 'sitting': 0.04874689814397554, 'blacks': 0.05543842939534555, 'tweeters': 0.05543842939534555, 'slept': 0.05543842939534555, 'vitamin': 0.05543842939534555, 'stones': 0.05543842939534555, 'wrap': 0.05543842939534555, 'caught': 0.03435568885309341, 'skin': 0.04433929918687892, 'poems': 0.05543842939534555, 'learned': 0.04874689814397554, 'signs': 0.04433929918687892, 'surprise': 0.05543842939534555, 'rat': 0.04874689814397554, 'building': 0.08518022458350617, 'great': 0.041047220104463426, 'lips': 0.04433929918687892, 'luck': 0.04433929918687892, 'judas': 0.05543842939534555, 'piece': 0.05166995442324461, 'dark': 0.07933411202496801, 'jesus': 0.046358587263854015, 'seed': 0.05166995442324461, 'downs': 0.05543842939534555, 'greece': 0.05543842939534555, 'ancient': 0.05543842939534555, 'figure': 0.04874689814397554, 'crowd': 0.03727874513236249, 'loaded': 0.05166995442324461, 'choose': 0.20667981769297844, 'wait': 0.03351027016026156, 'ninjas': 0.05543842939534555, 'children': 0.041047220104463426, 'short': 0.05166995442324461, 'matter': 0.041047220104463426, 'film': 0.05543842939534555, 'clips': 0.05166995442324461, 'crip': 0.05543842939534555, 'spit': 0.038418545724310804, 'fit': 0.04874689814397554, 'ball': 0.05166995442324461, 'dogs': 0.04874689814397554, 'bet': 0.041047220104463426, 'eye': 0.03623023022840555, 'tinted': 0.05166995442324461, 'judge': 0.05166995442324461, 'legs': 0.04874689814397554, 'wild': 0.04433929918687892, 'boy': 0.039667056012484006, 'gza': 0.042590112291753086, 'tape': 0.038418545724310804, 'couldn': 0.03727874513236249, 'lawn': 0.05166995442324461, 'breed': 0.04874689814397554, 'platoon': 0.05166995442324461, 'death': 0.07051891411077478, 'blue': 0.07933411202496801, 'red': 0.039667056012484006, 'means': 0.04433929918687892, 'memorex': 0.05543842939534555, 'born': 0.038418545724310804, 'spine': 0.04874689814397554, 'stay': 0.03125912747814056, 'pussy': 0.039667056012484006, 'thrown': 0.05166995442324461, 'snakes': 0.046358587263854015, 'stuck': 0.04874689814397554, 'scheme': 0.05543842939534555, 'heard': 0.03351027016026156, 'devils': 0.04874689814397554, 'fully': 0.05166995442324461, 'split': 0.046358587263854015, 'dome': 0.04433929918687892, 'ran': 0.041047220104463426, 'rza': 0.08518022458350617, 'wu': 0.07933411202496801, 'secret': 0.04433929918687892, 'did': 0.029948089895996795, 'join': 0.1108768587906911, 'white': 0.07051891411077478, 'cream': 0.08209444020892685, 'seeds': 0.04433929918687892, 'year': 0.041047220104463426, 'blood': 0.03271612136933677, 'set': 0.03435568885309341, 'strength': 0.05166995442324461, 'length': 0.05543842939534555, 'million': 0.04433929918687892, 'free': 0.039667056012484006, 'beef': 0.041047220104463426, 'good': 0.027664157601723405, 'sipping': 0.08867859837375784, 'sky': 0.11900116803745202, 'throw': 0.10869069068521664, 'died': 0.042590112291753086, 'words': 0.038418545724310804, 'track': 0.041047220104463426, 'sent': 0.042590112291753086, 'getting': 0.03351027016026156, 'understand': 0.038418545724310804, 'grab': 0.041047220104463426, 'oil': 0.05543842939534555, 'clouds': 0.04874689814397554, 'trying': 0.03623023022840555, 'act': 0.08867859837375784, 'deep': 0.06871137770618682, 'speak': 0.041047220104463426, 'hard': 0.031967377972971896, 'king': 0.03125912747814056, 'baby': 0.03058721388099248, 'inside': 0.06251825495628112, 'slim': 0.046358587263854015, 'try': 0.029948089895996795, 'killah': 0.07933411202496801, 'ghostface': 0.039667056012484006, 'apple': 0.05166995442324461, 'lakes': 0.05543842939534555, 'battle': 0.04433929918687892, 'dough': 0.042590112291753086, 'wet': 0.039667056012484006, 'money': 0.02819890300087096, 'water': 0.03727874513236249, 'spades': 0.05166995442324461, 'ho': 0.03623023022840555, 'loud': 0.039667056012484006, 'right': 0.022528624534949592, 'stand': 0.039667056012484006, 'ass': 0.029948089895996795, 'crazy': 0.03623023022840555, 'kid': 0.06393475594594379, 'mind': 0.05639780600174192, 'bitches': 0.03727874513236249, 'blow': 0.03351027016026156, 'rock': 0.029948089895996795, 'hit': 0.05331202162716259, 'gun': 0.03351027016026156, 'use': 0.039667056012484006, 'god': 0.02443042802877003, 'need': 0.025275846721601884, 'black': 0.02443042802877003, 'bally': 0.05543842939534555, 'game': 0.027150388096914016, 'razor': 0.04433929918687892, 'rolling': 0.04433929918687892, 'corner': 0.03727874513236249, 'run': 0.028756410253208978, 'won': 0.029338703592819277, 'leave': 0.03623023022840555, 'hold': 0.058677407185638554, 'come': 0.022887535841480365, 'watch': 0.06117442776198496, 'filled': 0.09271717452770803, 'hot': 0.031967377972971896, 'niggas': 0.0514398763453664, 'guns': 0.041047220104463426}, {'happier': 0.16737524074226476, 'sipped': 0.15274158915180108, 'football': 0.16737524074226476, 'nightgown': 0.16737524074226476, 'rollers': 0.16737524074226476, 'cigarettes': 0.16737524074226476, 'rolled': 0.3347504814845295, 'drivin': 0.16737524074226476, 'instrumental': 0.1423588481146639, 'father': 0.25545039304840045, 'refrain': 0.1343053684951061, 'harder': 0.1423588481146639, 'grocery': 0.15274158915180108, 'cognac': 0.1423588481146639, 'mother': 0.2443234807892896, 'shotgun': 0.30548317830360217, 'laughin': 0.15274158915180108, 'window': 0.25545039304840045, 'hustlin': 0.1423588481146639, 'ridin': 0.30548317830360217, 'sayin': 0.10928897586750524, 'store': 0.1423588481146639, 'driving': 0.15274158915180108, 'smoked': 0.12772519652420022, 'kept': 0.11734245548706305, 'gets': 0.2686107369902122, 'interlude': 0.10270880389659937, 'game': 0.07480358785847856}, {'spending': 0.030116208207690228, 'millionaire': 0.027483141953788103, 'hummer': 0.030116208207690228, 'summer': 0.027483141953788103, '99': 0.030116208207690228, 'combined': 0.030116208207690228, 'races': 0.030116208207690228, 'ecstasy': 0.027483141953788103, 'crisp': 0.030116208207690228, 'teachers': 0.030116208207690228, 'learning': 0.030116208207690228, 'egypt': 0.030116208207690228, 'greeks': 0.030116208207690228, 'breather': 0.030116208207690228, 'sweeper': 0.030116208207690228, 'busting': 0.027483141953788103, 'nympho': 0.030116208207690228, 'mon': 0.030116208207690228, 'prophet': 0.030116208207690228, 'sooner': 0.030116208207690228, 'determine': 0.030116208207690228, 'choices': 0.030116208207690228, 'making': 0.025614951715768063, 'alive': 0.030116208207690228, 'rob': 0.04833174157744838, 'worked': 0.027483141953788103, 'pesos': 0.030116208207690228, 'zeros': 0.030116208207690228, 'siete': 0.030116208207690228, 'fellatio': 0.030116208207690228, 'giving': 0.025614951715768063, 'chips': 0.025614951715768063, 'acres': 0.030116208207690228, 'owning': 0.030116208207690228, 'rolex': 0.027483141953788103, 'seiko': 0.030116208207690228, 'invest': 0.030116208207690228, 'messiah': 0.030116208207690228, 'pharaoh': 0.030116208207690228, 'tarot': 0.030116208207690228, 'bulletproof': 0.054966283907576206, 'tires': 0.027483141953788103, 'rims': 0.030116208207690228, 'amazing': 0.18069724924614136, 'poetry': 0.18069724924614136, 'naked': 0.027483141953788103, 'cells': 0.030116208207690228, 'enjoying': 0.030116208207690228, 'toys': 0.030116208207690228, 'pushing': 0.030116208207690228, 'cost': 0.030116208207690228, 'hustling': 0.030116208207690228, 'crossroads': 0.030116208207690228, 'covers': 0.030116208207690228, 'rooftops': 0.030116208207690228, '10s': 0.030116208207690228, 'flatline': 0.030116208207690228, 'hardcore': 0.030116208207690228, 'defines': 0.030116208207690228, 'beginning': 0.030116208207690228, 'inserted': 0.027483141953788103, 'success': 0.025614951715768063, 'glass': 0.02298188546186594, 'accounts': 0.027483141953788103, 'poet': 0.027483141953788103, 'cake': 0.025614951715768063, 'wondering': 0.025614951715768063, 'realest': 0.027483141953788103, 'christ': 0.025614951715768063, 'explain': 0.027483141953788103, 'corporate': 0.025614951715768063, 'driver': 0.025614951715768063, 'worth': 0.02416587078872419, 'sign': 0.027483141953788103, 'blasting': 0.027483141953788103, 'line': 0.039329228593604056, 'tied': 0.02298188546186594, 'history': 0.02416587078872419, 'letters': 0.027483141953788103, 'neck': 0.021113695223845905, 'felt': 0.02416587078872419, 'sane': 0.027483141953788103, 'play': 0.01584756271604165, 'steal': 0.025614951715768063, 'thug': 0.04833174157744838, 'later': 0.02198084013157096, 'crime': 0.021113695223845905, 'number': 0.020348819207963813, 'fam': 0.025614951715768063, 'trees': 0.02198084013157096, 'fame': 0.04069763841592763, 'locked': 0.02198084013157096, 'cards': 0.02416587078872419, 'carry': 0.02198084013157096, 'depends': 0.02416587078872419, 'suicide': 0.025614951715768063, 'picture': 0.021113695223845905, 'rise': 0.021113695223845905, 'barrel': 0.025614951715768063, 'stock': 0.02298188546186594, 'aim': 0.020348819207963813, 'iron': 0.020348819207963813, 'fell': 0.13188504078942578, 'squeeze': 0.02198084013157096, 'dukes': 0.025614951715768063, 'tried': 0.01796083639536318, 'umm': 0.027483141953788103, 'artist': 0.02298188546186594, 'opposite': 0.02298188546186594, 'clips': 0.025614951715768063, 'legend': 0.027483141953788103, 'spit': 0.01904567566786046, 'ask': 0.01796083639536318, 'fall': 0.01904567566786046, 'ladies': 0.021113695223845905, 'heat': 0.019664614296802028, 'earth': 0.039329228593604056, 'called': 0.018480628969943774, 'dogs': 0.02416587078872419, 'company': 0.025614951715768063, 'leaf': 0.02416587078872419, 'bet': 0.020348819207963813, 'pop': 0.018480628969943774, 'shoot': 0.019664614296802028, 'taking': 0.02198084013157096, 'plateau': 0.025614951715768063, 'natural': 0.02298188546186594, 'jam': 0.02198084013157096, 'stars': 0.025614951715768063, 'tape': 0.01904567566786046, 'sweet': 0.02298188546186594, 'windows': 0.02416587078872419, 'souls': 0.025614951715768063, 'dirty': 0.02198084013157096, 'death': 0.12235708547754158, 'cars': 0.02416587078872419, 'night': 0.015496453402509682, 'fiends': 0.02198084013157096, 'born': 0.01904567566786046, 'paid': 0.02416587078872419, 'weak': 0.021113695223845905, 'rich': 0.03809135133572092, 'course': 0.02298188546186594, 'cd': 0.025614951715768063, 'worthy': 0.025614951715768063, 'kill': 0.015163357804879865, 'nice': 0.019664614296802028, 'wind': 0.021113695223845905, 'belt': 0.02298188546186594, 'lines': 0.02198084013157096, 'jail': 0.04222739044769181, 'die': 0.03809135133572092, 'spell': 0.02298188546186594, 'large': 0.04396168026314192, 'half': 0.2217675476393253, 'spent': 0.02298188546186594, 'dream': 0.01904567566786046, 'freedom': 0.025614951715768063, 'poor': 0.02198084013157096, 'orbit': 0.025614951715768063, 'planets': 0.027483141953788103, 'hell': 0.01621874604994369, 'future': 0.02198084013157096, 'beef': 0.020348819207963813, 'loot': 0.02416587078872419, 'long': 0.01621874604994369, 'pain': 0.0174795836396488, 'changed': 0.02298188546186594, 'sky': 0.019664614296802028, 'died': 0.021113695223845905, 'far': 0.021113695223845905, 'went': 0.01621874604994369, 'kept': 0.021113695223845905, 'left': 0.015163357804879865, 'faces': 0.02298188546186594, 'men': 0.01904567566786046, 'getting': 0.01661243873192374, 'mac': 0.02198084013157096, 'grave': 0.02198084013157096, 'presence': 0.025614951715768063, 'scriptures': 0.02416587078872419, 'deep': 0.11922083630029931, 'light': 0.017031548042899903, 'baby': 0.015163357804879865, 'inside': 0.015496453402509682, 'saw': 0.04069763841592763, 'try': 0.014846517385746672, 'end': 0.017031548042899903, 'uh': 0.12572585476754228, 'shot': 0.01661243873192374, 'feeling': 0.019664614296802028, 'wish': 0.019664614296802028, 'nasty': 0.02298188546186594, 'heaven': 0.025614951715768063, 'lost': 0.017031548042899903, 'practice': 0.027483141953788103, 'dough': 0.04222739044769181, 'money': 0.013979372478021612, 'write': 0.01796083639536318, 'blocks': 0.02298188546186594, 'came': 0.01584756271604165, 'times': 0.0174795836396488, 'cash': 0.01661243873192374, 'dimes': 0.02416587078872419, 'close': 0.01904567566786046, 'premo': 0.027483141953788103, 'lot': 0.01661243873192374, 'living': 0.018480628969943774, 'mind': 0.013979372478021612, 'projects': 0.020348819207963813, 'thugs': 0.02198084013157096, 'way': 0.011911352922036171, 'mike': 0.025614951715768063, 'blow': 0.01661243873192374, 'big': 0.0316951254320833, 'live': 0.01371427687783599, 'grand': 0.02198084013157096, 'green': 0.02298188546186594, 'cocaine': 0.021113695223845905, 'doubt': 0.14499522473234516, 'new': 0.01345957990344102, 'tecs': 0.027483141953788103, 'sex': 0.02298188546186594, 'game': 0.02691915980688204, 'rap': 0.02851150415659729, 'friends': 0.01661243873192374, 'type': 0.019664614296802028, 'corner': 0.018480628969943774, 'street': 0.034063096085799806, 'rebel': 0.14499522473234516, 'nas': 0.7936039491105887, 'watch': 0.015163357804879865, 'll': 0.02233675783641864, 'murdered': 0.02198084013157096, 'chorus': 0.03695206918567993, 'premier': 0.02416587078872419, 'dj': 0.021113695223845905, 'produced': 0.015163357804879865}, {'suprisin': 0.040798044037263774, 'reside': 0.040798044037263774, 'environment': 0.040798044037263774, 'paper': 0.040798044037263774, 'traders': 0.040798044037263774, 'caked': 0.040798044037263774, 'cotton': 0.03723106268825381, 'centuries': 0.040798044037263774, 'success': 0.03470024914509118, 'defendant': 0.040798044037263774, 'equal': 0.040798044037263774, 'fair': 0.03273719765244017, 'peers': 0.040798044037263774, 'jury': 0.040798044037263774, 'dap': 0.040798044037263774, 'bug': 0.03273719765244017, 'playoff': 0.040798044037263774, 'yi': 0.040798044037263774, 'dirt': 0.03273719765244017, 'kicking': 0.040798044037263774, 'molested': 0.040798044037263774, 'allen': 0.040798044037263774, 'woody': 0.12239413211179133, 'criticize': 0.040798044037263774, 'pat': 0.040798044037263774, 'trooper': 0.040798044037263774, 'tempo': 0.040798044037263774, 'changing': 0.040798044037263774, 'stressful': 0.040798044037263774, 'painted': 0.040798044037263774, 'polish': 0.040798044037263774, 'shoe': 0.040798044037263774, 'baked': 0.040798044037263774, 'vip': 0.040798044037263774, 'regard': 0.040798044037263774, 'apology': 0.040798044037263774, 'evidence': 0.03470024914509118, 'near': 0.03723106268825381, 'detained': 0.040798044037263774, 'interrogated': 0.040798044037263774, 'rays': 0.040798044037263774, 'followed': 0.040798044037263774, 'urinalyis': 0.040798044037263774, 'contents': 0.040798044037263774, 'directed': 0.040798044037263774, 'inspected': 0.040798044037263774, 'cases': 0.040798044037263774, 'flagrant': 0.040798044037263774, 'agents': 0.040798044037263774, 'places': 0.03723106268825381, 'synonym': 0.040798044037263774, 'illegal': 0.03723106268825381, 'heathrow': 0.040798044037263774, 'london': 0.040798044037263774, 'seized': 0.040798044037263774, 'seas': 0.03470024914509118, 'abroad': 0.03723106268825381, 'travel': 0.03723106268825381, 'roads': 0.040798044037263774, 'wowwww': 0.040798044037263774, 'pest': 0.040798044037263774, 'glass': 0.031133267796081207, 'embarrassed': 0.040798044037263774, 'gasped': 0.040798044037263774, 'boarding': 0.040798044037263774, 'showed': 0.03470024914509118, 'curl': 0.040798044037263774, 'officially': 0.040798044037263774, '2c': 0.040798044037263774, 'fright': 0.040798044037263774, 'attendant': 0.040798044037263774, 'sight': 0.040798044037263774, 'flight': 0.08159608807452755, 'sealed': 0.040798044037263774, 'sneak': 0.03723106268825381, 'associates': 0.040798044037263774, 'beneath': 0.03470024914509118, 'abstract': 0.040798044037263774, 'asking': 0.040798044037263774, 'tourists': 0.040798044037263774, 'armani': 0.03723106268825381, 'maitre': 0.040798044037263774, 'successful': 0.08159608807452755, 'jake': 0.03470024914509118, 'officer': 0.040798044037263774, 'po': 0.07446212537650762, 'accounts': 0.03723106268825381, 'assistants': 0.040798044037263774, 'digital': 0.040798044037263774, 'zones': 0.040798044037263774, 'ohs': 0.040798044037263774, 'os': 0.08159608807452755, 'checks': 0.040798044037263774, 'froze': 0.03723106268825381, 'wrists': 0.040798044037263774, 'hottest': 0.040798044037263774, 'backstage': 0.040798044037263774, 'afford': 0.03723106268825381, 'swoll': 0.040798044037263774, 'slung': 0.040798044037263774, 'trousers': 0.040798044037263774, 'designer': 0.03470024914509118, 'neighbor': 0.040798044037263774, 'tenants': 0.040798044037263774, 'highrise': 0.040798044037263774, 'crunk': 0.12239413211179133, 'speakers': 0.11169318806476142, 'dining': 0.08159608807452755, 'hooo': 0.040798044037263774, 'hooooo': 0.040798044037263774, 'chump': 0.03723106268825381, 'cake': 0.03470024914509118, 'excuse': 0.03273719765244017, 'albums': 0.03723106268825381, 'town': 0.09821159295732051, 'reveal': 0.03723106268825381, 'tight': 0.03470024914509118, 'puttin': 0.03723106268825381, 'especially': 0.06547439530488033, 'club': 0.03470024914509118, 'innocent': 0.03723106268825381, 'hearts': 0.03273719765244017, 'ride': 0.062266535592162414, 'intestines': 0.03723106268825381, 'customs': 0.03723106268825381, 'smuggle': 0.03470024914509118, 'prayin': 0.03723106268825381, 'mumble': 0.03470024914509118, 'job': 0.031133267796081207, 'trunk': 0.11169318806476142, 'press': 0.031133267796081207, 'neck': 0.028602454252918588, 'autograph': 0.03470024914509118, 'eating': 0.031133267796081207, 'homes': 0.03723106268825381, 'breath': 0.028602454252918588, 'kids': 0.025800934475489486, 'skin': 0.029777164425197917, 'plane': 0.03273719765244017, 'play': 0.02146849155489864, 'approach': 0.03470024914509118, 'daughter': 0.03273719765244017, 'provide': 0.03723106268825381, 'patrol': 0.03470024914509118, 'knew': 0.03273719765244017, 'later': 0.029777164425197917, 'boys': 0.029777164425197917, 'send': 0.03470024914509118, 'attention': 0.031133267796081207, 'slow': 0.028602454252918588, 'crib': 0.062266535592162414, 'late': 0.029777164425197917, 'lips': 0.059554328850395834, 'fresh': 0.028602454252918588, 'clothes': 0.027566286447071237, 'safe': 0.03273719765244017, 'dark': 0.05327880552053514, 'mr': 0.29463477887196154, 'globe': 0.03723106268825381, 'married': 0.03470024914509118, 'lab': 0.031133267796081207, 'negro': 0.03470024914509118, 'whips': 0.03470024914509118, 'wears': 0.03470024914509118, 'mom': 0.029777164425197917, 'work': 0.027566286447071237, 'arrested': 0.03723106268825381, 'bank': 0.029777164425197917, 'bay': 0.03723106268825381, 'tip': 0.08933149327559375, 'bar': 0.029777164425197917, 'actions': 0.03470024914509118, 'seat': 0.031133267796081207, 'space': 0.03273719765244017, 'called': 0.02503547290390861, 'think': 0.06162482360428493, 'doing': 0.05513257289414247, 'walkin': 0.029777164425197917, 'slave': 0.031133267796081207, 'weight': 0.029777164425197917, 'cat': 0.15566633898040605, 'didn': 0.025800934475489486, 'windows': 0.03273719765244017, 'laugh': 0.02503547290390861, 'american': 0.06547439530488033, 'pace': 0.03723106268825381, 'thirty': 0.029777164425197917, 'catch': 0.022504659360745992, 'night': 0.020992848235640644, 'keeping': 0.03723106268825381, 'sort': 0.028602454252918588, 'place': 0.0230724214112576, 'problem': 0.057204908505837176, 'race': 0.03723106268825381, 'pro': 0.031133267796081207, 'stay': 0.06297854470692194, 'car': 0.02503547290390861, 'step': 0.031133267796081207, 'dollar': 0.02663940276026757, 'wanna': 0.060337164552046046, 'case': 0.02503547290390861, 'away': 0.02503547290390861, 'family': 0.029777164425197917, 'bags': 0.03723106268825381, 'suspect': 0.03723106268825381, 'nice': 0.02663940276026757, 'dome': 0.029777164425197917, 'hour': 0.05513257289414247, 'start': 0.06921726423377281, 'state': 0.02503547290390861, 'livin': 0.024331316517363023, 'jail': 0.028602454252918588, 'white': 0.07103810859907597, 'pretty': 0.028602454252918588, 'seeds': 0.029777164425197917, 'year': 0.027566286447071237, 'law': 0.029777164425197917, 'talking': 0.028602454252918588, 'mighty': 0.03723106268825381, 'large': 0.029777164425197917, 'jackson': 0.03723106268825381, 'michael': 0.062266535592162414, 'home': 0.02146849155489864, 'phone': 0.02663940276026757, 'folks': 0.11169318806476142, 'pockets': 0.029777164425197917, 'poor': 0.029777164425197917, 'class': 0.03273719765244017, 'extra': 0.03723106268825381, 'coming': 0.028602454252918588, 'riding': 0.06940049829018236, 'best': 0.04735873906605065, 'holding': 0.027566286447071237, 'room': 0.02503547290390861, 'motivate': 0.03723106268825381, 'hands': 0.02503547290390861, 'said': 0.03394925303817001, 'far': 0.028602454252918588, 'faces': 0.031133267796081207, 'damn': 0.04394265778822954, 'buying': 0.03723106268825381, 'soon': 0.025800934475489486, 've': 0.018937678011736018, 'whip': 0.031133267796081207, 'hook': 0.05573566912633189, 'world': 0.01727286723107592, 'round': 0.028602454252918588, 'swing': 0.03470024914509118, 'cell': 0.025800934475489486, 'deep': 0.0230724214112576, 'gotta': 0.04293698310979728, 'bass': 0.08933149327559375, 'past': 0.028602454252918588, 'turn': 0.019312085939365647, 'light': 0.0230724214112576, 'people': 0.02011238818401535, 'sit': 0.07299394955208906, 'feel': 0.01758157464085273, 'def': 0.20021717977043013, 'mos': 0.20021717977043013, 'hate': 0.05007094580781722, 'lime': 0.03723106268825381, 'cop': 0.028602454252918588, 'low': 0.0230724214112576, 'star': 0.028602454252918588, 'pass': 0.02503547290390861, 'try': 0.02011238818401535, 'road': 0.028602454252918588, 'song': 0.02503547290390861, 'yes': 0.024331316517363023, 'woo': 0.057204908505837176, 'sure': 0.022504659360745992, 'check': 0.041083215736189956, 'america': 0.027566286447071237, 'want': 0.05573566912633189, 'chase': 0.029777164425197917, 'old': 0.017901510205888663, 'really': 0.02197132889411477, 'head': 0.018578556375443964, 'money': 0.037875356023472036, 'water': 0.05007094580781722, 'years': 0.05160186895097897, 'ho': 0.09732526606945209, 'happy': 0.03470024914509118, 'close': 0.025800934475489486, 'loud': 0.02663940276026757, 'right': 0.030259321610985657, 'word': 0.020541607868094978, 'lot': 0.022504659360745992, 'fucking': 0.024331316517363023, 'living': 0.02503547290390861, 'everybody': 0.09001863744298397, 'respect': 0.031133267796081207, 'stop': 0.0402247763680307, 'way': 0.04840847470292075, 'big': 0.04293698310979728, 'brother': 0.0230724214112576, 'live': 0.03715711275088793, 'son': 0.020992848235640644, 'flash': 0.029777164425197917, 'new': 0.03646704325038085, 'fat': 0.025800934475489486, 'black': 0.016406864468573396, 'game': 0.018233521625190426, 'rap': 0.019312085939365647, 'elevator': 0.031133267796081207, 'nigga': 0.5009131497012017, 'friends': 0.045009318721491984, 'love': 0.031237046296403434, 'type': 0.02663940276026757, 'believe': 0.02503547290390861, 'won': 0.01970313958331689, 'til': 0.020992848235640644, 'come': 0.015370696662726044, 'watch': 0.020541607868094978, 'brothers': 0.028602454252918588, 'face': 0.05573566912633189, 'll': 0.015129660805492828, 'day': 0.03516314928170546, 'real': 0.019312085939365647, 'straight': 0.06440547466469591, 'chorus': 0.016686165973138968}]\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "from sklearn.model_selection import train_test_split\n", + "\n", + "X_train, X_test = train_test_split(df_paras, test_size=0.25, random_state=0)\n", + "\n", + "vectorizer = TfidfVectorizer( max_df=.5,# drop words that occur in more than half the paragraphs\n", + " min_df=1, # only use words that appear at least twice\n", + " stop_words='english', \n", + " lowercase=True, #convert everything to lower case (since Alice in Wonderland has the HABIT of CAPITALIZING WORDS for EMPHASIS)\n", + " use_idf=True,#we definitely want to use inverse document frequencies in our weighting\n", + " norm=u'l2', #Applies a correction factor so that longer paragraphs and shorter paragraphs get treated equally\n", + " smooth_idf=True #Adds 1 to all document frequencies, as if an extra document existed that used every word once. Prevents divide-by-zero errors\n", + " )\n", + "\n", + "\n", + "#Applying the vectorizer\n", + "songs_paras_tfidf=vectorizer.fit_transform(X_train.loc[:]['lyrics'])\n", + "print(\"Number of features: %d\" % songs_paras_tfidf.get_shape()[1])\n", + "\n", + "#splitting into training and test sets\n", + "X_train_tfidf, X_test_tfidf= train_test_split(songs_paras_tfidf, test_size=0.4, random_state=0)\n", + "\n", + "\n", + "#Reshapes the vectorizer output into something people can read\n", + "X_train_tfidf_csr = X_train_tfidf.tocsr()\n", + "\n", + "#number of paragraphs\n", + "n = X_train_tfidf_csr.shape[0]\n", + "#A list of dictionaries, one per paragraph\n", + "tfidf_bypara = [{} for _ in range(0,n)]\n", + "#List of features\n", + "terms = vectorizer.get_feature_names()\n", + "#for each paragraph, lists the feature words and their tf-idf scores\n", + "for i, j in zip(*X_train_tfidf_csr.nonzero()):\n", + " tfidf_bypara[i][terms[j]] = X_train_tfidf_csr[i, j]\n", + "\n", + "#Keep in mind that the log base 2 of 1 is 0, so a tf-idf score of 0 indicates that the word was present once in that sentence.\n", + "print('Original sentence:', X_train)\n", + "print('Tf_idf vector:', tfidf_bypara)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Perform K-Means Clustering" + ] + }, + { + "cell_type": "code", + "execution_count": 254, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.cluster import KMeans\n", + "kmeans = KMeans(n_clusters=12,random_state=0).fit(songs_paras_tfidf)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Larger Corpus results give bad performance" + ] + }, + { + "cell_type": "code", + "execution_count": 255, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "3\n", + "2\n", + "2\n", + "2\n", + "1\n", + "1\n", + "4\n", + "3\n", + "3\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "for i in range(0,10):\n", + " lines_for_predicting = list(df['lyrics'][df['artist']== df.artist.unique()[i]])\n", + " val = kmeans.predict(vectorizer.transform(lines_for_predicting))\n", + " unique_elements, counts_elements = np.unique(val, return_counts=True)\n", + " print(np.argmax(counts_elements,axis=0))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Include Other Tokenizations" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "metadata": {}, + "outputs": [], + "source": [ + "def pos_df(sentences):\n", + " pos = []\n", + " for token in sentences:\n", + " pos = pos + [token.pos_]\n", + " pos = set(pos)\n", + " pos_init = np.zeros(shape=(len(pos),len(sentences)))\n", + " df = pd.DataFrame(data=pos_init.T,index=np.arange(0,len(sentences)),columns=pos)\n", + " \n", + " for sent,ind in zip(sentences[0],np.arange(1,len(sentences))): \n", + " for token in sent:\n", + " df.loc[ind,token.pos_] += 1 \n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [], + "source": [ + "# Parse the cleaned novels. This can take a bit.\n", + "import spacy\n", + "nlp = spacy.load(\"en_core_web_sm\")" + ] + }, + { + "cell_type": "code", + "execution_count": 725, + "metadata": {}, + "outputs": [], + "source": [ + "from collections import Counter\n", + "\n", + "# Utility function to create a list of the 2000 most common words.\n", + "def bag_of_words(text):\n", + " \n", + " # Filter out punctuation and stop words.\n", + " allwords = [token.lemma_\n", + " for token in text\n", + " if not token.is_punct\n", + " and not token.is_stop]\n", + " \n", + " # Return the most common words.\n", + " return [item[0] for item in Counter(allwords).most_common(200)]\n", + " \n", + "\n", + "# Creates a data frame with features for each word in our common word set.\n", + "# Each value is the count of the times the word appears in each sentence.\n", + "def bow_features(sentences, common_words):\n", + " \n", + " # Scaffold the data frame and initialize counts to zero.\n", + " dg = pd.DataFrame(columns=common_words)\n", + " dg['text_sentence'] = sentences[0]\n", + " dg['text_source'] = sentences[1]\n", + " dg.loc[:, common_words] = 0\n", + " \n", + " # Process each row, counting the occurrence of words in each sentence.\n", + " for i, sentence in enumerate(dg['text_sentence']):\n", + " \n", + " # Convert the sentence to lemmas, then filter out punctuation,\n", + " # stop words, and uncommon words.\n", + " words = [token.lemma_\n", + " for token in sentence\n", + " if (\n", + " not token.is_punct\n", + " and not token.is_stop\n", + " and token.lemma_ in common_words\n", + " )]\n", + " \n", + " # Populate the row with word counts.\n", + " for word in words:\n", + " dg.loc[i, word] += 1\n", + " \n", + " # This counter is just to make sure the kernel didn't hang.\n", + " if i % 50 == 0:\n", + " print(\"Processing row {}\".format(i))\n", + " \n", + " return dg\n" + ] + }, + { + "cell_type": "code", + "execution_count": 378, + "metadata": {}, + "outputs": [], + "source": [ + "MF =(artist[0].songs[0].lyrics+ artist[0].songs[1].lyrics+artist[0].songs[2].lyrics+artist[0].songs[3].lyrics+\n", + " artist[0].songs[4].lyrics+ artist[0].songs[5].lyrics+artist[0].songs[6].lyrics+artist[0].songs[7].lyrics+\n", + " artist[0].songs[8].lyrics+ artist[0].songs[9].lyrics)\n", + "\n", + "Kendrick =(artist[1].songs[0].lyrics+ artist[1].songs[1].lyrics+artist[1].songs[2].lyrics+artist[1].songs[3].lyrics+\n", + " artist[1].songs[4].lyrics+ artist[1].songs[5].lyrics+artist[1].songs[6].lyrics+artist[1].songs[7].lyrics+\n", + " artist[1].songs[8].lyrics+ artist[1].songs[9].lyrics)\n", + "\n", + "GZA =(artist[2].songs[0].lyrics+ artist[2].songs[1].lyrics+artist[2].songs[2].lyrics+artist[2].songs[3].lyrics+\n", + " artist[2].songs[4].lyrics+ artist[2].songs[5].lyrics+artist[2].songs[6].lyrics+artist[2].songs[7].lyrics+\n", + " artist[2].songs[8].lyrics+ artist[2].songs[9].lyrics)\n", + "\n", + "Eminem =(artist[3].songs[0].lyrics+ artist[3].songs[1].lyrics+artist[3].songs[2].lyrics+artist[3].songs[3].lyrics+\n", + " artist[3].songs[4].lyrics+ artist[3].songs[5].lyrics+artist[3].songs[6].lyrics+artist[3].songs[7].lyrics+\n", + " artist[3].songs[8].lyrics+ artist[3].songs[9].lyrics)\n", + "\n", + "Nas =(artist[4].songs[0].lyrics+ artist[4].songs[1].lyrics+artist[4].songs[2].lyrics+artist[4].songs[3].lyrics+\n", + " artist[4].songs[4].lyrics+ artist[4].songs[5].lyrics+artist[4].songs[6].lyrics+artist[4].songs[7].lyrics+\n", + " artist[4].songs[8].lyrics+ artist[4].songs[9].lyrics)\n", + "\n", + "Aesop =(artist[5].songs[0].lyrics+ artist[5].songs[1].lyrics+artist[5].songs[2].lyrics+artist[5].songs[3].lyrics+\n", + " artist[5].songs[4].lyrics+ artist[5].songs[5].lyrics+artist[5].songs[6].lyrics+artist[5].songs[7].lyrics+\n", + " artist[5].songs[8].lyrics+ artist[5].songs[9].lyrics)\n", + "\n", + "Pharoah =(artist[6].songs[0].lyrics+ artist[6].songs[1].lyrics+artist[6].songs[2].lyrics+artist[6].songs[3].lyrics+\n", + " artist[6].songs[4].lyrics+ artist[6].songs[5].lyrics+artist[6].songs[6].lyrics+artist[6].songs[7].lyrics+\n", + " artist[6].songs[8].lyrics+ artist[6].songs[9].lyrics)\n", + "\n", + "Andre =(artist[7].songs[0].lyrics+ artist[7].songs[1].lyrics+artist[7].songs[2].lyrics+artist[7].songs[3].lyrics+\n", + " artist[7].songs[4].lyrics+ artist[7].songs[5].lyrics+artist[7].songs[6].lyrics+artist[7].songs[7].lyrics+\n", + " artist[7].songs[8].lyrics+ artist[7].songs[9].lyrics)\n", + "\n", + "Yasiin =(artist[8].songs[0].lyrics+ artist[8].songs[1].lyrics+artist[8].songs[2].lyrics+artist[8].songs[3].lyrics+\n", + " artist[8].songs[4].lyrics+ artist[8].songs[5].lyrics+artist[8].songs[6].lyrics+artist[8].songs[7].lyrics+\n", + " artist[8].songs[8].lyrics+ artist[8].songs[9].lyrics)\n", + "\n", + "Ghostface =(artist[9].songs[0].lyrics+ artist[9].songs[1].lyrics+artist[9].songs[2].lyrics+artist[9].songs[3].lyrics+\n", + " artist[9].songs[4].lyrics+ artist[9].songs[5].lyrics+artist[9].songs[6].lyrics+artist[9].songs[7].lyrics+\n", + " artist[9].songs[8].lyrics+ artist[9].songs[9].lyrics)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 379, + "metadata": {}, + "outputs": [], + "source": [ + "MF = text_cleaner(MF)\n", + "Kendrick = text_cleaner(Kendrick)\n", + "GZA = text_cleaner(GZA)\n", + "Eminem = text_cleaner(Eminem)\n", + "Nas = text_cleaner(Nas)\n", + "Aesop = text_cleaner(MF)\n", + "Pharoah = text_cleaner(Pharoah)\n", + "Andre = text_cleaner(Andre)\n", + "Yasiin = text_cleaner(Yasiin)\n", + "Ghostface = text_cleaner(Ghostface)" + ] + }, + { + "cell_type": "code", + "execution_count": 380, + "metadata": {}, + "outputs": [], + "source": [ + "MF_temp = nlp(MF)\n", + "Kendrick_temp = nlp(Kendrick)\n", + "GZA_temp = nlp(GZA)\n", + "Eminem_temp = nlp(Eminem)\n", + "Nas_temp = nlp(Nas)\n", + "Aesop_temp = nlp(Aesop)\n", + "Pharoah_temp = nlp(Pharoah)\n", + "Andre_temp = nlp(Andre)\n", + "Yasiin_temp = nlp(Yasiin)\n", + "Ghostface_temp = nlp(Ghostface)" + ] + }, + { + "cell_type": "code", + "execution_count": 385, + "metadata": {}, + "outputs": [], + "source": [ + "MF_sents = [[sent, \"MF DOOM\"] for sent in MF_temp.sents]\n", + "Kendrick_sents = [[sent, \"Kendrick\"] for sent in Kendrick_temp.sents]\n", + "GZA_sents =[[sent, \"GZA\"] for sent in GZA_temp.sents]\n", + "Eminem_sents = [[sent, \"Eminem\"] for sent in Eminem_temp.sents]\n", + "Nas_sents = [[sent, \"Nas\"] for sent in Nas_temp.sents]\n", + "Aesop_sents = [[sent, \"Aesop\"] for sent in Aesop_temp.sents]\n", + "Pharoah_sents = [[sent, \"Pharoah\"] for sent in Pharoah_temp.sents]\n", + "Andre_sents = [[sent, \"Andre\"] for sent in Andre_temp.sents]\n", + "Yasiin_sents = [[sent, \"Yasiin\"] for sent in Yasiin_temp.sents]\n", + "Ghostface_sents = [[sent, \"Ghostface\"] for sent in Ghostface_temp.sents]" + ] + }, + { + "cell_type": "code", + "execution_count": 726, + "metadata": {}, + "outputs": [], + "source": [ + "MFwords = bag_of_words(MF_temp)\n", + "Kendrickwords = bag_of_words(Kendrick_temp)\n", + "GZAwords = bag_of_words(GZA_temp)\n", + "Eminemwords = bag_of_words(Eminem_temp)\n", + "Naswords = bag_of_words(Nas_temp)\n", + "Aesopwords = bag_of_words(Aesop_temp)\n", + "Pharoahwords = bag_of_words(Pharoah_temp)\n", + "Andrewords = bag_of_words(Andre_temp)\n", + "Yasiinwords = bag_of_words(Yasiin_temp)\n", + "Ghostfacewords = bag_of_words(Ghostface_temp)" + ] + }, + { + "cell_type": "code", + "execution_count": 727, + "metadata": {}, + "outputs": [], + "source": [ + "common_words = set(MFwords + Kendrickwords+GZAwords+Eminemwords+Naswords+Aesopwords+Pharoahwords+Andrewords+Yasiinwords+\n", + " Ghostfacewords)\n", + "common_words = list(set(common_words))" + ] + }, + { + "cell_type": "code", + "execution_count": 504, + "metadata": {}, + "outputs": [], + "source": [ + "sentences = pd.DataFrame(MF_sents + Kendrick_sents+GZA_sents+Eminem_sents+Nas_sents+Aesop_sents+Pharoah_sents+Andre_sents+\n", + " Yasiin_sents+ Ghostface_sents)\n", + "sentences1 = (MF_sents + Kendrick_sents+GZA_sents+Eminem_sents+Nas_sents+Aesop_sents+Pharoah_sents+Andre_sents+\n", + " Yasiin_sents+ Ghostface_sents)" + ] + }, + { + "cell_type": "code", + "execution_count": 728, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2134" + ] + }, + "execution_count": 728, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(common_words)" + ] + }, + { + "cell_type": "code", + "execution_count": 729, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing row 0\n", + "Processing row 50\n", + "Processing row 100\n", + "Processing row 150\n", + "Processing row 200\n", + "Processing row 250\n", + "Processing row 300\n", + "Processing row 350\n", + "Processing row 400\n", + "Processing row 450\n", + "Processing row 500\n", + "Processing row 550\n", + "Processing row 600\n", + "Processing row 650\n", + "Processing row 700\n", + "Processing row 750\n", + "Processing row 800\n", + "Processing row 850\n", + "Processing row 900\n", + "Processing row 950\n", + "Processing row 1000\n", + "Processing row 1050\n", + "Processing row 1100\n", + "Processing row 1150\n", + "Processing row 1200\n", + "Processing row 1250\n", + "Processing row 1300\n", + "Processing row 1350\n", + "Processing row 1400\n", + "Processing row 1450\n", + "Processing row 1500\n", + "Processing row 1550\n", + "Processing row 1600\n", + "Processing row 1650\n", + "Processing row 1700\n", + "Processing row 1750\n", + "Processing row 1800\n", + "Processing row 1850\n", + "Processing row 1900\n", + "Processing row 1950\n", + "Processing row 2000\n", + "Processing row 2050\n", + "Processing row 2100\n", + "Processing row 2150\n", + "Processing row 2200\n", + "Processing row 2250\n", + "Processing row 2300\n", + "Processing row 2350\n", + "Processing row 2400\n", + "Processing row 2450\n", + "Processing row 2500\n", + "Processing row 2550\n", + "Processing row 2600\n", + "Processing row 2650\n", + "Processing row 2700\n", + "Processing row 2750\n", + "Processing row 2800\n", + "Processing row 2850\n", + "Processing row 2900\n", + "Processing row 2950\n", + "Processing row 3000\n", + "Processing row 3050\n", + "Processing row 3100\n", + "Processing row 3150\n", + "Processing row 3200\n", + "Processing row 3250\n", + "Processing row 3300\n", + "Processing row 3350\n", + "Processing row 3400\n", + "Processing row 3450\n", + "Processing row 3500\n", + "Processing row 3550\n", + "Processing row 3600\n", + "Processing row 3650\n", + "Processing row 3700\n", + "Processing row 3750\n", + "Processing row 3800\n", + "Processing row 3850\n", + "Processing row 3900\n", + "Processing row 3950\n", + "Processing row 4000\n", + "Processing row 4050\n", + "Processing row 4100\n", + "Processing row 4150\n", + "Processing row 4200\n", + "Processing row 4250\n", + "Processing row 4300\n", + "Processing row 4350\n", + "Processing row 4400\n", + "Processing row 4450\n", + "Processing row 4500\n", + "Processing row 4550\n", + "Processing row 4600\n", + "Processing row 4650\n", + "Processing row 4700\n", + "Processing row 4750\n", + "Processing row 4800\n", + "Processing row 4850\n", + "Processing row 4900\n", + "Processing row 4950\n", + "Processing row 5000\n", + "Processing row 5050\n", + "Processing row 5100\n", + "Processing row 5150\n", + "Processing row 5200\n", + "Processing row 5250\n", + "Processing row 5300\n", + "Processing row 5350\n", + "Processing row 5400\n", + "Processing row 5450\n", + "Processing row 5500\n", + "Processing row 5550\n", + "Processing row 5600\n", + "Processing row 5650\n", + "Processing row 5700\n", + "Processing row 5750\n", + "Processing row 5800\n", + "Processing row 5850\n", + "Processing row 5900\n", + "Processing row 5950\n", + "Processing row 6000\n", + "Processing row 6050\n", + "Processing row 6100\n", + "Processing row 6150\n", + "Processing row 6200\n", + "Processing row 6250\n", + "Processing row 6300\n", + "Processing row 6350\n", + "Processing row 6400\n", + "Processing row 6450\n", + "Processing row 6500\n", + "Processing row 6550\n", + "Processing row 6600\n", + "Processing row 6650\n", + "Processing row 6700\n", + "Processing row 6750\n", + "Processing row 6800\n", + "Processing row 6850\n", + "Processing row 6900\n", + "Processing row 6950\n", + "Processing row 7000\n", + "Processing row 7050\n", + "Processing row 7100\n", + "Processing row 7150\n", + "Processing row 7200\n", + "Processing row 7250\n", + "Processing row 7300\n", + "Processing row 7350\n", + "Processing row 7400\n" + ] + } + ], + "source": [ + "word_counts = bow_features(sentences, common_words)" + ] + }, + { + "cell_type": "code", + "execution_count": 427, + "metadata": {}, + "outputs": [], + "source": [ + "MF_lemmas = []\n", + "include_stop=True\n", + "for token in MF_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " MF_lemmas.append(token.lemma_)\n", + " \n", + "Kendrick_lemmas = []\n", + "include_stop=True\n", + "for token in Kendrick_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Kendrick_lemmas.append(token.lemma_)\n", + " \n", + "GZA_lemmas = []\n", + "include_stop=True\n", + "for token in GZA_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " GZA_lemmas.append(token.lemma_)\n", + "Eminem_lemmas = []\n", + "include_stop=True\n", + "for token in Eminem_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Eminem_lemmas.append(token.lemma_)\n", + "Nas_lemmas = []\n", + "include_stop=True\n", + "for token in Nas_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Nas_lemmas.append(token.lemma_)\n", + " \n", + "Aesop_lemmas = []\n", + "include_stop=True\n", + "for token in Aesop_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Aesop_lemmas.append(token.lemma_)\n", + " \n", + "Pharoah_lemmas = []\n", + "include_stop=True\n", + "for token in Pharoah_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Pharoah_lemmas.append(token.lemma_)\n", + " \n", + "Yasiin_lemmas = []\n", + "include_stop=True\n", + "for token in Yasiin_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Yasiin_lemmas.append(token.lemma_)\n", + " \n", + "Andre_lemmas = []\n", + "include_stop=True\n", + "for token in Andre_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Andre_lemmas.append(token.lemma_)\n", + " \n", + "Ghostface_lemmas = []\n", + "include_stop=True\n", + "for token in Ghostface_temp:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " Ghostface_lemmas.append(token.lemma_)" + ] + }, + { + "cell_type": "code", + "execution_count": 468, + "metadata": {}, + "outputs": [], + "source": [ + "rap_lemmas = (Ghostface_lemmas+\n", + " Andre_lemmas+\n", + " Yasiin_lemmas+\n", + " Pharoah_lemmas+\n", + " Aesop_lemmas+\n", + " Nas_lemmas+\n", + " Eminem_lemmas+\n", + " Kendrick_lemmas+\n", + " GZA_lemmas+\n", + " MF_lemmas)" + ] + }, + { + "cell_type": "code", + "execution_count": 804, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "spacy.tokens.span.Span" + ] + }, + "execution_count": 804, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type(sentences.iloc[1][0])" + ] + }, + { + "cell_type": "code", + "execution_count": 802, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "When I was led to you " + ] + }, + "execution_count": 802, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentences.iloc[1][0].as_doc()" + ] + }, + { + "cell_type": "code", + "execution_count": 764, + "metadata": {}, + "outputs": [], + "source": [ + "dl = pd.DataFrame(data=[],index=df.index,columns=['lyrics'])" + ] + }, + { + "cell_type": "code", + "execution_count": 779, + "metadata": {}, + "outputs": [], + "source": [ + "for i in df.index:\n", + " dl.loc[i]['lyrics'] = nlp(df.loc[i]['lyrics'])" + ] + }, + { + "cell_type": "code", + "execution_count": 832, + "metadata": {}, + "outputs": [], + "source": [ + "dm = pd.DataFrame(data=[],index=np.arange(0,len(sentences1)),columns=['lyrics'])" + ] + }, + { + "cell_type": "code", + "execution_count": 831, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0, 1, 2, ..., 7429, 7430, 7431])" + ] + }, + "execution_count": 831, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.arange(0,len(sentences1))" + ] + }, + { + "cell_type": "code", + "execution_count": 833, + "metadata": {}, + "outputs": [], + "source": [ + "for i in range(0,len(sentences[0])):\n", + " dm.loc[i]['lyrics'] = sentences1[i][0].as_doc()" + ] + }, + { + "cell_type": "code", + "execution_count": 838, + "metadata": {}, + "outputs": [], + "source": [ + "include_stop=True\n", + "dpp = pd.DataFrame(index=np.arange(0,len(sentences1)),columns=['lyrics'])\n", + "for i in range(0,len(sentences1)):\n", + " rap_pos = []\n", + " rap_lemma =[]\n", + " for token in dm.loc[i]['lyrics']: #dl.loc[i]['lyrics']\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " rap_pos.append(token.pos_)\n", + " rap_lemma.append(token.lemma_)\n", + " rap_paras1 = ' '.join(str(e) for e in rap_lemma)\n", + " rap_paras2 = ' '.join(str(e) for e in rap_pos)\n", + " dpp.loc[i]['lyrics'] = rap_paras1 +' '+ rap_paras2" + ] + }, + { + "cell_type": "code", + "execution_count": 821, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lyrics
0(Mic, Check)
1(When, I, was, led, to, you)
2(I, knew, you, were, the, one, for, me)
3(Come, through, dig, the, sound, I, swear, the...
4(I, used, to, cop, a, lot, but, never, copped,...
\n", + "
" + ], + "text/plain": [ + " lyrics\n", + "0 (Mic, Check)\n", + "1 (When, I, was, led, to, you)\n", + "2 (I, knew, you, were, the, one, for, me)\n", + "3 (Come, through, dig, the, sound, I, swear, the...\n", + "4 (I, used, to, cop, a, lot, but, never, copped,..." + ] + }, + "execution_count": 821, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dm.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 839, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(7432, 7432)" + ] + }, + "execution_count": 839, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(dpp),len(word_counts)" + ] + }, + { + "cell_type": "code", + "execution_count": 847, + "metadata": {}, + "outputs": [], + "source": [ + "features = pd.concat([dpp,word_counts],axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 932, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of features: 3089\n", + "Original sentence: lyrics bendin push philly \\\n", + "6200 -PRON- go through the motion -PRON- dimmin dow... 0 0 0 \n", + "1953 but -PRON- be hot and the strip be fill with y... 0 0 0 \n", + "499 when -PRON- hit -PRON- slit -PRON- to the shit... 0 0 0 \n", + "2915 and actually comin from humble beginning CCONJ... 0 0 0 \n", + "48 -PRON- be PRON VERB 0 0 0 \n", + "3088 look like an olive to -PRON- VERB ADP DET NOUN... 0 0 0 \n", + "6589 -PRON- be hip hop PRON VERB NOUN NOUN 0 0 0 \n", + "1168 -PRON- lose Barack and promise to never doubt ... 0 0 0 \n", + "4479 -PRON- would like to take Means to the end for... 0 0 0 \n", + "3585 -PRON- be in danger PRON VERB ADP NOUN 0 0 0 \n", + "4954 -PRON- hold -PRON- heart when -PRON- tell rhym... 0 0 0 \n", + "1060 yeah INTJ 0 0 0 \n", + "2346 that hard Everybody want the key and the secre... 0 0 0 \n", + "6149 but baby -PRON- know what -PRON- be CCONJ NOUN... 0 0 0 \n", + "5646 police'll bleed blue cause -PRON- stay true to... 0 0 0 \n", + "3688 -PRON- hope that -PRON- would be go stiff and ... 0 0 0 \n", + "5700 get burn NOUN VERB 0 0 0 \n", + "3369 Became a symbiote PROPN DET NOUN 0 0 0 \n", + "7342 -PRON- technique of slang camp win third plato... 0 0 0 \n", + "6816 0 0 0 \n", + "6113 -PRON- just play along and pretend -PRON- neve... 0 0 0 \n", + "7307 Repel all fake like reflector -PRON- have suga... 0 0 0 \n", + "532 yes INTJ 0 0 0 \n", + "5076 Ben Stien money funny PROPN PROPN NOUN ADJ 0 0 0 \n", + "1277 and -PRON- get -PRON- band just like a parade ... 0 0 0 \n", + "1666 do not got -PRON- VERB ADV VERB PRON 0 0 0 \n", + "4493 -PRON- be trade science fiction with -PRON- ma... 0 0 0 \n", + "4658 Fuck around get the whole label send up for ye... 0 0 0 \n", + "667 if -PRON- quit -PRON- bm -PRON- still ride Mer... 0 0 0 \n", + "6326 -PRON- be a back water remedy Bitter and tende... 0 0 0 \n", + "... ... ... ... ... \n", + "4851 -PRON- PRON 0 0 0 \n", + "5072 the roof off this bumba rasclaat DET NOUN ADP ... 0 0 0 \n", + "2163 another Wu banger thirty six chamber through -... 0 0 0 \n", + "6036 so -PRON- can hear everything that -PRON- say ... 0 0 0 \n", + "6921 but -PRON- just happen -PRON- know CCONJ PRON ... 0 0 0 \n", + "6216 well quiet storm ADV ADJ NOUN 0 0 0 \n", + "2893 just the fuckin recognition ADV DET NOUN NOUN 0 0 0 \n", + "537 -PRON- think -PRON- all be over PRON VERB PRON... 0 0 0 \n", + "1701 look what -PRON- make Told -PRON- that -PRON- ... 0 0 0 \n", + "2897 -PRON- use to risk -PRON- all now PRON VERB PA... 0 0 0 \n", + "2222 in the garment district get -PRON- sew like Si... 0 0 0 \n", + "2135 that shit be jive DET NOUN VERB ADJ 0 0 0 \n", + "2599 let -PRON- talk about -PRON- VERB PRON VERB AD... 0 0 0 \n", + "705 Man Man PROPN PROPN 0 0 0 \n", + "6458 hold -PRON- like VERB PRON ADP 0 0 0 \n", + "3468 there be nada like ADV VERB NOUN ADP 0 0 0 \n", + "6744 who be cat ride out on the town State trooper ... 0 0 0 \n", + "7238 -PRON- get to leave PRON VERB PART VERB 0 0 0 \n", + "6743 -PRON- start keep pace -PRON- start change up ... 0 0 0 \n", + "5924 the beat so fat go to make -PRON- come DET NOU... 0 0 0 \n", + "5874 and life be like a pipe CCONJ NOUN VERB ADP DE... 0 0 0 \n", + "4373 yeah let -PRON- bring -PRON- back INTJ VERB PR... 0 0 0 \n", + "1033 -PRON- get million -PRON- get PRON VERB NOUN P... 0 0 0 \n", + "5827 -PRON- beat on -PRON- chest because -PRON- be ... 0 0 0 \n", + "4859 like -PRON- be whooping cough ADP PRON VERB AD... 0 0 0 \n", + "4931 but -PRON- be most strange CCONJ PRON VERB ADV... 0 0 0 \n", + "3264 fuck -PRON- VERB PRON 0 0 0 \n", + "1653 -PRON- be kiddin only for life PRON VERB VERB ... 0 0 0 \n", + "2607 so just leave -PRON- dick in -PRON- mouth and ... 0 0 0 \n", + "2732 there go Rabbit -PRON- choke -PRON- be so mad ... 0 0 0 \n", + "\n", + " represent ransom tour get manage ending ... space trunk monster Jeep \\\n", + "6200 0 0 0 0 0 0 ... 0 0 0 0 \n", + "1953 0 0 0 0 0 0 ... 0 0 0 0 \n", + "499 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2915 0 0 0 0 0 0 ... 0 0 0 0 \n", + "48 0 0 0 0 0 0 ... 0 0 0 0 \n", + "3088 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6589 0 0 0 0 0 0 ... 0 0 0 0 \n", + "1168 0 0 0 0 0 0 ... 0 0 0 0 \n", + "4479 0 0 0 0 0 0 ... 0 0 0 0 \n", + "3585 0 0 0 0 0 0 ... 0 0 0 0 \n", + "4954 0 0 0 0 0 0 ... 0 0 0 0 \n", + "1060 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2346 0 0 0 1 0 0 ... 0 0 0 0 \n", + "6149 0 0 0 0 0 0 ... 0 0 0 0 \n", + "5646 0 0 0 0 0 0 ... 0 0 0 0 \n", + "3688 0 0 0 0 0 0 ... 0 0 0 0 \n", + "5700 0 0 0 0 0 0 ... 0 0 0 0 \n", + "3369 0 0 0 0 0 0 ... 0 0 0 0 \n", + "7342 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6816 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6113 0 0 0 0 0 0 ... 0 0 0 0 \n", + "7307 0 0 0 0 0 0 ... 0 0 0 0 \n", + "532 0 0 0 0 0 0 ... 0 0 0 0 \n", + "5076 0 0 0 0 0 0 ... 0 0 0 0 \n", + "1277 0 0 0 1 0 0 ... 0 0 0 0 \n", + "1666 0 0 0 0 0 0 ... 0 0 0 0 \n", + "4493 0 0 0 0 0 0 ... 0 0 0 0 \n", + "4658 0 0 0 0 0 0 ... 0 0 0 0 \n", + "667 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6326 0 0 0 0 0 0 ... 0 0 0 0 \n", + "... ... ... ... .. ... ... ... ... ... ... ... \n", + "4851 0 0 0 0 0 0 ... 0 0 0 0 \n", + "5072 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2163 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6036 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6921 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6216 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2893 0 0 0 0 0 0 ... 0 0 0 0 \n", + "537 0 0 0 0 0 0 ... 0 0 0 0 \n", + "1701 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2897 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2222 0 0 0 1 0 0 ... 0 0 0 0 \n", + "2135 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2599 0 0 0 0 0 0 ... 0 0 0 0 \n", + "705 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6458 0 0 0 0 0 0 ... 0 0 0 0 \n", + "3468 0 0 0 0 0 0 ... 0 0 0 0 \n", + "6744 0 0 0 0 0 0 ... 0 0 0 0 \n", + "7238 0 0 0 1 0 0 ... 0 0 0 0 \n", + "6743 0 0 0 0 0 0 ... 0 0 0 0 \n", + "5924 0 0 0 0 0 0 ... 0 0 0 0 \n", + "5874 0 0 0 0 0 0 ... 0 0 0 0 \n", + "4373 0 0 0 0 0 0 ... 0 0 0 0 \n", + "1033 0 0 0 2 0 0 ... 0 0 0 0 \n", + "5827 0 0 0 0 0 0 ... 0 0 0 0 \n", + "4859 0 0 0 0 0 0 ... 0 0 0 0 \n", + "4931 0 0 0 0 0 0 ... 0 0 0 0 \n", + "3264 0 0 0 0 0 0 ... 0 0 0 0 \n", + "1653 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2607 0 0 0 0 0 0 ... 0 0 0 0 \n", + "2732 0 0 0 0 0 0 ... 0 0 0 0 \n", + "\n", + " pocket hug Know AIDS text_sentence \\\n", + "6200 0 0 0 0 (They, goin', through, the, motion, they, dimm... \n", + "1953 0 0 0 0 (But, he, was, hot, and, the, strip, was, fill... \n", + "499 0 0 0 0 (When, I, hit, it, slit, her, to, the, shitter... \n", + "2915 0 0 0 0 (And, actually, comin, ', from, humble, beginn... \n", + "48 0 0 0 0 (it, 's) \n", + "3088 0 0 0 0 (\", Looks, like, an, olive, to, me, ., \") \n", + "6589 0 0 0 0 (we, are, hip, -, hop) \n", + "1168 0 0 0 0 (We, lost, Barack, and, promised, to, never, d... \n", + "4479 0 0 0 0 (I, 'd, like, to, take, \", Means, to, the, End... \n", + "3585 0 0 0 0 (I, 'm, in, danger) \n", + "4954 0 0 0 0 (He, hold, his, heart, when, he, telling, rhyme) \n", + "1060 0 0 0 0 (yeah) \n", + "2346 0 0 0 0 (that, hard, Everybody, wants, the, key, and, ... \n", + "6149 0 0 0 0 (but, baby, you, know, what, it, 's) \n", + "5646 0 0 0 0 (Police'll, bleed, blue, cause, he, staying, t... \n", + "3688 0 0 0 0 (they, hoped, that, I, 'd, be, gone, stiff, an... \n", + "5700 0 0 0 0 (get, burned) \n", + "3369 0 0 0 0 (Became, a, Symbiote) \n", + "7342 0 0 0 0 (My, technique, of, slang, camp, won, third, p... \n", + "6816 0 0 0 0 (\") \n", + "6113 0 0 0 0 (I, just, played, along, and, pretended, I, ne... \n", + "7307 0 0 0 0 (Repel, all, fakes, like, reflectors, He, had,... \n", + "532 0 0 0 0 (yes) \n", + "5076 0 0 0 0 (Ben, Stien, money, funny) \n", + "1277 0 0 0 0 (and, I, got, them, bands, Just, like, a, para... \n", + "1666 0 0 0 0 (do, n't, got, you) \n", + "4493 0 0 0 0 (I, 'm, trading, science, fiction, with, my, man) \n", + "4658 0 0 0 0 (Fuck, around, get, the, whole, label, sent, u... \n", + "667 0 0 0 0 (If, I, quit, your, BM, I, still, ride, Merced... \n", + "6326 0 0 0 0 (It, is, a, back, water, remedy, Bitter, and, ... \n", + "... ... .. ... ... ... \n", + "4851 0 0 0 0 (it) \n", + "5072 0 0 0 0 (the, roof, off, this, bumba, rasclaat) \n", + "2163 0 0 0 0 (Another, Wu, banger, Thirty, -, six, chambers... \n", + "6036 0 0 0 0 (So, they, can, hear, everything, that, you, s... \n", + "6921 0 0 0 0 (But, it, just, happens, you, know) \n", + "6216 0 0 0 0 (well, Quiet, storm) \n", + "2893 0 0 0 0 (just, the, fuckin, ', recognition) \n", + "537 0 0 0 0 (You, thought, it, all, was, over, !) \n", + "1701 0 0 0 0 (Look, what, you, made, Told, you, that, I, 'm... \n", + "2897 0 0 0 0 (I, used, to, risk, it, all, now) \n", + "2222 0 0 0 0 (In, the, garment, district, got, it, sewn, li... \n", + "2135 0 0 0 0 (That, shit, is, jive) \n", + "2599 0 0 0 0 ((, Let, 's, talk, about, it, )) \n", + "705 0 0 0 0 ((, Man, -, Man, )) \n", + "6458 0 0 0 0 (Hold, me, like) \n", + "3468 0 0 0 0 (there, 's, nada, like) \n", + "6744 0 0 0 0 (who, is, cat, riding, out, on, the, town, Sta... \n", + "7238 0 0 0 0 (You, got, ta, leave, ?) \n", + "6743 0 0 0 0 (You, start, keeping, pace, they, start, chang... \n", + "5924 0 0 0 0 (The, beats, so, fat, gon, na, make, me, come) \n", + "5874 0 0 0 0 (And, life, is, like, a, pipe) \n", + "4373 0 0 0 0 (yeah, let, 's, bring, it, back) \n", + "1033 0 0 0 0 (I, got, millions, I, got) \n", + "5827 0 0 0 0 (I, beat, on, my, chest, because, I, am, the, ... \n", + "4859 0 0 0 0 (like, it, was, whooping, cough) \n", + "4931 0 0 0 0 (but, it, 's, most, strange) \n", + "3264 0 0 0 0 (\", Fuck, it, !, \") \n", + "1653 0 0 0 0 (I, ’m, kiddin, ', Only, for, life) \n", + "2607 0 0 0 0 (So, just, leave, my, dick, in, your, mouth, a... \n", + "2732 0 0 0 0 (There, goes, Rabbit, he, choked, he, 's, so, ... \n", + "\n", + " text_source \n", + "6200 Yasiin \n", + "1953 GZA \n", + "499 MF DOOM \n", + "2915 Eminem \n", + "48 MF DOOM \n", + "3088 Eminem \n", + "6589 Yasiin \n", + "1168 Kendrick \n", + "4479 Aesop \n", + "3585 Nas \n", + "4954 Aesop \n", + "1060 Kendrick \n", + "2346 Eminem \n", + "6149 Yasiin \n", + "5646 Pharoah \n", + "3688 Nas \n", + "5700 Pharoah \n", + "3369 Eminem \n", + "7342 Ghostface \n", + "6816 Ghostface \n", + "6113 Yasiin \n", + "7307 Ghostface \n", + "532 MF DOOM \n", + "5076 Aesop \n", + "1277 Kendrick \n", + "1666 Kendrick \n", + "4493 Aesop \n", + "4658 Aesop \n", + "667 Kendrick \n", + "6326 Yasiin \n", + "... ... \n", + "4851 Aesop \n", + "5072 Aesop \n", + "2163 GZA \n", + "6036 Yasiin \n", + "6921 Ghostface \n", + "6216 Yasiin \n", + "2893 Eminem \n", + "537 MF DOOM \n", + "1701 Kendrick \n", + "2897 Eminem \n", + "2222 GZA \n", + "2135 GZA \n", + "2599 Eminem \n", + "705 Kendrick \n", + "6458 Yasiin \n", + "3468 Eminem \n", + "6744 Yasiin \n", + "7238 Ghostface \n", + "6743 Yasiin \n", + "5924 Andre \n", + "5874 Andre \n", + "4373 Nas \n", + "1033 Kendrick \n", + "5827 Andre \n", + "4859 Aesop \n", + "4931 Aesop \n", + "3264 Eminem \n", + "1653 Kendrick \n", + "2607 Eminem \n", + "2732 Eminem \n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[6688 rows x 2137 columns]\n", + "Tf_idf vector: [{'child': 0.9672667628842022, 'adp': 0.2537617177974575}, {'runner': 0.3062817669471985, 'narcotic': 0.3062817669471985, 'champion': 0.2926572338493045, 'dirty': 0.2754923521391981, 'stage': 0.25574140758116887, 'camera': 0.2693659406790629, 'page': 0.2754923521391981, 'number': 0.2306333350358904, 'star': 0.224213452425165, 'money': 0.1961623855543855, 'slang': 0.23857652587106254, 'adj': 0.20671334977904057, 'cconj': 0.4379881856285299, 'adp': 0.05962419655527236}, {'lay': 0.308117479615678, 'home': 0.28029988818929324, 'rolling': 0.3704944707700852, 'save': 0.2942742299118022, 'come': 0.20436419238111767, 'ass': 0.2613832529015147, 'boy': 0.2697986267636501, 'stop': 0.2624882325955361, 'just': 0.18721125269833663, 'num': 0.15715677584480747, 'propn': 0.2681837263282762, 'like': 0.2973092330392548, 'adv': 0.1653304661233569, 'cconj': 0.11089573895279108, 'adp': 0.3019291183379668}, {'married': 0.5825814221953127, 'bash': 0.5382788349563324, 'blood': 0.4322929836303441, 'propn': 0.2686297956642767, 'adv': 0.12420409491243507, 'adj': 0.1310638006101004, 'cconj': 0.16662028734619552, 'adp': 0.22682348722646453}, {'hour': 0.6768484500034574, 'yes': 0.5719549199706991, 'intj': 0.32209776864564194, 'num': 0.33316178154573306}, {'lookin': 0.9686422036991239, 'adp': 0.24845981810527223}, {'say': 0.5542565748550176, 'super': 0.7908888142365755, 'propn': 0.259411897848668}, {'latin': 0.5398328759070672, 'white': 0.4135820982373331, 'black': 0.33478855274444275, 'music': 0.4013895271845762, 'adv': 0.12044824962828309, 'adj': 0.38130156781657903, 'cconj': 0.32316361191729975}, {'faded': 0.341160306825871, 'drank': 0.8267656980802334, 'fade': 0.30274000397282474, 'propn': 0.3292667847185863}, {'sayin': 0.5068608441827582, 'recorder': 0.6378462658094047, 'tape': 0.4968468990283457, 'adv': 0.2719726895499037, 'adp': 0.12417020935896199}, {'grade': 0.4361586207281737, 'second': 0.3835888708908395, 'expertise': 0.4361586207281737, 'beast': 0.4029908014179913, 'bear': 0.32364284940666416, 'inside': 0.2952641285195245, 'check': 0.28213203772325357, 'adj': 0.09812294783806047, 'adp': 0.16981492297617803}, {'change': 0.25260093891282803, 'title': 0.3180273420699603, 'tryna': 0.25690180658411516, 'knee': 0.2870881159294381, 'killa': 0.2870881159294381, 'bee': 0.2870881159294381, 'kid': 0.21996302645303348, 'wu': 0.2364673404722472, 'weak': 0.2705838019102244, 'propn': 0.46041042120451453, 'like': 0.2552061437240944, 'adp': 0.25917178952486314}, {'dick': 1.0}, {'understand': 0.5881667118063206, 'come': 0.40162507063233577, 'let': 0.4269948432451784, 'just': 0.36791539511930965, 'adv': 0.3249143568685438, 'cconj': 0.2179369510421873, 'adp': 0.14834093740392568}, {}, {'yawk': 1.0}, {'grind': 0.34906386198881606, 'gift': 0.36098764358731755, 'jiffy': 0.3777932698597189, 'spiffy': 0.3777932698597189, 'patiently': 0.3777932698597189, 'criminal': 0.32586903313644217, 'mind': 0.24783401339485783, 'come': 0.19912024081748195, 'propn': 0.08710072534009801, 'adv': 0.08054405677770557, 'adj': 0.2549773468890256, 'cconj': 0.10805017253087344, 'adp': 0.14709083341064988}, {'sound': 0.543174395932197, 'different': 0.7142026746138654, 'adj': 0.37255356108628557, 'cconj': 0.2368120759167941}, {'shut': 0.5814215604670377, 'mouth': 0.5705918922038247, 'know': 0.33589573153383734, 'adv': 0.4728085438236941}, {}, {'coconut': 0.8836953660437022, 'say': 0.4353024334052264, 'adp': 0.17202991456248354}, {'jake': 0.6211707614415355, 'ayo': 0.5342358869573546, 'wait': 0.4860037787133542, 'propn': 0.154998640000586, 'adp': 0.26175303415880635}, {'crazy': 0.7065464587330159, 'think': 0.6081448402844359, 'adj': 0.2237288670183845, 'cconj': 0.28442459273052084}, {'reality': 0.7414786482470043, 'real': 0.5656622007802302, 'adj': 0.19673215090717894, 'cconj': 0.2501038987256647, 'adp': 0.17023568792682522}, {'momma': 0.6015418820079986, 'god': 0.45131420100463054, 'hate': 0.5530107744030006, 'propn': 0.1705917287683447, 'adv': 0.3155002403039469}, {'yah': 0.9673146071327873, 'propn': 0.2535792791762402}, {'raw': 0.2977290996636923, 'recitin': 0.366223180132799, 'bitin': 0.366223180132799, 'thong': 0.34993223376446514, 'aka': 0.366223180132799, 'supervillain': 0.366223180132799, 'invite': 0.3383736233693313, 'dope': 0.29423312023752973, 'propn': 0.168866452479519, 'adj': 0.08238951678007736, 'cconj': 0.1047410871370135, 'adp': 0.07129305506161357}, {'lifetime': 0.7312697285571699, 'yo': 0.4642845764012434, 'come': 0.4382452827358004, 'adv': 0.1772700394009111, 'adp': 0.16186667817206474}, {'ice': 0.7043506780944241, 'water': 0.6017612224667156, 'propn': 0.3765282903093591}, {'father': 0.5819766768333344, 'suppose': 0.6382459990590583, 'kill': 0.4573394027371633, 'cconj': 0.21162670675306583}, {'liver': 0.6941083868290241, 'twist': 0.6265821917341003, 'propn': 0.1674775993899902, 'like': 0.2784992063516027, 'adp': 0.14141340141370679}, {'despicable': 0.7300207373045587, 'human': 0.6296860500541003, 'adj': 0.16423333925544628, 'cconj': 0.20878843777752334}, {'trap': 0.7429116181567375, 'hate': 0.6437117732385849, 'adv': 0.18362320278705166}, {'inshallah': 0.8049450227507688, 'come': 0.44400646288658085, 'propn': 0.194220762361177, 'adv': 0.17960043443893434, 'cconj': 0.24093469715965662, 'adp': 0.16399458035400302}, {'choose': 0.6774985750555839, 'people': 0.5223953562319984, 'right': 0.486345986008058, 'adv': 0.1776692277203536}, {'hopin': 0.6177804860512571, 'kendrick': 0.5398535652130187, 'lead': 0.4832137053882898, 'propn': 0.14906085953883122, 'adj': 0.1454528357515747, 'cconj': 0.18491294450054782, 'adp': 0.1258628213075328}, {'develop': 0.3376393217418589, 'sort': 0.3107681034054602, 'taste': 0.2752462849427224, 'blood': 0.26220227468348556, 'people': 0.2215038482699251, 'say': 0.17406177861990735, 'lot': 0.24837506660632375, 'hear': 0.22935510103699489, 'man': 0.18045167679896254, 'just': 0.17060951072259262, 'adv': 0.3013381890916081, 'kill': 0.43680166949550847, 'cconj': 0.10106159480938158, 'killer': 0.28079387154689067, 'adp': 0.1375771445628545}, {'adp': 1.0}, {'virgin': 0.687880322742376, 'microphone': 0.6421715912053476, 'know': 0.3382843612002138}, {'pedigree': 0.456573382850772, 'degree': 0.4362633290455117, 'sneaky': 0.456573382850772, 'ass': 0.30778307657477455, 'cat': 0.3493758507863574, 'burn': 0.33879121853046207, 'propn': 0.10526358193742043, 'adj': 0.20543134584806905, 'adp': 0.0888816248918047}, {'nah': 1.0}, {'bra': 0.7309757768479226, 'smell': 0.6824034097669618}, {'fuck': 1.0}, {'arab': 0.5060206310066323, 'mic': 0.3530729188060263, 'devil': 0.4266032087701866, 'steal': 0.44001074221773895, 'thing': 0.345344970653682, 'propn': 0.25253123452317683, 'adj': 0.12320935318259484, 'adp': 0.21323031239519502}, {'physical': 0.5209786609552204, 'frame': 0.46860653231645544, 'fresh': 0.42898854640533274, 'celebrate': 0.4978036248431145, 'adj': 0.23440995795660807, 'cconj': 0.14900168608619496}, {'icicle': 0.6915406544125885, 'velour': 0.6915406544125885, 'propn': 0.15943558926782447, 'adp': 0.13462295296136953}, {'learn': 0.65921994335613, 'hustle': 0.7299828320830323, 'adv': 0.18042763409626628}, {'hearin': 0.3949559222838968, 'livin': 0.30671291687325125, 'today': 0.32509992191867265, 'say': 0.2036099644867818, 'tang': 0.3219712377217817, 'wu': 0.29366712917938864, 'world': 0.2254603263492618, 'niggas': 0.23372823231113618, 'slang': 0.3219712377217817, 'intj': 0.16196924220615092, 'propn': 0.2858902340792204, 'adv': 0.26436931674170083, 'adp': 0.16093181249057928}, {'search': 0.3955964963154828, 'inside': 0.31047725399066817, 'hide': 0.3684760704959472, 'truth': 0.319124160118467, 'world': 0.2501630607656296, 'hear': 0.29768507800906036, 'll': 0.3315452990725157, 'propn': 0.3172140179087177, 'adv': 0.0977783815590558, 'adj': 0.10317861350440366, 'adp': 0.35712886110914216}, {'chick': 0.5187419204187453, 'shake': 0.4973674556443267, 'scream': 0.47221820740609577, 'arm': 0.49152729291203245, 'adj': 0.1376347302932775}, {}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {}, {'thing': 0.8051375803177511, 'adv': 0.27221609332375596, 'adj': 0.2872503986555217, 'cconj': 0.365178971931963, 'adp': 0.24856267263325652}, {'effort': 0.979870763158491, 'adp': 0.19963288182861175}, {'view': 0.7105828664204111, 'just': 0.4046258585564584, 'baby': 0.5223146078417015, 'adv': 0.17866709622550672, 'adp': 0.16314234183287932}, {'doom': 1.0}, {'peep': 0.2925801511435417, 'order': 0.2841326791224789, 'style': 0.2542843081870378, 'watch': 0.2413015615521824, 'recorder': 0.3450606407635508, 'tape': 0.2687831198988833, 'slang': 0.2687831198988833, 'technique': 0.288121277506355, 'rap': 0.2088783738175652, 'secret': 0.2841326791224789, 'hard': 0.22980515630658782, 'adv': 0.1471311749504207, 'adj': 0.23288569097693776, 'cconj': 0.19737705640949896, 'adp': 0.2686932842714209}, {'root': 0.8467781292232056, 'like': 0.3246417881893677, 'adv': 0.18052980600633275, 'adj': 0.19050034151672093, 'adp': 0.3296863937983889}, {'wisdom': 0.4827539370474088, 'attack': 0.3973690692685261, 'practice': 0.46680809343357416, 'battle': 0.4014767779082423, 'rap': 0.3058339951860864, 'propn': 0.11648104533374834, 'adv': 0.10771271872025222, 'adj': 0.2273232343825014, 'cconj': 0.14449704059001622, 'adp': 0.19670667457458227}, {'simply': 0.9760008643029457, 'adv': 0.21776664776751928}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'afford': 0.39612435006802976, 'duke': 0.3708820065324316, 'forget': 0.35084603129080316, 'moment': 0.32972397287691335, 'stop': 0.3049132023475319, 'man': 0.2300149288404071, 'soon': 0.3579173301594491, 'know': 0.2046584633254233, 'num': 0.1825574248400361, 'propn': 0.1038430789876603, 'adv': 0.2880782961552475, 'adp': 0.17536438385078676}, {'lookin': 0.5999181930898434, 'way': 0.23582471201472735, 'day': 0.2477534966572839, 'hey': 0.3050662999725532, 'boy': 0.5500213345717724, 'label': 0.2912577919981497, 'intj': 0.15487290902414283, 'cconj': 0.11303805187742876, 'adp': 0.07694046602755973}, {'clientele': 0.41442730747047785, 'mountain': 0.37276640677549444, 'dumb': 0.37276640677549444, 'low': 0.3033813547354916, 'ho': 0.2869671964178234, 'catch': 0.27088827944763505, 'bitch': 0.2246308515379631, 'fuck': 0.2154751928158877, 'intj': 0.1623941587055376, 'adj': 0.27970211162422726, 'hot': 0.30751755963862637, 'adp': 0.08067700367796274}, {'grief': 0.31206824350150897, 'wreath': 0.32659644790112174, 'tooth': 0.29376487059413603, 'cap': 0.3017603184369218, 'beef': 0.2544005367303233, 'lead': 0.24409261166573615, 'plan': 0.24786778017349628, 'crap': 0.2727039096376962, 'duke': 0.2689287411299361, 'mom': 0.2520880595085219, 'special': 0.27692418897272186, 'rap': 0.1977012932602933, 'num': 0.13237347075736539, 'propn': 0.07529723204505473, 'adv': 0.06962909332109742, 'adj': 0.07347465967311455, 'cconj': 0.09340770563962127, 'adp': 0.2543155082067593}, {'crash': 0.6019235509357761, 'plane': 0.5746166723388613, 'juice': 0.5545301783483743}, {'skeleton': 0.4789113666447411, 'liquid': 0.4789113666447411, 'ago': 0.4211886723260143, 'long': 0.32151121731932164, 'time': 0.26292004933279317, 'propn': 0.22082726578937478, 'adv': 0.10210204199996888, 'think': 0.292864191708945, 'adj': 0.2154821334031274}, {'ope': 1.0}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'thirty': 0.4322926632369273, 'chump': 0.4524178643836075, 'try': 0.287024382458496, 'old': 0.2888294851406595, 'year': 0.31035294363204297, 'play': 0.30895468628733963, 'cause': 0.27524463275457267, 'want': 0.2645901671617025, 'num': 0.1833704050548171, 'like': 0.17345009210032883, 'adj': 0.10178080266717034, 'adp': 0.17614533140508576}, {'shocking': 0.3433839847980933, 'wine': 0.33204166959176895, 'fly': 0.2706093834423289, 'shake': 0.29215772303411364, 'body': 0.2582429440981588, 'earth': 0.2727410681203178, 'good': 0.2279927108751152, 'mind': 0.23574832158332684, 'high': 0.23840729945491237, 'make': 0.190755836236218, 'rock': 0.2324608713681046, 'sit': 0.22593520601672937, 'money': 0.23016352862082143, 'look': 0.2227280270796359, 'adj': 0.24254330851305456, 'adp': 0.06995895482999293}, {'boo': 0.5500303270123964, 'stage': 0.5649253827978499, 'spit': 0.47807524984224786, 'cconj': 0.38700130067689853}, {'corny': 0.8291887190644521, 'ass': 0.5589687542038938}, {'man': 0.9228109945908285, 'adv': 0.38525299254163636}, {'term': 0.5499071657920117, 'goal': 0.5755078601010418, 'pain': 0.4333633648435695, 'long': 0.38636007738605554, 'adj': 0.12947245578411334, 'adp': 0.11203472577485914}, {'dangerous': 0.7404119472220902, 'dream': 0.6401637236769585, 'adj': 0.2048915696138898}, {'year': 0.48422169673762094, 'send': 0.516735910298729, 'label': 0.520178332266943, 'fuck': 0.3670092712308867, 'propn': 0.16274051134566017, 'adv': 0.15048991767492598, 'adj': 0.15880137106495848, 'adp': 0.13741353674174545}, {'lobster': 0.46428739236162114, 'ex': 0.41761423497445216, 'barrel': 0.39367363119309734, 'slave': 0.37745253389723615, 'kiss': 0.3689432897082157, 'ass': 0.3129832079647208, 'propn': 0.21408411354694518, 'adp': 0.18076663861663386}, {'town': 0.5607904894125847, 'run': 0.40964656351376844, 'probably': 0.5139288827591062, 'like': 0.2574871272245607, 'adv': 0.28637164294981704, 'cconj': 0.19208434902947574, 'adp': 0.2614882172058976}, {'god': 1.0}, {'ted': 0.44207200420486104, 'evian': 0.44207200420486104, 'grey': 0.44207200420486104, 'talk': 0.2955819804551434, 'propn': 0.5096013519919471, 'adp': 0.25817587837187034}, {'dart': 0.3393318193154684, 'wack': 0.3254056261618935, 'approach': 0.3485674704579866, 'step': 0.29671707337885794, 'spit': 0.5331522636527136, 'tryin': 0.28407768333612243, 'motherfuckin': 0.29671707337885794, 'nigga': 0.20292097823225574, 'adv': 0.2412885536600933, 'cconj': 0.1078965181530086, 'adp': 0.07344083033601176}, {'honest': 0.5331760226331097, 'mayor': 0.5331760226331097, 'run': 0.3615520189072078, 'probably': 0.45359107505374024, 'adv': 0.2527501873277656, 'adj': 0.1333547021112556, 'adp': 0.11539409978238611}, {'ac': 0.6613857511758284, 'cool': 0.5342659949303509, 'blow': 0.4574462388505737, 'propn': 0.15958213440368332, 'adj': 0.1557194427572578, 'adp': 0.1347466915759539}, {'slang': 0.7296416897753439, 'intj': 0.36704990300111184, 'like': 0.3591185704878006, 'adv': 0.3994039475017743, 'adj': 0.21073137473915377}, {'know': 0.9053017213796298, 'adv': 0.4247691058293658}, {'fact': 0.5789678821307785, 'going': 0.5235622128945094, 'know': 0.33105599278714265, 'hit': 0.4478974899386459, 'adp': 0.2836698236266682}, {'adv': 0.6247497186025276, 'adj': 0.32962710532154976, 'cconj': 0.41905211622207983, 'adp': 0.5704639203606088}, {}, {'shit': 0.4785455924446304, 'let': 0.5191395112199615, 'fuck': 0.48169261781871797, 'man': 0.4731154157742856, 'propn': 0.21359379470806844}, {'ho': 1.0}, {'brick': 0.23763055605884115, 'spliff': 0.24869334556693087, 'dip': 0.2187185924809173, 'power': 0.18874383939490375, 'use': 0.16908431683318734, 'mental': 0.20765580297282757, 'divine': 0.23763055605884115, 'honey': 0.21451271510859612, 'lock': 0.17871076439514386, 'pick': 0.19371833649777329, 'black': 0.14737151718876093, 'clock': 0.1956007515306723, 'late': 0.20218066437286808, 'pass': 0.18089466532506968, 'hear': 0.16142012107233755, 'rock': 0.16086890644479518, 'crab': 0.21451271510859612, 'run': 0.15168853196960447, 'night': 0.17391172896493354, 'stiff': 0.24869334556693087, 'cause': 0.15130151560734023, 'num': 0.10079840585688875, 'propn': 0.2866828569256748, 'adj': 0.27974368744559386, 'cconj': 0.07112715085095296, 'adp': 0.09682679492068659}, {'eye': 0.6293607221496439, 'open': 0.720272753531196, 'adv': 0.20067532563391666, 'adj': 0.21175848416908669}, {'spend': 0.7894788766461752, 'day': 0.5501973413290586, 'adv': 0.1871248194716206, 'adj': 0.19745959298459564}, {'know': 1.0}, {'yeahhh': 1.0}, {'pryor': 0.5731741054747919, 'rich': 0.4672561310199604, 'burn': 0.44511271219785353, 'propn': 0.41489409307945213, 'like': 0.22997637905697824, 'adv': 0.12788739037186855, 'adp': 0.11677498989421482}, {'need': 0.8831739040237379, 'adv': 0.3226362095811918, 'adj': 0.3404551828340267}, {'num': 0.08142538304713519, 'doo': 0.928091912094278, 'milli': 0.20089554742374913, 'end': 0.141209335138571, 'means': 0.20089554742374913, 'propn': 0.13895018223618938, 'like': 0.07702028135133432, 'adp': 0.07821709875885394}, {'holy': 0.45723435557300873, 'sin': 0.4426188312669941, 'wash': 0.47680234530712645, 'feel': 0.3074307249927529, 'need': 0.3093587356332586, 'water': 0.3906376657544853, 'adj': 0.11925486523262754, 'adp': 0.10319327028084846}, {'rockin': 0.5188257062658785, 'original': 0.46667000649146845, 'mind': 0.3403518995561759, 'time': 0.28483283084766586, 'ya': 0.32814758875223415, 'adv': 0.3318348722204249, 'cconj': 0.2967718673034921, 'adp': 0.10100035074454077}, {'sayin': 0.8454744744520898, 'know': 0.4834454555334038, 'adv': 0.22683342913702648}, {'tan': 0.6221262412927424, 'tattoo': 0.6015767915826252, 'line': 0.46517605121312916, 'cconj': 0.18621370814706265}, {'wrong': 0.7735879453489051, 'right': 0.540682347357943, 'adv': 0.19751908694795328, 'cconj': 0.26497264077185595}, {'mean': 0.6004262801647856, 'sure': 0.6138371141673479, 'know': 0.38813812424849486, 'intj': 0.33472537379625217}, {'collar': 0.505850049905471, 'white': 0.4210568931351289, 'crime': 0.45705975735169174, 'ring': 0.44395717348790453, 'thing': 0.36269021895403225, 'adj': 0.12939764896067574, 'adp': 0.11196999415376518}, {'dad': 0.6027303692528704, 'time': 0.38362134141997506, 'sit': 0.4393151620322454, 'think': 0.42731223564869947, 'cconj': 0.19985059568425345, 'adp': 0.2720605621283226}, {'drunk': 0.44773869548215534, 'freak': 0.42936347924634055, 'til': 0.35173963276237685, 'eat': 0.3536560184826588, 'niggas': 0.2814730960088259, 'fuck': 0.2588124358487493, 'play': 0.3399313884531074, 'know': 0.22618090287507578, 'adv': 0.1061244639229362, 'adj': 0.11198564418713827, 'cconj': 0.14236639046214133, 'adp': 0.09690308924198571}, {'going': 0.7396647732778825, 'adv': 0.21944600107187506, 'kill': 0.6361913829857657}, {'cook': 0.47318491262798673, 'shake': 0.44598214123536667, 'coke': 0.47318491262798673, 'cut': 0.37297624827027526, 'money': 0.3513472868783818, 'adv': 0.23391134838580702, 'cconj': 0.15689650212038694, 'adp': 0.10679315319699913}, {'greco': 0.6732674488256434, 'right': 0.4252549226433151, 'intj': 0.28553475965076824, 'yeah': 0.3856851968564949, 'propn': 0.16799815027105197, 'adj': 0.1639317486397428, 'adp': 0.28370588004093905}, {'kneel': 0.3005145984550577, 'general': 0.3005145984550577, 'trailer': 0.2871466101028254, 'trash': 0.2871466101028254, 'track': 0.22629059757451989, 'white': 0.2199915988971897, 'god': 0.18329649380511737, 'way': 0.1793087447857762, 'park': 0.25480914439346597, 'propn': 0.6235562523228312, 'adj': 0.06760700549619235, 'adp': 0.17550448723676787}, {'propn': 1.0}, {'adv': 1.0}, {'ill': 0.5694846667123713, 'say': 0.38566387258056506, 'doctor': 0.7042207924626336, 'adj': 0.17613536620724823}, {'grass': 0.5297103877907767, 'tryna': 0.46489809890247397, 'snake': 0.5029176288675077, 'fast': 0.46916274462296825, 'adv': 0.12840922801497007, 'adp': 0.11725148398266566}, {'bastard': 0.48493450089875906, 'damn': 0.4373248050601608, 'black': 0.34415379734885704, 'food': 0.41261784151288367, 'just': 0.2804087192812295, 'adv': 0.3714528661788431, 'adj': 0.26131196626132086}, {'lung': 0.7572962371510126, 'smoke': 0.6280512418943074, 'adp': 0.17903643973207115}, {'duet': 0.3928711051067771, 'cook': 0.3546507185014596, 'thought': 0.32027167802646367, 'coke': 0.3546507185014596, 'black': 0.24364716297206498, 'music': 0.29211697575536033, 'pharoahe': 0.33033736236067773, 'crack': 0.28470550166298375, 'rap': 0.24889147544368725, 'propn': 0.2843811318297022, 'cconj': 0.11759347291596202}, {'kendrick': 0.47597880065986664, 'reason': 0.5446855106082678, 'life': 0.3247646947241048, 'know': 0.5180329754329216, 'propn': 0.13142417448077037, 'adv': 0.2430619522400028, 'cconj': 0.1630342878538292}, {'hol': 0.7601784358384964, 'bitch': 0.5978768400692719, 'propn': 0.25430695978466494}, {'adv': 1.0}, {'holdin': 0.6254007100219238, 'breath': 0.5996314306942202, 'stop': 0.4993156308665655}, {'card': 0.2290009774913746, 'obama': 0.2633554320680158, 'stone': 0.2458558142635342, 'rolling': 0.2723514726116188, 'papa': 0.28503067962813794, 'hopper': 0.28503067962813794, 'ho': 0.19736743586034147, 'mama': 0.23799701803497753, 'kumbaya': 0.28503067962813794, 'grammar': 0.28503067962813794, 'doom': 0.18255183333091562, 'pull': 0.21004664287686065, 'rock': 0.18437394708116547, 'star': 0.20865660193717417, 'propn': 0.32857095295808697, 'like': 0.2185528093603333, 'adp': 0.1109744496763385}, {'tangle': 0.6354835713051437, 'wreck': 0.5481421546556253, 'leave': 0.4044217439941333, 'love': 0.3418181287920258, 'adp': 0.12371026111285431}, {'code': 0.6158384303505587, 'break': 0.44424678655137756, 'street': 0.4645397489538636, 'adv': 0.14928787361160956, 'hit': 0.43046924719024954}, {'smile': 0.8309653383560157, 'love': 0.5563241918619686}, {'spell': 0.5335642663234555, 'blood': 0.459007114172969, 'rock': 0.40013432303078494, 'propn': 0.2852301377950908, 'adv': 0.1318794552145042, 'cconj': 0.17691681372012835, 'young': 0.4471746486640811, 'adp': 0.1204201759465715}, {}, {'son': 0.6752944501900531, 'free': 0.7375482394681137}, {}, {'nuttin': 0.7955493132412291, 'word': 0.5481874784597457, 'adv': 0.17750405088219318, 'adj': 0.18730747604344644}, {'alike': 0.9743967868319501, 'adv': 0.2248352770620552}, {'ghostface': 0.6075690358713401, 'new': 0.41306496264447734, 'yo': 0.37716851131951995, 'intj': 0.2646849625998733, 'yeah': 0.35752239772889394, 'propn': 0.31146179313318945, 'adj': 0.15196142427882303}, {'plateau': 0.6957857192696089, 'rapper': 0.5202526945459989, 'new': 0.4452957195661293, 'adj': 0.1638187159165413, 'adp': 0.14175513087588526}, {'ren': 0.17721067129392556, 'burst': 0.17721067129392556, 'church': 0.1637346301337161, 'induct': 0.17721067129392556, 'thank': 0.1502585889735067, 'doc': 0.15585165139681875, 'position': 0.1593963138763862, 'fame': 0.27875728162592145, 'hall': 0.3187926277527724, 'ball': 0.1356038949646188, 'slim': 0.1502585889735067, 'flame': 0.1637346301337161, 'motherfuckin': 0.13937864081296072, 'blow': 0.11711518725002994, 'roll': 0.13678254781329724, 'walk': 0.1288995690763999, 'day': 0.11108521165886054, 'rock': 0.11462987413842798, 'run': 0.10808824223521193, 'grow': 0.1314956620760634, 'meet': 0.13059122841023937, 'num': 0.07182561771621454, 'propn': 0.5311299329781426, 'adv': 0.11334187908333967, 'cconj': 0.15204858160705514, 'adp': 0.3104801047092066}, {'diamond': 0.5443994499080548, 'need': 0.42509588879630855, 'love': 0.39180075216841626, 'like': 0.2792603577105664, 'look': 0.4514477096890569, 'adv': 0.15529368071783797, 'cconj': 0.20832709036281497, 'adp': 0.14179989085499387}, {'let': 0.6471293487925075, 'tell': 0.615672443735137, 'adp': 0.44963434917340306}, {'vehicular': 0.5943144393817357, 'homicide': 0.5678771596486958, 'bang': 0.4475249133528252, 'intj': 0.23288328652625145, 'like': 0.22785106947039557, 'adj': 0.13370338671169887}, {'life': 0.4764345637209882, 'bitch': 0.453276487728799, 'cause': 0.5087697323955266, 'know': 0.3799809810809935, 'propn': 0.19280118882481911, 'adv': 0.35657544386410245}, {}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'test': 0.4547016298105, 'really': 0.3459146340747495, 'girl': 0.3277481003024892, 'old': 0.31417933726079716, 'alright': 0.3798539586252847, 'play': 0.3360708777156263, 'hope': 0.34963964075731835, 'intj': 0.19284033530392275, 'num': 0.19946437360891262, 'adv': 0.10491923649645972}, {'nasty': 0.4917657960301874, 'old': 0.6980743684031615, 'time': 0.3001500886041942, 'num': 0.2215947233194259, 'propn': 0.12604843860539267, 'like': 0.20960648015807834, 'adj': 0.24599486268810208, 'adp': 0.1064317766137071}, {'thing': 1.0}, {'time': 0.7321977451267974, 'man': 0.681092109799573}, {'die': 0.531913812469382, 'hope': 0.5558363340892296, 'lose': 0.5231028037481833, 'adv': 0.3335887410438738, 'adp': 0.15230126187949458}, {'herb': 0.44999065371352, 'slide': 0.44999065371352, 'try': 0.3366922376712874, 'catch': 0.34689329745829856, 'num': 0.4302031170437188, 'like': 0.2034645946568501, 'cconj': 0.30356751917250246, 'adp': 0.20662622902674355}, {'intj': 0.8618860271878025, 'propn': 0.5071020372059519}, {'imma': 0.25369053035739414, 'sleazy': 0.9375942171698788, 'cause': 0.1543417321874962, 'propn': 0.058488678779926494, 'adj': 0.171218874241505}, {'adj': 1.0}, {'bans': 0.21738110370443597, 'ashy': 0.2077111972264953, 'cocoa': 0.21738110370443597, 'spilt': 0.2008502893940838, 'kilt': 0.21738110370443597, 'tilt': 0.21738110370443597, 'frown': 0.21738110370443597, 'mask': 0.17274063616754587, 'clown': 0.2008502893940838, 'ray': 0.19552855583621537, 'thousand': 0.18151047643820248, 'cayman': 0.2008502893940838, 'fam': 0.18750405509500073, 'butter': 0.18750405509500073, 'sound': 0.14260294098748413, 'milk': 0.19118038291614312, 'island': 0.1613033343067079, 'mic': 0.14014210799732152, 'metal': 0.19118038291614312, 'pound': 0.18431947508373167, 'day': 0.13626620642721826, 'build': 0.19118038291614312, 'face': 0.1387789413395575, 'num': 0.17621435480605627, 'propn': 0.20046997464955346, 'like': 0.083340591578487, 'adv': 0.09268961284393283, 'adj': 0.04890439781783859, 'cconj': 0.06217174215130279, 'adp': 0.2962246707893926}, {'divine': 0.6870605433135526, 'rate': 0.6323804374110228, 'adv': 0.15329788815051898, 'adj': 0.16176442379515735, 'adp': 0.27995503368280633}, {'size': 0.8861768817017691, 'cconj': 0.27430959027152296, 'adp': 0.3734230617174013}, {'son': 0.6053325663195277, 'going': 0.6531549796295014, 'propn': 0.419109248867394, 'adp': 0.17694206467657378}, {'life': 0.4424139985869279, 'new': 0.47487453535845886, 'goddamn': 0.6698177121253707, 'adv': 0.1655568045753822, 'adj': 0.17470039164015386, 'cconj': 0.22209511183923414, 'adp': 0.15117123060368132}, {'troubled': 0.4681845605012721, 'comfort': 0.48998069366556335, 'body': 0.35209958716112616, 'mind': 0.32142944696241793, 'food': 0.34811584800010514, 'adv': 0.31338593849408225, 'adj': 0.11023134190477583, 'adp': 0.2861551846059519}, {'hungh': 0.3619408129281, 'penalty': 0.3619408129281, 'death': 0.27469210529148164, 'face': 0.2310677514731725, 'felony': 0.3619408129281, 'class': 0.3344169101238001, 'memory': 0.3255561925301469, 'bitter': 0.3344169101238001, 'water': 0.26672375329860526, 'propn': 0.0834459209607628, 'adj': 0.2442783277889829, 'cconj': 0.10351631541071966}, {'represent': 0.6340361999868036, 'president': 0.734728644323675, 'adv': 0.17810852909940114, 'adp': 0.1626323097623479}, {'bitch': 0.5421674068519003, 'time': 0.5491372782467723, 'fuck': 0.5200693748434623, 'adv': 0.2132512814811318, 'adj': 0.22502900130302547, 'adp': 0.1947214355338454}, {'kidnap': 0.39993341734600296, 'cat': 0.3202815103640732, 'femstat': 0.4185521475578461, 'strap': 0.3867232180300737, 'boy': 0.29123642944675665, 'plot': 0.33260004207513577, 'intricate': 0.4185521475578461, 'adj': 0.18832401145143218, 'adp': 0.08147999067447798}, {'reapin': 0.4259058006996109, 'benefit': 0.3935176603088993, 'wheel': 0.37457181271224066, 'minute': 0.34624938415383094, 'asleep': 0.383091007975973, 'thinkin': 0.3384435799918034, 'adv': 0.09080146135541625, 'adj': 0.09581636285488145, 'cconj': 0.12181052157064753, 'adp': 0.33164613653704184}, {'track': 0.5410078966287734, 'bloody': 0.6462358875612982, 'everybody': 0.4696177673655749, 'adv': 0.1531729060436747, 'adj': 0.161632539013558, 'adp': 0.13986339468892775}, {'place': 0.22312768439511418, 'um': 0.8893995165902715, 'intj': 0.3874632574838661, 'adv': 0.07026944351237337, 'adp': 0.06416358588731133}, {'friend': 0.8201501783817435, 'know': 0.5721483067355825}, {'guy': 0.48848195941611433, 'straight': 0.44035591485598097, 'world': 0.34519725314976685, 'know': 0.575118599969683, 'propn': 0.14590671021740623, 'adj': 0.28475006546941856, 'adp': 0.12319954582630985}, {'mu': 0.4317971204717469, 'mos': 0.36054514272792937, 'ayo': 0.3431250831581913, 'big': 0.28871189944143416, 'brother': 0.29899479800059586, 'space': 0.35103886069912477, 'make': 0.2292005521149681, 'man': 0.22050871789535934, 'baby': 0.2691203989207451, 'propn': 0.29865414812831376, 'adp': 0.08405840360535227}, {'explain': 0.705226105754014, 'make': 0.3743383296028374, 'let': 0.39517675210854997, 'just': 0.340499687979837, 'adv': 0.30070292953637295}, {'people': 0.4996116134242169, 'hop': 0.5518868414999327, 'hip': 0.5662535994438734, 'adv': 0.16992036483145764, 'adp': 0.3103112641256853}, {'head': 0.8150320919244776, 'num': 0.522295732008116, 'adp': 0.25085824176079236}, {'adj': 0.5451428678401008, 'cconj': 0.693035459535169, 'adp': 0.4717214278257325}, {'ammo': 0.4937211177780773, 'outta': 0.434213419391489, 'machine': 0.434213419391489, 'fuckin': 0.33423192536937735, 'good': 0.3132281240265401, 'gun': 0.33567644407741787, 'adv': 0.21051884676206975, 'adj': 0.11107282805830339}, {'curb': 0.5412889186490942, 'blade': 0.5190743970395277, 'love': 0.3236916511399705, 'ride': 0.46049299312484204, 'adv': 0.2565960766790611, 'adp': 0.23429991161727332}, {'want': 1.0}, {'sleazy': 0.37191634975146665, 'diamond': 0.601683041708477, 'need': 0.23491297376579795, 'love': 0.2165136907726272, 'like': 0.3086450977940359, 'look': 0.4989505981020248, 'adv': 0.08581710928271029, 'adj': 0.09055672848704328, 'cconj': 0.11512399343987714, 'adp': 0.1567205654928058}, {'river': 0.4006498077813191, 'rush': 0.38420712161837434, 'splash': 0.4256127750083309, 'breathe': 0.3667771719016828, 'blood': 0.33052026394856876, 'run': 0.27168466084192067, 'fast': 0.3469629501115135, 'like': 0.17076990035292708, 'adv': 0.18992660898264715, 'adp': 0.08671174609201256}, {'mumble': 0.6120484179158879, 'rapper': 0.4576406640648115, 'tat': 0.5633381948724969, 'adj': 0.2882065070464025, 'adp': 0.12469500477118349}, {'wash': 0.34902827656150526, 'party': 0.32901950536107116, 'feelin': 0.3154624444207101, 'invite': 0.35852783781013553, 'car': 0.2969302903154521, 'blow': 0.2564457795225814, 'need': 0.22645640777578774, 'street': 0.25742447836987414, 'smoke': 0.264988637028975, 'propn': 0.08946223923025398, 'like': 0.14876713491722093, 'adv': 0.16545560666427733, 'adp': 0.37769706497217403}, {'know': 1.0}, {'tit': 0.7357790577480914, 'palm': 0.6772216610381941}, {'bureaucrat': 0.511636112226698, 'government': 0.4338210545095405, 'run': 0.3120683852210939, 'blast': 0.39151056263096096, 'business': 0.39491352565096177, 'tell': 0.27276134080451586, 'adv': 0.2181576611357497, 'cconj': 0.146329685067305}, {'chitty': 0.5568118487293274, 'hooptie': 0.2784059243646637, 'coochie': 0.2784059243646637, 'thang': 0.4721259848681939, 'bang': 0.4192850751121707, 'matter': 0.20126014706046097, 'city': 0.19278017191647398, 'work': 0.20807583676463728, 'adv': 0.05935506100361043, 'adp': 0.10839515340351756}, {'feel': 0.39634522209131845, 'heavy': 0.5555866380083426, 'heart': 0.48290468312462087, 'like': 0.26200593381747767, 'adv': 0.4370960436275075, 'adj': 0.15374551794460434, 'adp': 0.13303862074539385}, {'bank': 0.5511896266131601, 'pocket': 0.5511896266131601, 'dig': 0.5352754952856718, 'propn': 0.2997430695373917, 'adp': 0.12654733280109703}, {'ice': 0.49600781890646023, 'herb': 0.4875835926425409, 'bullet': 0.44792594005350794, 'say': 0.28326190063539697, 'propn': 0.39773009775086804, 'cconj': 0.1644640176259566, 'adp': 0.22388811467888745}, {'hooper': 0.3514042569808123, 'cookie': 0.3514042569808123, 'list': 0.32468160988304373, 'scandalous': 0.3514042569808123, 'villain': 0.2688990770466056, 'ho': 0.2433273402049058, 'pack': 0.2626335448169746, 'mr': 0.2572453543019776, 'shit': 0.18151363835569204, 'stay': 0.23591089771920604, 'll': 0.2540307739464427, 'num': 0.14242837432679717, 'propn': 0.24305011321661762, 'adj': 0.07905569198709032, 'adp': 0.13681647913566758}, {'willing': 0.694010950102146, 'god': 0.4581463532013282, 'come': 0.3958921061806633, 'propn': 0.17317420601335196, 'adv': 0.16013819663511203, 'adj': 0.168982517755492, 'cconj': 0.21482602773487583, 'adp': 0.14622345674086468}, {'motorola': 0.36626144728251625, 'erase': 0.38331259324377664, 'cola': 0.38331259324377664, 'coca': 0.38331259324377664, 'chase': 0.31162230974795646, 'taste': 0.2985792714017266, 'wish': 0.3079631941800032, 'make': 0.20346466856497322, 'propn': 0.26511963738203165, 'adv': 0.16344151014283648, 'adp': 0.07461986924483867}, {'wake': 0.8718270748425615, 'adv': 0.4898137927533918}, {'choke': 0.4398462763859876, 'droop': 0.5099317397302607, 'weed': 0.42578656310094126, 'wake': 0.38700864378419547, 'soon': 0.40521430622044974, 'adv': 0.10871546497596164, 'adp': 0.1985379056840207}, {'cap': 0.6921381780366398, 'art': 0.32307325884231025, 'artery': 0.3578905712305892, 'push': 0.3175861634204886, 'snap': 0.29763559104290993, 'place': 0.253558611305757, 'adv': 0.07985303375745459, 'adj': 0.08426326122240295, 'adp': 0.14582887621577967}, {'reload': 0.6654909591764376, 'gold': 0.5614901959539094, 'need': 0.44160402842967483, 'cconj': 0.21641724787259545}, {'hat': 0.3454539994143482, 'sin': 0.3121903394331272, 'bop': 0.35725447058852405, 'cold': 0.258894868948444, 'guess': 0.28154024735551075, 'commit': 0.35725447058852405, 'turn': 0.2435252659293785, 'dress': 0.3363008428671047, 'walk': 0.2719575670941649, 'love': 0.20110844940091413, 'propn': 0.17239993707278456, 'adv': 0.15942221222434197, 'adj': 0.08411349501207287, 'cconj': 0.1069327659000017, 'adp': 0.1455696856998811}, {'clown': 0.55320473493678, 'daily': 0.55320473493678, 'crew': 0.4621426331450873, 'nigga': 0.32205198559863213, 'adv': 0.12764814245328887, 'adp': 0.2331130614465491}, {'jet': 0.6474392487695152, 'pack': 0.615227650967862, 'like': 0.3155930703304971, 'adp': 0.3204970680001649}, {'sky': 0.46799161825636937, 'kid': 0.4007011631217108, 'rock': 0.39219784362981214, 'blue': 0.460156834810683, 'num': 0.24574616867903412, 'propn': 0.4193590947190332, 'adj': 0.13640283061520597}, {'fuck': 1.0}, {'picture': 0.599782538182777, 'elevator': 0.6488434141458553, 'yo': 0.4119519486767511, 'propn': 0.1700927950887136, 'adp': 0.14362159952775902}, {'stamp': 0.6314580376296887, 'word': 0.4499807641534233, 'man': 0.3490115870200305, 'propn': 0.31513117849560146, 'like': 0.2620164828828915, 'cconj': 0.1954632299177412, 'adp': 0.2660879544780271}, {'cup': 0.4914874651835663, 'styrofoam': 0.5319389280483966, 'stuff': 0.444162287433086, 'double': 0.42270219107129936, 'propn': 0.12263920552860434, 'like': 0.20393725209646613, 'adp': 0.20710623108574555}, {}, {}, {'life': 0.6952310366829471, 'bitch': 0.6614379108150664, 'propn': 0.28134266610195297}, {'vagina': 0.41441384825610184, 'fat': 0.31987115448349296, 'screamin': 0.38289961699856556, 'little': 0.28300186743406647, 'life': 0.2360996630846145, 'head': 0.2621090347074764, 'shit': 0.21406048415075413, 'world': 0.22604446645589663, 'nigga': 0.22290767622123847, 'propn': 0.19108729378631203, 'adv': 0.1767028435196898, 'adj': 0.27969302783410555, 'cconj': 0.23704756741633676, 'adp': 0.16134876711683824}, {'lakes': 0.47978631524213394, 'land': 0.390052720355392, 'mf': 0.3854726632262047, 'doom': 0.3072857685664017, 'man': 0.24501568033199542, 'propn': 0.5530767671081069, 'adp': 0.09340051107077016}, {'crook': 0.29188119895075815, 'rugged': 0.31590423578627325, 'arrow': 0.31590423578627325, 'personal': 0.31590423578627325, 'crush': 0.2841475084688918, 'dropper': 0.31590423578627325, 'use': 0.2147803825263861, 'fear': 0.2417340022226323, 'better': 0.20799628339342305, 'shoot': 0.22322381622960646, 'dime': 0.2378791534917351, 'eye': 0.21122260346666047, 'yo': 0.17639393457677366, 'gun': 0.2147803825263861, 'propn': 0.07283212875975985, 'adv': 0.13469911051054534, 'adj': 0.14213844861361724, 'adp': 0.12299482554840434}, {'space': 0.5126162843468034, 'travel': 0.5126162843468034, 'place': 0.4268577501262161, 'time': 0.34616687221726433, 'man': 0.3220052600685711, 'propn': 0.1453732495726104, 'cconj': 0.18033839140100785, 'adp': 0.12274910657607162}, {'door': 0.15315866245791843, 'homicide': 0.18787678432042423, 'surround': 0.19662330813817336, 'hospital': 0.19662330813817336, 'spark': 0.16959922906743907, 'provide': 0.17685746750218417, 'learn': 0.15315866245791843, 'buck': 0.15984919491892155, 'jakes': 0.3932466162763467, 'petty': 0.18167102691165676, 'scramble': 0.19662330813817336, 'floor': 0.15464694784092248, 'store': 0.17292450309390758, 'guard': 0.16959922906743907, 'law': 0.16417797927615846, 'war': 0.15045869545937832, 'inside': 0.13310710132730746, 'cash': 0.1361503898746558, 'corner': 0.15464694784092248, 'ass': 0.13254676899300677, 'fast': 0.15315866245791843, 'stay': 0.1320006238226344, 'num': 0.07969379305045265, 'propn': 0.4079858142408761, 'adv': 0.04191932508586461, 'adj': 0.13270350068499262, 'cconj': 0.11246988267318485, 'young': 0.14213934563967842, 'adp': 0.22966120814758276}, {'takin': 0.9529847510919263, 'cconj': 0.30301825718306047}, {'goal': 0.18379240714182613, 'beach': 0.16531641126896002, 'marble': 0.18379240714182613, 'grammy': 0.18379240714182613, 'sleepin': 0.17561664872432584, 'stackin': 0.18379240714182613, 'sow': 0.18379240714182613, 'paparazzi': 0.18379240714182613, 'reapin': 0.18379240714182613, 'window': 0.30267971987776304, 'hammer': 0.16164009739424728, 'diamond': 0.137363308608803, 'sippin': 0.1558393044816691, 'pool': 0.15346433897674697, 'floor': 0.1445552669719395, 'walkin': 0.1476635460641688, 'lord': 0.1418627531515906, 'camera': 0.16164009739424728, 'livin': 0.13637950855443914, 'villa': 0.18379240714182613, 'buildin': 0.16981585581174763, 'inside': 0.12442103020372909, 'bullet': 0.14316410152138118, 'know': 0.08351169005085683, 'baby': 0.11454982811041842, 'propn': 0.3389886109935178, 'adv': 0.11755148058862329, 'cconj': 0.1051305191800413, 'adp': 0.3935696920459545}, {'aboard': 0.5027838896349713, 'train': 0.45224081653254994, 'jump': 0.4336808330459803, 'style': 0.37051473984546546, 'rza': 0.3757720989103136, 'propn': 0.2318349476833339, 'adj': 0.11311168696861819, 'adp': 0.09787747327965485}, {'nigga': 0.8811050736492166, 'adv': 0.3492337603459524, 'adp': 0.318888114899622}, {'walkin': 0.7587945491699224, 'bitch': 0.5119169549964909, 'adv': 0.4027056783025721}, {'nigga': 1.0}, {'trust': 0.7351489306378662, 'love': 0.4976148926557292, 'num': 0.3749661844855826, 'adv': 0.19723404774706152, 'adp': 0.18009597244486863}, {'hell': 0.4584036506406753, 'day': 0.39749816733993854, 'hey': 0.48945139742672816, 'remember': 0.48125734959246486, 'intj': 0.24847963132023834, 'num': 0.257014871591839, 'cconj': 0.1813593715817848}, {'dun': 0.4217920494718313, 'home': 0.3389918828686414, 'son': 0.3123016873689528, 'guess': 0.3531107354013203, 'bee': 0.40448168475732726, 'murder': 0.3531107354013203, 'num': 0.19006383375086652, 'propn': 0.10811290594278994, 'adv': 0.09997450653433348, 'killer': 0.37263419987210905}, {'dice': 0.7457959615549421, 'life': 0.4723813380145619, 'fuck': 0.43110249662101774, 'adj': 0.1865338913737578}, {'hey': 0.8916749155877435, 'intj': 0.4526763136188932}, {'prove': 0.6154985019052771, 'buy': 0.5922332966376507, 'big': 0.4928696036338647, 'adj': 0.1658338636101122}, {'lock': 0.4836002596332796, 'going': 0.4836002596332796, 'break': 0.42695197175180855, 'hide': 0.5406867232702837, 'adv': 0.1434760001122485, 'cconj': 0.19247362482565142}, {'hustlin': 0.5329739389255247, 'way': 0.7231865291882021, 'day': 0.37988383365572104, 'adj': 0.13633600444867283, 'cconj': 0.17332279493747133}, {'youth': 0.5824650798111615, 'pay': 0.4523278510994905, 'crime': 0.4844004067929279, 'listen': 0.4523278510994905, 'adv': 0.12996040527352057}, {'classical': 0.6170457455313205, 'collect': 0.6170457455313205, 'boy': 0.46468945063411954, 'adj': 0.15024250501357436}, {'tall': 0.7451020313116122, 'pass': 0.5672039186482767, 'adj': 0.35085991165328123}, {'hawkins': 0.2986177639970145, 'haughty': 0.2986177639970145, 'john': 0.27590928233837403, 'trick': 0.25320080067973355, 'portion': 0.28533415377839566, 'separate': 0.26859878410022325, 'nameless': 0.2986177639970145, 'remain': 0.2458903024415828, 'slavery': 0.2986177639970145, 'anguish': 0.2986177639970145, 'survive': 0.28533415377839566, 'propn': 0.2065401312196699, 'adv': 0.12732829331310158, 'cconj': 0.17081141192717314, 'adp': 0.17439671090695447}, {'honor': 0.5241536200142339, 'crook': 0.5068403036164612, 'royalty': 0.4824385546819306, 'trust': 0.43590634968056213, 'adp': 0.2135757114480121}, {'turn': 0.29919817609643534, 'pick': 0.35781705287916993, 'player': 0.4244290881093456, 'infect': 0.4593613675928042, 'ill': 0.334130455579894, 'play': 0.31369638201735967, 'rap': 0.27806896563189, 'intj': 0.18000165888531053, 'propn': 0.10590635541339659, 'adv': 0.09793405818641925, 'adj': 0.20668577608704505, 'adp': 0.08942436483975821}, {'super': 0.8734429125583807, 'intj': 0.4869265637665838}, {'adv': 1.0}, {'new': 0.9385054580286664, 'adj': 0.345264399048618}, {'fall': 0.9573736993486073, 'adv': 0.2888522109930308}, {'relax': 0.7180192985047414, 'thing': 0.5148137805592193, 'just': 0.3941875625744183, 'adv': 0.17405794929825158, 'adj': 0.18367104866801814}, {'stop': 0.9538179706338747, 'adv': 0.30038521750558395}, {'lord': 0.6299934245648686, 'punk': 0.6357725378121648, 'like': 0.31291759795798485, 'adp': 0.3177800214883146}, {'oh': 0.6182121965952109, 'intj': 0.78601124672674}, {'jay': 0.5016426053033054, 'jameson': 0.5213490592457438, 'jonah': 0.5385643002365359, 'propn': 0.43185454666915407}, {'cypher': 0.7188797577814984, 'complete': 0.6951344430051025}, {'monster': 0.4215639199124337, 'voice': 0.36802345171265793, 'bed': 0.39266327714976335, 'inside': 0.3308573494836379, 'friend': 0.3183310726917232, 'head': 0.3091165733816922, 'adp': 0.475714029336882}, {'modern': 0.5874335349960721, 'tear': 0.5168726088786875, 'emcee': 0.5390853114710337, 'adj': 0.28606464420492217, 'adp': 0.12376830953458144}, {'turn': 0.44991858569842497, 'break': 0.4382364592826696, 'time': 0.3792259259546684, 'heart': 0.48810644209759696, 'adv': 0.14726812016641155, 'cconj': 0.19756076896144964, 'adp': 0.4034150636939326}, {'know': 1.0}, {'til': 0.6454567414747583, 'brother': 0.6325078972898986, 'adv': 0.38948554154390297, 'adp': 0.17782116769088752}, {'strippin': 0.3220353977472665, 'rhymer': 0.3220353977472665, 'yuck': 0.3220353977472665, 'button': 0.30771008553872914, 'shut': 0.506570577312787, 'male': 0.297546114774637, 'shirt': 0.297546114774637, 'rapper': 0.23008089517639524, 'propn': 0.0742456760529089, 'adj': 0.07244855663384335, 'cconj': 0.18420645926572987, 'adp': 0.2507638903147442}, {'humble': 0.9587640174501934, 'adj': 0.2842033758468841}, {'finna': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'nah': 1.0}, {'ask': 0.6412290170123706, 'mean': 0.619647453248355, 'adv': 0.37589006817065934, 'cconj': 0.25212901077589916}, {'domain': 0.2484781044670446, 'foolishly': 0.2484781044670446, 'traveler': 0.2484781044670446, 'prey': 0.2295825089661686, 'bandit': 0.23742488967023678, 'threaten': 0.2484781044670446, 'search': 0.21432705693332688, 'continue': 0.23742488967023678, 'seldom': 0.2484781044670446, 'stranger': 0.2484781044670446, 'village': 0.2484781044670446, 'remote': 0.23742488967023678, 'wander': 0.23742488967023678, 'unless': 0.21432705693332688, 'travel': 0.20200567943920952, 'face': 0.15863167357399308, 'adv': 0.2648728306044417, 'adj': 0.0559003145296425, 'adp': 0.2418574812352224}, {'yell': 0.537514033364406, 'today': 0.4700107145910735, 'vibe': 0.42942562040875937, 'bitch': 0.32390857339505624, 'propn': 0.137774536539567, 'adv': 0.12740330290287877, 'kill': 0.3693522920209863, 'cconj': 0.17091203759020948}, {'stiffly': 0.34490335506750014, 'fifth': 0.34490335506750014, 'plead': 0.3295607924868749, 'curse': 0.30333250851702975, 'wine': 0.31867507109765497, 'stupid': 0.297499536937476, 'sip': 0.2712712529676308, 'york': 0.25971578993142874, 'new': 0.21091552494822347, 'sit': 0.21684000664544717, 'propn': 0.23855373926936937, 'adj': 0.2327795369168152, 'cconj': 0.0986435439555562, 'adp': 0.13428540418903065}, {'world': 0.6935881080900967, 'fuck': 0.6611361914691505, 'adj': 0.286067251963008}, {'desire': 0.852520349329591, 'say': 0.5226940347650355}, {'main': 0.5869102129384955, 'dollar': 0.49188333033725007, 'bitch': 0.3688109705399768, 'fuck': 0.35377871937722516, 'just': 0.32852704668821836, 'adv': 0.14506481042198474, 'adj': 0.1530766389151112}, {'oh': 0.4093673725711345, 'trap': 0.572850447650063, 'mad': 0.4830743480940721, 'intj': 0.5204804445075873}, {'hell': 0.6496596460632686, 'blow': 0.5939226999793127, 'adv': 0.191595745540647, 'cconj': 0.25702645471389385, 'adp': 0.34989518801229896}, {'roof': 0.5739197700382132, 'nas': 0.4586936675542444, 'say': 0.32145350460128463, 'catch': 0.4265515242222268, 'niggas': 0.3690033520218776, 'propn': 0.15045173567952289, 'adp': 0.12703723822488047}, {'prison': 0.9754653797776782, 'adp': 0.22015288518479526}, {}, {'wife': 0.3584976784580339, 'grab': 0.3327958115407659, 'building': 0.31671648561298826, 'scale': 0.3584976784580339, 'ninja': 0.3682549700091777, 'aiyo': 0.3985638859009629, 'child': 0.2957464224557237, 'gun': 0.27097991789172265, 'time': 0.21880966676049893, 'propn': 0.09188941764164375, 'adv': 0.0849722713892445, 'cconj': 0.11399064004545431}, {'mirror': 0.2662286084475345, 'mathers': 0.5891901569645956, 'marshall': 0.5891901569645956, 'just': 0.1539441367698903, 'propn': 0.2940372557758885, 'look': 0.19760947684187657, 'adv': 0.06797576406941563, 'think': 0.1949781494085439, 'cconj': 0.09118975787238136, 'adp': 0.18620762701880042}, {'hole': 0.6181333578482666, 'bullet': 0.5582129047946145, 'leave': 0.4560615681145737, 'intj': 0.2808117949262442, 'adp': 0.1395065831965013}, {'radio': 1.0}, {'listen': 0.9209312389075041, 'propn': 0.28613646288105854, 'adv': 0.26459701021403553}, {'tryna': 0.9639067405445697, 'adv': 0.2662401087979488}, {'watch': 1.0}, {'gimme': 0.8309832979603998, 'way': 0.518907648054306, 'propn': 0.200503394738358}, {'letter': 0.7489339652311583, 'send': 0.5933806454393086, 'adj': 0.18235554793298053, 'cconj': 0.23182704647910693}, {'suckin': 0.8016940985133799, 'rapper': 0.5727770833079399, 'adv': 0.17091806588558264}, {'gave': 0.7558516786575007, 'squeeze': 0.6311266065530534, 'propn': 0.1742625788041294}, {'opposite': 0.38909299967350713, 'bank': 0.37512958371901894, 'bet': 0.3554492542800171, 'cream': 0.3596725833158667, 'good': 0.28067964949215174, 'set': 0.32602883792237664, 'feed': 0.3596725833158667, 'money': 0.283352122492001, 'propn': 0.10199982680111096, 'adj': 0.19906183421042403, 'adp': 0.08612580132561999}, {'brooklyn': 0.5485136070266162, 'shooting': 0.5959419908709759, 'crap': 0.5207697810078569, 'propn': 0.14379156901232976, 'adv': 0.13296739210221856, 'adj': 0.1403110886031297, 'adp': 0.12141357974266877}, {'anybody': 0.48083181508325507, 'swallow': 0.4340541884628811, 'unless': 0.4340541884628811, 'word': 0.3313257593043599, 'baby': 0.31363314451050667, 'propn': 0.348051801254109, 'adv': 0.10728385223862975, 'adj': 0.1132090647124025, 'adp': 0.19592347180671274}, {'dead': 0.7427941343661199, 'think': 0.6283480646076737, 'adj': 0.23116138011155188}, {'jay': 0.5016426053033054, 'jameson': 0.5213490592457438, 'jonah': 0.5385643002365359, 'propn': 0.43185454666915407}, {'kendrick': 0.5760376066090298, 'wait': 0.49871248768100823, 'propn': 0.15905176199763005, 'like': 0.2644878458164205, 'adj': 0.3104038160710211, 'cconj': 0.39461371321719024, 'adp': 0.26859771989629455}, {'phone': 0.9019926430751244, 'propn': 0.26941993794142355, 'adv': 0.24913885267738356, 'adp': 0.22749066126895795}, {'touch': 1.0}, {'desert': 0.5796393101016558, 'use': 0.39409143230099664, 'punct': 0.46569712698605037, 'feel': 0.33616703239091206, 'leave': 0.3688824562331695, 'adv': 0.12357684804907547, 'cconj': 0.1657788331841274}, {'intj': 1.0}, {'ugly': 0.9665572521565075, 'adj': 0.2564509276716728}, {'nightmare': 0.34146481756057795, 'johnny': 0.28953121895039663, 'happen': 0.24537624205902192, 'speak': 0.2552049774146956, 'seek': 0.300308414398257, 'ill': 0.24837481578807571, 'eye': 0.22831313919516466, 'come': 0.17997291674519933, 'heat': 0.2552049774146956, 'gun': 0.23215878683115257, 'niggas': 0.19308415102332782, 'propn': 0.4723509230118507, 'like': 0.13091239033099997, 'adj': 0.15363921697152935, 'adp': 0.13294663669908893}, {'thinkin': 0.800262138283813, 'time': 0.552876467607989, 'propn': 0.23218122575852596}, {'swerve': 0.5297940524274726, 'drive': 0.46593852033934874, 'power': 0.40208298825122496, 'sex': 0.45697869549154096, 'want': 0.30984253259770234, 'adv': 0.11295003284482497, 'cconj': 0.15152291831952122}, {'propn': 0.34949369509382167, 'kill': 0.9369387157598232}, {'lob': 0.3191935089921429, 'dart': 0.28710612275842506, 'swab': 0.3191935089921429, 'scotchguard': 0.3191935089921429, 'throb': 0.3191935089921429, 'prob': 0.28710612275842506, 'cotton': 0.28710612275842506, 'bar': 0.2385597814592006, 'barred': 0.2949203383425306, 'job': 0.26283295210881286, 'heart': 0.2255480779344504, 'adv': 0.06805081551845661, 'adj': 0.07180921468614777, 'hot': 0.23685120929138118, 'adp': 0.12427547815861717}, {'haha': 0.8943457267216622, 'adj': 0.4473764869712107}, {'horse': 1.0}, {'hands': 0.6763549291205332, 'lucky': 0.6249213060932767, 'propn': 0.31186900145480984, 'cconj': 0.19343983234724177, 'adp': 0.1316667317057831}, {'funky': 0.6473783710975929, 'actually': 0.5567756561460138, 'adv': 0.1493780535780977, 'think': 0.4284682466998887, 'adj': 0.15762809948808357, 'cconj': 0.20039125302547614}, {'know': 0.5621077827311485, 'adv': 0.7912257801296495, 'adp': 0.24082484392458214}, {'red': 0.47851718049912095, 'swallow': 0.5012572282273597, 'pill': 0.4570651697817436, 'break': 0.36868105289051145, 'fuck': 0.3021486700546414, 'adv': 0.12389422297047595, 'adj': 0.1307368146565034, 'adp': 0.2262575941734347}, {'leave': 1.0}, {'danger': 0.9815736896072488, 'adp': 0.19108399166547846}, {'bad': 0.5978218847182248, 'happen': 0.5942634829647806, 'adv': 0.17630790275674324, 'adj': 0.18604526548972322, 'cconj': 0.47303550562393804}, {'jollyin': 0.7514316528045655, 'sit': 0.4944169582740356, 'propn': 0.3626176306334148, 'adv': 0.16766045814367703, 'adj': 0.17692022853057282}, {'world': 1.0}, {'mic': 0.6301512598007165, 'check': 0.6322748355796426, 'propn': 0.4507082449482216}, {'outta': 0.8426688405964873, 'fuck': 0.49817773228653184, 'adv': 0.20427474670555984}, {'inhale': 0.5143264694204217, 'shut': 0.4378189524317717, 'deep': 0.3721972374148186, 'eye': 0.3721972374148186, 'sleep': 0.39127427922057256, 'like': 0.2134140426448156, 'adv': 0.23735450653211745, 'adp': 0.10836514069541645}, {'propn': 0.23257845285124729, 'comin': 0.8104899804268642, 'adj': 0.2269488825342184, 'cconj': 0.2885181708810854, 'adp': 0.39276548306194625}, {'foreigner': 0.4597495249410675, 'slay': 0.4597495249410675, 'regardless': 0.439298184720151, 'pen': 0.3323537644242763, 'fake': 0.33441279362736964, 'burn': 0.34114801174139886, 'adv': 0.09801681182443088, 'adj': 0.10343021210735281, 'cconj': 0.1314899429238509, 'adp': 0.08949992784260329}, {'wally': 0.6769129638833868, 'don': 0.6491324253467545, 'propn': 0.3470099907640254}, {'doom': 1.0}, {'dog': 0.8204971249203675, 'intj': 0.3850518335294944, 'like': 0.3767315095037628, 'adp': 0.19129276839442136}, {'lock': 0.24017298628796802, 'cold': 0.4628619670470014, 'deep': 0.22347171017515824, 'block': 0.23616889076234285, 'knock': 0.2516741123977657, 'die': 0.2272358100293092, 'brother': 0.4628619670470014, 'babies': 0.31935647791047733, 'shit': 0.17263937464738657, 'world': 0.1823044336570079, 'propn': 0.1541115401715031, 'adj': 0.22557189670050534, 'cconj': 0.19117841372170144, 'adp': 0.13012747479147302}, {'fella': 0.48158130333847315, 'glock': 0.4899018250398067, 'box': 0.4513286545943842, 'shot': 0.37975641984826114, 'num': 0.23020231208855785, 'propn': 0.1309446432995018, 'adp': 0.33169798480513407}, {}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'honey': 0.6916261530756259, 'elevator': 0.7051866302988697, 'adp': 0.1560931799584346}, {'deaf': 0.8916037049448339, 'like': 0.3577408498716928, 'adj': 0.20992292598908077, 'adp': 0.1816498907401471}, {'different': 0.5869720599581971, 'thing': 0.42910555652180804, 'cause': 0.41400698436863403, 'rhyme': 0.43040398685627546, 'adv': 0.1450800969615446, 'adj': 0.15309276971960928, 'adp': 0.2649475731309122}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'tough': 0.6035069588050213, 'stuff': 0.5602395780912363, 'write': 0.47410982834758675, 'adv': 0.1430451580870723, 'adj': 0.15094544258771708, 'cconj': 0.19189564853520555, 'adp': 0.1306156677484963}, {'purpose': 0.6394706702466807, 'petty': 0.6394706702466807, 'tell': 0.3689704484948013, 'adv': 0.14755340664189495, 'adj': 0.15570267857181747}, {'madam': 1.0}, {'jake': 0.27179882786778103, 'mandatory': 0.2810832890083844, 'duck': 0.27179882786778103, 'worry': 0.2810832890083844, 'pape': 0.29416900202490126, 'land': 0.23915108838845678, 'seat': 0.25373815765474417, 'live': 0.1896460333888568, 'chase': 0.23915108838845678, 'thug': 0.2337596952292803, 'story': 0.2337596952292803, 'car': 0.2251019205624939, 'hear': 0.19093713912746685, 'love': 0.1582295787981695, 'heat': 0.2198568920048403, 'run': 0.17942604763468323, 'propn': 0.1356420851989008, 'adv': 0.12543137578989935, 'adj': 0.06617943167802937, 'adp': 0.22906476702186146}, {'thirty': 0.4796042943303483, 'lord': 0.38742332296655774, 'cut': 0.34125899380141067, 'head': 0.31746267765187836, 'num': 0.6103173233998567, 'cconj': 0.1435542951940601, 'adp': 0.09771164832587084}, {'wanna': 0.7088372268665832, 'love': 0.6151830050097907, 'propn': 0.26368238546881345, 'adp': 0.22264603241174546}, {'yo': 0.6879762265931975, 'bitch': 0.667830534614782, 'propn': 0.2840617691255195}, {'extra': 0.4914167026552326, 'excellent': 0.5697194396562001, 'mean': 0.4004553825161621, 'work': 0.42579858671495374, 'adj': 0.25634046057090043, 'cconj': 0.16294171617165812}, {'floss': 0.5070765077086703, 'wanna': 0.3493960903345391, 'soul': 0.38672407653078983, 'miss': 0.4154408745675493, 'just': 0.27219078951544906, 'know': 0.2561561542425551, 'propn': 0.12997285001543643, 'adv': 0.36056670838253696, 'adp': 0.10974543986217986}, {}, {'brake': 0.6489846701347887, 'patrol': 0.6201154586031679, 'adv': 0.13836100928586254, 'hit': 0.39896180491338046, 'adp': 0.12633853434751177}, {'fight': 0.5059299550069725, 'angels': 0.5366972394634707, 'devil': 0.46478009948925203, 'want': 0.3489594097508064, 'propn': 0.13756517753837902, 'adv': 0.1272097037886031, 'cconj': 0.17065232360836916, 'adp': 0.2323123778062146}, {'wonder': 0.7443475277358647, 'mean': 0.6435664454806527, 'adp': 0.17823857103585752}, {'exit': 0.5658763675530113, 'wide': 0.547184907226549, 'small': 0.4944966398112148, 'like': 0.22704828560940762, 'adj': 0.2664646236124615, 'adp': 0.1152881933625386}, {'broad': 0.6728461015034994, 'bastard': 0.6513385344738795, 'adj': 0.17549024953853526, 'adp': 0.3037094162482683}, {'feelin': 0.7702424677674613, 'good': 0.6010783026157999, 'adj': 0.21314646366290105}, {'meet': 0.4581612217931825, 'pretend': 0.5744402522676347, 'play': 0.4245699313970478, 'just': 0.30018053667699984, 'adv': 0.39764427085430826, 'cconj': 0.17781379032638175}, {'ask': 0.7683356846762752, 'let': 0.591905555813359, 'propn': 0.24353252072427212}, {'parent': 0.5737864840421175, 'ruin': 0.5737864840421175, 'life': 0.326897366328189, 'probably': 0.4390688300317517, 'adv': 0.12232904828116395, 'cconj': 0.16410490483235676}, {'ham': 0.42694316561139856, 'swallow': 0.39857336072920657, 'touchin': 0.462082364131288, 'rib': 0.42694316561139856, 'eat': 0.3282949636894277, 'adv': 0.3940566562912733}, {'zero': 0.7723256703231426, 'dime': 0.6086439167677499, 'adj': 0.18183960388628448}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'dna': 0.9366264755020397, 'adv': 0.2587050429793856, 'adp': 0.23622562546358392}, {'essence': 0.6899888910474828, 'body': 0.5189081917256472, 'leave': 0.4595514589313306, 'adv': 0.15395126510215829, 'adp': 0.14057412051517376}, {'maybe': 0.6909604986977885, 'day': 0.5837112193203501, 'num': 0.3774167440425884, 'adv': 0.1985230540646221}, {'crowd': 0.5992219883313853, 'live': 0.4861405773778434, 'clap': 0.6130423405762374, 'adj': 0.16964503054238478}, {'lot': 0.7290345254400546, 'thing': 0.6540193282880525, 'adp': 0.2019093334693539}, {'exit': 0.32345200850100336, 'booger': 0.3385101792403312, 'later': 0.28265172485569634, 'effect': 0.32345200850100336, 'pill': 0.26624293186956827, 'calm': 0.28265172485569634, 'mic': 0.21823207854254303, 'ill': 0.24622566978306606, 'similar': 0.2977098955950242, 'shit': 0.17485335773181881, 'make': 0.17968327323178002, 'sugar': 0.28265172485569634, 'propn': 0.07804395816205918, 'adv': 0.14433810907583652, 'adj': 0.2284647035392596, 'cconj': 0.09681507371466941, 'adp': 0.13179627154538065}, {'table': 0.5349882657446646, 'drink': 0.4654842726730575, 'emcee': 0.5157890930748109, 'eat': 0.4321828664456815, 'cconj': 0.1739778527718463, 'adp': 0.11841974316095684}, {'oh': 0.5869035983328454, 'ooh': 0.6842148189925751, 'intj': 0.3731023357147265, 'propn': 0.21951969118767306}, {'corner': 0.8658887642582973, 'know': 0.5002365919554855}, {'maintain': 0.4544439472675643, 'vein': 0.4738925175389723, 'pain': 0.396727571273353, 'brain': 0.3909426060818793, 'money': 0.33743182347889067, 'cause': 0.32053138642786844, 'adp': 0.2051270054679405}, {'wit': 0.5633167266040003, 'insane': 0.5085145719222627, 'story': 0.4684758983469097, 'propn': 0.13591959823286848, 'lose': 0.39418443329574937, 'adj': 0.13262965917646055, 'adp': 0.11476670775616081}, {'let': 0.6547608469360533, 'rock': 0.7558361153845337}, {'amazing': 0.4160222873774655, 'half': 0.7203540445565999, 'nas': 0.3502110033486042, 'man': 0.2544384331776309, 'propn': 0.11486937151063609, 'like': 0.19101676233921222, 'adv': 0.10622236663180486, 'adj': 0.22417790798892603, 'adp': 0.0969924849815149}, {'little': 0.4892201627900206, 'knock': 0.5394488123511941, 'ben': 0.6300439473095689, 'propn': 0.16516455849010225, 'adj': 0.16116674405586598, 'adp': 0.139460334362032}, {'dumb': 0.37239536938230694, 'enlist': 0.41401480241359867, 'ignoramuses': 0.41401480241359867, 'ignore': 0.38253091672249534, 'sound': 0.271595494872476, 'prison': 0.3571122466442841, 'vision': 0.3641140242162085, 'propn': 0.09545164635979848, 'adj': 0.09314123562109458, 'cconj': 0.11840965522687963, 'adp': 0.08059670088084701}, {'yawk': 0.7990413777434942, 'hear': 0.6012760403124168}, {'moms': 0.4359537755046086, 'drastic': 0.41656095724214126, 'feel': 0.25283531399086095, 'steel': 0.3282776972598872, 'real': 0.2819995322594253, 'let': 0.2442887404021637, 'll': 0.31515177405024003, 'propn': 0.1005097048851751, 'adv': 0.2788309515921489, 'think': 0.26659473751920826, 'adj': 0.19615372729410804, 'adp': 0.16973516810212863}, {'flee': 0.6969580974034119, 'slap': 0.6184690685147458, 'num': 0.29563649697439803, 'adv': 0.1555062439564185, 'adp': 0.14199398403310115}, {'let': 1.0}, {'provide': 0.48149062679047416, 'daughter': 0.42537519302380994, 'way': 0.3194003077354206, 'em': 0.48149062679047416, 'fuck': 0.27832251984338546, 'got': 0.40626373260875026, 'adp': 0.10420794460664727}, {'strivin': 0.6081495574679296, 'pushin': 0.5920360138034252, 'desire': 0.5288170516457578}, {}, {'limo': 0.552695316015259, 'tint': 0.5281094070949965, 'plate': 0.46863553820060433, 'gold': 0.4101165915974767, 'propn': 0.12742461752926149, 'adp': 0.10759378361217724}, {'lil': 0.7966782645839748, 'bitch': 0.6044036256835876}, {'tippin': 0.36375998266448306, 'chippin': 0.36375998266448306, 'chippendales': 0.36375998266448306, 'jerk': 0.33609774052618085, 'shut': 0.28610225104237114, 'nail': 0.3475786083277077, 'scale': 0.3271924876142843, 'doom': 0.23297510223972406, 'work': 0.27186800333767996, 'propn': 0.08386533288838807, 'adp': 0.2124406253905607}, {'adj': 0.259075345600382, 'cconj': 0.3293602682610128, 'killer': 0.45755435105278547, 'young': 0.41624523737047503, 'strip': 0.49665960570821055, 'hot': 0.4272592951421732, 'adp': 0.11209115917196945}, {'sound': 0.44816667097152585, 'clap': 0.5554031233454182, 'way': 0.4076324596256514, 'man': 0.34888225879056256, 'intj': 0.26770402599261317, 'like': 0.26191939118426916, 'adv': 0.1456505557818434, 'adj': 0.15369473458342978, 'adp': 0.13299467703621912}, {'bust': 0.5190861828674178, 'cop': 0.5323252388108726, 'shot': 0.4829896934145258, 'run': 0.44059696857859704, 'adp': 0.1406223389642422}, {'dime': 0.5903667052495607, 'sell': 0.5403134467466448, 'rhyme': 0.4958709346269276, 'like': 0.30057697606831346, 'adp': 0.15262381939718564}, {'way': 1.0}, {'eye': 0.6028753860467733, 'make': 0.47860642947442816, 'adv': 0.1922303222202725, 'think': 0.551383467325828, 'cconj': 0.25787774185363704}, {'life': 0.7794067147393109, 'num': 0.554488488293124, 'adv': 0.2916636579515533}, {'office': 0.47043134568463435, 'feelin': 0.4002520702295139, 'clinton': 0.47043134568463435, 'propn': 0.4540311798449557, 'adv': 0.20992657056235492, 'adp': 0.383371231278773}, {'new': 0.5182706236286505, 'teach': 0.6334154335502552, 'adv': 0.5420583036010642, 'adj': 0.19066526878550427}, {'sincerely': 0.7281263406692661, 'rhyme': 0.4819659467404859, 'adv': 0.48738163507269217}, {'reality': 0.6353266683598937, 'make': 0.39772562020540464, 'lose': 0.5009940779218826, 'adv': 0.319489749484979, 'adp': 0.2917286228058055}, {}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'cold': 0.7445778447713034, 'nigga': 0.5783849499545337, 'adv': 0.22924797171301237, 'adj': 0.2419091776003597}, {'ready': 0.5855103521504312, 'moment': 0.5205342833333679, 'snap': 0.5650430550182972, 'adj': 0.15996867303429155, 'cconj': 0.2033668041311872}, {'pop': 0.5901035198590154, 'duke': 0.6593709822385883, 'intj': 0.3137806137956726, 'like': 0.30700034123900927, 'adp': 0.15588540828718644}, {'crazy': 0.3689918036920775, 'yo': 0.2900013976472616, 'come': 0.27373673597088527, 'real': 0.33595401629508825, 'fiend': 0.39108650277158774, 'fast': 0.40455582507961996, 'propn': 0.11974005333365242, 'adv': 0.44290559540639257, 'adj': 0.233683481556571, 'adp': 0.10110515250424883}, {'daylight': 0.5486539920198336, 'broad': 0.47324650852658107, 'kid': 0.3625950657582199, 'stick': 0.41314212472237544, 'run': 0.3346471471483478, 'adj': 0.12343111996783758, 'adp': 0.21361410956379234}, {'thuggin': 0.6128173895161224, 'gang': 0.4982032256197668, 'people': 0.384147009463771, 'run': 0.37378310211411847, 'intj': 0.24013370406988374, 'adv': 0.13065028562811515, 'adp': 0.11929781145378231}, {'cash': 1.0}, {'album': 0.6157582417885019, 'blow': 0.4799369026453771, 'num': 0.5886813709944714, 'adv': 0.1548246407790321, 'adp': 0.14137160676885546}, {'fun': 0.4047509622554779, 'dedicate': 0.4380636501244691, 'poem': 0.4185769769228807, 'mean': 0.30791462317466556, 'sex': 0.3778557997374793, 'write': 0.3095439334292844, 'song': 0.31123042399949696, 'adj': 0.09855152379918808, 'adp': 0.17055663116403677}, {'tri': 0.18514124571430288, 'invasion': 0.1769054860242567, 'patient': 0.16652965590539884, 'tomb': 0.16652965590539884, 'glock': 0.15969527132391365, 'balloon': 0.1769054860242567, 'goon': 0.18514124571430288, '300': 0.18514124571430288, 'lame': 0.1769054860242567, 'fair': 0.17106212153131176, 'grant': 0.17106212153131176, 'stock': 0.1545906021512194, 'room': 0.14712141957391292, 'taste': 0.14421477203236155, 'stash': 0.3256527236825311, 'gin': 0.1769054860242567, 'lock': 0.13304229539092183, 'chain': 0.15698299734832066, 'fall': 0.13082425218828217, 'split': 0.17106212153131176, 'hustle': 0.15969527132391365, 'cop': 0.13643547835294242, 'clock': 0.14561614714092255, 'lab': 0.15698299734832066, 'block': 0.13082425218828217, 'spot': 0.14290387316532954, 'yo': 0.10337877459194922, 'color': 0.15245053172240774, 'money': 0.11857626650720382, 'ear': 0.15698299734832066, 'know': 0.0841245760266436, 'num': 0.1500799499384898, 'propn': 0.25610731707432893, 'like': 0.07098032294650253, 'adv': 0.03947139400404098, 'hit': 0.113815146879739, 'adj': 0.08330274323395762, 'cconj': 0.05295103205369245, 'adp': 0.21624985649623646}, {'shelf': 0.6795369755069753, 'lp': 0.6795369755069753, 'adv': 0.1610660368852693, 'adj': 0.16996160197675195, 'adp': 0.14707067502814467}, {'world': 1.0}, {'biggie': 0.9702504739589874, 'propn': 0.24210332046950583}, {'rhymin': 0.4103851871418221, 'start': 0.29739759188580356, 'ya': 0.5432894655816933, 'bish': 0.6630165525132858, 'adv': 0.09156570425902943}, {'conversate': 0.32175944260384465, 'mentally': 0.2972911447267738, 'voice': 0.242288184721773, 'chinky': 0.32175944260384465, 'fabric': 0.32175944260384465, 'designer': 0.3074464058892832, 'laugh': 0.2530682461242782, 'shoe': 0.26494581432900105, 'sweet': 0.2615813371507408, 'eye': 0.21513756214002222, 'make': 0.17079187978936738, 'right': 0.1877775659195237, 'fuck': 0.16729394199086378, 'propn': 0.07418205423888796, 'adv': 0.06859786259154363, 'adj': 0.2895458991530241, 'cconj': 0.09202430551420981, 'adp': 0.06263725209811086}, {'holdin': 0.6254007100219238, 'breath': 0.5996314306942202, 'stop': 0.4993156308665655}, {'tangle': 0.4398910097630018, 'wax': 0.4203230489218484, 'rope': 0.3868713989151734, 'lay': 0.3495568454476222, 'low': 0.3220220484321479, 'god': 0.26830802949497734, 'lie': 0.3076166187302549, 'propn': 0.20283487863705216, 'adj': 0.1979252526676868, 'adp': 0.08563404962179173}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'match': 0.34345878939761865, 'packin': 0.36485840157025595, 'mac': 0.31883510944902743, 'ac': 0.36485840157025595, 'really': 0.26839803291979636, 'crap': 0.31883510944902743, 'wanna': 0.23665690755192112, 'rap': 0.23114488368943645, 'intj': 0.1496264152038804, 'num': 0.1547660614515742, 'propn': 0.26410403780630576, 'adv': 0.1628154111861686, 'adp': 0.2973360851386881}, {'need': 0.8831739040237379, 'adv': 0.3226362095811918, 'adj': 0.3404551828340267}, {'queens': 0.8652737765376466, 'know': 0.4470454831458053, 'propn': 0.22682951226683945}, {'door': 0.5858913613714498, 'stand': 0.5373873949681091, 'knock': 0.5663846354894267, 'adv': 0.1603576973589573, 'adp': 0.1464238845917597}, {}, {'fed': 0.5780483228218556, 'make': 0.355722378899969, 'just': 0.32356654246812855, 'baby': 0.4176785249041476, 'propn': 0.30901020397559376, 'like': 0.25692718571082324, 'adv': 0.2857488880456273, 'adp': 0.13045978738319497}, {'lifer': 0.5548981091455019, 'blower': 0.530214211930964, 'low': 0.40621295232751364, 'num': 0.4498137631094374, 'propn': 0.12793247432483007, 'adj': 0.12483586390708105, 'adp': 0.10802260368813965}, {'yo': 0.8490312880429511, 'fuck': 0.39528871380647296, 'propn': 0.3505605577662034}, {}, {'reload': 0.6654909591764376, 'gold': 0.5614901959539094, 'need': 0.44160402842967483, 'cconj': 0.21641724787259545}, {}, {'awaken': 0.7508412962102576, 'god': 0.4579696883511369, 'black': 0.44493599431956476, 'adj': 0.16891735676277508}, {'shit': 0.4231912912083912, 'snitch': 0.6323758792905229, 'man': 0.4183892336554763, 'rap': 0.4959438753509271}, {'code': 0.5869826155473659, 'pride': 0.6674268922192259, 'word': 0.4394442913147349, 'adp': 0.12992870128901318}, {'clash': 0.3782888679466206, 'brooklyn': 0.34818253224975404, 'depict': 0.39589994536341017, 'american': 0.34818253224975404, 'revolution': 0.3782888679466206, 'bloody': 0.35610153437161207, 'battle': 0.31459960067990295, 'propn': 0.1825504854338056, 'adj': 0.17813184397515486, 'adp': 0.1541405248758342}, {'prove': 0.3454462310047726, 'black': 0.24516018546794055, 'movement': 0.36384975686467264, 'eye': 0.2766212207261182, 'rapid': 0.7442501831614469, 'propn': 0.09538236928694324, 'adj': 0.18614727080485724, 'cconj': 0.1183237156477864}, {'swipe': 0.3019571181022038, 'piss': 0.26556253731016616, 'match': 0.2716024448346962, 'wally': 0.2716024448346962, 'forever': 0.24864002094423943, 'window': 0.24864002094423943, 'hat': 0.27899469421174705, 'dirt': 0.2716024448346962, 'rob': 0.2604558682614136, 'leather': 0.27899469421174705, 'bend': 0.2560322703212902, 'shit': 0.15597231406654005, 'high': 0.2003193505533455, 'niggas': 0.1707441903114116, 'propn': 0.13923320559984292, 'like': 0.11576574239952762, 'adv': 0.06437608397282195, 'adj': 0.13586306055080447, 'adp': 0.23512925030360274}, {'adv': 1.0}, {'america': 0.6666985144640608, 'battle': 0.6735903524548517, 'propn': 0.19542975508934982, 'adj': 0.19069937041773588, 'adp': 0.16501542000418953}, {'tryin': 0.7043272236366759, 'save': 0.7098754553048386}, {}, {'loss': 0.2872720010568036, 'leg': 0.24154658837377896, 'kunta': 0.5186496041873964, 'talkin': 0.21479893662421, 'cut': 0.20440633077492273, 'black': 0.17815768874062424, 'wanna': 0.18633229522402653, 'game': 0.19651559950935646, 'king': 0.41439072862047605, 'world': 0.1639890313195923, 'run': 0.183376535572669, 'man': 0.15353281134632382, 'everybody': 0.19651559950935646, 'propn': 0.27725713172114874, 'adv': 0.06409652179179792, 'adj': 0.13527305613947344, 'adp': 0.05852704213235689}, {'grip': 0.7967810281255066, 'good': 0.5471008105685625, 'adj': 0.19400567701797886, 'adp': 0.16787642353611823}, {'plug': 0.7104149898939315, 'cousin': 0.5931875452238626, 'tell': 0.3787335188827273}, {'carry': 0.4543896159573178, 'flip': 0.4067125586213135, 'lace': 0.4474647925484685, 'weight': 0.47130332121647056, 'try': 0.33998363145707633, 'let': 0.3002907603490411}, {'atlantic': 0.5320327614207656, 'boat': 0.514459189130626, 'throw': 0.3913752458478727, 'nigga': 0.2994959965191088, 'propn': 0.38511378642162525, 'adv': 0.11870787741550036, 'adp': 0.21678620769805}, {'callin': 0.43830505238545625, 'corporate': 0.43830505238545625, 'correct': 0.43830505238545625, 'sure': 0.3296286144727226, 'make': 0.24348615688500597, 'color': 0.3777149018635774, 'adj': 0.3095891545613707, 'cconj': 0.13119268033878465}, {'adv': 0.5976534819625343, 'cconj': 0.8017545232164636}, {'veteran': 0.30752033837355214, 'suckin': 0.3218368169834862, 'biggie': 0.2973626351474123, 'dick': 0.22865492030657747, 'lip': 0.27288845331133843, 'live': 0.2074830295485961, 'great': 0.24841427147526454, 'better': 0.21190238752298224, 'late': 0.2616442403355675, 'say': 0.15853466587644832, 'let': 0.18034276809493166, 'nerve': 0.28948370841499815, 'man': 0.1643545556927712, 'propn': 0.29679957200739826, 'adv': 0.27445743403421924, 'adj': 0.14480776352656027, 'adp': 0.12530462930138922}, {}, {'care': 0.38881047660504675, 'old': 0.3014490901673233, 'shit': 0.7317044481307001, 'business': 0.3644626385120843, 'man': 0.24113387151041057, 'propn': 0.10886286291108362, 'adj': 0.10622783316452758, 'adp': 0.09192075709207059}, {'adv': 1.0}, {'pray': 0.6232775409364926, 'dot': 0.5950019167046832, 'say': 0.3559435439107911, 'propn': 0.3331886149552029, 'adp': 0.14066757442414474}, {'intj': 0.8672352009728135, 'adj': 0.4978986906928394}, {'marry': 0.407478989941532, 'herb': 0.34550525438398394, 'bird': 0.33552971107343665, 'dead': 0.29456729998411535, 'ill': 0.2963922309398225, 'eat': 0.2895009863848686, 'trust': 0.3238008214509442, 'man': 0.4161800316923717, 'like': 0.15622121471839154, 'adv': 0.086872936920659, 'adj': 0.09167086875042432, 'adp': 0.15864873466402715}, {'imagine': 0.6708702664632394, 'rule': 0.5830599954375071, 'world': 0.4315674971057889, 'adp': 0.1540247471603219}, {'read': 0.4135826506262315, 'understand': 0.42393785226107655, 'people': 0.34429265137614506, 'let': 0.30776865323776503, 'label': 0.40474874742017725, 'got': 0.41684058569192317, 'know': 0.24956350932384255, 'cconj': 0.15708424346119107, 'adp': 0.10692094119417528}, {'kinda': 0.36319840061405256, 'slug': 0.33557886415916766, 'mask': 0.2886135073746354, 'bust': 0.2609939709197505, 'die': 0.24693524992692567, 'mind': 0.23825971626280526, 'make': 0.19278793211281056, 'murder': 0.27349214825367363, 'hate': 0.2714482864968046, 'love': 0.19535957070169369, 'mom': 0.28033979124939773, 'want': 0.2124114300001482, 'num': 0.14720868267790196, 'adv': 0.23229746213974975, 'cconj': 0.2077519796149757, 'adp': 0.14140843604644682}, {'rabbit': 0.6251628348921039, 'choke': 0.5392399092624712, 'mad': 0.45473119328415385, 'propn': 0.14413209741664587, 'adv': 0.2665645731992948, 'adj': 0.1406433745044386}, {'personal': 0.7954998488034318, 'truth': 0.5535237053321463, 'adv': 0.1695974759224036, 'adj': 0.17896422645276872}, {'askin': 0.7240987640562384, 'woman': 0.64677783881522, 'adj': 0.18110712200254822, 'adp': 0.15671508373381088}, {'glass': 0.6096065852893102, 'jaw': 0.6385762511860879, 'break': 0.46968093701259517}, {'greet': 0.4741729697165623, 'teach': 0.3543887856197844, 'blunt': 0.39592844171217745, 'street': 0.3145679159364042, 'ya': 0.5998111303461037, 'adp': 0.18461551028240936}, {'learn': 0.587683923991071, 'need': 0.44030097670162016, 'shit': 0.38970815001307774, 'kick': 0.5360213292482566, 'adp': 0.1468718754642049}, {'steal': 0.4205051646804219, 'tell': 0.8370829334496478, 'lose': 0.3499536669395304}, {'bunch': 0.5839163986933512, 'shit': 0.32643915391623857, 'money': 0.4047572068531597, 'tell': 0.33691599245082554, 'adj': 0.4265278373290773, 'cconj': 0.18074706233681775, 'adp': 0.24605454496662332}, {'excuse': 0.6677450709141279, 'mic': 0.45052555226806046, 'write': 0.49380746475422527, 'adv': 0.297976387060081, 'adp': 0.13604230052109084}, {'freaknik': 0.898697931465512, 'num': 0.38121073460004107, 'propn': 0.21684188664855975}, {'collection': 0.2190624840669996, 'receive': 0.20240380865885668, 'recipe': 0.2190624840669996, 'expect': 0.19704091302136628, 'technically': 0.2190624840669996, 'bowel': 0.2190624840669996, 'removal': 0.2190624840669996, 'lecture': 0.20931778364155032, 'hysterectomy': 0.2190624840669996, 'rectal': 0.2190624840669996, 'riddle': 0.20931778364155032, 'ability': 0.20931778364155032, 'wreck': 0.18895434507313258, 'section': 0.20240380865885668, 'mc': 0.152427782434428, 'foul': 0.18895434507313258, 'titty': 0.16762944275990757, 'middle': 0.19704091302136628, 'little': 0.1495970569916723, 'fee': 0.20931778364155032, 'check': 0.14170199115944723, 'propn': 0.15151541421680892, 'adv': 0.18681308072120206, 'adj': 0.24641329640000945, 'adp': 0.21322563105998943}, {'bitch': 0.9202149123408855, 'propn': 0.3914134835509076}, {'cake': 0.5862760683187315, 'bake': 0.6315542508022913, 'come': 0.37006963459552966, 'know': 0.31903767108453424, 'adp': 0.13668588072501983}, {'face': 1.0}, {'bucket': 0.4904192750939881, 'break': 0.35377328904164346, 'life': 0.31769260161346724, 'kick': 0.3961784241665804, 'short': 0.4904192750939881, 'propn': 0.12856227472991763, 'adv': 0.23776902235624517, 'adj': 0.12545041996935583, 'adp': 0.21710877907565354}, {'climb': 0.5724117358232415, 'new': 0.35004159853433414, 'pull': 0.4218253403803729, 'face': 0.3654351429547317, 'baby': 0.3567593839518122, 'propn': 0.13197026353037425, 'adv': 0.12203595730408721, 'adj': 0.2575518365419734, 'adp': 0.1114319999765228}, {'laugh': 0.4863810753625574, 'face': 0.39479541018603614, 'send': 0.4527003563425071, 'man': 0.3158030620024703, 'num': 0.5012908861734837, 'propn': 0.1425731906941622, 'cconj': 0.17686486298053153}, {'problem': 0.7677675871361114, 'feel': 0.5162239955556063, 'adv': 0.37953355392613064}, {'mountain': 0.5739828095072907, 'herb': 0.5410780522722708, 'flip': 0.4843051674714399, 'propn': 0.14712214128916215, 'like': 0.2446500292279023, 'adp': 0.2484516436675393}, {'bob': 0.27010623424765773, 'com': 0.30712351561697193, 'hairline': 0.30712351561697193, 'www': 0.30712351561697193, 'kool': 0.28376821140474523, 'mf': 0.24675093003543105, 'doom': 0.19670149510943927, 'dot': 0.5057883572039232, 'listen': 0.22789491022353714, 'love': 0.16519763870624574, 'propn': 0.3540386120320799, 'adp': 0.0597880606619639}, {'daylight': 0.32316704379618705, 'mac': 0.2698404005176387, 'spray': 0.29068021226556123, 'buck': 0.2627256771554605, 'grimy': 0.3087913918328471, 'broad': 0.2787506832573518, 'broke': 0.27401636509245025, 'shit': 0.16692804583554646, 'real': 0.20904270203119865, 'right': 0.1885990365298172, 'niggas': 0.18273752105964922, 'propn': 0.14901315701634907, 'adv': 0.06889795769487485, 'adj': 0.43621886361140294, 'adp': 0.2516450852630999}, {'yo': 0.8185512783769435, 'intj': 0.5744334640909001}, {'super': 0.9501925120844457, 'propn': 0.31166358462074223}, {'attention': 0.8582486625696768, 'love': 0.5132340920061341}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'hear': 0.7265652930702493, 'know': 0.5086286874372286, 'adj': 0.2518298870094099, 'cconj': 0.32014917880104715, 'adp': 0.2179126993625381}, {'oh': 0.5460431198710513, 'intj': 0.6942535844167921, 'yeah': 0.46888044506667687}, {'thank': 0.7451162771100146, 'save': 0.6669345796895763}, {'grave': 0.36266690943068713, 'rob': 0.36893288751030695, 'rich': 0.33316936579557016, 'earth': 0.32461390287513564, 'die': 0.2908021802362411, 'try': 0.2713548209454277, 'man': 0.2184260933017442, 'work': 0.3196698468850528, 'just': 0.20651273276210527, 'propn': 0.09861115612820383, 'adv': 0.18237603710169745, 'cconj': 0.244658179171699, 'adp': 0.24979350772078587}, {'latinos': 0.4564782603565139, 'people': 0.2861452067142526, 'yo': 0.2548873591157626, 'deal': 0.3523391622922308, 'beat': 0.3145900291368198, 'just': 0.2203983998221227, 'know': 0.2074148306052201, 'propn': 0.4209666052950269, 'adv': 0.097319390929318, 'cconj': 0.13055435001906887, 'adp': 0.3554524291796668}, {'damn': 0.887078563063555, 'intj': 0.46161848203153477}, {'somebody': 0.5843421381565569, 'answer': 0.3270995035947926, 'gettin': 0.28602094435504005, 'mean': 0.25561396605357306, 'son': 0.24218978768831145, 'feel': 0.21090592050284884, 'tell': 0.19387111512176544, 'adv': 0.1550603502387674, 'kill': 0.4495322684524494, 'adj': 0.08181211271880322, 'cconj': 0.1040070382985355, 'adp': 0.14158683494497606}, {'needle': 0.44284122093869305, 'spell': 0.38197673704943863, 'graveyard': 0.44284122093869305, 'lay': 0.3519012136867789, 'hospital': 0.44284122093869305, 'god': 0.27010748738244417, 'propn': 0.10209761430789153, 'like': 0.16977855342270495, 'adp': 0.1724167407234356}, {'army': 0.6614072373788843, 'strike': 0.5754792890708867, 'adv': 0.4810031748266315}, {'option': 0.40268330934882857, 'invisible': 0.3720611306070443, 'chip': 0.3273701547197215, 'stock': 0.3362354780983956, 'people': 0.2524236284637243, 'watch': 0.2815972031520579, 'world': 0.2196459751417356, 'ya': 0.2546896874956916, 'man': 0.20564097362520636, 'blue': 0.30561329935661136, 'adv': 0.085850516457505, 'adj': 0.27177594215053674, 'adp': 0.078390787102522}, {'slug': 0.7827841654198131, 'throw': 0.5955036894271761, 'adv': 0.180621998235619}, {'domain': 0.2484781044670446, 'foolishly': 0.2484781044670446, 'traveler': 0.2484781044670446, 'prey': 0.2295825089661686, 'bandit': 0.23742488967023678, 'threaten': 0.2484781044670446, 'search': 0.21432705693332688, 'continue': 0.23742488967023678, 'seldom': 0.2484781044670446, 'stranger': 0.2484781044670446, 'village': 0.2484781044670446, 'remote': 0.23742488967023678, 'wander': 0.23742488967023678, 'unless': 0.21432705693332688, 'travel': 0.20200567943920952, 'face': 0.15863167357399308, 'adv': 0.2648728306044417, 'adj': 0.0559003145296425, 'adp': 0.2418574812352224}, {'punct': 1.0}, {'bang': 1.0}, {'mommy': 0.41368939469348565, 'picture': 0.36399814440640793, 'shoot': 0.3163798344982641, 'start': 0.3100327737009916, 'daddy': 0.36399814440640793, 'forget': 0.34876290095002876, 'baby': 0.27905550295476933, 'adv': 0.1909118973512894, 'adj': 0.10072791426959721, 'adp': 0.34864633360735403}, {'talkin': 0.2818923564503917, 'justice': 0.6339895165157244, 'poetic': 0.669091918323195, 'adj': 0.26628931100889147}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'ho': 1.0}, {'bloom': 0.46842550982942266, 'flower': 0.46842550982942266, 'room': 0.3722316208084938, 'dark': 0.3684231339198198, 'trust': 0.3722316208084938, 'tell': 0.2497250820940881, 'adj': 0.1053820552492414, 'adp': 0.27356667307970767}, {'catch': 0.7194137345195437, 'just': 0.5314044808371822, 'adv': 0.23464762200598324, 'cconj': 0.31478071823076487, 'adp': 0.21425860367292035}, {'place': 0.22312768439511418, 'um': 0.8893995165902715, 'intj': 0.3874632574838661, 'adv': 0.07026944351237337, 'adp': 0.06416358588731133}, {'hate': 0.8168474168315827, 'just': 0.5276987928117417, 'adv': 0.2330113338028883}, {'ha': 0.9104540772250306, 'intj': 0.41361017064902783}, {'shooter': 0.5832430474471899, 'respect': 0.5197860982359334, 'gon': 0.46840384720505324, 'everybody': 0.41261094945321675}, {'sure': 0.4492636001404009, 'oh': 0.3853678935375868, 'intj': 0.7349503134591249, 'yeah': 0.33091062383311776}, {'punct': 1.0}, {'hell': 0.7050772608645277, 'high': 0.6470458071949166, 'adj': 0.21942369381498314, 'adp': 0.18987106729526254}, {'shadow': 0.3748580972866766, 'shady': 0.35818303822455366, 'lick': 0.3047490433738701, 'live': 0.24166499782357975, 'barrel': 0.31784569378537336, 'gon': 0.2781560124306947, 'let': 0.2100534908998532, 'bitch': 0.2031832653918569, 'long': 0.25165634306200807, 'gun': 0.2548625703860983, 'know': 0.17032821823538052, 'propn': 0.2592720525598739, 'adv': 0.07991828939316939, 'adp': 0.29189609418453366}, {'tongue': 0.7667733244090553, 'track': 0.6419179612494774}, {'guess': 1.0}, {'die': 0.618108054266221, 'listen': 0.6746007127116598, 'adv': 0.1938226483483318, 'adp': 0.35396199322439426}, {'cock': 0.5187958918543851, 'act': 0.49161456183774555, 'stick': 0.49161456183774555, 'man': 0.33340324732088583, 'propn': 0.1505190116173153, 'like': 0.25029869922266995, 'cconj': 0.18672181099438315, 'adp': 0.12709404414538072}, {}, {'duke': 0.6623769313174149, 'girl': 0.5357273042488057, 'want': 0.470449912637274, 'cconj': 0.2300650691443908}, {'sad': 0.5706187330034768, 'note': 0.5063576097222011, 'gun': 0.4060196644838096, 'end': 0.41975995297405533, 'adv': 0.1273172321709605, 'adj': 0.134348874272212, 'cconj': 0.1707965733609952, 'adp': 0.11625437392140045}, {'page': 0.44710754856194024, 'commit': 0.47496512109768757, 'chill': 0.40930717802053806, 'really': 0.3493950081990509, 'sit': 0.3125112038904929, 'hard': 0.33104569426127856, 'adv': 0.21194973490480973, 'adj': 0.11182778560768065, 'cconj': 0.14216570620190433}, {'sunlight': 0.8846462271121684, 'come': 0.4662628581135383}, {'holy': 0.45723435557300873, 'sin': 0.4426188312669941, 'wash': 0.47680234530712645, 'feel': 0.3074307249927529, 'need': 0.3093587356332586, 'water': 0.3906376657544853, 'adj': 0.11925486523262754, 'adp': 0.10319327028084846}, {'grip': 0.7967810281255066, 'good': 0.5471008105685625, 'adj': 0.19400567701797886, 'adp': 0.16787642353611823}, {'presence': 0.35059070638780987, 'breathe': 0.2886862913747107, 'volume': 0.6478598520008428, 'scripture': 0.3153470717620991, 'speak': 0.26202551098732224, 'word': 0.23083439745415368, 'say': 0.17269863969426266, 'beat': 0.2416157572356238, 'adv': 0.07474457597278243, 'cconj': 0.20054029192732656, 'adp': 0.13649972962133425}, {'desire': 1.0}, {'hate': 0.8121612623466407, 'know': 0.4937632931190089, 'cconj': 0.3107923652726732}, {'hurt': 0.40777326944998726, 'war': 0.3617530250697918, 'bring': 0.32580274018348554, 'mic': 0.30477317163475387, 'shotty': 0.45171862523989426, 'boy': 0.32894705424340104, 'heat': 0.3533239324056007, 'like': 0.18124442955986936, 'adp': 0.18406078499907805}, {'academy': 0.45594917816941116, 'scene': 0.4009940928041667, 'escape': 0.3807118059059144, 'screen': 0.4212763797024191, 'dream': 0.32048634791529046, 'win': 0.38660358123542704, 'propn': 0.10511967074353547, 'adv': 0.19441318532678725, 'adp': 0.08876011030416489}, {'run': 0.6735190367191181, 'money': 0.7072221958208994, 'adp': 0.21496249187990107}, {'cake': 0.385361813580756, 'bake': 0.41512336016331086, 'woman': 0.3707955365426994, 'suppose': 0.3980866787584917, 'batter': 0.4615181338596096, 'fuck': 0.239959353760761, 'adv': 0.2951816171156139, 'cconj': 0.13199577114799868, 'adp': 0.08984422481737794}, {}, {'just': 0.6932706666209794, 'know': 0.6524304078287819, 'adv': 0.3061214558688631}, {'suspect': 0.9040204050172914, 'intj': 0.3707337747787921, 'adj': 0.2128463660733729}, {'age': 0.6047720290686144, 'daddy': 0.5321284499762892, 'leave': 0.4165538899533018, 'num': 0.26529589085624306, 'propn': 0.15090671975366754, 'adv': 0.13954693668183663, 'adp': 0.25484282810691644}, {'tank': 0.3842153036958649, 'motorola': 0.36712400187239014, 'shoulder': 0.3455915081007675, 'chrome': 0.36712400187239014, 'god': 0.2343490745400596, 'player': 0.35499753024473907, 'pack': 0.2871559611985159, 'play': 0.2623793796955378, 'propn': 0.35432533407598454, 'adp': 0.0747956008463776}, {'century': 0.27986633023021007, 'bless': 0.27364265004629695, 'white': 0.2277732780283175, 'mentally': 0.28748349916460947, 'mean': 0.21870330541260366, 'cream': 0.25295175942547987, 'knee': 0.2683806034279596, 'style': 0.22929067157583288, 'kid': 0.2056295837261859, 'snatch': 0.2562052423805631, 'bm': 0.297303737895944, 'just': 0.15022789702558675, 'propn': 0.35867392800102044, 'adv': 0.13266963327249076, 'adj': 0.2099953271407801, 'cconj': 0.08898842036392328, 'adp': 0.24228338758990248}, {'truth': 0.6076065298329758, 'meet': 0.6435028067432811, 'tell': 0.46553028109656674}, {'know': 1.0}, {'cut': 0.39438741903206465, 'far': 0.4776498569740822, 'crap': 0.4843550112473231, 'touch': 0.46095296765025673, 'rap': 0.3511413248453955, 'propn': 0.13373695933632995, 'adv': 0.12366966180824848, 'adp': 0.11292374850942218}, {'late': 0.3372485734694804, 'pharoahe': 0.3332885504966377, 'talk': 0.27737007816277504, 'time': 0.2277420507357167, 'intj': 0.1625536427203282, 'propn': 0.6694840912246944, 'adj': 0.09332560046803291, 'adp': 0.4037811746478466}, {'profit': 0.4243276156876349, 'knot': 0.4592515435686837, 'fat': 0.35447975992553726, 'killin': 0.4130846221189052, 'livin': 0.3407784945459329, 'make': 0.24377352778683242, 'rap': 0.27800248495906205, 'adj': 0.10331818084646618, 'cconj': 0.13134751854126936, 'adp': 0.17880597056090533}, {'difference': 0.8049211751417316, 'inside': 0.5702712275368581, 'adp': 0.16398972178785753}, {'bear': 0.2082855292031124, 'plane': 0.23113371760180615, 'mental': 0.23437832704037215, 'pete': 0.2682104298815694, 'insane': 0.24211763204430964, 'snort': 0.2593511721059651, 'mc': 0.19531413118076274, 'spark': 0.24211763204430964, 'perform': 0.2468647495731686, 'live': 0.18096075479977214, 'building': 0.2230541294988182, 'cocaine': 0.22551906926476784, 'skin': 0.23437832704037215, 'brand': 0.23437832704037215, 'act': 0.21136763004754, 'brain': 0.2082855292031124, 'come': 0.1479444693925107, 'rock': 0.18157058278924645, 'propn': 0.06471502114119715, 'adv': 0.17953043387920195, 'adj': 0.12629718317514596, 'cconj': 0.08028026371011625, 'adp': 0.2185742163840355}, {}, {'carry': 0.43849306111841385, 'mac': 0.4318104986046261, 'depend': 0.4318104986046261, 'aim': 0.43849306111841385, 'practice': 0.4778196019868355, 'propn': 0.119228709834488}, {'light': 0.6070004985948995, 'right': 0.516398923795116, 'tell': 0.47173114514111747, 'adv': 0.37729600171833166}, {'terrible': 0.9756158595280678, 'adj': 0.2194850670029951}, {'gza': 0.6614296985007121, 'goddamn': 0.6614296985007121, 'propn': 0.35358380602413664}, {'ooh': 0.9873762815064246, 'propn': 0.1583921674785265}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {'prolly': 0.8808866893354258, 'adv': 0.3930892859128893, 'cconj': 0.263665420281401}, {'break': 0.6680720316226543, 'heart': 0.7440966070098554}, {'greco': 0.4977808111656163, 'question': 0.5387502425837104, 'ask': 0.3918763672739758, 'mr': 0.3943919126776271, 'let': 0.3018912222971296, 'propn': 0.24841912574895358}, {'hustlin': 0.47417088292696585, 'body': 0.3874359284256626, 'yesterday': 0.5151710666146383, 'johnny': 0.45715426921926117, 'catch': 0.3524156570539981, 'propn': 0.12430279643495093, 'adp': 0.1049578051818708}, {'takin': 0.9730407526422572, 'adv': 0.23063324499601015}, {'kiss': 0.717229761196377, 'listen': 0.6697413793982273, 'adv': 0.19242649083727487}, {'doom': 0.9408947531108145, 'propn': 0.3386990752401596}, {'biological': 0.5653437530715022, 'shocks': 0.5653437530715022, 'clock': 0.48124727084828384, 'propn': 0.2821366306925167, 'adj': 0.1376537513958545, 'cconj': 0.1749980353468515}, {'chart': 0.6211824621644573, 'position': 0.5847489753061215, 'drop': 0.44199792310306607, 'adv': 0.2771981611597011}, {'thinkin': 0.800262138283813, 'time': 0.552876467607989, 'propn': 0.23218122575852596}, {'pickin': 0.47489175629757413, 'size': 0.4387784635269845, 'cotton': 0.427152579985239, 'tryna': 0.3665518779858052, 'brother': 0.3288353673855312, 'nigga': 0.25543793552839195, 'fuck': 0.24691276590692504, 'propn': 0.10948690654788718, 'adv': 0.10124507669683712, 'adp': 0.09244768208760672}, {'lime': 0.5056332010347918, 'dr': 0.44468975150839685, 'fine': 0.4548036968088966, 'propn': 0.58287193128823}, {'domino': 0.7277509516683557, 'somebody': 0.5846938284670163, 'say': 0.35848525673782694}, {'universe': 0.4852830926853534, 'moon': 0.4852830926853534, 'sun': 0.4306321763349044, 'say': 0.25017595051195685, 'star': 0.37178987918190837, 'intj': 0.19901191586945022, 'yeah': 0.26881473219854474, 'cconj': 0.14525406290890136, 'adp': 0.09886861200267143}, {'york': 0.4428495251206112, 'define': 0.11238888516537103, 'intelligence': 0.11238888516537103, 'breath': 0.09562263308105101, 'crime': 0.09346692802727254, 'state': 0.45393750504330777, 'wall': 0.09562263308105101, 'cousin': 0.09821213475785964, 'deep': 0.07864483143387319, 'life': 0.06701103897614889, 'new': 0.35963866536010786, 'mind': 0.3857997491923887, 'sleep': 0.16535157513496915, 'death': 0.08926760111680443, 'drop': 0.07996950469250598, 'propn': 0.32541235996187595, 'adv': 0.07522908533366242, 'think': 0.07192773307202158, 'adp': 0.2976665213111432}, {'wonder': 0.7443475277358647, 'mean': 0.6435664454806527, 'adp': 0.17823857103585752}, {'bay': 0.6516426711806296, 'window': 0.5365809835145904, 'pretty': 0.5178240778771233, 'adv': 0.1389276847780726}, {'lay': 0.4904486516973793, 'nice': 0.49586853066326797, 'life': 0.35162676690415035, 'word': 0.406369350995597, 'sleep': 0.43382434189620817, 'adv': 0.13158309664196946, 'adj': 0.13885033946828465}, {'cocaine': 0.5917273818052956, 'crack': 0.5099878496355472, 'rap': 0.44583482796338186, 'adv': 0.31404017980991605, 'adj': 0.16569220016129327, 'cconj': 0.21064307515412042, 'adp': 0.14337628876876013}, {}, {'shot': 1.0}, {'away': 0.5625627957047366, 'long': 0.48484779627031277, 'stay': 0.48484779627031277, 'adv': 0.4619180985764831}, {'fall': 0.9573736993486073, 'adv': 0.2888522109930308}, {'shark': 0.5508588388931734, 'raise': 0.4686813340432143, 'grand': 0.47470954564822, 'finger': 0.48882300706835513, 'adp': 0.1122286138373331}, {'month': 0.6455759755716808, 'blood': 0.5737054932114153, 'man': 0.3948330286750794, 'num': 0.3133696639609257}, {'sorry': 0.43746447523000026, 'attack': 0.41206833085303246, 'really': 0.3682612144783078, 'watchin': 0.4519097997825952, 'want': 0.3064056995474351, 'heart': 0.3702098448062267, 'adv': 0.11169716932523227, 'adj': 0.23573225245875837}, {'nod': 0.6194141947593179, 'beginnin': 0.30970709737965896, 'god': 0.4089018399613883, 'feel': 0.19440067789519114, 'people': 0.21011974337117537, 'rap': 0.4058154100645888, 'propn': 0.15456032985510806, 'like': 0.12850951218214746, 'adv': 0.07146275725501734, 'adj': 0.15081919117920925, 'adp': 0.19575963037485777}, {}, {'adv': 1.0}, {'skrrt': 0.5877346486174402, 'better': 0.3869736733022904, 'arm': 0.4722011301188246, 'pull': 0.43311719989428676, 'propn': 0.13550298082624707, 'adv': 0.2506054855135219, 'adp': 0.11441492766871579}, {'cconj': 1.0}, {'wake': 0.3945132132554804, 'drank': 0.8024606530984687, 'pass': 0.37810683467581774, 'propn': 0.2396903134610346}, {'heard': 0.9744377054874274, 'propn': 0.2246578690462405}, {}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'pro': 0.6507502933346747, 'god': 0.4681160379656932, 'black': 0.4547935815557864, 'propn': 0.17694263553638176, 'adj': 0.34531946459653273}, {'propn': 1.0}, {'window': 0.5050352391808525, 'beef': 0.4777519701892289, 'bust': 0.4407400008041287, 'heat': 0.45839418277469296, 'like': 0.23514227186622566, 'adp': 0.23879614535611177}, {'mad': 0.9553492212329051, 'adj': 0.2954790440787327}, {'everybody': 0.8272716633447014, 'adv': 0.2698271095510967, 'adp': 0.4927625452265945}, {}, {'humble': 0.9587640174501934, 'adj': 0.2842033758468841}, {'law': 0.46614766168371274, 'abroad': 0.558269115780472, 'travel': 0.45385702005835293, 'world': 0.3045111666669404, 'nigga': 0.3002855040399299, 'adv': 0.23804161135722818, 'cconj': 0.1596668842225178}, {'holy': 0.45723435557300873, 'sin': 0.4426188312669941, 'wash': 0.47680234530712645, 'feel': 0.3074307249927529, 'need': 0.3093587356332586, 'water': 0.3906376657544853, 'adj': 0.11925486523262754, 'adp': 0.10319327028084846}, {'piss': 0.551132139198009, 'type': 0.46835738991320486, 'elevator': 0.551132139198009, 'nigga': 0.3370737749323997, 'adp': 0.2439863845639041}, {'adv': 1.0}, {'lyric': 0.5728363113005404, 'speed': 0.5392384145617551, 'propn': 0.2764330530518811, 'comin': 0.4816573010326393, 'adj': 0.13487099023264115, 'adp': 0.23341233954645862}, {'mess': 0.3826982465998976, 'board': 0.39577095565831294, 'read': 0.3118937953907513, 'bless': 0.36427329802224373, 'lord': 0.3197029313277593, 'bust': 0.2976407208910464, 'believe': 0.3197029313277593, 'message': 0.3725582656837034, 'propn': 0.09549339961838493, 'adp': 0.16126391232953502}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {}, {'better': 0.4485387167218831, 'believe': 0.5258242714742042, 'come': 0.3590550194900614, 'deal': 0.5258242714742042, 'know': 0.30954195238018317, 'adv': 0.14523760998579832}, {'rubber': 0.6023583537854532, 'say': 0.2967177007600228, 'make': 0.3197354977908489, 'adj': 0.27102606491937714, 'cconj': 0.17227655769542496, 'adp': 0.5863086993520861}, {'nemesis': 1.0}, {'yo': 0.6356799933695996, 'man': 0.5813750195301872, 'intj': 0.4461001653660908, 'adv': 0.2427110940114746}, {'fuck': 0.925237643553205, 'adv': 0.3793880637976273}, {'noodle': 0.3005674735936121, 'christ': 0.28719713316184703, 'hat': 0.27771072565629684, 'rise': 0.2548539777189816, 'live': 0.19377102529624565, 'villain': 0.22999811366532594, 'jack': 0.2548539777189816, 'throw': 0.21126866003112077, 'pack': 0.22463900046288582, 'bread': 0.2592572177068754, 'life': 0.17123915995633163, 'way': 0.17934029391774284, 'king': 0.20714136572801073, 'vision': 0.26434038522453174, 'master': 0.24435286501735615, 'slang': 0.234125407968436, 'propn': 0.20788865540165907, 'adj': 0.06761890085768639, 'adp': 0.17553536701474629}, {'mandatory': 0.4868306457009387, 'mc': 0.354516059048241, 'life': 0.29026916074349546, 'murder': 0.3836548782303414, 'year': 0.3495070279755517, 'num': 0.41300877987074586, 'adj': 0.22924290924299776, 'cconj': 0.14571727369548945, 'adp': 0.19836780199562395}, {'fart': 0.41823588104349363, 'cure': 0.41823588104349363, 'art': 0.3775478873022554, 'ok': 0.3775478873022554, 'hand': 0.2975927397310581, 'stop': 0.2963121068850446, 'play': 0.2989084627399335, 'intj': 0.17151622470758554, 'cconj': 0.25037122410213714, 'adp': 0.08520882279180346}, {'momentum': 0.5558304385057634, 'adrenaline': 0.5558304385057634, 'venom': 0.5451420254282939, 'propn': 0.29141931880525523}, {}, {'americans': 0.4040101105024387, 'african': 0.3860382632805528, 'damage': 0.348482608320848, 'say': 0.19901268126976765, 'year': 0.27714583557032924, 'propn': 0.09314505174367466, 'hop': 0.2797538836014053, 'hip': 0.28703645681633355, 'adv': 0.08613338530662128, 'adj': 0.36356188886232066, 'young': 0.2920596407536585, 'adp': 0.235947230672737}, {'machine': 0.412838920302811, 'amazing': 0.3919575218617731, 'doom': 0.6012895858484522, 'new': 0.28705837702798226, 'yes': 0.32662935950135996, 'intj': 0.18394209787535862, 'propn': 0.21644952956223312, 'adj': 0.21121036044824065}, {'ipod': 0.3492226687206821, 'daybed': 0.3492226687206821, 'cyclop': 0.3492226687206821, 'med': 0.33368796727258687, 'dead': 0.2524536998412089, 'pain': 0.2629682777397257, 'brain': 0.25913375137115646, 'eye': 0.23350026027084622, 'niggas': 0.1974708931647735, 'drop': 0.2374332784365049, 'propn': 0.4025686821005404, 'adj': 0.07856489836091941, 'adp': 0.06798354746643585}, {'corrupt': 0.6298081308122788, 'mad': 0.4794372109876485, 'police': 0.5928687327209862, 'adj': 0.14828467501714518}, {'break': 0.911645436809459, 'cconj': 0.41097761197477745}, {'creep': 0.32606773788202137, 'villain': 0.2700470587254195, 'box': 0.2804334942477412, 'criminal': 0.30440097085732, 'smooth': 0.33720598768728827, 'city': 0.24436615123980326, 'break': 0.22389077726309986, 'eat': 0.25072750846117325, 'shit': 0.18228855485438672, 'tape': 0.2748930275435415, 'sleep': 0.24805629634546816, 'beat': 0.24321032752734614, 'adv': 0.15047572237190798, 'adj': 0.15878639176523682, 'cconj': 0.10093189003917238, 'adp': 0.274801149796071}, {'numb': 0.6043265944412392, 'mc': 0.4205017716710205, 'blow': 0.3993880377032615, 'fiend': 0.4550641695589181, 'propn': 0.13932827532287248, 'adv': 0.1288400811190375, 'adp': 0.23528979873460526}, {'cell': 0.6875953937665088, 'open': 0.6754740756397729, 'propn': 0.20351383917255855, 'adp': 0.17184139453263314}, {'tab': 0.2890435444766597, 'count': 0.25420542342825264, 'scooby': 0.2890435444766597, 'plastic': 0.27618583055621676, 'gas': 0.24931714746510383, 'dick': 0.20535633320917576, 'snack': 0.2599870267571416, 'vein': 0.2599870267571416, 'cover': 0.26706313734869563, 'trap': 0.24931714746510383, 'lie': 0.2021286997104629, 'wanna': 0.1791415088368395, 'shit': 0.1493019630779503, 'make': 0.15342608099595353, 'year': 0.19828022261762168, 'work': 0.2160262125012135, 'num': 0.11715282706923445, 'propn': 0.1332787235100201, 'adv': 0.12324592053321584, 'adj': 0.13005270692694743, 'adp': 0.22507365398450271}, {'sin': 0.4375623889133834, 'sinner': 0.4713553932056747, 'forgive': 0.44433396585985613, 'lord': 0.4044835795776963, 'probably': 0.4009981515685351, 'propn': 0.12081688442227295, 'adv': 0.2234443389677079}, {'drought': 0.5771980335763415, 'party': 0.4894116220552724, 'feeling': 0.4496052865399339, 'end': 0.40571208077939935, 'adv': 0.24611275476461153}, {'admit': 0.722142285831539, 'like': 0.32097313988515414, 'look': 0.5188799085584478, 'adp': 0.32596073840363354}, {'propn': 1.0}, {'nada': 0.887423494751041, 'like': 0.3682264997292984, 'adv': 0.20476679522152264, 'adp': 0.18697418387484682}, {'broad': 0.3712090540282393, 'trip': 0.36490441740125285, 'vacation': 0.41121391745077057, 'fall': 0.30409884084959704, 'need': 0.2511551509857128, 'make': 0.22843655548296968, 'face': 0.27474605553248743, 'adv': 0.1835012233981142, 'think': 0.26317268692876705, 'adj': 0.0968179341112531, 'cconj': 0.3692514315956474, 'adp': 0.16755642167364493}, {'dead': 0.954831295652993, 'adj': 0.2971484424351353}, {'forfeit': 0.7351206420683952, 'leave': 0.46783077570487164, 'face': 0.46931063797439826, 'adp': 0.14310671539935402}, {}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'purple': 0.5372296315971422, 'ghost': 0.44220962753176873, 'touch': 0.4467808648223855, 'tape': 0.4379539074282192, 'world': 0.306677178972191, 'adv': 0.11986741019726771, 'adj': 0.12648760381708582}, {'know': 0.8440384398470046, 'adv': 0.3960242700445308, 'adp': 0.36161290020729503}, {'ya': 0.33114406445297473, 'fast': 0.40782684519616513, 'protein': 0.5235633568689402, 'food': 0.371975272320862, 'fish': 0.5235633568689402, 'propn': 0.12070820679710456, 'adv': 0.11162167276838057, 'adp': 0.10192263421437542}, {'waste': 0.713073364373934, 'time': 0.4236937935435326, 'want': 0.4513542096913561, 'adv': 0.3290734321196723}, {'tough': 0.6785138197667725, 'chance': 0.5933031427893836, 'adv': 0.16082352522493185, 'adj': 0.3394113931324758, 'cconj': 0.2157453987640102}, {'ha': 0.9104540772250306, 'intj': 0.41361017064902783}, {'sherane': 0.41600472540111927, 'bro': 0.7483705050032122, 'fuck': 0.21629534734390568, 'tell': 0.4435574580050242, 'propn': 0.09591042566957375, 'cconj': 0.11897878003475297}, {'toker': 0.19786317650041846, 'mocha': 0.1890614988035899, 'carrier': 0.19786317650041846, 'vial': 0.18281660909485373, 'smoker': 0.19786317650041846, 'operation': 0.17797269631538598, 'laundering': 0.19786317650041846, 'smuggling': 0.19786317650041846, 'success': 0.17797269631538598, 'continued': 0.19786317650041846, 'level': 0.16777004168928902, 'corrupt': 0.1890614988035899, 'integrate': 0.19786317650041846, 'gallon': 0.19786317650041846, 'shaolin': 0.16521325370119658, 'patient': 0.17797269631538598, 'position': 0.17797269631538598, 'judge': 0.17066868883989955, 'insure': 0.1890614988035899, 'island': 0.14682044373750625, 'drug': 0.15016668629563185, 'number': 0.1489930162410013, 'blood': 0.14682044373750625, 'dime': 0.1489930162410013, 'cop': 0.1458106054656505, 'remain': 0.16292612890982128, 'high': 0.13126308551391794, 'money': 0.12672420269268508, 'crack': 0.1370089277688219, 'propn': 0.13685283116092753, 'lose': 0.13229697653967878, 'adv': 0.08436732040348126, 'adj': 0.17805373755456216, 'cconj': 0.11317909589186341, 'adp': 0.19259117257125719}, {'inshallah': 0.8049450227507688, 'come': 0.44400646288658085, 'propn': 0.194220762361177, 'adv': 0.17960043443893434, 'cconj': 0.24093469715965662, 'adp': 0.16399458035400302}, {'map': 0.4864882919532193, 'stuck': 0.4648475135891672, 'stupid': 0.41962491653136175, 'stick': 0.36633071027185143, 'like': 0.18651217312115265, 'adv': 0.10371741302675584, 'adj': 0.21889130709124782, 'adp': 0.37882076795329506}, {'biological': 0.7487103294531701, 'clock': 0.6373375503800545, 'adj': 0.18230109556905297}, {'uh': 0.5900466936177912, 'intj': 0.32175245764727944, 'doubt': 0.6524880446843713, 'adv': 0.3501137056623377}, {'intj': 0.4682264500084681, 'yeah': 0.6324554347281826, 'like': 0.4581088620832828, 'cconj': 0.3417473467757409, 'adp': 0.23261370563179307}, {'crew': 0.9228573610357509, 'propn': 0.2756521074178315, 'adj': 0.2689799376500741}, {'momma': 0.9201448820989699, 'cconj': 0.3237069382316688, 'adp': 0.22033432344451354}, {'tonight': 0.9580058682877325, 'cconj': 0.28674859428821564}, {'bang': 1.0}, {'lemon': 0.603680703237071, 'pie': 0.603680703237071, 'freak': 0.520710300530334}, {'alright': 0.3079664837126105, 'song': 0.283470234508711, 'justice': 0.32055928736504474, 'poetic': 0.3383078472624467, 'just': 0.577925994097777, 'know': 0.3625870915726184, 'want': 0.23334397484557404, 'propn': 0.09198779121636297, 'adv': 0.255189719132302, 'adj': 0.08976122322344621, 'adp': 0.07767191846444192}, {'ashe': 0.4016290961966523, 'respect': 0.3307127433119542, 'learn': 0.3128468123140052, 'easy': 0.3307127433119542, 'mic': 0.2589238310731298, 'talk': 0.2685406959342358, 'court': 0.3128468123140052, 'science': 0.3405450746536525, 'burn': 0.2980209009297966, 'adv': 0.2568772869325074, 'adj': 0.09035481355511785, 'adp': 0.0781855623096033}, {'warn': 0.3888183667296732, 'concern': 0.3888183667296732, 'risk': 0.3759753086119533, 'lady': 0.3140866448645301, 'uh': 0.29241200576884313, 'great': 0.3140866448645301, 'gentleman': 0.3450309767382417, 'life': 0.23183006655174762, 'intj': 0.15945226457389455, 'tell': 0.21693532588134182, 'adj': 0.09154503146354538, 'cconj': 0.11638041455053726, 'adp': 0.07921547817993599}, {'movement': 0.968805395504045, 'adj': 0.24782273027761384}, {'use': 0.534279548468292, 'try': 0.49854967074744555, 'play': 0.5366417159584215, 'know': 0.3570664903533894, 'cconj': 0.22475048397288358}, {'thrill': 0.5245686246471288, 'alcohol': 0.48467763881945153, 'mere': 0.5245686246471288, 'propn': 0.1209399725791519, 'adv': 0.4473439678061998}, {'different': 0.8109480039527435, 'like': 0.3604449320019896, 'adj': 0.4230193717655176, 'adp': 0.18302294115833942}, {'sophisticated': 0.5004803491862443, 'make': 0.28752279087800076, 'talk': 0.7243547218459667, 'baby': 0.337600618610553, 'adv': 0.11548235738672459, 'adj': 0.12186036759245918}, {'momentum': 0.5744250926801074, 'adrenaline': 0.5744250926801074, 'venom': 0.563379111302884, 'propn': 0.15058420483726961}, {'tryin': 0.8489607397549752, 'adv': 0.4807241610910763, 'adp': 0.2194765210631107}, {'know': 0.9735674373998511, 'adv': 0.22839974788665351}, {'16': 0.36679094008386115, 'ounce': 0.36679094008386115, 'sentence': 0.3299187536830124, 'minute': 0.29819067246471914, 'pound': 0.31100547558930325, '20': 0.31637887316710667, 'crack': 0.2539817378101263, 'num': 0.4459943464782318, 'propn': 0.16912824805663418, 'adv': 0.07819840283187753, 'adj': 0.08251724618267314, 'cconj': 0.10490346843271833, 'adp': 0.14280716298742965}, {}, {'clan': 0.356755043539926, 'interscope': 0.3861174676461161, 'mental': 0.32240320947514167, 'mc': 0.26866777122135554, 'plan': 0.2930407853689515, 'slave': 0.3139025933995141, 'come': 0.20350760396043902, 'free': 0.2808542782951535, 'death': 0.2930407853689515, 'propn': 0.35607951947843164, 'adj': 0.08686515028397453, 'adp': 0.1503317942417703}, {'apple': 1.0}, {'huh': 0.9614423554240974, 'adj': 0.2750065402796153}, {'radio': 0.4768598117438985, 'gas': 0.445173112189966, 'scream': 0.3983647194660771, 'ill': 0.37540637672949095, 'real': 0.33384739781215966, 'niggas': 0.2918372432791444, 'propn': 0.11898921662010065, 'adj': 0.23221815619201347, 'adp': 0.100471166980475}, {'sour': 0.4552970792983608, 'hour': 0.37490447664916043, 'fucking': 0.3455441021799716, 'half': 0.3291350834034797, 'late': 0.37014366335264465, 'miss': 0.3355204539491251, 'nigga': 0.24489822037509626, 'propn': 0.10496932850826209, 'adv': 0.09706756771857641, 'adj': 0.30728562573103724}, {'niggas': 0.8457654423644767, 'adv': 0.3188809355074585, 'cconj': 0.42778004333057545}, {'pen': 1.0}, {'trooper': 0.5303488323999882, 'great': 0.42841465226395864, 'sound': 0.364107974241985, 'shorty': 0.45123102458866243, 'girl': 0.3696475585759961, 'adj': 0.24973511903292636}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'break': 0.5724266595178287, 'know': 0.8199559253235871}, {'nation': 0.5614912850881688, 'conversation': 0.5614912850881688, 'rule': 0.43304101977656323, 'say': 0.2894632392276469, 'tell': 0.3132755685762707}, {'crown': 0.4795998702784703, 'dung': 0.5190729346328197, 'cow': 0.4795998702784703, 'drown': 0.4959826721969724, 'propn': 0.11967293416243155, 'adp': 0.1010484789530576}, {'friends': 0.9673146071327873, 'propn': 0.2535792791762402}, {'stiffly': 0.34490335506750014, 'fifth': 0.34490335506750014, 'plead': 0.3295607924868749, 'curse': 0.30333250851702975, 'wine': 0.31867507109765497, 'stupid': 0.297499536937476, 'sip': 0.2712712529676308, 'york': 0.25971578993142874, 'new': 0.21091552494822347, 'sit': 0.21684000664544717, 'propn': 0.23855373926936937, 'adj': 0.2327795369168152, 'cconj': 0.0986435439555562, 'adp': 0.13428540418903065}, {'skeezer': 0.5691114839886529, 'skeet': 0.5258332224314898, 'fly': 0.42854682754313506, 'eye': 0.38052420858385116, 'adv': 0.24266471287986133, 'adp': 0.11078953645011468}, {'procedure': 0.5149143340879128, 'storage': 0.5149143340879128, 'regular': 0.45285223914303446, 'food': 0.36583041408723405, 'adj': 0.3475220477845361, 'adp': 0.1002389197724514}, {'know': 0.8440384398470046, 'adv': 0.3960242700445308, 'adp': 0.36161290020729503}, {'spine': 0.30709365327119564, 'grae': 0.30709365327119564, 'frame': 0.2890820491738277, 'villain': 0.24593198474291622, 'toe': 0.2890820491738277, 'trap': 0.27721810885090953, 'pack': 0.2402016014570086, 'mind': 0.21083340089417732, 'day': 0.20146476313219894, 'line': 0.22961997662157627, 'bitch': 0.17420225022949992, 'stick': 0.24201019223314696, 'sick': 0.24806959616236704, 'stay': 0.21576137759859906, 'num': 0.13026334328334357, 'propn': 0.07409694049760941, 'adj': 0.14460684245665922, 'cconj': 0.09191872023470742, 'adp': 0.25026153774072435}, {'fuckin': 0.7201429298295371, 'oh': 0.6557122811731133, 'adv': 0.22679410251433502}, {'oh': 0.5460431198710513, 'intj': 0.6942535844167921, 'yeah': 0.46888044506667687}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'humble': 0.9587640174501934, 'adj': 0.2842033758468841}, {'tour': 0.6858296377533438, 'say': 0.39166601673820456, 'day': 0.49841803658406963, 'num': 0.32226776925529804, 'adp': 0.1547849637995904}, {'ink': 0.41738925564532725, 'ask': 0.34520837416612826, 'link': 0.4534796963849269, 'terrorist': 0.43850081011249215, 'say': 0.2337804794582673, 'come': 0.25013871791476916, 'adv': 0.20236202020764932, 'cconj': 0.2714694550024809, 'adp': 0.27716754712104}, {'zoo': 0.3719807799303189, 'banana': 0.3567146719620854, 'wanna': 0.2563097051656683, 'hey': 0.31920737424269974, 'ooh': 0.2971793614426759, 'baby': 0.51550035564313, 'want': 0.2418611162093815, 'intj': 0.1620519035874266, 'propn': 0.19069075921886466, 'look': 0.2563097051656683, 'adp': 0.16101394441717518}, {'sad': 0.9733845868772879, 'adj': 0.2291777607660297}, {'spill': 0.6778140093329753, 'pill': 0.5579287942697021, 'hold': 0.45004036384463836, 'propn': 0.16354601856144052}, {'turn': 0.5476703877473237, 'word': 0.5536240033719207, 'say': 0.4141935228843519, 'let': 0.4711701761315049}, {'tryin': 0.7043272236366759, 'save': 0.7098754553048386}, {'lane': 0.5805088662394463, 'trip': 0.5327305717581837, 'memory': 0.5651276909201259, 'adp': 0.24461865645710246}, {'crave': 0.27115808895769056, 'singe': 0.25909598550769103, 'lady': 0.2092971828220199, 'wrong': 0.22641358001246792, 'dick': 0.19264928047149418, 'insane': 0.2338898845619413, 'pain': 0.20418484260949193, 'rapper': 0.19373117451724484, 'bring': 0.18687337057248093, 'eat': 0.19264928047149418, 'bag': 0.2112171268638231, 'old': 0.1731108724720213, 'say': 0.1335706630320343, '80': 0.250537786912467, 'shit': 0.14006344635424922, 'song': 0.19264928047149418, 'mercedes': 0.27115808895769056, 'baby': 0.33800212929236223, 'tell': 0.1445586856490667, 'num': 0.1099036367049865, 'propn': 0.06251584693083458, 'adj': 0.24401059389121424, 'adp': 0.15835989867806183}, {}, {'plate': 0.5219226351180715, 'cut': 0.4185003821970881, 'turn': 0.40092318353438144, 'pass': 0.44773216105337194, 'food': 0.4373221992026403}, {'buh': 0.9068478880494409, 'simon': 0.1595092890131921, 'sky': 0.13999265811794503, 'throw': 0.12748454506378035, 'point': 0.14571698251587775, 'hand': 0.12331150660498212, 'say': 0.08934144221296955, 'miss': 0.13365603641914217, 'fuck': 0.18860072201786907, 'propn': 0.12544496970775298, 'adv': 0.03866728902339526, 'adp': 0.03530740811751613}, {'dive': 0.29519986733798953, 'pool': 0.6063880112342594, 'swimming': 0.31320564327350875, 'liquor': 0.5979934967348662, 'propn': 0.08371595928328733, 'adj': 0.16337922259525683, 'cconj': 0.10385130329084115, 'adp': 0.21206224470581844}, {'lob': 0.3191935089921429, 'dart': 0.28710612275842506, 'swab': 0.3191935089921429, 'scotchguard': 0.3191935089921429, 'throb': 0.3191935089921429, 'prob': 0.28710612275842506, 'cotton': 0.28710612275842506, 'bar': 0.2385597814592006, 'barred': 0.2949203383425306, 'job': 0.26283295210881286, 'heart': 0.2255480779344504, 'adv': 0.06805081551845661, 'adj': 0.07180921468614777, 'hot': 0.23685120929138118, 'adp': 0.12427547815861717}, {'fight': 0.7532694079690592, 'come': 0.46823307323673113, 'adv': 0.37880017703019725, 'adj': 0.19986052355342251, 'adp': 0.1729427221714516}, {'iron': 0.8280284948964766, 'propn': 0.47522262066297644, 'adv': 0.21972467847582758, 'adp': 0.2006323456434251}, {'shotty': 0.804764627025175, 'just': 0.4066484275447856, 'adv': 0.35912036859580754, 'cconj': 0.2408807014353694}, {}, {'passion': 0.7857457704807441, 'know': 0.4059571746180781, 'propn': 0.20598143005911917, 'adv': 0.3809515921493017, 'adp': 0.17392495927106383}, {'talkin': 0.34178156705932283, 'make': 0.2539262548618962, 'talk': 0.6397151375312075, 'baby': 0.5963051517485547, 'like': 0.18340301850422017, 'adj': 0.10762119644274339, 'adp': 0.09312645811808622}, {'fab': 0.6980990469364431, 'going': 0.501653206751996, 'intj': 0.27355148991589345, 'kill': 0.4314757967565085}, {'adj': 1.0}, {'shot': 0.4427328865108472, 'babysittin': 0.6326958127291431, 'num': 0.5367552925275704, 'adv': 0.2823359102104348, 'cconj': 0.18937737326848178}, {'shoulda': 0.727656311564231, 'slap': 0.6859419015053233}, {'sub': 0.46946868145694237, 'opinion': 0.46946868145694237, 'bar': 0.36720761864877327, 'view': 0.4165987298221462, 'fuck': 0.25545677183966947, 'know': 0.2232483269622142, 'propn': 0.11327551899838965, 'adv': 0.2094969886440235, 'cconj': 0.28104104353917797}, {'kinda': 0.45614763629646715, 'burner': 0.45614763629646715, 'low': 0.33392270577843775, 'chill': 0.37560484930853877, 'blow': 0.3014593616087188, 'hand': 0.3101305798208583, 'man': 0.23294395835906007, 'propn': 0.21033085104107985, 'adv': 0.19449780632948288, 'adp': 0.08879874435833508}, {'ha': 0.9104540772250306, 'intj': 0.41361017064902783}, {'guess': 0.2470322019748781, 'dial': 0.31346622503819793, 'speed': 0.2950808579583435, 'chopper': 0.28297072625262765, 'buy': 0.26357144779108543, 'suggest': 0.31346622503819793, 'backwards': 0.31346622503819793, 'movin': 0.32805951187389587, 'tec': 0.2739255495789437, 'doctor': 0.2950808579583435, 'sleep': 0.23059279387553314, 'propn': 0.07563454332986112, 'adv': 0.06994101287365136, 'cconj': 0.09382614696003082, 'adp': 0.25545477307068}, {'bronze': 0.372757231323675, 'golden': 0.3352852749212393, 'dame': 0.35617562646267037, 'palm': 0.3278291857240546, 'buddha': 0.3160643498464437, 'propn': 0.6015776211492637, 'hit': 0.22915163430982247}, {'mean': 0.7297494972080135, 'intj': 0.40682042292276294, 'yeah': 0.5495114328361113}, {'unite': 0.415021384752137, 'gon': 0.35702872204651154, 'light': 0.3300636694924696, 'shine': 0.36516590426563894, 'black': 0.2851221714560825, 'people': 0.30161155532178413, 'man': 0.24571271029763317, 'num': 0.19501638379970093, 'hop': 0.333169694526467, 'adv': 0.10257957209282273, 'adj': 0.21648994089802917, 'cconj': 0.13761090397225464}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'yello': 0.5251410026517699, 'mello': 0.5251410026517699, 'hell': 0.3796253821191589, 'devil': 0.4090557438461704, 'tell': 0.27996101246906896, 'propn': 0.24214387013182945}, {'gym': 0.5872097501580028, 'frame': 0.5281796460903522, 'tone': 0.5872097501580028, 'propn': 0.13538196480983186, 'adp': 0.11431274512866779}, {'pump': 0.6826915995092583, 'shit': 0.4088254539244018, 'stop': 0.5357990151891944, 'adv': 0.1687388041241502, 'cconj': 0.22636377689029366}, {'city': 0.8495382099517658, 'like': 0.47036371941136146, 'adp': 0.2388363483506215}, {'ghostface': 0.5041593341270879, 'poster': 0.5605048941661593, 'square': 0.4834686123392079, 'propn': 0.38767537751539505, 'adp': 0.21822816495450478}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'cycle': 0.520719138275735, 'givin': 0.497555646681514, 'punct': 0.4183591458266228, 'mic': 0.3356992694808049, 'break': 0.33035629417848517, 'man': 0.26591911831026604, 'adj': 0.11714659395704866}, {'bro': 0.9701165092812742, 'adj': 0.24263956482798843}, {'spell': 0.6805923428901128, 'evil': 0.7097192530106414, 'propn': 0.18191383868569314}, {'dime': 0.5903667052495607, 'sell': 0.5403134467466448, 'rhyme': 0.4958709346269276, 'like': 0.30057697606831346, 'adp': 0.15262381939718564}, {'way': 0.7647104224081495, 'num': 0.5194582068434148, 'adj': 0.2883282786487079, 'adp': 0.2494953805881916}, {'truck': 0.9521560090475447, 'adv': 0.22568307597885587, 'adp': 0.20607300563483344}, {'string': 0.6503137733813481, 'damn': 0.5677210697390805, 'thing': 0.47541147641758946, 'adj': 0.1696134169671572}, {'illmatic': 0.673872120359992, 'clique': 0.6061301569773415, 'nigga': 0.3624668168108516, 'propn': 0.15536208596733206, 'adj': 0.15160154075417437}, {'blooded': 0.6381597941760037, 'throttle': 0.6381597941760037, 'adj': 0.4307019319604699}, {'overnight': 0.5991290201664781, 'bug': 0.5167842047533806, 'thug': 0.4760944089726963, 'yo': 0.33454038665626656, 'propn': 0.13812996787417486, 'adv': 0.12773197848489543}, {'world': 1.0}, {'home': 0.6573317974589356, 'come': 0.4792548537279618, 'adv': 0.5815751827817232}, {'laugh': 0.678565193202015, 'pull': 0.6357836582407133, 'adv': 0.367870110893462}, {'cause': 1.0}, {'thinkin': 0.800262138283813, 'time': 0.552876467607989, 'propn': 0.23218122575852596}, {'rule': 0.49252880381883457, 'fear': 0.5114342287239089, 'tear': 0.5433541043665926, 'world': 0.36455840699052877, 'adp': 0.2602189313998398}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'rule': 0.47330210757876295, 'world': 0.3503272519826899, 'love': 0.6909316107649099, 'baby': 0.40029593331361296, 'adp': 0.12503042229053077}, {'shout': 0.35996756000649544, 'west': 0.35996756000649544, 'east': 0.35304551740267304, 'south': 0.35996756000649544, 'oh': 0.25229152992725795, 'crew': 0.31592401842736867, 'north': 0.35996756000649544, 'intj': 0.16038504341136844, 'propn': 0.3774586415637438, 'adp': 0.15935776065260596}, {'adv': 1.0}, {'guess': 0.8701775996219235, 'adv': 0.4927382115446572}, {'let': 0.4152411543912467, 'thing': 0.4672754526075396, 'man': 0.37842812415633953, 'just': 0.35778795881132436, 'know': 0.33671083333332513, 'adv': 0.4739558852713631}, {'momma': 0.7438707637586822, 'oh': 0.5640049028206097, 'intj': 0.3585453338413281}, {'gym': 0.8791592086354612, 'bitch': 0.4765281585294511}, {'brown': 0.6359177784766028, 'speed': 0.7119404064304207, 'propn': 0.18248316034800943, 'adj': 0.1780661484956268, 'adp': 0.15408367745613402}, {'cash': 0.3996403171669847, 'thinkin': 0.4586254275267167, 'buddha': 0.4893671803997815, 'nigga': 0.31043892383802635, 'flow': 0.4282594547477857, 'propn': 0.26612333342556926, 'cconj': 0.16506562935524896, 'adp': 0.11235355030265926}, {'propn': 0.8498037673998151, 'cconj': 0.5270991907725537}, {'easy': 0.5166849447569659, 'peace': 0.46896801377268393, 'hard': 0.4178923200873781, 'adv': 0.5351053827111244, 'adj': 0.14116472012151973, 'cconj': 0.1794614998214866}, {}, {'maybe': 0.9611166031150709, 'adv': 0.2761428529159272}, {'thirteen': 0.9267693944674823, 'num': 0.37563078877852407}, {'ya': 0.7152066027628228, 'kill': 0.698913095716815}, {'cray': 0.48888271802456296, 'poor': 0.38451301074409516, 'life': 0.27852603261018166, 'shit': 0.25252648229217006, 'cause': 0.2974293341976258, 'want': 0.28591611929564975, 'hard': 0.32558847970206295, 'propn': 0.11271254080833541, 'adv': 0.41691158143532436, 'adp': 0.09517131745226454}, {'adp': 1.0}, {'verbal': 0.39748399943061713, 'mega': 0.3672572038446604, 'kangol': 0.39748399943061713, 'bout': 0.3193488663239551, 'shoot': 0.28086959651638993, 'crazy': 0.2823998604783956, 'slap': 0.3370304082587036, 'shit': 0.2053155745599367, 'bitch': 0.21544711860276058, 'propn': 0.0916404484239364, 'adj': 0.2682668636296525, 'adp': 0.0773786319239584}, {'propn': 0.7313597148766698, 'like': 0.608090577165452, 'adp': 0.30876984538342417}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {}, {'mile': 0.42745394050837227, '1000': 0.4860352717845412, 'home': 0.3513557784345177, 'sound': 0.31884123320288565, 'inside': 0.3290288764982396, 'deep': 0.32497707802947284, 'num': 0.19699594484290814, 'adv': 0.1036208308875319, 'adj': 0.10934373724208603, 'adp': 0.2838510062142154}, {'famous': 0.624843910330283, 'father': 0.5318966114313581, 'little': 0.46182337518226585, 'adv': 0.1441783835888986, 'adj': 0.3042825106902347}, {'manage': 0.435595976763039, 'stuff': 0.36371713975804026, '15': 0.4162190746971037, 'understand': 0.33622087814365526, 'month': 0.36371713975804026, 'planet': 0.36371713975804026, 'like': 0.16700083757970055, 'adv': 0.18573473845931593, 'adp': 0.25439379297118997}, {'come': 0.5536840679499644, 'man': 0.5364717500545513, 'tell': 0.5600444033677089, 'adv': 0.22396498127355402, 'adp': 0.20450419974032313}, {'break': 1.0}, {'compton': 0.9673146071327873, 'propn': 0.2535792791762402}, {'clearly': 0.6967585161191537, 'speak': 0.544988506333054, 'adv': 0.4663851393218932}, {'breeze': 1.0}, {'begin': 0.2510164783246884, 'freeze': 0.23433676756719576, 'stimulate': 0.27167617866438915, 'frame': 0.24436554035338465, 'explosion': 0.27167617866438915, 'choose': 0.2208650584173573, 'violin': 0.2510164783246884, 'criminal': 0.23433676756719576, 'speak': 0.20304613967398308, 'brain': 0.20159191725263384, 'leviathan': 0.2595910286895281, 'mind': 0.17822074418418046, 'leave': 0.172894719766652, 'nigga': 0.14613098940969893, 'slang': 0.21162069003882278, 'hard': 0.180932216912933, 'tell': 0.14483488750362525, 'end': 0.19096098969912195, 'propn': 0.1252705863610588, 'like': 0.20831298638043383, 'adv': 0.05792030537658801, 'adj': 0.18335761056441388, 'adp': 0.21154995986246047}, {'lye': 0.9206279170659165, 'intj': 0.3904410817509757}, {'leave': 0.9121233667758529, 'cconj': 0.40991580084388424}, {'wanna': 0.6229243567770827, 'love': 0.5406212641933444, 'just': 0.4852781046210703, 'adv': 0.2142800020833725, 'adp': 0.1956607684702774}, {'swift': 0.4988497619499233, 'bite': 0.4809474950606471, 'record': 0.44612297121844, 'write': 0.4008051664571544, 'shit': 0.2929884332743707, 'propn': 0.13077230729250808, 'adv': 0.12092817944273018, 'adj': 0.1276069586095235, 'cconj': 0.1622256337136491}, {'blowin': 0.7573035515439269, 'smoke': 0.541236299130315, 'propn': 0.36545122700939864}, {'europe': 0.5680895331728798, 'continent': 0.5680895331728798, 'abroad': 0.5680895331728798, 'propn': 0.1309737741380323, 'adv': 0.12111448049798969}, {'poor': 0.724446455733358, 'niggas': 0.5208355280533832, 'adj': 0.41443465078294767, 'adp': 0.17930868836491276}, {'penance': 0.3395210307864268, 'beg': 0.3137020473571176, 'sentence': 0.30539019120979166, 'codefendant': 0.3395210307864268, 'buck': 0.27602100657931133, 'low': 0.24854624303084646, 'jail': 0.2727799268149216, 'say': 0.16724579144876195, 'lot': 0.23864908723828648, 'leave': 0.21607118357336702, 'time': 0.18639542174430526, 'tell': 0.18100405615544946, 'num': 0.13761195974159662, 'end': 0.23864908723828648, 'adv': 0.07238456415870316, 'adj': 0.0763823132468676, 'cconj': 0.09710418072814078, 'adp': 0.26437967726297595}, {'pocket': 0.581485056026653, 'low': 0.502029970371054, 'stay': 0.460394479478735, 'cause': 0.4172229948884213, 'adj': 0.15428199593199424}, {'wake': 0.5998455062339768, 'asleep': 0.7109174794398718, 'adv': 0.16850394473445351, 'adj': 0.17781030029856698, 'cconj': 0.22604871208486355, 'adp': 0.1538622876445019}, {'maybe': 0.6570569733540612, 'come': 0.46670522746072296, 'adv': 0.5663462265521956, 'adp': 0.17237840960434805}, {'say': 0.6877619226970673, 'fuck': 0.7259363179288065}, {'index': 0.6296236933911871, 'weight': 0.5537357973822224, 'hold': 0.3994478688923117, 'propn': 0.29032110818727475, 'adv': 0.13423332429378335, 'adj': 0.14164693734835931, 'adp': 0.12256951246165602}, {'lady': 0.6639582650711913, 'miss': 0.633904886514689, 'propn': 0.39664091707292765}, {'bronx': 0.44450226721484215, 'person': 0.39444394746436623, 'rodriguez': 0.44450226721484215, 'don': 0.4012589533669734, 'rza': 0.34767946292262547, 'know': 0.21137594776005508, 'propn': 0.32175453019653744, 'adj': 0.10465548317600738, 'adp': 0.09056017581075394}, {'set': 0.7320884509581681, 'rap': 0.6013640645662047, 'propn': 0.22903770009021548, 'adj': 0.22349383382873894}, {'winnin': 0.6030639688114284, 'sell': 0.4349607976433268, 'block': 0.4459748225707074, 'rock': 0.4082565928723841, 'propn': 0.14550999194311226, 'adp': 0.24572913601944577}, {'slide': 0.40701747273117905, 'crime': 0.38144887912116326, 'state': 0.3705138408727906, 'pen': 0.3470107515515094, 'come': 0.25300249831172683, 'wu': 0.34104245401894195, 'stick': 0.36146358619448027, 'propn': 0.11067032173794758, 'adv': 0.10233940811471733, 'cconj': 0.13728872304037523, 'adp': 0.2803407743396609}, {'pursue': 0.8259355512074963, 'want': 0.5055242527653353, 'adv': 0.18428386985797454, 'adp': 0.16827106236007366}, {'hail': 0.6621944951738163, 'hand': 0.4502199428453484, 'let': 0.37106378753118097, 'smoke': 0.45221046431570255, 'adp': 0.12891010500429045}, {'mother': 0.6824034097669618, 'collect': 0.7309757768479226}, {'hardly': 0.7297191302414343, 'spark': 0.6294258961289549, 'adv': 0.15557328239269055, 'adj': 0.16416548647731444, 'adp': 0.14205519736066557}, {'ren': 0.44634833551644687, 'art': 0.3850018307388411, 'da': 0.41240563614461284, 'mc': 0.3105775380291108, 'mix': 0.41240563614461284, 'propn': 0.4116247363777946, 'cconj': 0.12765715672840905, 'adp': 0.1737822081556638}, {'compulsive': 0.2557918120707276, 'spade': 0.23634004337790263, 'deuce': 0.24441325681272325, 'flick': 0.2249614881198982, 'fam': 0.22063556218102434, 'flip': 0.19413116416906878, 'clique': 0.2300779725404318, 'thou': 0.2557918120707276, '50': 0.23634004337790263, 'picture': 0.20795151710917473, 'dirty': 0.2300779725404318, 'jack': 0.21688827468507763, 'ace': 0.2300779725404318, 'nose': 0.2249614881198982, 'snatch': 0.21062620384760683, 'bitch': 0.13864610638858374, 'kick': 0.18173202479537434, 'num': 0.10367549975733116, 'propn': 0.23589252794991536, 'adj': 0.23018274031879246, 'cconj': 0.07315733664734013, 'adp': 0.19918105386617566}, {'1999': 0.4983528977114811, 'recording': 0.4983528977114811, 'em': 0.4482552564403537, 'fondle': 0.4983528977114811, 'num': 0.20198842686749402, 'propn': 0.11489590294217628}, {'rum': 0.3537537538196882, 'luck': 0.29995112317397804, 'stand': 0.25274234112214106, 'dog': 0.2953799171289418, 'sip': 0.27823221383824737, 'aim': 0.29995112317397804, 'ironman': 0.3537537538196882, 'stick': 0.26638023163476565, 'num': 0.14338065367059952, 'propn': 0.3262335357209345, 'like': 0.13562378060481645, 'adj': 0.07958426013824098, 'adp': 0.344328093052087}, {'thousand': 0.5439479015582941, 'dollar': 0.4709303837850309, 'cash': 0.4510880155498252, 'num': 0.5280765628635041}, {'physically': 0.6322485137983104, 'cut': 0.42985994571219605, 'like': 0.24239441362030004, 'adv': 0.13479292580278088, 'goose': 0.5686908232863775, 'adp': 0.12308048903540549}, {'safe': 0.6596021660347493, 'ayo': 0.5672886911045197, 'intj': 0.2797392719228769, 'propn': 0.16458829845688, 'adv': 0.30439721837205025, 'adj': 0.16060443241871458, 'adp': 0.13897375650509144}, {'ayy': 1.0}, {}, {'dr': 0.34053346280987323, 'prostitute': 0.3872025929897491, 'stripper': 0.3699784056136566, 'sound': 0.2540065699242802, 'inspire': 0.3872025929897491, 'spit': 0.2736045632501347, 'music': 0.27509524507606004, 'ya': 0.24489842294569278, 'propn': 0.357080227665218, 'like': 0.1484475541368378, 'adp': 0.15075427924582885}, {'pocket': 0.9746425170097616, 'adp': 0.22376765636900395}, {'love': 1.0}, {'hood': 1.0}, {'average': 0.4070576936547353, 'hyper': 0.4260080915212274, 'use': 0.2896389807136633, 'sniper': 0.4070576936547353, 'cipher': 0.383183015865735, 'heat': 0.3183911776089932, 'shot': 0.2848411891819495, 'propn': 0.09821671462286165, 'adj': 0.1916787506028948, 'adp': 0.16586289439408272}, {'forget': 0.5413613448687769, 'today': 0.5466219038444271, 'come': 0.3663041744511344, 'cause': 0.4228241551662067, 'adv': 0.14816989023203528, 'adp': 0.27059020258621036}, {'tubbies': 0.5726545232998785, 'tellie': 0.5726545232998785, 'sell': 0.39465494595414136, 'propn': 0.39607871548819484, 'adv': 0.12208771865047233, 'adj': 0.12883053836049912}, {'yawk': 1.0}, {'rodriguez': 0.663153859497592, 'don': 0.5986390693810787, 'know': 0.31535221730216945, 'propn': 0.320017503094142}, {'stock': 0.32826613352934986, 'invest': 0.39313903977158504, 'tec': 0.32826613352934986, 'block': 0.27779936710323005, 'cash': 0.272226289175415, 'way': 0.23457518573185263, 'come': 0.20720840342957686, 'leave': 0.250193684425334, 'let': 0.22029730266139508, 'long': 0.2639290274905391, 'blast': 0.30083507198758924, 'num': 0.15934398404889658, 'adj': 0.17688959777160543, 'adp': 0.22959838205060115}, {'pearl': 0.3666502146244404, 'diamond': 0.3046538827957084, 'rule': 0.6007830515053959, 'black': 0.24155327510262503, 'world': 0.22234284625136116, 'love': 0.43851484585646344, 'baby': 0.2540565618349083, 'adj': 0.09170429290650153, 'cconj': 0.1165828822591265, 'adp': 0.15870657964947502}, {'lil': 0.8575766429090333, 'bitch': 0.32530223009563775, 'sit': 0.37731840878156714, 'adv': 0.12795147137185675}, {'murderer': 0.6864517387567862, 'killa': 0.6196704191327685, 'say': 0.3538835760252063, 'adp': 0.1398534827210811}, {'thought': 0.6695255212245494, 'mind': 0.5638547753579771, 'just': 0.41500077509194877, 'adv': 0.18324825724569255, 'adp': 0.167325436274641}, {'white': 0.6669641686192928, 'little': 0.6221813981689892, 'adj': 0.4099379288995559}, {'partner': 0.5215071041904795, 'tool': 0.5215071041904795, 'gat': 0.4983085609906978, 'cock': 0.41441260260709467, 'adj': 0.11732386326843258, 'cconj': 0.1491528226661656}, {'ransom': 0.41935886539506567, 'naked': 0.41935886539506567, 'jack': 0.37213210926246604, 'throw': 0.30848979789174463, 'pack': 0.32801287157873377, 'say': 0.2161903110518006, 'beat': 0.30246321455837843, 'adj': 0.09873561490936168, 'cconj': 0.12552174170839153, 'strip': 0.3785616223465842}, {'bust': 0.45812075498551075, 'knee': 0.5498981962958479, 'ho': 0.4414457201764697, 'knock': 0.4800587116976226, 'intj': 0.24981324429096124}, {'murderous': 0.5574813160855346, 'style': 0.44463513811288435, 'motherfuckin': 0.4745543936011996, 'mad': 0.4388754007193529, 'adj': 0.2714787032680498}, {'talk': 0.8331187783149426, 'adv': 0.26564476658003106, 'adp': 0.4851246841871255}, {'truancy': 0.6607392939007625, 'matter': 0.47764963250175346, 'fact': 0.5250526564834239, 'propn': 0.1523342958989985, 'adv': 0.14086704938646757, 'adp': 0.12862681942840762}, {'straight': 0.5670886842620442, 'razor': 0.7167643486920202, 'adv': 0.17375373186101922, 'adj': 0.36670005902701525}, {'butter': 0.4779973092274566, 'soup': 0.5541617891675427, 'really': 0.38951992122797485, 'bread': 0.4779973092274566, 'like': 0.21245715727991926, 'adv': 0.11814513960854565, 'cconj': 0.15849217470656357}, {'know': 1.0}, {'harsh': 0.8087851367832217, 'life': 0.46078068844928105, 'intj': 0.31692405276843577, 'adj': 0.181953028135235}, {'best': 0.37729197608879905, 'average': 0.3605086491966113, 'minimum': 0.3605086491966113, '15': 0.3605086491966113, 'grind': 0.3486006892601616, 'cream': 0.3067277180830562, 'believe': 0.2912181156028866, 'new': 0.23072183562826712, 'num': 0.15292097842686825, 'adv': 0.16087436578821415, 'adj': 0.25463901752765666}, {'rival': 0.5016706173674137, 'holy': 0.4327205698904685, 'screen': 0.46352091769555936, 'vital': 0.45123945755967426, 'propn': 0.23132161497075648, 'adj': 0.22572246646253488, 'adp': 0.19532150277215904}, {'pop': 1.0}, {'seat': 0.5021893488212407, 'going': 0.41837446490530694, 'heavy': 0.4733191509615447, 'sleep': 0.40923400993727077, 'propn': 0.26845789008793036, 'adj': 0.26195985662488286, 'cconj': 0.16651366121242506, 'adp': 0.11333916748256863}, {'deal': 1.0}, {'advice': 0.6544337109432891, 'ignore': 0.6328171133156278, 'cconj': 0.39176784376741713, 'adp': 0.1333303253791131}, {'adp': 1.0}, {'daughter': 0.5853972092272781, 'life': 0.4197000589621565, 'good': 0.4673658420622146, 'word': 0.4850405504531921, 'adj': 0.16573111363174406}, {'slow': 0.5063767800276585, 'way': 0.3948456755407355, 'yo': 0.3695044626991799, 'say': 0.325971782170623, 'day': 0.41481826022166607, 'like': 0.25370339507394585, 'adv': 0.14108172873028632, 'adj': 0.14887357439439192, 'adp': 0.257645689677964}, {'crib': 0.2806602705966005, 'club': 0.29372629017080404, 'backstage': 0.29372629017080404, 'whip': 0.23340789681620552, 'road': 0.24186252471525838, 'afford': 0.25832376260148027, 'clothe': 0.23598725460636014, 'wrist': 0.29372629017080404, 'neck': 0.23340789681620552, 'good': 0.3726935370377683, 'word': 0.19339397757173107, 'say': 0.14468760817301543, 'yes': 0.20438025819032343, 'intj': 0.11509722675643005, 'propn': 0.13543794962166913, 'adv': 0.0626213034483294, 'adj': 0.13215966888825548, 'cconj': 0.1680134553037079, 'adp': 0.22872003427633578}, {'stew': 0.37736140981657856, 'seaweed': 0.37736140981657856, 'meat': 0.348664842878303, 'mystery': 0.37736140981657856, 'week': 0.3394266117540563, 'need': 0.22022665887869822, 'food': 0.5362067888759594}, {'flock': 0.6772216610381941, 'chickenhead': 0.7357790577480914}, {'darken': 0.7696149422000909, 'talkin': 0.5498578605992068, 'adv': 0.1640789144405666, 'adj': 0.17314087866202166, 'cconj': 0.22011251634507845}, {'deep': 0.6162436428810546, 'set': 0.6791905683188098, 'propn': 0.21248832089497793, 'adv': 0.19649286864073276, 'adj': 0.20734503298777548, 'adp': 0.1794191959276555}, {'size': 0.8861768817017691, 'cconj': 0.27430959027152296, 'adp': 0.3734230617174013}, {'seize': 0.3949391039413226, 'opportunity': 0.380765888309962, 'moment': 0.3287374037309678, 'shot': 0.3002572764817346, 'want': 0.26262892387159537, 'num': 0.5460335809079424, 'look': 0.2783181649886652, 'adv': 0.09573877843237621, 'cconj': 0.1284339520675432, 'adp': 0.17483967498932484}, {'pink': 0.3858371241326833, 'fun': 0.39633851797046277, 'sure': 0.30824934071085197, 'pretty': 0.3408696494212604, 'make': 0.22769396841375567, 'blue': 0.325554894544981, 'baby': 0.2673514136240848, 'adv': 0.09145235462852762, 'adj': 0.38601281804139653, 'young': 0.31009511287408703}, {'leave': 1.0}, {'cormega': 0.19752889112297664, 'don': 0.17038034793647616, 'lo': 0.19752889112297664, 'cee': 0.18250774455393812, 'vernon': 0.3950577822459533, '40': 0.37748416732450574, 'shawn': 0.19752889112297664, 'shorty': 0.16058540830289814, 'crew': 0.15246545141586107, 'big': 0.2641469275588016, 'kid': 0.13054311516482112, 'man': 0.2017467947967457, 'num': 0.1601216734648531, 'propn': 0.5464864855477702, 'adj': 0.08887645988888636, 'adp': 0.1153594764753829}, {'lie': 0.956534665080018, 'adv': 0.29161864566631795}, {'elevator': 0.8387460025253693, 'say': 0.4697831579562872, 'adv': 0.20332379573319767, 'adp': 0.18565656960359983}, {'sheep': 0.7707395890099407, 'clothe': 0.6192320051471147, 'adp': 0.15004069359434286}, {}, {'actual': 0.7333017043858068, 'answer': 0.6595854966572526, 'adj': 0.16497146099939855}, {'sweet': 0.6025278693258145, 'meet': 0.54616745941857, 'look': 0.4593403939548281, 'adv': 0.316017376757803, 'adj': 0.16673539824074246}, {'tryin': 0.7043272236366759, 'save': 0.7098754553048386}, {'moment': 1.0}, {'cake': 0.4954779486371243, 'brother': 0.4108925946016651, 'straight': 0.41289587770040287, 'yo': 0.33133904942898, 'lot': 0.41709743634930696, 'intj': 0.23252329204038802, 'adv': 0.2530193305261752, 'adp': 0.1155169781763505}, {'crowd': 0.3642846781045897, 'shorty': 0.3726864768817464, 'bust': 0.32942361412186505, 'laugh': 0.3605575003401301, 'make': 0.24333472965630423, 'catch': 0.2996470665268587, 'right': 0.2675349864109332, 'man': 0.2341068935515072, 'bleed': 0.3827789855872029, 'propn': 0.10569044696873736, 'adv': 0.1954688053003413, 'adj': 0.10313220567099658, 'adp': 0.08924205778696778}, {'cinderellas': 0.6389768636614007, 'ghetto': 0.5261515998105413, 'lead': 0.47756040351153073, 'propn': 0.29463387911126476}, {'bougie': 0.37413245844777904, 'winter': 0.37413245844777904, 'ghetto': 0.32241336041526064, 'dance': 0.3145813675036374, 'grab': 0.32693933543602915, 'fuckin': 0.26506567714885787, 'girl': 0.2607663888377402, 'hand': 0.26621126588661176, 'heat': 0.29263781494318986, 'fuck': 0.20358050249252801, 'propn': 0.18054473100652418, 'adv': 0.1669538916963593, 'adj': 0.08808731945512203, 'adp': 0.07622346096418098}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'lane': 0.5693227024622292, 'dollar': 0.44543787615152314, 'switch': 0.5145027935122711, 'make': 0.3270722868306472, 'just': 0.2975063005993682, 'adv': 0.13136725128373147}, {'deadly': 0.6853931847977384, 'stroke': 0.6308457765753612, 'know': 0.32592777295077663, 'adj': 0.16137185389401026}, {'wait': 0.9527210526101088, 'propn': 0.3038463360211647}, {'stick': 0.6919468554584546, 'time': 0.5044758317661348, 'num': 0.3724442757335631, 'adp': 0.35776940318915545}, {'turn': 0.6897530867264321, 'wanna': 0.6563298138428106, 'adv': 0.22577115880531423, 'adp': 0.20615343476189296}, {'understand': 0.9376981617500567, 'cconj': 0.3474509425092477}, {'hoo': 0.4078938199188306, 'ay': 0.42182719244378847, 'wander': 0.42182719244378847, 'losin': 0.42182719244378847, 'wonder': 0.3588987183858157, 'way': 0.26341005511616006, 'mind': 0.28960305960484134, 'propn': 0.10178036584552477, 'adp': 0.08594049463194882}, {'fam': 0.6606500764839147, 'separate': 0.6889235291606725, 'adp': 0.29820437188378357}, {'maximillion': 0.7727650291714369, 'yeah': 0.4090190025093488, 'propn': 0.3563239471327105, 'adv': 0.3295010014790411}, {'chance': 0.4459529919498621, 'opportunity': 0.4807642471476075, 'blow': 0.3747193103067092, 'miss': 0.41783697051620705, 'shot': 0.37911212088626445, 'num': 0.2298117482877216, 'adv': 0.2417642081341283}, {'hold': 0.8277932771797106, 'like': 0.5002391049046705, 'adp': 0.2540061577604939}, {}, {}, {'bank': 0.7188568128178455, 'propn': 0.39092235635107775, 'hit': 0.5211825173322784, 'cconj': 0.2424734575112897}, {'humble': 0.9587640174501934, 'adj': 0.2842033758468841}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'saw': 0.3366391905402988, 'spend': 0.3027980520961628, 'artist': 0.311039357557689, 'fame': 0.2647713734127166, 'pain': 0.2534927886565199, 'cocaine': 0.2704645822555279, 'shoot': 0.23787552141495028, 'sign': 0.2736781518710344, 'game': 0.2200424766328948, 'mind': 0.22083675997875168, 'line': 0.2405146976164252, 'fiend': 0.2534927886565199, 'time': 0.18481330523496112, 'cconj': 0.1925599290428817, 'adp': 0.2621356336688869}, {'bucket': 0.4904192750939881, 'break': 0.35377328904164346, 'life': 0.31769260161346724, 'kick': 0.3961784241665804, 'short': 0.4904192750939881, 'propn': 0.12856227472991763, 'adv': 0.23776902235624517, 'adj': 0.12545041996935583, 'adp': 0.21710877907565354}, {'hear': 0.6460402534513991, 'hope': 0.7071489513990683, 'adv': 0.21219998942156387, 'adp': 0.19376149242080715}, {'sit': 1.0}, {'wifey': 0.3415054902068281, 'bougie': 0.3531710830204602, 'freaknik': 0.3531710830204602, 'chick': 0.3133981677747542, 'nerd': 0.3531710830204602, 'broad': 0.31881290509543314, 'ho': 0.25593572308371043, 'street': 0.24520236200876572, 'meet': 0.27237745270215225, 'propn': 0.17042942076652726, 'adv': 0.07880001509293513, 'adj': 0.1663041701401964, 'adp': 0.21585875525455125}, {'hurt': 0.5316116843894046, 'easy': 0.5074945756573163, 'feeling': 0.48007844714734077, 'look': 0.38197821620007594, 'adv': 0.26279368296541283, 'adp': 0.11997949752245463}, {'drink': 1.0}, {'ruby': 0.27047874878865485, 'doobie': 0.27047874878865485, 'ale': 0.27047874878865485, 'whippin': 0.27047874878865485, 'dippin': 0.27047874878865485, 'skippin': 0.27047874878865485, 'tail': 0.24991010737996555, 'sippin': 0.22934146597127628, 'villain': 0.20697383274432365, 'til': 0.19112532113833758, 'bail': 0.23787822346510193, 'light': 0.1855450071381232, 'jail': 0.21730958205641265, 'glow': 0.24991010737996555, 'people': 0.16955067569591345, 'propn': 0.12471844835839353, 'like': 0.2073948337671953, 'adv': 0.057665017981091846, 'cconj': 0.0773578509839542, 'adp': 0.26327192510579844}, {'beat': 0.4843572940064496, 'street': 0.46624976030035176, 'food': 0.49932788120429783, 'adv': 0.2996748305991577, 'cconj': 0.20100748860195206, 'adp': 0.41045319495155963}, {'uh': 0.8779526083862562, 'intj': 0.47874755083213627}, {'world': 1.0}, {'fang': 0.7105031598083634, 'throat': 0.641382002514816, 'adp': 0.28950714456195303}, {'explode': 0.3313917754494279, 'test': 0.30619098379561027, 'youthful': 0.3313917754494279, 'lyrical': 0.29144946568964025, 'thought': 0.2581358311890558, 'murderous': 0.30619098379561027, 'lead': 0.24767655764120822, 'damage': 0.2858450006141524, 'injure': 0.3313917754494279, 'master': 0.26941215164133797, 'propn': 0.15280560198494758, 'adv': 0.0706514385165581, 'adj': 0.22366040484605296, 'adp': 0.19353716566096196}, {'shazbot': 0.7241727387130538, 'spilt': 0.6691027953358164, 'propn': 0.16695895836591648}, {}, {'swag': 0.8129865258663987, 'say': 0.40047173113477985, 'fuck': 0.4227000133919987}, {}, {'motherfucke': 0.7958742367329973, 'mean': 0.6054619718072054}, {'man': 0.9114220658954327, 'propn': 0.4114727424737899}, {'session': 0.5290191273779926, 'tomorrow': 0.4854786525910655, 'special': 0.4854786525910655, 'meet': 0.421934306996544, 'adv': 0.1220674818334259, 'adj': 0.12880918387813503, 'cconj': 0.16375401240233695, 'adp': 0.11146078527415254}, {'common': 0.6144721459279613, 'woo': 0.6298571795130147, 'propn': 0.1881346633136818, 'adv': 0.1739724777793068, 'adj': 0.3671617132331657, 'adp': 0.15885564851606282}, {'knife': 0.5783223727657938, 'feel': 0.3888466913561308, 'steel': 0.5048728929936218, 'just': 0.3237199438176745, 'like': 0.2570489936601942, 'adv': 0.1429421801130829, 'adp': 0.2610432754883089}, {'shit': 0.8575193365852456, 'look': 0.5144517347452531}, {'girl': 1.0}, {'happen': 0.690445184434557, 'just': 0.4639070740943355, 'know': 0.4365785199325281, 'adv': 0.20484338332356186, 'cconj': 0.2747982134920869}, {'regret': 0.6463171280525056, 'way': 0.38563954483553686, 'payback': 0.6463171280525056, 'adp': 0.12581924109992865}, {'track': 0.3190973073517382, 'flip': 0.6432218967009921, 'cut': 0.2881120128861033, 'yo': 0.23661942936324928, 'rza': 0.3167126290807877, 'niggas': 0.23961989191559027, 'fake': 0.30823631146454306, 'propn': 0.2930967573424873, 'adp': 0.08249423514964756}, {'hear': 0.605361357991264, 'star': 0.6827500070995592, 'like': 0.3575658061069281, 'adv': 0.19883849818288993}, {'motrin': 0.22507346287138594, 'physical': 0.22507346287138594, 'moët': 0.22507346287138594, 'extend': 0.22507346287138594, 'shotgun': 0.20244762954251247, 'strong': 0.19084189851265831, 'stress': 0.20244762954251247, 'asian': 0.22507346287138594, 'amazin': 0.20795768069202214, 'hell': 0.1627060140342752, 'drink': 0.17222912139366545, 'half': 0.3254120280685504, 'nas': 0.1582039744383456, 'song': 0.15990760534591933, 'delete': 0.20795768069202214, 'man': 0.11493976772196998, 'cause': 0.1369315128951376, 'propn': 0.3632368388862316, 'like': 0.17257944894625316, 'adv': 0.04798478749872668, 'adj': 0.25317476953899937, 'adp': 0.26289173900318047}, {'home': 0.5503217778908172, 'phone': 0.5875951529761255, 'leave': 0.4844707444225734, 'num': 0.30855094823333096, 'adp': 0.14819678512371204}, {'weird': 0.9348123674385265, 'propn': 0.25418069837351503, 'adj': 0.2480282448801538}, {'bear': 0.6395301658370488, 'sound': 0.5653874601573196, 'propn': 0.19870419400196854, 'like': 0.33042604222801286, 'adv': 0.18374636745183234, 'cconj': 0.24649648278688704, 'adp': 0.16778026465231796}, {}, {'cynical': 0.4863158524199606, 'dress': 0.4374282524263056, 'cannibal': 0.4863158524199606, 'eat': 0.345512093741025, 'rhyme': 0.30758571215015507, 'kill': 0.30057843628216113, 'adj': 0.10940685968824487, 'cconj': 0.1390880038122091}, {'chitty': 0.5568118487293274, 'hooptie': 0.2784059243646637, 'coochie': 0.2784059243646637, 'thang': 0.4721259848681939, 'bang': 0.4192850751121707, 'matter': 0.20126014706046097, 'city': 0.19278017191647398, 'work': 0.20807583676463728, 'adv': 0.05935506100361043, 'adp': 0.10839515340351756}, {'penis': 0.5814754192083766, 'mean': 0.4087186520497767, 'eatin': 0.5015569301178924, 'yes': 0.4046014956305989, 'intj': 0.22785229112109326, 'cconj': 0.1663039666938915}, {'smile': 0.751122745220895, 'face': 0.5968524298683072, 'propn': 0.21554241286591846, 'adp': 0.1819979857802333}, {'champ': 0.7743749863221093, 'lock': 0.632726939965917}, {'dome': 0.49934788800225277, 'phone': 0.4382505783800204, 'zone': 0.5425250544401529, 'time': 0.31170964457029976, 'num': 0.23012890905935574, 'adj': 0.2554687608829729, 'adp': 0.22106147903219778}, {'leave': 1.0}, {'wicked': 0.6055243628779997, 'exorcist': 0.6731986218555439, 'propn': 0.31041362003798967, 'like': 0.2580940589553107, 'adp': 0.13105229002147287}, {'happen': 0.631910085967977, 'num': 0.712833717946902, 'cconj': 0.25150115697286046, 'adp': 0.17118674554781704}, {'sort': 0.8768917288470013, 'adv': 0.4251417096937531, 'adj': 0.2243109951794375}, {'sky': 0.4363332624235848, 'palm': 0.49716327554374057, 'cloud': 0.47932153174588693, 'hand': 0.3843409554091627, 'everybody': 0.369504178182218, 'adp': 0.2200943503573916}, {'handle': 0.4391514474729123, 'today': 0.400434785965944, 'say': 0.25079216281754196, 'tang': 0.39658109698520516, 'wu': 0.36171812445897567, 'world': 0.2777058726826259, 'niggas': 0.2878896867379795, 'propn': 0.35213910239543145, 'adv': 0.1085437262289967}, {'low': 0.8351601839769162, 'adv': 0.4864503698200643, 'adj': 0.25665834255205133}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'common': 0.8154022294383151, 'adv': 0.23086082450153148, 'adj': 0.4872222142512111, 'adp': 0.21080084885418518}, {'shoulder': 0.603044110462736, 'laugh': 0.5273112434189666, 'arm': 0.5386496785196038, 'adp': 0.2610309890240586}, {'talk': 0.9601332932799025, 'adp': 0.2795425891263957}, {'extra': 0.38329666440625815, 'flee': 0.4246041986473752, 'bear': 0.3297370287060908, 'thief': 0.3710445629472078, 'bullet': 0.3461407505673314, 'hood': 0.32322709538632427, 'try': 0.2819195611452073, 'stay': 0.2983232830064479, 'adj': 0.09997059822987263, 'cconj': 0.1270917654279344, 'adp': 0.08650626490709304}, {'friendly': 0.46604340164807606, 'snake': 0.407256618822437, 'hide': 0.3918627408451976, 'act': 0.36727314947872836, 'hand': 0.33160983793164783, 'man': 0.2490773670988026, 'money': 0.3123797223008042, 'adv': 0.10398424120613432, 'adj': 0.10972721845959774, 'adp': 0.18989766982804868}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'life': 0.5745231165610295, 'real': 0.6523104631883517, 'adj': 0.45373525155222894, 'adp': 0.19631242867132748}, {'house': 0.6333623254866849, 'wanna': 0.4990899511439773, 'man': 0.4112367274911003, 'just': 0.38880712062643547, 'adv': 0.17168215467482945}, {'alright': 0.9600522168198188, 'adj': 0.279820908760142}, {'ayy': 0.9521932312059845, 'propn': 0.30549640005326834}, {'sherane': 0.6147695970681353, 'homie': 0.5133248500535693, 'ayy': 0.44177275579483816, 'propn': 0.2834718460789799, 'adv': 0.26213297738124985, 'adp': 0.11967784976934412}, {'history': 0.31226493022416035, 'raise': 0.2747565120662753, 'type': 0.252589746540737, 'foul': 0.2915153413899546, 'livin': 0.2507806913505608, 'lie': 0.23634000910045938, 'eye': 0.2259734843161638, 'kid': 0.22335510664392677, 'vision': 0.2972309828959408, 'make': 0.17939422472302427, 'open': 0.2586156683205622, 'place': 0.22879091077370328, 'year': 0.23184015770653127, 'tell': 0.1801748488473453, 'propn': 0.07791841230952432, 'adv': 0.07205295938216279, 'adj': 0.22809718250809405, 'adp': 0.263168513462799}, {'associate': 0.3975316483189718, 'rush': 0.34289455163386345, 'west': 0.3496175677267742, 'east': 0.34289455163386345, 'plateau': 0.37984798678741244, 'bring': 0.2739659337331874, 'label': 0.2929515807759446, 'propn': 0.2749543018096974, 'adj': 0.08943300748442828, 'adp': 0.30955163113445117}, {'drunk': 0.581793399627552, 'drink': 0.4949515401929928, 'drug': 0.4908954504792029, 'num': 0.26216208703466154, 'propn': 0.1491241363388244, 'adj': 0.145514580934212, 'adp': 0.2518325009358226}, {'hear': 1.0}, {'platinum': 0.3860366509162268, 'underground': 0.3472297617741773, 'round': 0.3178734834015961, 'gold': 0.28645083632497603, 'sell': 0.5320879078217997, 'hood': 0.2807954937897914, 'loot': 0.33297943670624885, 'world': 0.21056595757112193, 'adj': 0.0868469688807086, 'adp': 0.1503003288846522}, {'figure': 0.9177333477407758, 'need': 0.3207148092783089, 'adv': 0.23432352326236142}, {'fuck': 1.0}, {'near': 0.3830229297344179, 'clear': 0.34451899924546503, 'box': 0.30436695472408903, 'light': 0.2627488945061933, 'listen': 0.28421456432611136, 'blunt': 0.31981930939764397, 'beer': 0.31981930939764397, 'right': 0.22353070000014463, 'ear': 0.3247687317370092, 'adv': 0.16331799987409673, 'adj': 0.08616896965687716, 'cconj': 0.21909174642762527, 'adp': 0.22369044042636338}, {'blanks': 0.38328977571846484, 'billy': 0.3662396447641763, 'tae': 0.38328977571846484, 'bo': 0.33709225337879906, 'fly': 0.28862116129278964, 'practice': 0.35414238433308765, 'flow': 0.2844125720932982, 'propn': 0.3534718074032195, 'like': 0.14694743981884847, 'adp': 0.14923085466595085}, {'hey': 0.865802444831939, 'intj': 0.43954164482737473, 'adv': 0.23914277949685842}, {'know': 0.49504998827517765, 'propn': 0.5023737029976378, 'adv': 0.23227829561621421, 'hit': 0.6697708302328598}, {'accident': 0.4463808046474101, 'curl': 0.4463808046474101, 'bend': 0.3961109304586364, 'doom': 0.2992002704105727, 'girl': 0.31112272631281745, 'good': 0.29637832350864884, 'know': 0.21226925620750078, 'propn': 0.3231143161271239, 'adv': 0.09959709566984755, 'adj': 0.10509777392944147}, {'seize': 0.530179525474567, 'people': 0.37789208055666895, 'london': 0.6028391022718461, 'propn': 0.27797066417169547, 'adv': 0.12852295356990864, 'cconj': 0.34482810682686993}, {'rich': 0.4951405258399986, 'child': 0.4716756565497015, 'soul': 0.4360517470938455, 'trade': 0.5717554466226963, 'adp': 0.12374375864254221}, {'lock': 0.7823794346231985, 'nigga': 0.5856277443313748, 'adp': 0.21194944054663134}, {'lunch': 0.8646229707678226, 'know': 0.4252024947874056, 'cconj': 0.2676377343484867}, {'ridin': 0.6191871245111895, 'dick': 0.4603929072098774, 'faggot': 0.6191871245111895, 'adj': 0.14578402062628992}, {'wannabe': 0.6947286233967003, 'gang': 0.5647947447769194, 'just': 0.3354312575316795, 'adv': 0.14811344232981855, 'adj': 0.15629364464091772, 'cconj': 0.19869477200592478}, {'silencer': 0.6352916573187968, 'married': 0.6648673903294245, 'like': 0.2548999921660088, 'adj': 0.14957573955916406, 'adp': 0.2588608806806754}, {'daddy': 0.7409094976797739, 'funk': 0.671604881048303}, {'crew': 0.6315601527184357, 'run': 0.49907117438926263, 'everybody': 0.5348299918888967, 'propn': 0.18864333147061513, 'adv': 0.1744428549977866}, {'testimony': 0.43654173025795945, 'complication': 0.43654173025795945, 'accord': 0.43654173025795945, 'wire': 0.40334477726325024, 'rush': 0.37654305386565684, 'propn': 0.20129051722286267, 'adv': 0.09306900019894672, 'adj': 0.09820913629019899, 'adp': 0.2549461254802651}, {'pull': 0.9606076677373006, 'adv': 0.2779080939524859}, {'skrrt': 0.47697032841219383, 'engine': 0.47697032841219383, 'bird': 0.39275084221080686, 'tire': 0.44069896997227087, 'sound': 0.31289459127885094, 'propn': 0.10996612402818348, 'like': 0.18286313142151134, 'cconj': 0.13641515185323808, 'adp': 0.1857046398533034}, {'neck': 0.45063348865113395, 'frozen': 0.5670883661337834, 'glow': 0.5239639532093527, 'send': 0.41513682537596636, 'adj': 0.12757831560641172, 'adp': 0.11039569395065561}, {'adp': 1.0}, {'woo': 0.9125263941077997, 'cconj': 0.3381238959726488, 'adp': 0.23014736806857905}, {'guillotine': 0.5628158017899737, 'protect': 0.5377796966507893, 'fly': 0.4238061138001006, 'neck': 0.4472383201188224, 'adv': 0.11999014146438838}, {'eyelid': 0.3725864940883688, 'apt': 0.3725864940883688, 'bolster': 0.3725864940883688, 'sided': 0.3725864940883688, 'attribute': 0.3725864940883688, 'shoot': 0.26327655556440416, 'crime': 0.29607370152913165, 'time': 0.2045482029227215, 'num': 0.1510137899439983, 'adj': 0.2514632295715894, 'adp': 0.1450636162824182}, {'propn': 1.0}, {'cop': 0.8829370447843915, 'intj': 0.46949140029121444}, {'really': 0.7313780911781357, 'wanna': 0.6448842989887585, 'adv': 0.22183401150951632}, {'unite': 0.3233002181223796, 'understand': 0.2893063331297621, 'voice': 0.28223967135889627, 'peace': 0.28013043760485556, 'god': 0.22861551795477444, 'black': 0.22210918186379872, 'people': 0.23495435465813277, 'life': 0.21353950433722832, 'come': 0.1975505824203874, 'love': 0.20160805852648622, 'got': 0.28446297187901515, 'num': 0.4557512581492804, 'propn': 0.17282822629716174, 'adj': 0.08432245624576037, 'cconj': 0.21439683305388363}, {'mumble': 0.19723209806798714, 'folk': 0.17502049610697276, 'def': 0.17502049610697276, 'mos': 0.17235321237973233, 'mighty': 0.18566407499798043, 'white': 0.15110540428210642, 'breath': 0.16780887645259832, 'beneath': 0.19723209806798714, 'mr': 0.15110540428210642, 'yo': 0.11525709612912688, 'say': 0.10167823348755915, 'nigga': 0.5551370896660806, 'propn': 0.6186576421497476, 'adv': 0.044006695484942245, 'adp': 0.08036572496458294}, {'area': 0.43608545395456066, 'chamber': 0.4105082449644612, 'banger': 0.43608545395456066, 'thirty': 0.43608545395456066, 'wu': 0.3242487480607345, 'num': 0.36995847087201184, 'propn': 0.1052206634339287, 'adp': 0.08884538570767228}, {'pussy': 0.44219289845568477, 'buy': 0.437000603590512, 'good': 0.3450764765060285, 'yo': 0.3037137872698924, 'world': 0.296685232241784, 'ass': 0.36666584396425916, 'ooh': 0.3908614660963814, 'propn': 0.12540182695980148, 'adp': 0.1058857958226651}, {'memorex': 0.9744377054874274, 'propn': 0.2246578690462405}, {}, {}, {'prop': 0.41677574758397734, 'chip': 0.33882690889430866, 'stock': 0.34800248606112866, 'neck': 0.662376872230331, 'propn': 0.2882645574830281, 'like': 0.15978544945857703, 'adv': 0.08885496951663333, 'adj': 0.09376236762688762, 'adp': 0.16226835401339218}, {'beef': 0.3681661151515068, 'scripture': 0.42513381679409296, 'picture': 0.3842489622130588, 'release': 0.40768630579811727, 'maybe': 0.3507186041555311, 'police': 0.42513381679409296, 'propn': 0.21793892229933362, 'adv': 0.10076658296017892, 'adp': 0.09201076566371041}, {'adv': 1.0}, {'talent': 0.7794621532451784, 'wait': 0.6264493209018507}, {'dirt': 0.5875203649910298, 'dick': 0.46406557029084655, 'nigga': 0.35133813102423983, 'fast': 0.5087929536687665, 'adv': 0.1392559642658043, 'adj': 0.14694697422953762, 'adp': 0.127155724833881}, {'rasta': 0.3658042447001005, 'packin': 0.34953193411190325, 'cobra': 0.3658042447001005, 'weed': 0.305441924836805, 'stone': 0.31552779005801457, 'spot': 0.2823511486393974, 'propn': 0.4216832006787243, 'like': 0.2804875091321553, 'adp': 0.28484600182565634}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'champ': 1.0}, {'goodbye': 0.610001794314065, 'word': 0.4016347098507565, 'die': 0.4147346058797282, 'say': 0.30048280849911696, 'time': 0.33488806702956847, 'num': 0.24724106829851394, 'adv': 0.13005001167431562, 'adp': 0.11874969654827931}, {'stupor': 0.46915926142534314, 'foofur': 0.46915926142534314, 'treat': 0.42199635239873345, 'cat': 0.3590067276618975, 'beat': 0.32332936426443654, 'propn': 0.10816527246593248, 'like': 0.1798684877636687, 'adj': 0.1055471279226931, 'cconj': 0.13418115987161064, 'adp': 0.273995193684907}, {'step': 0.35200282858644605, 'just': 0.10804337480121719, 'num': 0.9069833244752532, 'propn': 0.05159140532711944, 'adv': 0.04770776665388047, 'cconj': 0.19200047617074895}, {'adj': 0.2971484424351353, 'young': 0.954831295652993}, {'bastard': 0.6243258669054148, 'little': 0.5106066460925398, 'pass': 0.5438673859859202, 'adv': 0.15940821716595985, 'adj': 0.1682122220284318}, {'adj': 1.0}, {'burner': 0.4307091608764645, 'auto': 0.3979557474523743, 'semi': 0.3787962288286645, 'dome': 0.3787962288286645, 'throne': 0.35015438028295764, 'come': 0.22701016317167963, 'propn': 0.09930055222237022, 'adj': 0.09689697857054458, 'adp': 0.4192330467827353}, {'boulevard': 1.0}, {'huh': 0.5065001250277845, 'grandma': 0.5950094659438918, 'nigga': 0.346388900628464, 'stay': 0.43232881995630246, 'intj': 0.252345312616204, 'adv': 0.13729429318521827}, {'bo': 0.5562834614317406, 'god': 0.3858008624982942, 'man': 0.32301346982164225, 'intj': 0.247854409739439, 'propn': 0.4374852549336943, 'adv': 0.13485091379434896, 'hit': 0.3888404994969154, 'adp': 0.12313343833016907}, {'intj': 1.0}, {'barely': 0.5707313868463962, 'home': 0.45869358533798443, 'daughter': 0.504215368558314, 'know': 0.2883122269274733, 'adv': 0.27055317346580193, 'adj': 0.14274781844572507, 'cconj': 0.1814740791641312}, {'slickness': 0.5836869332872655, 'buttery': 0.5577224038911961, 'listen': 0.43311330619843397, 'intj': 0.22871887727946844, 'yeah': 0.308941318795023, 'adp': 0.11362695463051752}, {'feel': 0.4731726937774753, 'nah': 0.6416951235630372, 'just': 0.3939224410306582, 'adv': 0.3478817638007715, 'adj': 0.18354751571926436, 'cconj': 0.2333423849183519}, {'32': 0.5041352556702802, '16': 0.5041352556702802, 'bar': 0.37678208682351577, 'rock': 0.3261031657082229, 'intj': 0.1975463953330543, 'num': 0.40866417227189655, 'like': 0.19327774920242788}, {'fella': 0.6243295663757071, 'spot': 0.568336155340161, 'try': 0.4671361883022721, 'adv': 0.15697979220073302, 'cconj': 0.21058901562361862}, {'destiny': 0.6401890526119984, 'rule': 0.47177223688026276, 'yo': 0.3574674001509999, 'dream': 0.44998842254900623, 'propn': 0.14759641128069914, 'adp': 0.12462628215166278}, {}, {'happen': 0.7428417602548576, 'adv': 0.22038855925869394, 'think': 0.6321510912506139}, {'blanks': 0.38328977571846484, 'billy': 0.3662396447641763, 'tae': 0.38328977571846484, 'bo': 0.33709225337879906, 'fly': 0.28862116129278964, 'practice': 0.35414238433308765, 'flow': 0.2844125720932982, 'propn': 0.3534718074032195, 'like': 0.14694743981884847, 'adp': 0.14923085466595085}, {'rhyme': 0.8150320919244776, 'num': 0.522295732008116, 'adp': 0.25085824176079236}, {'swear': 0.5203661883047048, 'rape': 0.5696195411810977, 'actually': 0.5146785481659368, 'adv': 0.27616753316982917, 'adp': 0.2521707636792233}, {'say': 0.404869257535315, 'vibe': 0.5906263677864738, 'bitch': 0.44549960483754647, 'adv': 0.1752288323316638, 'kill': 0.5080022995887238}, {'maybe': 0.6416534924480536, 'stick': 0.6511483468360199, 'adv': 0.36871286046623386, 'adp': 0.16833731781379224}, {}, {'funny': 0.9701165092812742, 'adj': 0.24263956482798843}, {'clang': 0.5024925948821846, 'yang': 0.48013988659446194, 'yin': 0.48013988659446194, 'mic': 0.32394890954082695, 'intj': 0.1969027154598588, 'propn': 0.11585031546093426, 'like': 0.19264797817123097, 'cconj': 0.2874292154154402, 'adp': 0.09782076662104833}, {'holla': 0.5092037752821513, 'ghetto': 0.46615352607778193, 'universal': 0.5230628599929402, 'black': 0.3354691602731322, 'life': 0.3225256948138203, 'propn': 0.13051810704286235, 'adj': 0.12735891128661045}, {'sign': 0.93439627707529, 'adv': 0.24503883999921341, 'adj': 0.2585721645492369}, {'city': 0.7560238306671303, 'man': 0.5575677125941667, 'propn': 0.25172082660798933, 'adv': 0.23277207475918887}, {'bliss': 0.5756507416979267, 'fistfull': 0.6024499172383105, 'cash': 0.4171620948128357, 'like': 0.23097008729570986, 'adv': 0.12843998083339123, 'adj': 0.1355336315616703, 'cconj': 0.1723027451573732, 'adp': 0.11727956462493938}, {'fucking': 0.6853226083878725, 'good': 0.5728824059654561, 'adv': 0.19251550895843078, 'adj': 0.40629601299809653}, {'coupe': 0.5747968520111055, 'room': 0.45675899234784734, 'shoot': 0.20308108016236137, 'juice': 0.22837949617392367, 'propn': 0.06626007757094553, 'hop': 0.5970208942246201, 'cconj': 0.08219693677055738}, {'hog': 0.26725361839598194, 'soda': 0.26725361839598194, 'shelf': 0.24038756431202624, 'cent': 0.2469302330410131, 'meat': 0.2469302330410131, 'ayo': 0.21237154137633713, 'dead': 0.1931981248731018, 'fear': 0.20450592130410436, 'cold': 0.18505783818089033, 'cut': 0.18170327551253432, 'crazy': 0.18987527713186797, 'black': 0.15837002444684295, 'inside': 0.18092135058029343, 'devil': 0.20817576063669518, 'eat': 0.18987527713186797, 'hood': 0.1943950440107132, 'place': 0.18092135058029343, 'plant': 0.24038756431202624, 'fast': 0.20817576063669518, 'baby': 0.16656757765582478, 'propn': 0.18484699862995943, 'adv': 0.05697743271637973, 'adj': 0.18037276998185398, 'adp': 0.2081061818622309}, {'mother': 0.7658287043130497, 'word': 0.5845785703673593, 'propn': 0.2046964542470191, 'adp': 0.17283996162967613}, {'option': 0.3930504380755317, 'failure': 0.3930504380755317, 'success': 0.35353847789913595, 'shoot': 0.27773675949473053, 'jail': 0.3157868291235838, 'motherfuckin': 0.309139598817062, 'plot': 0.31233525620246644, 'end': 0.2762748689471881, 'propn': 0.09061828513867946, 'like': 0.1506895285338908, 'adv': 0.08379682574179466, 'adj': 0.08842486609257787, 'cconj': 0.22482755006814237, 'adp': 0.15303109166136908}, {'make': 0.4552171735023941, 'song': 0.6092949057778665, 'know': 0.3896748951065271, 'like': 0.32878917440303845, 'adv': 0.36567224572666285, 'adp': 0.16694911310317476}, {'dat': 1.0}, {'feraud': 0.5452153639435741, 'relief': 0.520962190646418, 'prophet': 0.49040680590411495, 'come': 0.28736196016976956, 'propn': 0.2514002098750154, 'adp': 0.21227530681139264}, {'rugged': 0.7680357098053834, 'slang': 0.5982572623132111, 'adj': 0.1727855975085015, 'adp': 0.1495143265606107}, {'duet': 0.3928711051067771, 'cook': 0.3546507185014596, 'thought': 0.32027167802646367, 'coke': 0.3546507185014596, 'black': 0.24364716297206498, 'music': 0.29211697575536033, 'pharoahe': 0.33033736236067773, 'crack': 0.28470550166298375, 'rap': 0.24889147544368725, 'propn': 0.2843811318297022, 'cconj': 0.11759347291596202}, {'foolproof': 0.6200706802766014, 'plan': 0.4705977179438363, 'case': 0.4705977179438363, 'just': 0.2993846532863213, 'adv': 0.1321966590271282, 'adj': 0.1394977884768459, 'cconj': 0.17734234389644002, 'adp': 0.12070981726230925}, {'clementine': 0.44118549287496767, 'darling': 0.44118549287496767, 'gone': 0.44118549287496767, 'forever': 0.3632845977540343, 'oh': 0.2719456192948779, 'intj': 0.17287940648945319, 'propn': 0.10171588406857313, 'lose': 0.2949892336354096, 'like': 0.16914377259781965, 'adv': 0.094059032340137, 'cconj': 0.12618056600362265, 'adp': 0.17177209604544755}, {'til': 0.5763042724542087, 'mayhem': 0.7793003645045804, 'propn': 0.18803310365866618, 'adp': 0.15876989438348346}, {'come': 0.9270313600105353, 'adv': 0.37498380972652334}, {'pay': 0.6388835787901994, 'check': 0.556939621198046, 'want': 0.5035401739589238, 'adp': 0.16761063302016632}, {'face': 1.0}, {'collar': 0.5782633639228331, 'worker': 0.6282641231308574, 'blue': 0.49901403557052665, 'adj': 0.14792114735520748}, {'number': 0.826221291530425, 'adv': 0.46784794472496277, 'cconj': 0.3138099393556943}, {'nas': 0.9501925120844456, 'propn': 0.3116635846207422}, {'nemesis': 0.6116094280092014, 'swear': 0.49138274181493097, 'make': 0.3246460245619008, 'leave': 0.3892282392300666, 'adp': 0.35718796891652715}, {'new': 0.5182706236286505, 'teach': 0.6334154335502552, 'adv': 0.5420583036010642, 'adj': 0.19066526878550427}, {'rifle': 0.40043573404753263, 'ted': 0.40043573404753263, 'understand': 0.3090819505314233, 'mic': 0.2581544896523169, 'say': 0.5917559019247319, 'propn': 0.2769629239339194, 'like': 0.1535209380943356, 'hit': 0.24616692898807227, 'adp': 0.07795324923380405}, {'friend': 0.6830586853140478, 'just': 0.5063395859097312, 'know': 0.47651135182898213, 'adv': 0.22357993589748346}, {'propn': 0.3391094035993614, 'adv': 0.9407469438645472}, {'guess': 0.9561864764792435, 'propn': 0.29275829996467917}, {'stupid': 0.39134085862680795, 'sing': 0.40808884313587535, 'claim': 0.3990137448766043, 'lucid': 0.4191958657486085, 'dream': 0.31890359523564926, 'just': 0.219055749412508, 'propn': 0.10460052713060282, 'adv': 0.38690611419313464, 'adj': 0.10206866738409123, 'cconj': 0.12975902277680418, 'adp': 0.08832175995525611}, {'mouth': 1.0}, {'road': 0.6034720187108792, 'laugh': 0.5764182602658429, 'head': 0.4635313450056094, 'adv': 0.15624662998436742, 'cconj': 0.20960547559421513, 'adp': 0.14267003638415898}, {'shit': 0.5837077685423788, 'propn': 0.7815954796280218, 'adp': 0.21998578855989614}, {'lesson': 0.34454047293662715, 'memorize': 0.3917587523122811, 'depend': 0.32711361093152286, 'stab': 0.337915087492546, 'skin': 0.32711361093152286, 'good': 0.2485408353808974, 'need': 0.22862889226049, 'let': 0.21952385211738734, 'pretend': 0.36196733494173156, 'adv': 0.25056433007226364, 'adj': 0.08813427453082218, 'cconj': 0.11204434847010214, 'adp': 0.1525281839851901}, {'dr': 0.34904387191077985, 'twice': 0.39687932914391205, 'scream': 0.3063368894116779, 'king': 0.2735163764900269, 'hear': 0.25760363316306245, 'cause': 0.2414557730759124, 'propn': 0.4575052045495954, 'adv': 0.3384525217438052, 'adj': 0.08928625472672445, 'adp': 0.30904368047061365}, {'adv': 1.0}, {'biggie': 0.4947930493251649, 'fat': 0.41334599694478485, 'rhymes': 0.4947930493251649, 'lip': 0.45406952313497484, 'come': 0.2822501033911088, 'propn': 0.12346403676368414, 'adv': 0.11417005252562358, 'adj': 0.12047558504743708, 'adp': 0.10424957997136801}, {'gold': 0.6686947926769715, 'line': 0.6438479731457638, 'adj': 0.2027367648681753, 'cconj': 0.25773751303355835, 'adp': 0.17543158287166075}, {'dope': 0.5652293313791582, 'smoke': 0.48043429861130904, 'just': 0.3396779068188707, 'adv': 0.2999771961179183, 'think': 0.43021950076285737, 'cconj': 0.20121030087498937, 'adp': 0.13695577782651486}, {'heaven': 0.6136646302658995, 'soul': 0.45561345796223696, 'time': 0.3646271311636061, 'hope': 0.4718731291133961, 'propn': 0.15312566046563555, 'adv': 0.14159884251836397, 'adp': 0.1292950255379652}, {'yo': 0.8185512783769435, 'intj': 0.5744334640909001}, {'borrow': 0.7104932039200805, 'girl': 0.4731777041285476, 'money': 0.45504518009773837, 'adv': 0.1514743896257387, 'cconj': 0.20320349617155264}, {}, {'shady': 0.6963666030328945, 'sound': 0.47808653035527154, 'time': 0.4000998378701705, 'propn': 0.1680224719717142, 'like': 0.27940527726571657, 'adp': 0.14187347658435234}, {}, {'quit': 0.9743967868319501, 'adv': 0.2248352770620552}, {'adv': 0.3109712322947088, 'think': 0.8919737236083117, 'adj': 0.328145956972554}, {'mouth': 0.6171064394006723, 'live': 0.5154257556959562, 'way': 0.47704039537369614, 'adv': 0.17045060341950466, 'adp': 0.31127959424143276}, {'know': 0.5791530722685383, 'adv': 0.815218816565168}, {'maker': 0.6402293536605378, 'shake': 0.6034234194862063, 'money': 0.47538042821195736}, {'post': 0.5653606046354249, 'normal': 0.5402112973590677, 'close': 0.44038458528788615, 'life': 0.32209697826808176, 'adj': 0.2543792394873223, 'cconj': 0.1616950743873742}, {'fuck': 0.8761879585800828, 'cconj': 0.48196956463999596}, {'island': 0.5985878670777757, 'staten': 0.7094599632967881, 'propn': 0.3719665655219556}, {'stare': 0.35645309159630617, 'care': 0.3176709306624971, 'criminal': 0.33276725827523673, 'guzzle': 0.36862928419925506, 'spot': 0.29777794718595363, 'mad': 0.2806165675837262, 'corner': 0.3034296860700605, 'beer': 0.32213033239185135, 'adv': 0.08224907008288768, 'adj': 0.26037488689828625, 'hot': 0.2862683064678331, 'adp': 0.07510227786969147}, {'num': 1.0}, {'witness': 0.3961552805213926, 'star': 0.35672251127064514, 'court': 0.3795740911993534, 'sit': 0.3063599482830204, 'business': 0.3761237980075001, 'snitch': 0.3761237980075001, 'rap': 0.2949769276538952, 'tell': 0.25978353434186247, 'adj': 0.1096266443854558, 'cconj': 0.13936741421563945, 'adp': 0.09486180645111064}, {'challenge': 0.24807802911108032, 'change': 0.18827684985782808, 'exist': 0.2370426111292227, 'dangerous': 0.20168042947691692, 'feel': 0.28775016943910314, 'rich': 0.19323903907236228, 'inside': 0.3358802948708649, 'gold': 0.1840813786568203, 'life': 0.28266979657313535, 'new': 0.15170483838246243, 'soul': 0.3403567924531721, 'maybe': 0.1840813786568203, 'say': 0.12220157974788494, 'know': 0.1127218245722473, 'like': 0.09510932344815697, 'look': 0.3075043417744757, 'adv': 0.21155708643982474, 'adj': 0.16743092778674729, 'cconj': 0.2128535046947055, 'adp': 0.1931744526119781}, {'better': 0.9513686148610682, 'adv': 0.30805479814041614}, {'fly': 0.6329876778008229, 'time': 0.46149062278014363, 'stay': 0.5643328163372194, 'adv': 0.17921468929152903, 'adj': 0.18911259182127357}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'track': 0.4602270028553367, 'phat': 0.5839952042380993, 'rza': 0.45678763402291955, 'intj': 0.23949320758502238, 'yeah': 0.32349471225919174, 'propn': 0.14090899449851474, 'adp': 0.23795922886880388}, {'fab': 0.42877341049854223, 'singin': 0.42877341049854223, 'say': 0.21121091740594586, 'pad': 0.396167201819958, 'man': 0.21896457973911057, 'play': 0.2928079657274685, 'propn': 0.29656278743269837, 'like': 0.16438516998542937, 'look': 0.26574236710562105, 'adp': 0.33387909910611024}, {'doubt': 1.0}, {'chance': 1.0}, {'wake': 0.3945132132554804, 'drank': 0.8024606530984687, 'pass': 0.37810683467581774, 'propn': 0.2396903134610346}, {'know': 1.0}, {'common': 0.9300441751019765, 'adj': 0.27786175091572146, 'adp': 0.2404385155022666}, {'boy': 0.5636083662433788, 'nigga': 0.4356844628964031, 'blast': 0.6198171675746982, 'adv': 0.17268737617347243, 'cconj': 0.23166080199988495, 'adp': 0.1576822120529527}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'grief': 0.9132010429150258, 'adv': 0.4075093314501022}, {'weak': 0.7565850565979045, 'thing': 0.5868375412832492, 'adv': 0.19840910026929776, 'adj': 0.20936709675520662}, {'art': 0.4602062277678406, 'breathe': 0.43932850073479185, 'dark': 0.4196333255346417, 'bring': 0.36769563208129125, 'light': 0.36599886618145794, 'life': 0.3039658010167227, 'adj': 0.12002998244279238, 'adp': 0.2077279848643985}, {'shall': 0.797400479544963, 'doom': 0.567783385256069, 'propn': 0.2043881176796281}, {'sayin': 0.8454744744520898, 'know': 0.4834454555334038, 'adv': 0.22683342913702648}, {'chasin': 0.60660027599338, 'free': 0.44122915175623584, 'thing': 0.3825059434793524, 'flow': 0.45011569746255153, 'adj': 0.27293468206809524, 'adp': 0.11808751936757286}, {'slim': 0.24390525512732827, 'chickenhead': 0.27485892377523724, 'oil': 0.2876548641146295, 'boil': 0.575309728229259, 'snake': 0.24018817894219438, 'skin': 0.24018817894219438, 'throw': 0.202192396157611, 'right': 0.16787426585289295, 'man': 0.1468986296457507, 'propn': 0.06631919970754081, 'like': 0.11028247689062268, 'adj': 0.32356970475283936, 'hot': 0.21344858371093944, 'adp': 0.27999038808287285}, {'koopa': 0.5428824174548447, 'boss': 0.48830838221405654, 'throne': 0.44134806899298157, 'king': 0.37413697509187344, 'propn': 0.25032448223474574, 'like': 0.20813281861776942, 'adj': 0.12213268430001013, 'adp': 0.10568349623733667}, {'grand': 0.42197172825055596, 'bird': 0.42197172825055596, 'stand': 0.36612934580682754, 'hand': 0.3484149285912309, 'strap': 0.473487223988242, 'num': 0.20770506713159945, 'adv': 0.10925388161106475, 'adj': 0.1152878974356464, 'cconj': 0.2931290334760178, 'adp': 0.09976058533947722}, {'write': 0.9640828753718637, 'adp': 0.26560159904398084}, {'runner': 0.52595850532185, 'wannabe': 0.52595850532185, 'ill': 0.38257190830007165, 'spot': 0.4059684661014109, 'niggas': 0.29740765739519126, 'adj': 0.11832529848090304, 'cconj': 0.15042593867595397, 'adp': 0.10238890030510216}, {'wound': 0.277744623794639, 'seein': 0.3158087244491748, 'baboon': 0.3158087244491748, 'read': 0.23780723246807017, 'enemy': 0.277744623794639, 'worthy': 0.2917929508032894, 'stab': 0.2724036977432625, 'sign': 0.2567435713984479, 'make': 0.16763320220244696, 'feed': 0.2567435713984479, 'ya': 0.1997431318135344, 'bleed': 0.26369629678598866, 'propn': 0.0728101084978781, 'actually': 0.2509555754339397, 'adv': 0.2693167704376959, 'adj': 0.07104773704620512, 'adp': 0.12295763896173172}, {'mac': 0.7469347025082047, 'spit': 0.6321029385313259, 'propn': 0.206238757970083}, {'tramp': 0.6805812981523742, 'swing': 0.5870416105665665, 'just': 0.32860059741836467, 'adv': 0.29019457514732216}, {'book': 0.573897889686542, 'picture': 0.573897889686542, 'world': 0.3850514770349373, 'like': 0.27064123255776423, 'adj': 0.3176254512292569, 'adp': 0.13742336202736985}, {'crave': 0.5278045756751001, 'slay': 0.5278045756751001, 'life': 0.3007005750792359, 'street': 0.35014730065920735, 'shot': 0.3529052287577934, 'hit': 0.3244666258590429}, {'slippin': 0.9780202119011796, 'adv': 0.2085101079390913}, {'black': 0.6340984841876902, 'rock': 0.692173980939075, 'propn': 0.2467032551294524, 'adj': 0.24073179343484977}, {'way': 0.7700591916617072, 'know': 0.5864188470550353, 'adp': 0.25124047674680333}, {'hideous': 0.8281213209695168, 'face': 0.5286834884283469, 'adj': 0.18630310469483927}, {'mountain': 0.4853150031479328, 'hill': 0.43349195505082067, 'run': 0.32909698063229575, 'intj': 0.21142549385049625, 'yeah': 0.28558233440980957, 'tell': 0.5752901475642026, 'adp': 0.10503564586901565}, {'pussy': 0.8339838333909078, 'love': 0.551788877780811}, {'ok': 0.7401282678291985, 'intj': 0.6724657219220548}, {'lock': 0.293112470106378, 'cold': 0.5648870698421266, 'deep': 0.27272986017586404, 'block': 0.28822578260585, 'yo': 0.2277592091160233, 'shit': 0.21069294395933047, 'check': 0.2638491458023613, 'world': 0.22248839757723773, 'intj': 0.1598342277719497, 'yeah': 0.2158955907085633, 'propn': 0.18808116145671025, 'adj': 0.27529297466114816, 'cconj': 0.11665920040191102, 'adp': 0.15881047304421553}, {'lady': 0.630391711543646, 'miss': 0.6018576880325881, 'just': 0.39432836129102744, 'adv': 0.174120120554282, 'cconj': 0.23358283428547455}, {'porch': 0.19684795642296668, 'wise': 0.19684795642296668, 'spice': 0.18809143942794793, 'season': 0.19684795642296668, 'lounge': 0.19684795642296668, 'rib': 0.18187859174707122, 'calvin': 0.19684795642296668, 'judge': 0.16979300149591176, 'ayo': 0.15642408949684028, 'lick': 0.1600318276281571, 'great': 0.15193986239528026, 'slick': 0.19684795642296668, 'big': 0.2632363427433185, 'boy': 0.13697049771938477, 'beer': 0.16436555775703368, 'rock': 0.12733237961581437, 'num': 0.1595696914076157, 'propn': 0.589986151163564, 'doubt': 0.15642408949684028, 'adv': 0.08393443845409923, 'adj': 0.08857007905918429, 'adp': 0.22992360326738034}, {'huh': 0.594687860902794, 'uh': 0.5433369829450062, 'intj': 0.5925633055286813}, {'codependence': 0.6683868314711171, 'form': 0.6011962846374328, 'come': 0.3522808833814877, 'adp': 0.26023114736346603}, {'dropper': 0.8120735197727644, 'body': 0.5835551374839172}, {'street': 0.9445841015993817, 'propn': 0.328269515803233}, {'friend': 0.7568011054438961, 'just': 0.5610035661435258, 'adv': 0.24771743084489997, 'adp': 0.22619274972630285}, {'cause': 0.9379280453874917, 'adj': 0.3468299030873769}, {'vapor': 0.39672014342608947, 'plenty': 0.3790725805999228, 'stackin': 0.39672014342608947, 'keepin': 0.3665514355099233, 'paper': 0.3665514355099233, 'turn': 0.258397748935258, 'day': 0.2486855942705934, 'propn': 0.09146434043748537, 'adv': 0.1691583853192266, 'adj': 0.17850088518125, 'cconj': 0.22692664673237076, 'adp': 0.15445986253011826}, {'dollar': 0.35829358609682826, 'million': 0.40293516917812144, 'feel': 0.2874464902338193, 'nah': 0.3898217574556341, 'turn': 0.3228227958141689, 'rich': 0.38607020573283546, 'just': 0.23930295341990332, 'num': 0.20088579114532198, 'adv': 0.21133381815119975, 'adj': 0.22300563780821828, 'cconj': 0.14175257881451753, 'adp': 0.09648529228390888}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'motto': 0.7472019687781188, 'stay': 0.5016247917612142, 'know': 0.33951402123938834, 'adv': 0.1593005556187516, 'adj': 0.16809861440891954, 'adp': 0.14545860008896144}, {'chest': 0.6460565934608132, 'good': 0.46604523431887773, 'beat': 0.5062603090079768, 'adj': 0.16526281712336383, 'adp': 0.2860094725949985}, {'loud': 0.6423236713134096, 'crowd': 0.655269699614064, 'adv': 0.3516062931867263, 'adj': 0.18551263199482435}, {}, {'position': 0.3394567480541696, 'morning': 0.34869579940316014, 'strawberry': 0.3606070082367213, 'swear': 0.30320877865863405, 'share': 0.3319078934476776, 'switch': 0.31511998749219516, 'poor': 0.29682631303048596, 'tear': 0.3068114038531286, 'man': 0.19272678006243707, 'adv': 0.1609182577953338, 'adj': 0.254708491725833, 'adp': 0.14693573676970015}, {'helmet': 0.3900296957758071, 'tarde': 0.3900296957758071, 'dude': 0.35082140006047713, 'mask': 0.30993484081373, 'wear': 0.3307098343295296, 'robbery': 0.3603697650526684, 'plot': 0.30993484081373, 'like': 0.2990628442417809, 'adp': 0.2277824841660152}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'beatbox': 0.3907254425678669, 'sheet': 0.3907254425678669, 'proof': 0.3610126035613927, 'statement': 0.37334454595911465, 'sound': 0.2563175744317335, 'god': 0.23831988206673896, 'point': 0.3139188679461663, 'make': 0.2073994543179915, 'rock': 0.2527432912318719, 'propn': 0.18016450885495577, 'cconj': 0.11174881833478967, 'adp': 0.22818880946473558}, {'sing': 1.0}, {'luck': 0.7421092566433908, 'low': 0.6407062129343691, 'adj': 0.19689946650890872}, {'bow': 0.9721032252951693, 'propn': 0.23455344672532355}, {'brother': 0.696774878347707, 'come': 0.53035880748179, 'like': 0.3857832638165084, 'adv': 0.21452992285965083, 'adp': 0.1958889731121846}, {'wait': 0.8791492390353404, 'intj': 0.47654655124508255}, {'mistake': 0.6446644436545048, 'state': 0.5385473129031562, 'break': 0.4426516536141161, 'adj': 0.15696729393123862, 'adp': 0.27165295698926345}, {'friend': 0.4336276807296259, 'big': 0.44514086585037077, 'girl': 0.44338078572239564, 'good': 0.4223685473115417, 'adv': 0.1419357533186619, 'adj': 0.4493242984987697, 'adp': 0.12960266146036256}, {'magazine': 0.3940521045954048, 'ink': 0.3465574098284618, 'flood': 0.3640862885301459, 'hands': 0.3940521045954048, 'pocket': 0.33412047246488696, 'stack': 0.306944755685569, 'face': 0.2515680202945759, 'just': 0.19025758911615523, 'intj': 0.1544100952287653, 'propn': 0.1816984412919603, 'like': 0.15107355216293678, 'adv': 0.1680207543013761, 'adp': 0.15342108262987517}, {'payback': 1.0}, {'right': 0.6255557117469783, 'intj': 0.420025472466207, 'yeah': 0.5673481128217359, 'adv': 0.2285245553569765, 'adj': 0.24114580746258435}, {}, {'holy': 0.45723435557300873, 'sin': 0.4426188312669941, 'wash': 0.47680234530712645, 'feel': 0.3074307249927529, 'need': 0.3093587356332586, 'water': 0.3906376657544853, 'adj': 0.11925486523262754, 'adp': 0.10319327028084846}, {'seed': 0.699000026458246, 'feed': 0.7151216421080901}, {}, {'lot': 0.7290345254400546, 'thing': 0.6540193282880525, 'adp': 0.2019093334693539}, {'owe': 1.0}, {'light': 0.860950791615336, 'num': 0.5086882487505743}, {'bucket': 0.4904192750939881, 'break': 0.35377328904164346, 'life': 0.31769260161346724, 'kick': 0.3961784241665804, 'short': 0.4904192750939881, 'propn': 0.12856227472991763, 'adv': 0.23776902235624517, 'adj': 0.12545041996935583, 'adp': 0.21710877907565354}, {'ooh': 0.9521932312059845, 'propn': 0.30549640005326834}, {'dummy': 1.0}, {'job': 0.6090423327496378, 'punk': 0.5761403399725676, 'lose': 0.4945459623118376, 'adv': 0.1576888555880828, 'adj': 0.16639790130753757}, {'good': 0.8382581057403711, 'adj': 0.29725203870738703, 'cconj': 0.37789397128050617, 'adp': 0.2572172624741875}, {'pad': 0.6541264826630482, 'time': 0.38866874678473934, 'rough': 0.6106606488562222, 'adv': 0.15093513335706302, 'adj': 0.15927117569928423}, {'affection': 0.6497862835736777, 'hell': 0.46973168149473243, 'sure': 0.4669357081759119, 'adv': 0.1385319101554297, 'adj': 0.14618293111469538, 'cconj': 0.18584110848348603, 'adp': 0.25298917057244225}, {'flight': 0.7015220044696274, 'class': 0.6783500335824425, 'adj': 0.16516929102835093, 'adp': 0.14292380657121806}, {'caliber': 0.4354360034220663, 'thousand': 0.38051004228386526, 'buck': 0.370477357473929, 'matter': 0.3294318072253746, 'bet': 0.3661271571708651, 'spit': 0.32201143561899015, 'num': 0.3694075015064212, 'adv': 0.19431015330141493, 'adp': 0.08871307062462085}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'diamond': 0.24475622095733707, 'drum': 0.2734453038448232, 'dum': 0.6051614153454625, 'tat': 0.5760260115175544, 'rat': 0.2880130057587772, 'propn': 0.0755019409974312, 'like': 0.1255524961092013, 'look': 0.2029661040289448, 'adj': 0.07367441363749534, 'adp': 0.127503455132781}, {'dead': 0.954831295652993, 'adj': 0.2971484424351353}, {'joyner': 0.6806903053477128, 'smoke': 0.503099556661059, 'want': 0.43085669745150207, 'propn': 0.16985035056323927, 'adv': 0.1570645505655825, 'cconj': 0.2107027193071902}, {'yellow': 0.20855673145450465, 'midnight': 0.2142330550572345, 'freeze': 0.19999755379892048, 'ease': 0.2142330550572345, 'spray': 0.20855673145450465, 'undercover': 0.2142330550572345, 'clip': 0.18849996038483688, 'grand': 0.1909244598607008, 'body': 0.16661816852427558, 'clique': 0.20855673145450465, 'pocket': 0.19660078346343063, 'seize': 0.20391883737232835, 'light': 0.1590566870085829, 'break': 0.14710073901750884, 'control': 0.1862865657785245, 'lie': 0.16214386337107978, 'sidewalk': 0.22155110896613228, 'clock': 0.1823652822051166, 'ground': 0.20855673145450465, 'kid': 0.1532354171972291, 'tape': 0.18061024217579466, 'stick': 0.17459698661701298, 'strike': 0.177426343298335, 'time': 0.12729295516361627, 'num': 0.09397780727358238, 'propn': 0.21382739973132067, 'adv': 0.04943278645884022, 'adj': 0.10432584968491979, 'cconj': 0.1326285593063882, 'strip': 0.19999755379892048, 'adp': 0.13541240748729194}, {}, {'room': 0.27292550133007476, 'round': 0.2828115574120814, 'turn': 0.22370508966541872, 'mr': 0.2514270000781626, 'eat': 0.2440148282842196, 'head': 0.21722966024238954, 'make': 0.18230866427875791, 'cat': 0.26281713988214483, 'town': 0.2867816101505384, 'nigga': 0.5542215531601324, 'propn': 0.3167371010477741, 'adj': 0.07726761686076657, 'cconj': 0.09822965963116219, 'adp': 0.1337219752857281}, {'wake': 0.4789271116114143, 'bear': 0.4682549291011121, '20': 0.5443142164546649, 'day': 0.39557348956053867, 'num': 0.25577041098051473, 'adv': 0.13453648765907866, 'adp': 0.12284633333364127}, {'old': 0.6423435906771108, 'boy': 0.7001026760783755, 'adv': 0.21450869331452452, 'adj': 0.2263558591166326}, {'sean': 0.9744377054874274, 'propn': 0.2246578690462405}, {'diet': 0.6338509661383317, 'change': 0.4810561564499937, 'suggest': 0.6056549571059932}, {}, {'smacking': 0.724655924067708, 'fun': 0.6695492367084079, 'adj': 0.16302641300342907}, {'believe': 0.703158450299891, 'true': 0.6808564550147997, 'adj': 0.20494555725005525}, {'intj': 0.544949784535888, 'yeah': 0.7360892424540332, 'adv': 0.2964925114463465, 'adp': 0.2707296624568039}, {'scooter': 0.6497483830967601, 'bag': 0.5061179889179921, 'try': 0.4122154386318064, 'let': 0.3640895503229151, 'adv': 0.13852382992105738}, {'bad': 0.5742094859885145, 'taste': 0.6187249311502367, 'leave': 0.5055000697910792, 'adj': 0.17869696476200944}, {}, {'cage': 0.38559735618461527, 'bottle': 0.30327764695920434, 'soon': 0.306412707805637, 'platoon': 0.38559735618461527, 'win': 0.3269516120511474, 'camp': 0.38559735618461527, 'slang': 0.3003589751375947, 'technique': 0.3219689229729149, 'propn': 0.0888999675017374, 'adv': 0.0822078576502938, 'adj': 0.17349628079907864, 'adp': 0.15012929294160948}, {'niggas': 0.6645388480804588, 'fuck': 0.6110385696771266, 'adv': 0.25055264609123734, 'adj': 0.26439049431330197, 'adp': 0.22878160724209276}, {'dealer': 0.5052251646336486, 'killah': 0.5052251646336486, 'hill': 0.43931904364313834, 'drug': 0.41499505532802133, 'life': 0.3115267967278228, 'propn': 0.12606712722691174, 'adp': 0.1064475567630905}, {'wanna': 1.0}, {'duel': 0.40285830121461985, 'honor': 0.4166196638817766, 'submit': 0.4360152152068929, 'fate': 0.4166196638817766, 'escape': 0.36406719856438713, 'son': 0.29037952419305496, 'propn': 0.10052386988773226, 'adv': 0.09295674923644767, 'adp': 0.25463863374929785}, {'blast': 0.9633108367125767, 'adv': 0.2683882111273065}, {'bra': 0.7309757768479226, 'smell': 0.6824034097669618}, {'better': 0.4840548270887177, 'good': 0.4664160381131478, 'thing': 0.4635856816881647, 'look': 0.4556458123968048, 'adv': 0.3134755755412109, 'adj': 0.16539430667658425}, {'know': 1.0}, {}, {'momentum': 0.49580915431456846, 'adrenaline': 0.49580915431456846, 'venom': 0.48627492825967433, 'bite': 0.4780160059887269, 'propn': 0.12997521905798168, 'adv': 0.12019109350265503, 'adp': 0.10974744021545478}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'comrade': 0.6464492470408509, 'dad': 0.557600698348078, 'mom': 0.498970938920348, 'propn': 0.14903970717563544}, {'bubble': 0.4622336906073901, 'better': 0.3383555612492311, 'tryin': 0.3869671764131776, 'plot': 0.40836256081427125, 'ya': 0.3250281117340981, 'propn': 0.11847882760901313, 'adv': 0.10956011423137023, 'adp': 0.1000402087725418, 'focus': 0.4622336906073901}, {'busta': 0.34168180961325983, 'shut': 0.26873746296813106, 'freeze': 0.29472076350202486, 'butt': 0.326482553155964, 'rhymes': 0.31569850907936603, 'punk': 0.2661511976484141, 'tie': 0.29472076350202486, 'say': 0.1683101766628453, 'sahdeeq': 0.34168180961325983, 'gun': 0.23230631773071206, 'niggas': 0.19320685100328538, 'fuck': 0.17765227455081076, 'propn': 0.23632554489826835, 'like': 0.13099558176636467, 'adv': 0.07284523380635761, 'cconj': 0.09772217089278046, 'adp': 0.06651556042268188}, {'understand': 0.7994722182992734, 'feel': 0.6007030648895001}, {'payless': 0.9744377054874274, 'propn': 0.2246578690462405}, {'begin': 0.7448212285441033, 'shit': 0.41639318951971566, 'niggas': 0.4558290900614522, 'propn': 0.18585272300967345, 'adv': 0.17186231476181502}, {'beat': 0.7495793419751994, 'niggas': 0.6150259186230475, 'adj': 0.24469149863839496}, {'word': 0.7680402317968168, 'time': 0.6404015945806912}, {'happenin': 1.0}, {'junk': 0.23869559967793463, 'bunk': 0.22807754646977765, '17': 0.22807754646977765, 'bagged': 0.23869559967793463, 'cee': 0.22054391782641972, 'trunk': 0.2099258646182627, 'luck': 0.2023922359749048, 'bad': 0.1725534814084705, 'mean': 0.16777896455777322, 'wish': 0.19177418276674782, 'punk': 0.1859306464092881, 'pop': 0.3518021950987183, 'believe': 0.1842405541233899, 'number': 0.17974025277712474, 'say': 0.11757985769248247, 'cipher': 0.21470038146896, 'check': 0.1544017995569556, 'cell': 0.1859306464092881, 'num': 0.09674619913026418, 'propn': 0.2751578909168718, 'adv': 0.20355589648472885, 'adj': 0.21479814694268753, 'cconj': 0.13653552238841, 'adp': 0.13940137697974014}, {'know': 0.9053017213796298, 'adv': 0.4247691058293658}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'cat': 0.9691305925991488, 'adp': 0.246547955757947}, {'plane': 0.48876279579405985, 'yo': 0.6628733704560543, 'leave': 0.37774832613225595, 'time': 0.325867417386175, 'intj': 0.23259180976401447, 'propn': 0.1368484658622392}, {'afro': 0.5894941193362371, 'learn': 0.4591832560405286, 'talk': 0.3941526212985862, 'flow': 0.4374224133686327, 'intj': 0.23099443459885777, 'cconj': 0.1685973424668648, 'adp': 0.11475744570044988}, {'rumplestiltskin': 0.6016663573141398, 'brown': 0.48339422313544855, 'timbs': 0.5559124501894926, 'propn': 0.2774299084483704, 'adj': 0.13535735346945002}, {'ho': 0.6369938311788601, 'burn': 0.6826103851388351, 'adp': 0.3581646564649967}, {'rub': 0.6115170468182286, 'titty': 0.5888682459158404, 'intj': 0.30154899282813535, 'yeah': 0.40731637298045587, 'adp': 0.1498087702008696}, {'just': 0.48530527164562304, 'hope': 0.714120495876624, 'know': 0.4567161594250987, 'adv': 0.214291997988447}, {'unless': 0.6229699740850547, 'write': 0.5103443597282433, 'real': 0.4671820895477967, 'propn': 0.16651209869699726, 'adj': 0.1624816670006856, 'adp': 0.2811963192575424}, {'life': 0.6952310366829471, 'bitch': 0.6614379108150664, 'propn': 0.28134266610195297}, {'breathe': 0.5144970878579345, 'wet': 0.5079636247241109, 'god': 0.38110596167721167, 'propn': 0.5762151928897182}, {'propn': 1.0}, {'til': 0.645249245023867, 'say': 0.4498119023334135, 'adv': 0.19468016636924654, 'think': 0.5584104729806453, 'adp': 0.17776400311452117}, {}, {'rhyme': 0.8979752839657013, 'adv': 0.3026885095056479, 'adj': 0.3194057851698486}, {'li': 0.6497483610855433, 'guy': 0.5427943752290795, 'straight': 0.48931738230084754, 'adj': 0.15820516080845645, 'adp': 0.1368976258309125}, {'records': 0.4741889396744557, 'welcome': 0.4741889396744557, 'li': 0.43812909281472495, 'stack': 0.36936690995882104, 'soul': 0.3252876264429333, 'propn': 0.32797461380849857, 'adp': 0.09231086402985288}, {'homie': 0.5979177039428041, 'bitch': 0.38813476564663313, 'just': 0.34574017168800714, 'adv': 0.3053309185151109, 'think': 0.4378976703262456, 'adj': 0.1610970662946991, 'cconj': 0.20480132082010832, 'adp': 0.13940004100606176}, {'brace': 0.5752222773942732, 'main': 0.4961632255720608, 'prove': 0.4803033375415316, 'lose': 0.38461005975697465, 'adv': 0.12263515384339385, 'adj': 0.12940820801803016, 'adp': 0.1119791310863118}, {'blow': 0.9517049762314735, 'adv': 0.30701406843376117}, {'pounder': 0.5771745147541226, 'quarter': 0.5581098653667965, 'order': 0.4973874109185268, 'propn': 0.2785265356083749, 'adv': 0.1287799671618288, 'adp': 0.11759000883646033}, {'son': 0.4577507754172015, 'word': 0.45254822902316766, 'shit': 0.3550315821628459, 'fuck': 0.3573663511280375, 'num': 0.5571655280583951, 'adv': 0.146535896983414}, {'wilde': 0.08145855086808995, 'bowl': 0.07526400978129129, 'coconut': 0.08145855086808995, 'ha': 0.5621025323598107, 'drink': 0.062333135444000584, 'sip': 0.06406827545817766, 'broke': 0.06906946869449263, 'island': 0.06044470121322396, 'jollyin': 0.2335049298694088, 'ah': 0.5235671555963114, 'sit': 0.20485127154658442, 'intj': 0.5107151039186981, 'propn': 0.09390186951184225, 'adv': 0.06946658577147513, 'adj': 0.03665158847232791, 'adp': 0.047572867589966136}, {'know': 0.49504998827517765, 'propn': 0.5023737029976378, 'adv': 0.23227829561621421, 'hit': 0.6697708302328598}, {'ho': 0.8703089892199933, 'intj': 0.49250610481787277}, {'mathematic': 0.4797593690189597, 'def': 0.47161110739324313, 'mos': 0.46442383127235387, 'mighty': 0.5002913485025328, 'propn': 0.25646738278910136, 'adj': 0.12512979000614685}, {'holdin': 0.8186986484797084, 'fuck': 0.5020229272888405, 'adv': 0.20585144551047213, 'adp': 0.18796458665155946}, {'moms': 0.4359537755046086, 'drastic': 0.41656095724214126, 'feel': 0.25283531399086095, 'steel': 0.3282776972598872, 'real': 0.2819995322594253, 'let': 0.2442887404021637, 'll': 0.31515177405024003, 'propn': 0.1005097048851751, 'adv': 0.2788309515921489, 'think': 0.26659473751920826, 'adj': 0.19615372729410804, 'adp': 0.16973516810212863}, {'ignorant': 0.515341937017378, '12': 0.49241764300010943, 'uh': 0.3703241487193857, 'til': 0.36415021013521726, 'mind': 0.3380665319133958, 'intj': 0.20193775554614216, 'num': 0.2088742889526681, 'adj': 0.11593688076209302, 'adp': 0.10032216168844321}, {'hoe': 0.7586080528947625, 'check': 0.6239058231341159, 'adp': 0.18776406989240077}, {}, {'japan': 0.9744377054874274, 'propn': 0.2246578690462405}, {'losin': 0.5806491506461551, 'pick': 0.47334984783760586, 'fight': 0.515258436155516, 'want': 0.3553936231102871, 'adv': 0.12955523267448898, 'cconj': 0.17379885993811445}, {'baby': 0.6873722001745303, 'intj': 0.4321625476761968, 'yeah': 0.5837422297669104}, {'street': 0.7514470805787572, 'time': 0.6218552855459506, 'adp': 0.22050689088603792}, {'mothafuckin': 0.6138593666561002, 'represent': 0.4875727079580917, 'mind': 0.4214416565247548, 'time': 0.3526950201294899, 'num': 0.2603875806440177, 'adp': 0.12506395640179152}, {'reveal': 0.43059192484718994, 'action': 0.43059192484718994, 'feel': 0.2702791211267433, 'really': 0.3275731564479609, 'late': 0.37887038839100484, 'night': 0.3258966652576582, 'heart': 0.329306488556179, 'like': 0.1786693255655387, 'adv': 0.19871217974448918, 'adj': 0.10484345754941245, 'adp': 0.0907228332443339}, {'stay': 0.9604355865526788, 'adp': 0.2785022155804365}, {'people': 0.5678781400107578, 'talk': 0.605722515457161, 'right': 0.5286901015507856, 'adp': 0.17635597208031153}, {'cause': 0.9524297887650679, 'adp': 0.30475809664868314}, {'dna': 0.9696364231446214, 'adp': 0.24455103130288536}, {'perfect': 0.2763513039408834, 'tomorrow': 0.5328677190005496, 'life': 0.35803961698457937, 'come': 0.16561557329733134, 'man': 0.16046709953578842, 'promise': 0.5420743418265359, 'adv': 0.3349571616669462, 'adj': 0.0706913225052559, 'cconj': 0.17973854586665483, 'adp': 0.12234081579087906}, {}, {'girl': 0.47075382452604586, 'cause': 0.43003977514159153, 'baby': 0.44055119994313763, 'look': 0.4380891183942361, 'adv': 0.30139690696285626, 'cconj': 0.20216257474767793, 'adp': 0.27520790487939417}, {'verse': 1.0}, {'grarrrr': 0.7071067811865475, 'whatcha': 0.7071067811865475}, {'feel': 0.3425354762542692, 'steel': 0.4447430843408006, 'way': 0.35240670650950157, 'nerve': 0.5312472214115199, 'flow': 0.4382579710077334, 'adv': 0.12591792300224341, 'adj': 0.13287228223223202, 'adp': 0.22995330725462915}, {'enterprise': 0.383598295544875, 'jameson': 0.33521115045766603, 'jonah': 0.3462800123565983, 'misguided': 0.40145655110618483, 'effort': 0.383598295544875, 'free': 0.2920116269671777, 'fool': 0.3046822609317669, 'propn': 0.27766897600002294, 'adj': 0.18063199190090112, 'adp': 0.15630394554752225}, {'blind': 0.926108152135866, 'propn': 0.23108863614474148, 'adj': 0.2254951268978846, 'adp': 0.195124781966725}, {'music': 0.615081115466481, 'grow': 0.6424053095950594, 'adv': 0.184572438292048, 'cconj': 0.24760466010472895, 'adp': 0.33706911296933645}, {'pic': 0.5771531437054406, 'bay': 0.5771531437054406, 'propn': 0.5322536049170804, 'adp': 0.22471002975974766}, {'hold': 0.8277932771797106, 'like': 0.5002391049046705, 'adp': 0.2540061577604939}, {'sure': 0.4492636001404009, 'oh': 0.3853678935375868, 'intj': 0.7349503134591249, 'yeah': 0.33091062383311776}, {'fucking': 0.5942222266575471, 'time': 0.42984198412185903, 'play': 0.5346816920166916, 'intj': 0.306804914100932, 'adv': 0.16692429667320172, 'adj': 0.17614340937456, 'adp': 0.15241989847812112}, {'worker': 0.3388297189357335, 'wipe': 0.3388297189357335, 'school': 0.27370592211480155, 'tip': 0.3058667377371668, 'finger': 0.30067187889202696, 'lick': 0.2882828657217629, 'cold': 0.24554283543379304, 'spit': 0.25056964368451057, 'case': 0.2691237318705382, 'eye': 0.23709823343543457, 'mom': 0.27370592211480155, 'remember': 0.2691237318705382, 'cconj': 0.10141790235747444, 'adp': 0.13806219306367487}, {'offend': 0.44627188419428465, 'ya': 0.5645172972644662, 'bish': 0.6889224547464078, 'adp': 0.08687622121782707}, {'read': 0.7248650735584289, 'mind': 0.6314848446568845, 'cconj': 0.27531348696314134}, {'yo': 0.6356799933695996, 'man': 0.5813750195301872, 'intj': 0.4461001653660908, 'adv': 0.2427110940114746}, {'write': 0.6865243725840082, 'real': 0.6284617137339888, 'propn': 0.22399505727167174, 'adj': 0.21857324837184086, 'adp': 0.1891351623382438}, {'sleep': 0.7261386306306042, 'propn': 0.4763476151953058, 'like': 0.3960602291368295, 'adv': 0.22024483271755596, 'adp': 0.20110730260473808}, {'know': 0.9053017213796298, 'adv': 0.4247691058293658}, {'cathedral': 0.28797382053439546, 'tall': 0.27516369184699546, 'cradle': 0.28797382053439546, 'pavement': 0.28797382053439546, 'penthouse': 0.28797382053439546, 'remind': 0.28797382053439546, 'grave': 0.24417570126484442, 'clearly': 0.27516369184699546, 'curb': 0.2590248383515719, 'bust': 0.20693767047193173, 'cloud': 0.24417570126484442, 'sun': 0.24417570126484442, 'cell': 0.22431565002939635, 'propn': 0.06639273552125136, 'adv': 0.1841846978393317, 'adj': 0.1295713936542088, 'cconj': 0.16472300316344957, 'adp': 0.11212033840248534}, {'wide': 0.6509623247128481, 'awake': 0.6731987502898318, 'adv': 0.15020502593161228, 'adj': 0.31700148989797633}, {'couple': 0.6888481071006728, 'win': 0.6995085022348342, 'propn': 0.19020026457657443}, {'spazz': 0.6361372354329976, 'night': 0.44485197712437896, 'end': 0.4471404031812953, 'like': 0.24388529003962095, 'adp': 0.37151253180660365}, {'bro': 0.6187597979562237, 'motherfucker': 0.5069414727409552, 'stop': 0.465693217747824, 'intj': 0.26956017227815043, 'propn': 0.15859929062529296, 'adv': 0.14666043502104603, 'adj': 0.15476038874998885}, {'journalist': 0.39647594056645824, 'medium': 0.39647594056645824, 'beef': 0.30883278960616123, 'hold': 0.754600586931613, 'adj': 0.08919550408128751, 'cconj': 0.11339348050973247}, {'ayy': 0.9261622781426415, 'nigga': 0.3466261393327017, 'propn': 0.14857238665693873}, {}, {'rule': 0.51116225347186, 'shit': 0.3582918120709247, 'fool': 0.526433187202969, 'true': 0.5184153077174734, 'adv': 0.14788152576111901, 'adj': 0.156048919481577, 'adp': 0.13503179340888627}, {'fine': 0.44738141844539164, 'van': 0.4752560547729898, 'crime': 0.3952412500633945, 'pack': 0.3717343691170303, 'gun': 0.3381650351490522, 'time': 0.27306000838255007, 'num': 0.2015946664834194, 'adj': 0.11189628425573415, 'adp': 0.19365152913636324}, {'engrave': 0.37910931045951113, 'unmarked': 0.37910931045951113, 'dumile': 0.3982846647565471, 'government': 0.3655041800700995, 'say': 0.21233981269903307, 'hey': 0.3327236953836519, 'right': 0.2515679535621314, 'intj': 0.33782745986669177, 'propn': 0.09938262584525154, 'adj': 0.09697706559825545, 'cconj': 0.24657222605716103, 'adp': 0.08391591002851911}, {'drive': 0.448195939292693, 'totally': 0.5096199017554386, 'rapper': 0.36410221986720454, 'state': 0.3933572852554311, 'line': 0.36410221986720454, 'propn': 0.23498705049526325, 'adv': 0.10864898233173972, 'adj': 0.11464958999022326, 'adp': 0.19841649402514516}, {'adj': 1.0}, {'napalm': 0.1864825979175298, 'circus': 0.1864825979175298, 'disorder': 0.1864825979175298, 'tumbler': 0.1864825979175298, 'net': 0.1864825979175298, 'purpose': 0.17230147018492717, 'slaughter': 0.17230147018492717, 'stress': 0.16773616675061603, 'vet': 0.1864825979175298, 'post': 0.1864825979175298, 'draw': 0.17818716997602044, 'swear': 0.14982491451081514, 'stray': 0.17818716997602044, 'deadly': 0.17818716997602044, 'father': 0.1466711391770802, 'change': 0.14152948656930575, 'fame': 0.1466711391770802, 'cannon': 0.17818716997602044, 'body': 0.13400618960777486, 'ask': 0.13564378677821248, 'aim': 0.1581203424523245, 'law': 0.15571061430190838, 'armor': 0.1864825979175298, 'safety': 0.1864825979175298, 'bullet': 0.14525961107650404, 'daughter': 0.1481873173403775, 'catch': 0.12189339164240122, 'nigga': 0.10030649972827996, 'gun': 0.2535756041102231, 'fuck': 0.09695879836767231, 'work': 0.13937391128541077, 'cause': 0.11345337622523138, 'propn': 0.12898140997551846, 'like': 0.07149457687302613, 'adv': 0.11927209524114153, 'adj': 0.20976568338393278, 'adp': 0.21781659123618927}, {'leave': 1.0}, {}, {'bubble': 0.4622336906073901, 'better': 0.3383555612492311, 'tryin': 0.3869671764131776, 'plot': 0.40836256081427125, 'ya': 0.3250281117340981, 'propn': 0.11847882760901313, 'adv': 0.10956011423137023, 'adp': 0.1000402087725418, 'focus': 0.4622336906073901}, {'gain': 0.27437697039231934, 'beggar': 0.2621716793243254, 'sword': 0.23264680460238582, 'train': 0.246794831111309, 'deck': 0.2621716793243254, 'nice': 0.22044151353439184, 'pain': 0.20660869358747566, 'attack': 0.2158012772279945, 'black': 0.1625912037018677, 'rebel': 0.24130659642935856, 'kid': 0.18133056000501635, 'sharp': 0.23264680460238582, 'nerve': 0.246794831111309, 'hold': 0.17407111143806098, 'propn': 0.1897738925841387, 'like': 0.21038387089155514, 'adj': 0.308634013800103, 'cconj': 0.15694551149837424, 'adp': 0.2670662797849813}, {'click': 0.4563288484682115, 'switch': 0.43324772884408425, 'cut': 0.3527731717698141, 'light': 0.3559364880610324, 'need': 0.30280900888814316, 'nigga': 0.27909184862193703, 'ya': 0.328173960973943, 'like': 0.19892582913358742, 'adv': 0.11062051359262313, 'adj': 0.11673000755016906, 'adp': 0.10100846783494095}, {'reflect': 0.3127681058008132, 'tonight': 0.2988550366294987, 'owe': 0.2889835569550972, 'debt': 0.2889835569550972, 'broke': 0.2651990081093812, 'bout': 0.2512859389380666, 'arm': 0.2512859389380666, 'sweet': 0.254271634334636, 'dime': 0.23551761520996925, 'sell': 0.21554964619804529, 'cash': 0.21657401631760542, 'time': 0.17170819390443692, 'rhyme': 0.1978199971929387, 'tell': 0.1667416467689022, 'like': 0.11991050979188983, 'adv': 0.06668094453146345, 'adj': 0.14072737335635, 'cconj': 0.08945275231208029, 'adp': 0.3044344951115361}, {}, {'intj': 1.0}, {'vagina': 1.0}, {'lama': 0.697893652193333, 'mold': 0.697893652193333, 'propn': 0.16090028109516258}, {'throw': 0.886958637745385, 'adv': 0.2690230880954185, 'adj': 0.2838810459712253, 'adp': 0.24564711424875063}, {'swear': 0.7814789391103399, 'tell': 0.5185530307550892, 'adv': 0.20737234248577177, 'cconj': 0.27819082226711384}, {'desire': 0.6738320990133299, 'oh': 0.516971749725571, 'say': 0.4131373742156903, 'intj': 0.3286457398950063}, {}, {'steelo': 0.8053485290215991, 'know': 0.4160849802912757, 'propn': 0.42224049542737524}, {'leader': 0.5089813616884465, 'program': 0.5089813616884465, 'control': 0.4089287142830036, 'earth': 0.3862873619176474, 'world': 0.27762687184082685, 'adp': 0.2972518252206037}, {'blonde': 0.6263009556927712, 'hair': 0.49768643030633175, 'sick': 0.48341919700462604, 'adj': 0.2817988368716407, 'cconj': 0.17912422406037723, 'adp': 0.12192267158827776}, {'oh': 0.531371779842875, 'street': 0.5718936495608448, 'run': 0.525806833336224, 'intj': 0.3378000284125586}, {'aw': 0.5209829264148095, 'connect': 0.5690967849585647, 'shit': 0.32681348848622843, 'baby': 0.39433434584504246, 'intj': 0.24792468402613557, 'num': 0.2564408619364953, 'adp': 0.12316835041648719}, {'sick': 0.24229801990360755, 'gun': 0.213426434524482, 'flow': 0.23293277582775582, 'blast': 0.24021014205695168, 'smoke': 0.21437003977123592, 'till': 0.29994882590881433, 'bomb': 0.2522056285278859, 'plant': 0.28235627899619914, 'niggas': 0.17750464015849066, 'gate': 0.29004121728453597, 'episode': 0.31391281597500015, 'know': 0.14263586944843906, 'propn': 0.07237300435533905, 'like': 0.12034937417097755, 'adj': 0.35310606513049203, 'cconj': 0.17956028670571894, 'adp': 0.305548704832618}, {'hood': 0.7340509841056044, 'just': 0.4872512571826343, 'adv': 0.43030253955408915, 'adp': 0.1964563299077879}, {'number': 0.7028026730132508, 'label': 0.6877911855222872, 'adp': 0.1816911883479112}, {'adv': 1.0}, {'born': 0.44492653761786055, 'crown': 0.41109195931380954, 'thought': 0.3465731201394347, 'crew': 0.3434228027057076, 'throne': 0.36171270593361804, 'die': 0.3025014581012369, 'kick': 0.3161062893761886, 'propn': 0.10257838675623805, 'adv': 0.18971321707825814, 'adj': 0.10009547299457086, 'cconj': 0.12725051764692585}, {'wrong': 0.7735879453489051, 'right': 0.540682347357943, 'adv': 0.19751908694795328, 'cconj': 0.26497264077185595}, {'phone': 1.0}, {'help': 0.6477336577807731, 'remember': 0.5589636257626993, 'dream': 0.5176879114410123}, {'hells': 0.32272838045782976, 'outta': 0.29704385790312293, 'gza': 0.2913318147413111, 'bullshit': 0.33775286300125995, 'angels': 0.3037997710324249, 'hey': 0.5213985906742792, 'talk': 0.22583122025533905, 'fuck': 0.17560947835103496, 'intj': 0.26469825249815876, 'propn': 0.23360807378089152, 'adv': 0.1440151953183676, 'adp': 0.13150141643374308}, {'help': 1.0}, {'direction': 0.7161557236051711, 'lead': 0.5352425663462058, 'right': 0.41794570971918804, 'adj': 0.1611141162220286}, {'forgive': 0.7249794590367216, 'lord': 0.6599591956559185, 'propn': 0.1971259598429789}, {'cause': 0.9351074512555572, 'propn': 0.3543642964610511}, {'rza': 1.0}, {'leave': 1.0}, {'essence': 0.4305585450574372, 'keepin': 0.4163367672546974, 'carry': 0.3820705194398589, 'ghetto': 0.3710392515618897, 'tryin': 0.3393087260092458, 'inside': 0.3050424781944073, 'street': 0.29893153009082846, 'propn': 0.20777421189935485, 'adv': 0.0960668114692524, 'adp': 0.0877193670609066}, {'machine': 0.8903697788319477, 'adj': 0.22775871250387475, 'adp': 0.3941670024511512}, {'head': 1.0}, {'gon': 0.45456883694027594, 'simple': 0.5115145729728283, 'tear': 0.4980277686416641, 'ass': 0.4129640542495803, 'adv': 0.26120854654372044, 'cconj': 0.17520615207204168, 'adp': 0.11925579720655234}, {'condom': 0.36401691772450745, 'model': 0.3478241139766241, 'slash': 0.36401691772450745, 'stripper': 0.3478241139766241, 'cock': 0.28926393726005106, 'round': 0.29974181306249004, 'pop': 0.2682536898068957, 'come': 0.19185925769894116, 'make': 0.19322240600051696, 'ride': 0.2785504479839439, 'propn': 0.08392456959766491, 'like': 0.13955852073042355, 'adv': 0.15521398409312528, 'adp': 0.2125906788528369}, {'tryin': 0.9348414836740658, 'cconj': 0.35506534666462664}, {'common': 0.7506236328276539, 'intj': 0.39060998246450973, 'adv': 0.21252037891078185, 'adj': 0.44851546298506195, 'adp': 0.19405404260309528}, {'going': 0.565879890620659, 'okay': 0.6484305608427134, 'tell': 0.4198163415305668, 'adv': 0.16788697200406055, 'adj': 0.17715925259377832, 'adp': 0.15329892495372258}, {'adj': 1.0}, {'miss': 0.7411834833762533, 'rhyme': 0.6361350541177777, 'adv': 0.21442769618875102}, {'power': 0.33213723835139164, 'peace': 0.3270785976454437, 'coward': 0.43763187851734997, 'black': 0.2593333318197369, 'fuck': 0.22754005758325327, 'baby': 0.2727569502972878, 'num': 0.17737746704136256, 'propn': 0.10089659369783036, 'adv': 0.46650707785403117, 'kill': 0.27048821266549083, 'adp': 0.2555827864353734}, {}, {'invisible': 0.37552962478680535, 'individual': 0.37552962478680535, 'rotate': 0.40643727502776017, 'turn': 0.2647268576875772, 'pen': 0.29381424238586473, 'sick': 0.31371432430489576, 'adj': 0.18287302665443453, 'cconj': 0.11624245637312217, 'adp': 0.3164863023377059, 'motion': 0.3883574586513964}, {'adv': 0.3292000138967674, 'think': 0.9442602135271656}, {'reach': 0.6256664906919709, 'oh': 0.4036134405358883, 'god': 0.39938648063483423, 'intj': 0.5131647439803037, 'propn': 0.15096363027473703}, {'swolla': 0.3940226785531319, 'thunder': 0.3940226785531319, 'mess': 0.3640591002005003, 'fatty': 0.3764951088294223, 'thigh': 0.3465315304767906, 'roller': 0.3640591002005003, 'high': 0.26139594776612396, 'adj': 0.2659307753917639, 'adp': 0.153409625832131}, {'make': 0.5211560291369047, 'hate': 0.7337954692304687, 'adv': 0.20932019554780681, 'adp': 0.38226385961390347}, {'come': 0.9270313600105353, 'adv': 0.37498380972652334}, {'mount': 0.39103043877713833, 'whip': 0.31073007544886744, 'enemy': 0.3438999422825878, 'boulevard': 0.39103043877713833, 'turn': 0.2546918446655663, 'grip': 0.36129440623813114, 'pistol': 0.37363597482159505, 'heart': 0.27630939037115354, 'propn': 0.09015257169666425, 'adj': 0.08797042526217938, 'adp': 0.228366931271771}, {'whoa': 0.6786388222055313, 'common': 0.5810561441268955, 'propn': 0.17790359215806603, 'adv': 0.16451156947071321, 'adj': 0.34719485785658327, 'adp': 0.1502168181441739}, {}, {'rulers': 0.36038873944386596, 'abortion': 0.36038873944386596, 'auction': 0.36038873944386596, 'birth': 0.3443573303345286, 'bad': 0.2605256725945327, 'slave': 0.2929858642062116, 'control': 0.28954558055715485, 'sell': 0.2483682442044027, 'teach': 0.2693483936861691, 'propn': 0.08308808841835642, 'adj': 0.16215387614183452, 'cconj': 0.2061448341287436, 'adp': 0.21047177490600322}, {'snappin': 0.5970361145427482, 'story': 0.5134789626255423, 'start': 0.4474389843338808, 'mind': 0.4238933688688236}, {'fame': 0.38741521676382906, 'type': 0.36814041504559203, 'phone': 0.38019914745552397, 'big': 0.32934817602358396, 'girl': 0.3280459384078652, 'cell': 0.3836868250153152, 'fake': 0.3582877132624036, 'adj': 0.22162892619163158, 'cconj': 0.14087747797019315, 'adp': 0.09588964625440692}, {'mc': 0.9492499475930167, 'propn': 0.3145227130028209}, {'slinger': 0.34438311182980413, 'anxiety': 0.34438311182980413, 'profanity': 0.34438311182980413, 'starvation': 0.34438311182980413, 'grower': 0.34438311182980413, 'illegal': 0.329063691570975, 'cocaine': 0.2766862477521214, 'brother': 0.23846559894580466, 'try': 0.2184846306561236, 'gun': 0.23414290824664705, 'propn': 0.23819391102224288, 'adj': 0.07747613944204229}, {'feel': 0.48660561817108394, 'nah': 0.6599122400448757, 'just': 0.4051055258470426, 'adv': 0.35775779741916247, 'adj': 0.18875825575924454}, {'chair': 0.6693958917868462, 'leg': 0.5378098727754125, 'fuck': 0.3480422410707305, 'num': 0.2713142107821506, 'adp': 0.26062401704814125}, {'til': 0.5014079041915556, 'clap': 0.5768747777679034, 'trap': 0.6120613721421096, 'cconj': 0.20294452720135542}, {'bail': 0.7054914948798764, 'ferryboat': 0.4010885360511806, 'island': 0.2976197890006914, 'staten': 0.3527457474399382, 'cat': 0.3069181292360545, 'propn': 0.1849429579760798}, {'partner': 0.6738643352795426, 'suppose': 0.5812478329331116, 'old': 0.4302038100962645, 'adj': 0.1515997893385046}, {'hey': 0.8916749155877435, 'intj': 0.4526763136188932}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'kendrick': 0.4613477450272683, 'mind': 0.36245591191113036, 'listen': 0.4099869660863101, 'okay': 0.45496109116349714, 'open': 0.4227959204758514, 'intj': 0.21650629809908017, 'propn': 0.12738434244280836, 'adv': 0.11779524992750996, 'cconj': 0.15802279630776975}, {'suppose': 0.9707861716986288, 'adv': 0.2399462623978971}, {'shrink': 0.8343046812552629, 'need': 0.4868969843233604, 'adv': 0.17787051537969775, 'adj': 0.18769418012003494}, {'cool': 0.9600522168198188, 'adj': 0.279820908760142}, {'herbal': 0.46262240314541153, 'bubble': 0.41611662119211085, 'string': 0.3990391763099175, 'cream': 0.37609894470030963, 'pick': 0.3603572188859084, 'burn': 0.343279774003715, 'propn': 0.21331638272702272, 'adj': 0.10407652577580517, 'adp': 0.09005919409094217}, {}, {'sunroof': 0.463593415828634, 'spittin': 0.463593415828634, 'uncouth': 0.463593415828634, 'tooth': 0.4169900214298209, 'miss': 0.341634243659882, 'propn': 0.10688205958925956, 'adv': 0.09883631442173871, 'adj': 0.10429497526261541, 'adp': 0.18049644432057768}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'bang': 0.437502387280391, 'ride': 0.8891842896432661, 'propn': 0.1339513351018161}, {'music': 1.0}, {'space': 0.5126162843468034, 'travel': 0.5126162843468034, 'place': 0.4268577501262161, 'time': 0.34616687221726433, 'man': 0.3220052600685711, 'propn': 0.1453732495726104, 'cconj': 0.18033839140100785, 'adp': 0.12274910657607162}, {'nigga': 0.47703186445297624, 'tell': 0.4728008528703342, 'num': 0.3594563200015125, 'kill': 0.5481457095441054, 'adp': 0.3452931927231715}, {'thank': 0.6649918895083488, 'aight': 0.7246321279495604, 'propn': 0.18081500499518238}, {'drum': 0.29300540637378825, 'dum': 0.6484498505984894, 'tat': 0.6172303316730329, 'rat': 0.30861516583651644, 'propn': 0.08090274944533822, 'adj': 0.0789444953110449, 'adp': 0.06831201918619062}, {'compton': 0.6894109717198972, 'thang': 0.6646700173213586, 'propn': 0.18072748615169473, 'cconj': 0.22419602114119067}, {'lady': 0.6828520510866125, 'cold': 0.6125897003253803, 'adj': 0.39805393526765587}, {'attention': 0.44625960086949407, 'news': 0.44625960086949407, 'mention': 0.47406434100635925, 'million': 0.40334309278146213, 'view': 0.42067684196594357, 'adp': 0.19316594417456598}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {}, {'yang': 0.5481489642710569, 'yin': 0.5481489642710569, 'heads': 0.5736678062557826, 'propn': 0.26451970437533223}, {'inside': 0.38156234952878365, 'hide': 0.4528402431947339, 'steel': 0.42442428175263824, 'true': 0.42125247384626924, 'secret': 0.46411440607012383, 'adj': 0.253603596938833, 'adp': 0.1097237604187251}, {'kind': 0.3526930208034094, 'dough': 0.30543234666540653, 'leavin': 0.7493359656977188, 'long': 0.2632385243408761, 'intj': 0.1536492703034248, 'adv': 0.25078929835503505, 'cconj': 0.11214494708548484, 'adp': 0.22899769630007621}, {'sew': 0.32982169638741443, 'legal': 0.32982169638741443, 'luxury': 0.31515002114006424, 'flood': 0.3047403018890276, 'script': 0.2844907145886865, 'home': 0.23842870179628592, 'capone': 0.32982169638741443, 'drug': 0.25031555689594037, 'stone': 0.2844907145886865, 'life': 0.18790586203321447, 'ring': 0.254577512892254, 'propn': 0.07604081724090127, 'like': 0.12644859568714356, 'adj': 0.07420024636095056, 'cconj': 0.18866027556456058, 'adp': 0.19262021879010616}, {'dang': 0.7328010294155447, 'pow': 0.659135152757942, 'propn': 0.16894822190920628}, {'matter': 0.9656011204395729, 'adp': 0.2600278373671586}, {'adj': 1.0}, {'fame': 0.5516671743517723, 'cover': 0.6480693183872709, 'want': 0.4102085839129893, 'propn': 0.1617105459745437, 'adv': 0.14953748485641208, 'cconj': 0.20060513071947197, 'adp': 0.13654386278535713}, {'dun': 0.49570748101118994, 'connect': 0.49570748101118994, 'light': 0.378053439489243, 'high': 0.3656071679363294, 'run': 0.33614422430681984, 'adj': 0.12398330130846187, 'adp': 0.3218546001610558}, {'ha': 0.9104540772250306, 'intj': 0.41361017064902783}, {'corporate': 0.2956935802991243, 'office': 0.2956935802991243, 'wall': 0.2515818062592321, 'murder': 0.2330261776758469, 'street': 0.821185740350928, 'propn': 0.14269255903898806, 'adv': 0.06597555607095146, 'adj': 0.0696193401040432, 'adp': 0.06024280322749691}, {'prepare': 0.7206358022798351, 'order': 0.674714524069912, 'adp': 0.15951285679095142}, {'click': 0.4563288484682115, 'switch': 0.43324772884408425, 'cut': 0.3527731717698141, 'light': 0.3559364880610324, 'need': 0.30280900888814316, 'nigga': 0.27909184862193703, 'ya': 0.328173960973943, 'like': 0.19892582913358742, 'adv': 0.11062051359262313, 'adj': 0.11673000755016906, 'adp': 0.10100846783494095}, {}, {'def': 0.5375097445369871, 'mos': 0.5293181839670731, 'mighty': 0.5701975011021844, 'propn': 0.2923037970140366, 'adj': 0.14261428623242484}, {'public': 0.4408450348805556, 'opinion': 0.4408450348805556, 'reach': 0.4408450348805556, 'determine': 0.46136838805304253, 'court': 0.3593804106119152, 'adv': 0.19672389429584636, 'adj': 0.10379440901449656, 'cconj': 0.13195294333308985, 'adp': 0.08981507364232409}, {'wu': 0.7047911411053196, 'shit': 0.5124103030208913, 'intj': 0.3887206830312457, 'propn': 0.22870895228735583, 'adp': 0.19311544346540954}, {'yawk': 0.7990413777434942, 'hear': 0.6012760403124168}, {'phony': 0.553384768353552, 'pussy': 0.48691368791967427, 'fan': 0.5166130873255043, 'fake': 0.43565040648983505}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'say': 0.9030053446793176, 'adv': 0.39082387509653405, 'adp': 0.17843218917873374}, {'dial': 0.22018878951925022, 'blunt': 0.19241414341475913, 'smoke': 0.15736644217027715, 'num': 0.9339993702494502, 'cconj': 0.13181302529079153}, {'joyner': 0.6249668567735766, 'dump': 0.6764042288113027, 'propn': 0.1559458668346589, 'adv': 0.14420675262501947, 'cconj': 0.19345393222809812, 'adp': 0.2633526578577904}, {'10': 0.5577064069830815, 'pm': 0.5924549741592625, 'seed': 0.4927083879127701, 'num': 0.2513082405212679, 'adv': 0.1321893641641373, 'adp': 0.12070315626508688}, {'lil': 0.8646839735129169, 'bitch': 0.3279982346039083, 'sit': 0.3804455073287536}, {'mean': 0.7880489820510418, 'adv': 0.4780456758631424, 'cconj': 0.3206500877973405, 'adp': 0.21825364801630645}, {'discourage': 0.7978870929554631, 'girl': 0.5313807095063146, 'adv': 0.17010642709719517, 'cconj': 0.228198448548347}, {'rumor': 0.5643066609723615, 'ma': 0.5753708284984321, 'true': 0.48895566108676214, 'num': 0.2651647563718633, 'adv': 0.13947795930141252, 'adj': 0.14718122989642124}, {'rosecrans': 0.2830281012441846, 'dip': 0.24891501537991298, 'butt': 0.2704379762378199, 'crooked': 0.2830281012441846, 'flip': 0.2148019295156414, 'block': 0.3999858545910107, 'head': 0.179009998638748, 'shit': 0.29238951659336476, 'make': 0.15023304694192083, 'nigga': 0.3044740740162834, 'time': 0.15538107366929194, 'num': 0.11471469553429593, 'propn': 0.3915149613832909, 'adj': 0.0636730544697784, 'cconj': 0.24284102664302354, 'adp': 0.11019476155861417}, {'want': 0.8966939386685862, 'adv': 0.3268809126211077, 'adp': 0.29847755245413293}, {'48': 0.3117676715721726, 'able': 0.28042677831744967, 'strong': 0.2643507305510449, 'speeding': 0.3117676715721726, 'faster': 0.2741906348634755, 'math': 0.28042677831744967, 'wife': 0.28042677831744967, 'knife': 0.26891805070044744, 'turn': 0.20306522333178398, 'today': 0.24520958018988362, 'life': 0.17762013149081796, 'drop': 0.21196797058756492, 'key': 0.25671830780688587, 'num': 0.12636318925442036, 'adv': 0.19940296752681397, 'adj': 0.14027723640631826, 'adp': 0.18207643028848777}, {'jay': 0.32974997061268063, 'jameson': 0.3427038197070378, 'jonah': 0.3540200937850173, 'united': 0.4104299434033245, 'phone': 0.3167961215183234, 'president': 0.3609612445743476, 'propn': 0.4731257624705578, 'adp': 0.15979766514712518}, {'shit': 0.7224696166782645, 'know': 0.6355314555843776, 'adp': 0.27228187956521077}, {'premiere': 0.6657815921624942, 'outrun': 0.6361651921110009, 'world': 0.3631544780895542, 'adv': 0.14194204777813785}, {'dick': 0.4229836331797452, 'shoot': 0.42069157606159835, 'friend': 0.38777803895288426, 'good': 0.37770939049892205, 'make': 0.3160200620552303, 'face': 0.3800848132000458, 'propn': 0.2745214516389119, 'adj': 0.1339383247186916, 'adp': 0.11589911838564122}, {'turn': 0.59151400041766, 'blunt': 0.7582989627999766, 'propn': 0.20937658369963263, 'adp': 0.1767917320596391}, {}, {'mainstream': 0.7833666101187807, 'oh': 0.4828651924510464, 'intj': 0.3069637529069209, 'adv': 0.16701071659268643, 'adj': 0.17623460220603684}, {'red': 0.6752391380594754, 'suede': 0.7375988790885576}, {'break': 0.9560057818645129, 'adp': 0.2933478226297604}, {'credit': 0.7200276771489551, 'bag': 0.56086166492184, 'tell': 0.3838581951941855, 'adp': 0.14016855190392902}, {'product': 0.7429211312543286, 'sell': 0.6131795445280792, 'propn': 0.20513055674761435, 'adp': 0.17320650564150197}, {'adv': 0.3292000138967674, 'think': 0.9442602135271656}, {'heaven': 0.6136646302658995, 'soul': 0.45561345796223696, 'time': 0.3646271311636061, 'hope': 0.4718731291133961, 'propn': 0.15312566046563555, 'adv': 0.14159884251836397, 'adp': 0.1292950255379652}, {'god': 0.4059823758239586, 'run': 0.4059823758239586, 'plant': 0.5986968875328367, 'heart': 0.47033107810796954, 'propn': 0.153456805008842, 'adp': 0.25914926945958267}, {'worry': 0.4794987402584332, 'don': 0.4328508015548243, 'dime': 0.3778768498449451, 'bitch': 0.2720009308087657, 'crab': 0.4328508015548243, 'nigga': 0.2699231390560597, 'propn': 0.11569561678382083, 'like': 0.19239072908862734, 'adv': 0.21397282952080737, 'adp': 0.09769014338424238}, {'watch': 0.7562634324198263, 'tell': 0.5765407649074679, 'cconj': 0.30929980146209984}, {'disrespect': 0.5191610687139816, 'hug': 0.5191610687139816, 'record': 0.44193439140678487, 'make': 0.29825474593469253, 'adv': 0.23958560681147215, 'adj': 0.1264088765443952, 'cconj': 0.321405044488138}, {'bout': 0.9832886878429714, 'adj': 0.13766750626390817, 'adp': 0.11912604282491851}, {'wanna': 0.6229243567770827, 'love': 0.5406212641933444, 'just': 0.4852781046210703, 'adv': 0.2142800020833725, 'adp': 0.1956607684702774}, {'chicken': 0.805486523761057, 'head': 0.566392647626567, 'adp': 0.17432965540577317}, {'ho': 0.6066304738122493, 'say': 0.43154774324898365, 'everybody': 0.5726406619390783, 'intj': 0.3432909638091418}, {'fulla': 0.40708447047584, 'hash': 0.38897586447908505, 'mustache': 0.38897586447908505, 'twist': 0.3511344255764007, 'end': 0.5722787603637556, 'like': 0.15606996198712977, 'adp': 0.23774269742705423}, {'building': 0.20864863742293233, 'voice': 0.593150659490041, 'island': 0.19483383679464245, 'doom': 0.33633139904549314, 'warm': 0.25088861104319926, 'heat': 0.1962393084909565, 'long': 0.1762721950319029, 'num': 0.3192666691552263, 'propn': 0.4237487424497563, 'adv': 0.11195722009723146, 'adj': 0.059070269712241115, 'adp': 0.15334353771027967}, {'adp': 1.0}, {'marshall': 0.6750732496456248, 'flow': 0.5421528960580695, 'propn': 0.16844874564447151, 'hit': 0.4491558994779311, 'adp': 0.14223341015288501}, {'vital': 0.9701165092812742, 'adj': 0.24263956482798843}, {'blast': 0.9633108367125767, 'adv': 0.2683882111273065}, {'mouth': 1.0}, {'talent': 0.346803546375567, 'chapstick': 0.3684115576468716, 'slapstick': 0.3684115576468716, 'classical': 0.3562425567689164, 'sound': 0.25293085936496856, 'rapper': 0.27546858215036857, 'need': 0.22501295909265745, 'lot': 0.27101181431421223, 'trick': 0.3269223124558131, 'propn': 0.08889200077829262, 'like': 0.14781888299051044, 'adj': 0.1734807330218784, 'adp': 0.2251737587769522}, {'lane': 0.5693227024622292, 'dollar': 0.44543787615152314, 'switch': 0.5145027935122711, 'make': 0.3270722868306472, 'just': 0.2975063005993682, 'adv': 0.13136725128373147}, {'london': 0.6229786058192409, 'world': 0.6796146758050584, 'propn': 0.1436285205884352, 'adv': 0.26563323490136526, 'adp': 0.242551812426363}, {'bit': 0.938754903693615, 'adv': 0.2544632954823109, 'adp': 0.23235245220025902}, {'account': 0.4507133753331643, 'magazine': 0.47169614489987266, 'bank': 0.39995558190364533, 'savage': 0.47169614489987266, 'thinkin': 0.37483061204146495, 'propn': 0.10875015422101741, 'adv': 0.10056378476712242, 'adj': 0.10611785259260081, 'cconj': 0.13490671725704373}, {'just': 0.4433089638631825, 'know': 0.834387669961914, 'adv': 0.1957480562086254, 'cconj': 0.2625967959907817}, {'talkin': 0.3783019551470038, 'walkin': 0.4254096788232887, 'yesterday': 0.505940864357762, 'story': 0.4207599202127639, 'check': 0.3425071039888242, 'hold': 0.33592373061676234, 'adv': 0.1128862176556358}, {'murk': 1.0}, {}, {'cash': 0.9059117655921447, 'know': 0.29722936989581694, 'propn': 0.3016265482895341}, {}, {'brother': 0.6569605431672154, 'touch': 0.7539249596090033}, {'gandhi': 0.5863420762514379, 'kamikaze': 0.29317103812571893, 'actual': 0.29317103812571893, 'combination': 0.29317103812571893, 'smash': 0.2636995981751292, 'assassin': 0.2708767544467713, 'slim': 0.24858247076782364, 'probably': 0.2243382656946742, 'propn': 0.20277288220836792, 'adv': 0.1250058517407934, 'kill': 0.1812009453620467, 'adj': 0.1319098379099481, 'cconj': 0.083847923660211, 'adp': 0.17121575119293267}, {'escape': 0.44837651330594497, 'fucking': 0.40754124567825384, 'shatter': 0.4830046939325705, 'flash': 0.4722636135750568, 'light': 0.3683656043644324, 'propn': 0.12380281020101447, 'adj': 0.12080615846080296, 'adp': 0.1045356307880503}, {'cause': 0.6835583561378207, 'look': 0.6963529769143644, 'adp': 0.21872472493219175}, {'thirteen': 0.9744377054874274, 'propn': 0.2246578690462405}, {'hol': 0.948340616502722, 'propn': 0.3172539599299548}, {'healthy': 0.39373420322031966, 'attitude': 0.3762194659343976, 'earn': 0.35415350657004246, 'buck': 0.3200947842489893, 'destruct': 0.3762194659343976, 'self': 0.3200947842489893, 'america': 0.30967738954839863, 'way': 0.23493030329181014, 'propn': 0.09077592807418074, 'adv': 0.16788520362619294, 'adj': 0.08857869327481606, 'cconj': 0.11260933421354616, 'adp': 0.15329731023387397}, {'project': 0.5045204221439425, 'live': 0.3895342950687637, 'life': 0.3442389044480599, 'real': 0.39084700464635097, 'fuck': 0.3141577348618032, 'man': 0.3085637226929371, 'adv': 0.2576369337904356, 'adj': 0.1359330211452095, 'cconj': 0.17281048571473998, 'adp': 0.11762516324819991}, {'waste': 0.713073364373934, 'time': 0.4236937935435326, 'want': 0.4513542096913561, 'adv': 0.3290734321196723}, {'tongue': 0.4948490416844615, 'shoulder': 0.4948490416844615, 'month': 0.459371701166619, 'old': 0.3512255579967024, 'intj': 0.21557895869889454, 'num': 0.2229840655087366, 'propn': 0.2536774600967665, 'adj': 0.12376859375253857}, {'perpetrator': 1.0}, {'fold': 0.9698136145340475, 'adv': 0.2438473970835162}, {'say': 0.5019244729951662, 'shit': 0.5263226961775499, 'niggas': 0.5761698359044444, 'adv': 0.21723466942648037, 'adj': 0.2292323889915708, 'adp': 0.1983586986425087}, {'aha': 0.7265587116273254, 'intj': 0.5694069314353948, 'yeah': 0.38456232913764277}, {'dick': 0.3945627637116925, 'suck': 0.5131235443831367, 'fuckin': 0.375956412955416, 'record': 0.4367949658959988, 'look': 0.3441947356459115, 'cconj': 0.1588336506230129, 'adp': 0.3243350773519505}, {'stat': 0.35429008717306776, 'hill': 0.29789732913922795, 'exact': 0.35429008717306776, 'projects': 0.37078391155408674, 'killa': 0.31982304715365484, 'act': 0.2792041163655492, 'real': 0.23984398232712914, 'know': 0.168476987592065, 'rap': 0.2244496512605867, 'propn': 0.34193883499080424, 'adv': 0.23714906648994538, 'adj': 0.16683109622766448, 'adp': 0.07218089748661025}, {'cop': 0.8829370447843915, 'intj': 0.46949140029121444}, {'diddy': 0.6069670455447593, 'better': 0.4325283371091503, 'try': 0.4167671554469247, 'just': 0.3171777965726383, 'propn': 0.3029088695877587, 'adv': 0.28010684291414645}, {'blink': 0.2899945148363372, 'blend': 0.2770944982764989, 'weed': 0.24214175774899613, 'natural': 0.25504177430883446, 'thought': 0.22588965892718302, 'faster': 0.25504177430883446, 'speed': 0.26084239945468574, 'travel': 0.23575734823318287, 'smoke': 0.19803630981366735, 'bomb': 0.2329890503411701, 'drop': 0.19716460170936614, 'cause': 0.17642856310662566, 'rhyme': 0.18341612538788055, 'num': 0.11753826680045898, 'propn': 0.0668586091972305, 'adv': 0.18547711035356004, 'think': 0.1773376351089456, 'adj': 0.19572088203899288, 'adp': 0.39517477933557216}, {'model': 0.6400305182645936, 'father': 0.5268280832710799, 'mama': 0.5592969751097139}, {'dick': 0.9146443630879537, 'propn': 0.2968075814195316, 'adv': 0.27446484052300685}, {'coroner': 0.2610711636877099, 'autopsy': 0.2610711636877099, 'lyric': 0.2494577635626475, 'shaolin': 0.21799112479280855, 'academy': 0.2610711636877099, 'family': 0.21497337110389972, 'deadly': 0.2494577635626475, 'learn': 0.20335997097883735, 'calm': 0.21799112479280855, 'bring': 0.17992178844871054, 'far': 0.21497337110389972, 'blow': 0.17253700354284152, 'head': 0.1651226448925398, 'wu': 0.18548283781473568, 'fuck': 0.13573999183990743, 'know': 0.11862565185448774, 'propn': 0.3009514665391809, 'adv': 0.22263742960685903, 'adj': 0.17620015489169605, 'cconj': 0.22400174801764486, 'adp': 0.2541150022376818}, {'killa': 0.45316357078056485, 'masta': 0.5253710226427468, 'slap': 0.4454670137721742, 'crack': 0.36378937084809193, 'num': 0.21293919805160239, 'propn': 0.3633748994139878, 'adp': 0.10227453442860615}, {'folk': 0.3340285265483478, 'stared': 0.393943666217912, 'rarely': 0.3764196112518292, 'barely': 0.35434191299876333, 'joke': 0.3639860963831299, 'spare': 0.3639860963831299, 'speak': 0.29442677332919914, 'smoke': 0.26902284678140004, 'adv': 0.16797451702014077, 'adj': 0.0886258163300762, 'adp': 0.07668943150093133}, {'peep': 0.6005030467078768, 'live': 0.4565755343336674, 'make': 0.37592542322154215, 'dream': 0.4978045669841218, 'adv': 0.15098891445320714, 'adp': 0.13786917465547247}, {'wifey': 0.3415054902068281, 'bougie': 0.3531710830204602, 'freaknik': 0.3531710830204602, 'chick': 0.3133981677747542, 'nerd': 0.3531710830204602, 'broad': 0.31881290509543314, 'ho': 0.25593572308371043, 'street': 0.24520236200876572, 'meet': 0.27237745270215225, 'propn': 0.17042942076652726, 'adv': 0.07880001509293513, 'adj': 0.1663041701401964, 'adp': 0.21585875525455125}, {'treat': 0.8672344030110111, 'like': 0.36964333866760396, 'cconj': 0.27575242633052327, 'adp': 0.18769361146728392}, {'fold': 0.9698136145340475, 'adv': 0.2438473970835162}, {'tool': 0.7009103234960575, 'use': 0.47654247820540824, 'blow': 0.4632184009142886, 'propn': 0.16159577855248236, 'adv': 0.1494313567647958, 'adp': 0.1364469563836396}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'hmm': 0.5146123874490828, 'taste': 0.40085453597693615, 'bit': 0.40474975115465583, 'little': 0.351427123552089, 'high': 0.34139555937083405, 'know': 0.23382984566830373, 'intj': 0.20165188010733384, 'adj': 0.23154550684420017, 'cconj': 0.14718091000150635}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {'mind': 0.7148256193449616, 'think': 0.6663532888359543, 'adp': 0.21212644433356045}, {}, {'snatch': 0.36220581599532686, 'high': 0.2918147832810077, 'drawer': 0.43987538266148124, 'real': 0.28453624932917254, 'hear': 0.2855112080465683, 'bitch': 0.23842439915684058, 'niggas': 0.2487312321779269, 'ear': 0.3729744593838186, 'propn': 0.30424150941038175, 'adv': 0.09377972193458298, 'adj': 0.1979182213850548, 'adp': 0.17126201495471485}, {'bless': 0.8032946763410858, 'god': 0.5571112579457964, 'propn': 0.2105818350003693}, {'matter': 0.7071718242333846, 'need': 0.570897367009244, 'adv': 0.41711414187526613}, {'crazy': 0.7065464587330159, 'think': 0.6081448402844359, 'adj': 0.2237288670183845, 'cconj': 0.28442459273052084}, {'rosecrans': 0.44170102576630293, 'lucky': 0.40811173252413313, 'ride': 0.3379953310172425, 'propn': 0.7128431858883313, 'cconj': 0.12632801018089665}, {'dunny': 0.9418674158739876, 'adv': 0.20080247233994947, 'cconj': 0.26937731533486775}, {'blast': 0.9633108367125767, 'adv': 0.2683882111273065}, {'cock': 0.6419661860867905, 'aim': 0.6849973061709346, 'adv': 0.3444678598356358}, {'knish': 0.4612881843733888, 'rapp': 0.4612881843733888, 'delicious': 0.4612881843733888, 'mmm': 0.4612881843733888, 'snitch': 0.35605176976114156, 'propn': 0.1063505855058191, 'adj': 0.10377636552962415}, {'truth': 1.0}, {'jam': 0.7004063485818007, 'toe': 0.3715001949048078, 'shoe': 0.3400919910648777, 'unless': 0.3562538101676743, 'kick': 0.2934374024878141, 'propn': 0.19044439400773439, 'adp': 0.08040296026125004}, {'happen': 0.712731366135087, 'hand': 0.6743393244185028, 'adp': 0.19308152493185277}, {'west': 0.37936705888347444, 'east': 0.37207197111492435, 'floss': 0.38799531638062634, 'south': 0.37936705888347444, 'good': 0.273663656775196, 'north': 0.37936705888347444, 'propn': 0.39780077598549485, 'adv': 0.091963896288131, 'adj': 0.1940859965194081}, {'read': 0.38860394921153996, 'huh': 0.40589399758334554, 'uh': 0.37084533675805265, 'slow': 0.3949013040593736, 'catch': 0.33732468630377976, 'intj': 0.40444391875951236, 'propn': 0.11897996293529525, 'adv': 0.11002352566699004, 'cconj': 0.2951939946005761}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'say': 0.5444295782046195, 'remember': 0.838806553608125}, {'word': 0.4524018671971705, 'jg': 0.6871068261103568, 'trust': 0.5460054633761816, 'propn': 0.15841336443755885}, {'accordion': 0.323179608132464, 'gangsta': 0.30880339726149736, 'origin': 0.323179608132464, 'mask': 0.2568128055007239, 'ski': 0.2906915135538765, 'york': 0.24335758403807295, 'new': 0.19763100503467027, 'old': 0.206322091087263, 'ride': 0.24730121112860728, 'fake': 0.23507451282919625, 'play': 0.22069830195822962, 'true': 0.24153892393234253, 'cause': 0.19661790472261867, 'know': 0.14684651931398354, 'propn': 0.1490189504641971, 'like': 0.12390212060236923, 'adj': 0.21811791163153452, 'adp': 0.1887411516853486}, {'wanna': 0.7088372268665832, 'love': 0.6151830050097907, 'propn': 0.26368238546881345, 'adp': 0.22264603241174546}, {'yell': 1.0}, {'love': 1.0}, {'circus': 0.7344820415339365, 'clown': 0.6786281239855452}, {'ballad': 0.38996203812791547, 'bland': 0.38996203812791547, 'salt': 0.38996203812791547, 'need': 0.2275803368134051, 'salad': 0.37261510054050123, 'sandwich': 0.37261510054050123, 'sand': 0.37261510054050123, 'man': 0.19914451713226355, 'like': 0.14950548321311966, 'adj': 0.08773006632808604, 'adp': 0.07591432373590111}, {'curse': 0.644516839565316, 'starter': 0.732846015912927, 'adj': 0.16486894440536642, 'adp': 0.14266391151215174}, {'passion': 1.0}, {'cake': 0.6596372003573465, 'bake': 0.710581073294843, 'adv': 0.16842420866928473, 'adj': 0.17772616046602693}, {'brock': 0.9081099344173472, 'propn': 0.41873183185962976}, {'voice': 0.8501911050806165, 'num': 0.45762013060536244, 'propn': 0.26030539930345503}, {'inch': 0.5590257162325499, 'dick': 0.41566024956440545, 'add': 0.5262378361387328, 'big': 0.3911817717171852, 'adv': 0.12473058241269373, 'adj': 0.13161936564848548, 'adp': 0.22778496704622414}, {'okay': 0.9029697648053129, 'intj': 0.42970408870225785}, {'hustlin': 0.5329739389255247, 'way': 0.7231865291882021, 'day': 0.37988383365572104, 'adj': 0.13633600444867283, 'cconj': 0.17332279493747133}, {'ok': 0.9104540772250306, 'intj': 0.41361017064902783}, {'rebel': 0.968805395504045, 'adj': 0.24782273027761384}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'propn': 0.3307867029695253, 'kill': 0.8867881538964334, 'adj': 0.32277999821473824}, {'news': 0.6149969916791489, 'wind': 0.5797410112276771, 'dead': 0.4942696014041104, 'adj': 0.15381925882500916, 'adp': 0.13310242998778846}, {'control': 0.5818606953290538, 'mind': 0.47509448240454616, 'sick': 0.5590029657977189, 'propn': 0.16697092322265156, 'adv': 0.3088037549115554}, {'cause': 0.9524297887650679, 'adp': 0.30475809664868314}, {}, {'step': 0.6308713858836507, 'just': 0.38727798790770945, 'num': 0.650210487435948, 'adv': 0.17100694893396828}, {'hail': 0.4378077347352708, 'joseph': 0.4378077347352708, 'jesus': 0.3937964829873366, 'close': 0.34102796713533196, 'eye': 0.2927307679761198, 'propn': 0.40374855030219975, 'look': 0.2713416012210865, 'cconj': 0.12521451557636828, 'adp': 0.0852284962616613}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'right': 0.9330717386381799, 'adj': 0.35969032591206007}, {'possible': 0.37757565342935123, 'follower': 0.37757565342935123, 'butt': 0.3607797075316184, 'dollar': 0.27295012384903805, 'couple': 0.315270902472783, 'cock': 0.30003830812931875, 'powder': 0.37757565342935123, 'sellin': 0.3607797075316184, 'propn': 0.08705055359157007, 'adj': 0.08494349162356625, 'cconj': 0.10798793348448833, 'adp': 0.14700610616784188}, {'wake': 0.4918490227166324, 'asleep': 0.5829235425801155, 'fall': 0.4579396752270328, 'propn': 0.29882762470140267, 'adj': 0.14579724532717914, 'cconj': 0.18535078944465033, 'adp': 0.25232168958310053}, {'atmosphere': 0.45562572259892825, 'represent': 0.34579352340271935, 'bout': 0.36606142181428614, 'earth': 0.34579352340271935, 'place': 0.30844267548730625, 'square': 0.39300412564399734, 'hold': 0.28905952208438435, 'propn': 0.21009019528965553, 'adj': 0.10250247705207258, 'adp': 0.17739428573010574}, {'pumpin': 0.7608306019443678, 'actually': 0.6045896352348173, 'adv': 0.16220612723984604, 'adj': 0.17116465872794112}, {'deceit': 0.3081132512939744, 'admire': 0.27713972388982006, 'liar': 0.5315317942692573, 'defeat': 0.2846826823213152, 'uh': 0.22140984324890206, 'building': 0.24484041222156122, 'lie': 0.21546418191202032, 'truth': 0.2143909754033377, 'walk': 0.22411554015643065, 'mad': 0.22411554015643065, 'delete': 0.2846826823213152, 'intj': 0.12073478587913085, 'propn': 0.07103590724251402, 'adv': 0.1313770952849435, 'adj': 0.06931648039985873, 'cconj': 0.08812144793824428, 'adp': 0.1799422006691279}, {'propn': 0.3159034552949618, 'hop': 0.9487913400388434}, {'millionaire': 0.3258065230750393, 'forth': 0.31131345742052746, 'scrambler': 0.3258065230750393, 'hammer': 0.28653739803784134, 'gat': 0.31131345742052746, 'safe': 0.3010304636923533, 'stack': 0.2537852290592711, 'cocked': 0.3258065230750393, 'plan': 0.24726827300064344, 'ace': 0.293054354096469, 'make': 0.1729400948525853, 'propn': 0.15023022771638328, 'adv': 0.06946068441835088, 'adj': 0.14659389932781347, 'cconj': 0.09318178442674122, 'adp': 0.12685020309527575}, {}, {'neck': 0.45063348865113395, 'frozen': 0.5670883661337834, 'glow': 0.5239639532093527, 'send': 0.41513682537596636, 'adj': 0.12757831560641172, 'adp': 0.11039569395065561}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'make': 0.7206389226165701, 'man': 0.6933105676462958}, {'need': 0.7959264788818351, 'adv': 0.2907634624186515, 'adp': 0.5309968447524721}, {'ayo': 1.0}, {'wanna': 0.9064769675744682, 'adv': 0.3118193796520565, 'adp': 0.2847247473094029}, {'lil': 0.7715883832550772, 'bitch': 0.585369071940521, 'propn': 0.24898677965167032}, {'city': 1.0}, {'grind': 0.34906386198881606, 'gift': 0.36098764358731755, 'jiffy': 0.3777932698597189, 'spiffy': 0.3777932698597189, 'patiently': 0.3777932698597189, 'criminal': 0.32586903313644217, 'mind': 0.24783401339485783, 'come': 0.19912024081748195, 'propn': 0.08710072534009801, 'adv': 0.08054405677770557, 'adj': 0.2549773468890256, 'cconj': 0.10805017253087344, 'adp': 0.14709083341064988}, {'1555': 0.3749004684910439, 'tribe': 0.34639104460884745, 'pile': 0.34639104460884745, 'capture': 0.33721306009211566, 'date': 0.317881620726651, 'pen': 0.27101622781099094, 'high': 0.24871021038441543, 'foot': 0.2979124878982404, 'man': 0.19145292482500192, 'num': 0.15195167161691395, 'propn': 0.08643378625574118, 'adv': 0.15985464553851556, 'adj': 0.16868330632922385, 'cconj': 0.10722282140548431, 'adp': 0.21894681598033813}, {'dang': 0.4431672728401475, 'jump': 0.382257976093, 'bang': 0.6674190705678145, 'body': 0.3184595144821004, 'girl': 0.29514268616564876, 'cconj': 0.1267473618791432, 'adp': 0.08627184323133491}, {'hooper': 0.3514042569808123, 'cookie': 0.3514042569808123, 'list': 0.32468160988304373, 'scandalous': 0.3514042569808123, 'villain': 0.2688990770466056, 'ho': 0.2433273402049058, 'pack': 0.2626335448169746, 'mr': 0.2572453543019776, 'shit': 0.18151363835569204, 'stay': 0.23591089771920604, 'll': 0.2540307739464427, 'num': 0.14242837432679717, 'propn': 0.24305011321661762, 'adj': 0.07905569198709032, 'adp': 0.13681647913566758}, {'oh': 0.5285337328132984, 'ben': 0.7541077508102764, 'intj': 0.3359958445932549, 'propn': 0.19768759663259716}, {'somebody': 0.7008960248385899, 'say': 0.42973070550368964, 'nigga': 0.4692438981498607, 'propn': 0.2011293378120402, 'adv': 0.18598895406600593, 'adp': 0.16982798826639392}, {'come': 0.4797583192549411, 'let': 0.5100635973827589, 'burn': 0.6754339369760157, 'propn': 0.20985961760338995, 'adv': 0.09703102293118054}, {'jollyin': 0.3957497184280665, 'pollyin': 0.41417367831549523, 'somalians': 0.3957497184280665, 'drug': 0.3143338236227061, 'rolly': 0.41417367831549523, 'sit': 0.2603901117190493, 'propn': 0.38195310161508444, 'adv': 0.17660043692393598}, {'slickness': 0.5836869332872655, 'buttery': 0.5577224038911961, 'listen': 0.43311330619843397, 'intj': 0.22871887727946844, 'yeah': 0.308941318795023, 'adp': 0.11362695463051752}, {'cronie': 0.7849938116530938, 'doom': 0.5027601227266243, 'propn': 0.3619626702607011}, {'celebrate': 1.0}, {'ecstatic': 0.8666703214367834, 'know': 0.41213121754600296, 'adv': 0.193372667506476, 'adj': 0.2040525053169934}, {'conversation': 0.8263828489427336, 'need': 0.504725886917636, 'adv': 0.18438367154045174, 'adp': 0.16836219206745776}, {'hollow': 0.727656311564231, 'krill': 0.6859419015053233}, {'adp': 1.0}, {'donna': 0.45233267415127093, 'slaughter': 0.41793489386827803, 'record': 0.35576589636595474, 'forget': 0.3523420901368307, 'good': 0.2869703357999689, 'rotten': 0.40686128199342, 'propn': 0.20857176216098947, 'adv': 0.19287113612574117, 'adj': 0.20352327470724033}, {'scene': 0.9718523789083254, 'adv': 0.23559064839298807}, {'come': 0.45416492017182, 'fast': 0.6712108382189247, 'propn': 0.19866435380244976, 'adv': 0.5511285788915576}, {'perpetrator': 1.0}, {'share': 1.0}, {'shawty': 0.967291997573513, 'adv': 0.25366551091987827}, {'break': 0.5813927194056857, 'wu': 0.6510815217848572, 'propn': 0.21127985869337143, 'like': 0.3513381680804026, 'adv': 0.19537537567153132, 'adp': 0.17839880423926543}, {'building': 0.20864863742293233, 'voice': 0.593150659490041, 'island': 0.19483383679464245, 'doom': 0.33633139904549314, 'warm': 0.25088861104319926, 'heat': 0.1962393084909565, 'long': 0.1762721950319029, 'num': 0.3192666691552263, 'propn': 0.4237487424497563, 'adv': 0.11195722009723146, 'adj': 0.059070269712241115, 'adp': 0.15334353771027967}, {}, {'mind': 0.6337444127535404, 'free': 0.7026985305659237, 'thing': 0.30458817526654325, 'adj': 0.10866847717696018}, {'maintain': 0.4093631351601666, 'insane': 0.4093631351601666, 'thang': 0.4024104873525179, 'feel': 0.27524354610204077, 'brain': 0.3521611231827858, 'try': 0.3010917811981253, 'man': 0.24236275317767936, 'lose': 0.3173253714938764, 'like': 0.18195108280397954, 'adj': 0.10676919815780658, 'adp': 0.09238920946055934}, {'holla': 0.3179388612286295, 'spit': 0.24977000964595766, 'sentiment': 0.35347215790978526, 'limit': 0.3179388612286295, 'lend': 0.2997123553629101, 'yo': 0.19737103094506508, 'real': 0.22864576200059866, 'place': 0.2392882857317025, 'know': 0.1606108639199153, 'propn': 0.2444803848906886, 'adv': 0.3014355609521078, 'adj': 0.1590418185699666, 'adp': 0.41286480021507677}, {'stan': 0.6853029224336091, 'cap': 0.3313333419943434, 'starter': 0.3586034543146208, 'son': 0.23882446484913247, 'write': 0.25339587924799617, 'listen': 0.26609457716940993, 'man': 0.18313041980773956, 'propn': 0.24802946589175176, 'adp': 0.06980971495159435}, {'gon': 0.6183839751662379, 'old': 0.5320328546447715, 'shit': 0.43046605987893627, 'num': 0.3377739638014148, 'adj': 0.18748338994780775}, {'mount': 0.5797431580199115, 'vernon': 0.5797431580199115, 'world': 0.31622430907540966, 'everybody': 0.3789461354660843, 'propn': 0.26732106473597794, 'adp': 0.11285921571463528}, {'adj': 1.0}, {'door': 0.7772972399030751, 'come': 0.5259467201797676, 'cconj': 0.28539857939184243, 'adp': 0.1942593607843001}, {'ya': 0.6338116077002094, 'bish': 0.7734874568759832}, {'payless': 0.9744377054874274, 'propn': 0.2246578690462405}, {'dealer': 0.2358030647158904, 'barrel': 0.21639549160066265, 'cream': 0.20747903887051186, 'drug': 0.19369008659583803, 'forget': 0.19879494605887787, 'life': 0.14539848477819145, 'pound': 0.21639549160066265, 'ether': 0.22955522167651793, 'plant': 0.22955522167651793, 'fake': 0.18563521598302257, 'num': 0.5171997142193973, 'propn': 0.41187399062184005, 'adv': 0.05440991606699801, 'adj': 0.057414937854060766, 'cconj': 0.07299111881904578, 'adp': 0.34777487962460446}, {'bastard': 0.6183315651147728, 'dirty': 0.6660853980844502, 'like': 0.2839071299879579, 'adj': 0.16659717630125284, 'cconj': 0.2117935635710563, 'adp': 0.14415938006844337}, {'rain': 0.5424324959597202, 'fall': 0.4443671065414155, 'lie': 0.43976588134350175, 'truth': 0.43757544949554333, 'like': 0.24109689298065562, 'adv': 0.13407138853343964, 'cconj': 0.17985730098588398, 'adp': 0.1224216476352438}, {'suzanne': 0.7197805960562946, 'care': 0.592687675665653, 'intj': 0.28204744774802043, 'propn': 0.16594634421494722, 'adv': 0.1534544255321851}, {'dark': 0.34924772937673465, 'great': 0.342742574927711, 'run': 0.2708418804544687, 'propn': 0.8190016535131915, 'adv': 0.09466872322823386, 'adp': 0.08644276160558038}, {'avenue': 0.4664617618324132, 'caught': 0.48817769083712786, 'red': 0.40197930102502205, 'light': 0.334883733146161, 'propn': 0.4501999835259807, 'adj': 0.10982571894083881, 'cconj': 0.13962049599311596, 'adp': 0.1900681381232193}, {'chalupa': 0.42057044890202344, 'horsemeat': 0.42057044890202344, 'course': 0.36987952537781815, 'beef': 0.32760107656155646, 'turn': 0.273932289715509, 'teach': 0.3143271763108889, 'heat': 0.3143271763108889, 'hold': 0.2668196436956824, 'adv': 0.08966398508890286, 'adj': 0.09461606456601958, 'cconj': 0.12028459263481368, 'adp': 0.16374579107737997}, {'fuckin': 0.5516521890136636, 'straight': 0.5670159061049622, 'rap': 0.4932841622697978, 'adv': 0.17373143292129095, 'adp': 0.3172710970909585}, {'bake': 1.0}, {'code': 0.5869826155473659, 'pride': 0.6674268922192259, 'word': 0.4394442913147349, 'adp': 0.12992870128901318}, {'suicide': 0.7854200322047881, 'murder': 0.6189631435000226}, {'limo': 0.6830523455419735, 'skate': 0.6526676792192304, 'like': 0.26187182596119796, 'adv': 0.14562410527298691, 'adp': 0.13297052486691274}, {'bring': 0.6119951225939476, 'let': 0.49760657895735233, 'intj': 0.34797267839100166, 'yeah': 0.47002302322162887, 'adv': 0.18932256926888552}, {'write': 0.73317037351884, 'wanna': 0.6430619031761257, 'adv': 0.2212071248349478}, {'think': 1.0}, {'sweet': 0.6025278693258145, 'meet': 0.54616745941857, 'look': 0.4593403939548281, 'adv': 0.316017376757803, 'adj': 0.16673539824074246}, {'inch': 0.3931289606995398, 'bobby': 0.3931289606995398, 'strong': 0.3488561264096796, 'thong': 0.3931289606995398, 'spit': 0.2907247449071299, 'pop': 0.3031943158624392, 'bitch': 0.22300672402293517, 'long': 0.2762090496853464, 'num': 0.16675790012828506, 'propn': 0.1897118543385611, 'adv': 0.08771547141304024, 'adj': 0.18511987167258329, 'adp': 0.08009369225566132}, {'extend': 0.6149569603526326, 'clip': 0.4999426362670936, 'sit': 0.38662213460762596, 'hip': 0.4369075486121941, 'adv': 0.13110643381466117, 'adp': 0.11971432397874107}, {'swear': 0.3976436999779275, 'mc': 0.34438521777291775, 'crowd': 0.39329742552783126, 'sound': 0.3246796515712494, 'dig': 0.40754365897515815, 'feel': 0.28704214568737546, 'come': 0.2608612495267153, 'world': 0.2699653330181238, 'propn': 0.22821591570620853, 'adj': 0.11134597038353644, 'adp': 0.09634956858202857}, {'nas': 0.699031332730283, 'rock': 0.6432969472945301, 'propn': 0.22928260131518782, 'adv': 0.21202292847002066}, {'interscope': 0.817047799652944, 'say': 0.40247228746894154, 'num': 0.3311593059563011, 'propn': 0.18837142338117208, 'adp': 0.15905556209605615}, {'clothe': 0.6925325117910763, 'hoe': 0.6779548832262454, 'cconj': 0.2465276788152411}, {'conflict': 0.5017818574455968, 'monster': 0.43281652103522295, 'save': 0.3808233553539106, 'need': 0.2928379507721889, 'cause': 0.3052769882632532, 'propn': 0.11568645402879137, 'cconj': 0.43053400308050066, 'adp': 0.19536481322026392}, {'section': 0.8947657862630882, 'propn': 0.44653576310638027}, {'ooh': 0.9985734092534512, 'propn': 0.053396126563071473}, {'choke': 0.5632908716497281, 'rope': 0.5743351229422787, 'throat': 0.5632908716497281, 'adv': 0.13922688974721492, 'adp': 0.12712917666048734}, {}, {'propn': 1.0}, {'leg': 0.35604553102604786, 'kunta': 0.3822510493371082, 'talkin': 0.3166188434665523, 'cut': 0.3012998903268458, 'wanna': 0.2746583234604802, 'game': 0.2896687610173938, 'king': 0.3054109934180397, 'world': 0.24172381043229707, 'run': 0.2703014620295729, 'everybody': 0.2896687610173938, 'propn': 0.20434186911731064, 'adv': 0.09447982806103132, 'adj': 0.09969788319296248, 'adp': 0.08627027993106187}, {'3000': 0.492471583002508, 'fighting': 0.4705646459710697, 'soldier': 0.41120755272546206, 'place': 0.33338603403757844, 'man': 0.2514937506974101, 'num': 0.19960465923729978, 'adv': 0.10499302742340824, 'kill': 0.3043831238395771, 'adj': 0.11079171923738787, 'adp': 0.19173993121105207}, {'shorty': 0.9433277141979979, 'cconj': 0.3318626577757438}, {'awake': 0.4660400312563195, 'drink': 0.37322213805343984, 'paint': 0.4506462646064784, 'faint': 0.4877363267733639, 'til': 0.3446435718254194, 'adv': 0.20796697839943148, 'adj': 0.10972642492038817, 'cconj': 0.13949426435522488, 'adp': 0.09494814825100249}, {'serve': 1.0}, {'kingpin': 0.29809122784098163, 'cheerleader': 0.31196873821888194, 'tweeter': 0.29809122784098163, 'red': 0.2568838717636596, 'spare': 0.2882449775320143, 'mc': 0.21707369547141134, 'dance': 0.25064370646724626, 'sound': 0.20465283692116645, 'bring': 0.2149987479565948, 'doom': 0.19980468480827807, 'head': 0.1973144120968852, 'hope': 0.22164396119801968, 'rap': 0.1888465823771839, 'propn': 0.35962397361378967, 'like': 0.23920808896532628, 'adj': 0.07018385232475942, 'cconj': 0.08922413043860083, 'adp': 0.12146257057390965}, {'orange': 0.7585289969970515, 'thing': 0.517674889434459, 'adv': 0.350050573861032, 'adj': 0.18469181168430304}, {'quick': 0.7610272782641594, 'check': 0.6127205423622459, 'adj': 0.21309861263077487}, {'race': 0.9119232355515778, 'like': 0.3658937165634033, 'adp': 0.18578966774436498}, {'elementary': 0.8712390377483986, 'shit': 0.45002803602307795, 'adj': 0.19600333134019832}, {'window': 0.33515194685200433, 'gang': 0.3308959404708926, 'sign': 0.3308959404708926, 'ya': 0.5148654051514101, 'bish': 0.6283285569808529, 'propn': 0.09383903634262038}, {'monster': 0.3624631176591385, 'voice': 0.3164287107567363, 'bed': 0.33761417641130487, 'tryin': 0.3164287107567363, 'inside': 0.28447307924072057, 'friend': 0.27370291337927355, 'head': 0.2657802331169883, 'adp': 0.5726303767002525}, {'everybody': 1.0}, {'fuck': 0.9365093727538688, 'adp': 0.35064254554197366}, {'tell': 1.0}, {'united': 0.2836330505666165, 'flag': 0.26206408614747145, 'allegiance': 0.26206408614747145, 'pledge': 0.2710160152020278, 'screen': 0.26206408614747145, 'self': 0.2305856574929083, 'clear': 0.2551204305233227, 'live': 0.3657073492290433, 'america': 0.22308131214084428, 'blow': 0.1874477286546182, 'shit': 0.14650723758614476, 'let': 0.15893510861132448, 'fiend': 0.21357861759318952, 'nigga': 0.1525624311721214, 'smoke': 0.19369208658000386, 'niggas': 0.1603826923138168, 'propn': 0.13078393081989126, 'adv': 0.12093892798754256, 'adj': 0.2552366015779666, 'adp': 0.16564544071737924}, {}, {'smack': 0.4367935271428722, 'scramble': 0.45712826409514, 'handle': 0.3943001565256478, 'game': 0.29879954027025074, 'num': 0.185279586745179, 'propn': 0.3161745315706472, 'adv': 0.09745796920004544, 'think': 0.27954337461120776, 'adj': 0.10284050499385937, 'hot': 0.3392029571468163, 'adp': 0.08898964421240872}, {'better': 0.5669638523063342, 'friend': 0.5608667813175153, 'adv': 0.5507516193415088, 'cconj': 0.24627849598614487}, {'mouth': 0.47222922319906474, 'dick': 0.4346671982884479, 'daughter': 0.48616620489323575, 'leave': 0.3893518218157256, 'just': 0.29539312197147966, 'adv': 0.260868307012895, 'cconj': 0.17497793573009, 'adp': 0.1191004595002381}, {'welcome': 0.8505473879197799, 'bitch': 0.4610197749467093, 'adj': 0.1913483146092959, 'adp': 0.16557696248907022}, {'yah': 0.6786388222055313, 'common': 0.5810561441268955, 'propn': 0.17790359215806603, 'adv': 0.16451156947071321, 'adj': 0.34719485785658327, 'adp': 0.1502168181441739}, {'true': 0.7207677070183918, 'tell': 0.5141309750082917, 'adv': 0.411207873866686, 'adj': 0.21695929923954077}, {'intj': 0.8287051316430459, 'yeah': 0.5596854516498367}, {'artist': 0.9328865433249266, 'adv': 0.2152570772712295, 'cconj': 0.28876822534329843}, {'whassup': 0.9780202119011796, 'adv': 0.2085101079390913}, {'lock': 0.5255217058873468, 'candy': 0.6987828383682656, 'break': 0.46396279583704386, 'adp': 0.14236574560728085}, {'train': 0.8163224161776279, 'come': 0.4783375899746199, 'adv': 0.19348736144378995, 'cconj': 0.25956406497185286}, {'hopin': 0.4283962944764497, 'spiritual': 0.4283962944764497, 'spirit': 0.4483401018320369, 'lookin': 0.3402641593870334, 'better': 0.2951941262996656, 'bring': 0.30898147392252384, 'propn': 0.10336538838588635, 'adv': 0.28675310148661903, 'adj': 0.10086342521977344, 'adp': 0.17455768667974703}, {'loud': 0.43477133173973687, 'drastic': 0.5333256272358302, 'read': 0.42029601131555955, 'say': 0.27494311616708095, 'label': 0.41131871433216227, 'propn': 0.12868321063035845, 'adj': 0.25113685722343293, 'cconj': 0.1596340679844597}, {'100': 0.5411172718039793, 'bang': 0.40746689652991647, 'chopper': 0.46674564171476024, 'shot': 0.3618064779876544, 'num': 0.4386426846695865}, {'apartment': 0.3914587566286034, 'bed': 0.3145080313195123, 'cousin': 0.32686311832408915, 'foot': 0.31107043575104254, 'num': 0.6346517802787539, 'propn': 0.09025132092941945, 'adv': 0.16691497088728852, 'cconj': 0.11195854867437809, 'adp': 0.3048227660581591}, {'mma': 0.5236419352340128, 'ball': 0.4006975734930067, 'jack': 0.4440009043536431, 'snatch': 0.4311815616805516, 'drop': 0.3560193324932472, 'num': 0.21223837811615018, 'adp': 0.10193793114808056}, {'adv': 1.0}, {'strength': 0.31225844331654445, 'lift': 0.3317140804726796, 'text': 0.3317140804726796, 'powerless': 0.3471568884600081, 'extra': 0.2994433427337781, 'possess': 0.3317140804726796, 'ink': 0.3053144258481689, 'power': 0.2634719632363298, 'body': 0.24946655794226197, 'adv': 0.07401249933667967, 'adj': 0.15620031630288206, 'hot': 0.25760088012193894, 'adp': 0.20274419949351424}, {}, {'lil': 0.7966782645839748, 'bitch': 0.6044036256835876}, {'evidence': 0.2255478267376504, 'near': 0.2360481099191949, 'ray': 0.21231903442316805, 'attention': 0.21231903442316805, 'arrest': 0.21809775725795674, 'smuggle': 0.2360481099191949, 'intestine': 0.2360481099191949, 'american': 0.20759747407641221, 'regard': 0.2360481099191949, 'dark': 0.1856550990229982, 'til': 0.16679599049630053, 'case': 0.17914683823362956, 'damn': 0.17774666563474426, 'weight': 0.20759747407641221, 'big': 0.1578285146966151, 'day': 0.14796769325790915, 'follow': 0.1970971908948677, 'face': 0.15069620239084694, 'star': 0.17279893018424944, 'rap': 0.14288892883734394, 'propn': 0.2176847840275749, 'adv': 0.10064907918905648, 'think': 0.1443482943414668, 'adj': 0.2124157155321616, 'cconj': 0.13502114006332638, 'adp': 0.27571041611658714}, {'doubt': 1.0}, {'somebody': 0.4424445991607848, 'shoot': 0.38913316799153386, 'feel': 0.319382017363665, 'earth': 0.41794755671339295, 'die': 0.37441421836887767, 'old': 0.3515725435974689, 'propn': 0.1269640375948993, 'like': 0.2111290335792087, 'adj': 0.12389086822511455, 'cconj': 0.15750139983081954, 'adp': 0.10720488279572005}, {'stripe': 0.9780202119011796, 'adv': 0.2085101079390913}, {'shatter': 0.44659198362971536, 'raise': 0.4036435104984898, 'punk': 0.38674889923045563, 'sure': 0.3567870376134974, 'hand': 0.3375683200393395, 'niggas': 0.2807522100577274, 'propn': 0.11446957613692019, 'like': 0.19035194092614882, 'adv': 0.10585266659596355, 'adj': 0.22339767136601582, 'cconj': 0.14200177326693503, 'adp': 0.1933098178964543}, {}, {}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'rob': 0.3041096963925688, 'future': 0.31712450016775284, 'determine': 0.3525667827052777, 'choice': 0.3525667827052777, 'rise': 0.2989446792420107, 'sky': 0.2721336275103772, 'thug': 0.28016515372403905, 'die': 0.2397069107575011, 'make': 0.18714460431130886, 'steal': 0.28326121937411003, 'kill': 0.21791181945488072, 'cconj': 0.3025059317290552, 'adp': 0.06863454968412626}, {'represent': 0.6340361999868036, 'president': 0.734728644323675, 'adv': 0.17810852909940114, 'adp': 0.1626323097623479}, {'scoop': 0.8074042713424555, 'come': 0.44536298070791247, 'num': 0.34248568358864634, 'adv': 0.1801491453483464}, {'shout': 0.338910434270973, 'pink': 0.34661855343126025, 'engine': 0.38535713306468616, 'date': 0.3267479246164359, 'people': 0.241562646189297, 'green': 0.338910434270973, 'water': 0.2839798586400957, 'propn': 0.26653375125537343, 'think': 0.2356538456895382, 'adj': 0.17338819443074344, 'cconj': 0.22042692676395723, 'adp': 0.22505364594347022}, {'adj': 1.0}, {'body': 0.759025607520558, 'want': 0.6177373145134686, 'adp': 0.2056228036617913}, {'syringe': 0.6365010109676946, 'heroin': 0.6365010109676946, 'adv': 0.135699541671256, 'cconj': 0.1820414748962356, 'adp': 0.3717249815145862}, {'champagne': 0.7736523276133049, 'kick': 0.6110858959351829, 'adp': 0.16743985119322785}, {'life': 0.4764345637209882, 'bitch': 0.453276487728799, 'cause': 0.5087697323955266, 'know': 0.3799809810809935, 'propn': 0.19280118882481911, 'adv': 0.35657544386410245}, {'late': 0.6145681193227116, 'place': 0.5117534747216784, 'night': 0.5286390987469886, 'propn': 0.17428584950927437, 'adj': 0.17006725387822036, 'adp': 0.1471620974217103}, {'punch': 0.2310141458540605, 'pickin': 0.462028291708121, 'sucker': 0.462028291708121, 'duck': 0.21344660257131767, 'pump': 0.1992633600335353, 'dick': 0.16412827346804965, 'suck': 0.21344660257131767, 'ar': 0.2310141458540605, 'ak': 0.22073779180386013, 'fuckin': 0.15638849539968624, 'wall': 0.18780797444270356, 'bullet': 0.1799472194975098, 'die': 0.1570643916566865, 'ayy': 0.16600651094043625, 'propn': 0.21304243641167372, 'comin': 0.1856027052383745, 'cconj': 0.132141678044567, 'adp': 0.13491530668058443}, {'raw': 0.3887928424754186, 'loud': 0.3725198100431511, 'scream': 0.3691336396110198, 'door': 0.3725198100431511, 'start': 0.33115147755578705, 'come': 0.25206003860069837, 'shit': 0.24702735618363666, 'yes': 0.3327659874467542, 'intj': 0.18739795444587512, 'adj': 0.21517852608485746, 'adp': 0.09309882560176726}, {'chip': 0.5521600606578352, 'bit': 0.534190166823825, 'lil': 0.4852510480543107, 'nigga': 0.36532576295512287, 'adj': 0.15279729335911116, 'adp': 0.13221810582764298}, {'touch': 1.0}, {'square': 0.37524142897249574, 'lard': 0.41568085778927827, 'coat': 0.37524142897249574, 'color': 0.3582182170886031, 'feed': 0.3536692982114205, 'stop': 0.2945019218724438, 'sugar': 0.3632468136096625, 'baby': 0.2711369972860522}, {'shotgun': 0.5196689263180257, 'ridin': 0.5520475225999285, 'window': 0.47573390881081706, 'roll': 0.44594280778854695}, {'hurt': 0.40777326944998726, 'war': 0.3617530250697918, 'bring': 0.32580274018348554, 'mic': 0.30477317163475387, 'shotty': 0.45171862523989426, 'boy': 0.32894705424340104, 'heat': 0.3533239324056007, 'like': 0.18124442955986936, 'adp': 0.18406078499907805}, {'crown': 0.4795998702784703, 'dung': 0.5190729346328197, 'cow': 0.4795998702784703, 'drown': 0.4959826721969724, 'propn': 0.11967293416243155, 'adp': 0.1010484789530576}, {'skull': 0.28043512319462066, 'quarter': 0.271172071616755, 'load': 0.2639870906150692, 'plus': 0.2162810268912641, '365': 0.29349066112724703, 'bust': 0.21090206604973508, 'create': 0.271172071616755, 'mic': 0.1892087179013648, 'life': 0.16720736168015715, 'day': 0.18397578415096666, 'make': 0.15578663770953396, 'thing': 0.18506737744722307, 'got': 0.22274240624101013, 'cause': 0.17855556908418319, 'rhyme': 0.18562737275174807, 'num': 0.35686589089955045, 'propn': 0.13532930046223532, 'like': 0.11251983224062954, 'adj': 0.1980804743788011, 'cconj': 0.16787867387248193, 'adp': 0.1714024152394737}, {'bout': 0.44979880323888405, 'earth': 0.4248945770450758, 'place': 0.37899963785961394, 'square': 0.48290471174615096, 'hold': 0.3551825441040935, 'propn': 0.25814880449612715, 'adp': 0.2179736313850055}, {'right': 0.9330717386381799, 'adj': 0.35969032591206007}, {'tan': 0.5159834823926592, 'tropez': 0.540004874043772, 'st': 0.540004874043772, 'propn': 0.373496459324426, 'adp': 0.10512332180825382}, {'impression': 0.6551414797597542, 'bowl': 0.6053210401522575, 'life': 0.373246896296874, 'adp': 0.25507417401990967}, {'renegade': 0.6071062678546034, 'circle': 0.6071062678546034, 'mic': 0.3913916651707314, 'know': 0.2758572634063296, 'propn': 0.13996913261131097, 'adp': 0.11818602134008552}, {'going': 0.48279043750305844, 'day': 0.8423032641061697, 'adv': 0.14323573961252373, 'cconj': 0.19215131440963573}, {'chest': 0.9472692839147934, 'adj': 0.24231374158042052, 'adp': 0.20967821630501257}, {'shock': 0.44136986279575235, 'round': 0.40405458057081817, 'swing': 0.4232560237403405, 'voice': 0.3695006509272677, 'bring': 0.338173153232356, 'ring': 0.3787521360627413, 'adj': 0.220785421982546, 'cconj': 0.14034130813137677}, {'accident': 0.7458841069579556, 'ask': 0.5677992684831233, 'intj': 0.30588295240386976, 'adv': 0.16642268212673092}, {'say': 0.8627427678500506, 'adv': 0.3733980908633585, 'adp': 0.34095275664237257}, {'propn': 0.734200756444857, 'adv': 0.6789324334834799}, {'fantastic': 0.6355717024996216, 'power': 0.5048182579298852, 'peace': 0.4971295862189219, 'propn': 0.30670720882980895}, {'adv': 1.0}, {'pressure': 0.3735416693849211, 'tec': 0.35464792645236104, 'rebel': 0.3735416693849211, 'nas': 0.29854555855968534, 'pull': 0.31299806598253394, 'corner': 0.33405953481566625, 'street': 0.2817702578598438, 'police': 0.3820374352504521, 'propn': 0.0979230816597343, 'adp': 0.24805053520326803}, {'lifer': 0.8258459835945732, 'live': 0.5324096485379246, 'adj': 0.18579122025659786}, {'rhymes': 0.5912856394384491, 'undercover': 0.5912856394384491, 'make': 0.3396898550239799, 'propn': 0.1475415065450765, 'adv': 0.1364350461357649, 'adj': 0.28794051750990146, 'adp': 0.24915984425662802}, {'race': 0.9572597189079648, 'adv': 0.21358509777380746, 'adp': 0.1950262458368032}, {'hol': 0.5981226297169169, 'lil': 0.6200722939037375, 'bitch': 0.23521034731446136, 'sit': 0.2728207364319647, 'propn': 0.10004673927243173, 'humble': 0.329339638437385, 'adj': 0.09762510413461509}, {}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'trouble': 0.27925180026015717, 'fall': 0.22436728013908105, 'daily': 0.2933763602757982, 'audio': 0.3033978950922668, 'double': 0.2523173815852778, 'rapper': 0.22685658539676573, 'zone': 0.3033978950922668, 'black': 0.1881584963364409, 'save': 0.24098114541240667, 'watch': 0.2220440560125286, 'need': 0.18530487640844054, 'yo': 0.17729751243618672, 'come': 0.16735382223595796, 'just': 0.15330728118074777, 'stay': 0.21316476947119897, 'adv': 0.20308365997549974, 'adj': 0.35716638189966643, 'cconj': 0.09081251254045693, 'adp': 0.0618124332465743}, {'elevator': 0.3756217938191064, 'music': 0.6068817353451611, 'motivate': 0.42709967869272797, 'way': 0.25483855918651627, 'make': 0.4534142425848063, 'know': 0.19406577530857433}, {'care': 0.6173128672620924, 'yo': 0.41860823334877, 'nigga': 0.40324624543923276, 'propn': 0.17284114005566084, 'adv': 0.47949060850441505, 'adp': 0.14594222516038005}, {'begin': 0.3176651645142826, 'fame': 0.27041157284483974, 'stand': 0.24563817770956534, 'enter': 0.3023712237317246, 'hood': 0.2500808948176379, 'lot': 0.24166403183346516, 'remember': 0.2609321184921233, 'ya': 0.2174536247481862, 'fuck': 0.1787589659073506, 'got': 0.2609321184921233, 'hope': 0.2442664083877964, 'll': 0.2485411096318504, 'like': 0.13181162354490256, 'look': 0.21308450668610915, 'adv': 0.21989707758195834, 'adj': 0.15469456006403165, 'cconj': 0.09833093473857302, 'adp': 0.2677196861784226}, {'feel': 0.48660561817108394, 'nah': 0.6599122400448757, 'just': 0.4051055258470426, 'adv': 0.35775779741916247, 'adj': 0.18875825575924454}, {'adj': 0.843935804073903, 'cconj': 0.5364441803227386}, {'propn': 1.0}, {'mf': 0.6233451230258278, 'um': 0.6978647165621844, 'intj': 0.30402190614952335, 'propn': 0.17887530729172244}, {'stat': 0.4944965227743653, 'track': 0.38969609843926994, 'crazy': 0.36767995120213653, 'listen': 0.38401366412423465, 'check': 0.33475962089558997, 'know': 0.23514991682812497, 'adv': 0.22066548101712222, 'adj': 0.11642634095900674, 'adp': 0.30223709985223934}, {'bang': 0.437502387280391, 'ride': 0.8891842896432661, 'propn': 0.1339513351018161}, {'folk': 0.3340285265483478, 'stared': 0.393943666217912, 'rarely': 0.3764196112518292, 'barely': 0.35434191299876333, 'joke': 0.3639860963831299, 'spare': 0.3639860963831299, 'speak': 0.29442677332919914, 'smoke': 0.26902284678140004, 'adv': 0.16797451702014077, 'adj': 0.0886258163300762, 'adp': 0.07668943150093133}, {'peel': 0.4949578590179534, 'choice': 0.5180004117119534, 'squeeze': 0.4325238023119994, 'ill': 0.37678334698209154, 'num': 0.2099518007397777, 'adv': 0.1104356744822227, 'adj': 0.11653495990437646, 'cconj': 0.29629979315048505}, {'let': 0.7211297598182083, 'know': 0.5847498490986951, 'adv': 0.2743656227196678, 'adp': 0.2505254249636859}, {}, {'adv': 0.5824916070192481, 'adj': 0.6146622129749468, 'adp': 0.5318777036997084}, {'millionaire': 0.5508144650068225, 'spend': 0.4954430492859984, 'grand': 0.45355619028438077, 'feeling': 0.42905394849544, 'num': 0.22325173144072047, 'adp': 0.10722763635066711}, {'niggas': 0.8769088007029621, 'adv': 0.3306229892074257, 'adj': 0.34888306673904224}, {'kind': 0.7499230889584555, 'oh': 0.5139124815988478, 'intj': 0.32670092291501096, 'adv': 0.17774917960451414, 'adj': 0.18756614305445551}, {'permission': 0.5068455897582483, 'return': 0.4842992443390861, 'york': 0.3816599658520638, 'new': 0.3099465460712362, 'master': 0.4120511461140075, 'propn': 0.23370780808120575, 'adv': 0.10805750979676382, 'cconj': 0.14495957919056132, 'adp': 0.09866816875236507}, {'just': 0.914787767568369, 'adv': 0.4039348218553085}, {'make': 0.9279490901035273, 'adv': 0.3727069709249289}, {'lady': 0.6839061647465403, 'place': 0.5998213603645386, 'adv': 0.37780263183311047, 'adp': 0.1724872889580202}, {'york': 0.5431667888184182, 'new': 0.44110644342542565, 'everybody': 0.47149177722088703, 'propn': 0.33260580358188296, 'adp': 0.42126455883446806}, {}, {'woman': 0.3053954276413924, 'figure': 0.3173925364703117, 'feeling': 0.29608974707960894, 'number': 0.28623170527602326, 'break': 0.24115476556708249, 'child': 0.28205795842398745, 'real': 0.24588087366092054, 'niggas': 0.21494010980623265, 'man': 0.1941166666595144, 'hard': 0.2531518743960018, 'num': 0.15406582069497085, 'adv': 0.16207875105767292, 'adj': 0.17103024764789915, 'cconj': 0.4348585784225735, 'adp': 0.14799539236661163}, {'friends': 0.9193474990891481, 'propn': 0.2410048131316009, 'adj': 0.2351712824427778, 'adp': 0.20349772450853174}, {'loaded': 0.548106029824492, 'bull': 0.5736228730143116, 'eye': 0.38354065226298956, 'propn': 0.2644989855418524, 'hit': 0.3526333167621011, 'adj': 0.12904838875712704, 'adp': 0.11166777333859894}, {'ham': 0.42694316561139856, 'swallow': 0.39857336072920657, 'touchin': 0.462082364131288, 'rib': 0.42694316561139856, 'eat': 0.3282949636894277, 'adv': 0.3940566562912733}, {'game': 1.0}, {'commercial': 0.6817427296002664, 'mil': 0.6817427296002664, 'adp': 0.2654311610839163}, {'ball': 0.43576217574805587, 'inside': 0.3855080618957276, 'deep': 0.3807607552413383, 'propn': 0.525163801548876, 'adv': 0.24281556143411082, 'young': 0.4116674701069294, 'adp': 0.11085840695543508}, {'runny': 0.47464933040429574, 'pen': 0.3431248607849045, 'ill': 0.34525062009407714, 'make': 0.2519467672012481, 'line': 0.33911720139536716, 'plot': 0.37717734381373724, 'shot': 0.31736411210874577, 'time': 0.26058021182497454, 'num': 0.19238108577744978, 'adj': 0.10678223305749415}, {'dave': 0.8888390830548346, 'say': 0.45821947190646634}, {'intj': 0.6066981269996483, 'adv': 0.6601762454759682, 'cconj': 0.4428145295768565}, {'crazy': 0.6621012685034325, 'maybe': 0.6915142729648769, 'adv': 0.19868216150849477, 'adj': 0.2096552389765536}, {'know': 0.4919385600676115, 'adv': 0.23081840821473434, 'adj': 0.24356634821681664, 'hot': 0.8033646429636704}, {'decide': 0.7384736497380443, 'team': 0.6166161718603667, 'propn': 0.17025605183654235, 'adv': 0.15743971192347153, 'adp': 0.14375944896015053}, {'goddamn': 0.2765082624769855, 'shadowbox': 0.30630730739670275, 'special': 0.543624059439678, 'fuse': 0.30630730739670275, 'short': 0.2819296653240058, 'fuck': 0.1666741127344819, 'technique': 0.5353393177109516, 'propn': 0.07390720742155205, 'adv': 0.0683437053778782, 'adj': 0.14423656129722146, 'adp': 0.12481035826328774}, {'caliber': 0.7167626004878747, 'hear': 0.4868898498147144, 'just': 0.3621809093283963, 'num': 0.30403719414403046, 'adv': 0.15992505177221392}, {'face': 0.7069078207464033, 'cause': 0.6736590047858948, 'adp': 0.21555713451066444}, {'minute': 0.46815704963578675, 'chill': 0.4741785178586271, 'snatch': 0.4741785178586271, 'let': 0.32268525432163697, 'adv': 0.12277088767870159, 'adj': 0.1295514383385712, 'hot': 0.4273046985688247, 'adp': 0.11210307072727464}, {'clothe': 0.833245628759467, 'tell': 0.5529029952471237}, {'murder': 0.736609858055826, 'street': 0.6489544626170797, 'adp': 0.19043114888156643}, {'adj': 1.0}, {'cappachino': 0.32206607204234633, 'wax': 0.3077393953289847, 'fat': 0.24859122521524538, 'hill': 0.2587561641109174, 'dollar': 0.4656442938155716, 'lp': 0.2896899172795829, 'cash': 0.22301232589958292, 'park': 0.273082840824279, 'face': 0.2056111950751605, 'num': 0.26107450980204394, 'propn': 0.29701099220471433, 'adj': 0.07245545745412534, 'cconj': 0.092112002586594, 'adp': 0.18809083192876958}, {'destroy': 0.19131389777609825, 'plat': 0.20323393983652854, 'bound': 0.21269540950019655, 'psycho': 0.20323393983652854, 'sicko': 0.21269540950019655, 'brown': 0.17088496139088902, 'fly': 0.16016184093750355, 'bobbalobs': 0.21269540950019655, 'tail': 0.1965209202773768, 'pony': 0.21269540950019655, 'use': 0.1446096514038688, 'dick': 0.15111338834592614, 'sound': 0.139529105393195, 'dig': 0.17513940855327853, 'throw': 0.14950344966679074, 'tie': 0.1834623667915656, 'mic': 0.13712131616204873, 'cop': 0.31348174013493146, 'come': 0.224207070582163, 'lot': 0.14950344966679074, 'stick': 0.16016184093750355, 'stop': 0.1439873517146838, 'drop': 0.1446096514038688, 'rap': 0.12875264810426648, 'hold': 0.1349388991231064, 'num': 0.2586240274562713, 'propn': 0.0980744016475216, 'like': 0.08154416806106775, 'adv': 0.13603750388805758, 'adj': 0.047850253508550177, 'cconj': 0.1824948525543179, 'adp': 0.16562256420089339}, {'hol': 0.6555546305963029, 'sit': 0.5980342097249007, 'propn': 0.2193065433325758, 'adv': 0.40559567349020775}, {'lifetime': 0.8256534060529213, 'come': 0.49480881847982977, 'adv': 0.20014996670418753, 'adp': 0.18275852115870678}, {'imma': 0.3275708689923001, 'sleazy': 0.6053212787403139, 'boojy': 0.2825492428751346, 'brand': 0.2735175389435428, 'benz': 0.27775040974801385, 'friend': 0.21335840029042055, 'new': 0.20031635174362197, 'need': 0.19116909187728157, 'cause': 0.1992894857494684, 'propn': 0.07552188608365058, 'adv': 0.06983683611048697, 'adj': 0.29477550380857, 'cconj': 0.1873727868357665}, {'match': 1.0}, {'money': 0.6115821038181867, 'intj': 0.37418141889354395, 'yeah': 0.5054243987054652, 'num': 0.3870344978298565, 'adj': 0.2148257339412642, 'adp': 0.18589237414036594}, {'liquor': 0.40585414564193073, 'fuckin': 0.3336648450290387, 'bring': 0.33967929775789313, 'say': 0.24279108832245233, 'bottle': 0.3876596317627813, 'like': 0.18896397409289495, 'adv': 0.420323332685404, 'hit': 0.3029989379249755, 'adj': 0.11088437443566376, 'adp': 0.28785042518998977}, {'dre': 0.3041004919993071, 'outta': 0.2894596203012867, 'punct': 0.2644308848182929, 'ask': 0.23940214933529913, 'lookin': 0.4995800262405451, 'going': 0.2365119006061834, 'shit': 0.170007740039338, 'boy': 0.4580285711006515, 'face': 0.2101204059392584, 'work': 0.24598556790183962, 'propn': 0.07588116764223783, 'adv': 0.07016907208373566, 'adp': 0.1922158078205754}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'happen': 0.8287302261857635, 'like': 0.4421416431319887, 'adj': 0.2594494519179911, 'adp': 0.22450603892566534}, {'gangsta': 0.6345211596311989, 'holdin': 0.563063564383638, 'dream': 0.46676801290050224, 'propn': 0.15310012469761786, 'adj': 0.1493943303432183, 'adp': 0.12927346384955885}, {'life': 0.3611943348600578, 'rebel': 0.55757251812129, 'nas': 0.44562845996310785, 'death': 0.48115881058661547, 'propn': 0.14616634153056765, 'like': 0.24306062577831158, 'cconj': 0.18132223766124878, 'adp': 0.12341877124655345}, {'spell': 0.4694490433961926, 'possess': 0.5200411414635904, 'evil': 0.48953977793943554, 'dead': 0.3934403487941243, 'like': 0.2086576792847007, 'adj': 0.24488134682547769, 'adp': 0.10595000447321765}, {'love': 0.7014530051897158, 'man': 0.6659687298715032, 'adp': 0.253868730535396}, {'intj': 0.8672352009728135, 'adj': 0.4978986906928394}, {'belly': 0.6006818942052757, 'son': 0.46378853777973966, 'god': 0.4247606239406004, 'know': 0.31642834041344, 'propn': 0.3211095462515894, 'adv': 0.14846871495135922, 'adp': 0.1355679605130621}, {'god': 0.5165268885631501, 'set': 0.6240630755896049, 'know': 0.38479024870679124, 'propn': 0.1952413965241431, 'adv': 0.36108847694657814, 'adp': 0.16485637529917643}, {'shawty': 0.9823120038626505, 'adv': 0.12880220086986266, 'adj': 0.13591585675859758}, {'mom': 0.9581699680288964, 'propn': 0.28619977702210647}, {'logical': 0.29499586446651377, 'electromagnetic': 0.29499586446651377, 'saying': 0.29499586446651377, 'spades': 0.29499586446651377, 'joker': 0.29499586446651377, 'spock': 0.2653409812253903, 'lay': 0.23441675668380949, 'feeling': 0.22978543317233993, 'game': 0.19282253058383272, 'block': 0.2084495716693024, 'come': 0.15548092636627572, 'high': 0.19570123187443242, 'year': 0.20236343898841624, 'stay': 0.19804182171176274, 'num': 0.11956537399428238, 'propn': 0.20403503040355916, 'like': 0.11309690418755904, 'adv': 0.06289197175376304, 'adj': 0.26546180628658184, 'cconj': 0.08436983026017499, 'adp': 0.11485431588865125}, {'die': 0.885516188934791, 'adv': 0.27767490119250265, 'cconj': 0.3725019844002676}, {'school': 0.4384207043744618, 'talkin': 0.4058141483125891, 'start': 0.393309220469967, 'shit': 0.2933948464082435, 'mad': 0.4131538765104507, 'blast': 0.4346428407479127, 'adj': 0.12778396608853176, 'cconj': 0.1624506618059026}, {'river': 0.6918666591598338, 'let': 0.14367319569109652, 'ooh': 0.5527395582403812, 'run': 0.31277448949344294, 'intj': 0.3014088770030721, 'propn': 0.05911263235075495, 'adv': 0.05466281937088498}, {'fleas': 0.4529125401448804, 'meagre': 0.4529125401448804, 'leave': 0.288233539989113, 'free': 0.32943970488742186, 'trees': 0.41847066377026826, 'key': 0.3729409797500311, 'intj': 0.17747467311684167, 'propn': 0.10441956993276624, 'adj': 0.20378418052425257}, {'til': 0.6454567414747583, 'brother': 0.6325078972898986, 'adv': 0.38948554154390297, 'adp': 0.17782116769088752}, {'inside': 0.5283190525401622, 'dna': 0.6023804433467946, 'heart': 0.5514614075051515, 'adj': 0.17557237004773477, 'adp': 0.151925768402345}, {'num': 1.0}, {'holler': 0.447779606116891, 'paula': 0.4686257953050351, 'pill': 0.3685806612129654, 'bum': 0.4329889995062541, 'let': 0.26259665975485746, 'intj': 0.1836319431766592, 'propn': 0.21608456232851975, 'like': 0.17966396500940943, 'adp': 0.2736836424378655}, {'propn': 1.0}, {'unpredictable': 0.3604399382182066, 'consider': 0.3604399382182066, 'nickel': 0.3604399382182066, 'original': 0.3242061954075103, 'bit': 0.2834909902250521, 'fuckin': 0.244005229253412, 'spit': 0.2546935729759144, 'little': 0.24614326003539883, 'bitch': 0.19536823175199247, 'propn': 0.08309989236177566, 'adj': 0.4054422814971803, 'cconj': 0.103087060089651, 'adp': 0.14033445044345397}, {'rumor': 0.39458526768739516, 'weirdo': 0.45745880510124093, 'skinned': 0.4371093644761991, 'brown': 0.3675341674338089, 'low': 0.33488254640937276, 'hair': 0.3635169923558594, 'propn': 0.2109354343571432, 'adv': 0.09752843925784355, 'adj': 0.10291486706389212}, {'analyze': 0.5708350518844968, 'crazy': 0.4508863176152686, 'game': 0.41482419617957467, 'man': 0.3240919561243112, 'just': 0.3064153852396598, 'adv': 0.13530115775324608, 'adj': 0.28554749301283755}, {'nosing': 0.18485995558314489, 'plastic': 0.17663670870683973, 'glocks': 0.17663670870683973, 'twin': 0.17663670870683973, 'elastic': 0.18485995558314489, 'centrifugal': 0.18485995558314489, 'attract': 0.17663670870683973, 'profile': 0.16627664286894336, 'brown': 0.1485212419336111, 'type': 0.1381611760957148, 'pay': 0.13717166169095454, 'fantastik': 0.159452641953874, 'stand': 0.13207474818100073, 'bastard': 0.1543557284439202, 'low': 0.13532666103367824, 'dough': 0.1439956626060239, 'guard': 0.159452641953874, 'mr': 0.13532666103367824, 'life': 0.10531832711354058, 'game': 0.12083275982061488, 'cash': 0.128004941342813, 'heavy': 0.1502859216057325, 'make': 0.09812479489746301, 'ass': 0.12461691373597406, 'long': 0.12410344270910048, 'nigga': 0.0994337020801849, 'year': 0.1268115958530582, 'send': 0.13532666103367824, 'label': 0.13622818821911822, 'fuck': 0.09611513009685567, 'fake': 0.1344635085469968, 'cause': 0.11246618356866311, 'propn': 0.21309850521700613, 'like': 0.14174496122183172, 'adv': 0.07882284808271799, 'adj': 0.41588089555005814, 'adp': 0.2878950696085937}, {'takin': 0.9730407526422572, 'adv': 0.23063324499601015}, {'associate': 0.3788141967606289, 'loud': 0.2950752697902789, 'sneak': 0.35000715218287437, 'close': 0.2950752697902789, 'job': 0.31192631062486803, 'friend': 0.49346995523004356, 'say': 0.1866013424927172, 'know': 0.17212579278275622, 'adv': 0.24228514327493203, 'cconj': 0.21668432226084144, 'adp': 0.2212324848851726}, {'willing': 0.5830378379435587, 'clip': 0.5130049110575404, 'flip': 0.4789108634190197, 'cause': 0.383906249382326, 'adj': 0.14196202781515221}, {'life': 0.4764345637209882, 'bitch': 0.453276487728799, 'cause': 0.5087697323955266, 'know': 0.3799809810809935, 'propn': 0.19280118882481911, 'adv': 0.35657544386410245}, {'kendrick': 0.5295155071764629, 'bring': 0.437042458279284, 'car': 0.4852673469763628, 'man': 0.32385066876716473, 'just': 0.3061872581383962, 'propn': 0.14620638210978382, 'adv': 0.27040085133463465}, {'propn': 0.31901851022460775, 'like': 0.5304972260925187, 'adj': 0.6225933100476172, 'cconj': 0.3957487717320115, 'adp': 0.2693703086807651}, {'movement': 0.48007247183296986, 'eye': 0.3649809590083992, 'rapid': 0.4909911554858417, 'lucid': 0.50435454426346, 'fuck': 0.2838142385585864, 'adj': 0.24560736604665764}, {'suck': 0.6722363599688749, 'album': 0.6169085111873941, 'just': 0.35128504750957745, 'adv': 0.15511386150625345, 'adp': 0.141635696507494}, {'answer': 0.8587262056663928, 'say': 0.4702781819400602, 'adv': 0.20353804384672639}, {'brake': 0.6489846701347887, 'patrol': 0.6201154586031679, 'adv': 0.13836100928586254, 'hit': 0.39896180491338046, 'adp': 0.12633853434751177}, {'future': 0.5907258398487547, 'tomorrow': 0.5568612536090345, 'knock': 0.494536670358664, 'propn': 0.15141368179299725, 'adj': 0.14774870785339034, 'cconj': 0.18783166704280527, 'adp': 0.12784947862227436}, {'freeze': 0.8217195326464265, 'shit': 0.4920814335114238, 'propn': 0.21963537507923492, 'adp': 0.18545396861346614}, {}, {'liquid': 0.8832781098258946, 'make': 0.4688494222054612}, {'fee': 0.72813759320746, 'doctor': 0.6854309924113787}, {'lucky': 0.8275237468216876, 'day': 0.5614307156241056}, {'365': 0.32202952546524083, 'desire': 0.2587268016510866, 'clinton': 0.3077044744772835, 'pryor': 0.3077044744772835, 'richard': 0.32202952546524083, 'yam': 0.29754068905214237, 'bring': 0.22193231660124277, 'day': 0.20186548437241272, 'time': 0.17679266899660842, 'num': 0.39156732640050457, 'propn': 0.37122161095359263, 'adp': 0.18806948824593975}, {'want': 0.8966939386685862, 'adv': 0.3268809126211077, 'adp': 0.29847755245413293}, {'lobby': 0.6861539877426593, 'buildin': 0.6339751922246104, 'adv': 0.29257072667024964, 'adj': 0.15436460211595934, 'adp': 0.13357432484515208}, {'atmosphere': 0.9185734480567007, 'represent': 0.23238134090695028, 'bout': 0.2460018430028224, 'propn': 0.07059276416226434, 'adj': 0.06888406361475886, 'adp': 0.1788196677957292}, {'submit': 0.30862970440187404, 'worship': 0.29490072645934606, 'freestyle': 0.29490072645934606, 'bear': 0.22901254772265672, 'mental': 0.25770190570535134, 'mc': 0.21475033315600725, 'hug': 0.28515986159040735, 'lick': 0.2509072309069056, 'mic': 0.1989686160774895, 'civilize': 0.30862970440187404, 'grip': 0.28515986159040735, 'propn': 0.14230995234449237, 'like': 0.11832390996835701, 'kill': 0.19075552128872644, 'adj': 0.06943266726160788, 'adp': 0.3604876321852745}, {'hate': 0.9237193073242126, 'adv': 0.26349727430609277, 'adj': 0.2780500453330956}, {'tight': 0.8865696848458959, 'adv': 0.4091395690563251, 'adj': 0.21586803131694463}, {'witty': 0.550791913208524, 'calm': 0.5331858158168111, 'midst': 0.5743638306988285, 'adj': 0.14365634292416038, 'adp': 0.24861657080427876}, {'father': 0.37717190783077587, 'home': 0.34666683643755125, 'infect': 0.47954899394948836, 'people': 0.30060718750574794, 'devil': 0.3735420952470726, 'brain': 0.3558398148196598, 'say': 0.23622263058570458, 'come': 0.25275175281565926, 'propn': 0.11056063869169579, 'adv': 0.1022379816630964, 'adp': 0.09335431148291845}, {'momentum': 0.5744250926801074, 'adrenaline': 0.5744250926801074, 'venom': 0.563379111302884, 'propn': 0.15058420483726961}, {'mayor': 0.5660556412885227, 'pluck': 0.6293188201343547, 'key': 0.5181988939431065, 'adp': 0.12251016246125931}, {'season': 0.5655507750491867, 'great': 0.436528316066846, 'funk': 0.41676931700990566, 'quit': 0.5225432887217398, 'adv': 0.12057322713332407, 'adj': 0.127232402531168, 'adp': 0.11009636946273912}, {'afraid': 0.20428228442605798, 'abi': 0.20428228442605798, 'umi': 0.20428228442605798, 'close': 0.16653255781290163, 'light': 0.4399769903248935, 'shine': 0.649024659495197, 'say': 0.21062557278161465, 'world': 0.34984321982870753, 'let': 0.11979966216543382, 'propn': 0.049290150130410104, 'adv': 0.13673922812412193, 'adj': 0.04809708016758975, 'adp': 0.16647689748412184}, {'say': 0.7350421320450821, 'know': 0.6780214333770135}, {'shine': 1.0}, {'liver': 0.47027877543525937, 'sip': 0.3871003941146507, 'liquor': 0.4052686605944916, 'sun': 0.4173175937969615, 'propn': 0.45388392849580905, 'like': 0.18869137473047853, 'adj': 0.11072441267618972, 'adp': 0.19162344817871882}, {'wake': 0.5162058378183654, 'punk': 0.5298108617118295, 'yo': 0.3797890942613218, 'ass': 0.4585096054661518, 'propn': 0.3136258429878614}, {'clutch': 0.4532888111999866, 'microphone': 0.423168373247528, 'round': 0.4039709064324156, 'double': 0.38984956332665704, 'come': 0.2585743959049629, 'make': 0.2604115511865805, 'hold': 0.3112457090156889, 'propn': 0.11310762454503116, 'adv': 0.20918647686972616, 'adj': 0.1103698501813174}, {'blast': 0.9633108367125767, 'adv': 0.2683882111273065}, {'picture': 1.0}, {'crunch': 0.8317506848025437, 'rhyme': 0.5260668050266275, 'adv': 0.17732601326251007}, {'turd': 0.306463398373656, 'toad': 0.306463398373656, 'derriere': 0.306463398373656, 'wide': 0.2831582929845393, 'autograph': 0.2643428014395648, 'load': 0.27565572480547174, 'read': 0.23077010537664153, 'yard': 0.27565572480547174, 'bird': 0.2523506194163551, 'fry': 0.2695256802565515, 'ask': 0.22291546947831814, 'taste': 0.2387180066883673, 'villain': 0.2345097514733352, 'love': 0.1648425704541583, 'propn': 0.07065553152508112, 'like': 0.11749338135821061, 'adj': 0.06894531169116602, 'adp': 0.11931910987556575}, {}, {'sold': 0.4836019011503261, 'evil': 0.4349871250085196, 'desert': 0.4836019011503261, 'people': 0.3031477684479195, 'say': 0.2382190655956433, 'dream': 0.3399234269196829, 'propn': 0.11149504167102932, 'adj': 0.10879629993725155, 'cconj': 0.138311804429321, 'adp': 0.18828659045617524}, {'os': 0.37279141244966013, 'account': 0.3562082870871678, 'problem': 0.3215546353741225, 'bank': 0.3160933323435053, 'home': 0.2694915873780824, 'check': 0.24114254732500492, 'num': 0.6043873832876739, 'propn': 0.08594754066683574, 'adv': 0.07947768021843188, 'adp': 0.14514339963206518}, {'depend': 0.561356880790014, 'ones': 0.6722938571524208, 'friend': 0.437888577602695, 'propn': 0.15499821535045188, 'adp': 0.13087615851670528}, {'mass': 0.36157669933335823, 'project': 0.30191197784230983, 'lookout': 0.36157669933335823, 'apartment': 0.36157669933335823, 'murderous': 0.33408048566173815, 'suspect': 0.3454924454236441, 'body': 0.2598286181644011, 'bag': 0.2816482143964834, 'adj': 0.24403258302389494, 'adp': 0.2815540788567461}, {'woman': 0.2817499728737103, 'grimy': 0.3350859933483423, 'clean': 0.3350859933483423, 'sing': 0.3154325873385682, 'clothe': 0.2817499728737103, 'poor': 0.27581920950480837, 'pretty': 0.2786704252573787, 'mind': 0.2300513827527584, 'hard': 0.23355141330981458, 'propn': 0.24255317535450344, 'look': 0.21734572811943997, 'adv': 0.22429453544828445, 'adj': 0.31557622199873636}, {'tomb': 0.3222716317673233, 'wound': 0.31510494055863886, 'grand': 0.2950254196759175, 'door': 0.27908740731574977, 'war': 0.27416749761317133, 'crime': 0.2847124117096841, 'drug': 0.2719207161070653, 'hide': 0.28785872846723304, 'die': 0.24359750582140405, 'open': 0.27416749761317133, 'num': 0.1452189104074984, 'adv': 0.1527717148594773, 'adj': 0.16120919031954553, 'cconj': 0.3074157946990764, 'adp': 0.13949706383845006}, {'sleep': 0.5504887093317306, 'adv': 0.8348426084587953}, {'defeat': 0.6045911317652769, 'foe': 0.5754831841531549, 'hand': 0.4448875604848874, 'num': 0.26521653647321, 'cconj': 0.18714677516507638}, {'scope': 0.978516833220778, 'adp': 0.2061669398899357}, {'know': 1.0}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'engrave': 0.37910931045951113, 'unmarked': 0.37910931045951113, 'dumile': 0.3982846647565471, 'government': 0.3655041800700995, 'say': 0.21233981269903307, 'hey': 0.3327236953836519, 'right': 0.2515679535621314, 'intj': 0.33782745986669177, 'propn': 0.09938262584525154, 'adj': 0.09697706559825545, 'cconj': 0.24657222605716103, 'adp': 0.08391591002851911}, {'oh': 0.5460431198710513, 'intj': 0.6942535844167921, 'yeah': 0.46888044506667687}, {'hittin': 0.7102942382305809, 'lead': 0.5308617922057675, 'niggas': 0.40164184686811094, 'propn': 0.16375925219035348, 'adj': 0.15979545324867211}, {'paris': 0.3862175314340106, 'digit': 0.3690371631983893, 'rollin': 0.3473924590179509, 'holdin': 0.3274774644572696, 'trip': 0.3274774644572696, 'click': 0.3396671297100188, 'trick': 0.3274774644572696, 'kick': 0.27439538987106654, 'num': 0.15653861342282607, 'propn': 0.0890429497048888, 'adv': 0.08234007660305064, 'adj': 0.08688766171301303, 'cconj': 0.11045954027023368, 'adp': 0.1503707532892967}, {'vial': 0.4529699485657545, 'grab': 0.409353610713692, 'berserk': 0.41568863754300417, 'everybody': 0.640900432056719, 'adv': 0.20903932620239812}, {'deceit': 0.3898376243694344, 'swerve': 0.3898376243694344, 'ice': 0.33625800105080156, 'lane': 0.3601922997767227, 'life': 0.22209810834904875, 'rate': 0.3428508965682796, 'high': 0.2586195689830112, 'num': 0.15800588065554058, 'propn': 0.08987756679743536, 'like': 0.1494577848803041, 'adj': 0.08770207686701935, 'cconj': 0.11149489928124937, 'adp': 0.37945051988763506}, {}, {'home': 0.2868470471259196, 'phone': 0.306275239883646, 'devil': 0.30908479189976895, 'alien': 0.3791483671413705, 'knock': 0.5975881835352371, 'say': 0.19546076210849947, 'let': 0.22234843526313192, 'propn': 0.3659305062228715, 'adp': 0.07724537155192335}, {'petty': 0.6702612981842958, 'die': 0.49321086296120703, 'let': 0.4064961887411838, 'adv': 0.30931625949055847, 'adj': 0.16319979058626766, 'adp': 0.1412195642240258}, {'prostitute': 0.7513946031329636, 'turn': 0.4894096688282527, 'bitch': 0.4072762737885247, 'propn': 0.1732349942967957}, {'dick': 0.537326931440752, 'bust': 0.5434759486468033, 'right': 0.4413734301454891, 'propn': 0.1743658118813246, 'adv': 0.32248020432488245, 'adp': 0.29445923082504344}, {'estate': 0.429881771852795, 'private': 0.44989473497608345, 'island': 0.3338354604057246, 'guest': 0.4156823485434215, 'doom': 0.28814129336168043, 'long': 0.30203126085961846, 'propn': 0.31117143318348567, 'adj': 0.10121317226053107, 'cconj': 0.12867143915228443, 'adp': 0.17516297084717158}, {'happen': 0.9586970578634372, 'adv': 0.28442916735804236}, {'dart': 0.5707788493774164, 'poison': 0.5580858433579181, 'bomb': 0.5098297759462704, 'propn': 0.14630090854995026, 'adj': 0.14275968948158746, 'adp': 0.24706479174910667}, {'royalty': 0.5470713978550648, 'inside': 0.42110335253079223, 'loyalty': 0.5274385967214963, 'dna': 0.48013491652950924, 'adp': 0.12109434649847454}, {'hold': 1.0}, {'code': 1.0}, {'pink': 0.4341825708072932, 'age': 0.44599979079045643, 'pretty': 0.38358066510211924, 'number': 0.3634836812789142, 'blue': 0.36634696925594173, 'baby': 0.3008505838757789, 'adv': 0.20582269540937057, 'adj': 0.2171901395939112, 'cconj': 0.13805598227520408}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {}, {'strategy': 0.6724452987714528, 'king': 0.46342751562409673, 'pharoahe': 0.540259844761428, 'propn': 0.1550331304109273, 'adp': 0.13090563981737102}, {'longer': 0.6822285425553828, 'sayin': 0.5673675469896231, 'intj': 0.27977815704121534, 'adv': 0.30443953106478344, 'cconj': 0.2042034209150566}, {'pay': 0.5952534666871788, 'corner': 0.6309380691058135, 'time': 0.4404016508546361, 'adv': 0.1710250244000971, 'adp': 0.156164305471451}, {'pipe': 0.7356037798091659, 'life': 0.5019091956541515, 'like': 0.3377527037539305, 'cconj': 0.251962142468343, 'adp': 0.17150051987659642}, {'hour': 0.43841149774318044, 'happy': 0.47889971283984256, 'bar': 0.3979232826465183, 'car': 0.4074163622684675, 'song': 0.37826921685435927, 'adj': 0.11977944587892499, 'adp': 0.3109415966022763}, {'roll': 0.6647237741904882, 'corner': 0.6773400382130105, 'adv': 0.18360295920440825, 'adj': 0.19374322282655876, 'adp': 0.16764931744481767}, {'handsome': 0.5280847665699959, 'totally': 0.5280847665699959, 'ugly': 0.4477680226807604, 'heart': 0.3731545308123963, 'adv': 0.11258561974343474, 'adj': 0.23760729029137317, 'cconj': 0.15103405669455494, 'adp': 0.10280282183837178}, {'diddy': 0.26095719894550184, 'dame': 0.8096139524821544, 'dummy': 0.25404287142829923, 'daddy': 0.2296117265854393, 'propn': 0.3906946055321256, 'cconj': 0.08077739760450582}, {'feel': 1.0}, {'depend': 0.5304014153783134, 'breath': 0.5164166327657564, 'control': 0.5103527917588929, 'blow': 0.4198054896557661, 'adp': 0.12365912326369731}, {'lip': 0.4037529813466384, 'pussy': 0.3871165701801882, 'cheek': 0.47617468891563364, 'split': 0.439963835131136, 'leave': 0.30303757143810484, 'ass': 0.32099661576065114, 'like': 0.18255809540321652, 'adj': 0.10712539416111391, 'cconj': 0.1361875962249771, 'adp': 0.09269743194163423}, {'struggle': 0.6148711378154296, 'feel': 0.4270723844591479, 'head': 0.46574900074793546, 'adv': 0.1569941549143152, 'cconj': 0.42121656652203354, 'adp': 0.14335260732322108}, {'dick': 0.7789099403905526, 'nigga': 0.5897027924771617, 'adp': 0.2134242753423876}, {'cool': 0.9600522168198188, 'adj': 0.279820908760142}, {'common': 0.8154022294383151, 'adv': 0.23086082450153148, 'adj': 0.4872222142512111, 'adp': 0.21080084885418518}, {'climb': 0.7830048646208502, 'start': 0.5421860643142327, 'adp': 0.30485677562345026}, {'start': 0.9557259222028593, 'adv': 0.29425832465623475}, {'duke': 0.7622188514061121, 'watch': 0.6473194130884282}, {'knish': 0.4612881843733888, 'rapp': 0.4612881843733888, 'delicious': 0.4612881843733888, 'mmm': 0.4612881843733888, 'snitch': 0.35605176976114156, 'propn': 0.1063505855058191, 'adj': 0.10377636552962415}, {'heheheheh': 0.3719090032725945, 'hustling': 0.3719090032725945, 'bootleg': 0.3719090032725945, 'grandmama': 0.3719090032725945, 'haha': 0.33452231621406003, 'use': 0.25285750850753785, 'perpetrator': 0.30624037924401626, 'nigga': 0.20004488757822383, 'fake': 0.27051931978722815, 'know': 0.16898820735536188, 'propn': 0.08574410009364153, 'adj': 0.16733732176471275}, {}, {'tit': 0.5681342680571343, 'hole': 0.5128634398220797, 'head': 0.37606299221119166, 'need': 0.34699664048002316, 'like': 0.22795422985435743, 'adj': 0.1337639213966676, 'cconj': 0.17005292777957995, 'adp': 0.23149640842889332}, {'liar': 0.5835005251954735, 'lover': 0.5835005251954735, 'thief': 0.5648488950092877}, {'somebody': 0.5008920054754343, 'seize': 0.5483021010064675, 'moment': 0.4563929156325856, 'know': 0.28328141254334177, 'tell': 0.33236860844385174, 'adv': 0.13291612007623263, 'cconj': 0.1783075037554663}, {'jerk': 0.5240075472011534, 'circle': 0.5671355480924506, 'sit': 0.3565569143076868, 'work': 0.4238674302553231, 'adv': 0.24182218917332776, 'cconj': 0.16220271431128122, 'adp': 0.1104048789126123}, {'feelin': 0.5439497083042504, 'motherfucker': 0.49306869501061334, 'good': 0.4244849914904816, 'man': 0.34168767679692963, 'num': 0.27118945144165807, 'adj': 0.1505252716999246, 'adp': 0.2605041734159566}, {}, {'jesus': 0.5422044263139727, 'rat': 0.5301468596145256, 'sleep': 0.4237090619177671, 'propn': 0.4169303064193606, 'adv': 0.12851503490724497, 'adp': 0.234696194189437}, {'stack': 0.5666677728057604, 'loc': 0.6721599323946136, 'right': 0.4245553836784873, 'adj': 0.16366208298829532, 'adp': 0.1416195937297249}, {'game': 0.958398384590831, 'adp': 0.2854339440460537}, {'bucket': 0.5819842986768526, 'head': 0.4185404739642048, 'hoe': 0.5204704589079486, 'love': 0.35594303172349023, 'num': 0.2682126328400014, 'adp': 0.12882232300383833}, {'passionate': 0.41676266576812004, 'american': 0.3665306904276052, 'lonely': 0.41676266576812004, 'people': 0.26124932883739665, 'old': 0.2660667397465757, 'love': 0.22417107380236412, 'num': 0.16891892396368102, 'propn': 0.19217033959633545, 'adv': 0.17770436104867443, 'think': 0.25485897755938336, 'adj': 0.37503769840195417, 'adp': 0.1622632607114451}, {}, {'pounder': 0.422339989726267, 'undercover': 0.40838967899605705, 'homicide': 0.422339989726267, 'chase': 0.35933501621291186, 'brother': 0.3060609881571106, 'street': 0.29322548767572537, 'face': 0.28217976422165886, 'num': 0.17914866842074456, 'propn': 0.10190409588462655, 'cconj': 0.1264140464840379, 'adp': 0.17208993763371142}, {'cold': 0.6851027609384418, 'propn': 0.45621480778631784, 'adv': 0.21093619621244974, 'adj': 0.22258605548659455, 'cconj': 0.28297174621666266, 'adp': 0.38521502564730203}, {'lifestyle': 0.5912878834563898, 'lie': 0.41348874009273284, 'nigga': 0.3180458583458972, 'money': 0.3786984870967025, 'want': 0.3458063269397373, 'tell': 0.31522496563254376, 'adv': 0.12606027861418675}, {'familiar': 0.7526745224793638, 'sound': 0.4937577309288324, 'tell': 0.4012627471649314, 'adj': 0.1693297791179232}, {'filter': 0.4384857700597631, 'brita': 0.4384857700597631, 'pure': 0.40239656717906647, 'power': 0.36017490644681555, 'juice': 0.37711825608537464, 'water': 0.34972684340356164, 'propn': 0.21882774347314404, 'adj': 0.10676550480039086}, {'country': 0.5109912661663591, 'bass': 0.453445183551908, 'sound': 0.3508181472507832, 'drum': 0.44653475313840757, 'place': 0.3620275197332115, 'adv': 0.11401307021485223, 'cconj': 0.1529489871796386, 'adp': 0.20821247635805123}, {'high': 0.9059975657251548, 'adv': 0.29115796955802764, 'adj': 0.3072384215278758}, {'mother': 0.4787101702370187, 'bond': 0.5303003315531049, 'word': 0.36541292505938655, 'man': 0.2834195482390105, 'propn': 0.25590650731067105, 'like': 0.21277400513806313, 'look': 0.3439669636193112, 'adp': 0.21608029834744896}, {'sure': 0.6048311390910801, 'make': 0.44676949498828866, 'hop': 0.5828160258525309, 'adv': 0.17944314720990567, 'adj': 0.1893536673114418, 'adp': 0.16385096013838285}, {'home': 0.46336194231114075, 'til': 0.45292482687543395, 'case': 0.48646283673136437, 'come': 0.33783313197974874, 'beat': 0.4417391610464069, 'adv': 0.1366533650815975, 'adp': 0.12477927088833787}, {'ham': 0.7546108370496031, 'bout': 0.656172602755782}, {'wait': 0.8187567012402152, 'man': 0.2891955334900289, 'intj': 0.22190526076832587, 'yeah': 0.2997378472855689, 'adv': 0.24146536042542285, 'adp': 0.2204839346669805}, {'mack': 0.4523247622354201, 'max': 0.4523247622354201, 'ill': 0.3443291882991567, 'grill': 0.43738402458885667, 'intj': 0.18549588659588878, 'propn': 0.10913895691408264, 'adv': 0.10092331961672664, 'adj': 0.10649724430165944, 'adp': 0.09215388314723395, 'motion': 0.4523247622354201}, {'1999': 0.4983528977114811, 'recording': 0.4983528977114811, 'em': 0.4482552564403537, 'fondle': 0.4983528977114811, 'num': 0.20198842686749402, 'propn': 0.11489590294217628}, {'analyze': 0.5700193610393687, 'sky': 0.4891499596806126, 'star': 0.4639185367412553, 'look': 0.39276624559497825, 'adv': 0.1351078200888013, 'cconj': 0.18124767803980296, 'adp': 0.12336802150409418}, {'tryin': 0.7043272236366759, 'save': 0.7098754553048386}, {'pour': 0.6236483650491745, 'dive': 0.5764925576306281, 'going': 0.5095711103821395, 'adp': 0.13804467114634172}, {'pain': 0.9681696565831502, 'adp': 0.250294858260542}, {'smile': 0.6798332272677394, 'kiss': 0.6724026008396978, 'cconj': 0.24200698833089743, 'adp': 0.16472444592636767}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'tryin': 0.7176720735964544, 'way': 0.5686709039778294, 'adv': 0.20319096594367975, 'adj': 0.21441306154190173, 'cconj': 0.2725814890044932}, {'boss': 0.5017573842339487, 'pill': 0.4387445388895827, 'pop': 0.4110829891702224, 'skill': 0.4432799566470408, 'tell': 0.29739043481558003, 'cconj': 0.3190851646368814}, {'finally': 0.6121298903766803, 'hate': 0.4787939392493238, 'num': 0.25965396938280577, 'adv': 0.4097377751427461, 'adj': 0.1441224357420079, 'adp': 0.37413481041753427}, {'yah': 0.5692634255929797, 'mic': 0.41729059881300296, 'nada': 0.598056777728961, 'like': 0.24815700193321938, 'adv': 0.13799743917127816, 'adp': 0.2520131111878295}, {'let': 0.6297628319344052, 'propn': 0.2591084479832152, 'think': 0.6872664560900859, 'adj': 0.252836718122708}, {'record': 0.34158979851356036, 'better': 0.28595563783782524, 'naked': 0.41498906895598603, 'pose': 0.3819619267925481, 'deal': 0.33522728213727027, 'real': 0.2809354100613332, 'check': 0.2809354100613332, 'leave': 0.2763940616344705, 'adv': 0.18518585733272125, 'adj': 0.19541354331656818, 'adp': 0.2536420114097923}, {'rumor': 0.5643066609723615, 'ma': 0.5753708284984321, 'true': 0.48895566108676214, 'num': 0.2651647563718633, 'adv': 0.13947795930141252, 'adj': 0.14718122989642124}, {'mother': 0.6741269317011431, 'store': 0.6873443076812978, 'cconj': 0.2235239432754531, 'adp': 0.15214377882750174}, {'problem': 1.0}, {'spade': 0.6761171919789628, 'ace': 0.6582027764186922, 'propn': 0.16870923704546875, 'adp': 0.2849067236144897}, {'right': 0.713099971053562, 'just': 0.5899651422627749, 'adv': 0.26050574033604484, 'adj': 0.2748932910244303}, {'grow': 0.8652335339694214, 'like': 0.4470401984217248, 'adp': 0.2269933758721848}, {'successful': 0.7819918325958308, 'say': 0.38520395230311, 'want': 0.45733682507766577, 'adj': 0.1759253174257701}, {'break': 0.4387276757468349, 'master': 0.5622007751311601, 'propn': 0.47830486128937266, 'look': 0.42859681464927185, 'adv': 0.1474331920670718, 'cconj': 0.19778221357275805, 'adp': 0.13462241635897254}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'die': 0.885516188934791, 'adv': 0.27767490119250265, 'cconj': 0.3725019844002676}, {'shame': 0.9069149987026669, 'adv': 0.20235211494265865, 'adp': 0.36953864034275874}, {'glock': 0.8604968728839528, 'man': 0.5094557210955026}, {'noose': 0.6446750850541159, 'crawl': 0.5798681956073274, 'head': 0.4077449751125843, 'adv': 0.13744222249658236, 'adp': 0.2509991656942484}, {}, {'oh': 0.5285337328132984, 'ben': 0.7541077508102764, 'intj': 0.3359958445932549, 'propn': 0.19768759663259716}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {'smooth': 0.5801226624211004, 'juice': 0.48245236222175414, 'crew': 0.46862184567634607, 'truth': 0.4224524521252937, 'adj': 0.13658651938368527, 'adp': 0.11819064642760344}, {'hubby': 0.4671585975555331, 'smelly': 0.4671585975555331, 'seed': 0.3712248763011252, 'time': 0.5129356706484341, 'know': 0.21226776780580234, 'like': 0.17910146382452086, 'adj': 0.10509703699886559, 'adp': 0.27282677960981955}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'minute': 0.5943781093382596, 'time': 0.40138016935263116, 'just': 0.35300079986293464, 'hold': 0.46383807700004637, 'propn': 0.16856014892197593, 'adv': 0.3117429424891367, 'adp': 0.142327475965017}, {'feel': 0.6797527918907049, 'intj': 0.4592781135217272, 'propn': 0.27022234920189264, 'like': 0.44935388413317967, 'adp': 0.22816819489786652}, {'main': 0.5869102129384955, 'dollar': 0.49188333033725007, 'bitch': 0.3688109705399768, 'fuck': 0.35377871937722516, 'just': 0.32852704668821836, 'adv': 0.14506481042198474, 'adj': 0.1530766389151112}, {}, {'32': 0.2131326017145741, 'verbal': 0.2131326017145741, 'dip': 0.18744394850026977, 'shotgun': 0.19170714061479646, 'red': 0.17549940497271282, 'jump': 0.18383947092644576, '17': 0.20365168414235346, 'spray': 0.19170714061479646, 'glass': 0.17549940497271282, 'range': 0.17796303092804913, 'scheme': 0.20365168414235346, 'ak': 0.20365168414235346, 'dot': 0.17549940497271282, 'good': 0.13521626400019485, 'ring': 0.16450939478832316, 'make': 0.11313208835971456, 'murder': 0.1604910511920304, 'plot': 0.16936458864556042, 'gleam': 0.20365168414235346, 'rock': 0.13786620823085155, 'man': 0.10884184844594887, 'num': 0.25915562525389435, 'propn': 0.49137996052324473, 'adj': 0.09589721796952842, 'adp': 0.12447224916745159}, {'represent': 0.9784634812643325, 'yo': 0.08998584772105894, 'propn': 0.1857734185560617}, {'mention': 0.36941719535111056, 'view': 0.32781469869326574, 'win': 0.6556293973865315, 'propn': 0.08913464557521177, 'lose': 0.5170040260549528, 'adp': 0.22578840621982196}, {'represent': 0.9886605592791032, 'propn': 0.150167568156146}, {'shazbot': 0.7241727387130538, 'spilt': 0.6691027953358164, 'propn': 0.16695895836591648}, {'kid': 0.8799910367960646, 'adv': 0.2838796004427876, 'cconj': 0.380825613123685}, {'drank': 0.8319828088939719, 'head': 0.3408719540287077, 'shot': 0.3603532812027963, 'propn': 0.24850840908895985}, {'thank': 1.0}, {'average': 0.4832732241486274, 'mf': 0.4063500728092724, 'emcee': 0.4288486522946829, 'doom': 0.3239285333106394, 'tv': 0.4448116484789498, 'propn': 0.2332126825311207, 'like': 0.19390517667023383, 'adj': 0.11378388033025699, 'adp': 0.09845913366821236}, {'life': 0.3611943348600578, 'rebel': 0.55757251812129, 'nas': 0.44562845996310785, 'death': 0.48115881058661547, 'propn': 0.14616634153056765, 'like': 0.24306062577831158, 'cconj': 0.18132223766124878, 'adp': 0.12341877124655345}, {'desire': 0.6738320990133299, 'oh': 0.516971749725571, 'say': 0.4131373742156903, 'intj': 0.3286457398950063}, {'shit': 0.7711911888239532, 'adv': 0.6366036052994813}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'learn': 0.5958742350838614, 'god': 0.4665912870845909, 'soon': 0.6078840753801915, 'propn': 0.17636629672814286, 'adv': 0.16308999680402914}, {'immaculate': 0.2449269385897672, 'miraculous': 0.2449269385897672, 'vernacular': 0.23403169263816137, 'spectacular': 0.2449269385897672, 'rip': 0.20451090071023406, 'clip': 0.1991186819012196, 'track': 0.18443251536036437, 'trip': 0.20767584663712435, 'flip': 0.18588535473391266, 'spit': 0.17306993618924432, 'son': 0.16311762848920378, 'say': 0.12064937360930493, 'shit': 0.12651406143089866, 'bitch': 0.13275705000188742, 'run': 0.14939124193209408, 'nigga': 0.13174293029726983, 'flow': 0.1817431744655252, 'blast': 0.18742125748987504, 'fast': 0.19078451415312436, 'rap': 0.1482636226593054, 'rhyme': 0.30982344686487423, 'propn': 0.16940466420500122, 'adv': 0.052217471358049695, 'hit': 0.15056826145275098, 'adj': 0.38570984165071237, 'adp': 0.047680187017711}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'krill': 0.6033655150964438, 'come': 0.37505265238419927, 'thing': 0.44871091445411393, 'money': 0.45574891120587707, 'adj': 0.16008740892104428, 'cconj': 0.203517752047217, 'adp': 0.13852636724820394}, {'raw': 0.3887928424754186, 'loud': 0.3725198100431511, 'scream': 0.3691336396110198, 'door': 0.3725198100431511, 'start': 0.33115147755578705, 'come': 0.25206003860069837, 'shit': 0.24702735618363666, 'yes': 0.3327659874467542, 'intj': 0.18739795444587512, 'adj': 0.21517852608485746, 'adp': 0.09309882560176726}, {'sentence': 0.45006996421298584, 'killing': 0.4623195940519501, 'motherfucker': 0.3687361901148303, 'way': 0.5971143655706214, 'propn': 0.23072209051623171, 'adp': 0.19481528108846016}, {'away': 0.4704376825736245, 'planet': 0.5042842948665578, 'energy': 0.5580154300092073, 'feel': 0.35026184025994866, 'num': 0.24478513142185418, 'adv': 0.12875817686030586, 'adp': 0.11757011193941104}, {'word': 0.623370668805449, 'hear': 0.6145252640433723, 'man': 0.4834953041400412}, {'type': 0.6173081524766605, 'game': 0.5398842846549375, 'come': 0.43533143380383527, 'adj': 0.18581679349956554, 'adp': 0.3215808857259951}, {'real': 0.9445071161807536, 'adj': 0.3284909549499292}, {'feelin': 1.0}, {'confuse': 0.8945658926352033, 'intj': 0.3505374113203454, 'adv': 0.19071797143067898, 'adj': 0.2012511922249897}, {'ready': 0.3803172316381562, 'nervous': 0.46187051784322397, 'calm': 0.3856560497570614, 'bomb': 0.37107865089658326, 'drop': 0.3140215143146814, 'look': 0.28625507483135926, 'adj': 0.3117221206445905, 'cconj': 0.2641931083548146, 'adp': 0.08991282378136908}, {}, {'bro': 1.0}, {'harm': 0.6486935932559449, 'mean': 0.45596625802316704, 'really': 0.45596625802316704, 'know': 0.29475373406564764, 'adv': 0.27659790565322345}, {'biological': 0.7487103294531701, 'clock': 0.6373375503800545, 'adj': 0.18230109556905297}, {}, {'tribe': 0.5983652595172444, 'choose': 0.526491244241136, 'num': 0.5249708549700276, 'propn': 0.29861612041602764}, {'positive': 0.8824213220683673, 'adj': 0.39703803727162584, 'cconj': 0.252375528367173}, {'diamond': 1.0}, {'smart': 0.4229897699976226, 'question': 0.4229897699976226, 'stupid': 0.36485368685078323, 'feel': 0.2453167223714992, 'know': 0.3843966256937474, 'propn': 0.09752083670499077, 'adv': 0.45089887471695367, 'adj': 0.2854810234053152, 'adp': 0.08234386734341773}, {'woo': 1.0}, {'americans': 0.4451976410177794, 'longer': 0.42539362181151447, '40': 0.42539362181151447, 'phone': 0.3436320576760262, 'cell': 0.34678429466656757, 'free': 0.3238280384697612, 'num': 0.18044396163291118, 'propn': 0.10264088999454049, 'adv': 0.18982881346060665, 'adj': 0.10015646333960761, 'adp': 0.08666709715881918}, {'gon': 0.6198852318862487, 'pop': 0.6156216306098755, 'bitch': 0.45280454117172164, 'adv': 0.17810209069192975}, {'ayo': 0.7447781315263554, 'check': 0.6062644959489212, 'adj': 0.2108532586094207, 'adp': 0.18245492343507785}, {'low': 0.5160764357961204, 'tree': 0.5731244839723029, 'life': 0.4016378329709877, 'high': 0.46768252112703035, 'adj': 0.1585987037969993}, {'absurd': 0.5057071172192468, 'son': 0.33679327454085795, 'good': 0.3208323199670269, 'shit': 0.26121692314571493, 'hear': 0.3282408055695409, 'talk': 0.33813023628760847, 'niggas': 0.28595633978428875, 'fuck': 0.2629347454352928, 'propn': 0.11659142772924974, 'adv': 0.10781479187631159, 'adj': 0.22753865555332256, 'adp': 0.09844654109520874}, {'let': 0.6269038364921082, 'talk': 0.7480366260321127, 'adp': 0.2177906928818789}, {'change': 0.5328525744248538, 'lock': 0.5045276772512084, 'game': 0.4589235015010417, 'adv': 0.29936962040847254, 'cconj': 0.40160553651912795}, {'troop': 0.34953449488028715, 'spread': 0.3885989642530571, 'crop': 0.3713126611764987, 'mega': 0.35904783395795703, 'mandatory': 0.3713126611764987, 'cream': 0.3159199800388173, 'big': 0.2598283771969134, 'like': 0.14898290152979946, 'adj': 0.2622702435801977, 'cconj': 0.11114063823437742, 'adp': 0.22694691809513343}, {'constantly': 0.7151473983156821, 'seek': 0.6289514181387681, 'adv': 0.30493329156316046}, {'degree': 0.6668255427209061, 'chill': 0.5746453139386883, 'drop': 0.4744749295202807}, {'adj': 1.0}, {'pay': 0.5331966719425156, 'share': 0.6319568305870052, 'ya': 0.45447877545862364, 'propn': 0.3313320328031722}, {'monster': 0.4215639199124337, 'voice': 0.36802345171265793, 'bed': 0.39266327714976335, 'inside': 0.3308573494836379, 'friend': 0.3183310726917232, 'head': 0.3091165733816922, 'adp': 0.475714029336882}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'ox': 0.39823666282701653, 'fox': 0.39823666282701653, 'doomsday': 0.35949428901583175, 'brown': 0.33484887812719394, 'wet': 0.3388274403905492, 'lock': 0.2994950632795079, 'dream': 0.2929518313935106, 'propn': 0.28826500966532104, 'adj': 0.0937625147059554, 'adp': 0.24340291283017115}, {'limper': 0.20848748489575863, 'sympathy': 0.20848748489575863, 'plea': 0.20848748489575863, 'century': 0.18752898084011607, 'sickest': 0.20848748489575863, 'male': 0.19263298862118755, 'alpha': 0.19921319910731128, 'fresh': 0.17167448456554496, 'invigor': 0.20848748489575863, 'seven': 0.1798327830171686, 'linger': 0.20848748489575863, 'ginger': 0.20848748489575863, 'stale': 0.20848748489575863, 'bre': 0.20848748489575863, 'simon': 0.18335870283274014, 'simple': 0.17408441704429278, 'scale': 0.18752898084011607, 'ninja': 0.19263298862118755, 'emcee': 0.17677849234661644, 'enter': 0.18335870283274014, 'figure': 0.17408441704429278, 'jail': 0.16750420655816906, 'lend': 0.17677849234661644, 'injury': 0.18752898084011607, 'nigga': 0.11214263465106064, 'rhyme': 0.13186444817077186, 'propn': 0.2403352919110524, 'adj': 0.14071078020533667, 'adp': 0.04058647990261241}, {'strike': 0.8836927183872617, 'num': 0.4680674945660423}, {'os': 0.8139302224215217, 'check': 0.5264960528189134, 'propn': 0.18765266193192368, 'adp': 0.1584486600284753}, {'trailer': 0.9580058682877325, 'cconj': 0.28674859428821564}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'love': 0.9296393437041822, 'adv': 0.36847074597212937}, {'ill': 0.9199635672575789, 'adv': 0.26964248251128586, 'adj': 0.28453464910949117}, {'trifer': 0.23143866489758436, 'sheldon': 0.23143866489758436, 'sidney': 0.23143866489758436, 'destruction': 0.22114342668781803, 'skilled': 0.23143866489758436, 'definition': 0.23143866489758436, 'blame': 0.21383883893083586, 'forbid': 0.20354360072106947, 'scrape': 0.23143866489758436, 'trife': 0.21383883893083586, 'escape': 0.19324836251130315, 'villain': 0.1770998562127755, 'building': 0.18391139582460572, 'mf': 0.18594377475432097, 'god': 0.14116417646515417, 'child': 0.17173446863270933, 'teach': 0.17297330855351434, 'tape': 0.18027789631049648, 'love': 0.12448776795746674, 'super': 0.16267807034374798, 'num': 0.09380487613024908, 'propn': 0.2134339300624245, 'adv': 0.2467091191564785, 'adj': 0.15620081523695845, 'killer': 0.18391139582460572, 'adp': 0.18021764186468628}, {'dream': 1.0}, {'propn': 0.6696206769767775, 'hot': 0.7183921888611183, 'adp': 0.18846965789880785}, {'house': 0.6137995472180916, 'knock': 0.5876532530497133, 'rock': 0.5048102380209982, 'adp': 0.15192232753660156}, {'andre': 0.7142696368778944, 'thousand': 0.5964061267778117, 'num': 0.2895020797003751, 'propn': 0.16467578547276376, 'adv': 0.15227951045460972}, {'glock': 0.4483014460618865, 'click': 0.45709113905055626, 'floor': 0.4087780983873167, 'shoe': 0.4279637916481295, 'high': 0.34479336221792883, 'propn': 0.11982538121888957, 'like': 0.19925813178471866, 'adv': 0.11080530352209803, 'adj': 0.11692500329880783, 'adp': 0.2023544019686974}, {'shit': 0.7711911888239532, 'adv': 0.6366036052994813}, {'hawaiian': 0.47636740567287816, 'shirt': 0.4401418966820438, 'chase': 0.3872732434595904, 'hangin': 0.4401418966820438, 'little': 0.3253097500420246, 'just': 0.2300013452025506, 'propn': 0.10982711941346937, 'adv': 0.10155967940829518, 'adj': 0.21433749960303228, 'adp': 0.09273494831725126}, {'know': 1.0}, {'tough': 0.725716754131645, 'city': 0.558679372768769, 'adv': 0.17201171636321888, 'adj': 0.1815118037124632, 'adp': 0.3141305234486966}, {'music': 1.0}, {'pew': 0.5806491780749152, 'moon': 0.554819779140076, 'shoot': 0.4102975229118437, 'propn': 0.26773883291905226, 'adp': 0.33910677480025636}, {'million': 1.0}, {'shoulda': 0.49172015448529116, 'suzanne': 0.5466754942191943, 'bye': 0.5466754942191943, 'say': 0.26928869615103485, 'propn': 0.2520734797093074, 'cconj': 0.15635106864322262}, {'intj': 1.0}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'like': 1.0}, {'accordion': 0.323179608132464, 'gangsta': 0.30880339726149736, 'origin': 0.323179608132464, 'mask': 0.2568128055007239, 'ski': 0.2906915135538765, 'york': 0.24335758403807295, 'new': 0.19763100503467027, 'old': 0.206322091087263, 'ride': 0.24730121112860728, 'fake': 0.23507451282919625, 'play': 0.22069830195822962, 'true': 0.24153892393234253, 'cause': 0.19661790472261867, 'know': 0.14684651931398354, 'propn': 0.1490189504641971, 'like': 0.12390212060236923, 'adj': 0.21811791163153452, 'adp': 0.1887411516853486}, {'drum': 0.7343182701672843, 'bish': 0.678805331518932}, {'chronomentrophobia': 0.6092015259595154, 'leave': 0.38769585036861887, 'time': 0.3344487235311426, 'funk': 0.4489367093051156, 'propn': 0.28090439413635465, 'adv': 0.2597587951430035, 'adj': 0.13705254628418057}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {'tri': 0.6319703280401676, 'bell': 0.5451117746111213, 'color': 0.5203822204544292, 'cconj': 0.18074568402049088}, {'cause': 0.9437320192522276, 'adv': 0.3307111667877469}, {'hooo': 0.9744377054874274, 'propn': 0.2246578690462405}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'claim': 0.5976148943359986, 'flow': 0.5042215818242709, 'water': 0.5007535208522435, 'like': 0.2605161579361581, 'adp': 0.26456431599644703}, {'handle': 0.5619254138363983, 'say': 0.32090635403601914, 'tang': 0.5074536320567404, 'wu': 0.4628439868486898, 'propn': 0.3003912992965614, 'adv': 0.13888939369677447}, {'witness': 0.31753803235987743, 'star': 0.2859307193337741, 'court': 0.3042473898002799, 'sit': 0.24556263655915314, 'business': 0.3014818093194042, 'snitch': 0.3014818093194042, 'year': 0.26793929995143423, 'send': 0.2859307193337741, 'label': 0.28783554957685276, 'fuck': 0.2030809603778949, 'rap': 0.23643858306142598, 'tell': 0.20822933932835735, 'propn': 0.1801017136467641, 'adv': 0.08327211164479789, 'adj': 0.17574234480256457, 'cconj': 0.11170986898590234, 'adp': 0.15207285045876137}, {'honest': 0.5585052700688916, 'sin': 0.5184642070816905, 'america': 0.4883657817171758, 'propn': 0.14315496891684076, 'adj': 0.1396898974372189, 'cconj': 0.35517314074526085, 'adp': 0.12087605242456005}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'holla': 0.6848389578556168, 'lend': 0.6455791415683193, 'adv': 0.16232272977367943, 'adp': 0.2964363425323654}, {'rumor': 0.2509514168496917, 'knot': 0.29093821967390854, 'inhale': 0.26881373137545445, 'hell': 0.21031976604198818, 'flash': 0.2558717353732148, 'break': 0.18457795195432947, 'parallel': 0.2779962236716689, 'snap': 0.2311923727292153, 'old': 0.18573876677182735, 'kid': 0.19227557700961154, 'shit': 0.1502806347409225, 'cell': 0.22662475270648166, 'beat': 0.20050519587229954, 'burn': 0.21588493254899796, 'propn': 0.46953327094774894, 'adj': 0.1309052000646015, 'cconj': 0.08320932991544203, 'adp': 0.16991175578142065}, {'shit': 0.537843116866888, 'murder': 0.7840690417420421, 'adj': 0.23424994490543172, 'adp': 0.2027004754124401}, {'opposite': 0.37605009051898836, 'gon': 0.6345644102371992, 'way': 0.25512913474868615, 'shot': 0.2858966733684515, 'run': 0.521606192969983, 'adj': 0.19238901968557504}, {'profile': 0.32116965585577667, 'chip': 0.29028296993056835, 'plus': 0.2631299235616339, 'smile': 0.2868744240686121, 'stash': 0.31402747043754653, 'style': 0.2631299235616339, 'wild': 0.29814395653137715, 'willie': 0.3411805168064811, 'big': 0.2387432190762123, 'loot': 0.30798883870889837, 'check': 0.230969188261034, 'propn': 0.24696471760451724, 'adj': 0.08032897573357962, 'cconj': 0.10212153895011601, 'adp': 0.06951003372557632}, {'collar': 0.44269088319922395, 'scholar': 0.5033603935815375, 'pis': 0.48096908243403813, 'coat': 0.4341781017869948, 'propn': 0.34815116270897684, 'adp': 0.09798970191463878}, {'leg': 0.35604553102604786, 'kunta': 0.3822510493371082, 'talkin': 0.3166188434665523, 'cut': 0.3012998903268458, 'wanna': 0.2746583234604802, 'game': 0.2896687610173938, 'king': 0.3054109934180397, 'world': 0.24172381043229707, 'run': 0.2703014620295729, 'everybody': 0.2896687610173938, 'propn': 0.20434186911731064, 'adv': 0.09447982806103132, 'adj': 0.09969788319296248, 'adp': 0.08627027993106187}, {'bell': 0.2462222851059277, 'ma': 0.25104988116224525, 'hook': 0.2462222851059277, 'hooker': 0.27275743768465993, 'cheap': 0.2462222851059277, 'jar': 0.2854555442325574, 'cooker': 0.2854555442325574, 'carvel': 0.2854555442325574, 'bar': 0.21334460234939284, 'barred': 0.2637479877101428, 'fall': 0.20170820371842418, 'kick': 0.2028071720610984, 'bleed': 0.23835177461434776, 'propn': 0.3290607183690751, 'like': 0.10943929127366388, 'adv': 0.06085801255992511, 'adj': 0.0642191582274671, 'cconj': 0.16328253182315786, 'adp': 0.16670980104455668}, {'curve': 0.4322980133839076, 'letter': 0.4322980133839076, 'sure': 0.33621657137581434, 'makin': 0.42084383598757286, 'write': 0.33061126459300744, 'word': 0.30805814292061473, 'time': 0.25686274986974683, 'propn': 0.10786986173328983, 'adv': 0.09974975792824514, 'adj': 0.21051773523618988}, {'uptown': 0.6513886351201801, 'yo': 0.3806538756667679, 'world': 0.3718447704370172, 'everybody': 0.4455986927835408, 'adj': 0.1533656797095998, 'adp': 0.2654198804754302}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'make': 1.0}, {'bad': 0.954831295652993, 'adj': 0.2971484424351353}, {'sleepin': 0.4166743670601618, 'school': 0.33658866234054946, 'momma': 0.3545145950780327, 'room': 0.3465224610024088, 'reality': 0.3697499299165299, 'high': 0.28929191517568315, 'pad': 0.40291119749251025, 'propn': 0.10053706891711846, 'adj': 0.09810356533156109, 'adp': 0.25467206842320633}, {'runny': 0.47464933040429574, 'pen': 0.3431248607849045, 'ill': 0.34525062009407714, 'make': 0.2519467672012481, 'line': 0.33911720139536716, 'plot': 0.37717734381373724, 'shot': 0.31736411210874577, 'time': 0.26058021182497454, 'num': 0.19238108577744978, 'adj': 0.10678223305749415}, {'giant': 0.311053756154444, 'hillside': 0.325534731526926, 'visit': 0.311053756154444, 'livin': 0.24155658763848945, 'people': 0.20406273668474323, 'talk': 0.2176618282461329, 'propn': 0.07505245196643595, 'hop': 0.4508283482239669, 'hip': 0.4625643442038623, 'like': 0.12480503890386829, 'comin': 0.26154297433636325, 'adv': 0.06940273951665618, 'adj': 0.07323580450562962, 'adp': 0.19011657479573768}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'gin': 0.7956853745676873, 'pass': 0.605710149080465}, {'illa': 0.9744377054874274, 'propn': 0.2246578690462405}, {'aim': 0.6964213502136499, 'cat': 0.6284994972376643, 'adv': 0.17510636165339633, 'adj': 0.18477736410768808, 'cconj': 0.23490588064270543}, {'marble': 0.5281400557561525, 'losin': 0.5046464546133401, 'dad': 0.45555202556622937, 'mom': 0.40765232647171656, 'propn': 0.24352674124979404, 'cconj': 0.1510498695916601, 'adp': 0.1028135850429061}, {'adj': 1.0}, {'spit': 0.7316205915167575, 'word': 0.6817120433648433}, {'know': 1.0}, {'fall': 0.9573736993486073, 'adv': 0.2888522109930308}, {'raise': 0.5054725715896087, 'woman': 0.4995372373788685, 'hand': 0.4227282797306545, 'love': 0.33443591093651004, 'adv': 0.3976698611688397, 'cconj': 0.17782523349595816, 'adp': 0.12103850083575826}, {'shogun': 0.9292459520260888, 'propn': 0.23187160074283342, 'cconj': 0.2876413068599224}, {'uh': 0.6299158250485506, 'intj': 0.3434930947203493, 'doubt': 0.6965763039558847}, {'blend': 0.2561019943220389, 'servant': 0.26802471378529324, 'civil': 0.2561019943220389, 'bunch': 0.2476426902392441, 'monch': 0.22726066669319495, 'lip': 0.22726066669319495, 'friend': 0.17457390013784224, 'pharoahe': 0.21533794722994054, 'pass': 0.1949559236838914, 'nigga': 0.14416691520120448, 'niggas': 0.15155682709631652, 'know': 0.12178520958341167, 'secret': 0.220699120683066, 'intj': 0.10502601330284154, 'end': 0.18839437767376244, 'propn': 0.37076065947558556, 'like': 0.10275657738352524, 'adv': 0.05714182725639041, 'adj': 0.3014886529831532, 'cconj': 0.15331197709155747, 'adp': 0.31305993253904557}, {'def': 0.664384636694171, 'mos': 0.6542595235245694, 'propn': 0.3612997791338348}, {'state': 0.683904932001373, 'mind': 0.5812481857219416, 'adv': 0.18890097542074413, 'adj': 0.19933384479032304, 'adp': 0.344973956097192}, {'tempt': 0.9744377054874274, 'propn': 0.2246578690462405}, {'oh': 0.5460431198710513, 'intj': 0.6942535844167921, 'yeah': 0.46888044506667687}, {'rope': 0.9673146071327873, 'propn': 0.2535792791762402}, {'sidewalk': 0.5404674455388393, 'trainwrecks': 0.5656286776848037, 'maybach': 0.5656286776848037, 'propn': 0.2608128414664479}, {'hood': 0.7212266492671373, 'like': 0.3801412165174582, 'adp': 0.5790723408103039}, {'piper': 0.457552221539756, 'pied': 0.457552221539756, 'holler': 0.457552221539756, 'dollar': 0.3461639691188389, 'dime': 0.36058153567163326, 'rhyme': 0.30286583154638136, 'adj': 0.10772801930468943, 'cconj': 0.1369537084094032}, {'mansion': 0.3964612280494146, 'forever': 0.35332617462240895, 'ransom': 0.41000407109423936, 'ghost': 0.33748649907131606, 'live': 0.2766284898352173, 'house': 0.33748649907131606, 'hold': 0.2722256825506096, 'like': 0.16450717289603722, 'adv': 0.09148066912522167, 'adj': 0.09653308279698453, 'cconj': 0.12272168149538698, 'adp': 0.3341268965314234}, {'weapon': 0.5607383417974735, 'perform': 0.5161116604787909, 'new': 0.3588667839592012, 'propn': 0.13529747392794042, 'like': 0.4499734800063075, 'adj': 0.13202259341404832, 'adp': 0.22848280678157248}, {'hair': 0.3947865454197596, 'let': 0.27838935517413416, 'beard': 0.4212491654326856, 'long': 0.3335266972730995, 'night': 0.3474196080088545, 'berserk': 0.4212491654326856, 'grow': 0.3686473983682013, 'adv': 0.10591778768100357, 'adj': 0.11176755336024081, 'cconj': 0.14208913346153498}, {'platinum': 0.7733765175632903, 'mean': 0.5436057954362877, 'adv': 0.16488086768801236, 'adj': 0.17398712322904625, 'cconj': 0.22118833981629193}, {'smile': 0.6798332272677394, 'kiss': 0.6724026008396978, 'cconj': 0.24200698833089743, 'adp': 0.16472444592636767}, {'prince': 0.3800942757428794, 'fit': 0.7350787660883402, 'pant': 0.3800942757428794, 'cut': 0.27045335419859096, 'king': 0.2741435700140148, 'propn': 0.0917108596455769, 'adj': 0.0894909947918875, 'adp': 0.07743808519046178}, {'letter': 0.7489339652311583, 'send': 0.5933806454393086, 'adj': 0.18235554793298053, 'cconj': 0.23182704647910693}, {'gasp': 0.6645522501438814, 'sort': 0.5844544511239371, 'adv': 0.42503987051343556, 'cconj': 0.19006422562924155}, {'kangol': 0.33850092457753345, 'soap': 0.33850092457753345, 'mathers': 0.31275951544529373, 'marshall': 0.31275951544529373, 'mouth': 0.2612766971808142, 'bar': 0.25298981437915613, 'oh': 0.20865111172686326, 'girl': 0.2254364847591205, 'intj': 0.13264225565476542, 'propn': 0.5462927714133535, 'adj': 0.07615281915098704, 'cconj': 0.09681242684932853, 'adp': 0.13179266831532746}, {'space': 0.5126162843468034, 'travel': 0.5126162843468034, 'place': 0.4268577501262161, 'time': 0.34616687221726433, 'man': 0.3220052600685711, 'propn': 0.1453732495726104, 'cconj': 0.18033839140100785, 'adp': 0.12274910657607162}, {'represent': 0.9886605592791032, 'propn': 0.150167568156146}, {'adv': 1.0}, {'nuttin': 0.7955493132412291, 'word': 0.5481874784597457, 'adv': 0.17750405088219318, 'adj': 0.18730747604344644}, {'intj': 0.8672352009728135, 'adj': 0.4978986906928394}, {'mr': 0.6674381388785798, 'nigga': 0.490412196320203, 'propn': 0.4204051696345323, 'adv': 0.19437919558343947, 'cconj': 0.2607604640174585, 'adp': 0.17748918430424693}, {'autopsy': 0.33158718721629377, 'especially': 0.30637153541328627, 'picture': 0.2695710158874285, 'guard': 0.28601355481723745, 'better': 0.21832218358898348, 'head': 0.20972271541688353, 'space': 0.2695710158874285, 'late': 0.2695710158874285, 'yo': 0.1851509476052073, 'right': 0.19351299965495733, 'night': 0.23187954989284126, 'fuck': 0.17240372874270235, 'propn': 0.07644785342720968, 'adv': 0.35346549772876784, 'adj': 0.07459743022085338, 'cconj': 0.09483507422207692, 'adp': 0.322752147848268}, {'testimony': 0.43654173025795945, 'complication': 0.43654173025795945, 'accord': 0.43654173025795945, 'wire': 0.40334477726325024, 'rush': 0.37654305386565684, 'propn': 0.20129051722286267, 'adv': 0.09306900019894672, 'adj': 0.09820913629019899, 'adp': 0.2549461254802651}, {'trick': 1.0}, {'traitor': 0.4443942625881937, 'turn': 0.28944957546358263, 'people': 0.2785703048193628, 'watch': 0.3107657519851476, 'try': 0.2819340234525377, 'ah': 0.35703777802804865, 'yes': 0.30921785745926167, 'intj': 0.34827353847438436, 'adj': 0.09997572666264165, 'young': 0.321253417453055, 'adp': 0.08651070262749813}, {'ultimate': 0.5962938540081744, 'struggle': 0.4978978379158308, 'vain': 0.5697685226736265, 'adj': 0.1341486971765377, 'adp': 0.23216231452793937}, {'propn': 1.0}, {'long': 0.4953839882769186, 'night': 0.5160189946656819, 'berserk': 0.6256773245935844, 'adv': 0.1573186689997406, 'adj': 0.16600726957162562, 'cconj': 0.21104362019736808}, {'leg': 0.35604553102604786, 'kunta': 0.3822510493371082, 'talkin': 0.3166188434665523, 'cut': 0.3012998903268458, 'wanna': 0.2746583234604802, 'game': 0.2896687610173938, 'king': 0.3054109934180397, 'world': 0.24172381043229707, 'run': 0.2703014620295729, 'everybody': 0.2896687610173938, 'propn': 0.20434186911731064, 'adv': 0.09447982806103132, 'adj': 0.09969788319296248, 'adp': 0.08627027993106187}, {'grammy': 0.7625444664995981, 'life': 0.43443647548267306, 'want': 0.445963309017977, 'propn': 0.17580560966810038}, {'nas': 0.8214995222442789, 'propn': 0.26945222427108023, 'like': 0.4480732401377794, 'adp': 0.2275179229428328}, {'expect': 0.9686853572241145, 'propn': 0.24829151958854698}, {'umm': 0.697893652193333, 'premo': 0.697893652193333, 'propn': 0.16090028109516258}, {'away': 0.4704376825736245, 'planet': 0.5042842948665578, 'energy': 0.5580154300092073, 'feel': 0.35026184025994866, 'num': 0.24478513142185418, 'adv': 0.12875817686030586, 'adp': 0.11757011193941104}, {'faded': 0.341160306825871, 'drank': 0.8267656980802334, 'fade': 0.30274000397282474, 'propn': 0.3292667847185863}, {'workin': 1.0}, {'kesha': 0.4770224344118525, 'lady': 0.3681964718407522, 'crazy': 0.3389094129976074, 'guess': 0.3592028217412997, 'new': 0.29170907063622203, 'maybe': 0.35396503145164826, 'propn': 0.1099781371335692, 'adv': 0.2033986579791327, 'adj': 0.21463222426388848, 'cconj': 0.2728601086961474, 'adp': 0.0928624634568929}, {'couple': 0.6622571446605466, 'rapper': 0.5666614805545654, 'kill': 0.4902144844879306}, {'monch': 0.6208303634513322, 'pharoahe': 0.5882598955150866, 'know': 0.33269266093783806, 'propn': 0.3376144793332978, 'cconj': 0.20940871960850413}, {'evil': 0.6523741478643073, 'inside': 0.49099217030243747, 'dna': 0.5598209638750508, 'adp': 0.14119188470315913}, {'truth': 1.0}, {'matter': 0.9656011204395729, 'adp': 0.2600278373671586}, {'honey': 0.7875184594220255, 'money': 0.584744920432627, 'adv': 0.19464853993236161}, {'cool': 0.9600522168198188, 'adj': 0.279820908760142}, {'adv': 0.1110000116577016, 'goose': 0.46830861218025077, 'kill': 0.3217978481404182, 'think': 0.3183866655069069, 'shitter': 0.48105464636548784, 'slit': 0.46830861218025077, 'hit': 0.3200667964546847, 'adp': 0.10135499052639278}, {'hole': 0.3530070967414209, 'explosive': 0.39105035171884533, 'home': 0.29585156732661955, 'throw': 0.2876654195770859, 'away': 0.3187873852514407, 'blow': 0.27046925682471135, 'old': 0.2612740889593237, '80': 0.37813356891271904, 'make': 0.2172353404788426, 'num': 0.16587619335147671, 'propn': 0.18870878205543387, 'adv': 0.17450337866850452, 'adp': 0.15934041832636717}, {'sell': 0.4424605027212241, 'straight': 0.4467306779164361, 'soul': 0.4404187273300101, 'till': 0.6134621516676699, 'adv': 0.13687651434236003, 'adp': 0.12498303024721348}, {'skull': 0.370575844348847, 'left': 0.3583353549243742, 'jewel': 0.370575844348847, 'choose': 0.3152930820581602, 'wisdom': 0.370575844348847, 'sell': 0.26727838700594786, 'nas': 0.2726039122102307, 'propn': 0.2682426288795927, 'adp': 0.3774942907009947}, {'success': 0.625000780615662, 'white': 0.508665963690547, 'boy': 0.4834908727747389, 'intj': 0.27227903081812, 'adj': 0.15632134488473912, 'adp': 0.13526752775989187}, {'propn': 0.30220390620065807, 'lose': 0.8764304563450458, 'cconj': 0.37488992286787143}, {'pen': 0.6721992295454542, 'blood': 0.6899859583380171, 'adv': 0.1982430543701451, 'adp': 0.18101730439066224}, {'shoot': 1.0}, {'say': 0.8183302414408267, 'cconj': 0.47512877287867533, 'adp': 0.3234010901747275}, {'sorry': 0.9655674098807067, 'adj': 0.2601529876366277}, {'luxury': 0.7863290263810011, 'lil': 0.5879537096620548, 'propn': 0.18972901086901495}, {'syrup': 0.5226690853337173, 'cup': 0.5054048045958079, 'lean': 0.49201358809799056, 'maybe': 0.40589177342920635, 'adv': 0.11661864119979913, 'adj': 0.1230594075695089, 'cconj': 0.15644437101959038, 'adp': 0.10648540569938159}, {'way': 0.7208202445522076, 'just': 0.5832831317524668, 'adv': 0.25755522348305815, 'adj': 0.2717798191796475}, {'phase': 0.8334265556490646, 'propn': 0.19214756668822544, 'adv': 0.17768330241343752, 'adp': 0.4867320957140442}, {'soul': 0.9620133674031983, 'adp': 0.2730023460294051}, {'know': 1.0}, {'answer': 0.7581089467671651, 'word': 0.5549365686313446, 'adv': 0.1796894179186567, 'cconj': 0.24105406885163552, 'adp': 0.16407583187469726}, {'prayin': 0.4187617353448953, 'mile': 0.36828881420493015, 'marshall': 0.3869168676480255, 'writer': 0.40013368190180004, 'fall': 0.29590484097801967, 'say': 0.20627923311257182, 'num': 0.16972917092093914, 'propn': 0.19309211573177112, 'adv': 0.08927837438838924, 'adj': 0.09420915685495845, 'adp': 0.40760395675684147}, {'rack': 0.48583825605237635, 'air': 0.4471725408530673, 'max': 0.48583825605237635, 'snatch': 0.41867723907734733, 'propn': 0.23445048744386965, 'hit': 0.3125722876949983}, {'critical': 0.43414929260614205, 'rything': 0.46988158535360913, 'rythe': 0.46988158535360913, 'mouth': 0.362684707111208, 'run': 0.28660054300752064, 'niggas': 0.26569849168546184, 'tell': 0.2505013390915882, 'propn': 0.10833180517866671, 'adj': 0.10570962970476745}, {'dime': 0.6699670200463629, 'num': 0.36061350604912606, 'end': 0.625382301262355, 'adp': 0.17320239193774017}, {'propn': 1.0}, {'especially': 0.3541945412763849, 'mail': 0.3662935833528068, 'recovery': 0.3833462253951569, 'industry': 0.3541945412763849, 'fuckin': 0.25951198436380873, 'say': 0.18883378951991442, 'bitch': 0.20778406126269144, 'just': 0.18508853978929188, 'propn': 0.08838096639652963, 'like': 0.14696908176182216, 'adv': 0.32691170126150226, 'cconj': 0.10963833688298891, 'adp': 0.3731320822571681}, {'hell': 0.6353438376876377, 'propn': 0.20262688293298034, 'adj': 0.1977222915075607, 'cconj': 0.5027253119836529, 'adp': 0.5132774204629957}, {'live': 0.6844967269527134, 'different': 0.30527563256325085, 'world': 0.579140770940627, 'num': 0.14344742731800847, 'adj': 0.07962132323699056, 'adp': 0.27559075976937514}, {'person': 0.5029818328774551, 'familiar': 0.5932023511053921, 'feel': 0.3440330400356017, 'try': 0.37634132491856187, 'adv': 0.2529368713521141, 'adj': 0.13345319933778246, 'adp': 0.23095866222722333}, {'bans': 0.21738110370443597, 'ashy': 0.2077111972264953, 'cocoa': 0.21738110370443597, 'spilt': 0.2008502893940838, 'kilt': 0.21738110370443597, 'tilt': 0.21738110370443597, 'frown': 0.21738110370443597, 'mask': 0.17274063616754587, 'clown': 0.2008502893940838, 'ray': 0.19552855583621537, 'thousand': 0.18151047643820248, 'cayman': 0.2008502893940838, 'fam': 0.18750405509500073, 'butter': 0.18750405509500073, 'sound': 0.14260294098748413, 'milk': 0.19118038291614312, 'island': 0.1613033343067079, 'mic': 0.14014210799732152, 'metal': 0.19118038291614312, 'pound': 0.18431947508373167, 'day': 0.13626620642721826, 'build': 0.19118038291614312, 'face': 0.1387789413395575, 'num': 0.17621435480605627, 'propn': 0.20046997464955346, 'like': 0.083340591578487, 'adv': 0.09268961284393283, 'adj': 0.04890439781783859, 'cconj': 0.06217174215130279, 'adp': 0.2962246707893926}, {'original': 0.7751901236560048, 'adj': 0.5816573343407946, 'cconj': 0.24648532936819811}, {'easy': 0.7692560772282971, 'intj': 0.36607259127367203, 'adv': 0.3983404894850641, 'adj': 0.21017027870782895, 'cconj': 0.2671876755207552}, {'wack': 0.5857628282197005, 'bad': 0.4909217191670623, 'actually': 0.5396418948843831, 'adv': 0.2895624296687479, 'adj': 0.15277738054062096, 'adp': 0.13220087492593927}, {'amazing': 0.4160222873774655, 'half': 0.7203540445565999, 'nas': 0.3502110033486042, 'man': 0.2544384331776309, 'propn': 0.11486937151063609, 'like': 0.19101676233921222, 'adv': 0.10622236663180486, 'adj': 0.22417790798892603, 'adp': 0.0969924849815149}, {'pastry': 0.26915172918719943, 'cadillacs': 0.26915172918719943, 'paul': 0.25717887595725647, 'shelf': 0.24209486478800743, 'rasta': 0.26915172918719943, 'judge': 0.23215928062932872, 'plus': 0.1983450245216767, 'rack': 0.25717887595725647, 'fruit': 0.25717887595725647, 'try': 0.1707560972704848, 'walk': 0.1957756925984125, 'fiend': 0.2026740329724626, 'propn': 0.49642622479646825, 'like': 0.10318865785745933, 'hit': 0.1654603946958875, 'adj': 0.12110255227544284, 'adp': 0.15718815812188655}, {'yeahh': 0.7277509516683557, 'somebody': 0.5846938284670163, 'say': 0.35848525673782694}, {'learn': 0.35591811592198086, 'deep': 0.30551213815584083, 'leaf': 0.4365979046022191, 'green': 0.4018510109073253, 'street': 0.3031245835331878, 'propn': 0.21068861967083807, 'like': 0.3503549942163194, 'adj': 0.20558889360036958, 'adp': 0.355799157085276}, {'day': 0.8683199626191622, 'propn': 0.15968016342604638, 'hit': 0.4257751350893647, 'cconj': 0.19808640100956204}, {'bad': 0.5978218847182248, 'happen': 0.5942634829647806, 'adv': 0.17630790275674324, 'adj': 0.18604526548972322, 'cconj': 0.47303550562393804}, {'gang': 0.3615914768414844, 'pretty': 0.3534398024008767, 'titty': 0.3403494269858209, 'ring': 0.34330770352918694, 'baby': 0.2772104555607232, 'propn': 0.4101760292159839, 'like': 0.17052086221856072, 'adv': 0.09482481706388521, 'adj': 0.20012385139656166, 'adp': 0.43292646062123946}, {'mean': 0.5020455080261069, 'need': 0.4168332869398702, 'hear': 0.46360006981298785, 'love': 0.38418530890598585, 'just': 0.3448564288482763, 'adv': 0.30455046534512265}, {'bust': 0.8005678293500038, 'nigga': 0.5992421468904061}, {'oh': 0.6776925049677133, 'bitch': 0.5959267464888017, 'intj': 0.4308180376096823}, {'ago': 0.5639179837158611, 'doom': 0.41066623591629375, 'year': 0.43985601031372096, 'meet': 0.472518202765626, 'propn': 0.1478297906087103, 'adv': 0.2734032581642078}, {'family': 0.6663940195885111, 'struggle': 0.6757487271067183, 'adp': 0.3150915239582254}, {'america': 0.6584083470793678, 'dna': 0.6461447083266658, 'propn': 0.38599930621396555}, {'estate': 0.429881771852795, 'private': 0.44989473497608345, 'island': 0.3338354604057246, 'guest': 0.4156823485434215, 'doom': 0.28814129336168043, 'long': 0.30203126085961846, 'propn': 0.31117143318348567, 'adj': 0.10121317226053107, 'cconj': 0.12867143915228443, 'adp': 0.17516297084717158}, {'bunch': 0.5839163986933512, 'shit': 0.32643915391623857, 'money': 0.4047572068531597, 'tell': 0.33691599245082554, 'adj': 0.4265278373290773, 'cconj': 0.18074706233681775, 'adp': 0.24605454496662332}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {'doubt': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'job': 0.5722317707864991, 'eye': 0.4646555691315932, 'propn': 0.16021890500593752, 'adv': 0.14815812992683772, 'adp': 0.13528436286520695, 'focus': 0.6250785668673805}, {'intj': 1.0}, {'step': 0.5862692199430659, 'need': 0.43501390941155077, 'niggas': 0.4214940059874899, 'fuck': 0.38756062988644924, 'propn': 0.34370693074665254, 'adp': 0.14510826027894003}, {'junkie': 0.4581853949303602, 'dealer': 0.42334254265738874, 'swallow': 0.39521199437627924, 'sort': 0.4029607806595335, 'pill': 0.3603691421033078, 'propn': 0.10563523340024629, 'like': 0.17566127513106233, 'adv': 0.1953666907707991, 'adj': 0.10307832854903555, 'adp': 0.2675863109813442}, {'max': 0.8238647272735018, 'just': 0.4162997286471225, 'intj': 0.33786237407258884, 'adv': 0.18382182478945422}, {'hittin': 0.697635434819188, 'sleepin': 0.6666020593535295, 'propn': 0.16084074874671234, 'adj': 0.1569475922921361, 'adp': 0.1358094303300565}, {'leave': 1.0}, {'wanna': 0.8666933787006625, 'adv': 0.2981342067831238, 'cconj': 0.39994822422687115}, {'really': 0.9569501874534486, 'adv': 0.29025219849780526}, {'hop': 0.6412461617029651, 'hip': 0.6579391278962327, 'adv': 0.3948663876355639}, {'jacket': 0.2926496449913409, 'sweat': 0.2926496449913409, 'river': 0.26323061883492643, 'rain': 0.25242762237787375, 'scratch': 0.27039501081706596, 'slack': 0.2926496449913409, 'breath': 0.23791589404192307, 'home': 0.2115569585042372, 'fall': 0.20679168929347175, 'jack': 0.24814037664279107, 'neck': 0.23255234695442886, 'dress': 0.26323061883492643, 'catch': 0.19128893628302426, 'let': 0.16398759953695888, 'run': 0.1784993278729096, 'propn': 0.06747075287691821, 'like': 0.11219739951258169, 'comin': 0.23512225018357272, 'adv': 0.062391766880628446, 'cconj': 0.08369880343330256, 'adp': 0.17091125072883467}, {'poor': 0.40472801702459876, 'chopper': 0.44385977626906303, 'say': 0.25348101188962796, 'food': 0.3655962577801345, 'hard': 0.34270564603487447, 'propn': 0.23727635664074756, 'adv': 0.32912240856761354, 'adj': 0.11576653669170614, 'hot': 0.38183740527933874}, {'clan': 0.7542968613108081, 'shit': 0.4216905532349768, 'want': 0.4774474559269562, 'adp': 0.158925294267212}, {'funny': 0.49848257997332723, 'money': 0.35494100393562106, 'stien': 0.5541936979415173, 'ben': 0.4873973016818874, 'propn': 0.2555401428275367, 'adj': 0.12467739196467227}, {}, {'son': 0.648081645766804, 'knock': 0.7327676916021828, 'adv': 0.20746491405584427}, {'adp': 1.0}, {'fresher': 0.49200029979906396, 'plus': 0.36256802742086447, 'paint': 0.4545859824641302, 'wet': 0.39998234475579825, 'coat': 0.42437934920834625, 'adv': 0.10489255167615454, 'adj': 0.11068569428455927, 'cconj': 0.14071377528315895, 'adp': 0.19155644080850262}, {'floss': 0.5439924436217298, 'microphone': 0.5216669692254768, 'ring': 0.4668155154921995, 'super': 0.42510631929781617, 'propn': 0.1394350698750955, 'adp': 0.11773507370069002}, {'friend': 0.8201501783817435, 'know': 0.5721483067355825}, {'doom': 0.9408947531108145, 'propn': 0.3386990752401596}, {'crowd': 0.5497405324775152, 'yell': 0.6222622237867826, 'woo': 0.5339810583294397, 'propn': 0.15949702550404415}, {'shut': 0.3638827556797157, 'med': 0.442072235897493, 'mouth': 0.35710500645495413, 'bad': 0.33445249003608946, 'motherfucker': 0.3409410206925927, 'say': 0.22789963936021396, 'pull': 0.3409410206925927, 'man': 0.236265953332767, 'propn': 0.21333036231793798, 'adv': 0.19727152383465055, 'adp': 0.09006509607875696}, {'fold': 0.9698136145340475, 'adv': 0.2438473970835162}, {'fuck': 0.8648983823989183, 'propn': 0.3835162107528491, 'adp': 0.3238303633285652}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'yo': 0.7318509743608332, 'fuck': 0.6814647102580581}, {'fly': 0.38923195589369114, 'away': 0.4026374061696877, 'dove': 0.49390755902599937, 'leave': 0.3289559328745635, 'just': 0.249572018309054, 'want': 0.30230233986990884, 'like': 0.1981720230008989, 'adv': 0.33060399033441334, 'cconj': 0.14783552266977568, 'adp': 0.10062570807549152}, {'seeds': 0.47328553374873295, 'anywho': 0.47328553374873295, 'walkin': 0.3802497682087671, 'shoe': 0.38971667819421946, 'street': 0.3139791879810887, 'propn': 0.21823317973767542, 'like': 0.18145043748507966, 'adp': 0.2764049911191707}, {'thinkin': 0.800262138283813, 'time': 0.552876467607989, 'propn': 0.23218122575852596}, {'adv': 0.7384617951868037, 'adp': 0.6742953188696205}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'blow': 0.7288660564928832, 'love': 0.5932191250088612, 'adv': 0.23512762771635004, 'adj': 0.2481135629116549}, {'shake': 0.5004128792898733, 'need': 0.359224069466711, 'maybe': 0.4567458179071956, 'shit': 0.31794739271475736, 'world': 0.3357473894931278, 'adv': 0.26245950346819863, 'adp': 0.3594807796455124}, {'strong': 0.47215347387134277, 'york': 0.4193094875129269, 'new': 0.3405217707321897, 'soon': 0.4424930757219323, 'stay': 0.37383050619121955, 'propn': 0.25676232773202184, 'adv': 0.23743406754045912, 'adj': 0.1252736929008138, 'adp': 0.10840146458910939}, {'killah': 0.5001202605620537, 'step': 0.42572595732030777, 'skill': 0.43012679857414565, 'weak': 0.44004716862398074, 'propn': 0.2495866355459585, 'adj': 0.24354538151846145, 'cconj': 0.154808578957528, 'adp': 0.21074397536454462}, {}, {'alive': 0.3965821084237433, 'scream': 0.3203581787964153, 'door': 0.3232969177145887, 'motherfuckin': 0.32643848391321667, 'new': 0.2538084793159925, 'walk': 0.30189546734663053, 'talk': 0.2775108323281529, 'stop': 0.28097082394451983, 'year': 0.284715506896433, 'propn': 0.19137823642574678, 'adv': 0.2654578273689121, 'adj': 0.09337295945891352, 'cconj': 0.11870424375752368, 'adp': 0.08079721547268291}, {'bug': 0.602753534586815, 'sit': 0.43933204666748965, 'just': 0.3373954554432716, 'adv': 0.29796151199427345, 'think': 0.42732865896357203, 'cconj': 0.19985827674036785, 'adp': 0.13603550925084013}, {'invent': 0.5244377326620806, 'level': 0.4446756684509581, 'ghetto': 0.43183684376307296, 'lookin': 0.39801785190733835, 'old': 0.33480791152996725, 'propn': 0.12090979526327982, 'adj': 0.11798316905991633, 'adp': 0.2041856997555844}, {'propn': 0.7909401179909721, 'adv': 0.3657003172044899, 'cconj': 0.49058843010099873}, {'rub': 0.60974360459323, 'titty': 0.5871604867982463, 'girl': 0.5110211479307274, 'adp': 0.14937431428482983}, {'bath': 0.24479528608638987, 'prosecutor': 0.24479528608638987, 'shooter': 0.22617975166603965, 'minimum': 0.23390589651960106, 'judge': 0.21115040832503718, 'grand': 0.20157135371443602, 'stand': 0.17489604854532306, 'plan': 0.18578543811211184, 'half': 0.17696295576283236, 'briefcase': 0.23390589651960106, 'game': 0.16000918054744154, 'point': 0.19667482767890065, 'sharp': 0.20756421724568946, 'nigga': 0.13167211617336919, 'time': 0.1343914410409319, 'send': 0.1792022972111741, 'num': 0.3968739017530059, 'propn': 0.05643786874731391, 'adv': 0.052189403556019004, 'hit': 0.3009746567697183, 'adj': 0.16521536394871272, 'adp': 0.2859273485111231}, {'report': 0.42211651319004545, 'investigative': 0.42211651319004545, 'building': 0.3354324445993083, 'child': 0.3132231821587091, 'save': 0.3203619750655395, 'brother': 0.2922915313934606, 'build': 0.3712392441277924, 'burn': 0.3132231821587091, 'adj': 0.09496388386450001}, {'lead': 0.9328227281474246, 'adv': 0.2660940875964052, 'adp': 0.24297262067531955}, {'queensbridge': 0.7073211176703161, 'motherfucker': 0.5455099059237496, 'come': 0.39015726379492066, 'propn': 0.17066562662705448, 'adp': 0.14410528245949963}, {'hol': 0.7601784358384964, 'bitch': 0.5978768400692719, 'propn': 0.25430695978466494}, {'paint': 0.6204156728612261, 'shoe': 0.5529143352714504, 'face': 0.42868063834956244, 'just': 0.3242055355750665, 'adv': 0.14315659861207305}, {}, {'45': 0.9206020569912046, 'num': 0.39050205206063004}, {'squeal': 0.5406537804984249, 'revolution': 0.5406537804984249, 'start': 0.3918005264371821, 'probably': 0.4329755951658094, 'adv': 0.24126282196699658, 'adj': 0.1272937998348828}, {'propn': 0.907674906409101, 'adv': 0.4196739976162806}, {'spice': 0.4109722531386005, 'veteran': 0.4109722531386005, 'swift': 0.37826479155706055, 'ham': 0.3973974300760393, 'learn': 0.335027879179974, 'game': 0.28113585177162304, 'run': 0.26233906444000676, 'like': 0.16489563950453084, 'adv': 0.09169669122718958, 'adj': 0.19352207129852186, 'adp': 0.16745795125308022}, {'plane': 0.4753150733473005, 'jet': 0.4540066136657865, 'lettin': 0.5192114105269533, 'leave': 0.3673550337452984, 'know': 0.2622862549093846, 'adj': 0.12986195936127418, 'cconj': 0.1650923968585722, 'adp': 0.22474353973614}, {}, {'nas': 0.9501925120844457, 'propn': 0.31166358462074223}, {'friend': 0.3774223741999505, 'sell': 0.39934479019107394, 'razor': 0.5096179379985788, 'nigga': 0.3116835871419403, 'crack': 0.4012426215152687, 'rap': 0.35076901393371407, 'adj': 0.1303614837193877, 'cconj': 0.16572743789734765, 'adp': 0.11280401682083058}, {'happen': 0.712731366135087, 'hand': 0.6743393244185028, 'adp': 0.19308152493185277}, {'island': 0.6226145283752109, 'long': 0.5632986106572908, 'know': 0.3812566276705399, 'propn': 0.3868968960136111}, {'medicate': 0.5925222065613729, 'self': 0.4817038152153343, 'say': 0.29187248035206326, 'sleep': 0.4164834308989736, 'stay': 0.39778244825329717}, {'animal': 0.43875784022448433, 'zoo': 0.43875784022448433, 'banana': 0.420751198693084, 'shawty': 0.3965627717889971, 'ooh': 0.35052825796619136, 'propn': 0.33738463186717244, 'like': 0.18701277574329153, 'adp': 0.09495938272904676}, {'especially': 0.6943609815539039, 'jail': 0.3018911405378712, 'mr': 0.2750712255887322, 'cell': 0.29269223883860707, 'nigga': 0.20211353836044552, 'just': 0.1814232648805649, 'propn': 0.2598923222671437, 'adv': 0.32043792791298964, 'adp': 0.1462972060222507}, {'sayin': 0.8454744744520898, 'know': 0.4834454555334038, 'adv': 0.22683342913702648}, {'twist': 0.7219653272494151, 'point': 0.6724704321117956, 'adp': 0.1629404314006191}, {'really': 0.8917356917090983, 'adv': 0.27047201452177744, 'cconj': 0.3628392832820442}, {'sing': 0.614375031406932, 'simple': 0.5703284831491257, 'song': 0.48527730494357874, 'adj': 0.15366369795335383, 'cconj': 0.19535134330366494}, {'life': 0.5175251448280773, 'love': 0.48860860668972333, 'intj': 0.35595277844752704, 'yeah': 0.4808021187860355, 'num': 0.3681797061568569}, {'rake': 0.3622379332133052, 'throat': 0.32699768858711714, 'mc': 0.2637861146470412, 'cut': 0.2577478018158207, 'tree': 0.3081990263069783, 'bed': 0.30458010744298547, 'leave': 0.24126036353386535, 'grow': 0.2813049427275818, 'money': 0.24280095927511275, 'propn': 0.3496096034206235, 'adv': 0.24246906932741516, 'cconj': 0.10842440697407774, 'adp': 0.22140042922165132}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'thang': 0.7445284022287136, 'bitch': 0.4759407313032892, 'adj': 0.3950826482414003, 'cconj': 0.2511325937026312}, {'rumor': 0.39458526768739516, 'weirdo': 0.45745880510124093, 'skinned': 0.4371093644761991, 'brown': 0.3675341674338089, 'low': 0.33488254640937276, 'hair': 0.3635169923558594, 'propn': 0.2109354343571432, 'adv': 0.09752843925784355, 'adj': 0.10291486706389212}, {'house': 0.5289346056712478, 'ole': 0.6425896806675244, 'big': 0.44965618301919935, 'adv': 0.2867509769039149, 'adj': 0.15129401686869626}, {'royalty': 0.5470713978550648, 'inside': 0.42110335253079223, 'loyalty': 0.5274385967214963, 'dna': 0.48013491652950924, 'adp': 0.12109434649847454}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'curb': 0.5412889186490942, 'blade': 0.5190743970395277, 'love': 0.3236916511399705, 'ride': 0.46049299312484204, 'adv': 0.2565960766790611, 'adp': 0.23429991161727332}, {'thunk': 0.4720820018220507, 'overproof': 0.4720820018220507, 'drunk': 0.4246252801165235, 'shit': 0.4876965492062194, 'propn': 0.3265173420953805, 'adj': 0.10620465912776597, 'cconj': 0.1350170736618284}, {'valuable': 0.7100959046879549, 'god': 0.4687647206547707, 'make': 0.4079455999399131, 'propn': 0.17718783034989638, 'adj': 0.17289899216197316, 'cconj': 0.21980500810897027}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'ly': 0.6060645968796372, 'prob': 0.5705178004540309, 'high': 0.4207832346120142, 'propn': 0.14623399700494652, 'adv': 0.27045192360011144, 'adj': 0.14269439753308116, 'adp': 0.1234758976371336}, {'like': 0.6331180134954634, 'adv': 0.7041402327957857, 'adp': 0.32147801409405113}, {'sound': 0.6064138165328035, 'way': 0.5515670209218895, 'intj': 0.36223001534554444, 'like': 0.35440283251695054, 'adv': 0.19707960259589075, 'adp': 0.17995494735306922}, {'nigga': 0.5364794448773286, 'color': 0.8212740182705704, 'adp': 0.19416176796121332}, {'frustrate': 0.9780202119011796, 'adv': 0.2085101079390913}, {}, {'just': 0.5455243570765668, 'hope': 0.8027321093531499, 'adv': 0.24088241208033626}, {'mission': 0.5726438863649131, 'ruin': 0.5726438863649131, 'pm': 0.5471705920815141, 'propn': 0.13202378613699772, 'adv': 0.12208545089727993, 'adp': 0.11147719296879592}, {'cathedral': 0.3611153470430891, 'tall': 0.34505161577045923, 'cradle': 0.3611153470430891, 'pavement': 0.3611153470430891, 'penthouse': 0.3611153470430891, 'grave': 0.30619308705949644, 'curb': 0.3248137077895795, 'cell': 0.28128884652515324, 'propn': 0.08325560873695148, 'adj': 0.16248080710762988, 'cconj': 0.2065604586658745, 'adp': 0.07029870777431689}, {'doomsday': 0.6767470493224695, 'womb': 0.6767470493224695, 'propn': 0.18088603970871237, 'adv': 0.16726950775329144, 'adp': 0.15273511345179155}, {'ayy': 1.0}, {'culture': 0.42712101605572195, 'dip': 0.39312834595057145, 'attack': 0.35157596363304566, 'son': 0.29769885621699727, 'black': 0.26488795550245037, 'bag': 0.3481924803183355, 'gun': 0.3039148937857801, 'like': 0.17137505646781606, 'adj': 0.30168950491539503, 'cconj': 0.12784509469011673, 'adp': 0.17403805181393453}, {'life': 0.3611943348600578, 'rebel': 0.55757251812129, 'nas': 0.44562845996310785, 'death': 0.48115881058661547, 'propn': 0.14616634153056765, 'like': 0.24306062577831158, 'cconj': 0.18132223766124878, 'adp': 0.12341877124655345}, {'skeleton': 0.5169426225431348, 'jump': 0.44589357734641105, 'seat': 0.44589357734641105, 'mention': 0.49394712417980824, 'adp': 0.3019013065145022}, {'aw': 0.6607508176095589, 'man': 0.40978680447365806, 'intj': 0.6288744961497225}, {}, {'grass': 0.5711842462191443, '10': 0.5841751600038046, 'mac': 0.5422937389486634, 'propn': 0.14973462445935323, 'adp': 0.12643172956458507}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'ready': 0.5855103521504312, 'moment': 0.5205342833333679, 'snap': 0.5650430550182972, 'adj': 0.15996867303429155, 'cconj': 0.2033668041311872}, {'sir': 0.4907103993157422, 'yes': 0.7592118493391317, 'intj': 0.4275519521958011}, {'okay': 0.9646449356052971, 'adj': 0.263552932465287}, {'world': 0.8561010777967551, 'intj': 0.30750874237582576, 'yeah': 0.4153664863198186}, {'stop': 0.6920352758856521, 'ya': 0.6465613457729942, 'propn': 0.2356837069132003, 'adv': 0.2179421789781339}, {'obnoxious': 0.3776718739962125, 'tropical': 0.3776718739962125, 'flavor': 0.3776718739962125, 'major': 0.3776718739962125, 'receive': 0.3489516977118803, 'box': 0.3001147692459879, 'label': 0.2783163880653566, 'propn': 0.08707273736728785, 'adj': 0.33986055376058855, 'cconj': 0.10801545289703435, 'adp': 0.07352178444376771}, {}, {'estate': 0.39640296079499604, 'relate': 0.39640296079499604, 'fly': 0.31239185740861375, 'jet': 0.3262910221919672, 'break': 0.5263902198800215, 'wait': 0.29990111689870236, 'propn': 0.09564589266572784, 'adv': 0.08844597079234894, 'adj': 0.18666156037556872, 'cconj': 0.23730124322268167, 'adp': 0.08076071702947567}, {'writer': 0.48762289958111976, 'ghost': 0.401376856594213, 'dig': 0.4202151781260809, 'rappin': 0.5103239763570144, 'rapper': 0.3646052518808736, 'cconj': 0.14595440970267, 'adp': 0.0993453099623275}, {'shooter': 0.5832430474471899, 'respect': 0.5197860982359334, 'gon': 0.46840384720505324, 'everybody': 0.41261094945321675}, {'fun': 0.7213009997996787, 'bet': 0.6272080006953193, 'propn': 0.17998379985007681, 'adj': 0.1756272851138209, 'adp': 0.15197328734629803}, {'life': 0.4764345637209882, 'bitch': 0.453276487728799, 'cause': 0.5087697323955266, 'know': 0.3799809810809935, 'propn': 0.19280118882481911, 'adv': 0.35657544386410245}, {'history': 0.7194061783750455, 'kendrick': 0.6501347774173896, 'propn': 0.1795109914661462, 'adv': 0.16599796881617138}, {'adv': 1.0}, {'woulda': 0.7928213667759418, 'really': 0.5832171998332693, 'adv': 0.17689538773571212}, {'long': 0.4953839882769186, 'night': 0.5160189946656819, 'berserk': 0.6256773245935844, 'adv': 0.1573186689997406, 'adj': 0.16600726957162562, 'cconj': 0.21104362019736808}, {'herb': 0.6050215160818094, 'love': 0.3838063439355483, 'man': 0.364390802372073, 'num': 0.5784167736572939, 'adp': 0.1389065676324196}, {'bliss': 0.5756507416979267, 'fistfull': 0.6024499172383105, 'cash': 0.4171620948128357, 'like': 0.23097008729570986, 'adv': 0.12843998083339123, 'adj': 0.1355336315616703, 'cconj': 0.1723027451573732, 'adp': 0.11727956462493938}, {'jay': 0.4410037177972421, 'sound': 0.7201669909216825, 'propn': 0.2531011236756085, 'like': 0.42088292599785593, 'adp': 0.21371151085855772}, {'slow': 0.5550703056548172, 'knowin': 0.6379508774450149, 'adv': 0.46394472284660854, 'adj': 0.16318935563851628, 'cconj': 0.20746123034551034}, {'white': 0.5148117426308723, 'pull': 0.5182413460646698, 'bitch': 0.3811789957551629, 'talk': 0.4702110863832925, 'adj': 0.15821004296539234, 'adp': 0.2738037008892717}, {'shaolin': 0.3096199927456443, 'fucking': 0.2814217823321897, 'stack': 0.288838881853869, 'better': 0.2441457757610987, 'motherfucker': 0.27325821382443805, 'skill': 0.29466042713673785, 'check': 0.23985956054863916, 'shadowbox': 0.35431309883841466, 'special': 0.3144115736908212, 'technique': 0.3096199927456443, 'rap': 0.22446422959751747, 'propn': 0.08549026110601195, 'adv': 0.15810964644845635, 'adj': 0.16684193215419713, 'cconj': 0.10605235979546454, 'adp': 0.14437117148539252}, {'intj': 0.7147872851937589, 'like': 0.6993419313364072}, {'adj': 1.0}, {'buildin': 0.47128625721355544, 'woo': 0.7874172367619221, 'court': 0.3973202222538612}, {'good': 0.4483416419276791, 'rate': 0.6215149358060742, 'hard': 0.47064600509501825, 'propn': 0.16292869791982437, 'adv': 0.15066393815587031, 'adj': 0.3179700051518429, 'cconj': 0.20211627230115756}, {'leg': 0.5145967903492754, 'dumb': 0.5761157502888287, 'feel': 0.37146562833484276, 'burn': 0.47527273482263704, 'adv': 0.1365528058528032, 'adj': 0.14409452225918296}, {'die': 0.885516188934791, 'adv': 0.27767490119250265, 'cconj': 0.3725019844002676}, {'represent': 1.0}, {'meter': 0.600911523511951, 'read': 0.45249258586441227, 'bend': 0.5095185124098166, 'ya': 0.38006533815197463, 'adv': 0.1281120012701545, 'adp': 0.11698008388589927}, {'say': 0.5542565748550176, 'super': 0.7908888142365755, 'propn': 0.259411897848668}, {'raw': 0.2977290996636923, 'recitin': 0.366223180132799, 'bitin': 0.366223180132799, 'thong': 0.34993223376446514, 'aka': 0.366223180132799, 'supervillain': 0.366223180132799, 'invite': 0.3383736233693313, 'dope': 0.29423312023752973, 'propn': 0.168866452479519, 'adj': 0.08238951678007736, 'cconj': 0.1047410871370135, 'adp': 0.07129305506161357}, {'ave': 0.36482259999084216, 'range': 0.3188038238860756, 'chip': 0.3103981106963424, 'clip': 0.3103981106963424, 'flip': 0.2897692088186351, 'phone': 0.29470291582584696, 'big': 0.2552869159377288, 'cat': 0.2921634658974387, 'thing': 0.24075715282969795, 'money': 0.24453341056044775, 'num': 0.15475087509594754, 'propn': 0.17605208180471457, 'like': 0.14637887466068758, 'adj': 0.0858953672268108, 'adp': 0.22298018186893867}, {'sad': 0.5706187330034768, 'note': 0.5063576097222011, 'gun': 0.4060196644838096, 'end': 0.41975995297405533, 'adv': 0.1273172321709605, 'adj': 0.134348874272212, 'cconj': 0.1707965733609952, 'adp': 0.11625437392140045}, {'plotting': 0.3418864931443594, 'manhattan': 0.32667813161505144, 'admire': 0.3075178620645701, 'bus': 0.3158876273870523, 'tour': 0.29489731514997547, 'quick': 0.27468040010043715, 'plan': 0.2594720385711291, 'style': 0.25194519489482464, 'hoe': 0.2688984493926684, 'sick': 0.26388989587243805, 'flow': 0.25369008786336034, 'propn': 0.1576447433693747, 'adj': 0.23074341952018032, 'adp': 0.06655540638286277}, {}, {'clock': 0.8774402767541847, 'like': 0.42770664815081993, 'adp': 0.21717638881133164}, {'monster': 0.4215639199124337, 'voice': 0.36802345171265793, 'bed': 0.39266327714976335, 'inside': 0.3308573494836379, 'friend': 0.3183310726917232, 'head': 0.3091165733816922, 'adp': 0.475714029336882}, {'copy': 0.5024111516074756, 'half': 0.4037849989607135, 'shit': 0.28851813162707873, 'hate': 0.4174592076916185, 'flow': 0.414469352573966, 'adv': 0.35724931531212756, 'adj': 0.12565998209955367, 'adp': 0.10873572722581083}, {'clementine': 0.44118549287496767, 'darling': 0.44118549287496767, 'gone': 0.44118549287496767, 'forever': 0.3632845977540343, 'oh': 0.2719456192948779, 'intj': 0.17287940648945319, 'propn': 0.10171588406857313, 'lose': 0.2949892336354096, 'like': 0.16914377259781965, 'adv': 0.094059032340137, 'cconj': 0.12618056600362265, 'adp': 0.17177209604544755}, {'bob': 0.43349361642693446, 'track': 0.37116080162648407, 'god': 0.30064206955672307, 'feel': 0.28586333644846895, 'blood': 0.36574864357818637, 'real': 0.31883729332011285, 'propn': 0.45455738172659993, 'adv': 0.10508493304606746, 'adj': 0.1108887007436067, 'adp': 0.19190777071619863}, {'obama': 0.6542397533525998, 'page': 0.6369050028734667, 'just': 0.34188070822257116, 'propn': 0.16325023374996075, 'adv': 0.15096126978034816}, {'killin': 0.8279719436554857, 'love': 0.49512856499683533, 'cconj': 0.26326823705781954}, {}, {'understand': 0.9639067405445697, 'adv': 0.2662401087979488}, {'adv': 1.0}, {'destroy': 0.41511089821441144, 'enjoy': 0.4615042791456806, 'deep': 0.3085749550319604, 'foot': 0.3667317048958508, 'sleep': 0.32439102437798994, 'career': 0.4615042791456806, 'num': 0.18705323830829063, 'propn': 0.10640040643411625, 'adv': 0.09839091860071028, 'adj': 0.1038249805404527}, {'tempt': 0.9744377054874274, 'propn': 0.2246578690462405}, {'tuck': 0.9580058682877325, 'cconj': 0.28674859428821564}, {'contract': 0.385131387622312, 'tony': 0.3464155013739203, 'land': 0.3131009381968667, 'starks': 0.35584395028125865, 'city': 0.2666814482690765, 'job': 0.317128064032867, 'buy': 0.3094244603534685, 'park': 0.32655651294020527, 'man': 0.19667761659242802, 'propn': 0.17758507569813375, 'cconj': 0.11014889941024444, 'adp': 0.2249218076290802}, {'tubbies': 0.5726545232998785, 'tellie': 0.5726545232998785, 'sell': 0.39465494595414136, 'propn': 0.39607871548819484, 'adv': 0.12208771865047233, 'adj': 0.12883053836049912}, {'hall': 0.22373073516523914, 'pity': 0.21454881571368947, 'ii': 0.24873519847179532, 'bar': 0.1859004425747988, 'dough': 0.19375093759166045, 'city': 0.17223489202860195, 'tryna': 0.19198975958613476, 'slow': 0.190335387148489, 'cold': 0.17223489202860195, 'titty': 0.190335387148489, 'ole': 0.23767054719343683, 'gold': 0.18456901814011076, 'soul': 0.3412584122238262, 'roll': 0.19198975958613476, 'steal': 0.19984025460299643, 'fool': 0.18877560332463791, 'ya': 0.15732037682516048, 'hold': 0.31560675365605784, 'propn': 0.2293848825051987, 'like': 0.19072254426693094, 'adv': 0.053029377563462585, 'adj': 0.16787445951009983, 'adp': 0.19368618003896698}, {'connection': 0.6606689604399569, 'phone': 0.5099466246039633, 'pick': 0.5146245135766907, 'adj': 0.14863121548588493, 'adp': 0.12861312753896453}, {'leviathan': 0.40759897043568344, 'game': 0.2788282733433752, 'bloody': 0.38369254577408685, 'lab': 0.361696573312088, 'ok': 0.367945786407942, 'try': 0.2706287955571928, 'rap': 0.25822186417474746, 'everybody': 0.2788282733433752, 'intj': 0.1671540864198523, 'propn': 0.09834731632368948, 'like': 0.16354216708813515, 'adv': 0.1818880795534211, 'adp': 0.16608344724188742}, {'time': 0.446943480939925, 'hard': 0.5421861150474443, 'adj': 0.18315137059337, 'cconj': 0.232838769012205, 'killer': 0.646929226878577}, {'know': 0.5621077827311485, 'adv': 0.7912257801296495, 'adp': 0.24082484392458214}, {'badd': 0.3890958615395519, 'shaolin': 0.32489013076409234, 'destroy': 0.3499814408529203, 'dark': 0.30602926974629463, 'seek': 0.34219853764915886, 'walk': 0.2830207036385059, 'puff': 0.33561818675162114, 'boy': 0.27074019351824596, 'stick': 0.2929932039049532, 'propn': 0.08970655242087676, 'adv': 0.08295372539444329, 'adj': 0.08753520189996433, 'cconj': 0.11128275256467192, 'adp': 0.15149140844075623}, {'tie': 0.5706984038106991, 'really': 0.46506202651340256, 'nigga': 0.35588406919319415, 'just': 0.319452374520627, 'want': 0.3869472264915388, 'adv': 0.2821155738368589}, {'movement': 0.5006599690943396, 'eye': 0.38063285520096385, 'rapid': 0.5120468911549315, 'lucid': 0.5259833574281442, 'adj': 0.2561400278269754}, {'stop': 0.9538179706338747, 'adv': 0.30038521750558395}, {'behave': 0.22767580202075774, 'ice': 0.19638384109017423, 'trey': 0.22767580202075774, 'stand': 0.1626648893425391, 'deuce': 0.43509589942586235, 'cray': 0.22767580202075774, 'poor': 0.35814032642560956, 'close': 0.17734683462363723, 'cold': 0.31530493005811644, 'case': 0.17279274165036568, 'blow': 0.15046663945951536, 'game': 0.14881911777895312, 'say': 0.11215157898906661, 'shit': 0.11760319452417588, 'dope': 0.18292059395819227, 'bitch': 0.12340646564694518, 'heat': 0.1701610090540944, 'hard': 0.30325726605521747, 'propn': 0.05249094962903929, 'adv': 0.09707919218189752, 'adj': 0.20488161676936748, 'cconj': 0.0651160612220075, 'adp': 0.0443218899573124}, {'doom': 0.6312892745188176, 'propn': 0.2272486830026698, 'look': 0.6108952859414547, 'adv': 0.42028423425768113}, {'nod': 0.39156342720241144, 'aw': 0.3489612553947504, 'close': 0.33010949405225076, 'fuckin': 0.28689149649626894, 'eye': 0.2833585952549641, 'beat': 0.292062839446219, 'man': 0.21642003902571047, 'intj': 0.33212646555032205, 'adv': 0.45175267833475236, 'adp': 0.08249979031369677}, {'propn': 1.0}, {'slug': 0.5116516052664712, 'aight': 0.5116516052664712, 'thug': 0.44004429396893713, 'love': 0.2978615420376426, 'fake': 0.4027961060054069, 'propn': 0.12767069523101485, 'adj': 0.1245804211862105}, {'prop': 0.3494775319585482, 'fair': 0.3229014032702798, 'product': 0.2918093258763262, 'pay': 0.2593228675793247, 'stock': 0.2918093258763262, 'flock': 0.3073553645733029, 'shoot': 0.24694733255514387, 'friend': 0.2276269785084976, 'big': 0.23367066911799586, 'thing': 0.2203712038668754, 'hop': 0.2419931933764018, 'hip': 0.248292777588033, 'adv': 0.1490145030220029, 'adj': 0.1572444702878604, 'cconj': 0.19990354850845443, 'adp': 0.1360663239267534}, {'tell': 1.0}, {'feel': 0.4731726937774753, 'nah': 0.6416951235630372, 'just': 0.3939224410306582, 'adv': 0.3478817638007715, 'adj': 0.18354751571926436, 'cconj': 0.2333423849183519}, {'buck': 0.4138018281982098, 'smile': 0.40894290550800755, '50': 0.4702920343441222, 'cut': 0.34606375264541683, 'sure': 0.36576613918444517, 'face': 0.32495163857417164, 'num': 0.20630343041173185, 'propn': 0.11735038133038181, 'adv': 0.10851661383821301, 'adj': 0.11450991087694705}, {'mass': 0.5828844247254652, 'fly': 0.4389179942209423, 'flag': 0.5385587955639068, 'half': 0.42136820653946155}, {'mommy': 1.0}, {'hold': 0.8277932771797106, 'like': 0.5002391049046705, 'adp': 0.2540061577604939}, {'wham': 0.9048147473433668, 'adj': 0.21303338937128197, 'adp': 0.36868285558585867}, {'thousand': 0.3677148410980801, 'style': 0.32453040187797116, 'tang': 0.3430345133787771, 'wu': 0.31287875732689713, 'snatch': 0.36262439157062826, 'time': 0.24176855312887502, 'num': 0.5354784589976865, 'propn': 0.2030620664981125, 'adv': 0.0938880965087253, 'adj': 0.09907347071895495, 'adp': 0.08572996516007705}, {'cconj': 1.0}, {'fat': 0.3189405801430275, 'body': 0.5938619567917404, 'big': 0.27628283501687173, 'old': 0.26379754065893396, 'ass': 0.27854996523450565, 'want': 0.4833179365036207, 'num': 0.16747826787675746, 'adj': 0.18591956023337525, 'adp': 0.1608793686717452}, {'armed': 0.21286435282125638, 'heavily': 0.21286435282125638, 'hillside': 0.21286435282125638, 'edge': 0.20339536794082444, 'guillotine': 0.21286435282125638, 'bind': 0.19667701625052172, 'station': 0.19667701625052172, 'vehicle': 0.21286435282125638, 'scope': 0.19667701625052172, 'gas': 0.18360809039513606, 'rope': 0.18720803137008976, 'mark': 0.18720803137008976, 'combination': 0.21286435282125638, 'chase': 0.17305270543766776, 'double': 0.16915142621472673, 'fuckin': 0.14410172043306116, 'weight': 0.18720803137008976, 'spot': 0.16430234310905245, 'head': 0.13463273555262922, 'heavy': 0.17305270543766776, 'roll': 0.16430234310905245, 'regular': 0.18720803137008976, 'shit': 0.10995251875655478, 'rhyme': 0.13463273555262922, 'propn': 0.1472284527725951, 'adv': 0.09076370537755232, 'adj': 0.33521782574225334, 'adp': 0.2071926471289662}, {'steal': 0.4205051646804219, 'tell': 0.8370829334496478, 'lose': 0.3499536669395304}, {'clothe': 0.833245628759467, 'tell': 0.5529029952471237}, {'retarded': 0.7419963188379661, 'fool': 0.5631322129472577, 'adj': 0.3338549904978076, 'adp': 0.14444521069159938}, {'dollar': 0.5457968651667602, 'say': 0.37191204264025024, 'come': 0.397935711906614, 'nigga': 0.406108882661376, 'fuck': 0.3925551123401787, 'adp': 0.29395653233393026}, {'feel': 0.43786495375649204, 'wanna': 0.46792457030853796, 'right': 0.4406109652033536, 'tell': 0.4024987380871781, 'adv': 0.48288468805108464}, {'beware': 0.33446987824462987, 'fat': 0.2581652774015083, 'balloon': 0.31959143486938923, 'goon': 0.33446987824462987, 'wound': 0.29415656792168193, 'smuggle': 0.33446987824462987, 'dick': 0.2376303123793966, 'pussy': 0.2719145622576061, 'style': 0.24647969530989886, 'big': 0.22363612278945413, 'mad': 0.24328683402626758, 'propn': 0.2313373846787076, 'adj': 0.2257378544641039, 'adp': 0.06511160609085102}, {'listen': 0.7524002184477627, 'look': 0.6284349226764626, 'adp': 0.1973916392362838}, {}, {'fuckin': 0.5093139703445068, 'child': 0.5582656634634762, 'save': 0.5709893160711579, 'adv': 0.3207957754431802}, {'wee': 0.5573692358269489, 'lottery': 0.6032430424694678, 'ooh': 0.4334897863471661, 'hit': 0.37084224651265274}, {'ready': 0.4724543091684452, 'gettin': 0.45127409805631524, 'happen': 0.41230689751581445, 'hop': 0.39729943104924637, 'hip': 0.40764195840800127, 'adj': 0.25816072637974946, 'adp': 0.11169544136098254}, {'woulda': 0.7460641458673036, 'buy': 0.6273122632184783, 'cconj': 0.2233105789410821}, {'adj': 1.0}, {}, {'lip': 0.552067244721518, 'die': 0.44267164780500806, 'man': 0.33249764003469273, 'end': 0.4576522920430799, 'cconj': 0.18621462747446701, 'adp': 0.3802464740254817}, {'ice': 0.408498542385163, 'trauma': 0.45252206018216784, 'ball': 0.3623964455633787, 'candy': 0.45252206018216784, 'lie': 0.331181709904207, 'hand': 0.32198882444605376, 'propn': 0.10918656185174495, 'like': 0.18156679419055843, 'adp': 0.18438815885064777}, {'return': 1.0}, {'stan': 0.9721032252951693, 'propn': 0.23455344672532355}, {'tryna': 0.9639067405445697, 'adv': 0.2662401087979488}, {'pro': 0.6302766842513533, 'designer': 0.7102642008410819, 'adv': 0.15847511995484162, 'adj': 0.16722759050791666, 'cconj': 0.21259500375341397}, {'adv': 0.31252399716536944, 'kill': 0.9060318848451233, 'adp': 0.2853681391462145}, {'worship': 0.9345282778368075, 'adj': 0.22002926795282599, 'cconj': 0.27972132412012185}, {'tire': 0.5728070390661155, 'sky': 0.4785182349321494, 'new': 0.3791131101737324, 'blue': 0.4705072223429203, 'adj': 0.2789419263059589}, {'thing': 1.0}, {'admit': 1.0}, {'adv': 1.0}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'sin': 0.4375623889133834, 'sinner': 0.4713553932056747, 'forgive': 0.44433396585985613, 'lord': 0.4044835795776963, 'probably': 0.4009981515685351, 'propn': 0.12081688442227295, 'adv': 0.2234443389677079}, {'whassup': 0.9780202119011796, 'adv': 0.2085101079390913}, {'battle': 0.731009873123038, 'hope': 0.6535748685809273, 'adv': 0.1961235747075386}, {'set': 0.4429523267040391, 'champagne': 0.5406562826547131, 'bomb': 0.48292376592169856, 'bottle': 0.4727583467321665, 'adp': 0.23402607161711345}, {'drama': 0.44732697109504804, 'casualty': 0.47916697882986137, 'saga': 0.5186044144172566, 'life': 0.29545906352637247, 'witness': 0.42161073837564494, 'propn': 0.11956491622281289, 'cconj': 0.14832264342311877}, {'shit': 0.5180344258377484, 'nigga': 0.5394449635308328, 'want': 0.5865301387508045, 'adv': 0.21381376495008156, 'adj': 0.22562255034239398}, {'tang': 0.6450796717532209, 'wu': 0.5883714850934805, 'propn': 0.38186015136469154, 'adv': 0.17655746029994165, 'adj': 0.1863086059223037, 'adp': 0.16121601654645354}, {'africa': 0.48672922099951443, 'south': 0.4632957170631001, 'representative': 0.5267890605747435, 'mind': 0.3455758943064902, 'propn': 0.2429037938887921, 'adv': 0.22461876052244764, 'adp': 0.2051011707549056}, {'second': 0.6656178042433156, 'minute': 0.6152885694528443, 'man': 0.38649992572191233, 'adj': 0.17026662148505764}, {'people': 0.6558955765574671, 'let': 0.5863154425598223, 'know': 0.47543158757935644}, {'know': 0.8440384398470046, 'adv': 0.3960242700445308, 'adp': 0.36161290020729503}, {'heavily': 0.7397555324519767, 'guard': 0.6380828864605517, 'adv': 0.15771300433583152, 'adp': 0.1440089944282276}, {'girl': 0.4584579126602791, 'yo': 0.7687645034071094, 'fuck': 0.3579184136692206, 'propn': 0.1587094120679927, 'adv': 0.1467622668680096, 'adj': 0.15486784469897025}, {'whooping': 0.6822317347937132, 'cough': 0.6518835722381111, 'like': 0.2615572163467917, 'adj': 0.15348220978613544, 'adp': 0.1328107757018308}, {'ho': 1.0}, {'person': 0.4670747915110393, 'booth': 0.526350588265301, 'feel': 0.31947309016762737, 'turn': 0.3587909390419528, 'just': 0.26596551571427585, 'like': 0.2111892376985409, 'adv': 0.23488012633853245, 'adp': 0.3217063578330011}, {'stand': 0.6364627299155761, 'right': 0.5198863735840483, 'adv': 0.569766050225915}, {'orientate': 0.8186848897623594, 'money': 0.5243380387732952, 'cconj': 0.2341466898552438}, {'strange': 0.9214095739828448, 'adv': 0.19644093996156337, 'adj': 0.20729023632380558, 'cconj': 0.26352630230128965}, {}, {'nerd': 0.4514125832027991, 'mold': 0.47242790409460833, 'crooked': 0.47242790409460833, 'cold': 0.3271292907194241, 'eye': 0.3158788029694946, 'heart': 0.3338263552651463, 'propn': 0.10891886224659826, 'adj': 0.10628247703399141, 'adp': 0.09196804136495769}, {'mothafuckin': 0.5550922363440708, 'bullet': 0.4525156461813592, 'life': 0.3309696277374528, 'shit': 0.30007462876930646, 'propn': 0.13393515616146234, 'like': 0.2227213360437899, 'adv': 0.12385293899996293, 'adp': 0.45236440146395834}, {'yello': 0.5251410026517699, 'mello': 0.5251410026517699, 'hell': 0.3796253821191589, 'devil': 0.4090557438461704, 'tell': 0.27996101246906896, 'propn': 0.24214387013182945}, {'adv': 1.0}, {'propn': 0.907674906409101, 'adv': 0.4196739976162806}, {'dead': 0.5104023889880133, 'represent': 0.5358484833328195, 'president': 0.6209475574584135, 'adv': 0.150526397686031, 'adj': 0.15883986584168133, 'adp': 0.13744684692905743}, {'write': 0.2766799302715221, 'friend': 0.25503339473239645, 'lend': 0.33200300428729107, 'gentleman': 0.33200300428729107, 'pipe': 0.3269433328177897, 'pen': 0.5661113822068429, 'fiend': 0.294844827549421, 'propn': 0.09027346923434683, 'like': 0.15011613271233723, 'adp': 0.3048975716953724}, {'adv': 1.0}, {'savage': 0.7071067811865475, 'civilize': 0.7071067811865475}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'stew': 0.37736140981657856, 'seaweed': 0.37736140981657856, 'meat': 0.348664842878303, 'mystery': 0.37736140981657856, 'week': 0.3394266117540563, 'need': 0.22022665887869822, 'food': 0.5362067888759594}, {'sweatshirt': 0.42017934222746295, 'body': 0.31599712039526184, 'wet': 0.35749669561126496, 'cash': 0.30449521194687823, 'run': 0.2682162961006401, 'intj': 0.17231322740450503, 'num': 0.5346964873495096, 'adv': 0.1875019790753677, 'adj': 0.09892879142534952, 'cconj': 0.2515346507177861, 'adp': 0.08560477169799109}, {'rush': 0.5910139628335963, 'fed': 0.5910139628335963, 'come': 0.3611353968594062, 'propn': 0.3159413114739142, 'adp': 0.266772008109545}, {'adv': 0.5824916070192481, 'adj': 0.6146622129749468, 'adp': 0.5318777036997084}, {'graphic': 0.39180915012451467, 'automatic': 0.39180915012451467, 'peep': 0.33221865034849324, 'semi': 0.3445847963524014, 'plus': 0.288734520576731, 'clutch': 0.362013900236504, 'bottle': 0.3081633086974715, 'propn': 0.09033210460155754, 'hit': 0.24086375673987542, 'adj': 0.26443683769879806, 'cconj': 0.11205876241746823, 'adp': 0.07627390298817772}, {'slow': 0.5550703056548172, 'knowin': 0.6379508774450149, 'adv': 0.46394472284660854, 'adj': 0.16318935563851628, 'cconj': 0.20746123034551034}, {'develop': 0.4153268301554874, 'sort': 0.38227280707400196, 'killing': 0.4016081710746425, 'taste': 0.3385777653135312, 'blood': 0.32253245576387385, 'propn': 0.10021192914043991, 'adv': 0.2780048712214978, 'kill': 0.26865273254057626, 'cconj': 0.1243148801688729, 'killer': 0.3454017973825324, 'adp': 0.08461615053950887}, {'text': 0.3146866700544805, 'bible': 0.3293367741890362, 'school': 0.5084064377530865, 'cetera': 0.3293367741890362, 'et': 0.3293367741890362, 'lecture': 0.3146866700544805, 'book': 0.26774149367030975, 'write': 0.23271549802504818, 'lie': 0.23030583178806693, 'fuck': 0.17123366062165252, 'propn': 0.0759290178030025, 'adp': 0.0641123392778117}, {'old': 0.5538704532763884, 'kid': 0.5733631316887037, 'shit': 0.4481347902178666, 'num': 0.3516380930282283, 'propn': 0.20002025281303443}, {'wise': 0.4695430492188351, 'plus': 0.34601868578937567, 'child': 0.34841510208962656, 'gold': 0.34841510208962656, 'old': 0.299762427246375, 'thing': 0.29608131442324404, 'propn': 0.21650751047284583, 'like': 0.18001562613588762, 'adv': 0.10010475313628973, 'adj': 0.21126693792870177, 'cconj': 0.26858184899697135, 'adp': 0.1828128872105674}, {'freeze': 0.4806067850456445, 'heroin': 0.5571870609845192, 'nose': 0.49002987775688167, 'leave': 0.3545938449227395, 'like': 0.2136170002405814, 'adp': 0.21693639274271773}, {'fine': 0.7620582377742123, 'oh': 0.5222285403178005, 'intj': 0.3319875508055124, 'adj': 0.19060131171678407}, {'ease': 0.3346882110649174, 'lover': 0.31244862507532944, 'champion': 0.34612093030887947, 'trunk': 0.31857469830857305, 'cock': 0.2878475040864674, 'month': 0.3024611855522288, 'tree': 0.29448636910935183, 'knee': 0.31244862507532944, 'say': 0.17843426659055364, 'rock': 0.23431370308563063, 'funk': 0.2669401371090455, 'num': 0.14681797908262018, 'propn': 0.0835136177673647, 'adv': 0.15445395075417526}, {'fuck': 0.874264127472465, 'adv': 0.35848668380560456, 'adp': 0.3273370326572754}, {'ha': 0.9104540772250306, 'intj': 0.41361017064902783}, {'way': 0.5087328276998014, 'yo': 0.4760823324181402, 'say': 0.4199933208509868, 'everybody': 0.5573085644045183, 'adp': 0.1659798098016824}, {'singe': 0.4841752712476424, 'soprano': 0.50671584515224, 'stand': 0.3620273922315443, 'witness': 0.41194566741460054, 'know': 0.23024181065084762, 'look': 0.3140490171349825, 'adv': 0.21605969750207366, 'adp': 0.09864291123224649}, {'love': 0.89776945912724, 'just': 0.40293259844487084, 'adv': 0.1779194181893794}, {'shoe': 0.6339372574551965, 'blow': 0.5087962024032393, 'watch': 0.5383754189151441, 'adv': 0.16413447024519195, 'adp': 0.14987248585213706}, {'little': 0.4892201627900206, 'knock': 0.5394488123511941, 'ben': 0.6300439473095689, 'propn': 0.16516455849010225, 'adj': 0.16116674405586598, 'adp': 0.139460334362032}, {'imagine': 0.3135618581261813, 'ck': 0.3698058643456889, 'diamond': 0.552773184261776, 'need': 0.21581727177186902, 'love': 0.19891363722802505, 'like': 0.2835558287133171, 'look': 0.45839169759383985, 'adv': 0.15768234593298908, 'cconj': 0.10576574712492205, 'adp': 0.21597149999635087}, {'sir': 0.4907103993157422, 'yes': 0.7592118493391317, 'intj': 0.4275519521958011}, {'shut': 0.3705648429029489, 'brown': 0.3785328607942241, 'talkin': 0.3366160396771966, 'chain': 0.3994912713527378, 'motherfucker': 0.347201822015784, 'bitch': 0.25537530504913497, 'fuck': 0.2449665427483758, 'propn': 0.3258717167749916, 'like': 0.18063115072270308, 'adv': 0.10044703973737606, 'cconj': 0.1347501033352862, 'adp': 0.18343797642798837}, {'product': 0.7429211312543286, 'sell': 0.6131795445280792, 'propn': 0.20513055674761435, 'adp': 0.17320650564150197}, {'graze': 0.9614504788567761, 'cconj': 0.27497813859664516}, {'understand': 0.9639067405445697, 'adv': 0.2662401087979488}, {'line': 0.6948585887144911, 'long': 0.6529207455862504, 'adv': 0.20734748213244386, 'adj': 0.21879913922622365}, {'mu': 0.5356590169177573, 'fly': 0.40335677420551985, 'week': 0.48181112439737167, 'num': 0.217109045942071, 'propn': 0.37049063043784314, 'hit': 0.3292951252041904, 'adj': 0.12050763020173112, 'adp': 0.10427730919031272}, {'doom': 1.0}, {'fail': 0.46050481407850047, 'opportunity': 0.434105418727587, 'better': 0.33709002176098135, 'music': 0.36373961125633897, 'foot': 0.4068351765906303, 'lose': 0.3423187704960652, 'adv': 0.21830066072526905, 'adj': 0.1151786271238523, 'adp': 0.09966603187369914}, {'mountain': 0.6696412585697199, 'going': 0.534983451711396, 'make': 0.3951752333839401, 'adv': 0.1587205222677122, 'adp': 0.28985793407656635}, {'fuck': 1.0}, {'toe': 0.7007064841258793, 'big': 0.5208739947802212, 'adj': 0.17525638905621183, 'adp': 0.45495703397202336}, {'blood': 0.5633576048514366, 'dot': 0.625155948407654, 'good': 0.48166118725202917, 'propn': 0.17503712066555857, 'adj': 0.17080034048752865}, {'wrist': 0.5543056000679482, 'lace': 0.4628381761162429, 'neck': 0.44047573756530106, 'little': 0.37853348918843804, 'make': 0.2942288022606332, 'adv': 0.11817579953356713, 'adj': 0.12470256667403928, 'cconj': 0.1585333051179296}, {'committee': 0.255034581607865, 'gritty': 0.255034581607865, 'rub': 0.2253115187357547, 'pity': 0.24456795088789002, 'shitty': 0.255034581607865, 'york': 0.21350674764279895, 'city': 0.19633356853875406, 'witty': 0.24456795088789002, 'calm': 0.23675032129136817, 'midst': 0.255034581607865, 'titty': 0.21696663979016795, 'act': 0.21350674764279895, 'new': 0.34677820529093223, 'say': 0.13966873094005144, 'fool': 0.21518861490404412, 'propn': 0.32684980392655893, 'adj': 0.12757535678527174, 'adp': 0.16558970044833482}, {'big': 0.9477888029430834, 'adj': 0.3188987065130819}, {'guard': 0.7700778493148711, 'catch': 0.5835628100558966, 'adv': 0.1903377974319526, 'adp': 0.17379895161651987}, {'madam': 1.0}, {'chat': 1.0}, {'dna': 0.9581699680288964, 'propn': 0.28619977702210647}, {'wildin': 0.8225506880630521, 'street': 0.5456828461789306, 'adp': 0.16012681522175257}, {'ghost': 0.7382622317522692, 'going': 0.6745138079892499}, {'intj': 0.5615949710765401, 'yeah': 0.7585726768894637, 'propn': 0.33042182485164834}, {'abundance': 0.5061947013225687, 'large': 0.41681501641602775, 'amazing': 0.4226661832229814, 'watch': 0.3539829161862462, 'come': 0.26679567601961157, 'intj': 0.19835339317821202, 'adj': 0.3416370598672564, 'adp': 0.1970829192199179}, {'roam': 0.31560271335502005, 'sub': 0.30156355047324157, 'ancient': 0.30156355047324157, 'poem': 0.30156355047324157, 'film': 0.31560271335502005, 'speak': 0.2358760820783408, 'throne': 0.2565760901987019, 'act': 0.2376521039856506, 'deep': 0.21102099694886758, 'eye': 0.21102099694886758, 'mind': 0.2070367402736551, 'vision': 0.2775634430057189, 'memory': 0.2838762970133859, 'adj': 0.21300417170512626, 'adp': 0.12287743016515279}, {'child': 0.5706962424085504, 'lie': 0.5378338914294295, 'tell': 0.4100200404582646, 'num': 0.3117259496789006, 'adj': 0.3460505784564276}, {'waist': 0.6355393512543313, 'finger': 0.5388797720777385, 'fold': 0.5388797720777385, 'adp': 0.1237211198547486}, {'tongue': 0.6003789741208281, 'cheek': 0.6674781771755388, 'fuck': 0.3470451544449493, 'adv': 0.1423037531088591, 'cconj': 0.19090105080799794, 'adp': 0.12993868498587507}, {'different': 0.7305554425418761, 'day': 0.5309219509386136, 'know': 0.38484337299591226, 'adj': 0.19054187373149561}, {}, {'reverse': 0.6426794670411785, 'card': 0.574052680901313, 'play': 0.48793397972080776, 'adp': 0.13909368651199194}, {'hells': 0.43278388701399617, 'gza': 0.39068059343191586, 'angels': 0.4074003209598576, 'life': 0.25804418184477124, 'good': 0.28735053465410904, 'fuck': 0.23549510126579032, 'yes': 0.3151585451710303, 'know': 0.20580345937504244, 'intj': 0.1774822816007877, 'propn': 0.31327213945461296, 'adj': 0.1018964584591167, 'adp': 0.08817274463328158}, {'belly': 0.6006818942052757, 'son': 0.46378853777973966, 'god': 0.4247606239406004, 'know': 0.31642834041344, 'propn': 0.3211095462515894, 'adv': 0.14846871495135922, 'adp': 0.1355679605130621}, {'adv': 1.0}, {'classic': 0.8246238041671009, 'soul': 0.5656815195858699}, {'hash': 0.5339550059825688, 'piece': 0.516317940039001, 'blunt': 0.4666018434565961, 'ass': 0.3767043974412819, 'adj': 0.12571661219074148, 'cconj': 0.15982245249949897, 'adp': 0.2175694604205115}, {'work': 0.9616400546390563, 'adv': 0.27431442782652293}, {'difference': 0.8592934059228111, 'fuck': 0.46757606675470803, 'propn': 0.20733418515954333}, {'insure': 0.3797064523840826, 'dummy': 0.3574359748906304, 'link': 0.7594129047681653, 'toss': 0.3797064523840826, 'adv': 0.08472062299907257}, {'propn': 0.7998814052537108, 'cconj': 0.4961343519496097, 'adp': 0.33769874495604774}, {'struggle': 0.639643017255994, 'passion': 0.673719772920503, 'cconj': 0.21909325300713653, 'adp': 0.2982559715049219}, {'board': 0.7956853745676873, 'pass': 0.605710149080465}, {'rockin': 0.3516757430202674, 'channel': 0.3516757430202674, 'school': 0.2714458660035302, 'winter': 0.3360319198561803, 'pant': 0.3360319198561803, 'easy': 0.2895797411887608, 'fix': 0.3163230335276731, 'survive': 0.3360319198561803, 'tv': 0.3092886275172678, 'propn': 0.08107929586187995, 'adv': 0.07497590156564703, 'adj': 0.07911676841484437, 'adp': 0.20538327012959334}, {'lung': 0.7572962371510126, 'smoke': 0.6280512418943074, 'adp': 0.17903643973207115}, {'frontin': 0.21437318042514095, 'peep': 0.18176902874555492, 'type': 0.3204377133758961, 'start': 0.29688232153069316, 'cousin': 0.35799779696993084, 'brother': 0.29688232153069316, 'make': 0.22758119025158674, 'sleep': 0.4520482609132704, 'death': 0.3253936452903448, 'cause': 0.2608432246544401, 'adv': 0.13711058660884468, 'adj': 0.04822770295269434, 'adp': 0.2503935269783982}, {'lock': 0.33192269333084806, 'cold': 0.6396822270363366, 'deep': 0.30884127757670793, 'block': 0.3263889728581136, 'shit': 0.23859022237916266, 'world': 0.25194747985952154, 'propn': 0.1064922376943712, 'adj': 0.31174376706465784, 'cconj': 0.13210572714689453, 'adp': 0.1798381349072294}, {'motto': 0.3732825698567722, 'instead': 0.32197828767855036, 'use': 0.2537913837866738, 'switch': 0.31168623190405065, 'tomorrow': 0.3165097893120257, 'rich': 0.29076643893073734, 'sayin': 0.2966268341106016, 'run': 0.2276807403203164, 'niggas': 0.21107576648014226, 'year': 0.25606713059268965, 'fuck': 0.19408261054425763, 'propn': 0.17212155528029055, 'adv': 0.07958239306866322, 'adj': 0.16795534647355082, 'cconj': 0.10676009684018055, 'adp': 0.2180019418488693}, {'morning': 0.4745879794028795, 'butter': 0.44305224008307437, 'store': 0.45173901368704583, 'bread': 0.44305224008307437, 'food': 0.36493111030923475, 'adj': 0.11555591686872747, 'cconj': 0.14690524754809112, 'adp': 0.09999250712937237}, {'pain': 0.7625818002769108, 'cause': 0.6161190182040565, 'adp': 0.19714551299407063}, {'1000': 0.4141786799061448, 'banana': 0.35725360067123296, 'order': 0.34104642504789384, 'mr': 0.3031993470204298, 'pound': 0.3511859842931494, 'hey': 0.3196896364866517, 'love': 0.2227811823054818, 'intj': 0.3245934670070934, 'tell': 0.22080523513513906, 'num': 0.16787160339685972, 'propn': 0.09548942852694241, 'adp': 0.16125720617241002}, {'everybody': 1.0}, {'live': 0.5925814133814361, 'fact': 0.7304220822090758, 'propn': 0.21191842804420272, 'adv': 0.1959658755307349, 'adp': 0.17893799434151497}, {'happen': 0.5342992441461588, 'fuck': 0.3865867153808057, 'hop': 0.514851405562938, 'hip': 0.5282540543753599, 'adp': 0.1447436127149814}, {'thought': 0.39450127318209094, 'underground': 0.4555439110115102, 'black': 0.30011743964366977, 'straight': 0.35240167685104773, 'pharoahe': 0.4068998883508302, 'propn': 0.4670564660065948, 'adp': 0.19718470933076152}, {'use': 0.44608256644496824, 'son': 0.4369587424781326, 'gun': 0.44608256644496824, 'fuck': 0.3411339964428994, 'man': 0.33505963469543204, 'want': 0.3837161193663182, 'cconj': 0.18764946737676336}, {'maximillion': 0.6252935925099414, 'blaze': 0.28121752772803876, 'allegiance': 0.28887147243177147, 'pledge': 0.2987391233758968, 'johnny': 0.2650961486085722, 'propn': 0.432486731261953, 'hop': 0.2164900163985807, 'hip': 0.22212570007319962, 'adp': 0.06086328356430122}, {'thing': 1.0}, {'whip': 0.5379292896417757, 'slave': 0.5503359976906149, 'mic': 0.43641465191074497, 'nigga': 0.3641189078370905, 'like': 0.25952981429718547, 'adp': 0.1317813227866007}, {'adv': 1.0}, {'clap': 0.7705752728815926, 'fuck': 0.4928202310043207, 'adv': 0.4041558718320286}, {'deep': 0.5930445758718292, 'poetry': 0.7800526806094902, 'adj': 0.19953933572844992}, {'neighborhood': 0.5582697253059271, 'clip': 0.4749866592647376, 'rough': 0.5039585671324652, 'adv': 0.37368571404941936, 'adj': 0.2628827439307056}, {'man': 0.46511099129144173, 'adv': 0.388346914610581, 'adj': 0.4097950443578575, 'young': 0.6584001079558118, 'adp': 0.17730132305161023}, {'humor': 0.6097827364530319, 'attempt': 0.6097827364530319, 'bear': 0.48971793313950696, 'adp': 0.1284771365234836}, {'chicken': 0.5863657647606457, 'finger': 0.55275112888516, 'bang': 0.49088655575196377, 'propn': 0.3005922318973128, 'adv': 0.13898229721015062}, {'store': 0.34810494294940936, 'score': 0.3782045697240691, 'tour': 0.3414110140696695, 'string': 0.3414110140696695, 'job': 0.32592255361924133, 'come': 0.20861707135832433, 'corner': 0.3113113872950099, 'night': 0.27679188953656636, 'like': 0.151748162830725, 'adj': 0.08904607445953829, 'adp': 0.38526544016577524}, {'latin': 0.5245767864079866, 'white': 0.40189395216930346, 'black': 0.32532717246938114, 'music': 0.3900459524894779, 'like': 0.21047752981709045, 'adv': 0.11704429007274643, 'adj': 0.3705256942001842, 'cconj': 0.31403076135133084, 'adp': 0.10687406905932952}, {'vengeful': 0.6983260903544368, 'angry': 0.6983260903544368, 'adj': 0.1571029696109339}, {'cooper': 0.8134688681590361, 'propn': 0.37509259222404784, 'like': 0.31187152676910834, 'adp': 0.3167176954093443}, {'common': 0.8154022294383151, 'adv': 0.23086082450153148, 'adj': 0.4872222142512111, 'adp': 0.21080084885418518}, {'man': 0.9228109945908285, 'adv': 0.38525299254163636}, {'fat': 0.6605732802553658, 'lip': 0.7256540442590209, 'adj': 0.1925335021838873}, {'rubber': 0.49189107500501883, 'imagine': 0.4170790524026924, 'raw': 0.3998935480838339, 'undercover': 0.4544850637038556, 'law': 0.41072283587839103, 'adj': 0.11066112189676416, 'adp': 0.19151391499540077}, {'mathematic': 0.6240854723418948, 'simple': 0.604136541823293, 'check': 0.46801863196267446, 'adj': 0.16277260881786373}, {'fold': 0.9698136145340475, 'adv': 0.2438473970835162}, {'vengeful': 0.6983260903544368, 'angry': 0.6983260903544368, 'adj': 0.1571029696109339}, {'adp': 1.0}, {'darken': 0.7696149422000909, 'talkin': 0.5498578605992068, 'adv': 0.1640789144405666, 'adj': 0.17314087866202166, 'cconj': 0.22011251634507845}, {'afford': 0.443225149847712, 'forget': 0.3925630544187332, 'moment': 0.36892949716838835, 'stop': 0.34116862489726, 'soon': 0.4004751595446496, 'know': 0.2289931887788137, 'num': 0.2042642467362619, 'adv': 0.32233197974160127, 'adp': 0.1962159238553957}, {'staten': 0.6595476285639724, 'kid': 0.4956190282701073, 'fuck': 0.38991822896925715, 'know': 0.3407566440403072, 'propn': 0.17289888005453427, 'adp': 0.14599097920072968}, {'project': 0.288923537075798, 'complex': 0.3460214451980118, 'industry': 0.31970813571300116, 'loud': 0.2695315333166978, 'poor': 0.27215064629964203, 'better': 0.2278259245130856, 'prison': 0.29846395578465273, 'set': 0.2549923503745772, 'hear': 0.22459315688628292, 'class': 0.31970813571300116, 'propn': 0.15955138042118552, 'like': 0.1326593317000297, 'adv': 0.2950817089852447, 'adj': 0.233534149764118, 'adp': 0.06736036188658395}, {'super': 0.9501925120844457, 'propn': 0.31166358462074223}, {'talkin': 0.8659259335954643, 'adj': 0.2726653336110667, 'cconj': 0.34663710364066025, 'adp': 0.23594196691814562}, {'sorry': 0.5016167637200716, 'oh': 0.37029937447830263, 'yo': 0.3354442354615752, 'intj': 0.7062125462717149}, {'alive': 0.49739950193007854, 'compromise': 0.5205557242717819, 'tryin': 0.39198383879482385, 'feeling': 0.4054840660510706, 'love': 0.2799999742512903, 'adv': 0.22196091437666163, 'adj': 0.11710983058009389, 'cconj': 0.14888072474235703}, {'talkin': 0.9271644542808751, 'adv': 0.276668113829463, 'adp': 0.2526278478475686}, {'father': 0.44694034206889854, 'dupe': 0.5682549175712813, 'child': 0.42166228516835275, 'super': 0.39942597100077937, 'propn': 0.13101190372426355, 'like': 0.21786024723734318, 'cconj': 0.162522857826168, 'adp': 0.22124557551355134}, {'troop': 0.5432609468808429, 'wisdom': 0.5771094723245489, 'try': 0.3831767318570408, 'let': 0.33844109395583816, 'intj': 0.2366694069603269, 'propn': 0.13924757407368343, 'adv': 0.1287654548059806, 'adj': 0.13587708123518796}, {'chillin': 0.48077056551836683, 'conscience': 0.48077056551836683, 'monster': 0.41469303940778063, 'alien': 0.45938413253645366, 'killer': 0.38204154787617245, 'adp': 0.09359211611639408}, {'common': 0.8154022294383151, 'adv': 0.23086082450153148, 'adj': 0.4872222142512111, 'adp': 0.21080084885418518}, {'killin': 1.0}, {'tang': 0.6450796717532209, 'wu': 0.5883714850934805, 'propn': 0.38186015136469154, 'adv': 0.17655746029994165, 'adj': 0.1863086059223037, 'adp': 0.16121601654645354}, {'fold': 0.9217490674756784, 'adv': 0.2317621731636472, 'cconj': 0.3109098771319128}, {}, {'cheese': 0.643933008963367, 'chop': 0.5926852325236963, 'drop': 0.4581859114109442, 'propn': 0.15537105811649335}, {'num': 0.973434867454046, 'cconj': 0.22896409942330287}, {'rook': 0.9780202119011796, 'adv': 0.2085101079390913}, {'pow': 0.9167804120468985, 'intj': 0.3993916324700843}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'mean': 1.0}, {'pick': 1.0}, {}, {'date': 1.0}, {'prepare': 0.42008928852114646, 'plus': 0.35200125079380323, 'cold': 0.33075312862550565, 'war': 0.36551260923980033, 'mic': 0.30794058230478283, 'fight': 0.4050135059227242, 'tell': 0.254648836821244, 'propn': 0.11012543198185021, 'adj': 0.10745984170280781, 'cconj': 0.2732255530413587, 'adp': 0.18597367021536165}, {'sea': 0.7007703504539505, 'seven': 0.6325960475649296, 'num': 0.29725358291061155, 'adp': 0.1427706691750129}, {'rule': 0.6288616225486019, 'cash': 0.5909011648720072, 'world': 0.4654688001112811, 'propn': 0.19674264703263714}, {'hater': 0.5115892994057752, 'forever': 0.42125708086817365, 'fall': 0.361498526511844, 'wait': 0.3698288312934799, 'say': 0.25200547099439663, 'day': 0.3206917799698372, 'know': 0.2324562133425987, 'adv': 0.10906885025639994, 'cconj': 0.1463162964397648, 'adp': 0.19918326348562962}, {'stuck': 0.7564962688238946, 'yo': 0.44207592998937706, 'shit': 0.4089506611149713, 'propn': 0.18253082869220386, 'adj': 0.17811266302573292}, {}, {'pure': 0.7131526215991759, 'cut': 0.5718369440646943, 'adv': 0.35862645748440286, 'adj': 0.18921657353720864}, {'nuttin': 0.5460390785526259, 'mommy': 0.528002863650069, 'pack': 0.4270992243874953, 'shit': 0.2951806259611427, 'know': 0.259660155315479, 'adv': 0.2436659721021757, 'cconj': 0.16343943537762465}, {'grind': 1.0}, {'yes': 0.8386868034666723, 'intj': 0.4723084609587767, 'adj': 0.27116261430663136}, {'turn': 0.688162368410701, 'intj': 0.41400776405951556, 'yeah': 0.5592197117321507, 'adp': 0.20567800079742463}, {'treble': 0.5902163280632373, 'say': 0.2907366200092972, 'come': 0.31108023025926435, 'time': 0.3240259407050564, 'num': 0.47844356143795147, 'adj': 0.13278143138620688, 'adp': 0.3446941165189278}, {'walkin': 0.7587945491699224, 'bitch': 0.5119169549964909, 'adv': 0.4027056783025721}, {'barely': 0.5078001281239857, 'lookin': 0.42846270309769924, 'straight': 0.3928262727927186, 'say': 0.27809483333253726, 'boy': 0.3928262727927186, 'face': 0.36041776042252, 'adv': 0.12036041762958166, 'adj': 0.12700783970668064, 'adp': 0.10990205141796043}, {'food': 0.9533464367514751, 'adj': 0.3018784052118761}, {'high': 0.9059975657251548, 'adv': 0.29115796955802764, 'adj': 0.3072384215278758}, {'ese': 0.7961358855020231, 'propn': 0.36710030923661524, 'cconj': 0.45539519440595094, 'adp': 0.1549846175794782}, {'bitch': 0.9202149123408855, 'propn': 0.3914134835509076}, {'homie': 0.3477480388897723, 'blow': 0.27523783215930353, 'hoe': 0.32756020672852343, 'grow': 0.6180681057342334, 'hard': 0.2773633836557276, 'propn': 0.09601792952760949, 'adv': 0.2663700056693744, 'adj': 0.18738762376648466, 'hot': 0.3090340528671167, 'adp': 0.16214970910327478}, {'yeahhh': 1.0}, {'cable': 0.36508844148310704, 'spin': 0.348847972439768, 'table': 0.32108470723333615, 'machine': 0.32108470723333615, 'bite': 0.3095619110702434, 'scream': 0.2817986458638116, 'slide': 0.3095619110702434, 'throw': 0.2566204017447134, 'broken': 0.32108470723333615, 'propn': 0.08417161078139966, 'cconj': 0.10441654798648232, 'adp': 0.2842886171386041}, {'spiritual': 0.37756164516373225, 'proceed': 0.3951388670330451, 'miracle': 0.37756164516373225, 'lyrical': 0.34751318590755215, 'negro': 0.35541696453422245, 'crowd': 0.3139948141887121, 'old': 0.2522618236565663, 'propn': 0.09109977512681035, 'like': 0.15149020026580667, 'adv': 0.16848414135701995, 'adj': 0.2666841047915757, 'cconj': 0.11301107288763429, 'adp': 0.07692210251179435}, {'beg': 0.6271230058514721, 'regular': 0.5969302646060247, 'adj': 0.30539237012204656, 'adp': 0.39639184527489285}, {}, {'tippin': 0.36375998266448306, 'chippin': 0.36375998266448306, 'chippendales': 0.36375998266448306, 'jerk': 0.33609774052618085, 'shut': 0.28610225104237114, 'nail': 0.3475786083277077, 'scale': 0.3271924876142843, 'doom': 0.23297510223972406, 'work': 0.27186800333767996, 'propn': 0.08386533288838807, 'adp': 0.2124406253905607}, {'daycare': 0.20392368119573442, 'help': 0.17934496969744862, 'necklace': 0.20392368119573442, 'wear': 0.17290880041829962, 'checklist': 0.20392368119573442, 'wreck': 0.17589623248067116, 'mark': 0.17934496969744862, 'sorta': 0.20392368119573442, 'thought': 0.1588452485678121, 'reckless': 0.20392368119573442, 'endangerment': 0.20392368119573442, 'database': 0.20392368119573442, 'script': 0.17589623248067116, 'rip': 0.17027369858788025, 'afford': 0.17934496969744862, 'rapper': 0.14569498708959444, 'breakfast': 0.19485241008616605, 'gold': 0.15131752098238535, 'straight': 0.1418939196408648, 'shit': 0.10533432246594866, 'place': 0.13804919850541547, 'line': 0.14569498708959444, 'ya': 0.1289779273958471, 'food': 0.14488135170323632, 'face': 0.13018754670087704, 'rhyme': 0.1289779273958471, 'propn': 0.09402973511289214, 'like': 0.0781812215417898, 'adv': 0.13042720874286712, 'adj': 0.13763061268518315, 'adp': 0.43667843333239653}, {'eye': 0.5109755137254647, 'mind': 0.5013278595542349, 'grow': 0.5670700391378354, 'adj': 0.343851773477205, 'cconj': 0.21856790751746136}, {'bro': 0.8925763405745014, 'know': 0.4508963032079901}, {'hologram': 0.3656038292021399, 'everyday': 0.3378013711747316, 'blare': 0.3656038292021399, 'stare': 0.3378013711747316, 'jeep': 0.32153797580082377, 'people': 0.2291802093726494, 'real': 0.23649321240060775, 'rhyme': 0.46247521486448767, 'adv': 0.07794531540579847, 'adj': 0.16450036182847574, 'adp': 0.21351745607631903}, {'blade': 0.41408111922276586, 'couple': 0.4008449907715744, 'chain': 0.4070483408935045, 'tree': 0.39027614631765356, 'chopper': 0.41408111922276586, 'cconj': 0.4118974050080754, 'adp': 0.09345401178483438}, {'great': 0.670555250447686, 'just': 0.41945182371869294, 'rhyme': 0.5494668304701514, 'adv': 0.18521366780085594, 'adj': 0.19544288973749777}, {'prisoner': 0.979870763158491, 'adp': 0.19963288182861175}, {'adj': 1.0}, {'avenger': 0.6460543753963737, 'sword': 0.5477955595925044, 'mask': 0.5133833709692345, 'adv': 0.13773628183671038}, {'stealin': 0.5387119771488912, 'mouth': 0.4158124126156387, 'really': 0.3786602595224424, 'daughter': 0.4280843553462781, 'food': 0.3827378898340862, 'adv': 0.2297025994688671, 'adp': 0.10487163219788483}, {'motherfucker': 0.46283127948401453, 'just': 0.6064805804500382, 'burn': 0.4660367029711629, 'adv': 0.26779831771688084, 'cconj': 0.3592525083836598}, {'strength': 0.4956328632674, 'team': 0.46009932802579195, 'loyalty': 0.46721967950409, 'hood': 0.40080514374262843, 'stay': 0.36992414322277495, 'adj': 0.12396463837807317, 'adp': 0.10726871736815506}, {'committee': 0.34858073728721284, 'gritty': 0.34858073728721284, 'brick': 0.3702994785716659, 'rub': 0.30795531658906977, 'pity': 0.33427496812336005, 'city': 0.2683483143501581, 'titty': 0.2965495533506641, 'act': 0.29182057993827204, 'say': 0.19089893182372666, 'fool': 0.294119352623325, 'propn': 0.1786950536928867, 'adj': 0.08718486655324595, 'adp': 0.07544255306547702}, {'stay': 0.914249821825802, 'adj': 0.3063726729552799, 'adp': 0.2651095029562812}, {'sufficient': 0.3730313702162298, 'flesh': 0.35115239849322927, 'prepare': 0.34334345548019096, 'def': 0.33102185758934194, 'mos': 0.3259771386350013, 'plan': 0.2962892238989625, 'god': 0.23811997019734565, 'right': 0.22783457984561206, 'propn': 0.27002006991897287, 'adv': 0.24969380860783205, 'adj': 0.08782807461118854, 'cconj': 0.11165507913442557, 'adp': 0.2279973959281094}, {'child': 0.9672667628842022, 'adp': 0.2537617177974575}, {}, {'meaning': 0.43998417139916984, 'chick': 0.3730667023740514, 'lead': 0.32883666120252186, 'friend': 0.28657712833750093, 'way': 0.2625263794330894, 'check': 0.2846066200309924, 'just': 0.21243466720124565, 'll': 0.3180653545435516, 'end': 0.30926455619108995, 'propn': 0.10143891785382958, 'adv': 0.09380291527063266, 'adp': 0.2569565564890643}, {'ayy': 1.0}, {'kingpin': 0.29809122784098163, 'cheerleader': 0.31196873821888194, 'tweeter': 0.29809122784098163, 'red': 0.2568838717636596, 'spare': 0.2882449775320143, 'mc': 0.21707369547141134, 'dance': 0.25064370646724626, 'sound': 0.20465283692116645, 'bring': 0.2149987479565948, 'doom': 0.19980468480827807, 'head': 0.1973144120968852, 'hope': 0.22164396119801968, 'rap': 0.1888465823771839, 'propn': 0.35962397361378967, 'like': 0.23920808896532628, 'adj': 0.07018385232475942, 'cconj': 0.08922413043860083, 'adp': 0.12146257057390965}, {'purple': 0.31598228715384696, 'trife': 0.3055450773270067, 'stress': 0.29744934843182824, 'prisoner': 0.31598228715384696, 'release': 0.28524201377036634, 'turn': 0.21539176369535862, 'life': 0.18840209446942072, 'set': 0.243696198844736, 'free': 0.4810787891199614, 'work': 0.24715408670258415, 'propn': 0.07624163013509345, 'adj': 0.29758479428553575, 'cconj': 0.09457925014936067}, {'shitty': 1.0}, {'straight': 0.5820954256057859, 'gate': 0.7729452548861477, 'propn': 0.1928704162189309, 'adp': 0.16285438583392137}, {'project': 0.4374951293587401, 'dip': 0.4608025277440554, 'flashin': 0.5006467884557787, 'quick': 0.42095826703233225, 'cash': 0.3628082931284156, 'adv': 0.11170499619941805, 'adj': 0.11787438537637758, 'adp': 0.10199871749974906}, {'adj': 1.0}, {}, {'rapper': 0.8692260095298607, 'adv': 0.2593791418963137, 'cconj': 0.34795815053313944, 'adp': 0.23684115052811988}, {}, {'broker': 0.3244898675894682, 'brag': 0.33332156283804176, 'matter': 0.26079067000834044, 'better': 0.23752693388413917, 'dime': 0.27165247879440235, 'sell': 0.248620875516053, 'cash': 0.24980241211548457, 'make': 0.19149112680015845, 'song': 0.2563052864708901, 'time': 0.19805294165306978, 'rhyme': 0.4563420238834757, 'propn': 0.08317260265578193, 'like': 0.13830807173139423, 'adv': 0.15382326162036772, 'adj': 0.08115940663800424, 'cconj': 0.10317725864748702, 'adp': 0.21068585928192732}, {'domino': 0.5175080916964303, 'damn': 0.3896889399772311, 'trippin': 0.5175080916964303, 'shit': 0.2673125744389012, 'propn': 0.11931215760637101, 'adv': 0.44132285507358726, 'cconj': 0.14800909136016438, 'adp': 0.10074384931823675}, {'ayy': 1.0}, {'christ': 0.36607413984223636, 'tenth': 0.3831165657852488, 'ice': 0.33046069062413563, 'jesus': 0.3446032223977132, 'mic': 0.24698909989361523, 'hear': 0.2486705958814217, 'thing': 0.24158308074995874, 'man': 0.19564869407531396, 'rhyme': 0.24231408689884762, 'num': 0.15528175472682995, 'propn': 0.17665603615487008, 'adv': 0.08167896277915343, 'cconj': 0.10957265344589867, 'adp': 0.3729085418574497}, {'better': 0.5439379694468353, 'moment': 0.6047693490846082, 'let': 0.4629267288049765, 'adv': 0.35225610507095084}, {'station': 0.24737265413608425, 'radio': 0.24737265413608425, 'lyric': 0.2558227339712028, 'derail': 0.2677324525875523, 'fail': 0.24081826300831244, 'mark': 0.23546293551973474, 'speaker': 0.2558227339712028, 'attack': 0.2105752721927227, 'plan': 0.20319341845191727, 'style': 0.19729912207546108, 'clock': 0.2105752721927227, 'old': 0.17092390138409977, 'weak': 0.21765892052692912, 'niggas': 0.15139156554566538, 'stop': 0.18124550457739508, 'num': 0.10851518505836862, 'propn': 0.18517818615020487, 'like': 0.3079335867262482, 'adv': 0.11415903660990759, 'adj': 0.18069594109554718, 'cconj': 0.07657240083959298, 'adp': 0.26059880312851524}, {'talent': 0.346803546375567, 'chapstick': 0.3684115576468716, 'slapstick': 0.3684115576468716, 'classical': 0.3562425567689164, 'sound': 0.25293085936496856, 'rapper': 0.27546858215036857, 'need': 0.22501295909265745, 'lot': 0.27101181431421223, 'trick': 0.3269223124558131, 'propn': 0.08889200077829262, 'like': 0.14781888299051044, 'adj': 0.1734807330218784, 'adp': 0.2251737587769522}, {'walkin': 0.7587945491699224, 'bitch': 0.5119169549964909, 'adv': 0.4027056783025721}, {'scent': 0.4345027011650354, 'minute': 0.38231141284351466, 'city': 0.32563096697844907, 'break': 0.2983464359848894, 'limit': 0.4229901083141607, 'sweet': 0.38231141284351466, 'adv': 0.20051694857959446, 'adj': 0.10579568003015402, 'cconj': 0.1344971420373411, 'adp': 0.27464042282723317}, {'record': 0.34158979851356036, 'better': 0.28595563783782524, 'naked': 0.41498906895598603, 'pose': 0.3819619267925481, 'deal': 0.33522728213727027, 'real': 0.2809354100613332, 'check': 0.2809354100613332, 'leave': 0.2763940616344705, 'adv': 0.18518585733272125, 'adj': 0.19541354331656818, 'adp': 0.2536420114097923}, {'job': 0.943678445720078, 'adv': 0.2443304285219709, 'adp': 0.2231000510569372}, {'gasp': 0.3031578909994801, 'crash': 0.2614916058837306, 'grae': 0.2896723193280778, 'pour': 0.26661858228548624, 'gas': 0.2614916058837306, 'door': 0.23614319959673905, 'rack': 0.2896723193280778, 'jaw': 0.2614916058837306, 'bar': 0.22657503422554984, 'floor': 0.23843786884113907, 'wall': 0.24645880118918062, 'black': 0.17964629589300574, 'make': 0.1609180624437179, 'catch': 0.19815759727578497, 'propn': 0.13978688507835946, 'adv': 0.12926416817503528, 'adj': 0.13640333819643755, 'adp': 0.29508034154953416}, {'god': 0.9354068101329623, 'propn': 0.35357332981557915}, {'ecstasy': 0.697893652193333, 'lyrically': 0.697893652193333, 'propn': 0.16090028109516258}, {'visit': 0.5449717847751512, 'cousin': 0.4762289641614823, 'say': 0.2809470107517635, 'sleep': 0.4008934819670749, 'adv': 0.48637940001467056}, {'noodle': 0.9744377054874274, 'propn': 0.2246578690462405}, {'famous': 0.44033069409688097, 'change': 0.36169033838974923, 'feel': 0.5527841380112706, 'people': 0.29874088525865616, 'new': 0.29143346285721644, 'just': 0.23010000352094898, 'want': 0.2787162196297134, 'adv': 0.1016032430977974, 'adj': 0.21442943896652567, 'adp': 0.09277472666745909}, {'better': 0.553092979813315, 'talk': 0.5616722436060392, 'ya': 0.5313072620363675, 'propn': 0.19367143712701732, 'adv': 0.1790924606800842, 'adp': 0.16353074548815918}, {'sit': 1.0}, {'hostility': 0.31170428987329624, 'usually': 0.29783854312492253, 'household': 0.31170428987329624, 'broken': 0.2741348924955578, 'responsibility': 0.31170428987329624, 'claim': 0.2741348924955578, 'terrorist': 0.28800063924393154, 'fist': 0.28800063924393154, 'metal': 0.2741348924955578, 'rest': 0.29783854312492253, 'say': 0.1535434507166848, 'let': 0.17466495906122387, 'know': 0.14163235820364428, 'propn': 0.215591477447431, 'adv': 0.0664541431104144, 'adp': 0.12135960969384763}, {'say': 0.9177329289257302, 'adv': 0.39719802512776975}, {'blowin': 0.5883305634801794, 'chill': 0.5070012764827369, 'try': 0.39062707055892654, 'smoke': 0.42047321208792066, 'adv': 0.13126912001226151, 'adj': 0.13851902212789194, 'cconj': 0.1760980466187146}, {'tuck': 0.47670846874957384, 'dollar': 0.36065674667602543, 'tax': 0.49890142883840366, 'cloud': 0.42302319711766995, 'dream': 0.3506774538778344, 'num': 0.20221075313453038, 'propn': 0.1150223675005426, 'adp': 0.19424334103371796}, {'loss': 0.31389212589638715, 'leg': 0.2639295575229863, 'kunta': 0.566710386862625, 'talkin': 0.23470332858483003, 'cut': 0.223347689568026, 'black': 0.1946667111930745, 'wanna': 0.20359881943196326, 'game': 0.21472576190812875, 'king': 0.22639516952561267, 'world': 0.179185111933055, 'run': 0.20036916364514704, 'man': 0.16775996397510792, 'everybody': 0.21472576190812875, 'propn': 0.2272119198244038, 'adv': 0.07003604045565602, 'adj': 0.14780816442923936, 'adp': 0.06395046370606897}, {'adj': 1.0}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'luther': 0.43813178404319936, 'cuter': 0.43813178404319936, 'feel': 0.25409846963641525, 'lie': 0.30638638884262775, 'need': 0.25569201417626813, 'make': 0.23256303027705783, 'super': 0.3079625144569148, 'll': 0.31672626036828816, 'propn': 0.30303554268357313, 'like': 0.1679730273204654, 'cconj': 0.12530719479122882, 'adp': 0.08529157928427186}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'duck': 0.6142303147772485, 'spade': 0.6142303147772485, 'crazy': 0.4723081082653567, 'adj': 0.14955698473854223}, {'steelo': 0.8053485290215991, 'know': 0.4160849802912757, 'propn': 0.42224049542737524}, {'weird': 0.5995702621967679, 'fuckin': 0.47869277875798455, 'beard': 0.5995702621967679, 'propn': 0.16302649951749573, 'adj': 0.15908043688219303}, {'blast': 0.9633108367125767, 'adv': 0.2683882111273065}, {'intj': 0.8784052002904056, 'adv': 0.47791662882010344}, {}, {'faint': 0.7686088571631704, 'make': 0.4079822816553036, 'just': 0.3711023654786322, 'adv': 0.16386442102101198, 'adj': 0.17291453892022407, 'cconj': 0.21982477256959942}, {'grave': 0.49908628240819075, 'engrave': 0.5176637278054715, 'unmarked': 0.5176637278054715, 'say': 0.28994439326764193, 'adj': 0.1324196159371037, 'cconj': 0.336687847521686}, {'vein': 0.771838461062993, 'time': 0.47109291525830554, 'num': 0.3477983454873025, 'adv': 0.18294363150186732, 'adp': 0.167047280093228}, {'shit': 0.5849951610355142, 'propn': 0.26110644064889266, 'adv': 0.7243535079139223, 'adj': 0.25478634929975036}, {'say': 0.7350421320450821, 'know': 0.6780214333770135}, {'better': 0.5037859634181118, 'break': 0.4854281787203928, 'north': 0.6729262578391749, 'propn': 0.17640605666797116, 'adv': 0.16312676374068213}, {'accident': 0.4463808046474101, 'curl': 0.4463808046474101, 'bend': 0.3961109304586364, 'doom': 0.2992002704105727, 'girl': 0.31112272631281745, 'good': 0.29637832350864884, 'know': 0.21226925620750078, 'propn': 0.3231143161271239, 'adv': 0.09959709566984755, 'adj': 0.10509777392944147}, {'mean': 0.6245327409137406, 'dream': 0.6245327409137406, 'just': 0.42899324321638704, 'adv': 0.1894267888347025}, {'adv': 1.0}, {'friend': 1.0}, {}, {'arrest': 0.45835863778466684, 'maintain': 0.4279013166061049, 'live': 0.31981704338941347, 'dangerous': 0.40330183893132043, 'cop': 0.36557701637008655, 'just': 0.23952071836469394, 'adv': 0.10576306563485749, 'adj': 0.22320857224639082, 'cconj': 0.2837631464424477, 'adp': 0.09657309360038677}, {'hear': 1.0}, {'shake': 0.4923521550643653, 'body': 0.8703960911007558}, {'crush': 0.316177514786097, 'rise': 0.298051981765101, 'violin': 0.3247829713317386, 'sound': 0.4611893468939549, 'earth': 0.26677872875779807, 'lie': 0.24581438058098778, 'word': 0.2314422826455189, 'man': 0.17950998088022713, 'like': 0.13476507824341316, 'adv': 0.37470705123026476, 'adp': 0.34214797872934255}, {'everybody': 0.901379286093565, 'propn': 0.31793129410479665, 'adv': 0.29399842657794023}, {'pay': 0.5483963464584779, 'doom': 0.47333387636928337, 'beer': 0.6170962463390842, 'propn': 0.17038860688304291, 'cconj': 0.2113704369179624, 'adp': 0.1438713747345136}, {'blade': 0.6356460907823004, 'rock': 0.47668825345989946, 'play': 0.5032474084281562, 'propn': 0.3398005329555484}, {'ball': 0.47922600817840205, 'man': 0.3198188878897592, 'north': 0.550781854653929, 'cause': 0.38101072447890755, 'adv': 0.2670344942855808, 'hit': 0.3849948925791509}, {}, {'adv': 1.0}, {'way': 0.7102736004685721, 'yo': 0.6646882095166199, 'adp': 0.23173475485347722}, {'yell': 0.537514033364406, 'today': 0.4700107145910735, 'vibe': 0.42942562040875937, 'bitch': 0.32390857339505624, 'propn': 0.137774536539567, 'adv': 0.12740330290287877, 'kill': 0.3693522920209863, 'cconj': 0.17091203759020948}, {'ring': 1.0}, {'east': 0.44798195907576555, 'woulda': 0.49626056891597875, 'middle': 0.46715397943998066, 'heat': 0.38816361759295626, 'propn': 0.23947997267012297, 'adv': 0.11072633689645033, 'think': 0.31760167104279013, 'adj': 0.116841675401398}, {'mayo': 0.2417561394221459, 'profit': 0.22337171786447052, 'bo': 0.21261752065578077, 'count': 0.21261752065578077, 'jungle': 0.2174532560568019, 'cook': 0.2085289646306994, 'chop': 0.21261752065578077, 'jakes': 0.2417561394221459, 'live': 0.15585630223857638, 'mike': 0.2310019422134562, 'crew': 0.18660287474911977, 'big': 0.16164506640975365, 'blow': 0.15977206863749116, 'brother': 0.16740229298647682, 'way': 0.14424919829817515, 'shit': 0.12487622329440289, 'street': 0.16038182224582193, 'stop': 0.16366044926855128, 'll': 0.3495319022675652, 'propn': 0.39016032696497616, 'adv': 0.20616587719740498, 'adp': 0.09412584835867718}, {'witness': 0.31753803235987743, 'star': 0.2859307193337741, 'court': 0.3042473898002799, 'sit': 0.24556263655915314, 'business': 0.3014818093194042, 'snitch': 0.3014818093194042, 'year': 0.26793929995143423, 'send': 0.2859307193337741, 'label': 0.28783554957685276, 'fuck': 0.2030809603778949, 'rap': 0.23643858306142598, 'tell': 0.20822933932835735, 'propn': 0.1801017136467641, 'adv': 0.08327211164479789, 'adj': 0.17574234480256457, 'cconj': 0.11170986898590234, 'adp': 0.15207285045876137}, {'stuff': 0.7103320512437737, 'listen': 0.6312524245373454, 'adv': 0.18136805134451356, 'adj': 0.19138488256138722, 'adp': 0.16560860536214222}, {'jungle': 0.782327966511353, 'king': 0.5994118257671565, 'adp': 0.16931750040883448}, {'minute': 0.8949434730258338, 'num': 0.44617953795356735}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {}, {'come': 0.6535053936108567, 'love': 0.6669276902565846, 'adv': 0.26434266708112797, 'adp': 0.24137338471955164}, {'king': 0.6611082726877746, 'teach': 0.716953376513556, 'propn': 0.22116443586073792}, {'million': 0.35127295910930095, 'join': 0.43208507440146215, 'prison': 0.37269892467956023, 'livin': 0.3206201551901291, 'state': 0.33351093880064764, 'num': 0.35025856116042314, 'adv': 0.2763565754756275, 'adj': 0.09720651891808517, 'cconj': 0.12357781506914854, 'adp': 0.33645783960954656}, {}, {'icebox': 0.4053806895046305, 'playtex': 0.4053806895046305, 'ihop': 0.4053806895046305, 'tops': 0.4053806895046305, 'fed': 0.349664813748825, 'high': 0.2689308897859769, 'propn': 0.3738441619972023, 'adj': 0.09119881245133084}, {'mom': 0.9581699680288964, 'propn': 0.28619977702210647}, {'crips': 0.3944271564567752, 'pirus': 0.3944271564567752, 'city': 0.27311823627239623, 'song': 0.28022806983888837, 'probably': 0.3018207555155918, 'gun': 0.26816739361448594, 'end': 0.2772425633026951, 'propn': 0.18187137867211875, 'like': 0.15121734131234563, 'adv': 0.08409033674983077, 'adj': 0.08873458750926091, 'cconj': 0.11280752121879019, 'adp': 0.460701318352461}, {'way': 0.5738454971526076, 'love': 0.5173087767056072, 'tell': 0.5127205309527711, 'adp': 0.3744471018455523}, {'minus': 0.42938036115470785, 'artist': 0.396727996722833, 'poppin': 0.41027995240217985, 'monch': 0.3640756322909582, 'monarch': 0.41027995240217985, 'propn': 0.2969825872011058, 'adv': 0.18308444827997147, 'cconj': 0.2456085155850555, 'adp': 0.08358793050477503}, {'dive': 0.2932725561423049, 'pool': 0.6024290040249418, 'swimming': 0.3111607753395354, 'liquor': 0.5940892959247618, 'propn': 0.08316939160682078, 'adv': 0.15381732295777145, 'adj': 0.1623125466252112, 'adp': 0.21067772532208992}, {'dick': 0.4721455674324089, 'regret': 0.6645552449585198, 'leave': 0.422922957071255, 'time': 0.3648376504675286, 'propn': 0.15321406833410936}, {'pay': 0.6388835787901994, 'check': 0.556939621198046, 'want': 0.5035401739589238, 'adp': 0.16761063302016632}, {'road': 0.6034720187108792, 'laugh': 0.5764182602658429, 'head': 0.4635313450056094, 'adv': 0.15624662998436742, 'cconj': 0.20960547559421513, 'adp': 0.14267003638415898}, {'stripe': 0.5245905418827901, 'earn': 0.4718553237228157, 'soldier': 0.4380264777824705, 'try': 0.3328124023851681, 'adj': 0.23603509334089337, 'young': 0.3792274530320941}, {'amplify': 0.5037591933556492, 'pain': 0.37933587747204306, 'fact': 0.40030932796174235, 'inside': 0.3410273513831441, 'num': 0.40835932710821726, 'propn': 0.11614233137163163, 'adv': 0.2147990041590454, 'adj': 0.11333110181349863, 'adp': 0.29420201006944807}, {'blink': 0.9780202119011796, 'adv': 0.2085101079390913}, {'prick': 0.5479519570553227, 'thank': 0.4862434882863281, 'diss': 0.5158135731788489, 'just': 0.27688071048836543, 'like': 0.21985642019955165, 'adv': 0.2445195802378946, 'adp': 0.11163638349406331}, {'watch': 0.3662685152313852, 'new': 0.32029193940925954, 'old': 0.33437720303917096, 'probably': 0.4007902733518198, 'death': 0.397505827960468, 'bleed': 0.437335555725367, 'adv': 0.11166425249528676, 'kill': 0.323723535074948, 'adj': 0.11783139142583074, 'adp': 0.10196151410053707}, {'disrespect': 0.6559167057435064, 'punk': 0.55297383982054, 'propn': 0.49100603403148185, 'adv': 0.15134821487348135}, {'dumb': 0.37239536938230694, 'enlist': 0.41401480241359867, 'ignoramuses': 0.41401480241359867, 'ignore': 0.38253091672249534, 'sound': 0.271595494872476, 'prison': 0.3571122466442841, 'vision': 0.3641140242162085, 'propn': 0.09545164635979848, 'adj': 0.09314123562109458, 'cconj': 0.11840965522687963, 'adp': 0.08059670088084701}, {'game': 0.5475175532565775, 'tell': 0.446557947469021, 'end': 0.588774908286916, 'adv': 0.35716218835880464, 'adp': 0.16306381268285505}, {'booth': 0.5755719837062038, 'kiss': 0.47866784243321253, 'line': 0.4303665153442272, 'hold': 0.3821559032408133, 'like': 0.2309384869886038, 'adp': 0.234527037905906}, {'ease': 0.6075977378047547, 'road': 0.5414909938709715, 'mic': 0.4239477475847258, 'cconj': 0.37615489627096144, 'adp': 0.12801677194958433}, {'givin': 0.5839562685211531, 'medium': 0.6111421043316765, 'finger': 0.5181931177658433, 'adv': 0.13029312133806584}, {'nigga': 0.8811050736492166, 'adv': 0.3492337603459524, 'adp': 0.318888114899622}, {'rodriguez': 0.6988108959139687, 'don': 0.6308272181665786, 'propn': 0.33722448394523846}, {'teen': 0.35281163123613213, 'use': 0.2510405842908195, 'future': 0.3321185841637463, 'queens': 0.3247329159796924, 'theme': 0.35281163123613213, 'shape': 0.3321185841637463, 'music': 0.2623309919929169, 'view': 0.313079196216697, 'new': 0.22579582312714405, 'fiend': 0.2780389949060378, 'propn': 0.08512798023696654, 'adv': 0.07871981371917602, 'adj': 0.08306745423029835, 'adp': 0.21563905772417732}, {'daddy': 0.8362350942599671, 'tell': 0.5483711034764908}, {'frontin': 0.8242514797325425, 'hear': 0.5349993316032351, 'adj': 0.18543250346906676}, {'brew': 0.7770045823059145, 'kick': 0.552037279358628, 'adp': 0.3025206129736212}, {'monster': 0.4215639199124337, 'voice': 0.36802345171265793, 'bed': 0.39266327714976335, 'inside': 0.3308573494836379, 'friend': 0.3183310726917232, 'head': 0.3091165733816922, 'adp': 0.475714029336882}, {'hells': 0.5322261298813772, 'fucking': 0.42273352739715725, 'bastard': 0.46509104803959345, 'rza': 0.4162950532288444, 'propn': 0.38525375686224583}, {'form': 0.4603502846838115, 'vital': 0.4603502846838115, 'push': 0.4339597480515455, 'pen': 0.3699809182735727, 'mind': 0.3357427982812219, 'right': 0.29868431525113565, 'propn': 0.1179960767185615, 'adv': 0.10911370330909374, 'adj': 0.11513997718364229, 'adp': 0.09963258742077347}, {'know': 0.6071116393821459, 'intj': 0.5235653437077492, 'propn': 0.308046590882697, 'like': 0.5122519751454921}, {'affection': 0.5705339306592423, 'dick': 0.40534638538194734, 'long': 0.38302089143000445, 'hop': 0.39506210037615996, 'hip': 0.40534638538194734, 'adj': 0.12835346696680403, 'cconj': 0.16317466339550948}, {'revolve': 0.7280563553944737, 'science': 0.6681342887905094, 'adp': 0.1533965955036683}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'dive': 0.2932725561423049, 'pool': 0.6024290040249418, 'swimming': 0.3111607753395354, 'liquor': 0.5940892959247618, 'propn': 0.08316939160682078, 'adv': 0.15381732295777145, 'adj': 0.1623125466252112, 'adp': 0.21067772532208992}, {'flap': 0.5842489385723959, 'attack': 0.45951986051433036, 'beat': 0.40264544135157143, 'hold': 0.3706610724230494, 'propn': 0.13469934588229648, 'like': 0.2239921103534859, 'cconj': 0.16709720275633186, 'adp': 0.22747272159139154}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'spazz': 0.6361372354329976, 'night': 0.44485197712437896, 'end': 0.4471404031812953, 'like': 0.24388529003962095, 'adp': 0.37151253180660365}, {'dangerous': 0.5945703611648999, 'happen': 0.5255503737712279, 'world': 0.39892148042709474, 'man': 0.3734855673185009, 'adv': 0.1559218879315174, 'adj': 0.16453334525736987, 'adp': 0.14237351184151628}, {'banger': 0.9580058682877325, 'cconj': 0.28674859428821564}, {'adv': 1.0}, {'300': 0.4043738055140677, 'pill': 0.3180455837190163, 'better': 0.2662460300326105, 'eatin': 0.34879631677266904, 'num': 0.32779513961809476, 'end': 0.2842340557386839, 'propn': 0.09322890209740707, 'adv': 0.5172655420172366, 'cconj': 0.23130459401240636, 'adp': 0.15743975556945755}, {'meditate': 0.5325756385306175, 'fucking': 0.4230111331287325, 'bed': 0.4478049655546509, 'head': 0.35252580149674895, 'kid': 0.368354961255442, 'adv': 0.11882900489877016, 'adj': 0.12539184811683532, 'adp': 0.21700741262831894}, {'feud': 0.9614504788567761, 'cconj': 0.27497813859664516}, {'latinos': 0.3031480211873767, 'wifey': 0.2800950346977467, 'beach': 0.27267363067567596, 'script': 0.26148309258721647, 'smash': 0.27267363067567596, 'sip': 0.23843010609758641, 'son': 0.2018919869818914, 'big': 0.20269343369705584, 'wu': 0.2153771196079564, 'boy': 0.21093607522885663, 'love': 0.1630592733285909, 'propn': 0.5591293363302172, 'like': 0.116222316434435, 'adv': 0.06462997988193787, 'adj': 0.06819944867882967, 'cconj': 0.08670137507704014, 'adp': 0.11802829388622439}, {'pray': 0.5655024947841266, 'limit': 0.5897039723801967, 'foe': 0.5765901086143821}, {'sound': 0.23966598880302836, 'come': 0.19255770728364885, 'justice': 0.587050467039147, 'poetic': 0.6195539719685701, 'run': 0.2228375105124071, 'like': 0.14006657331029715, 'adv': 0.15577902924148493, 'adj': 0.16438259658133758, 'cconj': 0.10448909366887933, 'adp': 0.2133645996588398}, {'world': 0.9418155063295753, 'adp': 0.3361302605198847}, {'cheat': 1.0}, {'artist': 0.42343911670360757, 'grass': 0.4030527051630608, 'opposite': 0.4030527051630608, 'stone': 0.39530215120571466, 'rock': 0.2964478107861593, 'propn': 0.1056593311954943, 'like': 0.17570134745641114, 'adj': 0.10310184305623099, 'adp': 0.4460789224909698}, {'pot': 0.38004258908186905, 'jack': 0.34876350310648735, 'shoot': 0.29064755581926677, 'war': 0.31474865939998514, 'busy': 0.3930245827048195, 'snap': 0.32685438894218, 'boy': 0.28620533115572394, 'time': 0.22581363197821486, 'man': 0.21005238550538366, 'work': 0.307414800573233, 'propn': 0.09483074237636262, 'adj': 0.09253536064224631}, {'haul': 0.39178772282035507, 'weekend': 0.3743595721011035, 'ball': 0.2998010267995624, 'come': 0.20649617645727114, 'super': 0.27538730730662714, 'run': 0.23896781147423035, 'star': 0.28680805529794823, 'propn': 0.541962987053783, 'cconj': 0.11205263413489672, 'adp': 0.2288091951364239}, {'needle': 0.46526543706556817, 'ave': 0.444568728901093, 'fatal': 0.38849076443564146, 'pop': 0.3428664003108609, 'blow': 0.30748514400988464, 'adv': 0.19838556570172883, 'adj': 0.41868452477970874, 'adp': 0.09057371630859948}, {'scent': 0.9716132272193309, 'adj': 0.23657501282349544}, {'reality': 0.7524620550367562, 'real': 0.574041266140297, 'adj': 0.19964631336775002, 'cconj': 0.2538086485062569}, {'twin': 0.7753737261469033, 'cause': 0.4936874359671493, 'like': 0.31110554411293845, 'adj': 0.18255725096822598, 'adp': 0.1579699050780417}, {'evian': 0.6349168352868333, 'backwards': 0.6066734124967758, 'niggas': 0.3590190608437358, 'adv': 0.13536180157325864, 'adj': 0.2856754792847872}, {'wanna': 0.7273093602477246, 'want': 0.686309765700624}, {'feel': 0.5582750342899702, 'black': 0.5704273067497145, 'adj': 0.21655940205247975, 'adp': 0.5621776402396951}, {'strange': 0.36316890517284156, 'probable': 0.36316890517284156, 'possible': 0.36316890517284156, 'change': 0.275624156146623, 'bang': 0.27346993788169277, 'switch': 0.3032414496114166, 'property': 0.3470138241245259, 'gold': 0.2694822793822283, 'propn': 0.08372905921079371, 'adv': 0.15485239813297866, 'adj': 0.3268095765635606, 'cconj': 0.10386755401001346, 'adp': 0.14139695222877277}, {'ho': 0.5956591514329782, 'wait': 0.6218608855025409, 'man': 0.4392987324978877, 'adj': 0.19352632698537883, 'adp': 0.16746163377155193}, {'ta': 0.9701607254245713, 'ha': 0.2092052471570262, 'propn': 0.055917951444934916, 'adj': 0.0545644552986483, 'adp': 0.09443110890909229}, {'uh': 0.6159212769678952, 'say': 0.42220869860714966, 'shit': 0.4427319896845708, 'intj': 0.33586186775591076, 'adv': 0.36546680628498435}, {'tally': 0.5042873955159012, 'alamo': 0.5042873955159012, 'ho': 0.3654465651874622, 'remember': 0.40054250920727197, 'propn': 0.3650302056835862, 'like': 0.20233675617420532, 'adv': 0.11251729342610939, 'adp': 0.10274043253640873}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'intj': 0.8672352009728135, 'adj': 0.4978986906928394}, {'diss': 0.7719886628827507, 'know': 0.38997990243419134, 'want': 0.5019453955142147}, {'cause': 0.9351074512555572, 'propn': 0.3543642964610511}, {'huh': 0.9614423554240974, 'adj': 0.2750065402796153}, {'bit': 0.938754903693615, 'adv': 0.2544632954823109, 'adp': 0.23235245220025902}, {'stage': 0.5298362005862132, 'start': 0.4393853889392759, 'battle': 0.5042366928336419, 'want': 0.37110403444947104, 'adv': 0.27056461570005663, 'adp': 0.24705469532402188}, {'haiti': 0.33494258236835406, 'deck': 0.33494258236835406, 'perform': 0.3082859855758205, 'memorex': 0.35053569188883, 'throw': 0.24639128456915257, 'watch': 0.24513027520432334, 'yo': 0.19573137330040552, 'wu': 0.24904456688547255, 'tape': 0.2730478813616861, 'hear': 0.22752323225971569, 'bitch': 0.18999986136059857, 'propn': 0.40408227802002966, 'adj': 0.07886029021543152, 'adp': 0.06823915507977697}, {'nas': 0.8214995222442789, 'propn': 0.26945222427108023, 'like': 0.4480732401377794, 'adp': 0.2275179229428328}, {'bitch': 1.0}, {}, {'injury': 0.6213482133310937, 'insult': 0.6907909682094385, 'propn': 0.15926274814734587, 'cconj': 0.19756858910036718, 'adp': 0.2689540215054789}, {'world': 1.0}, {'staple': 0.6546804178527967, 'land': 0.5322366850292835, 'come': 0.3450567621539249, 'propn': 0.30187482843254837, 'adv': 0.27915064112374177}, {}, {'body': 0.6848368367067976, 'god': 0.5812850431833566, 'propn': 0.4394385118088198}, {'fantastik': 0.5634103511483975, 'villain': 0.49982530526946195, 'mr': 0.478163551750874, 'propn': 0.45177766457419943}, {'nosing': 0.18485995558314489, 'plastic': 0.17663670870683973, 'glocks': 0.17663670870683973, 'twin': 0.17663670870683973, 'elastic': 0.18485995558314489, 'centrifugal': 0.18485995558314489, 'attract': 0.17663670870683973, 'profile': 0.16627664286894336, 'brown': 0.1485212419336111, 'type': 0.1381611760957148, 'pay': 0.13717166169095454, 'fantastik': 0.159452641953874, 'stand': 0.13207474818100073, 'bastard': 0.1543557284439202, 'low': 0.13532666103367824, 'dough': 0.1439956626060239, 'guard': 0.159452641953874, 'mr': 0.13532666103367824, 'life': 0.10531832711354058, 'game': 0.12083275982061488, 'cash': 0.128004941342813, 'heavy': 0.1502859216057325, 'make': 0.09812479489746301, 'ass': 0.12461691373597406, 'long': 0.12410344270910048, 'nigga': 0.0994337020801849, 'year': 0.1268115958530582, 'send': 0.13532666103367824, 'label': 0.13622818821911822, 'fuck': 0.09611513009685567, 'fake': 0.1344635085469968, 'cause': 0.11246618356866311, 'propn': 0.21309850521700613, 'like': 0.14174496122183172, 'adv': 0.07882284808271799, 'adj': 0.41588089555005814, 'adp': 0.2878950696085937}, {'fade': 0.4290470376194078, 'feeling': 0.3941504606651904, 'motherfuckin': 0.39798053047579274, 'demonstrate': 0.4675264056084451, 'like': 0.1939948771770064, 'adv': 0.431513857021495, 'cconj': 0.1447193888846338, 'adp': 0.19700936169850508}, {'grave': 0.49908628240819075, 'engrave': 0.5176637278054715, 'unmarked': 0.5176637278054715, 'say': 0.28994439326764193, 'adj': 0.1324196159371037, 'cconj': 0.336687847521686}, {'propn': 1.0}, {'dollar': 0.5457968651667602, 'say': 0.37191204264025024, 'come': 0.397935711906614, 'nigga': 0.406108882661376, 'fuck': 0.3925551123401787, 'adp': 0.29395653233393026}, {'wake': 0.9627356441479266, 'adv': 0.27044422620399367}, {'matic': 0.6500422324372367, 'plus': 0.4790333055717223, 'ill': 0.4728279794372233, 'propn': 0.29973614918023056, 'cconj': 0.1859143107373983}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'biscuit': 0.7131649287431833, 'buttery': 0.681440744594821, 'propn': 0.16442109358834198}, {'space': 0.5126162843468034, 'travel': 0.5126162843468034, 'place': 0.4268577501262161, 'time': 0.34616687221726433, 'man': 0.3220052600685711, 'propn': 0.1453732495726104, 'cconj': 0.18033839140100785, 'adp': 0.12274910657607162}, {'cause': 0.9351074512555572, 'propn': 0.3543642964610511}, {'choke': 0.4398462763859876, 'droop': 0.5099317397302607, 'weed': 0.42578656310094126, 'wake': 0.38700864378419547, 'soon': 0.40521430622044974, 'adv': 0.10871546497596164, 'adp': 0.1985379056840207}, {}, {'ak': 0.6160950886531107, 'add': 0.5799599855503679, 'line': 0.46066643952509345, 'propn': 0.14865419925980877, 'cconj': 0.18440847438117447, 'adp': 0.12551944874018128}, {'talk': 0.9180738529477463, 'adv': 0.29273318609239135, 'adp': 0.2672969926764552}, {'girl': 0.6238050133681565, 'fuck': 0.4870050110555805, 'man': 0.47833321451572414, 'adv': 0.1996934403734018, 'cconj': 0.26788954454057495, 'adp': 0.18234166334724525}, {'wait': 0.7384292408149463, 'tell': 0.544566848352696, 'adp': 0.3977049207448581}, {'people': 0.5845612632586763, 'weak': 0.7581220203545648, 'adv': 0.19881215818518727, 'adj': 0.209792415279203}, {'grave': 0.5835478228739774, 'wake': 0.5223187761871436, 'got': 0.5223187761871436, 'adj': 0.30965859535568324, 'adp': 0.13397643384608957}, {'kick': 0.7831245852622036, 'rock': 0.35650365000764833, 'niggas': 0.31164251427151773, 'rhyme': 0.3485810448081122, 'propn': 0.12706431236131552, 'cconj': 0.15762579266187182}, {}, {'adv': 1.0}, {'stand': 0.6364627299155761, 'right': 0.5198863735840483, 'adv': 0.569766050225915}, {'murder': 0.45979072698852047, 'nigga': 0.32843545824131515, 'blast': 0.4672416686721161, 'll': 0.4414063596515543, 'propn': 0.1407754186906294, 'humble': 0.46341265921915825, 'adj': 0.13736794431494015, 'adp': 0.11886682675767116}, {'motorola': 0.36626144728251625, 'erase': 0.38331259324377664, 'cola': 0.38331259324377664, 'coca': 0.38331259324377664, 'chase': 0.31162230974795646, 'taste': 0.2985792714017266, 'wish': 0.3079631941800032, 'make': 0.20346466856497322, 'propn': 0.26511963738203165, 'adv': 0.16344151014283648, 'adp': 0.07461986924483867}, {'fortify': 0.8258459835945732, 'live': 0.5324096485379246, 'adj': 0.18579122025659786}, {'doc': 0.6686350601619586, 'order': 0.6260274398890444, 'just': 0.36707596183823393, 'adv': 0.16208651723298362}, {'grass': 0.5472359274021869, 'flag': 0.5749151283674312, 'let': 0.34867119609037994, 'burn': 0.46171567603311225, 'propn': 0.14345662826420924, 'adp': 0.12113076514157407}, {'cheese': 0.643933008963367, 'chop': 0.5926852325236963, 'drop': 0.4581859114109442, 'propn': 0.15537105811649335}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'price': 0.5046269248488506, 'coke': 0.435270559891581, 'stash': 0.44380476075589237, 'til': 0.3565787829865684, 'drop': 0.3430912019346198, 'hold': 0.32014702088302244, 'adv': 0.10758449906129045}, {'sir': 0.40394718169401045, 'cure': 0.42911559576092856, 'sorry': 0.3749868917692312, 'seek': 0.3949641858903045, 'travel': 0.3650998326251475, 'world': 0.2449603533031045, 'face': 0.28670677790691, 'adv': 0.0957448586486229, 'adj': 0.20206556107851817, 'adp': 0.1748507787766286}, {'love': 1.0}, {'pop': 0.5454263185190927, 'feel': 0.4292489517327799, 'shit': 0.38230871447579856, 'make': 0.3928690995308513, 'propn': 0.3412789517408313, 'like': 0.28375710408591254, 'adp': 0.1440832014918997}, {'terrible': 0.9756158595280678, 'adj': 0.2194850670029951}, {'birth': 0.24588913235802923, 'cross': 0.24588913235802923, 'jones': 0.2377671692832101, 'sale': 0.5146727927491462, 'crash': 0.22196785747013512, 'pill': 0.20239863037877207, 'stock': 0.21487264125012223, 'push': 0.21819794219184704, 'connect': 0.2314672852872694, 'ho': 0.1781907294058743, 'control': 0.2067506781753031, 'block': 0.18183869016675888, 'dope': 0.2067506781753031, 'make': 0.13659573288467006, 'catch': 0.16820661282830301, 'bitch': 0.1394833130137039, 'drop': 0.17496064753207774, 'propn': 0.11865847577938621, 'like': 0.09865883990400999, 'adj': 0.05789317142497473, 'cconj': 0.07359909306237886, 'adp': 0.2003837973274872}, {'stop': 0.698004547132422, 'intj': 0.4040304191800251, 'like': 0.3952999997634598, 'adv': 0.43964415468272117}, {'fool': 1.0}, {'know': 0.8440384398470046, 'adv': 0.3960242700445308, 'adp': 0.36161290020729503}, {'mess': 0.3826982465998976, 'board': 0.39577095565831294, 'read': 0.3118937953907513, 'bless': 0.36427329802224373, 'lord': 0.3197029313277593, 'bust': 0.2976407208910464, 'believe': 0.3197029313277593, 'message': 0.3725582656837034, 'propn': 0.09549339961838493, 'adp': 0.16126391232953502}, {'shit': 0.7966945458095885, 'intj': 0.6043821644268245}, {'honest': 0.7158563410683829, 'mc': 0.5537753197420733, 'propn': 0.1834868849884389, 'adv': 0.3393491391665722, 'adj': 0.17904557794287324}, {'fuck': 0.750412312001061, 'num': 0.5849793506828987, 'adv': 0.3077020007602103}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'mineral': 0.565303638491997, 'vegetable': 0.5916211090417257, 'animal': 0.5321475467823202, 'propn': 0.1363990092866973, 'cconj': 0.16920566882676738}, {'snappin': 0.6433022210664358, 'start': 0.48211236372885485, 'ya': 0.4403643062132671, 'tell': 0.37118122858241703, 'adv': 0.14843751032714814}, {'hol': 0.7601784358384964, 'bitch': 0.5978768400692719, 'propn': 0.25430695978466494}, {'door': 0.7772972399030751, 'come': 0.5259467201797676, 'cconj': 0.28539857939184243, 'adp': 0.1942593607843001}, {'peace': 0.784218613235889, 'yo': 0.5858982046231613, 'adp': 0.2042656615139581}, {'escape': 0.2985035093286229, 'prey': 0.3303088472373427, 'zoo': 0.32155697696567564, 'bird': 0.29437118482557323, 'air': 0.3144061782829828, 'poor': 0.2811744720028936, 'prison': 0.30836026414299605, 'fade': 0.30312305509724025, 'open': 0.2735595163349233, 'hard': 0.23808601090843126, 'adv': 0.22864940295866612, 'adj': 0.24127755031040293, 'adp': 0.069593860771254}, {'gorilla': 0.9686853572241145, 'propn': 0.24829151958854698}, {'bob': 0.27010623424765773, 'com': 0.30712351561697193, 'hairline': 0.30712351561697193, 'www': 0.30712351561697193, 'kool': 0.28376821140474523, 'mf': 0.24675093003543105, 'doom': 0.19670149510943927, 'dot': 0.5057883572039232, 'listen': 0.22789491022353714, 'love': 0.16519763870624574, 'propn': 0.3540386120320799, 'adp': 0.0597880606619639}, {'rope': 0.5821921841972802, 'matter': 0.4785465021888621, 'dope': 0.5318517112726865, 'know': 0.30079079399543207, 'adv': 0.14113155160296764, 'adj': 0.14892614894964737, 'adp': 0.12886833849896634}, {'spock': 0.46030699091246735, 'say': 0.25208539507959593, 'doctor': 0.46030699091246735, 'bitch': 0.27738323373065926, 'funk': 0.3771232466247472, 'fuck': 0.26607745713819336, 'propn': 0.47193991897802934}, {'record': 0.5157241759312537, 'pose': 0.5766770576562777, 'say': 0.3229978663993833, 'end': 0.4608973734310219, 'adv': 0.13979460757117584, 'adp': 0.25529512861153353}, {'collar': 0.505850049905471, 'white': 0.4210568931351289, 'crime': 0.45705975735169174, 'ring': 0.44395717348790453, 'thing': 0.36269021895403225, 'adj': 0.12939764896067574, 'adp': 0.11196999415376518}, {'seeds': 0.47328553374873295, 'anywho': 0.47328553374873295, 'walkin': 0.3802497682087671, 'shoe': 0.38971667819421946, 'street': 0.3139791879810887, 'propn': 0.21823317973767542, 'like': 0.18145043748507966, 'adp': 0.2764049911191707}, {'adv': 0.7384617951868037, 'adp': 0.6742953188696205}, {'napalm': 0.49318454938072154, 'gut': 0.49318454938072154, 'chest': 0.43374152303104613, 'blow': 0.3259363582780171, 'leave': 0.3138626466170893, 'face': 0.3148554703316955, 'adj': 0.1109521158440695, 'adp': 0.09600875952687374}, {'oh': 0.451809302619569, 'far': 0.6035594954214154, 'propn': 0.16899033992720222, 'adv': 0.4688078364732372, 'adp': 0.4280721516586148}, {'hearin': 0.3949559222838968, 'livin': 0.30671291687325125, 'today': 0.32509992191867265, 'say': 0.2036099644867818, 'tang': 0.3219712377217817, 'wu': 0.29366712917938864, 'world': 0.2254603263492618, 'niggas': 0.23372823231113618, 'slang': 0.3219712377217817, 'intj': 0.16196924220615092, 'propn': 0.2858902340792204, 'adv': 0.26436931674170083, 'adp': 0.16093181249057928}, {'crazy': 0.7065464587330159, 'think': 0.6081448402844359, 'adj': 0.2237288670183845, 'cconj': 0.28442459273052084}, {}, {'scratch': 0.49779970910295573, 'start': 0.3730678778340131, 'straight': 0.3748867487121104, 'let': 0.30190268340867576, 'hop': 0.3730678778340131, 'hip': 0.38277960765698543, 'adv': 0.11486381834392932, 'adj': 0.12120766706892462, 'cconj': 0.1540902691786419, 'adp': 0.2097661260788974}, {'wanna': 1.0}, {'know': 0.9735674373998511, 'adv': 0.22839974788665351}, {'fatal': 0.36272654294838497, 'satan': 0.43440961533622474, 'mistake': 0.8027495993808672, 'propn': 0.10015369676793821, 'adv': 0.09261444158445219, 'adj': 0.09772947271986569, 'adp': 0.08456698075263677}, {'rod': 0.4946080127903847, 'loaded': 0.47260603954883706, 'fella': 0.41938276941350805, 'gear': 0.4448868314580683, 'maybe': 0.367014060920309, 'adv': 0.10544850595059382, 'adj': 0.11127235352654974}, {'world': 0.73243890099881, 'know': 0.6101427972878605, 'adj': 0.30209108431299375}, {'influence': 0.8193540627418117, 'adv': 0.5484461974490594, 'adp': 0.16693019011597154}, {'adj': 0.6182527122886333, 'cconj': 0.7859793787038871}, {'burnin': 0.4663457005551646, 'speech': 0.4663457005551646, 'wound': 0.41013753304268474, 'preach': 0.4663457005551646, 'adj': 0.10491415892154661, 'cconj': 0.4001294154027156, 'adp': 0.09078401234834475}, {'hour': 0.7417624510256042, 'body': 0.6473298453227856, 'adp': 0.17536401456076006}, {'language': 0.25614651072591993, 'stainless': 0.25614651072591993, 'bonded': 0.25614651072591993, 'ancient': 0.24475217717456296, 'shore': 0.24475217717456296, '9000': 0.25614651072591993, 'mile': 0.22527343531109337, 'read': 0.19288096910029187, 'book': 0.208239877095629, 'land': 0.208239877095629, 'war': 0.19600661902815036, 'inside': 0.17340222723682233, 'steel': 0.19288096910029187, 'place': 0.17340222723682233, 'ride': 0.19600661902815036, 'num': 0.1038192633908995, 'propn': 0.059054908219638505, 'adv': 0.10921888106148812, 'adj': 0.1152509638300822, 'cconj': 0.14651756336153735, 'strip': 0.22094151074348878, 'adp': 0.3989145042408571}, {'nazareth': 0.5612519700042229, 'plead': 0.536285429821963, 'gon': 0.41646588689227515, 'case': 0.4259577249445971, 'propn': 0.1293973651359082, 'cconj': 0.16051999077370227}, {'woo': 1.0}, {'num': 0.5184188742755282, 'adv': 0.8180725934695767, 'adp': 0.24899618994847048}, {'sun': 0.6345274747056175, 'walk': 0.5443304014462125, 'right': 0.4367303768181932, 'adv': 0.1595439275816739, 'adp': 0.29136164991496344}, {'hungry': 0.9676295021489978, 'adj': 0.25237501177985655}, {'wanna': 0.7204053089602344, 'way': 0.6935533078444001}, {'paper': 0.5320169542141602, 'trader': 0.5501902876913245, 'slave': 0.46811251777480645, 'livin': 0.4272640526500081, 'adp': 0.11209240730062119}, {'fuck': 0.7134300556202816, 'man': 0.7007264485786461}, {'fly': 0.31462530659241483, 'hill': 0.335690031126833, 'come': 0.220218554897936, 'till': 0.3992370483304015, 'stay': 0.2805005398795897, 'num': 0.5080465075469853, 'propn': 0.19265942815467293, 'lose': 0.27936864327733146, 'like': 0.16018708780356722, 'adv': 0.08907831627956912, 'adj': 0.1879960993521162, 'adp': 0.244014350119115}, {'scooter': 0.6497483830967601, 'bag': 0.5061179889179921, 'try': 0.4122154386318064, 'let': 0.3640895503229151, 'adv': 0.13852382992105738}, {'wire': 0.950591300563166, 'propn': 0.23719783339729306, 'adp': 0.2002832172830735}, {'pro': 0.52542071936906, 'ball': 0.4741765281325713, 'lettin': 0.5573733020777533, 'know': 0.2815642203242025, 'adj': 0.2788135531536933, 'cconj': 0.17722664124735457}, {'slow': 0.5550703056548172, 'knowin': 0.6379508774450149, 'adv': 0.46394472284660854, 'adj': 0.16318935563851628, 'cconj': 0.20746123034551034}, {'voice': 0.8501911050806165, 'num': 0.45762013060536244, 'propn': 0.26030539930345503}, {'positive': 0.9551728214281698, 'adv': 0.20363913309042916, 'adj': 0.21488598064817577}, {'extra': 0.4817753385125643, 'lime': 0.5585418127110777, 'glass': 0.4599191066716643, 'water': 0.4116042273743238, 'adj': 0.2513111815262334, 'adp': 0.10873192732744233}, {'got': 0.9627356441479266, 'adv': 0.27044422620399367}, {'rapunzel': 0.4729122132414093, 'normal': 0.45187534850758176, 'fuckin': 0.32014502493575175, 'write': 0.3341685771277774, 'fuck': 0.2458835325190049, 'know': 0.21488209870936284, 'rhyme': 0.2991081602019242, 'propn': 0.10903052034466569, 'adv': 0.10082304581108616, 'adj': 0.21278286488707754, 'cconj': 0.13525451697873056, 'adp': 0.2761869670213411}, {'come': 0.17365156998704342, 'kid': 0.21774132865381068, 'tang': 0.25663984749183144, 'wu': 0.23407894375673177, 'sharp': 0.2793617597595551, 'razor': 0.5795208366201912, 'rza': 0.49248237788258187, 'ya': 0.20838442392912823, 'propn': 0.3038400845684463, 'adj': 0.07412140593481197, 'adp': 0.06413851763034699}, {'tough': 0.28052620237353254, 'family': 0.2568093261311202, 'buck': 0.2535481720754474, 'luck': 0.26444445491651936, 'cool': 0.240727578674107, 'happen': 0.2241153365636845, 'blow': 0.20611441959062266, 'pistol': 0.2980047241652884, 'murder': 0.23484751252067643, 'catch': 0.2038575872710345, 'strike': 0.23865323329236293, 'nigga': 0.1677551239381283, 'fuck': 0.1621563436180306, 'man': 0.15926892606055068, 'cause': 0.189742292288332, 'num': 0.12640799075622636, 'propn': 0.14380784545216146, 'look': 0.19329382618928226, 'adv': 0.3324561082571739, 'adj': 0.14032697107111486, 'cconj': 0.08919823831390004}, {'crown': 0.540714468940313, 'prove': 0.4886492380492273, 'king': 0.4033129555961494, 'lose': 0.3912931640414895, 'adv': 0.3742983015089445, 'adp': 0.11392491537290081}, {'chest': 0.6776161787240669, 'bang': 0.5801805483626787, 'like': 0.29539083632230234, 'adv': 0.1642636663466362, 'adp': 0.2999809116729708}, {'apple': 0.4053341593749912, 'wine': 0.4053341593749912, 'sip': 0.3450395567670255, 'corner': 0.3450395567670255, 'nigga': 0.23596810116346206, 'sit': 0.27580651824995106, 'platoon': 0.43869484679289056, 'propn': 0.30342498721175365, 'adj': 0.09869352460996576, 'adp': 0.08540119130719821}, {'cigarette': 0.4711718474522488, 'leaf': 0.45021240055342077, 'loose': 0.3934225425205647, 'puff': 0.40641357752981594, 'pass': 0.342721167151337, 'crack': 0.3262595433675907, 'propn': 0.10862927676865053, 'adj': 0.10599990098357626, 'adp': 0.09172352348563675}, {'deep': 0.5930445758718292, 'poetry': 0.7800526806094902, 'adj': 0.19953933572844992}, {'owe': 0.5332331408885925, 'lesson': 0.5075607128383935, 'great': 0.4454585296321467, 'steal': 0.4636734072101707, 'adv': 0.12303983612276981, 'adj': 0.12983524061797758, 'adp': 0.11234864968347047}, {'induct': 0.9815736896072488, 'adp': 0.19108399166547846}, {'poor': 0.3383322723450463, 'reality': 0.36474261443679906, 'ya': 0.5441451947985649, 'bish': 0.6640608625380489, 'adv': 0.09170992838513868, 'adp': 0.08374106258039254}, {'limper': 0.20848748489575863, 'sympathy': 0.20848748489575863, 'plea': 0.20848748489575863, 'century': 0.18752898084011607, 'sickest': 0.20848748489575863, 'male': 0.19263298862118755, 'alpha': 0.19921319910731128, 'fresh': 0.17167448456554496, 'invigor': 0.20848748489575863, 'seven': 0.1798327830171686, 'linger': 0.20848748489575863, 'ginger': 0.20848748489575863, 'stale': 0.20848748489575863, 'bre': 0.20848748489575863, 'simon': 0.18335870283274014, 'simple': 0.17408441704429278, 'scale': 0.18752898084011607, 'ninja': 0.19263298862118755, 'emcee': 0.17677849234661644, 'enter': 0.18335870283274014, 'figure': 0.17408441704429278, 'jail': 0.16750420655816906, 'lend': 0.17677849234661644, 'injury': 0.18752898084011607, 'nigga': 0.11214263465106064, 'rhyme': 0.13186444817077186, 'propn': 0.2403352919110524, 'adj': 0.14071078020533667, 'adp': 0.04058647990261241}, {'friends': 0.9193474990891481, 'propn': 0.2410048131316009, 'adj': 0.2351712824427778, 'adp': 0.20349772450853174}, {'know': 1.0}, {'dot': 0.6150464077949744, 'hood': 0.5433050216467352, 'nigga': 0.40176572993562915, 'propn': 0.3444131102658135, 'adv': 0.15924338746846903, 'adp': 0.1454063993977744}, {'woo': 1.0}, {'write': 0.6382377287072463, 'forget': 0.7035645685594983, 'cconj': 0.25832631079759605, 'adp': 0.17583235388291427}, {'jay': 0.3134816957340444, 'shawn': 0.3901813073676565, 'quick': 0.3134816957340444, 'clap': 0.3172063802898825, 'record': 0.3068829878835415, 'damn': 0.29381055582841825, 'gun': 0.26528067989492954, 'label': 0.28753492021562055, 'propn': 0.3598272134227256, 'adj': 0.26333818650405777, 'cconj': 0.1115931937989564, 'adp': 0.07595700911145956}, {'askin': 0.5422078095056019, 'matter': 0.4357693476691781, 'kid': 0.3983829211252824, 'actually': 0.47901607797617374, 'adv': 0.2570316736043862, 'adj': 0.1356136770028222, 'cconj': 0.17240450624123765, 'adp': 0.11734882931135215}, {'propn': 0.6830723438558051, 'adv': 0.4211018712873593, 'cconj': 0.5649098352625713, 'adp': 0.1922557283443998}, {'dive': 0.2932725561423049, 'pool': 0.6024290040249418, 'swimming': 0.3111607753395354, 'liquor': 0.5940892959247618, 'propn': 0.08316939160682078, 'adv': 0.15381732295777145, 'adj': 0.1623125466252112, 'adp': 0.21067772532208992}, {'station': 0.4561004745645516, 'radio': 0.4561004745645516, 'ray': 0.4440156266483634, 'straight': 0.3434835755602898, 'day': 0.3094398400224367, 'propn': 0.2276184187970063, 'adv': 0.31572603056379456, 'adj': 0.11105445314666706, 'adp': 0.09609731374146417}, {}, {'bizarre': 0.35096374190575214, 'dre': 0.3242745939152318, 'proof': 0.3242745939152318, 'dr': 0.3086624431645799, 'da': 0.3242745939152318, 'room': 0.2788913066288054, 'floor': 0.276037830929041, 'say': 0.1728823944981764, 'sleep': 0.24669216061678412, 'propn': 0.40457571543581006, 'adv': 0.07482410569534315, 'cconj': 0.10037683540280753, 'adp': 0.20496745209227527}, {}, {'lawyer': 0.2981271714888877, 'instead': 0.25715231285316364, 'sac': 0.2981271714888877, 'cul': 0.2981271714888877, 'bein': 0.26219421022191236, 'safe': 0.2754559970916222, 'chopper': 0.25715231285316364, 'maybe': 0.22121935158618833, 'say': 0.14685545290831833, 'doctor': 0.2681575091090514, 'sleep': 0.20955337344481065, 'boy': 0.20744247389982587, 'dream': 0.20955337344481065, 'hold': 0.18913878966136727, 'adv': 0.12711910848117508, 'adj': 0.13413980834896302, 'cconj': 0.1705307896431121, 'adp': 0.29018366402439577}, {'mathematic': 0.43394966659275624, 'learn': 0.39188356500711413, 'add': 0.45252115519047814, 'better': 0.3312459748237501, 'know': 0.2285968232896097, 'want': 0.29422829782557564, 'rhyme': 0.31819856401644636, 'adv': 0.32177405365865663}, {'hill': 0.25977561404471294, 'ski': 0.29083124030083973, 'hurt': 0.2788955130952578, 'airport': 0.30895182985116265, 'worth': 0.29083124030083973, 'chop': 0.28436372194793774, 'snort': 0.2987468430350098, 'attack': 0.25430740519203293, 'lock': 0.23234813985920255, 'hand': 0.21983245737055707, 'catch': 0.21134622879835996, 'fiend': 0.24347455877583102, 'num': 0.13105154678784114, 'adv': 0.1378675096899207, 'adj': 0.07274091813699846, 'cconj': 0.0924749063081781, 'adp': 0.3147197898863856}, {'know': 1.0}, {'garment': 0.6520887835317517, 'sew': 0.6520887835317517, 'propn': 0.1503399095829515, 'like': 0.2500008696943751, 'adp': 0.2538856307923049}, {'soft': 0.4178729953902373, 'natural': 0.408580316708013, 'skin': 0.387914318497167, 'hair': 0.3691718928329437, 'big': 0.3106281750642231, 'ass': 0.3131771373336075, 'adj': 0.313547457809908, 'cconj': 0.2657401320261011, 'adp': 0.0904393222491307}, {'gza': 0.9660854504636703, 'propn': 0.2582225830604425}, {}, {'beef': 0.48207916325330974, 'heads': 0.6188876185138537, 'bm': 0.591357233906361, 'propn': 0.14268533819191268, 'adp': 0.12047950937365437}, {'adv': 0.661733187659739, 'cconj': 0.4438588516429856, 'adp': 0.6042338191195944}, {'backstage': 0.40453311798334957, 'icicle': 0.40453311798334957, 'ask': 0.29424946141476294, 'cappa': 0.38653800547602035, 'guest': 0.37377026996293045, 'pass': 0.29424946141476294, 'special': 0.3430074219425113, 'propn': 0.2797968953776593, 'adj': 0.09100813361977907, 'adp': 0.07875089131216413}, {'lead': 0.9328227281474246, 'adv': 0.2660940875964052, 'adp': 0.24297262067531955}, {'disrespect': 0.7677701224994826, 'say': 0.40932573717621124, 'let': 0.46563277556207244, 'adp': 0.16176402011770552}, {'givin': 0.5747453000813878, 'mc': 0.4185365907850435, 'propn': 0.6933856797066826, 'adp': 0.11709509548264699}, {'til': 0.8745321191224794, 'intj': 0.4849675995601621}, {'inshallah': 0.8049450227507688, 'come': 0.44400646288658085, 'propn': 0.194220762361177, 'adv': 0.17960043443893434, 'cconj': 0.24093469715965662, 'adp': 0.16399458035400302}, {'bonafide': 0.388774789727837, 'stamp': 0.3592102887292807, 'sticki': 0.388774789727837, 'jump': 0.33534124332991927, 'beef': 0.3028340198112749, 'dro': 0.3592102887292807, 'come': 0.20490817579444323, 'street': 0.2579144809675721, 'nigga': 0.20911676894078493, 'niggas': 0.2198359724148008, 'propn': 0.08963252890082568, 'adv': 0.08288527413208467, 'adj': 0.08746297012203783, 'cconj': 0.11119092492395329}, {'banana': 0.2937596380707606, 'chance': 0.2678610726964618, 'trouble': 0.5990385654669823, 'mean': 0.4787693523472596, 'big': 0.22771319221072198, 'say': 0.16776129375005341, 'adv': 0.07260767535975973, 'think': 0.20826408306415653, 'adj': 0.07661774672424027, 'cconj': 0.09740348529178186, 'adp': 0.33149321961000194}, {'imagine': 0.6708702664632394, 'rule': 0.5830599954375071, 'world': 0.4315674971057889, 'adp': 0.1540247471603219}, {'adj': 1.0}, {'li': 0.6497483610855433, 'guy': 0.5427943752290795, 'straight': 0.48931738230084754, 'adj': 0.15820516080845645, 'adp': 0.1368976258309125}, {'shawty': 0.9823120038626505, 'adv': 0.12880220086986266, 'adj': 0.13591585675859758}, {'sally': 0.30343091540928374, 'ers': 0.2899331986136549, 'er': 0.2899331986136549, 'pea': 0.30343091540928374, 'use': 0.2062998867986983, 'mic': 0.1956170402687408, 'say': 0.14946804172955744, 'walk': 0.22070970080487984, 'pass': 0.4414194016097597, 'tell': 0.16176384221273715, 'propn': 0.3497819433439364, 'like': 0.3489923212616688, 'adv': 0.129380583661066, 'adp': 0.11813843652291776}, {}, {'aha': 0.6571804261072719, 'somebody': 0.5279956535314194, 'ayy': 0.47224913086204334, 'intj': 0.25751744755149764}, {'internet': 0.43052849938792925, 'benefit': 0.4163077140235944, 'scene': 0.3962646427748655, 'minute': 0.3663019583060347, 'just': 0.21754651162598984, 'adv': 0.09606010763837687, 'cconj': 0.1288650164754784, 'adp': 0.5262794744387629}, {'olive': 0.770899765611914, 'like': 0.2955511836997947, 'look': 0.47778319153858767, 'adp': 0.3001437506868123}, {'dead': 0.6250516353372698, 'broke': 0.733138485778884, 'adv': 0.18433842212539392, 'adj': 0.19451930485267993}, {'parole': 0.6452024683295561, 'dough': 0.5025769731961764, 'people': 0.4044477244732654, 'hold': 0.40933140490660547}, {'toker': 0.38711827406905674, 'mocha': 0.3698978375069197, 'carrier': 0.38711827406905674, 'vial': 0.3576797433240819, 'smoker': 0.38711827406905674, 'patient': 0.34820265320506916, 'dime': 0.29150406010709823, 'crack': 0.2680572534415277, 'adj': 0.0870903024918347}, {'em': 0.8408090800465536, 'intj': 0.36629503277201797, 'adv': 0.39858253835035773}, {'instead': 0.21467462071582424, 'recover': 0.24888104934526972, 'conduct': 0.24888104934526972, 'experiment': 0.49776209869053945, 'forbid': 0.21888367251596216, 'pursue': 0.23780991008666735, 'later': 0.20781253325735982, 'lesson': 0.21888367251596216, 'learn': 0.19386454734073436, 'doom': 0.1593993036068104, 'injury': 0.22386192417004183, 'day': 0.1560120721993241, 'bitter': 0.2299548117745646, 'secret': 0.20493568659933672, 'want': 0.14555454952992095, 'num': 0.1008744844571695, 'propn': 0.05737984673318036, 'adv': 0.2653023620140682, 'adj': 0.1679728960671453, 'adp': 0.14534981386211307}, {'poison': 0.8551533738032583, 'tell': 0.5183750642854117}, {'lovely': 0.6740517254156076, 'bubbly': 0.34853843452511546, 'sippin': 0.309287232253169, 'feelin': 0.29654322836461433, 'livin': 0.27066625378715947, 'run': 0.22248520705816796, 'money': 0.2336184548544011, 'propn': 0.08409692407850154, 'adv': 0.15553274444870654, 'adj': 0.16412270965090459, 'adp': 0.07100909092133756}, {'sock': 0.4176638955084301, 'dollar': 0.33567410889310684, 'box': 0.36898716254405334, 'buy': 0.37306478770223084, 'friend': 0.30244262950891204, 'drop': 0.31570226227967113, 'bottle': 0.36521187132192195, 'adv': 0.09899603822060972, 'cconj': 0.2656071580583858, 'adp': 0.18078813445429287}, {'amazin': 0.5589176180917392, 'city': 0.4188716985015379, 'stage': 0.5050996115344663, 'adv': 0.12896635048140087, 'adj': 0.1360890722389087, 'adp': 0.47104078769198565}, {'church': 0.6490127658891179, 'pull': 0.5176386588601958, 'propn': 0.485837883719999, 'adp': 0.27348528170424014}, {'weed': 0.4797412553186594, 'use': 0.39063065539692915, 'cloud': 0.487165579042769, 'brain': 0.42633276935798103, 'smoke': 0.3923577195105977, 'adv': 0.12249163820549011, 'adj': 0.12925676611135303, 'adp': 0.11184808581971328}, {'warn': 0.3888183667296732, 'concern': 0.3888183667296732, 'risk': 0.3759753086119533, 'lady': 0.3140866448645301, 'uh': 0.29241200576884313, 'great': 0.3140866448645301, 'gentleman': 0.3450309767382417, 'life': 0.23183006655174762, 'intj': 0.15945226457389455, 'tell': 0.21693532588134182, 'adj': 0.09154503146354538, 'cconj': 0.11638041455053726, 'adp': 0.07921547817993599}, {'fatal': 0.23988410469385274, 'red': 0.236563276185176, 'fed': 0.2478052135918713, 'roof': 0.2526638455851386, 'lay': 0.22829389060309307, 'hook': 0.2478052135918713, 'sound': 0.18846393605902717, 'robbery': 0.2654435864764246, 'shoot': 0.20300495742768754, 'war': 0.21983855333587543, 'cream': 0.2335592213902164, 'cop': 0.21171211003601723, 'ill': 0.2089696228767403, 'niggas': 0.16245093970093846, 'propn': 0.19870572210406343, 'like': 0.11014286110514374, 'look': 0.17805514105962786, 'adv': 0.12249852034880623, 'adj': 0.06463201417532675, 'cconj': 0.1643322522851732, 'adp': 0.3914902948576516}, {'sword': 0.6619403250971315, 'swing': 0.6733770000713829, 'adv': 0.1664365429403706, 'adj': 0.1756287173426131, 'cconj': 0.22327528435502106}, {'number': 0.649802574918274, 'game': 0.5640561558585054, 'shit': 0.44574115752061083, 'cconj': 0.2468037421918321}, {'gon': 0.32976801805171574, 'hol': 0.9188256022018454, 'propn': 0.1024600429110779, 'like': 0.17038123747546283, 'adp': 0.08651439493893219}, {'plus': 0.5706768071344485, 'son': 0.5157395428726715, 'hear': 0.5026429439464818, 'know': 0.3518728781397553, 'propn': 0.1785392232725854}, {'bandit': 0.5737957314115592, 'city': 0.4158178075203744, 'hold': 0.38097654545541076, 'adj': 0.4052906404154477, 'young': 0.4341087169907099}, {}, {'floor': 0.7555119143270238, 'everybody': 0.627880237245441, 'adp': 0.18699774059203134}, {'adp': 1.0}, {'ahh': 0.9744377054874274, 'propn': 0.2246578690462405}, {'gon': 0.5533616072219866, 'dance': 0.5991467343171225, 'leave': 0.474588968219258, 'adv': 0.15898888065939193, 'adp': 0.2903480144259316}, {'city': 0.6296984107997532, 'alright': 0.7019230835128306, 'adv': 0.19387775835727405, 'adj': 0.2045854919838634, 'adp': 0.17703131799821173}, {'eventually': 0.6295653026991546, 'bust': 0.47346645291764045, 'gun': 0.447962673126964, 'rap': 0.39884184670276784, 'adv': 0.14046947142557428}, {'forget': 0.74074182800538, 'love': 0.5115063947845417, 'num': 0.3854338043797843, 'adv': 0.20274006702942285}, {}, {'apollo': 0.3845926223355645, 'yellow': 0.34593089624193213, 'pair': 0.34593089624193213, 'bright': 0.3674845359991027, 'phat': 0.3674845359991027, 'live': 0.24794068985686135, 'spit': 0.2717603093792606, 'kid': 0.25417000370763576, 'real': 0.2487762366171055, 'propn': 0.08866832481774103, 'adj': 0.25956631390661755, 'adp': 0.07486905386632606}, {'tint': 0.5194791840630183, 'jeep': 0.47813613638670543, 'seat': 0.4689417559085421, 'heat': 0.40632468501497704, 'propn': 0.125342278426288, 'adp': 0.31750654411872337}, {'ah': 0.6571744990409473, 'know': 0.37166758171570147, 'num': 0.33153125217526014, 'propn': 0.5657489861616957}, {'beginning': 0.5533564512322027, 'humble': 0.4395167982254061, 'comin': 0.46527807255163195, 'actually': 0.4601925495091861, 'adv': 0.12346564825168448, 'adj': 0.1302845700543442, 'cconj': 0.16562965821363074, 'adp': 0.11273746211373632}, {'country': 0.5109912661663591, 'bass': 0.453445183551908, 'sound': 0.3508181472507832, 'drum': 0.44653475313840757, 'place': 0.3620275197332115, 'adv': 0.11401307021485223, 'cconj': 0.1529489871796386, 'adp': 0.20821247635805123}, {'adj': 1.0}, {'actin': 0.5594269717201931, 'word': 0.39865099693340666, 'shit': 0.3127483107768776, 'nigga': 0.32567430403593195, 'niggas': 0.34236817870175656, 'propn': 0.27918384179915195, 'adv': 0.25816776057244667, 'adj': 0.13621309313303345, 'cconj': 0.17316653883445432, 'adp': 0.11786751431942231}, {'summer': 0.5511541563811326, 'powder': 0.5965164361318915, 'smell': 0.5145306965486035, 'propn': 0.2750552665147821}, {'rhyme': 0.49516977867468437, 'tell': 0.41737653168542727, 'heart': 0.5532118557537476, 'hold': 0.4966900331347028, 'adv': 0.16691127800017114}, {'heheheheh': 0.3719090032725945, 'hustling': 0.3719090032725945, 'bootleg': 0.3719090032725945, 'grandmama': 0.3719090032725945, 'haha': 0.33452231621406003, 'use': 0.25285750850753785, 'perpetrator': 0.30624037924401626, 'nigga': 0.20004488757822383, 'fake': 0.27051931978722815, 'know': 0.16898820735536188, 'propn': 0.08574410009364153, 'adj': 0.16733732176471275}, {'hate': 1.0}, {'facin': 0.538650621646067, 'pen': 0.3893915101630496, 'mind': 0.35335712949505216, 'time': 0.2957166145554854, 'propn': 0.24837319027778432, 'like': 0.4130208256108595, 'adj': 0.12118065386962965, 'adp': 0.31457906417114434}, {'uh': 0.8779526083862562, 'intj': 0.47874755083213627}, {'champ': 1.0}, {'pick': 0.6702194087945007, 'bone': 0.7421630171836574}, {'propn': 1.0}, {'ashe': 0.7740451532134612, 'niggas': 0.4376903375570413, 'man': 0.3952868053907863, 'adj': 0.17413754671698478, 'adp': 0.1506841912852477}, {'word': 0.48701290444612594, 'blast': 0.5660080872846646, 'num': 0.5995975338643679, 'adp': 0.28798623823903885}, {'niacin': 0.6027886484966398, 'killin': 0.5421924532836333, 'high': 0.3998919824996649, 'intj': 0.23620392209997673, 'like': 0.2310999516812255, 'adj': 0.2712196723983731}, {'know': 1.0}, {'guest': 0.5859318500287618, 'shit': 0.32756589437114453, 'mad': 0.46127299347221495, 'star': 0.46423401193482167, 'propn': 0.29241118714836106, 'adj': 0.1426666816084396, 'adp': 0.12345191457449675}, {'tryna': 0.6621565650797695, 'shit': 0.4431207782191264, 'thing': 0.5409479200073665, 'propn': 0.19778230126477808, 'adv': 0.18289387189938672}, {'intj': 1.0}, {'choose': 0.6774985750555839, 'people': 0.5223953562319984, 'right': 0.486345986008058, 'adv': 0.1776692277203536}, {'adv': 1.0}, {'bell': 0.2462222851059277, 'ma': 0.25104988116224525, 'hook': 0.2462222851059277, 'hooker': 0.27275743768465993, 'cheap': 0.2462222851059277, 'jar': 0.2854555442325574, 'cooker': 0.2854555442325574, 'carvel': 0.2854555442325574, 'bar': 0.21334460234939284, 'barred': 0.2637479877101428, 'fall': 0.20170820371842418, 'kick': 0.2028071720610984, 'bleed': 0.23835177461434776, 'propn': 0.3290607183690751, 'like': 0.10943929127366388, 'adv': 0.06085801255992511, 'adj': 0.0642191582274671, 'cconj': 0.16328253182315786, 'adp': 0.16670980104455668}, {'shogun': 0.48350810008618805, 'ninja': 0.48350810008618805, 'house': 0.41158490269916836, 'night': 0.36594666167758505, 'send': 0.38308363864325895, 'num': 0.21210093387771678, 'propn': 0.12064814153310723, 'adv': 0.11156612902847624, 'adp': 0.10187191678518123}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'adp': 1.0}, {'wonder': 0.9725072022049688, 'adp': 0.2328728014592175}, {}, {'rollin': 0.654313172341686, 'hood': 0.5291256987364384, 'ya': 0.46009232821067236, 'adp': 0.28322308690945025}, {'propn': 1.0}, {'uptown': 0.4663820477939029, 'raw': 0.3968068494154491, 'use': 0.33185079916645277, 'cool': 0.37674242050010837, 'score': 0.4663820477939029, 'adv': 0.10405980039737416, 'adj': 0.32942085219710826, 'adp': 0.1900356572209854}, {'yo': 0.5084302508873562, 'intj': 0.7136006209530001, 'yeah': 0.48194692006289735}, {'baller': 0.5790918219085647, 'motherfuckin': 0.4929502755623625, 'bum': 0.5790918219085647, 'adv': 0.26724281521186405, 'adp': 0.12201076648340002}, {'thousand': 0.512083039787908, 'order': 0.5049940333716313, 'water': 0.45194399606225344, 'num': 0.4971414556011723, 'adv': 0.1307494190784228, 'adp': 0.11938833099307537}, {'know': 1.0}, {'write': 0.9640828753718637, 'adp': 0.26560159904398084}, {'ayy': 0.9521932312059845, 'propn': 0.30549640005326834}, {'dust': 0.5214895963824879, 'competition': 0.5214895963824879, 'crush': 0.4690661052255848, 'light': 0.3577352798198994, 'propn': 0.24046019728776885, 'like': 0.19993113809761226, 'adp': 0.10151893306009123}, {'unite': 0.5578576247112043, 'black': 0.3832515218847934, 'people': 0.40541599064286793, 'come': 0.3408754231883509, 'right': 0.37743911265756724, 'adj': 0.29099841270919397, 'cconj': 0.18497189505107378}, {'know': 0.8366244169062934, 'adj': 0.4142256179854716, 'adp': 0.35843649708248004}, {'mustache': 0.6401927495262831, 'rat': 0.5892426437709692, 'propn': 0.15446859146502373, 'like': 0.25686647220852293, 'adp': 0.3912868767563464}, {}, {'far': 0.6703092610474877, 'propn': 0.18767957548522304, 'adv': 0.6942065901230058, 'adj': 0.18313678420635962}, {'weekend': 0.8175123317667756, 'break': 0.5427942505907418, 'adj': 0.19247854149199164}, {'pearl': 0.23691349934356956, 'diamond': 0.5905624591192516, 'rule': 0.38820000480360706, 'shine': 0.19989872531953404, 'black': 0.4682438144028961, 'love': 0.2833493136022716, 'baby': 0.1641603541870447, 'adj': 0.17776603479881395, 'cconj': 0.15066162515606446, 'adp': 0.15382398395205954}, {'yard': 0.40395799065255344, 'nowadays': 0.429127078184609, 'flash': 0.3949747544787357, 'need': 0.2620958862035988, 'green': 0.3949747544787357, 'fuck': 0.23350528465887418, 'man': 0.22934740070783635, 'just': 0.21683837199171604, 'propn': 0.10354171517207454, 'like': 0.17217995484015725, 'adv': 0.1914948412453991, 'adj': 0.10103548400938048, 'adp': 0.17485545749430423}, {'just': 0.6128879221363667, 'want': 0.7423807131711153, 'adv': 0.27062755146310036}, {'agent': 0.3986711866633929, 'custom': 0.3986711866633929, 'negro': 0.35859419265710885, 'illegal': 0.3809368342988642, 'far': 0.32827711704514156, 'away': 0.3105427646806128, 'place': 0.2698864470441675, 'propn': 0.09191415597073223, 'adv': 0.08499514749475232, 'think': 0.243795664441665, 'adj': 0.17937874064348577, 'adp': 0.15521948584448206}, {'game': 0.4610006457510007, 'shit': 0.36430231160591553, 'ass': 0.47543793412537527, 'stay': 0.4734789415863109, 'know': 0.3204641039884252, 'propn': 0.16260250723306355, 'adp': 0.274594019856708}, {'grand': 0.5752676921797645, 'nigga': 0.37578114647575117, 'num': 0.2831611850353409, 'like': 0.2678422050108675, 'adv': 0.1489441688348362, 'adj': 0.15717025159249945, 'young': 0.5050373938908741, 'adp': 0.2720042024458443}, {'ayy': 1.0}, {'perpetrator': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'act': 0.6348028658701971, 'rough': 0.727154705121426, 'adv': 0.17972861456569678, 'adj': 0.18965490083056588}, {'jersey': 0.7295189004527668, 'know': 0.6629583588166504, 'propn': 0.16819152284618735}, {'wanna': 1.0}, {'dig': 0.5745858303096957, 'fuckin': 0.47238421508034173, 'ho': 0.48318455148138095, 'ya': 0.4413436488962046, 'adp': 0.135840898623969}, {'time': 0.6756452758004702, 'fuck': 0.6398808278384341, 'adj': 0.276870261173861, 'adp': 0.2395805625062785}, {'workin': 0.5737018951795066, 'verse': 0.5045541959767724, 'makin': 0.5160296876469472, 'think': 0.3508305576264841, 'cconj': 0.16408071212716993}, {'night': 0.7154489588893367, 'play': 0.6986650035776547}, {'believe': 1.0}, {'wet': 0.7130102089230623, 'water': 0.6463152895861054, 'adv': 0.18698190349063873, 'adj': 0.19730878385347472}, {'west': 0.5084160677580379, 'wind': 0.4901704939800265, 'breeze': 0.5523773334502089, 'feel': 0.3352702506469787, 'propn': 0.26656018431447887, 'adp': 0.11253798263968916}, {'boo': 0.40454288014661216, 'screw': 0.44758704799895366, 'claim': 0.437633586863004, 'shit': 0.25703445955759757, 'fuck': 0.2587247770090873, 'drop': 0.33832046566614793, 'propn': 0.34417388721847064, 'like': 0.19077606952893184, 'adj': 0.11194771505287525, 'cconj': 0.1423181714785602, 'adp': 0.09687026851474839}, {'mathematic': 0.6240854723418948, 'simple': 0.604136541823293, 'check': 0.46801863196267446, 'adj': 0.16277260881786373}, {'stripper': 0.5301799273053216, 'thigh': 0.4879852548640309, 'truth': 0.3860835386485266, 'eye': 0.37099674893293977, 'nigga': 0.29845298481000343, 'adp': 0.32404685624401797}, {'little': 0.8339751858499521, 'intj': 0.47854207293302226, 'adj': 0.27474146723693504}, {'dro': 0.2242196439655819, 'dough': 0.18902948560564192, 'toe': 0.21827871548982686, 'jet': 0.19086633776841752, 'stack': 0.18902948560564192, 'wet': 0.1972869872659137, 'connect': 0.21827871548982686, 'setback': 0.24267385336856565, 'suffer': 0.2318788328873644, 'surrender': 0.24267385336856565, 'black': 0.14380446678796824, 'battle': 0.19283937332985554, 'head': 0.15348668902558046, 'lot': 0.17057527620265817, 'mo': 0.21827871548982686, 'got': 0.3683507872003913, 'just': 0.1171686224867052, 'bottle': 0.19086633776841752, 'propn': 0.11189753939940332, 'adv': 0.15521136703764007, 'adj': 0.16378358278915092, 'cconj': 0.1388111108222848, 'adp': 0.33069103568927066}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {}, {'word': 0.8372752795276139, 'like': 0.48753178229595723, 'adp': 0.24755376697453685}, {'lookin': 0.6626121428007656, 'black': 0.5173687104453455, 'time': 0.47931313469507747, 'adv': 0.18613586120177847, 'adp': 0.16996213033658036}, {'krill': 0.6033655150964438, 'come': 0.37505265238419927, 'thing': 0.44871091445411393, 'money': 0.45574891120587707, 'adj': 0.16008740892104428, 'cconj': 0.203517752047217, 'adp': 0.13852636724820394}, {'adv': 0.5976534819625343, 'cconj': 0.8017545232164636}, {'blaze': 0.5957202379982605, 'honey': 0.5712718525901572, 'yo': 0.36981297937028856, 'just': 0.3197733664369188, 'adv': 0.28239904901464574}, {'black': 0.9319503465797414, 'propn': 0.36258592293399916}, {'shatter': 0.44659198362971536, 'raise': 0.4036435104984898, 'punk': 0.38674889923045563, 'sure': 0.3567870376134974, 'hand': 0.3375683200393395, 'niggas': 0.2807522100577274, 'propn': 0.11446957613692019, 'like': 0.19035194092614882, 'adv': 0.10585266659596355, 'adj': 0.22339767136601582, 'cconj': 0.14200177326693503, 'adp': 0.1933098178964543}, {'fatty': 0.5915270035846198, 'leather': 0.5719882771887039, 'butter': 0.5339804177690392, 'propn': 0.14272630098490516, 'adv': 0.13198231410029218}, {'adv': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'hour': 0.39375876544412663, 'guy': 0.36910105880918687, 'half': 0.34568758757870127, 'wait': 0.34568758757870127, 'man': 0.48840543794888835, 'just': 0.23088345389981013, 'adv': 0.40779673767724695, 'adj': 0.10757976690313828}, {'dk': 0.9673146071327873, 'propn': 0.2535792791762402}, {}, {'come': 0.6689594603917908, 'know': 0.5767111060777147, 'propn': 0.2926214531683609, 'adv': 0.2705938308359516, 'adp': 0.24708137189619195}, {'fit': 0.5713545796276268, 'problem': 0.5333888285671304, 'people': 0.3876336017515742, 'wanna': 0.3832551451744978, 'adj': 0.27823461685265005, 'adp': 0.12038058138070992}, {'party': 0.43440127341926477, 'body': 0.7363057593836505, 'ghost': 0.4029470759057364, 'fuck': 0.2663732245129563, 'propn': 0.1181161299294791, 'adv': 0.10922471929201166, 'adp': 0.09973395699478417}, {'adj': 1.0}, {'count': 0.5065453028765348, 'bust': 0.4138884456552696, 'brother': 0.39882341277200767, 'shit': 0.595016479880312, 'adv': 0.1227936865053066, 'adj': 0.12957549632849827, 'cconj': 0.16472821885814035}, {'straight': 0.9561267067287048, 'adv': 0.29295344456094274}, {}, {'nation': 0.5248647367812398, 'bass': 0.4657562715214986, 'past': 0.4657562715214986, 'push': 0.4657562715214986, 'know': 0.2495910355601037, 'adp': 0.106932734308868}, {'adv': 1.0}, {'shit': 0.4231912912083912, 'snitch': 0.6323758792905229, 'man': 0.4183892336554763, 'rap': 0.4959438753509271}, {'happen': 0.9652092457071066, 'adp': 0.26147870276853946}, {}, {'piss': 0.32422684664333545, 'art': 0.31799208469498746, 'rub': 0.2929544909235449, 'ball': 0.28210431434562183, 'throw': 0.25913169256475843, 'walk': 0.26815693283169795, 'shit': 0.19042750557242216, 'sick': 0.28455633133093555, 'crack': 0.2552767872020308, 'propn': 0.25498594600499835, 'adv': 0.07859713541363124, 'adj': 0.0829380004873405, 'cconj': 0.3163151093312933, 'adp': 0.35883833687406097}, {'fat': 0.42782657887548275, 'action': 0.5121269326637037, 'pack': 0.4142572527287965, 'remain': 0.4564074296229069, 'rap': 0.33552508635162265, 'adj': 0.2493923142831471}, {'sit': 1.0}, {'spin': 0.5973915388188585, 'thought': 0.48699837704869353, 'web': 0.5776591009800387, 'like': 0.23969321304742644, 'adp': 0.12170890178417126}, {'94': 0.41871099931433603, 'premo': 0.41871099931433603, 'gang': 0.3404002138803376, 'word': 0.2756858623834644, 'shit': 0.21628012579609338, 'real': 0.27084593044720884, 'man': 0.21382594104985508, 'num': 0.169708606997171, 'propn': 0.48267180304320795, 'adj': 0.09419774273027197, 'cconj': 0.11975278366734138, 'adp': 0.0815109145144653}, {'stash': 0.9763670287315536, 'adp': 0.21611900704453949}, {'michael': 0.38368110506290803, 'psycho': 0.3967873878908577, 'poor': 0.3266074555248955, 'turn': 0.27047318398665415, 'pick': 0.3234642631837324, 'shit': 0.21449737597823226, 'propn': 0.5744318938064182, 'adj': 0.18684258263993395}, {'outcome': 0.28334282453638754, 'shout': 0.24919180539749333, 'shark': 0.27073869948701, 'impression': 0.28334282453638754, 'semi': 0.24919180539749333, 'floss': 0.25485937988189306, 'cut': 0.19264217869242123, 'son': 0.18870202622023494, 'crazy': 0.2013061512696125, 'guess': 0.21336007439379148, 'try': 0.17975925718009586, 'shit': 0.14635732482428754, 'suede': 0.25485937988189306, 'nigga': 0.15240632246521046, 'just': 0.13680455467940048, 'rhyme': 0.1792090552548973, 'propn': 0.3266252671228811, 'like': 0.10862930684393293, 'adv': 0.12081517786427644, 'adj': 0.254975432065115, 'adp': 0.1654759448896226}, {'baller': 0.9743967868319501, 'adv': 0.2248352770620552}, {'afraid': 0.49041960060961076, 'bad': 0.37102998846645957, 'dream': 0.721527340702258, 'adv': 0.2188461841179094, 'adj': 0.23093290651755582}, {'sucker': 0.5348332646183163, 'fucking': 0.40590745832000474, 'pussy': 0.43480433512499955, 'game': 0.3495910144727567, 'shit': 0.276261683932372, 'play': 0.3652358947216072, 'propn': 0.12330649855558701, 'adv': 0.11402437329817641}, {'intj': 0.3976798065641757, 'yeah': 0.5371647734522826, 'heart': 0.7171278334515672, 'adp': 0.19756631317635853}, {'lip': 0.6476936587924855, 'say': 0.3762779133414313, 'stay': 0.5128155604531575, 'adv': 0.3257087969009985, 'cconj': 0.2184698232738969, 'adp': 0.148703642149451}, {'adv': 0.5246183212332317, 'cconj': 0.703777564601119, 'adp': 0.47903314769496214}, {'friend': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'control': 0.10161623770576819, 'allah': 0.12085246221912163, 'child': 0.09385100743443768, 'safety': 0.12647869721700403, 'forgiveness': 0.12647869721700403, 'seek': 0.1112343499624449, 'earth': 0.09599000270788577, 'sign': 0.1028236078213304, 'throne': 0.6169416469279824, 'save': 0.09599000270788577, 'gold': 0.09385100743443768, 'silver': 0.12647869721700403, 'people': 0.07928367263721003, 'act': 0.09523976579115476, 'lie': 0.0884467932187662, 'devil': 0.09851989715056347, 'die': 0.08599170220713918, 'soul': 0.08676278962043865, 'catch': 0.4960329021513613, 'propn': 0.058319653347780706, 'like': 0.04848999875570304, 'adv': 0.2966124333278667, 'adj': 0.028454011957692062, 'cconj': 0.10852002520467205, 'adp': 0.29546090626628096}, {'talk': 0.44908330913392974, 'revolve': 0.6205726685850408, 'science': 0.5694969565140917, 'adv': 0.14319282428270172, 'adp': 0.26150100584451014}, {'tell': 1.0}, {'num': 1.0}, {'crazy': 0.7369851119284143, 'think': 0.6343442637720055, 'adj': 0.2333673066550133}, {'beat': 0.4843572940064496, 'street': 0.46624976030035176, 'food': 0.49932788120429783, 'adv': 0.2996748305991577, 'cconj': 0.20100748860195206, 'adp': 0.41045319495155963}, {'diet': 0.6338509661383317, 'change': 0.4810561564499937, 'suggest': 0.6056549571059932}, {'adv': 1.0}, {'drum': 0.7485245349319246, 'adv': 0.19111968275463817, 'kill': 0.5540711368335673, 'cconj': 0.25638781459292564, 'adp': 0.17451289730256095}, {'intj': 1.0}, {'flavor': 1.0}, {'gorilla': 1.0}, {'shit': 0.8665474137682714, 'adj': 0.37741244159753756, 'adp': 0.32658142724120975}, {'straight': 0.5356672462801341, 'time': 0.42263701352394195, 'actually': 0.6117467824663609, 'adv': 0.32825265486652033, 'adj': 0.1731909102412953, 'adp': 0.14986505058601518}, {'chalupa': 0.42057044890202344, 'horsemeat': 0.42057044890202344, 'course': 0.36987952537781815, 'beef': 0.32760107656155646, 'turn': 0.273932289715509, 'teach': 0.3143271763108889, 'heat': 0.3143271763108889, 'hold': 0.2668196436956824, 'adv': 0.08966398508890286, 'adj': 0.09461606456601958, 'cconj': 0.12028459263481368, 'adp': 0.16374579107737997}, {'couple': 0.48399187668659593, 'grey': 0.5796397563527623, 'hair': 0.4606073782591353, 'head': 0.3666113419110683, 'adv': 0.12357694318807695, 'adj': 0.13040201173259597, 'adp': 0.22567817280475172}, {'flash': 0.5030943316687904, 'dark': 0.4499189037796244, 'skin': 0.4776478132414623, 'light': 0.3924135635489539, 'face': 0.36519907365993404, 'adj': 0.12869272966474768, 'adp': 0.11136001545571382}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {'lie': 0.956534665080018, 'adv': 0.29161864566631795}, {'pre': 0.5343610375956575, 'count': 0.4699550514837165, 'sale': 0.5343610375956575, 'order': 0.44000797336593755, 'adj': 0.12021562277309276}, {'propn': 0.6275930355070696, 'cconj': 0.7785415735739628}, {'spice': 0.6092273688340238, 'make': 0.3384365064907079, 'thing': 0.40204704080857306, 'sugar': 0.5323793394521469, 'adj': 0.14343905386326336, 'cconj': 0.182352840831029, 'adp': 0.12412026146914111}, {'jacket': 0.31381020745513044, 'invasion': 0.2998507817911584, 'sneak': 0.28994641166178897, 'diamond': 0.2345363937585745, 'sparkle': 0.31381020745513044, 'army': 0.27598698599781685, 'island': 0.23285663721174363, 'shine': 0.23816376454050336, 'earth': 0.23816376454050336, 'deep': 0.20982247625805867, 'propn': 0.1446986956576423, 'like': 0.36093010689978305, 'adv': 0.06690311655386245, 'hit': 0.19291408954319147, 'adp': 0.30544883028543324}, {'prevail': 0.5812214498303527, 'excel': 0.5812214498303527, 'hard': 0.3870846754108118, 'tell': 0.30985838992113085, 'adv': 0.24782830817996884, 'adj': 0.13075784655786732}, {'nigga': 0.5656500714565695, 'rhyme': 0.6651273600131415, 'num': 0.42623251871765505, 'adj': 0.23658282188428306}, {'trife': 0.6294737678767129, 'cormega': 0.6812820774459905, 'propn': 0.1570704611249126, 'adv': 0.14524669099536477, 'adj': 0.15326856462594332, 'adp': 0.26525180979661034}, {'make': 0.8784707444950256, 'adv': 0.3528341950207421, 'adp': 0.32217570034132037}, {'risk': 0.4760548698896259, 'rule': 0.3796911514613133, 'bend': 0.4368735738137037, 'law': 0.4302156920214909, 'cut': 0.350304327329053, 'nigga': 0.2771386548587174, 'adj': 0.23182617073079925}, {'black': 0.7209484662459307, 'say': 0.5992987194261465, 'cconj': 0.347957402438605}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'humor': 0.6097827364530319, 'attempt': 0.6097827364530319, 'bear': 0.48971793313950696, 'adp': 0.1284771365234836}, {'frustrate': 0.4917882567478822, 'dust': 0.4917882567478822, 'uh': 0.35339850000255035, 'bust': 0.35339850000255035, 'rapper': 0.35136225129696025, 'intj': 0.1927081994265651, 'rhyme': 0.3110469058866977, 'adp': 0.09573694175848713}, {'oh': 0.4656939186560836, 'drug': 0.5733876614418122, 'intj': 0.29604774833939673, 'adv': 0.48321483687495514, 'cconj': 0.21607820855077992, 'adp': 0.2941515319518158}, {'bring': 0.6590926767760689, 'word': 0.6296826939216588, 'like': 0.36665399487459877, 'adp': 0.1861757138786275}, {'drank': 0.8319828088939719, 'head': 0.3408719540287077, 'shot': 0.3603532812027963, 'propn': 0.24850840908895985}, {'booth': 0.5755719837062038, 'kiss': 0.47866784243321253, 'line': 0.4303665153442272, 'hold': 0.3821559032408133, 'like': 0.2309384869886038, 'adp': 0.234527037905906}, {'silent': 0.49645675473945605, 'maintain': 0.42822330509242257, 'note': 0.4209503350381698, 'make': 0.26352228139727474, 'think': 0.3035935588955671, 'adj': 0.22337653291283788, 'cconj': 0.42596501009904725}, {'broke': 0.36272203423266114, 'slick': 0.4277839664180631, 'title': 0.40875457114160163, 'belt': 0.37622360504890057, 'check': 0.27671483816912196, 'win': 0.36272203423266114, 'hold': 0.271396066453028, 'propn': 0.0986261448694224, 'adv': 0.18240375797357355, 'adj': 0.19247779054656577, 'cconj': 0.1223476834157902}, {'throne': 0.6745915052619197, 'king': 0.5718607215779657, 'just': 0.4006394872168459, 'adv': 0.17690686914989148, 'adp': 0.16153506453705838}, {'gettin': 0.48009906822787507, 'block': 0.4313299232977144, 'knock': 0.4596480732332663, 'niggas': 0.345163745007592, 'snitch': 0.4711566519228981, 'adv': 0.13013789923074978, 'adp': 0.11882994737273185}, {'sun': 0.418984805228077, 'hand': 0.6719206615097482, 'walk': 0.35942678027530844, 'right': 0.2883774133708688, 'propn': 0.1139243062140672, 'adv': 0.21069688575468795, 'cconj': 0.14132535514285954, 'adp': 0.2885834948215317}, {'boo': 0.7742497733528462, 'baby': 0.5935707729168057, 'propn': 0.21957009359658322}, {'ball': 0.36067551067035675, 'switch': 0.39356300634842933, 'flick': 0.41452993640804037, 'light': 0.3233333379130407, 'sack': 0.4503731400899219, 'like': 0.3614091529714323, 'adj': 0.10603774617605057, 'cconj': 0.1348048786556775, 'adp': 0.27526881472983483}, {}, {'know': 0.49504998827517765, 'propn': 0.5023737029976378, 'adv': 0.23227829561621421, 'hit': 0.6697708302328598}, {'talk': 0.44908330913392974, 'revolve': 0.6205726685850408, 'science': 0.5694969565140917, 'adv': 0.14319282428270172, 'adp': 0.26150100584451014}, {'crazy': 0.9533464367514751, 'adj': 0.3018784052118761}, {'plotting': 0.3418864931443594, 'manhattan': 0.32667813161505144, 'admire': 0.3075178620645701, 'bus': 0.3158876273870523, 'tour': 0.29489731514997547, 'quick': 0.27468040010043715, 'plan': 0.2594720385711291, 'style': 0.25194519489482464, 'hoe': 0.2688984493926684, 'sick': 0.26388989587243805, 'flow': 0.25369008786336034, 'propn': 0.1576447433693747, 'adj': 0.23074341952018032, 'adp': 0.06655540638286277}, {'know': 1.0}, {'project': 0.4153312751864196, 'imagine': 0.4217588104578714, 'pocket': 0.4217588104578714, 'pick': 0.38745502207390853, 'rock': 0.3217530504567909, 'niggas': 0.28126480504963586, 'propn': 0.3440357211397753, 'adv': 0.10604593149231502, 'adp': 0.09683138065706978}, {'adv': 1.0}, {'place': 0.22312768439511418, 'um': 0.8893995165902715, 'intj': 0.3874632574838661, 'adv': 0.07026944351237337, 'adp': 0.06416358588731133}, {'eardrum': 0.38329282156567757, 'burst': 0.38329282156567757, 'loud': 0.29856387036000426, 'bad': 0.2770830750515393, 'nightmare': 0.38329282156567757, 'hand': 0.2605972617954724, 'right': 0.4473764156574856, 'man': 0.19573870379126931, 'propn': 0.08836865407480585, 'adv': 0.08171653982649342, 'adj': 0.2586890623030801, 'adp': 0.07461602027128415}, {'bring': 0.6882891787853834, 'shit': 0.515879572213449, 'man': 0.5100257575258443}, {'rain': 0.5424324959597202, 'fall': 0.4443671065414155, 'lie': 0.43976588134350175, 'truth': 0.43757544949554333, 'like': 0.24109689298065562, 'adv': 0.13407138853343964, 'cconj': 0.17985730098588398, 'adp': 0.1224216476352438}, {'crazy': 0.5305554262714929, 'way': 0.4455760406851508, 'shit': 0.38573422804207536, 'ayy': 0.5366269522904097, 'propn': 0.1721684178416651, 'adv': 0.1592081210325223, 'adj': 0.1680010747248409}, {'dro': 0.2242196439655819, 'dough': 0.18902948560564192, 'toe': 0.21827871548982686, 'jet': 0.19086633776841752, 'stack': 0.18902948560564192, 'wet': 0.1972869872659137, 'connect': 0.21827871548982686, 'setback': 0.24267385336856565, 'suffer': 0.2318788328873644, 'surrender': 0.24267385336856565, 'black': 0.14380446678796824, 'battle': 0.19283937332985554, 'head': 0.15348668902558046, 'lot': 0.17057527620265817, 'mo': 0.21827871548982686, 'got': 0.3683507872003913, 'just': 0.1171686224867052, 'bottle': 0.19086633776841752, 'propn': 0.11189753939940332, 'adv': 0.15521136703764007, 'adj': 0.16378358278915092, 'cconj': 0.1388111108222848, 'adp': 0.33069103568927066}, {'steels': 0.44062133075648574, 'bobby': 0.44062133075648574, 'ahh': 0.2305671347392925, 'tony': 0.20738904215043774, 'starks': 0.21303358455717789, 'mr': 0.3375731687259539, 'rza': 0.17232194178620852, 'line': 0.16473062629191432, 'num': 0.0934516344686688, 'propn': 0.5315755011421323, 'adp': 0.08976949753102033}, {'fallin': 0.8610791044996918, 'asleep': 0.2581726299946874, 'deep': 0.19191403558367925, 'make': 0.1523553514749181, 'foot': 0.2280838425651103, 'beat': 0.19780927454033226, 'num': 0.11633524123505615, 'adv': 0.06119290611738678, 'adj': 0.12914509544594427, 'cconj': 0.0820905269509512}, {'autograph': 0.5427824976785118, 'book': 0.5115786536711858, 'wish': 0.5055716209353242, 'bring': 0.43367243101986774}, {'adj': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'greco': 0.3637048810183645, 'dk': 0.34619436512302754, 'mr': 0.2881635058192249, 'good': 0.7492017060735535, 'propn': 0.18150809863811443, 'adj': 0.26567203228738295}, {'cause': 0.9524297887650679, 'adp': 0.30475809664868314}, {'hol': 0.6655783410100571, 'lil': 0.6900034678140811, 'bitch': 0.26173715050382207, 'propn': 0.11132991704381165}, {'fucking': 0.36259699796136075, 'drama': 0.4121017500347498, 'use': 0.3248289633325998, 'bring': 0.32926111016749354, 'bomb': 0.383849793695366, 'ya': 0.30217832892767754, 'propn': 0.11014965428433764, 'like': 0.3663366493169942, 'adv': 0.10185793486886187, 'adj': 0.10748347770354019, 'adp': 0.2790218632275735}, {'laughin': 0.6193110373867142, 'cognac': 0.572215335023775, 'sip': 0.48709668555035696, 'propn': 0.14278295795883583, 'cconj': 0.1771250834213007}, {'fry': 0.5042141897482711, 'rag': 0.5733152920767688, 'let': 0.3212599097063029, 'll': 0.4144506632130662, 'propn': 0.26435715917861036, 'adv': 0.2444571839710351, 'adp': 0.11160789623112531}, {'propn': 1.0}, {'gorilla': 0.9686853572241145, 'propn': 0.24829151958854698}, {'nah': 1.0}, {'murk': 0.5050166122073787, 'work': 0.7548815953173015, 'just': 0.24383385339570302, 'cause': 0.3072449673298421, 'adv': 0.10766757889154391, 'adp': 0.09831211975188041}, {'voice': 0.4714930737112754, 'shoot': 0.4424451730837137, 'head': 0.39602455398039577, 'sayin': 0.4975618882500436, 'just': 0.3023171048602227, 'adv': 0.2669830319662642, 'adp': 0.12189216141298848}, {'playin': 0.2992843055635729, 'roof': 0.2992843055635729, 'rage': 0.3251625531421657, 'change': 0.25826825356712535, 'dog': 0.2841465011457181, 'tear': 0.2766545772303054, 'going': 0.24453946238430732, 'motherfuckin': 0.26765093184603284, 'game': 0.2224355796376081, 'cage': 0.3403003575600205, 'intj': 0.13334736702187483, 'num': 0.13792783026173766, 'propn': 0.1569133721623918, 'like': 0.1304659541704407, 'beginning': 0.3251625531421657, 'adj': 0.07655763900387424, 'adp': 0.06624663168567278}, {'mood': 0.6616781646039902, 'tv': 0.6616781646039902, 'adv': 0.32080013633683957, 'adp': 0.14646257371374743}, {'lye': 0.9206279170659165, 'intj': 0.3904410817509757}, {'motherfucker': 0.5396905050363985, 'ass': 0.493690520217949, 'bitch': 0.3969553689425237, 'adj': 0.16475809704918457, 'young': 0.5294195250884921}, {'life': 0.5582103694883039, 'bitch': 0.5310774132743871, 'cause': 0.596095585691575, 'propn': 0.22589381847349257}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'dive': 0.29519986733798953, 'pool': 0.6063880112342594, 'swimming': 0.31320564327350875, 'liquor': 0.5979934967348662, 'propn': 0.08371595928328733, 'adj': 0.16337922259525683, 'cconj': 0.10385130329084115, 'adp': 0.21206224470581844}, {'dot': 0.61114969876346, 'good': 0.4708698529461583, 'niggas': 0.41968408817755015, 'propn': 0.3422310347990918, 'adj': 0.3339473195561184}, {'propn': 1.0}, {'error': 0.3831629770923707, 'repeat': 0.3831629770923707, 'advise': 0.4010009665882009, 'jay': 0.3221744881761098, 'jameson': 0.33483074313840994, 'jonah': 0.345887043772371, 'doom': 0.2568266044681555, 'propn': 0.36980515894189303, 'adv': 0.08549184751964416}, {'suit': 0.669569041704688, 'clothe': 0.5629929721988043, 'street': 0.46487359369799774, 'adp': 0.1364139051846661}, {'edge': 0.39487914259959866, 'sword': 0.35040920883098087, 'soakin': 0.41326257319946064, 'choke': 0.35646340446983465, 'blade': 0.35646340446983465, 'double': 0.3283967124197422, 'place': 0.2797643052927807, 'num': 0.1675002943237598, 'adv': 0.088105974392391, 'adj': 0.18594401204668867, 'cconj': 0.11819451508846329, 'adp': 0.16090052724313925}, {'farmer': 0.5248465745451664, 'hang': 0.4615873568762424, 'hammer': 0.4615873568762424, 'swing': 0.4527112032872205, 'time': 0.2881382587311324, 'adp': 0.1021724395609787}, {'tattoo': 0.43930384735309264, 'dag': 0.47546038139805263, 'spell': 0.41011269162735087, 'type': 0.3553509751403486, 'boo': 0.3865358583475421, 'adp': 0.37023350775705133}, {'bra': 0.37584410740549923, 'candy': 0.38868268378018705, 'start': 0.2816702400225568, 'car': 0.3112715057411142, 'dream': 0.571847419753066, 'coat': 0.3508697669029493, 'propn': 0.1875662188764161, 'adv': 0.08672341202540328, 'cconj': 0.11633980217401439, 'adp': 0.1583756699297848}, {'feud': 0.9614504788567761, 'cconj': 0.27497813859664516}, {'loc': 0.5144872226223981, '80': 0.5144872226223981, 'shit': 0.2876246908451202, 'stick': 0.41929999410608504, 'niggas': 0.3148651428674001, 'propn': 0.25675651448593173, 'adp': 0.2167980206357877}, {'adv': 0.5246183212332317, 'cconj': 0.703777564601119, 'adp': 0.47903314769496214}, {}, {'intj': 0.5660901871057401, 'yeah': 0.7646445760910003, 'adv': 0.3079944355296093}, {'propn': 0.734200756444857, 'adv': 0.6789324334834799}, {'demonstrate': 0.8114354572771799, 'nigga': 0.472382797358222, 'intj': 0.3441322295766486}, {'view': 0.7105828664204111, 'just': 0.4046258585564584, 'baby': 0.5223146078417015, 'adv': 0.17866709622550672, 'adp': 0.16314234183287932}, {'hol': 0.9965209201756615, 'propn': 0.0833430000195145}, {'hat': 0.4441898562880298, 'waste': 0.4441898562880298, 'ghost': 0.37811535886922537, 'throne': 0.39083497311500676, 'king': 0.33131631216831636, 'propn': 0.332511579264893, 'adv': 0.10249371791483311, 'adp': 0.2807634788446955}, {'happen': 0.631910085967977, 'num': 0.712833717946902, 'cconj': 0.25150115697286046, 'adp': 0.17118674554781704}, {'write': 1.0}, {'come': 0.32645752025947555, 'real': 0.40065764170056806, 'ass': 0.41754148603710095, 'niggas': 0.3502403266249396, 'fake': 0.45053349094672657, 'adj': 0.4180352135272395, 'adp': 0.24115533675029838}, {'fold': 0.9698136145340475, 'adv': 0.2438473970835162}, {'arrow': 0.570952991257214, 'lead': 0.4267205221305131, 'phone': 0.4406980925897658, 'say': 0.28124762899567707, 'run': 0.34824824472093746, 'like': 0.21889464743715867, 'adp': 0.2222960492480743}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'box': 0.9658431763104779, 'adv': 0.2591273022560283}, {'world': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {}, {}, {'trick': 1.0}, {'sparkin': 0.9815736896072488, 'adp': 0.19108399166547846}, {'walk': 0.9660021242252093, 'adp': 0.2585341292603039}, {}, {'unite': 0.33382204771875656, 'understand': 0.2987218292157925, 'peace': 0.2892473034899293, 'god': 0.23605582695604166, 'black': 0.22933774167403975, 'people': 0.24260096157042318, 'let': 0.21686484134435766, 'love': 0.2081694077559789, 'got': 0.5874416808272641, 'num': 0.15686123889158918, 'propn': 0.1784529337505123, 'adj': 0.08706673684327608, 'cconj': 0.22137439389964195}, {'fine': 0.33736174387942436, 'shaolin': 0.3131751809943834, 'mc': 0.2609777924251498, 'ghost': 0.294994408469632, 'shoot': 0.2650284576642161, 'bring': 0.258483177770717, 'start': 0.25971158360847924, 'realize': 0.3298594780710806, 'wu': 0.26647241422875595, 'shit': 0.19373570772686705, 'vibe': 0.26952184905912474, 'propn': 0.34588758636302935, 'adv': 0.0799625642781588, 'adj': 0.08437884103751628, 'adp': 0.07301445129457815}, {'yah': 0.8505063672847067, 'say': 0.4763701595976956, 'propn': 0.22295827020552011}, {'audio': 0.4072808219918796, 'fuckin': 0.2885506574834897, 'people': 0.26719124103297637, 'yo': 0.23800388127335478, 'lil': 0.30453189712000994, 'just': 0.20579943535088374, 'propn': 0.29481165610054993, 'like': 0.16341451542625832, 'adv': 0.5452383243646909, 'cconj': 0.12190656346965505, 'adp': 0.24893071800310568}, {'fear': 0.4582625988366118, 'law': 0.5000483835455597, 'really': 0.4209448662673353, 'tell': 0.3192667908095703, 'adv': 0.5107065110905877}, {'remember': 0.4750572387351599, 'dream': 0.8799548965289784}, {'lookin': 0.6649192718379187, 'say': 0.4315675851001533, 'boy': 0.6096160934796208}, {'propn': 1.0}, {'fulla': 0.40708447047584, 'hash': 0.38897586447908505, 'mustache': 0.38897586447908505, 'twist': 0.3511344255764007, 'end': 0.5722787603637556, 'like': 0.15606996198712977, 'adp': 0.23774269742705423}, {'drop': 1.0}, {'american': 0.5842044384977503, 'mix': 0.6137535072782485, 'blood': 0.49290686841964754, 'adj': 0.14944088839790975, 'adp': 0.12931375132891787}, {'change': 0.6425911805392983, 'mood': 0.7446422569276251, 'adv': 0.1805117278484797}, {'billy': 0.5180282047297392, 'biggie': 0.500917216902902, 'list': 0.500917216902902, 'make': 0.2877737686143738, 'propn': 0.1249921795942998, 'adv': 0.3467494847156387, 'adp': 0.10553990104302438}, {'seed': 0.4133572918241648, 'watermelon': 0.520179074910085, 'spit': 0.36756822185434285, 'eat': 0.3695708465971365, 'new': 0.31810024761942374, 'stay': 0.3492157823901516, 'like': 0.19942870420190956, 'adj': 0.11702509547704967, 'adp': 0.10126381245451523}, {'sally': 0.30343091540928374, 'ers': 0.2899331986136549, 'er': 0.2899331986136549, 'pea': 0.30343091540928374, 'use': 0.2062998867986983, 'mic': 0.1956170402687408, 'say': 0.14946804172955744, 'walk': 0.22070970080487984, 'pass': 0.4414194016097597, 'tell': 0.16176384221273715, 'propn': 0.3497819433439364, 'like': 0.3489923212616688, 'adv': 0.129380583661066, 'adp': 0.11813843652291776}, {'miss': 0.9606076677373006, 'adv': 0.2779080939524859}, {'feet': 0.3488538727294201, 'skeet': 0.3223251704031213, 'treat': 0.313784835803382, 'beach': 0.313784835803382, 'cake': 0.29128857829576354, 'jamaica': 0.313784835803382, 'til': 0.24650664332916278, 'sweet': 0.28360834342670405, 'make': 0.18517376899056842, 'trade': 0.313784835803382, 'meet': 0.25707964110040527, 'propn': 0.08042871002894614, 'adj': 0.07848193003679671, 'adp': 0.20373526067850542}, {'soliel': 0.49300800340923545, 'bain': 0.49300800340923545, 'layman': 0.49300800340923545, 'break': 0.31277570773741326, 'propn': 0.3409908920137416, 'cconj': 0.14100198197614594, 'adp': 0.19194878227055695}, {'perpetrator': 1.0}, {'really': 0.8549860524133761, 'adv': 0.5186509907236192}, {'uh': 0.8779526083862562, 'intj': 0.47874755083213627}, {'brother': 0.7350179623307077, 'cause': 0.6457927655805404, 'adp': 0.20664050661729275}, {}, {'engrave': 0.37910931045951113, 'unmarked': 0.37910931045951113, 'dumile': 0.3982846647565471, 'government': 0.3655041800700995, 'say': 0.21233981269903307, 'hey': 0.3327236953836519, 'right': 0.2515679535621314, 'intj': 0.33782745986669177, 'propn': 0.09938262584525154, 'adj': 0.09697706559825545, 'cconj': 0.24657222605716103, 'adp': 0.08391591002851911}, {'lean': 0.6905246064452192, 'rich': 0.5979946824474582, 'like': 0.2943239106662876, 'adv': 0.1636703604670149, 'adj': 0.1727097605369245, 'adp': 0.14944870353474954}, {'quick': 0.7610272782641594, 'check': 0.6127205423622459, 'adj': 0.21309861263077487}, {'internet': 0.33887932812306504, 'zero': 0.33887932812306504, 'search': 0.30591152070466615, 'bob': 0.3119094231703208, 'stand': 0.2533867521268383, 'crazy': 0.25197171079917774, 'time': 0.19470428887467187, 'man': 0.18111439946282676, 'num': 0.28749245567729337, 'propn': 0.4088316567980312, 'adv': 0.07561121919269427, 'adj': 0.07978717419215878, 'adp': 0.34520601802264805}, {'yesterday': 0.8050339384809564, 'love': 0.4531759303566197, 'know': 0.3828210208952116}, {'work': 0.8685852319128895, 'adv': 0.49553980153246213}, {}, {'ayy': 1.0}, {'let': 0.9346387654951096, 'adv': 0.35559861927990905}, {'better': 0.5439379694468353, 'moment': 0.6047693490846082, 'let': 0.4629267288049765, 'adv': 0.35225610507095084}, {'kufi': 0.6067966919716699, 'wrap': 0.5606526469365588, 'suede': 0.5457975824280088, 'propn': 0.1398977594924586}, {'friendly': 0.5921448525328766, 'nowadays': 0.5921448525328766, 'adv': 0.5284806776107581, 'adj': 0.13941707438369752}, {'raise': 0.5054725715896087, 'woman': 0.4995372373788685, 'hand': 0.4227282797306545, 'love': 0.33443591093651004, 'adv': 0.3976698611688397, 'cconj': 0.17782523349595816, 'adp': 0.12103850083575826}, {'christ': 0.4642553743339915, 'type': 0.36312988957009973, 'iron': 0.39035931588193135, 'mike': 0.4642553743339915, 'death': 0.3687461043091544, 'propn': 0.33605288629012264, 'adp': 0.1891691063094304}, {'gosh': 0.9310696503703251, 'intj': 0.36484148086433443}, {}, {'dk': 0.9673146071327873, 'propn': 0.2535792791762402}, {'home': 0.5722907635014771, 'say': 0.38996527906577855, 'hear': 0.5138435714618297, 'adv': 0.5063350147890203}, {'spin': 0.4155160057947272, 'straw': 0.4155160057947272, 'chump': 0.434860176786824, 'turn': 0.28323969086343626, 'gold': 0.32267936484622683, 'make': 0.2308264411385167, 'propn': 0.20051514858229139, 'adv': 0.09271049953453792, 'adp': 0.42327346014149075}, {'shoulda': 0.319515804589961, 'forbid': 0.3124103975914204, 'womb': 0.30640286157354735, 'bite': 0.3011988971693195, 'use': 0.24151444122400573, 'fruit': 0.3394236203522113, 'bring': 0.2448097984337508, 'fore': 0.3394236203522113, 'world': 0.19375974861379525, 'fuck': 0.18469402915700547, 'know': 0.1614074769373913, 'propn': 0.16379532128272728, 'adv': 0.15146532483863312, 'adp': 0.34576047188711045}, {}, {'wish': 0.5203330822516009, 'god': 0.7900494774904065, 'propn': 0.298629881084183, 'adp': 0.12607736020131033}, {'section': 0.8947657862630882, 'propn': 0.44653576310638027}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'thumb': 0.9054661403341662, 'adv': 0.38608372374894406, 'adp': 0.17626805429372935}, {'soul': 0.6571823566921212, 'heart': 0.6769472857640898, 'cconj': 0.2739939791558391, 'adp': 0.1864967070368028}, {'daycare': 0.20392368119573442, 'help': 0.17934496969744862, 'necklace': 0.20392368119573442, 'wear': 0.17290880041829962, 'checklist': 0.20392368119573442, 'wreck': 0.17589623248067116, 'mark': 0.17934496969744862, 'sorta': 0.20392368119573442, 'thought': 0.1588452485678121, 'reckless': 0.20392368119573442, 'endangerment': 0.20392368119573442, 'database': 0.20392368119573442, 'script': 0.17589623248067116, 'rip': 0.17027369858788025, 'afford': 0.17934496969744862, 'rapper': 0.14569498708959444, 'breakfast': 0.19485241008616605, 'gold': 0.15131752098238535, 'straight': 0.1418939196408648, 'shit': 0.10533432246594866, 'place': 0.13804919850541547, 'line': 0.14569498708959444, 'ya': 0.1289779273958471, 'food': 0.14488135170323632, 'face': 0.13018754670087704, 'rhyme': 0.1289779273958471, 'propn': 0.09402973511289214, 'like': 0.0781812215417898, 'adv': 0.13042720874286712, 'adj': 0.13763061268518315, 'adp': 0.43667843333239653}, {'h2o': 0.523287006735781, 'cognac': 0.48349348194472686, 'doomsday': 0.45136598383864796, 'turn': 0.3408351877972799, 'propn': 0.3619334817530716, 'adp': 0.20373767368145793}, {'monk': 0.47004564598957904, 'scooby': 0.47004564598957904, 'lab': 0.3985561084094578, 'buddha': 0.3985561084094578, 'old': 0.300083291601997, 'propn': 0.32510888870928917, 'adj': 0.10574653855503546, 'adp': 0.18300856930386059}, {'ooh': 0.9873762815064246, 'propn': 0.1583921674785265}, {'vitamin': 0.3755809798417144, 'fortify': 0.3755809798417144, 'mineral': 0.35887376431988716, 'seed': 0.2984532523052234, 'inside': 0.2542551847681721, 'deep': 0.25112418064694203, 'plant': 0.33782516206123464, 'propn': 0.17318135804962906, 'olive': 0.3755809798417144, 'adv': 0.1601448102886003, 'adj': 0.16898949667645838, 'cconj': 0.10741744998866809, 'adp': 0.14622949572029034}, {'world': 1.0}, {'adp': 1.0}, {'compromise': 0.9780202119011796, 'adv': 0.2085101079390913}, {}, {'save': 0.7226860193141155, 'say': 0.46906124299712226, 'tell': 0.5076479762649628}, {}, {'king': 1.0}, {'cheat': 1.0}, {'high': 0.9059975657251548, 'adv': 0.29115796955802764, 'adj': 0.3072384215278758}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'plus': 0.3288900115309571, 'seed': 0.354649435500524, 'tryna': 0.3444826599396758, 'gettin': 0.3510208406964456, 'feed': 0.3628290087096177, 'water': 0.3288900115309571, 'hard': 0.29722880285618747, 'adv': 0.095149351076776, 'adj': 0.20080876699756015, 'cconj': 0.3829296987766835}, {'use': 0.7331987311806033, 'thing': 0.6800144267551631}, {'discourage': 0.779035625088532, 'look': 0.4828255810683892, 'adv': 0.3321747348346622, 'cconj': 0.22280686400201968}, {'street': 0.8624423291082995, 'adp': 0.5061553407425942}, {'music': 1.0}, {'invest': 0.5493895525301481, 'decide': 0.5493895525301481, 'double': 0.4365692288364461, 'cash': 0.380420828427311, 'adj': 0.12359659959418276, 'adp': 0.21390049425382743}, {'celebrate': 0.370313018106222, 'pape': 0.38755278322464454, 'date': 0.328609636964264, 'penetrate': 0.38755278322464454, 'land': 0.3150694644172732, 'jam': 0.328609636964264, 'set': 0.2855978912870829, 'make': 0.20571538733684808, 'let': 0.21716701763556664, 'know': 0.17609643626914545, 'propn': 0.08935079372635339, 'adv': 0.08262474709513558, 'adj': 0.08718805435820323, 'adp': 0.1508906230550295}, {'runnin': 0.2618997959223019, 'task': 0.27409242957410657, 'forever': 0.22569544926871501, 'force': 0.23642092684313265, 'body': 0.1969625182066958, 'flip': 0.20802027247235352, 'revolution': 0.2618997959223019, 'quick': 0.22021290612415823, 'shootin': 0.27409242957410657, 'start': 0.1897933235971285, 'block': 0.1936788152804987, 'head': 0.17335835286058932, 'shit': 0.1415791446728659, 'catch': 0.1791591078062369, 'talk': 0.18326603447100956, 'niggas': 0.30997573597372907, 'time': 0.30095086533549315, 'propn': 0.1895770888269061, 'adv': 0.05843544067937867, 'adj': 0.18498836816527509, 'adp': 0.1600735922819988}, {'quick': 0.4097702812003844, 'clap': 0.4146390344915602, 'gettin': 0.4011447237651147, 'shorty': 0.4146390344915602, 'little': 0.34829703044587024, 'gun': 0.34676391086578223, 'adv': 0.10873616528977138, 'adj': 0.22948317600466966, 'cconj': 0.1458699982337798}, {'chill': 0.6088448434470417, 'say': 0.364224694381804, 'gods': 0.6502830109166836, 'propn': 0.17047018204096187, 'cconj': 0.21147163251481835}, {'sure': 0.7228429114206746, 'hear': 0.6529063354002242, 'adj': 0.22629945338672952}, {'trooper': 0.38433750856069687, 'state': 0.310467017221307, 'wanna': 0.2492915767890583, 'cat': 0.30779172830383433, 'town': 0.33585711903558935, 'stop': 0.27229575959009084, 'ride': 0.6155834566076687, 'propn': 0.09273468598086644, 'adp': 0.15660515103335193}, {'nada': 0.887423494751041, 'like': 0.3682264997292984, 'adv': 0.20476679522152264, 'adp': 0.18697418387484682}, {'ox': 0.3377950228676015, 'piece': 0.32663731664334444, 'wildin': 0.3535209265427976, 'island': 0.26232318829369505, 'better': 0.2327637001754198, 'phone': 0.2728700968444381, 'chill': 0.2910991174252653, 'blow': 0.23363530653406547, 'hear': 0.229460867294438, 'nigga': 0.19015418660077044, 'propn': 0.3260188212057324, 'adv': 0.07536928752103778, 'cconj': 0.2022163979808697, 'adp': 0.2752811755095246}, {'place': 0.8040928439612869, 'propn': 0.5476934161329876, 'adp': 0.23122850216793717}, {'man': 0.9114220658954327, 'propn': 0.4114727424737899}, {'yah': 0.9673146071327873, 'propn': 0.2535792791762402}, {'shit': 0.685413490598437, 'propn': 0.6118542129001521, 'adj': 0.29852212917667664, 'adp': 0.25831629343466755}, {'level': 0.9746425170097616, 'adp': 0.22376765636900395}, {}, {'trophy': 0.6535777374020789, 'sell': 0.47139392947420566, 'soul': 0.46921863807791453, 'adv': 0.1458271586994753, 'cconj': 0.19562771342213764, 'adp': 0.2663118691204314}, {'mind': 0.7058773341874202, 'make': 0.5711608899642605, 'adp': 0.41894203281085923}, {'lower': 0.5564104462254128, 'cannon': 0.5316592747267874, 'laser': 0.5140980390743364, 'doom': 0.35636075097403197, 'propn': 0.1282811455879997}, {'smile': 0.9629604140103147, 'adj': 0.2696428027021733}, {'album': 1.0}, {'rub': 0.5442077064202597, 'titty': 0.5240518464055812, 'girl': 0.45609604553893696, 'intj': 0.26835766331321687, 'yeah': 0.36248328690173376, 'adp': 0.13331940238926593}, {'cop': 0.4208118393387546, 'hate': 0.8535657619482894, 'love': 0.30715287057419843}, {'king': 1.0}, {'right': 0.9330717386381799, 'adj': 0.35969032591206007}, {'juice': 0.9409132517332331, 'cconj': 0.3386476822787859}, {'drag': 0.5232702759480454, 'dun': 0.4706677794186366, 'bag': 0.4075985513979312, 'loot': 0.4513515525449803, 'ass': 0.3527444688208205, 'adp': 0.10186557984052808}, {'ballad': 0.38996203812791547, 'bland': 0.38996203812791547, 'salt': 0.38996203812791547, 'need': 0.2275803368134051, 'salad': 0.37261510054050123, 'sandwich': 0.37261510054050123, 'sand': 0.37261510054050123, 'man': 0.19914451713226355, 'like': 0.14950548321311966, 'adj': 0.08773006632808604, 'adp': 0.07591432373590111}, {'gza': 0.9660854504636703, 'propn': 0.2582225830604425}, {'hop': 0.8495382099517658, 'like': 0.47036371941136146, 'adp': 0.2388363483506215}, {'mean': 0.9569501874534486, 'adv': 0.29025219849780526}, {'song': 0.7390393832080577, 'adv': 0.2217696130194326, 'think': 0.6361124340937417}, {'adv': 0.7384617951868037, 'adp': 0.6742953188696205}, {'good': 0.637148305240246, 'adv': 0.21411188227819972, 'adj': 0.45187426496602107, 'adp': 0.586521770830535}, {}, {'natural': 0.46993671806407966, 'mark': 0.46993671806407966, 'stretch': 0.5343401916336682, 'ass': 0.36020686771466476, 'like': 0.2048578598416753, 'adj': 0.24042186608126753, 'adp': 0.20804114414580985}, {'admit': 0.3977381077840048, 'pain': 0.3472236223031983, 'little': 0.3148932635282598, 'lie': 0.32245791101445753, 'truth': 0.32085177896129696, 'right': 0.2691043589299525, 'cause': 0.2805352516845005, 'want': 0.2696759911178292, 'intj': 0.18068843970205345, 'propn': 0.10631043198535431, 'adv': 0.2949231514361054, 'adj': 0.10373718392665282, 'cconj': 0.13188019356896313, 'adp': 0.1795311115942353}, {'alive': 0.45260731278498945, 'history': 0.43765724221220687, 'pay': 0.3514835485937163, 'fall': 0.3347098756560054, 'number': 0.35668461919169675, 'make': 0.25143131380368194, 'll': 0.3424228677518297, 'propn': 0.10920713198392204, 'adv': 0.10098636268180478, 'adj': 0.10656376919133459, 'cconj': 0.13547360721039164, 'adp': 0.09221144826969047}, {'conversate': 0.9780202119011796, 'adv': 0.2085101079390913}, {'screamin': 0.8163673429974055, 'everybody': 0.5775329958429705}, {'cut': 0.39438741903206465, 'far': 0.4776498569740822, 'crap': 0.4843550112473231, 'touch': 0.46095296765025673, 'rap': 0.3511413248453955, 'propn': 0.13373695933632995, 'adv': 0.12366966180824848, 'adp': 0.11292374850942218}, {'soldier': 0.9689155276841114, 'adv': 0.24739179495815924}, {'jet': 0.4126169987792115, 'voice': 0.3950405677149485, 'doom': 0.3359969630654822, 'ah': 0.42148923717819553, 'right': 0.30616332500968924, 'time': 0.2880111635847014, 'intj': 0.2055714508303197, 'num': 0.21263280115708755, 'propn': 0.2419013610130692, 'adv': 0.22369178763969833, 'adp': 0.10212737223384068}, {'adp': 1.0}, {'know': 1.0}, {'sip': 1.0}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'easy': 0.34337717874187457, 'lookin': 0.31648584193484686, 'come': 0.21978945797074378, 'ya': 0.5275011287067095, 'bish': 0.6437488704617624, 'like': 0.15987496248250044, 'adj': 0.09381489401827645, 'adp': 0.08117962898966459}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'dry': 0.40147517812221434, 'bridge': 0.39083768322733703, 'low': 0.6361778511366941, 'bitch': 0.23552069070794007, 'adv': 0.09263760320898283, 'adj': 0.39101565417918105, 'adp': 0.25376438944678414}, {'ark': 0.6915406544125885, 'float': 0.6915406544125885, 'propn': 0.15943558926782447, 'adp': 0.13462295296136953}, {'abi': 0.24438089443647207, 'umi': 0.24438089443647207, 'light': 0.5263401607689734, 'shine': 0.5823163786976834, 'say': 0.2519693081178381, 'world': 0.4185140146365489, 'propn': 0.05896532344750447, 'adp': 0.14936601046126616}, {}, {'error': 0.3831629770923707, 'repeat': 0.3831629770923707, 'advise': 0.4010009665882009, 'jay': 0.3221744881761098, 'jameson': 0.33483074313840994, 'jonah': 0.345887043772371, 'doom': 0.2568266044681555, 'propn': 0.36980515894189303, 'adv': 0.08549184751964416}, {'long': 0.4953839882769186, 'night': 0.5160189946656819, 'berserk': 0.6256773245935844, 'adv': 0.1573186689997406, 'adj': 0.16600726957162562, 'cconj': 0.21104362019736808}, {'bang': 0.6218724895776577, 'foe': 0.3631549361922225, 'hoe': 0.3247706454012115, 'talk': 0.2760929748252411, 'flow': 0.3064022635807732, 'know': 0.18762474757580125, 'propn': 0.09520022366030073, 'adp': 0.4019220329221355}, {'trophy': 0.7131466169562887, 'motherfuckin': 0.587012110486608, 'adv': 0.31823649716177693, 'cconj': 0.21345776336329667}, {'propn': 1.0}, {'super': 0.9501925120844457, 'propn': 0.31166358462074223}, {'giant': 0.5715534081618571, 'small': 0.4994575776876018, 'act': 0.4504220413132695, 'knock': 0.4504220413132695, 'adj': 0.1345689381223377}, {'case': 0.7496768052605908, 'just': 0.4769290667204746, 'adv': 0.21059339054722917, 'adj': 0.22222431690312708, 'cconj': 0.2825118710532615, 'adp': 0.192294494253365}, {'intj': 1.0}, {'problem': 0.7451182493102187, 'maybe': 0.6409997800080627, 'adv': 0.18416860909093644}, {'soliel': 0.49300800340923545, 'bain': 0.49300800340923545, 'layman': 0.49300800340923545, 'break': 0.31277570773741326, 'propn': 0.3409908920137416, 'cconj': 0.14100198197614594, 'adp': 0.19194878227055695}, {'ask': 0.46852987736221197, 'knowledge': 0.5378431018160434, 'tryna': 0.4971832785125162, 'kick': 0.45763635982307943, 'adv': 0.13732669831617655, 'adp': 0.12539409680225147}, {'pox': 0.4109326100920798, 'monkey': 0.3696230188736102, 'sock': 0.3696230188736102, 'funky': 0.37968311068417937, 'skip': 0.39265282477215013, 'guess': 0.30943650118382093, 'need': 0.23981868148327476, 'catch': 0.26860398846834954, 'adj': 0.09244783239112668, 'adp': 0.15999337446244527}, {'uh': 0.813627111783685, 'oh': 0.17447761519916266, 'intj': 0.5545885725156553}, {'hammer': 0.5851939922425315, 'cock': 0.5287508109330453, 'wave': 0.6147931126654681}, {'blow': 0.6583889092854097, 'watch': 0.696664800506303, 'cconj': 0.28492490215051663}, {'curve': 0.505673227467748, 'thigh': 0.48132766723598075, 'squeeze': 0.45698210700421354, 'feel': 0.317407056683215, 'maybe': 0.40610734446163416, 'adv': 0.11668057790935936, 'cconj': 0.15652745936181836}, {'ayy': 1.0}, {'nerve': 0.7291248519751967, 'strike': 0.620291444882561, 'adv': 0.17281951466230122, 'cconj': 0.23183806630822895}, {'hol': 0.7601784358384964, 'bitch': 0.5978768400692719, 'propn': 0.25430695978466494}, {'real': 0.9018211551862375, 'adv': 0.2972293947343419, 'adj': 0.31364516729007147}, {'compton': 0.9673146071327873, 'propn': 0.2535792791762402}, {'know': 0.7865632668432697, 'adv': 0.3690568212176585, 'cconj': 0.49509119358514225}, {'brace': 0.7642805102528528, 'run': 0.46616683027425243, 'nigga': 0.4110962827100395, 'adj': 0.17194078731261614}, {'doom': 0.9408947531108145, 'propn': 0.3386990752401596}, {'wanna': 1.0}, {'trigger': 0.4645948283650421, 'fame': 0.38242176886950435, 'game': 0.3178177159250881, 'niggas': 0.2749393586674783, 'got': 0.369015723916082, 'propn': 0.11209953376164593, 'like': 0.1864107874648042, 'adv': 0.10366103355393907, 'adj': 0.32815848082131566, 'young': 0.3514920969626519, 'adp': 0.18930742288956495}, {'static': 0.4640974336335657, 'matic': 0.4640974336335657, 'fabric': 0.4640974336335657, 'pack': 0.34685850189429945, 'crack': 0.3213609166042189, 'num': 0.18810427502953297, 'propn': 0.10699826154386341, 'like': 0.17792786037956665, 'adj': 0.20881672908895704, 'adp': 0.09034633984116858}, {'hol': 0.7601784358384964, 'bitch': 0.5978768400692719, 'propn': 0.25430695978466494}, {'sold': 0.4911666390911565, 'dre': 0.4538157177466074, 'sign': 0.3993046021511377, 'moment': 0.3595583536178254, 'soul': 0.3369341139158626, 'tell': 0.2618487394368891, 'propn': 0.22647820350840647, 'adv': 0.10471481845338969, 'cconj': 0.1404753454578869}, {'able': 0.40100405581004533, 'happenin': 0.4458208360878065, 'ya': 0.5639467382240619, 'fuck': 0.23179778186842465, 'tell': 0.23767417135720106, 'end': 0.31336714358378454, 'adv': 0.19009453899416356, 'adj': 0.10029666402450318, 'adp': 0.2603652456130481}, {'listen': 0.37032745604752954, 'let': 0.279658074758414, 'love': 0.2684448776286205, 'got': 0.7575354699019018, 'propn': 0.11506199801288698, 'look': 0.3093123852174399, 'cconj': 0.14273668432145648, 'adp': 0.09715513341321527}, {'ready': 0.5855103521504312, 'moment': 0.5205342833333679, 'snap': 0.5650430550182972, 'adj': 0.15996867303429155, 'cconj': 0.2033668041311872}, {'vial': 0.4529699485657545, 'grab': 0.409353610713692, 'berserk': 0.41568863754300417, 'everybody': 0.640900432056719, 'adv': 0.20903932620239812}, {'new': 0.5182706236286505, 'teach': 0.6334154335502552, 'adv': 0.5420583036010642, 'adj': 0.19066526878550427}, {'crawl': 0.8180871514176513, 'baby': 0.5668629136992961, 'adv': 0.09695282232971572}, {'enslavement': 0.18920185454361102, 'cayman': 0.17481394008676274, 'bermuda': 0.18920185454361102, 'grenada': 0.18920185454361102, 'honduras': 0.18920185454361102, 'trinidad': 0.18920185454361102, 'jamaica': 0.17018206619626722, 'isle': 0.180785464122771, 'virgin': 0.17481394008676274, 'tobagos': 0.18920185454361102, 'barbados': 0.18920185454361102, 'bahamas': 0.180785464122771, 'trauma': 0.180785464122771, 'momma': 0.15381576280218967, 'mental': 0.15798115924508263, 'boat': 0.17481394008676274, 'haiti': 0.180785464122771, 'slave': 0.15381576280218967, 'brother': 0.13101145792450133, 'separate': 0.17018206619626722, 'make': 0.10042950141768946, 'hate': 0.14140623728257065, 'drop': 0.12863659960884957, 'propn': 0.5234487773451147, 'adj': 0.08512977995598216, 'cconj': 0.05411238012310102, 'adp': 0.22099275467236884}, {'jump': 0.32977818717355034, 'ton': 0.38232531167986344, 'guy': 0.2951031664359892, 'laser': 0.3532512632652387, 'really': 0.26873618535249927, 'eye': 0.2556336337283522, 'high': 0.2536358759057075, 'ride': 0.2925602675549962, 'propn': 0.44072796711757617, 'adv': 0.16302054095845195, 'adj': 0.08601202597463685, 'cconj': 0.10934635205457321, 'adp': 0.07442767409522565}, {'chamber': 0.3774963578221592, 'gas': 0.36200389028873564, 'banger': 0.40101672155530327, 'tang': 0.326912049931189, 'wu': 0.2981736004642706, 'penalty': 0.4196858845340408, 'death': 0.31851726875210046, 'propn': 0.29027736495800244, 'adv': 0.08947539940365554}, {'syrup': 0.44752389137598514, 'cough': 0.44752389137598514, 'styrofoam': 0.46835817587308415, 'powerful': 0.4212757971229288, 'say': 0.230710108366353, 'love': 0.25192360984657347, 'adj': 0.10536690707614212, 'adp': 0.2735273491615301}, {'worth': 0.44936175742049966, 'beast': 0.4615921118761964, 'feel': 0.28973769157703216, 'sand': 0.47735978114520594, 'line': 0.3569313159651813, 'like': 0.19153250805750896, 'adv': 0.10650916727750115, 'adj': 0.11239159444016562, 'adp': 0.29176309477358775}, {'propn': 0.4609239882674931, 'adv': 0.4262270806157408, 'adp': 0.7783826519067409}, {'feeling': 0.8278564263006651, 'just': 0.5131410942353029, 'adv': 0.22658321835406905}, {}, {'plan': 0.782560278474267, 'man': 0.5265688958060705, 'propn': 0.23772602811174148, 'adj': 0.23197186053930957}, {'aw': 0.3307888148728625, 'haha': 0.36133785101148125, 'punct': 0.3227533673033458, 'yo': 0.6729371543133819, 'shit': 0.20750439421262457, 'intj': 0.31483071036933336, 'num': 0.16282255042156277, 'propn': 0.18523481013400672}, {'product': 0.5363766446113681, 'people': 0.40267653973260215, 'sell': 0.442705386617554, 'lot': 0.4515262969833858, 'propn': 0.2962016696167469, 'adp': 0.2501044065444532}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'white': 0.6062266784469071, 'shit': 0.42775664645827344, 'face': 0.5286841656516984, 'adv': 0.17655247315611863, 'adj': 0.3726066866839982}, {'fit': 0.9743967868319501, 'adv': 0.2248352770620552}, {'think': 0.8593662449759026, 'adj': 0.3161500741375652, 'cconj': 0.4019188818889065}, {'crib': 0.7081304913397253, 'wanna': 0.4593123565263781, 'run': 0.45202635745059605, 'adp': 0.2885403586105255}, {'belly': 0.6006818942052757, 'son': 0.46378853777973966, 'god': 0.4247606239406004, 'know': 0.31642834041344, 'propn': 0.3211095462515894, 'adv': 0.14846871495135922, 'adp': 0.1355679605130621}, {'scar': 0.40918920086798105, 'armed': 0.4549207645308182, 'ghetto': 0.37459460843915937, 'dangerous': 0.3698377300775036, 'mad': 0.33090044794576023, 'leave': 0.28951157398584476, 'propn': 0.209765137307074, 'adj': 0.30703164624363455, 'cconj': 0.13010890086444254}, {'common': 0.8154022294383151, 'adv': 0.23086082450153148, 'adj': 0.4872222142512111, 'adp': 0.21080084885418518}, {'beast': 0.5262347080128501, 'south': 0.50089921844357, 'little': 0.38894111789308783, 'lab': 0.4829234025222489, 'adv': 0.24284999288722883, 'adj': 0.12813121446750875, 'adp': 0.1108741267718228}, {'curve': 0.505673227467748, 'thigh': 0.48132766723598075, 'squeeze': 0.45698210700421354, 'feel': 0.317407056683215, 'maybe': 0.40610734446163416, 'adv': 0.11668057790935936, 'cconj': 0.15652745936181836}, {'rumor': 0.4539161732910202, 'able': 0.4733421567300323, 'second': 0.46281595231441663, 'space': 0.4278211360995951, 'time': 0.28890518907479745, 'adj': 0.23677884836493726, 'cconj': 0.1505074611312116, 'adp': 0.10244438936913908}, {'ex': 0.9529847510919263, 'cconj': 0.30301825718306047}, {'sit': 1.0}, {'holla': 0.6076720835507986, 'bar': 0.5049217274015156, 'hoe': 0.5313580157880777, 'propn': 0.15575730954448483, 'adp': 0.2630342328521539}, {'box': 0.5962727431435254, 'arm': 0.30143103461886434, 'slap': 0.6362410227339432, 'long': 0.25187393162446586, 'adv': 0.15997477761329115, 'think': 0.22943166964059852, 'adj': 0.08440503660742985}, {'lift': 0.2780459738997707, 'inhale': 0.26886183830394506, 'monk': 0.2909902860027282, 'spliff': 0.2909902860027282, 'party': 0.24673339060516192, 'bass': 0.24673339060516192, 'trunk': 0.2559175262009875, 'shoot': 0.20561915532914837, 'story': 0.23123374693612636, 'turn': 0.18953218310463812, 'nas': 0.20453686179293737, 'buddha': 0.24673339060516192, 'loot': 0.2509963271368382, 'place': 0.19699024419326988, 'hard': 0.19379511963631443, 'tell': 0.1551315450071782, 'propn': 0.20126455656956035, 'adv': 0.1240759959872619, 'adj': 0.06546431343523282, 'cconj': 0.08322422106428146, 'adp': 0.16994216320385128}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'escape': 0.31570128994804025, 'order': 0.3113308884776158, 'hole': 0.32612592521145145, 'taking': 0.3780910953268543, 'king': 0.26056813439998444, 'new': 0.2312105135466297, 'soul': 0.25936571836221295, 'make': 0.20069306553964905, 'world': 0.41246401525688364, 'propn': 0.26150816815632555, 'adp': 0.2944135788200928}, {'toilet': 0.4087893239414404, 'milk': 0.3595183672883387, 'cold': 0.28306321543584384, 'bust': 0.29375555824225935, 'wealth': 0.4087893239414404, 'shit': 0.21115520383017453, 'justice': 0.3284318547489673, 'talk': 0.27332822890891734, 'propn': 0.09424690556242257, 'like': 0.15672357674000614, 'adv': 0.17430459007321686, 'adj': 0.09196565562064322, 'cconj': 0.11691515043942612, 'adp': 0.23873835432636048}, {'hood': 0.9294644438701972, 'adv': 0.27242720143607624, 'adp': 0.24875543712404097}, {'war': 0.714406704350229, 'want': 0.5460057088995778, 'adv': 0.398081969164272, 'adp': 0.1817459007923136}, {'gnac': 0.5756194910784239, 'sipping': 0.5756194910784239, 'queens': 0.5062406660148117, 'intj': 0.22555763412103175, 'propn': 0.13270981563923961, 'adp': 0.1120564570956734}, {'atlantic': 0.31111315845035975, 'paul': 0.31111315845035975, 'ball': 0.2491509535358769, 'lick': 0.2647010810135873, 'hooker': 0.31111315845035975, 'city': 0.2254572217177727, 'point': 0.5231858430019144, 'propn': 0.30026713928030097, 'like': 0.2496577461332659, 'adp': 0.3169214692968699}, {'suit': 0.6612217455223237, 'army': 0.608598035105415, 'black': 0.4100703775304747, 'adj': 0.1556808285764603}, {'throne': 0.7511036038385277, 'catch': 0.6039016854893293, 'adv': 0.19697162790492537, 'adp': 0.17985635480684828}, {'sleep': 0.662678945822515, 'probably': 0.7214269616821245, 'adv': 0.20099689978121207}, {'mirror': 0.6834739099460299, 'love': 0.4402838937451142, 'just': 0.3952122263829446, 'propn': 0.1887163761690095, 'adv': 0.3490208022422064, 'adp': 0.15934683058350105}, {'corny': 0.5444507675895346, 'punct': 0.4374257470690337, 'slim': 0.4616449083241542, 'old': 0.3475844949261025, 'line': 0.3889874245587927, 'propn': 0.1255238262625224, 'adp': 0.10598880862217204}, {'thug': 0.5190253483508139, 'throw': 0.459101741632834, 'motherfucker': 0.4813267292052576, 'set': 0.4813267292052576, 'adj': 0.14694065436155485, 'cconj': 0.18680439555842904}, {}, {'num': 1.0}, {'mineral': 0.565303638491997, 'vegetable': 0.5916211090417257, 'animal': 0.5321475467823202, 'propn': 0.1363990092866973, 'cconj': 0.16920566882676738}, {'bit': 0.938754903693615, 'adv': 0.2544632954823109, 'adp': 0.23235245220025902}, {'matter': 0.7071718242333846, 'need': 0.570897367009244, 'adv': 0.41711414187526613}, {'pair': 0.4239422424005672, 'odd': 0.4503564727275354, 'swear': 0.3786727183268898, 'fear': 0.36066216282852254, 'god': 0.28747949482613433, 'rotten': 0.4239422424005672, 'propn': 0.10866403915204406, 'adv': 0.2009683043392026, 'adj': 0.10603382194215462, 'cconj': 0.13479988981073088}, {'runnin': 0.4636423588045679, 'outta': 0.42674311676970306, 'arrest': 0.44832778966513276, 'bastard': 0.4051584438742734, 'damn': 0.3653809682697462, 'nigga': 0.26099714218317777, 'intj': 0.1901371704366262}, {'friend': 0.7815316673787254, 'fuck': 0.6238655727672664}, {'woo': 0.8084412067449356, 'fuck': 0.5445735417518565, 'adv': 0.2232990659645297}, {'champ': 1.0}, {'obviously': 0.8927978742202483, 'adv': 0.39840456563891585, 'adj': 0.2102040862254402}, {'waitin': 0.9743967868319501, 'adv': 0.2248352770620552}, {'bein': 0.6070525340161285, 'feed': 0.5611515840717668, 'humble': 0.5238577328290283, 'adj': 0.15528548571258743, 'adp': 0.13437118113859278}, {'doom': 0.9408947531108145, 'propn': 0.3386990752401596}, {'irish': 0.4621387317941001, 'sippin': 0.3918517617610741, 'cool': 0.7134165534891221, 'propn': 0.2130933606200323, 'adv': 0.09852618143944757, 'adj': 0.20793542770322115, 'cconj': 0.1321732642884109, 'adp': 0.08996503727577752}, {'shit': 0.6958521603283778, 'tell': 0.7181850534272693}, {'thief': 0.5174906497869664, 'theme': 0.5921895227759133, 'night': 0.4333984041823995, 'play': 0.4232311667330026, 'adp': 0.12064907482227236}, {'skill': 0.6455550038338045, 'time': 0.44599407255690604, 'sit': 0.5107431133145922, 'propn': 0.18729581835036865, 'adv': 0.1731967784256106, 'adj': 0.18276231592758302, 'adp': 0.15814735128734128}, {'somebody': 0.5690621301008968, 'better': 0.46635225707095573, 'try': 0.4493585435690601, 'smoke': 0.4836921054224025, 'adv': 0.151005665070526}, {'yawk': 1.0}, {'fear': 0.4298617424145185, 'hair': 0.4463949025688046, 'neck': 0.4463949025688046, 'make': 0.2981826836684729, 'grow': 0.41683872306702974, 'like': 0.21536805747097756, 'adp': 0.32807198945173965}, {'yo': 0.924309926552634, 'propn': 0.3816427120701562}, {'aids': 0.7109324015843221, 'die': 0.48335639686069054, 'propn': 0.49171914472244516, 'adp': 0.13839796495911905}, {'run': 0.7500193292013644, 'nigga': 0.6614159098663527}, {'recovery': 0.47781832491452564, 'suck': 0.44148248031422815, 'album': 0.40514663571393067, 'slim': 0.40514663571393067, 'yo': 0.26680317892786787, 'num': 0.19366551738969182, 'propn': 0.33048489214458, 'adv': 0.10186900975137543, 'adj': 0.10749516424410523, 'adp': 0.09301740030553671}, {'flight': 0.5688746023377496, 'brother': 0.41225156784661054, 'sight': 0.5688746023377496, 'catch': 0.38915290426074045, 'adj': 0.1339382288132192, 'adp': 0.11589903539699908}, {'rapper': 0.4093370058308013, 'johnny': 0.48579551059981074, 'cousin': 0.47839206649462795, 'big': 0.3830795809655425, 'wanna': 0.35508883337734, 'propn': 0.13209050976649417, 'like': 0.21965386577391996, 'adj': 0.1288932539423776, 'adp': 0.11153353253561636}, {'adv': 0.1110000116577016, 'goose': 0.46830861218025077, 'kill': 0.3217978481404182, 'think': 0.3183866655069069, 'shitter': 0.48105464636548784, 'slit': 0.46830861218025077, 'hit': 0.3200667964546847, 'adp': 0.10135499052639278}, {}, {'youth': 0.5824650798111615, 'pay': 0.4523278510994905, 'crime': 0.4844004067929279, 'listen': 0.4523278510994905, 'adv': 0.12996040527352057}, {'hide': 0.5755385647482196, 'cop': 0.5279014294866212, 'come': 0.3775634045236142, 'intj': 0.2807053830275409, 'like': 0.27463981070926924, 'adv': 0.305448488473944}, {'hustlin': 0.5329739389255247, 'way': 0.7231865291882021, 'day': 0.37988383365572104, 'adj': 0.13633600444867283, 'cconj': 0.17332279493747133}, {'champagne': 0.7736523276133049, 'kick': 0.6110858959351829, 'adp': 0.16743985119322785}, {'adv': 0.5824916070192481, 'adj': 0.6146622129749468, 'adp': 0.5318777036997084}, {'jeep': 0.5696280527316145, 'cab': 0.647693936558965, 'num': 0.26251814715623717, 'propn': 0.29865334389687237, 'cconj': 0.1852426900521092, 'adp': 0.252174531745518}, {'bliss': 0.5673429956600246, 'state': 0.45829845820565146, 'say': 0.29247994695248014, 'goddamn': 0.5121491462013029, 'adp': 0.34676098563388436}, {'son': 0.5928502036657798, 'free': 0.6475036539378466, 'love': 0.4788190202472965}, {'bus': 0.46148712885503024, 'arab': 0.46148712885503024, 'kamikaze': 0.49946943924519277, 'cut': 0.33958467493895966, 'town': 0.41705067431703696, 'propn': 0.11515332303199086, 'adj': 0.11236603245841932, 'adp': 0.09723224570544235}, {'praise': 0.7796874927955625, 'pay': 0.626168837916875}, {'wanna': 1.0}, {'neighbor': 0.3344299902945923, 'prayin': 0.3344299902945923, 'crunk': 0.3344299902945923, 'bass': 0.28356632298255663, 'trunk': 0.2941214876252258, 'speaker': 0.3195533212812437, 'elevator': 0.2941214876252258, 'new': 0.20451084608211106, 'ride': 0.2559101488967775, 'adv': 0.07129917411301978, 'adj': 0.30094791145821004, 'adp': 0.32551920530646833}, {'purpose': 0.7806463963435618, 'adv': 0.18012872289948376, 'kill': 0.5222074714378079, 'cconj': 0.24164339823074837, 'adp': 0.1644769647350003}, {'wall': 0.5152596821296506, 'bullshit': 0.6337977698413988, 'juice': 0.5036437302886916, 'adv': 0.13512322116972603, 'adp': 0.24676416870633758}, {'joint': 0.6347578980720809, 'chick': 0.6119782835104864, 'everybody': 0.47176794226258356}, {'nervous': 0.6114471382701037, 'bit': 0.48091162026980466, 'wee': 0.5649494485855285, 'adj': 0.27511548690264476}, {'milk': 0.8980587746199464, 'propn': 0.2354240234219499, 'adj': 0.22972557596078558, 'cconj': 0.29204815745596924}, {'hair': 0.5380269733557367, 'shoe': 0.5575156792711081, 'let': 0.37939738300741455, 'kick': 0.4810344173624918, 'propn': 0.1560985534474729}, {'luxury': 0.7422911450441039, 'choke': 0.6700774999872127}, {'willie': 0.5721725517272822, 'message': 0.5386135857007471, 'num': 0.48540963793307146, 'propn': 0.27611274325009566, 'adv': 0.12766392232985002, 'adp': 0.23314187890729487}, {'night': 0.9201883868498547, 'adj': 0.2960316638953027, 'adp': 0.2561612513204145}, {'lacka': 0.4174014085271482, 'cue': 0.3988338673957621, 'jumah': 0.4174014085271482, 'far': 0.34370011083235236, 'doom': 0.2673304938996302, 'say': 0.20560914521039939, 'catch': 0.27283228531699305, 'll': 0.3017402343542937, 'propn': 0.1924648655291968, 'adv': 0.17797671599596404, 'adp': 0.16251195017273526}, {'er': 0.9252212209070216, 'intj': 0.37942811227335294}, {'cronie': 0.7849938116530938, 'doom': 0.5027601227266243, 'propn': 0.3619626702607011}, {'48': 0.3117676715721726, 'able': 0.28042677831744967, 'strong': 0.2643507305510449, 'speeding': 0.3117676715721726, 'faster': 0.2741906348634755, 'math': 0.28042677831744967, 'wife': 0.28042677831744967, 'knife': 0.26891805070044744, 'turn': 0.20306522333178398, 'today': 0.24520958018988362, 'life': 0.17762013149081796, 'drop': 0.21196797058756492, 'key': 0.25671830780688587, 'num': 0.12636318925442036, 'adv': 0.19940296752681397, 'adj': 0.14027723640631826, 'adp': 0.18207643028848777}, {'wanna': 0.945616690401582, 'adv': 0.3252830687785003}, {'understand': 0.9376981617500567, 'cconj': 0.3474509425092477}, {'truth': 1.0}, {'jones': 0.46445828988507015, 'tattoo': 0.46445828988507015, 'win': 0.42623144058275614, 'propn': 0.5794735339934342, 'adj': 0.11308947100278127, 'adp': 0.1957164988504856}, {'dash': 0.23253424854978325, 'blessing': 0.23253424854978325, 'sour': 0.23253424854978325, 'dump': 0.23253424854978325, 'autograph': 0.20057453848810966, 'wally': 0.20915840901800914, 'ice': 0.20057453848810966, 'serve': 0.22219027477250444, 'slash': 0.23253424854978325, 'mash': 0.23253424854978325, 'hurt': 0.20057453848810966, 'grass': 0.2045071348028029, 'bash': 0.21485110858008172, 'glass': 0.19147526904830764, 'trash': 0.22219027477250444, 'lay': 0.184781995034153, 'past': 0.19716796861038022, 'heavy': 0.18904377499151037, 'love': 0.12507706777706812, 'propn': 0.32166642443293986, 'adv': 0.0495753980077764, 'adj': 0.1569402381838955, 'adp': 0.1810707555929052}, {'golden': 0.36580845161942194, 'hang': 0.3576735866302001, 'thief': 0.33958245154830885, 'big': 0.271925711886442, 'bench': 0.38860058632605776, 'corner': 0.31986865658730923, 'niggas': 0.22996725202103332, 'play': 0.2777284521565937, 'propn': 0.18752660118905054, 'adv': 0.17341018865829846, 'adj': 0.2744812689882859, 'adp': 0.15834221786248198}, {'struggle': 0.6164876382529322, 'start': 0.5112441550998632, 'shine': 0.560341883624513, 'cconj': 0.2111619738818559}, {'thinkin': 1.0}, {'hell': 0.48850181398299375, 'screw': 0.6078203983734817, 'mean': 0.4749850763117508, 'propn': 0.31159065061443214, 'adp': 0.26309843174603276}, {'neighbor': 1.0}, {'sparkle': 0.7823481476832869, 'kid': 0.5170391215248612, 'adv': 0.1667935843598628, 'adp': 0.3046010880573458}, {'parent': 0.4420392071051121, 'guess': 0.3328600901301714, 'old': 0.2822036145148757, 'say': 0.21774556018646832, 'num': 0.3583276207159053, 'adv': 0.5654462453754087, 'adj': 0.2983377239368005, 'adp': 0.17210448295549785}, {'pop': 0.7711566860139211, 'cause': 0.6366454002158712}, {'dive': 0.9423440151269762, 'adv': 0.24712307830429164, 'adp': 0.22565004171012296}, {'castle': 0.5249912197686618, 'shogun': 0.4850680975622309, 'inside': 0.35540069052539336, 'come': 0.27670259490386284, 'just': 0.2534780619504398, 'stay': 0.35244635626906656, 'propn': 0.12103740242914467, 'adv': 0.2238521751779491, 'cconj': 0.15014929168606075, 'adp': 0.10220059780011398}, {'latch': 0.8775404195807232, 'like': 0.33643557998182505, 'adp': 0.34166344920752256}, {}, {'ready': 0.5855103521504312, 'moment': 0.5205342833333679, 'snap': 0.5650430550182972, 'adj': 0.15996867303429155, 'cconj': 0.2033668041311872}, {'wrong': 0.8213208121316554, 'feel': 0.5704665840865687}, {'rub': 0.5442077064202597, 'titty': 0.5240518464055812, 'girl': 0.45609604553893696, 'intj': 0.26835766331321687, 'yeah': 0.36248328690173376, 'adp': 0.13331940238926593}, {'shape': 0.9089026515032187, 'adj': 0.22732913183297243, 'cconj': 0.2890015785583132, 'adp': 0.1967117777391302}, {'momentum': 0.5744250926801074, 'adrenaline': 0.5744250926801074, 'venom': 0.563379111302884, 'propn': 0.15058420483726961}, {'drug': 1.0}, {'school': 0.5310719324417212, 'day': 0.43129945277736376, 'shit': 0.35539783248326007, 'drop': 0.467790818357305, 'num': 0.27887014980475583, 'like': 0.26378331417879325, 'adv': 0.14668706330753478, 'adp': 0.13394112027417976}, {'sky': 0.468659182176256, 'palm': 0.5339958105192668, 'cloud': 0.5148322541805731, 'everybody': 0.3968790391906358, 'adv': 0.1294480745940947, 'adp': 0.2364001260577151}, {'knock': 0.7544763150298014, 'need': 0.5847322936647372, 'adj': 0.2254087660896706, 'adp': 0.19505005248540522}, {'run': 0.5538654095964958, 'hard': 0.604755747038025, 'propn': 0.2093549405663043, 'like': 0.34813721360868444, 'adv': 0.19359535932478392, 'adp': 0.35354691440621383}, {'boojy': 0.4352592937686261, 'brand': 0.4213462036651456, 'benz': 0.4278668240646916, 'friend': 0.3286727144799044, 'new': 0.3085817994167048, 'need': 0.2944906985918447, 'propn': 0.1163393766918397, 'adv': 0.1075817144479806, 'adj': 0.22704675528843962, 'cconj': 0.2886425956753901}, {'mouth': 0.5430977467334779, 'word': 0.4632733397631511, 'come': 0.37085007790090896, 'open': 0.5384178828434442, 'adv': 0.1500087063366232, 'cconj': 0.20123727620945628}, {'album': 0.7208873150039851, 'death': 0.6452478535303064, 'adj': 0.19126877406076137, 'adp': 0.16550813469485656}, {'brain': 0.3233934357245478, 'alien': 0.4164355188207791, 'vain': 0.4164355188207791, 'hailie': 0.4358224973508705, 'motherfucker': 0.32116911968280204, 'sayin': 0.3463238256020579, 'propn': 0.20095887707522755, 'like': 0.16708768210975797, 'adj': 0.19609465979517832, 'adp': 0.16968405598716393}, {'school': 0.585773348438555, 'mc': 0.5280619965131139, 'music': 0.5391798044029515, 'adp': 0.2954746192512347}, {'equivalent': 0.9390763238906117, 'adv': 0.200207422377137, 'adj': 0.2112647389411647, 'adp': 0.18281098438912013}, {'ayy': 0.9586970578634372, 'adv': 0.28442916735804236}, {'crazy': 0.7369851119284143, 'think': 0.6343442637720055, 'adj': 0.2333673066550133}, {'guy': 0.6949308853994547, 'fuck': 0.4681119299428947, 'tell': 0.47997920495525315, 'adv': 0.1919464474657346, 'adp': 0.17526782271391264}, {'stan': 0.5470773003064683, 'cup': 0.5290067919047748, 'maybe': 0.4248465843019513, 'just': 0.27643874549684005, 'propn': 0.13200127627711994, 'adv': 0.3661939065264959, 'adp': 0.11145818627260337}, {'steelo': 0.8053485290215991, 'know': 0.4160849802912757, 'propn': 0.42224049542737524}, {'lemon': 0.7722731807388654, 'life': 0.43997911399198764, 'fuck': 0.4015317271005362, 'cconj': 0.22087278169562174}, {'baywatch': 0.5058465623361967, 'flock': 0.46558847464922726, 'wanna': 0.3281055955489709, 'girl': 0.35256973402858716, 'watch': 0.3702076521887722, 'play': 0.3615228276276673, 'propn': 0.12205293802423595, 'adv': 0.11286517685960266}, {'jail': 0.42309446178300003, 'tie': 0.45423488821557184, 'belt': 0.4631409161733903, 'neck': 0.41847000866246337, 'cell': 0.410202383014108, 'propn': 0.12141131625044294, 'adp': 0.20503264034863586}, {'jay': 0.680427100853769, 'fuck': 0.44033660416884884, 'propn': 0.5857667073611998}, {'guide': 0.6888201918429332, 'provide': 0.6484196285047145, 'adj': 0.16217872284523005, 'adp': 0.28067203376104805}, {'man': 0.9114220658954327, 'propn': 0.4114727424737899}, {'unite': 0.618681281986142, 'black': 0.4250377379095124, 'people': 0.4496188161960846, 'come': 0.37804133971443765, 'adv': 0.15291756882812207, 'adj': 0.16136309970134274, 'cconj': 0.205139526811788}, {'propn': 0.30220390620065807, 'lose': 0.8764304563450458, 'cconj': 0.37488992286787143}, {'stat': 0.4944965227743653, 'track': 0.38969609843926994, 'crazy': 0.36767995120213653, 'listen': 0.38401366412423465, 'check': 0.33475962089558997, 'know': 0.23514991682812497, 'adv': 0.22066548101712222, 'adj': 0.11642634095900674, 'adp': 0.30223709985223934}, {'hair': 0.347329389962153, 'shoe': 0.3599105442015375, 'let': 0.24492426610380008, 'kick': 0.31053720167825954, 'beard': 0.3706109474836161, 'long': 0.29343356718701186, 'night': 0.30565641587988657, 'berserk': 0.3706109474836161, 'grow': 0.32433242082812247, 'adv': 0.09318544668807882, 'adj': 0.09833201403786195, 'cconj': 0.12500864737670406}, {'sex': 0.68725165011604, 'sweet': 0.6477424666480424, 'adj': 0.1792474732411104, 'cconj': 0.2278757777394384, 'adp': 0.1551058979207863}, {'course': 0.748786501542308, 'friend': 0.5545502976030662, 'adv': 0.36303270174514835}, {}, {'smokey': 0.8670809776933459, 'message': 0.3899582081245407, 'man': 0.221399015460925, 'propn': 0.1999066370709433, 'adp': 0.08439778697671944}, {}, {'duet': 0.3928711051067771, 'cook': 0.3546507185014596, 'thought': 0.32027167802646367, 'coke': 0.3546507185014596, 'black': 0.24364716297206498, 'music': 0.29211697575536033, 'pharoahe': 0.33033736236067773, 'crack': 0.28470550166298375, 'rap': 0.24889147544368725, 'propn': 0.2843811318297022, 'cconj': 0.11759347291596202}, {'just': 0.4433089638631825, 'know': 0.834387669961914, 'adv': 0.1957480562086254, 'cconj': 0.2625967959907817}, {'afford': 0.368622558215875, 'duke': 0.34513271910889215, 'blow': 0.2770025183763851, 'forget': 0.3264877848889923, 'moment': 0.3068321711758337, 'head': 0.2650990079635053, 'stop': 0.2837439421834051, 'soon': 0.3330681435021945, 'know': 0.1904496057831111, 'num': 0.16988297981247386, 'adv': 0.26807783585376793, 'adj': 0.09429452936876771, 'adp': 0.24478399693401562}, {'say': 1.0}, {'shaolin': 0.6650796096382021, 'know': 0.7238414160525741, 'propn': 0.18363746145735374}, {'tumbler': 0.24918148026698803, 'dice': 0.22413215384157756, 'teen': 0.2380969767422807, 'mother': 0.21493376014946472, 'patient': 0.22413215384157756, 'aids': 0.24918148026698803, 'large': 0.2051830699070654, 'prison': 0.21493376014946472, 'number': 0.187636229201534, 'life': 0.14196355596110352, 'green': 0.21914789280776845, 'niggas': 0.28180352466064507, 'face': 0.1590807178893294, 'crack': 0.3450878332700342, 'baby': 0.15530399855341648, 'hard': 0.16595108875573297, 'propn': 0.22979644587774684, 'adj': 0.28029276768195016, 'cconj': 0.14253351810287074, 'young': 0.18013374348165495, 'adp': 0.14552526948103245}, {'guy': 0.3501777693814919, 'accent': 0.4536780355122978, 'wonder': 0.3688274264924715, 'stack': 0.3533900520927583, 'eye': 0.30334210479336504, 'say': 0.4469575386032735, 'lot': 0.31888996338248965, 'adv': 0.09672239387607079, 'adp': 0.08831798455328357}, {'blind': 0.2618302545478134, 'duel': 0.2618302545478134, 'minded': 0.28337997365361833, 'regardless': 0.27077419607564823, 'charge': 0.2548927945307238, 'thought': 0.2207372978469487, 'individual': 0.2618302545478134, 'critical': 0.2618302545478134, 'iron': 0.2276747578640383, 'criminal': 0.24443198275878297, 'mic': 0.182690519991288, 'claim': 0.2492244769698432, 'hard': 0.18872676696920293, 'propn': 0.19600085460431646, 'adv': 0.0604155089795456, 'adj': 0.3825132928943455, 'adp': 0.165497640463829}, {'roll': 0.5074801077185451, 'time': 0.3609497666567296, 'felony': 0.6574734276763812, 'know': 0.2987431198200413, 'num': 0.2664818925973546, 'adv': 0.14017077940076184}, {'shaolin': 0.30740459716768337, 'mental': 0.30740459716768337, 'spark': 0.6351105418800435, 'mic': 0.23734348066577768, 'catch': 0.2406424836432989, 'meet': 0.2713029943530473, 'slang': 0.28677217945546185, 'rap': 0.22285814125273395, 'propn': 0.16975712094046216, 'adj': 0.16564814335704892, 'cconj': 0.10529353305808328, 'adp': 0.14333816566410332}, {'earn': 0.9730407526422572, 'adv': 0.23063324499601015}, {'set': 0.581642057751409, 'bitch': 0.4278117466817904, 'hope': 0.5607593100222056, 'adv': 0.33654329662606997, 'cconj': 0.2257370855115727}, {'respect': 0.38524187783700276, 'clean': 0.4470394485717307, 'mean': 0.32885225643104493, 'smell': 0.4035493055448066, 'shine': 0.3550719372281241, 'ho': 0.32396017119703086, 'word': 0.3080405249627359, 'propn': 0.21572738523287874, 'adp': 0.09107708563707108}, {'rub': 0.60974360459323, 'titty': 0.5871604867982463, 'girl': 0.5110211479307274, 'adp': 0.14937431428482983}, {'minded': 0.26986066764578276, 'fat': 0.2082957499436597, 'date': 0.22881738917770073, 'stab': 0.2327707819674483, 'track': 0.2032078709565776, 'define': 0.25785627824054075, 'criminal': 0.2327707819674483, 'rapper': 0.19280422096197466, 'knife': 0.2327707819674483, 'sharp': 0.22881738917770073, 'razor': 0.2373346390064997, 'tape': 0.21020650754987813, 'gate': 0.24933902841174174, 'play': 0.18428697113317566, 'hard': 0.17972311409412423, 'propn': 0.06221672477500361, 'adv': 0.11506649096741339, 'adj': 0.36426459948094114, 'cconj': 0.15436215530917516, 'adp': 0.2626703125462747}, {'vain': 0.7393491003476368, 'die': 0.526078546491962, 'know': 0.35158564609973153, 'adj': 0.17407546156616013, 'adp': 0.15063046794459425}, {'stop': 0.724174810431212, 'cause': 0.650813122012234, 'adv': 0.22806385981476188}, {'just': 0.6932706666209794, 'know': 0.6524304078287819, 'adv': 0.3061214558688631}, {}, {'camera': 0.6772216610381941, 'studio': 0.7357790577480914}, {'spine': 0.47640388259038086, 'low': 0.3649872509877688, 'cut': 0.3389817637952522, 'fade': 0.42275291240635027, 'stay': 0.33471729847261916, 'like': 0.3822979399813103, 'adj': 0.2243330673286492, 'adp': 0.19411923198789072}, {'capture': 0.5128627208956323, 'better': 0.37541606615568296, 'moment': 0.41740077493720096, 'pass': 0.4147384723718539, 'hope': 0.4050956277183356, 'adv': 0.24312073926287053, 'cconj': 0.16307371936633025}, {'adv': 0.5976534819625343, 'cconj': 0.8017545232164636}, {'flash': 0.6316389443862169, 'bust': 0.5161000594078492, 'steel': 0.5408144619735349, 'cconj': 0.2054085936229445}, {'adv': 1.0}, {'intj': 1.0}, {'nada': 0.4780187034704326, 'dove': 0.49434749381757803, 'nose': 0.45500456606883766, 'sell': 0.35654887598020024, 'flow': 0.38389793195399535, 'adj': 0.11639125295466987, 'cconj': 0.14796720316072, 'adp': 0.10071533770172553}, {'michael': 0.483407275021333, 'west': 0.4601337056661965, 'pool': 0.4368601363110601, 'propn': 0.6031149149777555}, {'fuck': 1.0}, {'fatal': 0.3695604553858623, 'custom': 0.4425940653879774, 'make': 0.23493163650305135, 'plot': 0.35170481295858586, 'shot': 0.295931045487438, 'right': 0.25829618430594536, 'niggas': 0.25026853417553074, 'propn': 0.20408126455418316, 'hit': 0.27208366437140097, 'adj': 0.2987122046492731, 'adp': 0.25848076898523853}, {'pick': 1.0}, {'cycle': 0.4095399573171545, 'read': 0.3083878192553162, 'pro': 0.3472527679367532, 'hall': 0.3683703645203933, 'son': 0.2727474037514261, 'pick': 0.3190089347987668, 'fuck': 0.2129340892311025, 'propn': 0.3776798602190269, 'think': 0.25044214217027777, 'adj': 0.184269052402737, 'cconj': 0.11712983416257305, 'adp': 0.07972557803783827}, {'plane': 0.9731733500771076, 'adp': 0.23007309860063904}, {'couple': 0.361866416046719, 'care': 0.3568569290184965, 'note': 0.367466546091465, 'write': 0.30623403112860176, 'new': 0.2650205195652215, 'beer': 0.361866416046719, 'shot': 0.28976992875411, 'year': 0.2972928712599304, 'propn': 0.19983240823046605, 'adj': 0.09749772858587231, 'cconj': 0.24789605485204438, 'adp': 0.16873289719634946}, {'skill': 0.7561103850870029, 'propn': 0.2193714129656737, 'kill': 0.5881009380821578, 'adp': 0.18523108638647576}, {'regular': 0.5252514878651089, 'walk': 0.4344175363927675, 'day': 0.3743795601823057, 'vision': 0.5252514878651089, 'num': 0.24206681311457878, 'adj': 0.13436058305330398, 'cconj': 0.17081145863412886, 'adp': 0.1162645057295202}, {'shoulda': 0.4403781253677992, 'tune': 0.4678164131132148, 'auto': 0.4523639708004433, 'vocal': 0.4895954073323738, 'maybe': 0.3632945565100245, 'adv': 0.1043798379492708}, {'crook': 0.412504497307975, 'use': 0.3035408722594989, 'rob': 0.385094122709531, 'brain': 0.3312833206913403, 'good': 0.28324161453907243, 'let': 0.25017333754541776, 'stop': 0.30223464277461837, 'adj': 0.2008788147515704, 'cconj': 0.1276877584804696, 'adp': 0.43455966731250495}, {'tell': 0.9393337898728003, 'adp': 0.34300441863509895}, {}, {'strivin': 0.6081495574679296, 'pushin': 0.5920360138034252, 'desire': 0.5288170516457578}, {'fan': 0.8564401061832173, 'fuck': 0.5162463990391403}, {'ay': 0.4938028902555111, 'yo': 0.5771300690762963, 'intj': 0.6075175133826818, 'adj': 0.11626302920165144, 'adp': 0.20120876699953236}, {'shark': 0.40258067692853966, 'ark': 0.4213226491847587, 'pool': 0.35179909147811833, 'steak': 0.40258067692853966, 'throw': 0.2961473857093954, 'new': 0.25764750159646416, 'propn': 0.38854591941069305, 'adj': 0.0947852876550494, 'adp': 0.2460579814975815}, {'difficult': 0.37142625316727673, 'seed': 0.2951517227950023, 'stage': 0.31013623091045633, 'son': 0.24736425451654268, 'believe': 0.2866905749073157, 'earth': 0.28189100482380264, 'girl': 0.24736425451654268, 'old': 0.23712338065206565, 'baby': 0.23149385830273403, 'hard': 0.24736425451654268, 'num': 0.1505435303357671, 'propn': 0.17126560286919532, 'adv': 0.15837326713069275, 'think': 0.22713482491637774, 'adj': 0.25068016863479187, 'cconj': 0.10622918389234956, 'adp': 0.14461188562002725}, {'lung': 0.7572962371510126, 'smoke': 0.6280512418943074, 'adp': 0.17903643973207115}, {'arsenal': 0.5781728529707502, 'gon': 0.4290216923206323, 'bar': 0.43211652356545843, 'head': 0.36568355286375165, 'need': 0.3374194402284089, 'propn': 0.1332984965147882, 'adj': 0.1300720013253814, 'adp': 0.11255352276452547}, {'america': 0.5717644934776728, 'good': 0.4612006107606456, 'hand': 0.49425376954129846, 'intj': 0.2848609165526941, 'propn': 0.1676016857768943, 'adj': 0.16354488058377925, 'adp': 0.2830363529774654}, {'mad': 0.5214821031409391, 'sick': 0.5533738492514014, 'niggas': 0.4053950833917911, 'adv': 0.15284706251498661, 'adj': 0.48386609812084674}, {'word': 1.0}, {'dead': 0.9190862939855258, 'adv': 0.27105427400241794, 'adj': 0.28602441286186364}, {'eye': 0.5916896911584695, 'open': 0.6771600897353123, 'know': 0.4020950877764323, 'adp': 0.17227031848964028}, {'constantly': 0.42907615104655156, 'search': 0.370103550376544, 'sky': 0.3311884590106074, 'answer': 0.385942654297886, 'kiss': 0.3409628805495425, 'stop': 0.29046954430422495, 'burn': 0.3183874433235065, 'adv': 0.27443210318187006, 'cconj': 0.12271725265693037, 'adp': 0.1670574192004695}, {'pac': 0.4763426916045959, 'diddy': 0.44011906200284673, 'admit': 0.410873736349083, 'ah': 0.3827059674440614, 'intj': 0.18665582422840268, 'propn': 0.21964284310634113, 'kill': 0.29441430022170606, 'hit': 0.29283055324002816, 'adp': 0.09273013720335561}, {'piece': 0.2803018469085149, 'quarter': 0.2803018469085149, 'royalty': 0.2668067573401788, 'cocaine': 0.2437367493453091, 'peace': 0.22673494719595078, 'war': 0.23214406247187608, 'inside': 0.4107442664132279, 'loyalty': 0.25723183891364515, 'dna': 0.4683236618375508, 'got': 0.230241659776973, 'propn': 0.27977108877209406, 'cconj': 0.08676539228846866, 'adp': 0.11811544178021742}, {'away': 0.4704376825736245, 'planet': 0.5042842948665578, 'energy': 0.5580154300092073, 'feel': 0.35026184025994866, 'num': 0.24478513142185418, 'adv': 0.12875817686030586, 'adp': 0.11757011193941104}, {'punch': 0.5195374831568528, 'fuckin': 0.35170870162197004, 'feel': 0.3013104371717865, 'wanna': 0.3219955276929845, 'world': 0.2833847702682339, 'right': 0.30320006524645704, 'face': 0.33167952811923684, 'like': 0.19918272773314089, 'adv': 0.22152674428038277, 'adp': 0.20227782621429094}, {'battle': 0.7833505126314244, 'fuck': 0.5125453768151029, 'adv': 0.21016611188834028, 'cconj': 0.2819386750328633}, {'motherfucke': 0.568985894229864, 'cool': 0.4753260823261963, 'tell': 0.6566023755248163, 'adj': 0.13854056475646545}, {'dough': 0.9607331400038249, 'adj': 0.2774740234659647}, {}, {'hol': 0.6555546305963029, 'sit': 0.5980342097249007, 'propn': 0.2193065433325758, 'adv': 0.40559567349020775}, {'wait': 0.7384292408149463, 'tell': 0.544566848352696, 'adp': 0.3977049207448581}, {'left': 0.7229996938595387, 'leg': 0.6286851018020331, 'adv': 0.16682714750446498, 'adj': 0.17604089472486406, 'adp': 0.1523311908020596}, {'love': 0.8829448510433874, 'cconj': 0.4694767193546133}, {'product': 0.7429211312543286, 'sell': 0.6131795445280792, 'propn': 0.20513055674761435, 'adp': 0.17320650564150197}, {'crop': 0.4359585523346661, 'lyrical': 0.40126254185528965, 'father': 0.35885040159468995, 'son': 0.30385852606025004, 'cream': 0.3709219521761802, 'yo': 0.2547623701565606, 'check': 0.2951311343645886, 'right': 0.26626831288664754, 'propn': 0.10519004403923196, 'adv': 0.19454333695760503, 'adj': 0.10264391501347495, 'adp': 0.08881953154706175}, {}, {'spitting': 0.41061092227824814, 'finish': 0.3793858857211923, 'surprise': 0.3793858857211923, 'bright': 0.3923454468087233, 'white': 0.30058757138931674, 'lie': 0.28714099793264264, 'eye': 0.2745462016347765, 'adv': 0.17508130544414177, 'adj': 0.09237546203071961, 'adp': 0.3197362556926944}, {'huh': 0.5065001250277845, 'grandma': 0.5950094659438918, 'nigga': 0.346388900628464, 'stay': 0.43232881995630246, 'intj': 0.252345312616204, 'adv': 0.13729429318521827}, {'desire': 0.7605008560231201, 'soul': 0.6493369294812219}, {'school': 0.47788025125669686, 'johnny': 0.5249617981246257, 'wanna': 0.3837171575208391, 'rate': 0.5445024055988705, 'propn': 0.14274004186782255, 'adv': 0.13199502061277588, 'adp': 0.12052569962780431}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'course': 0.748786501542308, 'friend': 0.5545502976030662, 'adv': 0.36303270174514835}, {'silly': 0.9480789183115425, 'adv': 0.21876261206517328, 'adj': 0.23084471883852556}, {'motherfuckin': 0.5664921515421448, 'kiss': 0.5723481299893466, 'ring': 0.5559405612812208, 'cconj': 0.20599600156597903}, {'kidnap': 0.39993341734600296, 'cat': 0.3202815103640732, 'femstat': 0.4185521475578461, 'strap': 0.3867232180300737, 'boy': 0.29123642944675665, 'plot': 0.33260004207513577, 'intricate': 0.4185521475578461, 'adj': 0.18832401145143218, 'adp': 0.08147999067447798}, {'sunlight': 0.48442560124634504, 'range': 0.4044892595661822, 'remain': 0.39888972446428284, 'stay': 0.3252131304557061, 'doubt': 0.38494600086728664, 'like': 0.18572136904101472, 'adj': 0.10898160839549303, 'adp': 0.3772145831991029}, {'cosby': 0.5484154535621321, 'mask': 0.435795166728205, 'iron': 0.4406110777301248, 'sweater': 0.524019928575684, 'propn': 0.1264378897239683, 'cconj': 0.15684870299036424}, {'bitch': 0.6529715642208193, 'sit': 0.7573824240890573}, {'know': 1.0}, {'belly': 0.5892010552900898, 'son': 0.4549241429239507, 'god': 0.4166421699834891, 'propn': 0.15748608817773205, 'lose': 0.456730046493705, 'adv': 0.14563103095131724, 'adp': 0.13297684875869506}, {'going': 0.5297917370705054, 'turn': 0.48020105125981943, 'notch': 0.6811916334331641, 'adv': 0.15718022853221245}, {'high': 0.9059975657251548, 'adv': 0.29115796955802764, 'adj': 0.3072384215278758}, {'river': 0.34959622792969275, 'stand': 0.555373658887672, 'turn': 0.2531528427008102, 'let': 0.2177917085752, 'run': 0.237064715300038, 'night': 0.5435919773113861, 'num': 0.31506330870087496, 'adv': 0.08286242098991846}, {'layin': 0.8473831476079065, 'want': 0.49558000761322163, 'adj': 0.19063645297842713}, {'filter': 0.4384857700597631, 'brita': 0.4384857700597631, 'pure': 0.40239656717906647, 'power': 0.36017490644681555, 'juice': 0.37711825608537464, 'water': 0.34972684340356164, 'propn': 0.21882774347314404, 'adj': 0.10676550480039086}, {'net': 0.6476363975129975, 'worth': 0.5825318178753061, 'love': 0.34835497175929836, 'adv': 0.13807356280318245, 'adj': 0.29139853911452157, 'adp': 0.12607606468562807}, {'night': 0.8442726164202747, 'adv': 0.25739332400780596, 'adp': 0.4700557689456392}, {'valuable': 0.5943625614169119, 'create': 0.5943625614169119, 'god': 0.39236418381076005, 'propn': 0.14830928048366768, 'adj': 0.14471944869609119, 'cconj': 0.18398059581729725, 'adp': 0.25045641794252316}, {'bitty': 0.5382368740504844, 'curl': 0.5142941295048319, 'range': 0.44942099281244274, 'little': 0.36756020851896976, 'propn': 0.12409120509741164, 'adj': 0.24217514549547878, 'cconj': 0.15393759429655104, 'adp': 0.10477914337360456}, {'know': 0.48168261564962644, 'comin': 0.8517006788028494, 'adp': 0.20636814557411698}, {'hard': 0.8421784176078899, 'adv': 0.5391989548538374}, {'behave': 0.7867591948825894, 'know': 0.35748805431878, 'adv': 0.5032020074354562}, {'cali': 0.5799231211085044, 'rain': 0.5235054166705431, 'propn': 0.41977939179372104, 'adv': 0.3881797199130665, 'adj': 0.1365395385378638, 'cconj': 0.17358154608208853, 'adp': 0.11814999309986356}, {}, {'talkin': 0.6191230450076379, 'baby': 0.5400909482637888, 'like': 0.33222691398163173, 'adv': 0.18474781286074396, 'adj': 0.3899026119066941, 'adp': 0.16869469239351445}, {'sit': 1.0}, {'check': 0.8756717997273218, 'adv': 0.2886108820158843, 'cconj': 0.38717264617264296}, {'legal': 0.7686527889929311, 'type': 0.574477977134154, 'adv': 0.1638737871163686, 'adj': 0.17292442229850705, 'adp': 0.14963445402080933}, {'place': 0.22312768439511418, 'um': 0.8893995165902715, 'intj': 0.3874632574838661, 'adv': 0.07026944351237337, 'adp': 0.06416358588731133}, {'prosecutor': 0.3472268384689601, 'smack': 0.33178091884941896, 'dead': 0.25101091053675734, 'arm': 0.2789709708595938, 'girl': 0.23124781114308557, 'watch': 0.24281638772241548, 'leave': 0.22097515957301891, 'run': 0.21178825379398164, 'll': 0.5020218210735147, 'propn': 0.32021438073182695, 'like': 0.1331214610506201, 'adj': 0.07811589485995366, 'cconj': 0.19861613637454104, 'adp': 0.06759501707363533}, {'threat': 1.0}, {'chest': 0.3852057254417027, 'heavenly': 0.4379970605379231, 'breath': 0.3560792368249673, 'set': 0.3227716127820007, 'shit': 0.22624210853449558, 'free': 0.31859047735576956, 'death': 0.3324143903454823, 'adv': 0.09337927095825176, 'kill': 0.27071392161607516, 'adj': 0.19707308617509256, 'cconj': 0.12526866340607612, 'adp': 0.17053070503309972}, {'character': 0.6252197887481014, 'bad': 0.48917173621112475, 'boy': 0.47084522057398803, 'propn': 0.1560089800951302, 'adv': 0.28853022983562593, 'adj': 0.1522327767849499, 'adp': 0.13172962000107477}, {'expand': 0.361236218562808, 'trigger': 0.34516711048294135, 'seven': 0.3115875974197121, 'large': 0.2974521068215842, 'live': 0.2328831912786908, 'release': 0.3115875974197121, 'plan': 0.2741573589941167, 'figure': 0.3016276806985957, 'big': 0.24153286315195197, 'catch': 0.23612019757558977, 'nigga': 0.19430413917302614, 'num': 0.14641338667866413, 'adj': 0.1625351922292844, 'cconj': 0.206629598005305, 'adp': 0.07032223796131262}, {'son': 0.3716089239024799, 'god': 0.3403379461130094, 'pray': 0.481294241082206, 'alright': 0.430687838234793, 'just': 0.2694077767349301, 'll': 0.40336768547672847, 'propn': 0.12864394354010214, 'adv': 0.11896003221722741, 'adj': 0.12553011198287664, 'adp': 0.21724669679455644}, {'feeling': 0.6960837092638134, 'hide': 0.7179606324148496}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'crazy': 0.7369851119284143, 'think': 0.6343442637720055, 'adj': 0.2333673066550133}, {'rule': 0.46593406099601986, 'suicide': 0.6041411846157017, 'commit': 0.6041411846157017, 'adj': 0.1422415412606259, 'cconj': 0.18083045331423692}, {'field': 0.5734193887729142, 'wrong': 0.47879794831012523, 'talk': 0.38340459688175854, 'tell': 0.30569898720461053, 'like': 0.21984022653544882, 'adv': 0.24450156999309328, 'adj': 0.12900261074734892, 'cconj': 0.16399991432475083, 'adp': 0.22325632169083381}, {'mall': 0.6088446078633968, 'blood': 0.4517810593903148, 'look': 0.37734571065167005, 'adj': 0.2739445002789347, 'young': 0.4401348699572022, 'adp': 0.11852442583408224}, {'midnight': 0.31880996288586994, 'represent': 0.2618724629104398, 'attack': 0.27138607922083624, 'belt': 0.3034609059607226, 'feel': 0.20011447405991664, 'card': 0.2772215198355871, 'mic': 0.222447776322147, 'black': 0.20447047327633772, 'deal': 0.2663311906355989, 'high': 0.22890687902029883, 'kick': 0.24514669309570072, 'like': 0.13228664488449832, 'adj': 0.1552520466890618, 'cconj': 0.09868529872474537, 'adp': 0.47019786023284194}, {'blame': 0.5102933876091427, 'stuck': 0.527724658982648, 'box': 0.4388761633036105, 'remain': 0.45477337460241163, 'adj': 0.1242497130909541, 'adp': 0.21503079476550763}, {'shoulder': 0.632896986474375, 'cold': 0.48722382309311724, 'walk': 0.5118069975543188, 'adj': 0.15829629524896885, 'adp': 0.2739529720354692}, {'burn': 1.0}, {'hollow': 0.23469918031025763, 'swag': 0.2609294925550745, 'smacking': 0.2609294925550745, 'term': 0.24932239448009774, 'shift': 0.2609294925550745, 'whip': 0.20734611137186304, 'prepare': 0.22947992926110114, 'tip': 0.2250671153757643, 'clip': 0.21212830620376358, 'use': 0.17740356055659412, 'assassin': 0.24108702733607795, 'spit': 0.18437763884370598, 'rapper': 0.18642326789215108, 'shape': 0.23469918031025763, 'real': 0.16878393762744773, 'ass': 0.3517930961557794, 'nigga': 0.14035049042833767, 'num': 0.10575786348702268, 'propn': 0.0601576308455936, 'adv': 0.05562915366686532, 'adj': 0.23480605239119903, 'cconj': 0.07462673090877922, 'adp': 0.1523862635334735}, {'krill': 0.6033655150964438, 'come': 0.37505265238419927, 'thing': 0.44871091445411393, 'money': 0.45574891120587707, 'adj': 0.16008740892104428, 'cconj': 0.203517752047217, 'adp': 0.13852636724820394}, {'hear': 0.9500624378627566, 'adv': 0.31205987272040553}, {'tryna': 0.927979614526415, 'adv': 0.2563166986405853, 'adj': 0.2704728914723207}, {'look': 0.945616690401582, 'adv': 0.3252830687785003}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'suspect': 0.5607391575340693, 'creep': 0.5422173843738568, 'cop': 0.4324609536354153, 'like': 0.22498706730361406, 'adv': 0.3753386633383393, 'adp': 0.11424156958397574}, {'girlfriend': 0.45785315463106413, 'hoo': 0.44272980867452805, 'sip': 0.3768724974676642, 'laugh': 0.3768724974676642, 'cash': 0.33179663859928943, 'yo': 0.26755698272877526, 'propn': 0.33141861703062575, 'cconj': 0.13704378316130597}, {'general': 0.3456125034486957, 'sore': 0.3456125034486957, 'fully': 0.3456125034486957, 'raw': 0.2809732017699753, 'throat': 0.2981112193462608, 'quote': 0.3456125034486957, 'style': 0.2546909903887395, 'hand': 0.2349787602937811, 'star': 0.25300550330472454, 'rap': 0.20921243736068212, 'intj': 0.13542894187701138, 'hold': 0.2192645852025533, 'num': 0.1400809069194063, 'propn': 0.07968140816316373, 'adv': 0.07368324245477711, 'adj': 0.1555054332823246, 'adp': 0.0672807527623324}, {'king': 0.5727535207933606, 'let': 0.46569965927140466, 'sit': 0.522498329183099, 'adv': 0.35436611865400336, 'cconj': 0.2376917788319016}, {'proof': 0.49310568655889403, 'margin': 0.5336903357743603, 'livin': 0.39601432314336954, 'life': 0.30405380755995515, 'true': 0.3988710493243544, 'propn': 0.12304299483738249, 'adj': 0.12006473445701145, 'cconj': 0.15263726873665995, 'adp': 0.10389406394323669}, {}, {}, {'reload': 0.6654909591764376, 'gold': 0.5614901959539094, 'need': 0.44160402842967483, 'cconj': 0.21641724787259545}, {'fry': 0.484247950747502, 'lead': 0.4115185636115368, 'blood': 0.40857125556142465, 'pressure': 0.484247950747502, 'high': 0.36527831064978517, 'adj': 0.12387178048605775, 'adp': 0.2143767316986644}, {'flippin': 0.4997726657087961, 'hyper': 0.4997726657087961, 'visit': 0.47754094981776785, 'talkin': 0.3570667793520507, 'tell': 0.26643674896774605, 'propn': 0.23044646456806447, 'adv': 0.10654958987951645, 'adp': 0.09729127512285381}, {'shame': 0.5191718640493688, 'fame': 0.42734574402330244, 'alcohol': 0.5020231000155266, 'wall': 0.441721444153042, 'adp': 0.31731870961357683}, {'fake': 1.0}, {'fling': 0.5291910342598721, 'sing': 0.4759933449919018, 'frail': 0.5291910342598721, 'thing': 0.3336937417459991, 'propn': 0.24401135014727293, 'adp': 0.20603636028675515}, {'marijuana': 0.22615204855249327, 'lace': 0.18883410462415867, 'cocaine': 0.18169637123892682, 'tear': 0.18385522669050514, 'projects': 0.22615204855249327, 'saturday': 0.22615204855249327, 'robbery': 0.20895424498622717, 'stage': 0.18883410462415867, 'inspire': 0.22615204855249327, 'fact': 0.17971041673735974, 'leavin': 0.21609197837145905, 'month': 0.18883410462415867, 'guard': 0.1950695136284224, 'job': 0.18621998528162592, 'throw': 0.15896211153432557, 'pop': 0.16665742312423903, 'gang': 0.18385522669050514, 'believe': 0.17455863785369494, 'friend': 0.1473007641063946, 'sign': 0.18385522669050514, 'clock': 0.1778717100621563, 'need': 0.13198146062549682, 'say': 0.11140098821069155, 'end': 0.15896211153432557, 'propn': 0.20855858521127635, 'adv': 0.04821473777383609, 'think': 0.13829664843135606, 'adj': 0.05087760417652432, 'cconj': 0.06468026249747853, 'adp': 0.308176814769949}, {'say': 0.5114153461721163, 'talk': 0.6941769368797976, 'propn': 0.23936067077624706, 'like': 0.39803386892203274, 'adp': 0.20210945668211325}, {'relationship': 0.2559719035120065, 'ammunition': 0.2559719035120065, 'shall': 0.2302399600307502, 'individual': 0.23650643970896293, 'encrypt': 0.2559719035120065, 'range': 0.21373330694111192, '40': 0.489170674256162, 'scripture': 0.2302399600307502, 'killa': 0.2207909016974416, 'bullet': 0.19938792984378115, 'block': 0.18087451409852076, 'remain': 0.21077449622770666, 'num': 0.20749698597158178, 'adj': 0.23034480157136325, 'cconj': 0.07320884341798414, 'adp': 0.29898193235103415}, {'armor': 0.7871600639606015, 'shine': 0.5974088785993544, 'adp': 0.1532372848761148}, {'smash': 0.7502180878365271, 'propn': 0.3845888402515603, 'hit': 0.5127385953854185, 'adp': 0.1623680308405961}, {'dollar': 0.35829358609682826, 'million': 0.40293516917812144, 'feel': 0.2874464902338193, 'nah': 0.3898217574556341, 'turn': 0.3228227958141689, 'rich': 0.38607020573283546, 'just': 0.23930295341990332, 'num': 0.20088579114532198, 'adv': 0.21133381815119975, 'adj': 0.22300563780821828, 'cconj': 0.14175257881451753, 'adp': 0.09648529228390888}, {'reverse': 0.2870460726095521, 'curse': 0.2806627289879716, 'search': 0.2752656888565644, 'dog': 0.26646680417727747, 'god': 0.5839464792068301, 'turn': 0.20785844772279766, 'people': 0.20004586653368395, 'devil': 0.24858205404379996, 'make': 0.16939442915704547, 'hard': 0.2125335765357542, 'propn': 0.2207252490046492, 'adv': 0.06803658223926512, 'cconj': 0.2738140370674152, 'adp': 0.06212474255925359}, {'know': 0.7572907433021049, 'intj': 0.653077889771921}, {'enemy': 0.7911546075843401, 'die': 0.6116162088254927}, {'lady': 0.630391711543646, 'miss': 0.6018576880325881, 'just': 0.39432836129102744, 'adv': 0.174120120554282, 'cconj': 0.23358283428547455}, {'knife': 0.23697906937917246, 'la': 0.2538468548908546, 'beneath': 0.2625180889737515, 'grandma': 0.2538468548908546, 'bed': 0.22073278476406555, 'crawl': 0.24712092320159804, 'faggot': 0.2625180889737515, 'punk': 0.21400685307480902, 'enter': 0.2416254368689085, 'lp': 0.24712092320159804, 'light': 0.18846783348022997, 'hide': 0.22073278476406555, 'boy': 0.19116889857632569, 'steal': 0.22073278476406555, 'niggas': 0.15535376335344092, 'tell': 0.1464679965102114, 'num': 0.11135522853634516, 'propn': 0.38004928485557954, 'adv': 0.05857339507068784, 'adj': 0.12361672580945923, 'adp': 0.10696766268449877}, {'innocent': 0.8839932304076282, 'propn': 0.213293870114467, 'adj': 0.2081310838576997, 'adp': 0.360198758322815}, {'rollin': 1.0}, {'sea': 0.9402637932770282, 'cconj': 0.28143806829094953, 'adp': 0.19156359980161394}, {'mean': 0.5020455080261069, 'need': 0.4168332869398702, 'hear': 0.46360006981298785, 'love': 0.38418530890598585, 'just': 0.3448564288482763, 'adv': 0.30455046534512265}, {'ooh': 0.9967987271624574, 'propn': 0.07995184505253415}, {'dat': 0.3320580046772859, 'wack': 0.29975380834116994, 'track': 0.26168375897217805, 'understand': 0.26823574582321746, 'fact': 0.2761522331891097, 'spit': 0.24556185973273045, 'nut': 0.3125821957378954, 'sack': 0.3320580046772859, 'hand': 0.23627349024907218, 'come': 0.18316269554173922, 'rza': 0.259728143680214, 'nigga': 0.18692465995401203, 'propn': 0.16024090340023697, 'adv': 0.14817847235122686, 'adj': 0.15636226622513794, 'cconj': 0.09939100501915031, 'adp': 0.20295440654125244}, {'truck': 0.31811993079469963, 'rule': 0.2606313253672716, 'mc': 0.24609262541313787, 'attack': 0.2781690648383745, 'pack': 0.2643295114679771, 'spot': 0.27298783507649915, 'cash': 0.24489863626517197, 'mad': 0.2572551459743995, 'run': 0.21572032190312984, 'gun': 0.2404593332298506, 'niggas': 0.19998763280103019, 'intj': 0.1385876452112349, 'like': 0.271185997482083, 'adv': 0.07540180792824637, 'think': 0.21627862773112536, 'adj': 0.23869859186806952, 'adp': 0.27539995407595236}, {'corner': 1.0}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'know': 1.0}, {}, {'damn': 0.47698161458677313, 'insult': 0.6334330277721143, 'line': 0.45256154784102315, 'propn': 0.2920776020907524, 'adj': 0.14250392629915298, 'adp': 0.24662215925505515}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'rise': 0.6465070639296668, 'eye': 0.509810506144139, 'try': 0.4837298468944479, 'adp': 0.29686242493379433}, {'adv': 0.9096769292193885, 'adp': 0.4153166074767344}, {'country': 0.5603434382449968, 'gimme': 0.5603434382449968, 'oil': 0.586429988781068, 'cconj': 0.1677209906057899}, {'adj': 1.0}, {'adv': 1.0}, {'obviously': 0.3009449372400426, 'harsh': 0.3149553008457545, 'shell': 0.3009449372400426, 'poppin': 0.3009449372400426, 'ma': 0.2769940624601386, 'lettin': 0.28329396657707023, 'gettin': 0.24771669464480572, 'heavy': 0.25604976211803604, 'hard': 0.20975545625918984, 'propn': 0.29045340234420036, 'like': 0.24149809386334337, 'adv': 0.13429449202829513, 'adj': 0.2834229666685329, 'adp': 0.24525073040981385}, {'intj': 1.0}, {'dc': 0.8232815346566577, 'world': 0.46996971815905125, 'propn': 0.19864507858247155, 'adv': 0.18369170205512284, 'adp': 0.16773034924525748}, {'piranha': 0.41293104753217424, 'hungry': 0.3561774439795945, 'shit': 0.4265891225767637, 'ass': 0.27836311313013323, 'sleep': 0.2902489349706654, 'stay': 0.2772161468856836, 'cause': 0.25122141161646055, 'intj': 0.16180784629439682, 'propn': 0.09520178527493059, 'promise': 0.3561774439795945, 'adv': 0.17607058881731041, 'adp': 0.1607714503363}, {'yo': 1.0}, {'lotta': 0.711817563057012, 'thing': 0.44885315638278284, 'got': 0.5402282859391848}, {'handle': 0.6224097542662916, 'live': 0.46519428583440076, 'business': 0.5569655497195364, 'adv': 0.1538391239698797, 'cconj': 0.2063757966999368, 'adp': 0.14047172355836293}, {'going': 0.6465382608423453, 'win': 0.7628815617557912}, {'watch': 1.0}, {'ly': 0.7176677552087873, 'prob': 0.6755752295490266, 'adj': 0.16897071448437448}, {'bop': 0.38017922237869767, 'chop': 0.3499224417442703, 'cotton': 0.35788101606089034, 'chain': 0.3373647431735291, 'gang': 0.32346382147190056, 'pick': 0.30992515336277704, 'line': 0.284267496982471, 'propn': 0.27519406785797, 'hip': 0.2826800017682798, 'adp': 0.23236617509694207}, {'fail': 0.6975503872800617, 'attempt': 0.7165357333765261}, {'king': 0.6611082726877746, 'teach': 0.716953376513556, 'propn': 0.22116443586073792}, {'reload': 0.6654909591764376, 'gold': 0.5614901959539094, 'need': 0.44160402842967483, 'cconj': 0.21641724787259545}, {'adj': 1.0}, {'eventually': 0.9572597189079648, 'adv': 0.21358509777380746, 'adp': 0.1950262458368032}, {'say': 0.75608547541009, 'adv': 0.6544728824587756}, {'matter': 0.9656011204395729, 'adp': 0.2600278373671586}, {'better': 0.5432941457248641, 'music': 0.5862457759248968, 'lose': 0.5517214155752057, 'adv': 0.1759195813040182, 'adp': 0.1606335641788972}, {'know': 0.6765538682075426, 'intj': 0.5834514372107528, 'propn': 0.3432813656182457, 'adp': 0.2898571852643825}, {'ya': 0.6338116077002094, 'bish': 0.7734874568759832}, {'feel': 0.43786495375649204, 'wanna': 0.46792457030853796, 'right': 0.4406109652033536, 'tell': 0.4024987380871781, 'adv': 0.48288468805108464}, {'pour': 0.4101502676698184, 'drank': 0.35996666121517107, 'lay': 0.37059041874944987, 'trip': 0.3954311676188691, 'drink': 0.3568648347215628, 'just': 0.2251696223746322, 'propn': 0.21503988146718278, 'adv': 0.39770471152185133, 'cconj': 0.1333806130937642, 'adp': 0.09078683116021592}, {'ooh': 0.8779526083862562, 'intj': 0.47874755083213627}, {'okay': 0.9646449356052971, 'adj': 0.263552932465287}, {'live': 0.4505881709920778, 'poet': 0.6989287896846326, 'thug': 0.5553997183218486}, {'aw': 0.3005978279302634, 'momma': 0.2967806152127599, 'hell': 0.26389999941056624, 'break': 0.23160030238064544, 'eatin': 0.314882809186337, 'lunch': 0.3372956564499606, 'say': 0.17982438906745457, 'loose': 0.30481756081837125, 'free': 0.2655349374303716, 'goddamn': 0.314882809186337, 'man': 0.1864258356651077, 'intj': 0.2860962144053662, 'propn': 0.08416424479884248, 'adv': 0.0778286252526752, 'adj': 0.24638113813557344}, {'propn': 1.0}, {'repeat': 0.6393496740570915, 'sip': 0.5262676602309145, 'record': 0.5262676602309145, 'adv': 0.14265257374552173, 'adp': 0.1302571958742647}, {'die': 0.885516188934791, 'adv': 0.27767490119250265, 'cconj': 0.3725019844002676}, {'nigga': 0.2978211489799814, 'lee': 0.5290575171051246, 'bruce': 0.5536875648838173, 'study': 0.49802732666866284, 'propn': 0.25530676356982446, 'adp': 0.10778694575225613}, {'self': 0.6068162776169348, 'discuss': 0.7464174217308526, 'adv': 0.15913329323754702, 'adj': 0.16792211424284031, 'adp': 0.1453058714828178}, {'remember': 0.4750572387351599, 'dream': 0.8799548965289784}, {'kelly': 0.7625341102108515, 'fuck': 0.414925446373923, 'know': 0.3626109069254419, 'propn': 0.18398766626998428, 'adv': 0.17013765362554303, 'cconj': 0.22824033906032903}, {'write': 0.2766799302715221, 'friend': 0.25503339473239645, 'lend': 0.33200300428729107, 'gentleman': 0.33200300428729107, 'pipe': 0.3269433328177897, 'pen': 0.5661113822068429, 'fiend': 0.294844827549421, 'propn': 0.09027346923434683, 'like': 0.15011613271233723, 'adp': 0.3048975716953724}, {'lightin': 0.4862237925930316, 'bong': 0.4862237925930316, 'writin': 0.4862237925930316, 'straight': 0.35407414115721214, 'song': 0.3615288118325092, 'adv': 0.10848691763548317, 'adj': 0.11447857457361336, 'adp': 0.09906026445375628}, {'yellow': 0.5221922092926475, 'step': 0.4566130709319289, 'buddha': 0.49225645583072264, 'smoke': 0.3964578548501176, 'adj': 0.26121499677024324, 'adp': 0.22603379501994308}, {'fat': 0.5874592279519042, 'come': 0.4011419707776558, 'make': 0.4039920599665464, 'beat': 0.5245196544027723, 'adv': 0.16226176473868328, 'adj': 0.17122336904710722}, {'deep': 0.5930445758718292, 'poetry': 0.7800526806094902, 'adj': 0.19953933572844992}, {'quiet': 0.6616989748042398, 'storm': 0.7161595529534565, 'adv': 0.15268243321644634, 'adj': 0.16111497771352318}, {'rule': 0.4193531417318716, 'live': 0.3668619084876446, 'today': 0.44757118549817004, 'day': 0.3567156314875476, 'world': 0.31039547764698344, 'time': 0.31240956699238814, 'adv': 0.12132073917981884, 'adj': 0.12802119914761215, 'cconj': 0.16275225416235792, 'adp': 0.33233678591345445}, {'luck': 0.399478032057751, 'bad': 0.34058285312049474, 'web': 0.43530548418136245, 'god': 0.2873637945869249, 'catch': 0.30795362227875894, 'strike': 0.36051700917664803, 'niggas': 0.2664060785982296, 'rap': 0.2851947453917572, 'propn': 0.10862030575348998, 'adv': 0.1004437108836939, 'adj': 0.21198229422435927, 'adp': 0.09171594861130963}, {'blow': 1.0}, {'properly': 0.5124899535681567, 'stock': 0.44784439589221436, 'globe': 0.2681743527350636, 'flip': 0.20352879505912133, 'aim': 0.22738754696109192, 'spit': 0.37899398394218486, 'soul': 0.367928441072233, 'stay': 0.18003553184744242, 'adv': 0.11434745939776957, 'adj': 0.060331394988815186, 'adp': 0.20882314318520853}, {'wally': 0.5563817843458759, 'straight': 0.43040828564144845, 'man': 0.3158861044802753, 'propn': 0.42783204373759404, 'look': 0.38336940723645313, 'adv': 0.13187539785143734, 'adp': 0.24083294227238597}, {'trifer': 0.23143866489758436, 'sheldon': 0.23143866489758436, 'sidney': 0.23143866489758436, 'destruction': 0.22114342668781803, 'skilled': 0.23143866489758436, 'definition': 0.23143866489758436, 'blame': 0.21383883893083586, 'forbid': 0.20354360072106947, 'scrape': 0.23143866489758436, 'trife': 0.21383883893083586, 'escape': 0.19324836251130315, 'villain': 0.1770998562127755, 'building': 0.18391139582460572, 'mf': 0.18594377475432097, 'god': 0.14116417646515417, 'child': 0.17173446863270933, 'teach': 0.17297330855351434, 'tape': 0.18027789631049648, 'love': 0.12448776795746674, 'super': 0.16267807034374798, 'num': 0.09380487613024908, 'propn': 0.2134339300624245, 'adv': 0.2467091191564785, 'adj': 0.15620081523695845, 'killer': 0.18391139582460572, 'adp': 0.18021764186468628}, {'crash': 0.3491101651683195, 'strawberry': 0.386733451360885, 'speed': 0.36405082753287143, 'high': 0.26850430372295647, 'real': 0.2618071869117788, 'tv': 0.3559550486680477, 'face': 0.25838982046756387, 'rap': 0.24500315258990454, 'propn': 0.27993836956913526, 'like': 0.15517023179285253, 'adj': 0.27316245066261563, 'adp': 0.1575814205249659}, {'love': 0.7986459493190684, 'num': 0.6018011695205022}, {'hope': 1.0}, {'eh': 0.7475967116026419, 'guess': 0.5891558550969055, 'intj': 0.3065852821091556}, {'blessing': 0.5708342048043704, 'today': 0.4489689871058439, 'pressure': 0.5020321453722778, 'love': 0.3070440976719151, 'want': 0.3338442832636263, 'adv': 0.12169963382220063}, {'wrong': 0.7990592452620597, 'road': 0.3939987461163594, 'way': 0.2854992515567295, 'nigga': 0.2573711378864429, 'propn': 0.11031552405717078, 'adj': 0.21529066518439807}, {'yo': 0.924309926552634, 'propn': 0.3816427120701562}, {'askin': 0.8154741913209222, 'face': 0.5787934374969088}, {'adv': 1.0}, {'winnin': 0.4949860928022452, 'ironic': 0.5180299599080692, 'mink': 0.5180299599080692, 'use': 0.35220380211824365, 'intj': 0.20299106262327327, 'like': 0.1986047663683722, 'adj': 0.11654160738528911}, {'die': 0.885516188934791, 'adv': 0.27767490119250265, 'cconj': 0.3725019844002676}, {'monch': 0.6751892151396394, 'pharoahe': 0.6397669323757127, 'propn': 0.3671754294580293}, {'dissappoint': 0.6485440090121443, 'faster': 0.5703756668265649, 'work': 0.48471072467961557, 'adv': 0.1382670620472175}, {'bring': 0.423627099494476, 'guess': 0.46287083264143225, 'walk': 0.44711627096448364, 'bitch': 0.3331807634533825, 'want': 0.3594949840224719, 'propn': 0.14171846329211582, 'adv': 0.13105034325810028, 'adp': 0.35898932174076975}, {'pure': 0.7131526215991759, 'cut': 0.5718369440646943, 'adv': 0.35862645748440286, 'adj': 0.18921657353720864}, {'duke': 0.6623769313174149, 'girl': 0.5357273042488057, 'want': 0.470449912637274, 'cconj': 0.2300650691443908}, {'hang': 0.8087478743215811, 'adv': 0.5881554860581715}, {'cold': 0.45291930412954995, 'day': 0.41001837201288954, 'short': 0.5752524519418959, 'night': 0.4574057805225727, 'adj': 0.2943018977819829}, {'sperm': 0.3450882027212315, 'ovary': 0.32973741744096136, 'lust': 0.3450882027212315, 'ink': 0.3034950766732277, 'book': 0.280546960090013, 'desire': 0.27725273590549415, 'penis': 0.3450882027212315, 'page': 0.31039771518475645, 'turn': 0.22476805437002703, 'write': 0.24384575077165388, 'pen': 0.24946488688054794, 'propn': 0.07956052995462541, 'adv': 0.07357146357746373, 'adj': 0.07763476429426946}, {'pm': 0.8225728101415755, 'time': 0.47261205023427655, 'propn': 0.1984740743377929, 'cconj': 0.24621101479198992}, {'stealin': 0.3524676546592334, 'joint': 0.3099850908611062, 'huh': 0.5544413581668988, 'light': 0.24178836153521918, 'motherfucker': 0.2597427325382696, 'fake': 0.25637806384463413, 'intj': 0.4143454392424006, 'yeah': 0.1865586084816815, 'propn': 0.08126187211101434, 'adj': 0.15858985079781754, 'adp': 0.2058457569666657}, {'loud': 0.5534671748138607, 'volume': 0.656501881099635, 'turn': 0.46279619124098526, 'adv': 0.15148324001426908, 'adj': 0.1598495539056048}, {'witness': 0.3961552805213926, 'star': 0.35672251127064514, 'court': 0.3795740911993534, 'sit': 0.3063599482830204, 'business': 0.3761237980075001, 'snitch': 0.3761237980075001, 'rap': 0.2949769276538952, 'tell': 0.25978353434186247, 'adj': 0.1096266443854558, 'cconj': 0.13936741421563945, 'adp': 0.09486180645111064}, {'pick': 0.6828528991671475, 'man': 0.4476788876092792, 'intj': 0.3435125677652845, 'yeah': 0.4639985425356857}, {'really': 0.5250346513772457, 'eye': 0.49943596389452766, 'trust': 0.593564058062885, 'adv': 0.3184961220506318, 'adp': 0.14541066685957793}, {'blond': 0.4587795453286355, 'wicked': 0.4126600721802898, 'conviction': 0.4587795453286355, 'rape': 0.4034833187215653, 'tape': 0.3573638455732197, 'propn': 0.21154443108085208, 'like': 0.17588906330968057, 'adj': 0.10321199503129055, 'adp': 0.17862220176448707}, {'ah': 0.8987962189082322, 'intj': 0.4383666922523479}, {'snake': 0.2797680290930761, 'yoga': 0.3350565991499301, 'sandal': 0.32015205628312265, 'wearin': 0.3350565991499301, 'brock': 0.3350565991499301, 'watchin': 0.2890061277468343, 'propn': 0.6179818465645357, 'adp': 0.13045164734406506}, {'adp': 1.0}, {'weird': 0.7962804632965546, 'just': 0.453424479169018, 'adv': 0.4004293513998805}, {'silent': 0.6770710130712512, 'room': 0.5380305626176007, 'fall': 0.47843098722634403, 'adj': 0.1523211981625787}, {'adj': 1.0}, {'house': 0.6137995472180916, 'knock': 0.5876532530497133, 'rock': 0.5048102380209982, 'adp': 0.15192232753660156}, {'uh': 0.8779526083862562, 'intj': 0.47874755083213627}, {'friends': 0.9673146071327873, 'propn': 0.2535792791762402}, {'trooper': 0.5303488323999882, 'great': 0.42841465226395864, 'sound': 0.364107974241985, 'shorty': 0.45123102458866243, 'girl': 0.3696475585759961, 'adj': 0.24973511903292636}, {'need': 1.0}, {'good': 0.8382581057403711, 'adj': 0.29725203870738703, 'cconj': 0.37789397128050617, 'adp': 0.2572172624741875}, {'clothe': 0.5789323205658102, 'ghost': 0.566745946367208, 'say': 0.35495278292229837, 'tell': 0.3841525272238852, 'propn': 0.16613059590429885, 'cconj': 0.20608829008054858}, {'killah': 0.6033572991712998, 'ghostface': 0.5873707312849836, 'friend': 0.42533230757269863, 'propn': 0.30110741397083673, 'adv': 0.1392204976041126}, {'lighter': 0.5560081179577528, 'small': 0.4642597570543136, 'bridge': 0.5001146028097612, 'burn': 0.4125747905398675, 'adv': 0.1185387697305545, 'adj': 0.12508558346232554, 'cconj': 0.15902023108090027}, {'handle': 0.3358266521916028, 'hearin': 0.37201838622605593, 'livin': 0.28890019855900656, 'today': 0.3062193563652064, 'say': 0.19178507305296197, 'tang': 0.3032723742331049, 'wu': 0.2766120605388101, 'world': 0.21236644910001407, 'niggas': 0.2201541865660556, 'slang': 0.3032723742331049, 'intj': 0.15256268536334894, 'propn': 0.269286817893292, 'adv': 0.24901575348764562, 'adp': 0.1515855056153453}, {'door': 0.6010785395995897, 'slide': 0.654295738628778, 'fuck': 0.4012116822581691, 'adv': 0.16451440812585424, 'adp': 0.1502194101426848}, {'creep': 0.7032280728046931, 'hate': 0.5688381354337724, 'let': 0.4264896872089954}, {'ether': 0.6615681618495657, 'soul': 0.5045478001131047, 'fuck': 0.38241516575618334, 'like': 0.2819817378706531, 'adp': 0.28636344937007996}, {'mink': 0.3574556822580175, 'fox': 0.3415547462588, 'crush': 0.3215219360666673, 'heavenly': 0.3574556822580175, 'chicken': 0.3215219360666673, 'daddy': 0.2906013715728176, 'sweet': 0.2906013715728176, 'rock': 0.23122253060787878, 'long': 0.23997344716550975, 'propn': 0.16482373660692132, 'adj': 0.32166834355871876, 'cconj': 0.10223355263703161}, {'reload': 0.6654909591764376, 'gold': 0.5614901959539094, 'need': 0.44160402842967483, 'cconj': 0.21641724787259545}, {'artery': 0.37486671924824666, 'phony': 0.36248449794991106, 'squeeze': 0.3275809764717671, 'easy': 0.3230461189122971, 'start': 0.5433161969563636, 'way': 0.23408558041585495, 'adv': 0.33456310048905796, 'adj': 0.17652039381193055, 'adp': 0.1527461095459997}, {'gay': 0.5749344929501256, 'lookin': 0.47225472603851076, 'little': 0.42493522566713143, 'boy': 0.4329759918359876, 'adj': 0.2799779402584068}, {'pis': 0.9760008643029457, 'adv': 0.21776664776751928}, {}, {'son': 0.5928502036657798, 'free': 0.6475036539378466, 'love': 0.4788190202472965}, {'raw': 0.3887928424754186, 'loud': 0.3725198100431511, 'scream': 0.3691336396110198, 'door': 0.3725198100431511, 'start': 0.33115147755578705, 'come': 0.25206003860069837, 'shit': 0.24702735618363666, 'yes': 0.3327659874467542, 'intj': 0.18739795444587512, 'adj': 0.21517852608485746, 'adp': 0.09309882560176726}, {'power': 0.49985796190688814, 'maintain': 0.5681027201791201, 'feel': 0.38197530217550424, 'deal': 0.508368709958156, 'propn': 0.15184676653386026}, {'adp': 1.0}, {'propn': 1.0}, {'eyelid': 0.3725864940883688, 'apt': 0.3725864940883688, 'bolster': 0.3725864940883688, 'sided': 0.3725864940883688, 'attribute': 0.3725864940883688, 'shoot': 0.26327655556440416, 'crime': 0.29607370152913165, 'time': 0.2045482029227215, 'num': 0.1510137899439983, 'adj': 0.2514632295715894, 'adp': 0.1450636162824182}, {'chance': 0.46104731330903675, 'plan': 0.44488499852725283, 'blow': 0.3874025612128802, 'let': 0.32847486915204843, 'man': 0.29935406751274823, 'know': 0.26635376997587074, 'adv': 0.3749209242677033, 'adj': 0.13187584863826995, 'adp': 0.11411442263172321}, {'damn': 0.2903128823121174, 'god': 0.23515485841936087, 'weight': 0.3390680823441429, 'light': 0.2644730940160369, 'speak': 0.28814331583105773, 'unless': 0.3325479289404857, 'planet': 0.32191801393277925, 'word': 0.25384317900833053, 'truth': 0.26826344396547847, 'way': 0.23003889282401166, 'intj': 0.3021463884423003, 'adj': 0.08673442396839896, 'adp': 0.3002111096353294}, {'grave': 0.5614226474046733, 'cock': 0.5261544132951511, 'nigga': 0.35614861286002236, 'baby': 0.4126742478183099, 'num': 0.26836754374702076, 'adj': 0.1489589555316913, 'adp': 0.12889672659433876}, {'ironclad': 0.4390574130404406, 'awesome': 0.4390574130404406, 'lord': 0.3388926363942127, 'doom': 0.5624007618592444, 'know': 0.19949913689345236, 'tell': 0.23406848306675007, 'propn': 0.20245050503927386, 'adv': 0.09360533399055211, 'adj': 0.09877509142374741, 'adp': 0.17094354492662744}, {'walkin': 0.7587945491699224, 'bitch': 0.5119169549964909, 'adv': 0.4027056783025721}, {'knife': 0.5783223727657938, 'feel': 0.3888466913561308, 'steel': 0.5048728929936218, 'just': 0.3237199438176745, 'like': 0.2570489936601942, 'adv': 0.1429421801130829, 'adp': 0.2610432754883089}, {'run': 0.5005423331076294, 'fuck': 0.4266788774525674, 'comin': 0.6593225928346061, 'adv': 0.17495707649595435, 'adp': 0.31950938681802316}, {'pow': 0.7927299773641111, 'propn': 0.6095729513260048}, {'happy': 0.7145820568635887, 'come': 0.41872114760702495, 'adv': 0.5081176039426317, 'adj': 0.1787268618278908, 'adp': 0.15465540397933691}, {'away': 0.4875572855974608, 'girl': 0.41685347750740825, 'walk': 0.4552822081763327, 'long': 0.42020389062759006, 'baby': 0.39010899146969696, 'adv': 0.1334437897598983, 'adj': 0.14081379737180014, 'adp': 0.1218485822202345}, {'soul': 0.9579548463245681, 'want': 0.27223353080537804, 'adp': 0.09061686988916709}, {'hey': 0.8916749155877435, 'intj': 0.4526763136188932}, {'knock': 0.17130354937516462, 'die': 0.15466946692411135, 'brother': 0.31504987569244225, 'babies': 0.21737197227322694, 'spot': 0.17559261418931607, 'motherfucking': 0.22749163202616535, 'cash': 0.15752493784622112, 'mexican': 0.21737197227322694, 'similar': 0.2000722996609438, 'rate': 0.2000722996609438, 'increase': 0.21737197227322694, 'rapid': 0.20462270876763486, 'shit': 0.11750806373070845, 'check': 0.14715444028453825, 'pull': 0.16764459759915953, 'murder': 0.17130354937516462, 'drop': 0.15466946692411135, 'crack': 0.15752493784622112, 'propn': 0.4195879119951333, 'like': 0.17443362711042495, 'adv': 0.14550099529172694, 'hit': 0.13984994760661962, 'cconj': 0.13012677594221994, 'adp': 0.2657162243342969}, {'lobster': 0.6266510348153467, 'head': 0.39634509928921813, 'ass': 0.4224350141262455, 'nigga': 0.33706722533557754, 'fuck': 0.32581770100835167, 'adj': 0.14097817601127838, 'cconj': 0.17922434789161376}, {'committee': 0.27244057404444316, 'gritty': 0.27244057404444316, 'rub': 0.24068892585546248, 'pity': 0.26125960061063, 'shitty': 0.27244057404444316, 'york': 0.22807848458607766, 'city': 0.20973324393762383, 'witty': 0.26125960061063, 'calm': 0.25290842140381153, 'midst': 0.27244057404444316, 'titty': 0.23177451277495448, 'act': 0.22807848458607766, 'new': 0.18522282884136088, 'say': 0.14920105733689656, 'fool': 0.22987513851132738, 'intj': 0.1186876204911005, 'yeah': 0.160316937697977, 'propn': 0.20949429127611124, 'adj': 0.13628231597997617, 'adp': 0.17689112104552518}, {'hurtin': 0.4878062399719964, 'appear': 0.4878062399719964, 'shoot': 0.3607400086414719, 'try': 0.32388309285421857, 'nigga': 0.27459966104062994, 'year': 0.3502074297624943, 'like': 0.19572397231244595, 'adj': 0.11485115263960131, 'adp': 0.19876532522654258}, {'want': 0.8080407777771673, 'adv': 0.5891265580919522}, {'tooth': 0.2798195203097574, 'scar': 0.2798195203097574, 'afraid': 0.2972540114272053, 'beg': 0.28743541521068655, 'fail': 0.2798195203097574, 'change': 0.2361012166230628, 'animal': 0.2798195203097574, 'clothe': 0.24993975074676447, 'nice': 0.24993975074676447, 'smell': 0.26833571458875133, 'start': 0.21541378672202308, 'remain': 0.256162389969537, 'like': 0.11926812561004092, 'adv': 0.13264744319705415, 'adj': 0.2799469382853293, 'cconj': 0.08897353632669372, 'adp': 0.18168214779175862}, {'lifetime': 0.7312697285571699, 'yo': 0.4642845764012434, 'come': 0.4382452827358004, 'adv': 0.1772700394009111, 'adp': 0.16186667817206474}, {'adp': 1.0}, {'slow': 0.44069775688293494, 'ether': 0.5180205037551452, 'soul': 0.3950705621208129, 'shit': 0.2974820670475913, 'make': 0.305699314146714, 'burn': 0.42734645145611466, 'adj': 0.1295640970961775}, {'love': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'bring': 0.5673686236244359, 'car': 0.6299741856383179, 'just': 0.3974923715771075, 'adv': 0.35103444972517756}, {'capture': 0.7385101583521312, 'let': 0.46007758762202366, 'just': 0.39642077676872983, 'adv': 0.17504405012920368, 'cconj': 0.23482228948515724}, {'world': 0.9210996049275204, 'propn': 0.38932700625870503}, {'mood': 0.6616781646039902, 'tv': 0.6616781646039902, 'adv': 0.32080013633683957, 'adp': 0.14646257371374743}, {'russell': 0.47501040703374725, 'ask': 0.3455132601574549, 'queens': 0.41775789136363484, 'run': 0.2897288270780916, 'niggas': 0.5371972540221385, 'propn': 0.32854278488415656}, {'earths': 0.358203057504089, 'nation': 0.3422688755206977, 'cool': 0.27648406544691984, 'lock': 0.5148086457183078, 'peace': 0.26771485230389314, 'set': 0.2639693025155086, 'gods': 0.3150292115016412, 'ya': 0.22655675727718877, 'propn': 0.24775252988941796, 'adv': 0.15273499928820855, 'adj': 0.08058522348641753, 'cconj': 0.10244730452391228, 'adp': 0.1394635385592853}, {'wheel': 0.8340442237845983, 'intj': 0.3716118725706286, 'like': 0.36358196354966643, 'adp': 0.18461583008362784}, {'watch': 0.5422595494964217, 'miss': 0.5714347371585224, 'probably': 0.5933689193377946, 'adv': 0.16531862482009027}, {'zoo': 0.48418570132345534, 'banana': 0.4643146983257645, 'ooh': 0.38682105448010723, 'town': 0.4494728504280588, 'baby': 0.33549838418575734, 'propn': 0.24821104737073715, 'adv': 0.11476325033012591, 'adp': 0.10479123358885606}, {'monch': 0.6117138405751616, 'fuckin': 0.4883881283183852, 'pharoahe': 0.5796216504962968, 'propn': 0.16632840623213557, 'adv': 0.1538077271227846}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'sir': 0.4907103993157422, 'yes': 0.7592118493391317, 'intj': 0.4275519521958011}, {'operation': 0.392324689003419, 'reach': 0.4167689497112276, 'daily': 0.40300265598435797, 'bout': 0.350431359730614, 'make': 0.23152247349625651, 'stay': 0.29281830403249876, 'baby': 0.27184672921370834, 'propn': 0.3016796707361379, 'adj': 0.1962516685374029, 'cconj': 0.12474653280179795, 'adp': 0.16981991833157423}, {'rza': 0.7294875648223808, 'rhyme': 0.6173371994041894, 'propn': 0.22503095881342128, 'adp': 0.19000984863110965}, {'dad': 0.7801594818016044, 'propn': 0.625580676615776}, {'wear': 0.6261956483748128, 'flick': 0.6495044746754793, 'adp': 0.4313037761635962}, {'people': 0.7926811340245437, 'adv': 0.5391894978794154, 'adj': 0.2844842792459844}, {'wookie': 0.5270627062589596, 'black': 0.31232854460954074, 'let': 0.2953420565653427, 'beard': 0.4469014081644854, 'grow': 0.39109642217973634, 'like': 0.20206778321589525, 'look': 0.32665946102277427, 'adv': 0.1123677204575292, 'adj': 0.11857371143391049, 'adp': 0.10260385627315392}, {'holdin': 0.5799519914275068, 'cocaine': 0.5495261152890693, 'pen': 0.49444947672301043, 'propn': 0.3153843644753627, 'adp': 0.1331508688194957}, {'cab': 0.6627092511395496, 'iron': 0.5324376537344228, 'foot': 0.5266180716039287}, {'scratch': 0.7109971066109632, 'twist': 0.663752295565749, 'propn': 0.1774127042188918, 'adp': 0.1498023260960168}, {'session': 0.5290191273779926, 'tomorrow': 0.4854786525910655, 'special': 0.4854786525910655, 'meet': 0.421934306996544, 'adv': 0.1220674818334259, 'adj': 0.12880918387813503, 'cconj': 0.16375401240233695, 'adp': 0.11146078527415254}, {'propn': 1.0}, {'disrespect': 0.7677701224994826, 'say': 0.40932573717621124, 'let': 0.46563277556207244, 'adp': 0.16176402011770552}, {'moët': 0.4565420530992281, 'smoking': 0.4565420530992281, 'fella': 0.38710628544472553, 'drink': 0.34935187685574365, 'marijuana': 0.4565420530992281, 'street': 0.30287150755682374, 'propn': 0.10525635882281806}, {'pop': 0.633246797373712, 'hear': 0.5577535839854355, 'time': 0.4717559929319168, 'adj': 0.19331920114241555, 'adp': 0.16728240424449353}, {'patient': 0.5567198274584793, 'little': 0.42267185266071705, 'bitter': 0.5718721645452332, 'adv': 0.13195552191591928, 'adj': 0.2784866670617037, 'cconj': 0.17701885750263158, 'adp': 0.24097926610920764}, {'prisoner': 0.979870763158491, 'adp': 0.19963288182861175}, {'yams': 0.7256395671158062, 'yam': 0.6704580783119524, 'adv': 0.15470353539020734}, {'bring': 0.5673686236244359, 'car': 0.6299741856383179, 'just': 0.3974923715771075, 'adv': 0.35103444972517756}, {'drank': 0.6190502751962174, 'stand': 0.5730098001413195, 'sit': 0.5042281591815706, 'propn': 0.18490670406953094}, {'cock': 0.8059902574333763, 'need': 0.5919288005516202}, {'bad': 0.7397359745279489, 'feel': 0.5934644599534883, 'adv': 0.21816079604414385, 'adj': 0.23020966493760728}, {'thrill': 0.5245686246471288, 'alcohol': 0.48467763881945153, 'mere': 0.5245686246471288, 'propn': 0.1209399725791519, 'adv': 0.4473439678061998}, {'just': 0.2392034298088812, 'win': 0.8401532191619513, 'propn': 0.11422117390920417, 'like': 0.18993887181405944, 'adv': 0.42249185322565164, 'adp': 0.09644516505371224}, {'feel': 0.5630868697081356, 'hope': 0.6897995993694521, 'adv': 0.4139876539436232, 'adp': 0.18900770421940843}, {'brea': 0.3913378497800351, 'pit': 0.3913378497800351, 'tar': 0.3913378497800351, 'chuck': 0.3913378497800351, 'la': 0.3615784400747552, 'player': 0.3615784400747552, 'old': 0.24983520450063754, 'num': 0.15861394006891097, 'propn': 0.1804468913992672, 'adp': 0.07618215445003944}, {'ayy': 1.0}, {'car': 0.4758870355294545, 'dot': 0.5120912347294251, 'ayy': 0.44689770870743434, 'nigga': 0.33451249549170387, 'propn': 0.43014055360148185, 'adp': 0.12106621819338856}, {'easy': 0.9358961136730822, 'adv': 0.24231548314246526, 'adj': 0.25569839858914817}, {'station': 0.4816374399156381, 'gas': 0.44963327333108155, 'light': 0.35759026781282793, 'wall': 0.42378445436301576, 'gleam': 0.4980898438124341, 'adp': 0.10147778122221209}, {'check': 0.9145908618255616, 'cconj': 0.4043804588072683}, {'da': 0.5745821624595334, 'come': 0.3277650625490345, 'kid': 0.4109839042114683, 'rock': 0.4022623736416245, 'propn': 0.2867470888138565, 'adv': 0.13258083507389912, 'adp': 0.3631818343677785}, {'hate': 1.0}, {'cheat': 1.0}, {'wack': 0.463902035070508, 'wheel': 0.4729976034674165, 'large': 0.4428566439525856, 'add': 0.48375537756162473, 'propn': 0.12399522394774669, 'adv': 0.11466125360972095, 'adj': 0.24198782965092164, 'adp': 0.20939619914988078}, {'gauge': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'dunnie': 0.505044612864827, 'sister': 0.4825783814842429, 'dun': 0.45427427731063164, 'peep': 0.4282320604263809, 'brother': 0.3497144951773448}, {'drink': 0.9633108367125767, 'adv': 0.2683882111273065}, {'lady': 0.5608041926011375, 'ecstasy': 0.7265582417059955, 'like': 0.278551321380412, 'adp': 0.2828797276711518}, {'ho': 0.7162065664319012, 'say': 0.5094985181035414, 'propn': 0.47692705338460495}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'dre': 0.6307696402461103, 'track': 0.5140685614880754, 'day': 0.4279435507167881, 'propn': 0.15739381577606326, 'adv': 0.14554570452573345, 'cconj': 0.1952501415285804, 'adp': 0.2657978730462474}, {'hund': 0.6713041548884756, 'trust': 0.5334479621329923, 'love': 0.36108554246811214, 'num': 0.27208765278222213, 'adv': 0.1431194366869584, 'adj': 0.15102382354296606, 'adp': 0.13068349212684852}, {'spread': 0.4427183532261736, 'gimme': 0.423024621807891, 'rash': 0.4427183532261736, 'bash': 0.40905169699777655, 'talk': 0.2960141478893342, 'propn': 0.1020692869983942, 'like': 0.16973144782027322, 'cconj': 0.12661896932794614, 'adp': 0.34473780629500594}, {'shit': 0.4494103693721304, 'rough': 0.7504637516025116, 'know': 0.39533070956667615, 'propn': 0.20058959415962982, 'adj': 0.1957343153866295}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'cure': 0.3164204541569196, 'rip': 0.2765071318046822, 'plus': 0.24403412801813934, 'buck': 0.2692166306540546, 'shock': 0.2978618161392502, 'bust': 0.2379649409171081, 'drug': 0.25132462916876697, 'seek': 0.2912379515210043, 'propn': 0.3053894121763142, 'hop': 0.22930330830181722, 'hip': 0.2352725485126611, 'kill': 0.20467548318311662, 'adj': 0.14899872490665392, 'cconj': 0.09471040150902732, 'young': 0.23938985576934352, 'adp': 0.25786227942652384}, {'close': 0.5224311854856197, 'appear': 0.21361876105595953, 'sincerely': 0.21361876105595953, 'tomorrow': 0.3791234987003297, 'better': 0.14719782674170065, 'mean': 0.15714275734210637, 'life': 0.12736860145996168, 'moment': 0.16365971648527866, 'come': 0.11783178704371917, 'hold': 0.14183398930374966, 'propn': 0.05154289728403559, 'promise': 0.19283690276305027, 'adv': 0.5242920115802735, 'adj': 0.050295299490488235, 'cconj': 0.06393998353670732, 'adp': 0.21760690534737934}, {'witness': 0.31753803235987743, 'star': 0.2859307193337741, 'court': 0.3042473898002799, 'sit': 0.24556263655915314, 'business': 0.3014818093194042, 'snitch': 0.3014818093194042, 'year': 0.26793929995143423, 'send': 0.2859307193337741, 'label': 0.28783554957685276, 'fuck': 0.2030809603778949, 'rap': 0.23643858306142598, 'tell': 0.20822933932835735, 'propn': 0.1801017136467641, 'adv': 0.08327211164479789, 'adj': 0.17574234480256457, 'cconj': 0.11170986898590234, 'adp': 0.15207285045876137}, {'aiyo': 0.702578707858861, 'shorty': 0.5711766416802108, 'yo': 0.39230440301198133, 'propn': 0.16198042671786717}, {'dangerous': 0.7074411617283962, 'game': 0.5687962456430345, 'adv': 0.3710429202055869, 'adj': 0.19576768119400248}, {'island': 0.6734832252570531, 'long': 0.6093210932265064, 'propn': 0.41850704969762775}, {'icebox': 0.4053806895046305, 'playtex': 0.4053806895046305, 'ihop': 0.4053806895046305, 'tops': 0.4053806895046305, 'fed': 0.349664813748825, 'high': 0.2689308897859769, 'propn': 0.3738441619972023, 'adj': 0.09119881245133084}, {'real': 0.7369552036928656, 'time': 0.6254631175375299, 'adj': 0.25630629401214666}, {'mom': 1.0}, {'huh': 0.494435387619151, 'uh': 0.6776118601842778, 'motherfucker': 0.23163134703446459, 'intj': 0.49266898976747286}, {'better': 0.5439379694468353, 'moment': 0.6047693490846082, 'let': 0.4629267288049765, 'adv': 0.35225610507095084}, {'loss': 0.2872720010568036, 'leg': 0.24154658837377896, 'kunta': 0.5186496041873964, 'talkin': 0.21479893662421, 'cut': 0.20440633077492273, 'black': 0.17815768874062424, 'wanna': 0.18633229522402653, 'game': 0.19651559950935646, 'king': 0.41439072862047605, 'world': 0.1639890313195923, 'run': 0.183376535572669, 'man': 0.15353281134632382, 'everybody': 0.19651559950935646, 'propn': 0.27725713172114874, 'adv': 0.06409652179179792, 'adj': 0.13527305613947344, 'adp': 0.05852704213235689}, {'adj': 1.0}, {'puff': 0.9707861716986288, 'adv': 0.2399462623978971}, {'gon': 0.6839586848265177, 'funk': 0.6792543831725819, 'adv': 0.19651133056329834, 'adp': 0.17943605365549528}, {'yuh': 0.7243381642726813, 'common': 0.545434121609932, 'propn': 0.16699709744192145, 'adv': 0.15442608136217176, 'adj': 0.325909852665002, 'adp': 0.1410076790059949}, {'bank': 0.5969098451133145, 'hook': 0.6072229558706776, 'little': 0.48074452641393034, 'adj': 0.1583745641286412, 'adp': 0.1370442134151775}, {'old': 0.5538704532763884, 'kid': 0.5733631316887037, 'shit': 0.4481347902178666, 'num': 0.3516380930282283, 'propn': 0.20002025281303443}, {'house': 0.9596215032578224, 'propn': 0.2812944551270024}, {'flock': 0.42337886064392577, 'til': 0.34016741644123205, 'flame': 0.4447933694168243, 'thinkin': 0.382543086335387, 'walk': 0.35016217155189633, 'fuck': 0.2502975196571256, 'tell': 0.25664290269627327, 'adj': 0.10830132209576963, 'cconj': 0.13768254333820504, 'adp': 0.2811449473612996}, {'joseph': 0.5272202762949203, 'lick': 0.42861519068457127, 'jesus': 0.47422070030373387, 'shot': 0.3525145494876078, 'propn': 0.3646539428535542, 'adj': 0.11860916008879116, 'adp': 0.20526906119849167}, {'lookin': 0.5310538376868781, 'different': 0.603557715877045, 'day': 0.43862795533020227, 'adv': 0.14917952303822812, 'adj': 0.1574186042447035, 'cconj': 0.20012492351658687, 'adp': 0.2724340100233191}, {'leg': 0.7481912280464001, 'way': 0.5556518704616246, 'adp': 0.36257535096434473}, {}, {'semi': 0.43883754275102715, 'clique': 0.44881838644741223, 'chase': 0.4056558015428002, 'wet': 0.4056558015428002, 'tec': 0.41664113361801985, 'propn': 0.2300804866291078, 'adj': 0.11225568983985346, 'adp': 0.19427352870862594}, {'wanna': 0.6229243567770827, 'love': 0.5406212641933444, 'just': 0.4852781046210703, 'adv': 0.2142800020833725, 'adp': 0.1956607684702774}, {'propn': 1.0}, {'wack': 0.8121005611077021, 'look': 0.5835175050061098}, {'approach': 0.3997904388220795, 'bail': 0.7610851785257065, 'hood': 0.31473375695139066, 'gods': 0.3805425892628532, 'propn': 0.09975835655698698, 'adp': 0.08423316653419886}, {'base': 0.49903770247150625, 'range': 0.4632600632109404, 'line': 0.3963892808366284, 'long': 0.3724654037378405, 'just': 0.2678756837848524, 'intj': 0.21740373161901627, 'like': 0.21270600177082208, 'adv': 0.11828351935293711, 'adj': 0.1248162357840442, 'adp': 0.21601123827654162}, {'damn': 0.6040556798544316, 'run': 0.48928806307969597, 'money': 0.5137722313623135, 'propn': 0.1849454246302873, 'adp': 0.31232548911773367}, {'going': 0.5297917370705054, 'turn': 0.48020105125981943, 'notch': 0.6811916334331641, 'adv': 0.15718022853221245}, {'dream': 1.0}, {'bridge': 0.6424132276621234, 'touch': 0.567543033058335, 'hear': 0.4635745394756581, 'propn': 0.16466209106029528, 'adv': 0.1522668469144257}, {'funny': 0.49848257997332723, 'money': 0.35494100393562106, 'stien': 0.5541936979415173, 'ben': 0.4873973016818874, 'propn': 0.2555401428275367, 'adj': 0.12467739196467227}, {'doc': 0.2876737810456084, 'drive': 0.2876737810456084, 'tight': 0.3022243249687618, 'plus': 0.2410476380036039, 'warning': 0.3270986441006977, 'dark': 0.25726760185282577, 'shoot': 0.23113399362295073, 'pop': 0.2410476380036039, 'turn': 0.21305082364980066, 'good': 0.2075189635889539, 'hood': 0.23792514278173657, 'snatch': 0.26934226366706143, 'fuck': 0.17006997882839586, 'rhyme': 0.20688379555881758, 'num': 0.13257701692073076, 'propn': 0.1508260280523915, 'adv': 0.13947231919795589, 'cconj': 0.18710267095450714, 'adp': 0.12735328023744424}, {'ask': 0.9596291101819292, 'adv': 0.2812685031983477}, {'sword': 0.2446550694051884, 'mother': 0.24888209773916925, 'choose': 0.46914839379982193, 'ball': 0.22079390310281868, 'track': 0.21727297890787703, 'flip': 0.21898451408890904, 'cut': 0.19617512857890093, 'join': 0.5770783471472603, 'yo': 0.16111388940228583, 'rza': 0.21564925429557508, 'propn': 0.19956923517955377, 'cconj': 0.1650463889847631, 'adp': 0.05617022707726458}, {'wacko': 0.33223478021739183, 'basket': 0.33223478021739183, 'kind': 0.29883640145094825, 'waitin': 0.3069698820012076, 'type': 0.24830660501857985, 'chance': 0.26130724385490267, 'case': 0.25214694770301416, 'pipe': 0.2774118459191984, 'place': 0.22491132396051108, 'let': 0.1861693155040433, 'heat': 0.24830660501857985, 'crack': 0.23005357444566646, 'tell': 0.1771196402060001, 'propn': 0.07659715682835751, 'like': 0.1273737351334509, 'adv': 0.07083116385660976, 'adp': 0.2587059887452523}, {'yo': 0.924309926552634, 'propn': 0.3816427120701562}, {'gon': 0.6839586848265177, 'funk': 0.6792543831725819, 'adv': 0.19651133056329834, 'adp': 0.17943605365549528}, {'good': 0.4492914518680706, 'old': 0.45211705573452077, 'day': 0.4439310132453471, 'remember': 0.5374743341989925, 'num': 0.2870374802692178, 'adj': 0.15932181165564585}, {'lift': 0.34093461309353507, 'cake': 0.2979290711487365, 'wind': 0.30253972709401744, 'push': 0.30253972709401744, 'half': 0.25793619465182566, 'new': 0.2181946534083123, 'follow': 0.2979290711487365, 'free': 0.25953418514921894, 'court': 0.2779326329002811, 'propn': 0.24678671933663826, 'adv': 0.15213959437283917, 'adj': 0.40135539564619843, 'adp': 0.1389198696113691}, {'skill': 0.745800225156842, 'look': 0.5816781340131253, 'cconj': 0.26842380764339346, 'adp': 0.18270531480292282}, {'super': 0.8734429125583807, 'intj': 0.4869265637665838}, {}, {'scheme': 0.7233018766165924, 'technique': 0.6320644721438102, 'propn': 0.174521536158676, 'cconj': 0.216497417428703}, {'phone': 1.0}, {'going': 0.4232611247056876, 'feel': 0.6832019843180357, 'way': 0.35144529233455457, 'world': 0.3212783453338948, 'just': 0.2843872828237596, 'adv': 0.1255744015146608, 'adj': 0.13250978829203178, 'adp': 0.11466298143395555}, {'goodbye': 0.6106544655590617, 'word': 0.4020644387934508, 'say': 0.30080430999395075, 'time': 0.33524638042090615, 'know': 0.27746949533441584, 'num': 0.24750560380867942, 'adv': 0.26037831729406713, 'adp': 0.23775350550413377}, {'stage': 0.832728344590696, 'fuck': 0.5185281685528954, 'adp': 0.19414438578650486}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'boo': 0.7742497733528462, 'baby': 0.5935707729168057, 'propn': 0.21957009359658322}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'reverse': 0.2962731724897477, 'jeep': 0.28968463620125323, 'nut': 0.2962731724897477, 'car': 0.2520497192569394, 'steel': 0.24803036934560266, 'grill': 0.30433688920668367, 'ya': 0.20832992438365083, 'just': 0.15903483499291357, 'propn': 0.6075212403053171, 'adv': 0.07022361909408655, 'adj': 0.07410202069066835, 'cconj': 0.09420526432880946, 'adp': 0.2564869729909192}, {'jeep': 0.7499781505827297, 'black': 0.5053316074144039, 'propn': 0.39321006303503836, 'adp': 0.1660077905535295}, {'chasin': 1.0}, {'yes': 0.6639335856387037, 'intj': 0.7477915443898348}, {'west': 0.4551396911868627, 'east': 0.44638752381647745, 'map': 0.5175152748453986, 'low': 0.37884686252266736, 'high': 0.34332134446778495, 'adj': 0.23285163656413055, 'adp': 0.10074524766946817}, {'swear': 0.6966638742239896, 'feel': 0.5028921451320213, 'world': 0.47297390809162926, 'adj': 0.19507593131974657}, {'live': 0.6444758168860717, 'yo': 0.5581976036244013, 'intj': 0.39172546860228064, 'cconj': 0.2859111004021496, 'adp': 0.1946082132700516}, {'sow': 0.7829100378493349, 'seed': 0.6221349312124766}, {'draw': 0.659223895399536, 'just': 0.33310654005147217, 'num': 0.2796303592480246, 'propn': 0.4771815363004444, 'like': 0.26450239639880085, 'adv': 0.1470869371943951, 'cconj': 0.1973177112838352, 'adp': 0.13430624829001694}, {'dance': 0.6563422859694841, 'fuckin': 0.5530327935583121, 'like': 0.31319833668835967, 'adv': 0.17416622573208046, 'adj': 0.18378530513391106, 'adp': 0.31806512261510733}, {'chance': 0.8244305446455958, 'num': 0.424851561099301, 'adv': 0.223473999934773, 'cconj': 0.2997912597792106}, {'jungle': 0.7678264084769856, 'day': 0.5351074753778517, 'adj': 0.1920440110377258, 'cconj': 0.2441439066566781, 'adp': 0.16617896048246317}, {'theta': 0.4957497775484344, 'meditate': 0.4736970144348969, 'edumacate': 0.4957497775484344, 'deep': 0.33147247431225535, 'hear': 0.321777765830553, 'intj': 0.1942605291741554, 'adv': 0.10569192575935135, 'adj': 0.11152921724188891, 'adp': 0.09650813521614615}, {'red': 0.4073811021891115, 'hair': 0.3931405511315641, 'eye': 0.33079585502735487, 'make': 0.2626098638687826, 'foot': 0.3931405511315641, 'follow': 0.41309983757298735, 'man': 0.2526510684814288, 'num': 0.20052319507076574, 'propn': 0.11406244365485226, 'adj': 0.22260311571637617, 'adp': 0.09631113766582916}, {'ho': 0.7670946825964289, 'intj': 0.4340973364996132, 'adv': 0.4723613557185066}, {'script': 1.0}, {}, {'hungry': 0.8181143548898787, 'adv': 0.20221083426272132, 'adj': 0.42675759574104005, 'cconj': 0.27126663845601867, 'adp': 0.1846403156626162}, {'diamond': 0.4658890156062647, 'boojy': 0.26884265354054354, 'brand': 0.26024908158029336, 'benz': 0.2642766139409841, 'friend': 0.20300828947749422, 'new': 0.19059891650148728, 'need': 0.36379078855247043, 'love': 0.16764865097895168, 'propn': 0.07185828582838527, 'like': 0.23898689312342775, 'look': 0.38634228800242143, 'adv': 0.13289804031162494, 'adj': 0.14023790656142068, 'cconj': 0.2674248745189994, 'adp': 0.12135025407293569}, {'talkin': 0.47406347878877114, 'baby': 0.41354847935453487, 'intj': 0.5200098705769425, 'like': 0.5087733298231443, 'adj': 0.1492745182720789, 'cconj': 0.18977141676175333, 'adp': 0.12916978841949667}, {'oh': 0.23287807672846386, 'briefcase': 0.3609989023961601, 'ok': 0.6517583932686526, 'intj': 0.5921746236414621, 'yeah': 0.1999695120936597}, {'cooper': 0.141095058393366, 'europe': 0.141095058393366, 'ave': 0.2696372683936305, 'avenue': 0.13481863419681525, 'central': 0.141095058393366, 'atlantic': 0.13481863419681525, 'church': 0.13036544036005102, 'bedford': 0.141095058393366, 'road': 0.11618165683440188, 'bridge': 0.12691127486771683, 'clinton': 0.13481863419681525, 'africa': 0.13036544036005102, 'america': 0.11097321239574119, 'house': 0.11097321239574119, 'street': 0.0936029282610879, 'time': 0.07746051210539685, 'propn': 0.8132411895882208, 'cconj': 0.04035367122425901, 'adp': 0.16480274836746628}, {'away': 0.5625627957047366, 'long': 0.48484779627031277, 'stay': 0.48484779627031277, 'adv': 0.4619180985764831}, {'bitch': 0.5571036396296624, 'beat': 0.7083368095083635, 'adv': 0.21912616576982955, 'adj': 0.23122835136120304, 'cconj': 0.29395862295345043}, {}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'strippin': 0.3220353977472665, 'rhymer': 0.3220353977472665, 'yuck': 0.3220353977472665, 'button': 0.30771008553872914, 'shut': 0.506570577312787, 'male': 0.297546114774637, 'shirt': 0.297546114774637, 'rapper': 0.23008089517639524, 'propn': 0.0742456760529089, 'adj': 0.07244855663384335, 'cconj': 0.18420645926572987, 'adp': 0.2507638903147442}, {'cconj': 1.0}, {'code': 0.6158384303505587, 'break': 0.44424678655137756, 'street': 0.4645397489538636, 'adv': 0.14928787361160956, 'hit': 0.43046924719024954}, {'airport': 0.509613146063964, 'plane': 0.439165550126171, 'jet': 0.41947768003092617, 'leave': 0.3394162830777568, 'alright': 0.41166440920053576, 'intj': 0.2089895363739888, 'adp': 0.2076509368206121}, {'fatal': 0.5918357850441532, 'strike': 0.5423799253500223, 'num': 0.5745671713235687, 'adj': 0.15945841387555507}, {'good': 0.6858739609416573, 'try': 0.6858739609416573, 'adj': 0.24321558215789468}, {'bang': 0.5594203563286837, 'hood': 0.540379574569276, 'grow': 0.5512630526192991, 'adv': 0.15838593523829758, 'cconj': 0.21247536210143836, 'adp': 0.14462345296949958}, {'enslavement': 0.18920185454361102, 'cayman': 0.17481394008676274, 'bermuda': 0.18920185454361102, 'grenada': 0.18920185454361102, 'honduras': 0.18920185454361102, 'trinidad': 0.18920185454361102, 'jamaica': 0.17018206619626722, 'isle': 0.180785464122771, 'virgin': 0.17481394008676274, 'tobagos': 0.18920185454361102, 'barbados': 0.18920185454361102, 'bahamas': 0.180785464122771, 'trauma': 0.180785464122771, 'momma': 0.15381576280218967, 'mental': 0.15798115924508263, 'boat': 0.17481394008676274, 'haiti': 0.180785464122771, 'slave': 0.15381576280218967, 'brother': 0.13101145792450133, 'separate': 0.17018206619626722, 'make': 0.10042950141768946, 'hate': 0.14140623728257065, 'drop': 0.12863659960884957, 'propn': 0.5234487773451147, 'adj': 0.08512977995598216, 'cconj': 0.05411238012310102, 'adp': 0.22099275467236884}, {'cartoon': 0.7827896955483016, 'white': 0.5730409025359512, 'adv': 0.1668877206485347, 'adj': 0.17610481328151292}, {'dedicate': 0.4547134068793703, 'poem': 0.4344860916074424, 'mean': 0.31961772516835657, 'write': 0.32130896162801426, 'mood': 0.3999072677563557, 'song': 0.32305955169097295, 'adv': 0.0969431310273876, 'adp': 0.3540781655836153}, {'lovely': 0.5833132714288665, 'outside': 0.6032388518438567, 'inside': 0.42738316640551466, 'adj': 0.14202909223800408, 'cconj': 0.18056036869109243, 'adp': 0.24580039522026947}, {'tired': 0.5647228030377714, 'fuckin': 0.42502370087856994, 'sick': 0.4846048313744385, 'propn': 0.14474863470049512, 'adv': 0.1338524128965528, 'adj': 0.42373496543949063, 'cconj': 0.17956354429802585, 'adp': 0.12222169924541286}, {'strategy': 0.23095122703675564, 'session': 0.21338846843523748, 'charge': 0.20773452301768408, 'amplify': 0.23095122703675564, 'thousand': 0.19284135805302538, 'immediately': 0.23095122703675564, 'bite': 0.19582570983371936, 'date': 0.19582570983371936, 'form': 0.20773452301768408, 'start': 0.15992050942906358, 'mind': 0.1515050003835151, 'rza': 0.17260900581464783, 'set': 0.17019406462016962, 'plot': 0.18352405614909192, 'master': 0.18775682322168777, 'niggas': 0.26118662484035693, 'soon': 0.18352405614909192, 'slang': 0.17989820922505992, 'cause': 0.14050746151803153, 'num': 0.2808219350975613, 'propn': 0.21298441235394683, 'adv': 0.19695161589550136, 'adj': 0.10391455826703465, 'cconj': 0.1321056880489392, 'adp': 0.2697571225236162}, {'count': 0.566489878911648, 'son': 0.4289779425666412, 'real': 0.4166568845330888, 'let': 0.36093884513553504, 'money': 0.4125391865043658, 'adj': 0.14490946181557812}, {'spiritual': 0.37756164516373225, 'proceed': 0.3951388670330451, 'miracle': 0.37756164516373225, 'lyrical': 0.34751318590755215, 'negro': 0.35541696453422245, 'crowd': 0.3139948141887121, 'old': 0.2522618236565663, 'propn': 0.09109977512681035, 'like': 0.15149020026580667, 'adv': 0.16848414135701995, 'adj': 0.2666841047915757, 'cconj': 0.11301107288763429, 'adp': 0.07692210251179435}, {'passionate': 0.6893967052261495, 'real': 0.44594073807466744, 'time': 0.3784754933210451, 'adv': 0.29395339619848804, 'adj': 0.31018823763566}, {'wait': 0.7516050899993526, 'hold': 0.6596133630294835}, {'floor': 0.5125040379415771, 'dance': 0.5235240832099803, 'lost': 0.651614796031423, 'propn': 0.1502306311537828, 'adp': 0.1268505437465338}, {'til': 0.6454567414747583, 'brother': 0.6325078972898986, 'adv': 0.38948554154390297, 'adp': 0.17782116769088752}, {'kill': 1.0}, {'eh': 0.24710175456030214, 'nugget': 0.25860547168792347, 'shocking': 0.24710175456030214, 'hoo': 0.23893973736574164, 'uh': 0.37166721463142266, 'oh': 0.15940375712024377, 'wee': 0.23893973736574164, 'house': 0.20339677564266917, 'ah': 0.4155405718318769, 'rock': 0.16728062962939413, 'intj': 0.5066753234450012, 'propn': 0.17886547451705634, 'adp': 0.050343001569688135}, {'clutch': 0.4532888111999866, 'microphone': 0.423168373247528, 'round': 0.4039709064324156, 'double': 0.38984956332665704, 'come': 0.2585743959049629, 'make': 0.2604115511865805, 'hold': 0.3112457090156889, 'propn': 0.11310762454503116, 'adv': 0.20918647686972616, 'adj': 0.1103698501813174}, {'fang': 0.31233777443954525, 'cali': 0.31233777443954525, 'hella': 0.32687852673738654, 'lady': 0.25230578602367354, 'ghetto': 0.2691610128120796, 'tip': 0.28195205674396834, 'cool': 0.25230578602367354, 'metal': 0.2874801942016409, 'let': 0.18316791377425976, 'talk': 0.2185603281417517, 'slang': 0.2546202605142383, 'propn': 0.22608679705306203, 'adv': 0.20906769429792826, 'adj': 0.14707623834139108, 'cconj': 0.09348838115545836, 'adp': 0.2545351585521935}, {'astronaut': 0.49090240881523073, 'bind': 0.4535715809450088, 'shoot': 0.34688078435953584, 'spot': 0.37890992520456496, 'blast': 0.375644864932808, 'like': 0.18820447803776025, 'adv': 0.10465848558553724, 'cconj': 0.14039977469159914, 'adp': 0.2866934784044973}, {'hope': 1.0}, {'word': 1.0}, {'mirror': 1.0}, {'airport': 0.36123503090076664, 'bitches': 0.37805217418436826, 'small': 0.3156687912855725, 'graveyard': 0.37805217418436826, 'lobby': 0.37805217418436826, 'timer': 0.36123503090076664, 'building': 0.3004169725898719, 'catch': 0.2471118605366912, 'propn': 0.174320832131745, 'adj': 0.0850506948724903, 'adp': 0.14719163576983546}, {'adv': 1.0}, {'fantastik': 0.4832393683538145, 'mf': 0.4501105172022429, 'doom': 0.35881287938996237, 'mr': 0.41012283896972207, 'propn': 0.5166554071295832}, {'cconj': 1.0}, {'button': 0.6088089868608932, 'press': 0.5402470082635694, 'pull': 0.4695340275459115, 'know': 0.28950938182810526, 'cconj': 0.18222761149095704}, {'crunch': 0.4425075388850307, 'possess': 0.422823185259612, 'exorcist': 0.4425075388850307, 'nigga': 0.23801889733734097, 'know': 0.20106680687857595, 'propn': 0.3060620504409147, 'hop': 0.30641114988937873, 'hip': 0.31438766697723136, 'like': 0.16965062482506033, 'adj': 0.09955126894769102, 'adp': 0.0861434121222743}, {}, {'sub': 0.5209411842609453, 'machine': 0.4794817824635434, 'wanna': 0.33789637062774774, 'come': 0.2873503730791631, 'gun': 0.37067196118172074, 'propn': 0.2513900728443222, 'adp': 0.3184001210792361}, {'funky': 0.8457243526369095, 'propn': 0.42206147684700634, 'adv': 0.1951450083917825, 'cconj': 0.2617878049458673}, {'case': 0.47452574636417516, 'wanna': 0.3875110705350761, 'bitch': 0.338900492335337, 'face': 0.3991654478462332, 'play': 0.42697869179117853, 'just': 0.30188358471306126, 'adv': 0.13330009028897377, 'adp': 0.24343473818849495}, {'garment': 0.3264003045143799, 'pay': 0.2421988688974528, 'mc': 0.22711544979939288, 'punct': 0.26223839793243253, 'wife': 0.29358844480324203, 'half': 0.23595537141335748, 'pound': 0.2767578771568864, 'head': 0.20644210878691543, 'bag': 0.25424775190004145, 'snatch': 0.2687672311244953, 'world': 0.17803696231550542, 'leave': 0.20772115339003297, 'cat': 0.24976572960651466, 'hear': 0.21185760540818022, 'll': 0.23595537141335748, 'adj': 0.07343053314118009, 'cconj': 0.09335160795745208, 'adp': 0.25416277444189067}, {'smoking': 0.30867186472784536, 'vapor': 0.30867186472784536, 'herbal': 0.30867186472784536, 'session': 0.28519881582114764, 'yard': 0.27764218190541656, 'screw': 0.27764218190541656, 'paper': 0.28519881582114764, 'square': 0.2662477342506264, 'face': 0.1970601578437166, 'fuck': 0.1604892543761974, 'burn': 0.22904383195591682, 'propn': 0.2846587851589734, 'adj': 0.3472107605164525, 'cconj': 0.0882812132986231}, {'wanted': 0.30500207388148, 'beggar': 0.2914344662111189, 'public': 0.2914344662111189, 'receive': 0.2818080953723711, 'attention': 0.2743413020580752, 'cake': 0.25467288003164895, 'excuse': 0.2914344662111189, 'oh': 0.18800250508560484, 'guess': 0.22966971293552604, 'music': 0.21669436564272604, 'eat': 0.21669436564272604, 'leave': 0.19410331944167009, 'want': 0.17837613424685705, 'intj': 0.23903132973425276, 'propn': 0.0703186212797688, 'adv': 0.19507577013070945, 'adj': 0.13723311274236863, 'cconj': 0.17446328102882863, 'adp': 0.17812523204500927}, {'clan': 0.37599827428349913, 'joint': 0.3578958948487617, 'ayo': 0.3233760891934478, 'motherfuckin': 0.32006746755316656, 'tang': 0.3169872144981597, 'wu': 0.2891212455091546, 'grow': 0.30196508811842915, 'propn': 0.46910789089028065, 'adj': 0.09155062330182862, 'cconj': 0.11638752340666084, 'adp': 0.07922031689304178}, {'adj': 1.0}, {'glad': 0.6887562636389938, 'wish': 0.5533644933675622, 'rap': 0.41693045021659864, 'adv': 0.14684015844204518, 'adj': 0.1549500381704158}, {'know': 0.49504998827517765, 'propn': 0.5023737029976378, 'adv': 0.23227829561621421, 'hit': 0.6697708302328598}, {}, {'ransom': 0.6157339842955084, 'life': 0.36712682005746056, 'love': 0.3466137362007702, 'hold': 0.4088218043716058, 'cconj': 0.36860077854802886, 'adp': 0.2508917590897514}, {'freedom': 0.33267281806026266, 'insert': 0.33267281806026266, 'clip': 0.28304445560260155, 'bear': 0.2583454118162688, 'far': 0.28668499288894195, 'jail': 0.2797209054538461, 'murder': 0.2621682727464511, 'time': 0.1911383170732506, 'man': 0.17779732388607092, 'baby': 0.2169931746370528, 'rap': 0.21075469142614686, 'end': 0.24472159497762488, 'beginning': 0.33267281806026266, 'adv': 0.14845282835706725, 'adj': 0.07832588736109435, 'cconj': 0.19915005971138514, 'adp': 0.06777672716894165}, {'water': 0.9668341782709541, 'adp': 0.25540491719449876}, {'hol': 0.9965209201756615, 'propn': 0.0833430000195145}, {'table': 0.5349882657446646, 'drink': 0.4654842726730575, 'emcee': 0.5157890930748109, 'eat': 0.4321828664456815, 'cconj': 0.1739778527718463, 'adp': 0.11841974316095684}, {'exit': 0.32345200850100336, 'booger': 0.3385101792403312, 'later': 0.28265172485569634, 'effect': 0.32345200850100336, 'pill': 0.26624293186956827, 'calm': 0.28265172485569634, 'mic': 0.21823207854254303, 'ill': 0.24622566978306606, 'similar': 0.2977098955950242, 'shit': 0.17485335773181881, 'make': 0.17968327323178002, 'sugar': 0.28265172485569634, 'propn': 0.07804395816205918, 'adv': 0.14433810907583652, 'adj': 0.2284647035392596, 'cconj': 0.09681507371466941, 'adp': 0.13179627154538065}, {'perpetrator': 1.0}, {'know': 1.0}, {'sense': 0.5897959136585288, 'happen': 0.4587093943585495, 'loyalty': 0.5412532565425923, 'make': 0.33883401699840704, 'adv': 0.13609130228007765, 'adp': 0.12426604688887598}, {'guy': 0.9376981617500567, 'cconj': 0.3474509425092477}, {'want': 0.8212072427337002, 'adv': 0.29936298371151193, 'cconj': 0.4015966333637579, 'adp': 0.27335071343596323}, {'ya': 0.33114406445297473, 'fast': 0.40782684519616513, 'protein': 0.5235633568689402, 'food': 0.371975272320862, 'fish': 0.5235633568689402, 'propn': 0.12070820679710456, 'adv': 0.11162167276838057, 'adp': 0.10192263421437542}, {'know': 1.0}, {'lock': 0.33192269333084806, 'cold': 0.6396822270363366, 'deep': 0.30884127757670793, 'block': 0.3263889728581136, 'shit': 0.23859022237916266, 'world': 0.25194747985952154, 'propn': 0.1064922376943712, 'adj': 0.31174376706465784, 'cconj': 0.13210572714689453, 'adp': 0.1798381349072294}, {'wake': 0.3945132132554804, 'drank': 0.8024606530984687, 'pass': 0.37810683467581774, 'propn': 0.2396903134610346}, {'smoke': 0.9545631607119712, 'adv': 0.29800867808097675}, {'spoon': 0.39207006650980625, 'silver': 0.39207006650980625, 'come': 0.20664498891085903, 'ya': 0.4959540184432929, 'bish': 0.60524958488071, 'know': 0.17814900181006701, 'adp': 0.07632469585775065}, {'steady': 0.5698069560934418, 'crew': 0.43981350923798557, 'break': 0.3614987439015048, 'rock': 0.3685833318234878, 'propn': 0.3941091846183563, 'like': 0.21845527507732193, 'adp': 0.1109249247426923}, {'bust': 0.4490427263305347, 'nut': 0.5620688554938197, 'daughter': 0.49656241387726563, 'teach': 0.4670294804003579, 'adv': 0.13322336572412077}, {'let': 1.0}, {'blingin': 0.6676382673334199, 'matter': 0.4826369128938337, 'come': 0.3518863441367285, 'thing': 0.4209948716740724, 'adv': 0.1423378837083023}, {'soldier': 0.7429426783505744, 'wanna': 0.5514528091044425, 'adv': 0.3793889508355434}, {'leave': 0.5152413802969503, 'mom': 0.6249156242366286, 'nigga': 0.4354831240030431, 'like': 0.3103954556313081, 'adj': 0.18214056986561092, 'adp': 0.1576093438082}, {'math': 0.7113703365501675, 'talk': 0.2644005138822656, 'num': 0.6411015738711713, 'adv': 0.084305641190749, 'adp': 0.07698014925043446}, {'crop': 0.2700123205511308, 'glock': 0.24374422614174862, 'farmer': 0.2825826293379703, 'dollar': 0.20427949465183906, 'snack': 0.2541756043983429, 'box': 0.22455265121897847, 'trouble': 0.24852323574425414, 'beneath': 0.2700123205511308, 'state': 0.21811537491734054, 'black': 0.16745373995348065, 'gold': 0.2096848325480325, 'sell': 0.19474679369738504, 'spot': 0.21811537491734054, 'cash': 0.19567230111464354, 'shot': 0.18894282476035723, 'crack': 0.19567230111464354, 'num': 0.11453414040967821, 'propn': 0.1302995788833854, 'adv': 0.06024551827046075, 'adj': 0.1907185089143457, 'adp': 0.3300639617439087}, {'tryin': 0.7043272236366759, 'save': 0.7098754553048386}, {'jay': 0.29620265090105236, 'crazy': 0.26193168696873964, 'black': 0.21847039959727282, 'big': 0.49301275012310924, 'dove': 0.352274601829616, 'spot': 0.2845666697545138, 'lot': 0.25914110726724543, 'shit': 0.190434424132991, 'rock': 0.23847955795118184, 'propn': 0.4249920168089067, 'adj': 0.08294101376831639}, {'livin': 0.867045182609151, 'adv': 0.4982295167031595}, {'adv': 1.0}, {'heh': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'playin': 0.7043020614839026, 'dead': 0.5789175759414138, 'propn': 0.3692623015438686, 'adj': 0.18016214672946032}, {'fry': 0.484247950747502, 'lead': 0.4115185636115368, 'blood': 0.40857125556142465, 'pressure': 0.484247950747502, 'high': 0.36527831064978517, 'adj': 0.12387178048605775, 'adp': 0.2143767316986644}, {'willing': 0.6352218224140457, 'home': 0.4969973237278106, 'god': 0.4193371320294919, 'propn': 0.15850475374014802, 'adv': 0.29314602915035504, 'adj': 0.15466814013375252, 'cconj': 0.1966282820460302}, {'year': 0.48422169673762094, 'send': 0.516735910298729, 'label': 0.520178332266943, 'fuck': 0.3670092712308867, 'propn': 0.16274051134566017, 'adv': 0.15048991767492598, 'adj': 0.15880137106495848, 'adp': 0.13741353674174545}, {'skin': 0.3070060377611829, 'appeal': 0.36767746216110697, 'combine': 0.36767746216110697, 'tryin': 0.27686492787658296, 'big': 0.24583966277117628, 'come': 0.19378858928817103, 'line': 0.26269025151267156, 'color': 0.3027560087572422, 'num': 0.14902410022616308, 'propn': 0.08476851283594936, 'like': 0.14096191750064302, 'adv': 0.39193702946565406, 'adj': 0.08271668775142547, 'cconj': 0.2103140335822967, 'adp': 0.21472848506143905}, {'store': 0.34810494294940936, 'score': 0.3782045697240691, 'tour': 0.3414110140696695, 'string': 0.3414110140696695, 'job': 0.32592255361924133, 'come': 0.20861707135832433, 'corner': 0.3113113872950099, 'night': 0.27679188953656636, 'like': 0.151748162830725, 'adj': 0.08904607445953829, 'adp': 0.38526544016577524}, {'adv': 1.0}, {'dude': 0.4211050400223389, 'culture': 0.4473424950492605, 'slide': 0.39696431858806325, 'hand': 0.3183033420463333, 'num': 0.3795085204601655, 'propn': 0.43174725214454623, 'adp': 0.1822776529493016}, {'nasty': 0.7967142417115851, 'just': 0.4276638242414295, 'adv': 0.3776795378847499, 'adj': 0.19926925792076228}, {'peace': 0.49812386999665875, 'ill': 0.4847923645667076, 'rest': 0.6368428773620762, 'propn': 0.3073206384278618, 'adp': 0.12974647643329348}, {'lame': 0.29206247230882604, 'mexican': 0.29206247230882604, 'nigga': 0.1644100655688539, 'witness': 0.24849238948529523, 'star': 0.22375778783554803, 'court': 0.23809167148976906, 'sit': 0.19216736298767634, 'business': 0.23592744033641913, 'snitch': 0.47185488067283826, 'rap': 0.37005449731365764, 'tell': 0.32590367652089747, 'propn': 0.21141044826290092, 'adv': 0.06516537828971164, 'adj': 0.06876441676794862, 'cconj': 0.08741961417061311, 'adp': 0.11900604694655915}, {'banana': 0.8891662290452795, 'adv': 0.21977250967278963, 'adp': 0.40135204137704494}, {'taylor': 0.44593179500933877, 'mail': 0.42609511794865224, 'swift': 0.39218409453051606, 'trailer': 0.42609511794865224, 'gift': 0.42609511794865224, 'propn': 0.3084304504308477, 'adp': 0.08681001569533825}, {'print': 0.5462201839181269, 'friend': 0.35577237074109386, 'rza': 0.40823564400026774, 'know': 0.24819181275368216, 'rhyme': 0.34547408525799045, 'propn': 0.3777953024335487, 'adj': 0.12288358424559757, 'cconj': 0.15622084833357108, 'adp': 0.2126665255526358}, {'joke': 0.8022578906799743, 'everybody': 0.5675513688995524, 'adv': 0.1851154248083134}, {'coffin': 0.48892346828589855, 'nail': 0.48892346828589855, 'soft': 0.4602472131732579, 'fuckin': 0.34639290782961785, 'propn': 0.3539089728969963, 'adv': 0.10908927296855449, 'adj': 0.11511419757240215, 'adp': 0.1992205597663423}, {'ready': 0.7086701659877201, 'fool': 0.6531711715918412, 'adv': 0.1834837768328949, 'adj': 0.19361745809563521}, {'power': 0.5326671152822725, 'product': 0.5860398829215859, 'trip': 0.5951092505396764, 'adp': 0.1366308158660434}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'adp': 1.0}, {'latin': 0.5398328759070672, 'white': 0.4135820982373331, 'black': 0.33478855274444275, 'music': 0.4013895271845762, 'adv': 0.12044824962828309, 'adj': 0.38130156781657903, 'cconj': 0.32316361191729975}, {'asssociates': 0.44400352999568327, 'homie': 0.3707373405341469, 'close': 0.3458541483441286, 'really': 0.31208976044462167, 'girl': 0.2956996207552187, 'boy': 0.30894597839765564, 'bitch': 0.24066196708308546, 'niggas': 0.25106552778418567, 'know': 0.20174655610159606, 'propn': 0.20473117231838425, 'adv': 0.18931965380300708, 'adj': 0.09988782324408826, 'cconj': 0.1269865342973532}, {'imagine': 0.33929707914895435, 'rule': 0.884659359536792, 'world': 0.21826811910383367, 'adp': 0.2336971070591502}, {'funk': 0.9564245100543559, 'adj': 0.29197971944517853}, {'shit': 0.5363763436212294, 'just': 0.5013669586934839, 'adv': 0.22138421645308504, 'kill': 0.641810423286675}, {'right': 0.6255557117469783, 'intj': 0.420025472466207, 'yeah': 0.5673481128217359, 'adv': 0.2285245553569765, 'adj': 0.24114580746258435}, {'matter': 0.9527210526101088, 'propn': 0.3038463360211647}, {'num': 0.08142538304713519, 'doo': 0.928091912094278, 'milli': 0.20089554742374913, 'end': 0.141209335138571, 'means': 0.20089554742374913, 'propn': 0.13895018223618938, 'like': 0.07702028135133432, 'adp': 0.07821709875885394}, {'ether': 0.6615681618495657, 'soul': 0.5045478001131047, 'fuck': 0.38241516575618334, 'like': 0.2819817378706531, 'adp': 0.28636344937007996}, {'intestine': 0.5894497800334407, 'rip': 0.4921831225759857, 'small': 0.4921831225759857, 'want': 0.344731338239631, 'propn': 0.13589840658500318, 'adj': 0.13260898047323966, 'adp': 0.1147488141213278}, {'bond': 0.6791119625695982, 'wait': 0.5137863644243074, 'face': 0.4537378844996427, 'propn': 0.16385919456725592, 'adv': 0.15152438994326417, 'adp': 0.1383581215700837}, {'money': 0.7717187936650202, 'just': 0.5817720117269605, 'adv': 0.2568879714493679}, {'meter': 0.600911523511951, 'read': 0.45249258586441227, 'bend': 0.5095185124098166, 'ya': 0.38006533815197463, 'adv': 0.1281120012701545, 'adp': 0.11698008388589927}, {'excuse': 0.6138045933698448, 'iron': 0.5161046148292193, 'thug': 0.5104635539972898, 'cconj': 0.18372288745061194, 'adp': 0.25010559445427927}, {'fleas': 0.4529125401448804, 'meagre': 0.4529125401448804, 'leave': 0.288233539989113, 'free': 0.32943970488742186, 'trees': 0.41847066377026826, 'key': 0.3729409797500311, 'intj': 0.17747467311684167, 'propn': 0.10441956993276624, 'adj': 0.20378418052425257}, {'propn': 1.0}, {'prepare': 0.42008928852114646, 'plus': 0.35200125079380323, 'cold': 0.33075312862550565, 'war': 0.36551260923980033, 'mic': 0.30794058230478283, 'fight': 0.4050135059227242, 'tell': 0.254648836821244, 'propn': 0.11012543198185021, 'adj': 0.10745984170280781, 'cconj': 0.2732255530413587, 'adp': 0.18597367021536165}, {'scene': 0.31674927144837267, 'spray': 0.32395336102888445, 'use': 0.24486868520302255, 'powerful': 0.32395336102888445, 'team': 0.30072808880849333, 'need': 0.21018730960202422, 'shit': 0.18603571628400037, 'grow': 0.2672487252327226, 'man': 0.36784944485203136, 'propn': 0.24910525905803335, 'like': 0.1380793952909962, 'adv': 0.1535689326034317, 'adj': 0.1620504378445176, 'adp': 0.35056252419972417}, {'roller': 0.7717364947051215, 'fake': 0.607547111608477, 'adj': 0.18790766327228026}, {'joint': 0.2528893277415498, 'carry': 0.24381386537993133, 'fly': 0.21652592345187827, 'mac': 0.24009818195959637, 'knowledge': 0.24009818195959637, 'peace': 0.2149077817350507, 'god': 0.17538705987806097, 'light': 0.19725366802163297, 'mic': 0.18537698763408925, 'point': 0.23102271959797785, 'say': 0.14164377134694525, 'cell': 0.22398324409666923, 'cat': 0.22003474155961472, 'rock': 0.18600169809017011, 'street': 0.19075968473630073, 'man': 0.1468435876637759, 'num': 0.11654629268333698, 'propn': 0.39776610195195644, 'adv': 0.12260784042371232, 'adp': 0.3358625729588727}, {'check': 0.6870163929037274, 'just': 0.5127993817305116, 'propn': 0.24486499799761002, 'adv': 0.45286466271280923}, {'math': 0.7113703365501675, 'talk': 0.2644005138822656, 'num': 0.6411015738711713, 'adv': 0.084305641190749, 'adp': 0.07698014925043446}, {'scoop': 0.3066943794324609, 'gear': 0.28870619347556287, 'tier': 0.320972405875051, 'stog': 0.320972405875051, 'peel': 0.3066943794324609, 'orange': 0.2965639584532286, 'home': 0.23203153365425244, 'feel': 0.18615083428945478, 'old': 0.20491298428181343, 'come': 0.16917215803589716, 'shit': 0.16579443203882877, 'year': 0.2201830184661255, 'like': 0.12305591300321986, 'adv': 0.2737202776796559, 'adj': 0.2166282435496981, 'adp': 0.24993615529209018}, {'know': 0.5523558077751447, 'baby': 0.7576455798930987, 'cconj': 0.3476726001362743}, {'going': 0.9521932312059845, 'propn': 0.30549640005326834}, {'snake': 0.8171432614003995, 'bitch': 0.530443748649578, 'propn': 0.22562428917672367}, {'rabbit': 0.4079936295143439, 'shawty': 0.331687294998039, 'make': 0.43313102709862106, 'lil': 0.2914944759538428, 'beat': 0.28117599225056455, 'propn': 0.4703172859330435, 'hop': 0.28251224257562657, 'like': 0.15641851966218354, 'adv': 0.0869826560773502, 'cconj': 0.11668757910084311, 'adp': 0.1588491055274338}, {'universal': 0.502958586354984, 'law': 0.4545288578541975, 'story': 0.4325678914129991, 'yo': 0.30395532256017266, 'num': 0.44126659242603145, 'propn': 0.12550155561205886, 'adj': 0.12246378567441776, 'cconj': 0.1556871620049899, 'adp': 0.10597000390771939}, {'mega': 0.5062574677438106, 'smooth': 0.5235508748687826, 'rock': 0.3544285638396683, 'beat': 0.37761185863683083, 'propn': 0.12632471433190065, 'adv': 0.23363077457385942, 'adj': 0.24653403961213485, 'cconj': 0.15670830667803262, 'adp': 0.21333011222223908}, {'lil': 0.8646839735129169, 'bitch': 0.3279982346039083, 'sit': 0.3804455073287536}, {'dt': 0.7007750616133075, 'lead': 0.5237473220504731, 'new': 0.4285384233559224, 'propn': 0.16156459375106236, 'adj': 0.15765391660056324}, {'matter': 0.9656011204395729, 'adp': 0.2600278373671586}, {'girlfriend': 1.0}, {'diddy': 0.6237482748674862, 'playin': 0.5937180095293516, 'just': 0.32594702610401344, 'intj': 0.2645335283289363, 'propn': 0.15564179821150767, 'adv': 0.14392557333114123, 'cconj': 0.1930767290869712}, {'worship': 0.389186922030215, 'cross': 0.389186922030215, 'di': 0.4073053537215312, 'dick': 0.28937762332026107, 'fall': 0.2878095483657349, 'month': 0.3400948267810136, 'break': 0.25840395976237596, 'fiend': 0.3067051396597312, 'like': 0.15615464524640102, 'adv': 0.17367183670684178, 'adj': 0.09163180567348803, 'adp': 0.15858113076965477}, {'world': 1.0}, {}, {'piss': 0.6433818323163434, 'scream': 0.564661365165447, 'til': 0.5169307115414584}, {'thankful': 0.7869054496938348, 'make': 0.4643763220295651, 'adv': 0.18651485754847733, 'adj': 0.19681594328906052, 'cconj': 0.25021042326319176, 'adp': 0.1703081949050027}, {'dick': 0.6450740255049826, 'ya': 0.574265147642669, 'fuck': 0.47207786978998967, 'adp': 0.17675272749320226}, {'ruby': 0.27047874878865485, 'doobie': 0.27047874878865485, 'ale': 0.27047874878865485, 'whippin': 0.27047874878865485, 'dippin': 0.27047874878865485, 'skippin': 0.27047874878865485, 'tail': 0.24991010737996555, 'sippin': 0.22934146597127628, 'villain': 0.20697383274432365, 'til': 0.19112532113833758, 'bail': 0.23787822346510193, 'light': 0.1855450071381232, 'jail': 0.21730958205641265, 'glow': 0.24991010737996555, 'people': 0.16955067569591345, 'propn': 0.12471844835839353, 'like': 0.2073948337671953, 'adv': 0.057665017981091846, 'cconj': 0.0773578509839542, 'adp': 0.26327192510579844}, {'camel': 0.6292875315066307, 'straw': 0.6012945207356624, 'break': 0.3992345999988467, 'num': 0.25505780967675223, 'adv': 0.134161655886545}, {'music': 1.0}, {'tommy': 0.33082540568577945, 'apollo': 0.33082540568577945, 'ago': 0.2909513598909244, 'lady': 0.2553522400240448, 'road': 0.27241098443242284, 'live': 0.42655565678709095, 'month': 0.2762350359833143, 'spit': 0.23376739276408373, 'kid': 0.21863626524891602, 'real': 0.2139965631790662, 'num': 0.13408751824085488, 'propn': 0.2288166711402492, 'lose': 0.22119932424439126, 'adv': 0.07053069068423855, 'adj': 0.14885210326195475, 'adp': 0.06440213275081164}, {'breaker': 0.32943319991487885, 'sound': 0.21610959906917096, 'fuckin': 0.2230147521006727, 'record': 0.7773112867448534, 'break': 0.20900005992407136, 'broken': 0.2897269552492922, 'time': 0.1808572508527053, 'like': 0.12629965207937122, 'adv': 0.07023387782492185, 'adj': 0.07411284600406609, 'adp': 0.06413111057617507}, {'stuff': 0.8367568767767831, 'like': 0.38419717961396405, 'adp': 0.3901672158747309}, {'leader': 0.5089813616884465, 'program': 0.5089813616884465, 'control': 0.4089287142830036, 'earth': 0.3862873619176474, 'world': 0.27762687184082685, 'adp': 0.2972518252206037}, {'poor': 0.6590829726115123, 'dream': 0.5890156504709773, 'man': 0.42793692314047, 'adj': 0.18852105592450746}, {'tomb': 0.7564281459462758, 'read': 0.6332573106292861, 'adp': 0.16371205989432547}, {'slow': 0.5550703056548172, 'knowin': 0.6379508774450149, 'adv': 0.46394472284660854, 'adj': 0.16318935563851628, 'cconj': 0.20746123034551034}, {'gat': 0.5012187414820999, 'chef': 0.5245527668973883, 'jack': 0.4447732070571535, 'rap': 0.3175318074196441, 'propn': 0.12093631655450864, 'adv': 0.11183261114093904, 'adj': 0.3540271452068399, 'cconj': 0.15002389265921903}, {'spiral': 0.3576921187322001, 'ers': 0.3417806651739383, 'mirror': 0.29866840209601364, 'shadow': 0.3576921187322001, 'white': 0.2618483811347627, 'barrel': 0.3032904996928744, 'aim': 0.3032904996928744, 'press': 0.3032904996928744, 'big': 0.23916317668255865, 'need': 0.20874773669603328, 'adv': 0.15251713896757216, 'adj': 0.16094055437835283, 'adp': 0.2088969128603454}, {'power': 0.5195184570440469, 'maker': 0.5904474293138499, 'money': 0.43841656146977165, 'tell': 0.36493371436880545, 'cconj': 0.19577787430037827, 'adp': 0.13325814304451858}, {'humble': 0.9587640174501934, 'adj': 0.2842033758468841}, {'sleep': 0.5790203010434559, 'hear': 0.5346803182091703, 'beat': 0.5677086981321217, 'adv': 0.17562242795516414, 'adp': 0.16036223110056508}, {'creep': 0.7032280728046931, 'hate': 0.5688381354337724, 'let': 0.4264896872089954}, {'critical': 0.43414929260614205, 'rything': 0.46988158535360913, 'rythe': 0.46988158535360913, 'mouth': 0.362684707111208, 'run': 0.28660054300752064, 'niggas': 0.26569849168546184, 'tell': 0.2505013390915882, 'propn': 0.10833180517866671, 'adj': 0.10570962970476745}, {'cat': 0.6546970615637093, 'town': 0.7143943411006671, 'adv': 0.1824052699158159, 'adp': 0.1665556978614866}, {'scar': 0.3851825532859273, 'awake': 0.4091818146542031, 'mistake': 0.3956661315589864, 'fall': 0.30259607044543785, 'livin': 0.31776039001605233, 'deep': 0.28632755625198936, 'face': 0.27338833828581793, 'heart': 0.30259607044543785, 'adj': 0.09633948728268993, 'cconj': 0.1224755651759262, 'adp': 0.25009260789037435}, {'sandal': 1.0}, {'eatin': 0.7351885780101935, 'long': 0.5722039625901374, 'adv': 0.36342864493528076}, {'alright': 0.8916749155877435, 'intj': 0.4526763136188932}, {'glue': 0.6908429519228954, 'pc': 0.7230048518360441}, {'til': 0.5763042724542087, 'mayhem': 0.7793003645045804, 'propn': 0.18803310365866618, 'adp': 0.15876989438348346}, {'talent': 0.346803546375567, 'chapstick': 0.3684115576468716, 'slapstick': 0.3684115576468716, 'classical': 0.3562425567689164, 'sound': 0.25293085936496856, 'rapper': 0.27546858215036857, 'need': 0.22501295909265745, 'lot': 0.27101181431421223, 'trick': 0.3269223124558131, 'propn': 0.08889200077829262, 'like': 0.14781888299051044, 'adj': 0.1734807330218784, 'adp': 0.2251737587769522}, {'mom': 0.9581699680288964, 'propn': 0.28619977702210647}, {'heh': 0.5786818022279374, 'huh': 0.4551412308796394, 'dream': 0.406755020692594, 'master': 0.4704519574828965, 'propn': 0.2668316708441324}, {'good': 0.942496605615773, 'adj': 0.33421572135784716}, {'blind': 0.4063115024526079, 'paint': 0.4063115024526079, 'picture': 0.3575064646105076, 'pain': 0.33113827339625007, 'hangin': 0.4063115024526079, 'color': 0.3621047373862501, 'know': 0.19981502960792893, 'adv': 0.28126065416671153, 'adj': 0.09893149476582896, 'adp': 0.08560711094464751}, {'man': 0.3037434308271309, 'fiction': 0.5947861837172497, 'science': 0.5043247793924154, 'trade': 0.5349944477772678, 'adp': 0.11578765748870512}, {'produce': 0.5553625309647298, 'fear': 0.42497058312767383, 'truth': 0.3864316585410141, 'run': 0.33873896722456437, 'nigga': 0.29872209087276985, 'propn': 0.2560790947477817, 'like': 0.21291750332658693, 'adp': 0.21622602635293733}, {'ooh': 0.9967987271624574, 'propn': 0.07995184505253415}, {}, {'sayin': 0.8454744744520898, 'know': 0.4834454555334038, 'adv': 0.22683342913702648}, {'chick': 0.852489944257907, 'fuck': 0.522743622571477}, {'perfect': 0.8272180216898481, 'man': 0.48033526432246765, 'adv': 0.20052925148075357, 'adj': 0.21160434244213353}, {'louis': 0.31811440789263684, 'dealer': 0.30760677199309694, 'family': 0.2741390994801692, 'drug': 0.2526700930566579, 'killa': 0.287166711571031, 'black': 0.1972852469323589, 'real': 0.21535411005540184, 'nigga': 0.17907542261959078, 'fuck': 0.1730988304986519, 'fake': 0.48432491431423597, 'propn': 0.30702431133914776, 'adj': 0.2995927761795835, 'adp': 0.12962137127983206}, {'represent': 0.8397047958815498, 'straight': 0.38493211057521687, 'shit': 0.28575264652250026, 'propn': 0.2550853798770538}, {'just': 0.6932706666209794, 'know': 0.6524304078287819, 'adv': 0.3061214558688631}, {'car': 1.0}, {'believe': 1.0}, {'feelin': 0.5152153972194163, 'eye': 0.42373888650517016, 'vibe': 0.4554072356564361, 'love': 0.3408820584581321, 'think': 0.38754711485912186, 'adj': 0.142573727803268, 'adp': 0.2467429601207657}, {'chip': 0.5521600606578352, 'bit': 0.534190166823825, 'lil': 0.4852510480543107, 'nigga': 0.36532576295512287, 'adj': 0.15279729335911116, 'adp': 0.13221810582764298}, {'permission': 0.5068455897582483, 'return': 0.4842992443390861, 'york': 0.3816599658520638, 'new': 0.3099465460712362, 'master': 0.4120511461140075, 'propn': 0.23370780808120575, 'adv': 0.10805750979676382, 'cconj': 0.14495957919056132, 'adp': 0.09866816875236507}, {'late': 0.7138290731852014, 'stop': 0.5944084912222066, 'adv': 0.1871966448737481, 'adj': 0.19753538525368156, 'cconj': 0.2511250436718481}, {'dissappoint': 0.6485440090121443, 'faster': 0.5703756668265649, 'work': 0.48471072467961557, 'adv': 0.1382670620472175}, {'huh': 0.8982355580578667, 'know': 0.25946190370133054, 'intj': 0.22375664042399682, 'adv': 0.24347993211377772, 'adj': 0.12846357963325908}, {'helmet': 0.3900296957758071, 'tarde': 0.3900296957758071, 'dude': 0.35082140006047713, 'mask': 0.30993484081373, 'wear': 0.3307098343295296, 'robbery': 0.3603697650526684, 'plot': 0.30993484081373, 'like': 0.2990628442417809, 'adp': 0.2277824841660152}, {}, {'alike': 0.9079774799179537, 'adv': 0.41901896849885206}, {'turn': 0.792926787653182, 'propn': 0.5613402279760838, 'adp': 0.23698999531154033}, {'left': 0.6605839392459976, 'stroke': 0.6287802264776026, 'just': 0.34519593747181176, 'adv': 0.1524251465216836, 'adj': 0.16084348125371814}, {'bind': 0.4836975276127291, 'chamber': 0.47088146758951427, 'medina': 0.5235078462110452, 'enter': 0.46040998409095213, 'propn': 0.2413908174867477}, {'yo': 0.447774201161898, 'world': 0.8748235900502134, 'propn': 0.18488361491890057}, {'pray': 0.5510233715781991, 'control': 0.5132475353084074, 'talk': 0.4271359120294196, 'gun': 0.4343304791758042, 'adp': 0.2487210465323579}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'bong': 0.9760008643029459, 'adv': 0.2177666477675193}, {'real': 0.9445071161807536, 'adj': 0.3284909549499292}, {'cconj': 0.8266727668787891, 'adp': 0.5626829804614382}, {'suit': 0.9580058682877325, 'cconj': 0.28674859428821564}, {'japan': 0.4451136015493933, 'san': 0.4253133207260232, 'say': 0.21925998634990362, 'make': 0.23626902170524824, 'man': 0.2273091341790565, 'know': 0.20225095099455903, 'everybody': 0.29094621785038793, 'propn': 0.5131075729338878, 'adv': 0.09489648984227676, 'adp': 0.2599522113190123}, {}, {'wish': 0.6462642865582505, 'feeling': 0.6265720172415606, 'say': 0.3962351018733085, 'adj': 0.1809633199646985}, {'drank': 0.6190502751962174, 'stand': 0.5730098001413195, 'sit': 0.5042281591815706, 'propn': 0.18490670406953094}, {'good': 0.6065254864574098, 'hear': 0.6205310434238629, 'adv': 0.40764234162446533, 'adj': 0.21507807218662936, 'adp': 0.18611072673089019}, {'gleam': 0.21580058221349244, 'rock': 0.14609065537109842, 'stick': 0.17006518965532447, 'heat': 0.16879425833414885, 'beat': 0.1556464956055524, 'street': 0.14982770398149975, 'fiend': 0.17006518965532447, 'frail': 0.22584708657028033, 'weak': 0.18360730121412489, 'crab': 0.19480646588719608, 'delete': 0.2086724739337398, 'injure': 0.22584708657028033, 'sahdeeq': 0.22584708657028033, 'fool': 0.17140485258362345, 'stay': 0.6064785827904333, 'propn': 0.10413867384945036, 'like': 0.17317263994240026, 'adj': 0.152426989918822, 'adp': 0.26379535188113507}, {'van': 0.5708102432063615, 'homie': 0.4988081556682531, 'matter': 0.4318500273849839, 'fact': 0.47470779553063464, 'adp': 0.11629339103992149}, {'wanna': 1.0}, {'case': 0.45376397388154216, 'really': 0.420256548188409, 'forget': 0.4657232917628401, 'need': 0.3489263732846088, 'just': 0.28867536924724724, 'adv': 0.25493570855425185, 'cconj': 0.3419972670310296, 'adp': 0.11639190816050073}, {'tab': 0.7207838399594027, 'kid': 0.47635243276985784, 'like': 0.2763375040367149, 'adp': 0.4209472647617213}, {'vacation': 0.5721590648547046, 'slide': 0.507724474686941, 'inside': 0.40536373291904065, 'yo': 0.3343542607166215, 'intj': 0.2346392722003118, 'cconj': 0.17125762272164932, 'adp': 0.23313638344127888}, {'momma': 0.5417557536359264, 'somebody': 0.5353943768982955, 'touch': 0.5295424775694053, 'let': 0.37341441996488467}, {'nice': 0.5593320803183364, 'dummy': 0.6261990497346354, 'people': 0.4364056626447151, 'adv': 0.14842371037548355, 'adj': 0.15662104857475254, 'cconj': 0.199110997823274, 'adp': 0.13552686647808498}, {'driver': 0.4437235283481716, 'seat': 0.3827377793585371, 'uh': 0.3188592390779129, 'dance': 0.3564988928918858, 'slow': 0.33954297612052464, 'hope': 0.3152515891859897, 'intj': 0.17387394070089657, 'num': 0.1798464860277188, 'propn': 0.2046020628368747, 'kill': 0.274253293674912, 'adj': 0.09982483105329426, 'cconj': 0.12690645286463262, 'adp': 0.08638013008130303}, {'woo': 1.0}, {'heartbeat': 1.0}, {'word': 1.0}, {'law': 0.9403392281607669, 'make': 0.2988894381423532, 'adv': 0.12004772494476196, 'adp': 0.10961652924877988}, {'propn': 1.0}, {'pot': 0.7779882245721631, 'bring': 0.580292831605059, 'cconj': 0.24082058054667219}, {'caravan': 0.2513481417160213, 'flesh': 0.2260810085345388, 'fear': 0.19233484507419618, 'matter': 0.18170002696810658, 'record': 0.1976887853730699, 'trader': 0.24016725716635612, 'pen': 0.18170002696810658, 'angels': 0.2260810085345388, 'rhythm': 0.2513481417160213, 'pound': 0.21312044494612184, 'die': 0.17088928830187317, 'soul': 0.1724216521915874, 'mind': 0.1648854643280209, 'pass': 0.18282571201150685, 'world': 0.1370993195038399, 'run': 0.15330780380663764, 'time': 0.1379889274348838, 'man': 0.2567152667189102, 'heart': 0.17760727790313538, 'hold': 0.1594610886031704, 'propn': 0.11589727611865772, 'like': 0.09636303462350643, 'adv': 0.16075934072247905, 'cconj': 0.1437728633324508, 'adp': 0.39144167554870074}, {'alcohol': 0.7285455456682255, 'nigga': 0.42412785857356106, 'adv': 0.16810681421191098, 'kill': 0.48735500351076416, 'adp': 0.15349966461636957}, {'know': 1.0}, {'trouble': 0.27925180026015717, 'fall': 0.22436728013908105, 'daily': 0.2933763602757982, 'audio': 0.3033978950922668, 'double': 0.2523173815852778, 'rapper': 0.22685658539676573, 'zone': 0.3033978950922668, 'black': 0.1881584963364409, 'save': 0.24098114541240667, 'watch': 0.2220440560125286, 'need': 0.18530487640844054, 'yo': 0.17729751243618672, 'come': 0.16735382223595796, 'just': 0.15330728118074777, 'stay': 0.21316476947119897, 'adv': 0.20308365997549974, 'adj': 0.35716638189966643, 'cconj': 0.09081251254045693, 'adp': 0.0618124332465743}, {'floss': 0.5439924436217298, 'microphone': 0.5216669692254768, 'ring': 0.4668155154921995, 'super': 0.42510631929781617, 'propn': 0.1394350698750955, 'adp': 0.11773507370069002}, {'hop': 0.6979636991331791, 'hip': 0.7161331403393708}, {'world': 0.73243890099881, 'know': 0.6101427972878605, 'adj': 0.30209108431299375}, {'conscience': 0.8152352771217962, 'hear': 0.5291471584631713, 'adv': 0.17380499253485387, 'adp': 0.15870271641172048}, {'sorry': 0.8019209775227895, 'feel': 0.5569919987385596, 'adj': 0.21606170218277498}, {}, {'ask': 0.39245061338889975, 'low': 0.394969845011715, 'dance': 0.43348008041716896, 'try': 0.34229650384206983, 'play': 0.3684499137527872, 'key': 0.44427224189862696, 'adv': 0.11502777003736615, 'adj': 0.12138067370025545, 'cconj': 0.15431021102750447}, {}, {'type': 0.6924037762865203, 'way': 0.5527797777460979, 'propn': 0.42718284225099096, 'adp': 0.18035062291410572}, {'dough': 0.7753677527653214, 'try': 0.631509974562283}, {'slippin': 0.6429359597167681, 'east': 0.5545702802999891, 'catch': 0.42025178549580994, 'adv': 0.13707144773405974, 'adj': 0.2892836167409803}, {'bitch': 0.6529715642208193, 'sit': 0.7573824240890573}, {'dc': 0.46246494212462763, 'infiltrate': 0.48399480088710434, 'stimulate': 0.48399480088710434, 'state': 0.37357819092013617, 'make': 0.25690740008387064, 'propn': 0.3347568756353689}, {'prick': 0.4382226162681172, 'difficult': 0.45862388385702996, 'despicable': 0.45862388385702996, 'fucking': 0.3480689540769465, 'adj': 0.5158848787381675}, {'stroke': 0.420695744519401, 'disease': 0.4419745412406871, 'attack': 0.37622957820071945, 'heart': 0.6760232870546765, 'adv': 0.1019825493855644, 'cconj': 0.13680999563581278}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'door': 0.42870018905937063, 'oh': 0.3392407014873951, 'way': 0.6567695371094844, 'open': 0.4211428211367679, 'intj': 0.21565977522371232, 'adp': 0.21427845210196914}, {'leather': 0.6859987517248145, 'kid': 0.4906773368341626, 'run': 0.4528571578836466, 'adp': 0.2890706804621941}, {'10': 0.5733868021302111, 'sky': 0.49203965744598144, 'way': 0.380360303735494, 'num': 0.258373987777822, 'look': 0.3950865478248899, 'adp': 0.24819365856760137}, {'pawn': 0.4613884032261825, 'link': 0.8817283194111935, 'adv': 0.09836621430504433}, {'know': 1.0}, {'competition': 0.7079406573666508, 'hell': 0.5117715836573471, 'catch': 0.46274177200241784, 'adv': 0.15093019662144425}, {'diamond': 0.27365275452034377, 'rule': 0.809472385867316, 'son': 0.2438490070246859, 'black': 0.216973171287528, 'world': 0.1997175672478755, 'free': 0.26632886702458186, 'adj': 0.08237259976769308, 'adp': 0.2138352494461937}, {'koopa': 0.5428824174548447, 'boss': 0.48830838221405654, 'throne': 0.44134806899298157, 'king': 0.37413697509187344, 'propn': 0.25032448223474574, 'like': 0.20813281861776942, 'adj': 0.12213268430001013, 'adp': 0.10568349623733667}, {'adj': 1.0}, {'coward': 0.5682359010687782, 'flame': 0.5250242234897765, 'spit': 0.40152607020140957, 'suppose': 0.49013706290600334}, {'lady': 0.4157972569940116, 'write': 0.38065004120110757, 'ya': 0.6814257311866551, 'like': 0.20652640777314643, 'look': 0.33386720028528927, 'adv': 0.2296942272183553, 'adp': 0.10486780981373084}, {'adv': 0.6878566831204381, 'adj': 0.7258465288795898}, {'know': 0.7108062224970315, 'num': 0.6340463591432246, 'adp': 0.3045319827484817}, {}, {'feel': 0.33936908535093213, 'soul': 0.4014127031548275, 'song': 0.41573808892895964, 'hope': 0.41573808892895964, 'heart': 0.4134852938530578, 'adv': 0.24950788061928716, 'cconj': 0.16735790713355805, 'adp': 0.3417414354119154}, {'purpose': 0.3433361993744003, 'base': 0.3342391561022507, 'shrink': 0.3715941967863146, 'defeat': 0.3433361993744003, 'fan': 0.32052196607640027, 'makin': 0.3342391561022507, 'turn': 0.2420323383072121, 'people': 0.23293529503506252, 'way': 0.22171997413096523, 'watchin': 0.32052196607640027, 'propn': 0.08567152105244547, 'adj': 0.08359783861961913, 'adp': 0.14467727314506035}, {'figure': 0.6287281355001331, 'time': 0.4133819869150669, 'adv': 0.642128968059164, 'adp': 0.1465832627005928}, {'window': 0.4417745218739946, 'hole': 0.46276848848989743, 'lace': 0.44797606528472167, 'bullet': 0.41790875533167626, 'num': 0.43490499756127865, 'propn': 0.12369224109470392, 'adp': 0.1044422693267468}, {'school': 0.6102433305745805, 'allah': 0.7554406371019815, 'propn': 0.18227612111341546, 'adp': 0.15390885931629525}, {'wham': 0.9048147473433668, 'adj': 0.21303338937128197, 'adp': 0.36868285558585867}, {'break': 0.7764754274066886, 'beat': 0.4217387721929206, 'time': 0.3359597389744074, 'adj': 0.1376717398986387, 'cconj': 0.17502090397639586, 'adp': 0.2382594125226177}, {'leather': 0.47358963683677363, 'half': 0.7410727205769176, 'suede': 0.46104139570345903, 'propn': 0.1181732209315848}, {'runnin': 0.5895726787924783, 'face': 0.7878272649531506, 'adv': 0.13154626247964368, 'adp': 0.12011593501919762}, {'public': 0.461427343607933, 'enemy': 0.4247043848230764, 'mean': 0.33943631509312727, 'friend': 0.3145355084685067, 'bitch': 0.2617497324275119, 'propn': 0.445341075064073, 'adv': 0.10295430002260865, 'think': 0.29530876433490616, 'cconj': 0.13811360298054093, 'adp': 0.09400838745514568}, {'adj': 1.0}, {'womb': 0.9482923147079615, 'adv': 0.23438652425043308, 'adp': 0.21402019324264168}, {'hold': 1.0}, {'allow': 0.379490228465372, 'shaolin': 0.33162127556022564, 'demonstrate': 0.36695528805018296, 'shit': 0.2051467881776332, 'skill': 0.31559869838405513, 'shadowbox': 0.379490228465372, 'special': 0.3367533413900153, 'technique': 0.33162127556022564, 'propn': 0.18313022479296123, 'adj': 0.17869755072102278, 'cconj': 0.11358833297446584, 'adp': 0.1546300405782936}, {'honest': 0.44518670533777627, 'whip': 0.39330232029022977, 'clean': 0.4729245974305987, 'stop': 0.3350580144218888, 'man': 0.25275502914045167, 'hold': 0.3140022999940545, 'adj': 0.33404206840184225, 'adp': 0.19270153539102128}, {'scrambler': 0.5980858036182757, 'sinner': 0.5379623686455566, 'save': 0.4539124704167808, 'adv': 0.1275095687714533, 'cconj': 0.34210918735114837, 'adp': 0.11642999799593609}, {'past': 0.4014409079296871, 'bar': 0.3538468777665137, 'low': 0.34658735426630155, 'drug': 0.3593195202213484, 'far': 0.38985037171391235, 'set': 0.34889627048143695, 'hard': 0.3153091220784156, 'propn': 0.10915402265468625, 'adj': 0.2130238907508749, 'adp': 0.1843332084745724}, {'run': 1.0}, {'say': 0.3921694080587858, 'kid': 0.5261487485181593, 'shit': 0.41123250870025163, 'play': 0.5436760940417464, 'adv': 0.16973229300905052, 'cconj': 0.2276965461809845, 'adp': 0.15498390219098337}, {'diamond': 0.24475622095733707, 'drum': 0.2734453038448232, 'dum': 0.6051614153454625, 'tat': 0.5760260115175544, 'rat': 0.2880130057587772, 'propn': 0.0755019409974312, 'like': 0.1255524961092013, 'look': 0.2029661040289448, 'adj': 0.07367441363749534, 'adp': 0.127503455132781}, {'shout': 0.40444789363615885, 'kendrick': 0.3839909134428657, 'slim': 0.3899334352020643, 'bring': 0.3169318565623255, 'let': 0.25769384605245993, 'bitch': 0.24926544609195955, 'ya': 0.29086319593356225, 'bish': 0.3549619965746765, 'propn': 0.21205015323112358, 'adv': 0.09804384243001278, 'adj': 0.10345873559446372, 'adp': 0.17904921940565596}, {'bad': 0.7667122723047322, 'fuck': 0.5514447615876629, 'adv': 0.22611656783293974, 'adj': 0.2386048284639091}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'whoa': 0.9718523789083254, 'adv': 0.23559064839298807}, {'world': 0.73243890099881, 'know': 0.6101427972878605, 'adj': 0.30209108431299375}, {'worker': 0.436815245743842, 'squeal': 0.436815245743842, 'metal': 0.40205105483001086, 'grill': 0.42238680288251323, 'catch': 0.29881439742261634, 'propn': 0.10539675088546019, 'hit': 0.2810325019927745, 'adj': 0.10284561851261068, 'cconj': 0.13074675409304287, 'adp': 0.26698220708237924}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'wallet': 0.4148658848744117, 'foreigner': 0.4148658848744117, 'jewel': 0.3964111331077714, 'rip': 0.3464077748169712, 'card': 0.3333139200594517, 'green': 0.36486252658361146, 'hard': 0.2762943907739528, 'propn': 0.09564786451818065, 'adj': 0.18666540862294675, 'cconj': 0.11865306773330939}, {'alright': 0.5346440348309732, 'smoke': 0.4730193959313629, 'hop': 0.47963161062002285, 'hip': 0.49211741519784613, 'adp': 0.13484203664072678}, {'let': 0.9689457077752557, 'cconj': 0.2472735638597644}, {'normal': 0.8601780553865513, 'fuck': 0.468057440071274, 'adj': 0.20252393889448328}, {'oh': 0.4995090153844087, 'crazy': 0.5757412071305161, 'baby': 0.5050674299306924, 'intj': 0.3175444500253224, 'adv': 0.1727673891348358, 'adj': 0.18230921176519696}, {'silly': 0.9716132272193309, 'adj': 0.23657501282349544}, {'adv': 1.0}, {'justice': 1.0}, {'army': 0.6614072373788843, 'strike': 0.5754792890708867, 'adv': 0.4810031748266315}, {'hustle': 0.545501921175707, 'inside': 0.4281280044457228, 'dna': 0.4881443057698322, 'flow': 0.4692766709059964, 'adp': 0.24622877307660399}, {'bath': 0.6244608688408211, 'child': 0.4633687959604962, 'short': 0.5491952427634095, 'adj': 0.2809709052999113, 'adp': 0.12156445992836411}, {'wookie': 0.5270627062589596, 'black': 0.31232854460954074, 'let': 0.2953420565653427, 'beard': 0.4469014081644854, 'grow': 0.39109642217973634, 'like': 0.20206778321589525, 'look': 0.32665946102277427, 'adv': 0.1123677204575292, 'adj': 0.11857371143391049, 'adp': 0.10260385627315392}, {'pill': 0.7420702940432047, 'eat': 0.6703220708723769}, {'stitch': 1.0}, {'super': 0.9501925120844457, 'propn': 0.31166358462074223}, {'scoop': 0.3066943794324609, 'gear': 0.28870619347556287, 'tier': 0.320972405875051, 'stog': 0.320972405875051, 'peel': 0.3066943794324609, 'orange': 0.2965639584532286, 'home': 0.23203153365425244, 'feel': 0.18615083428945478, 'old': 0.20491298428181343, 'come': 0.16917215803589716, 'shit': 0.16579443203882877, 'year': 0.2201830184661255, 'like': 0.12305591300321986, 'adv': 0.2737202776796559, 'adj': 0.2166282435496981, 'adp': 0.24993615529209018}, {}, {'yo': 0.8185512783769435, 'intj': 0.5744334640909001}, {'animal': 0.43875784022448433, 'zoo': 0.43875784022448433, 'banana': 0.420751198693084, 'shawty': 0.3965627717889971, 'ooh': 0.35052825796619136, 'propn': 0.33738463186717244, 'like': 0.18701277574329153, 'adp': 0.09495938272904676}, {'okay': 0.9312750663405444, 'propn': 0.2607472688615949, 'adj': 0.2544358712792556}, {'lunch': 0.8646229707678226, 'know': 0.4252024947874056, 'cconj': 0.2676377343484867}, {'yams': 0.7256395671158062, 'yam': 0.6704580783119524, 'adv': 0.15470353539020734}, {'baywatch': 0.5058465623361967, 'flock': 0.46558847464922726, 'wanna': 0.3281055955489709, 'girl': 0.35256973402858716, 'watch': 0.3702076521887722, 'play': 0.3615228276276673, 'propn': 0.12205293802423595, 'adv': 0.11286517685960266}, {'lifetime': 0.8256534060529213, 'come': 0.49480881847982977, 'adv': 0.20014996670418753, 'adp': 0.18275852115870678}, {'scope': 0.9743967868319501, 'adv': 0.2248352770620552}, {'intj': 0.5615949710765401, 'yeah': 0.7585726768894637, 'propn': 0.33042182485164834}, {'dad': 0.7232557949341207, 'mad': 0.6099084378415112, 'propn': 0.19331724692850605, 'adv': 0.1787649328053437, 'adj': 0.18863799559745298}, {'smart': 0.40765161553960216, 'expertise': 0.40765161553960216, 'knowledge': 0.34038395102640284, 'mentally': 0.3766516203930014, 'retarded': 0.40765161553960216, 'pretend': 0.3766516203930014, 'adv': 0.08690974002722945, 'adj': 0.18341940893390057, 'cconj': 0.23317952385916582, 'adp': 0.0793579725403562}, {'sword': 0.28155831483440685, 'shell': 0.31729047967808005, 'trigger': 0.31729047967808005, 'dose': 0.3320618030626462, 'hang': 0.2920387355639603, 'critical': 0.30681005894852653, 'cut': 0.2257657638134641, 'spit': 0.23464105417654796, 'mic': 0.21407491393485387, 'touch': 0.26387099030454186, 'dope': 0.26678699144984064, 'num': 0.13458864497711595, 'propn': 0.07655727672236406, 'like': 0.12730741833700263, 'adj': 0.22411261476293218, 'cconj': 0.0949708159839757, 'adp': 0.19392847062017826}, {}, {'youthful': 0.37066739442951235, 'blueprint': 0.37066739442951235, 'simply': 0.3541787531563096, 'root': 0.37066739442951235, 'rage': 0.3541787531563096, 'earth': 0.28131507501193936, 'love': 0.19937704275799925, 'everybody': 0.24228483720634478, 'intj': 0.14524675037791118, 'like': 0.14210821181869612, 'adv': 0.07902484783188572, 'hit': 0.2278669119771724, 'adj': 0.16677867032940863, 'cconj': 0.10601214768741016, 'adp': 0.14431642994867513}, {'sense': 0.5897959136585288, 'happen': 0.4587093943585495, 'loyalty': 0.5412532565425923, 'make': 0.33883401699840704, 'adv': 0.13609130228007765, 'adp': 0.12426604688887598}, {}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'bust': 0.4490427263305347, 'nut': 0.5620688554938197, 'daughter': 0.49656241387726563, 'teach': 0.4670294804003579, 'adv': 0.13322336572412077}, {'warm': 0.8573207568904462, 'just': 0.43320509622759473, 'adv': 0.1912865798770393, 'adj': 0.20185120452000724}, {'sharice': 0.9744377054874274, 'propn': 0.2246578690462405}, {'dk': 0.9673146071327873, 'propn': 0.2535792791762402}, {'road': 0.38621034408256893, 'lonely': 0.46902731924474167, 'home': 0.3390606987332904, 'god': 0.28607949017568834, 'grow': 0.34803241489646425, 'know': 0.42623375708796934, 'propn': 0.2162697060522438, 'adv': 0.1999896030205667, 'adj': 0.10551744478658269, 'adp': 0.18261209180801186}, {'profile': 0.6570595195362585, 'bag': 0.5690138990946088, 'old': 0.46635655916521107, 'adj': 0.1643396791633616}, {'touch': 0.3056574914560394, 'fore': 0.367536469125898, 'ground': 0.34597978339591295, 'yo': 0.21477835792428338, 'nuts': 0.3846469731869983, 'hand': 0.2615179370200451, 'roll': 0.29689517350750044, 'say': 0.18947452919196905, 'kid': 0.2542059231593053, 'stop': 0.2603925451160886, 'face': 0.24556366132419943, 'propn': 0.08868085547659711, 'adv': 0.08200523968902348, 'adj': 0.08653433198931999, 'adp': 0.22463890321273275}, {'stall': 0.4588970954670806, 'pant': 0.43848367442658964, 'wear': 0.38910314793941925, 'rob': 0.39582587817010617, 'drawer': 0.4588970954670806, 'nigga': 0.24683462100916076, 'adv': 0.09783507717368581, 'adp': 0.08933398449242251}, {'write': 0.2766799302715221, 'friend': 0.25503339473239645, 'lend': 0.33200300428729107, 'gentleman': 0.33200300428729107, 'pipe': 0.3269433328177897, 'pen': 0.5661113822068429, 'fiend': 0.294844827549421, 'propn': 0.09027346923434683, 'like': 0.15011613271233723, 'adp': 0.3048975716953724}, {'dress': 0.8107076649155932, 'fuck': 0.46862428384061516, 'adp': 0.35091931072823074}, {'revenge': 0.5152833201634179, 'grab': 0.4302550651812346, 'pen': 0.37249924559096353, 'yo': 0.28772280320705396, 'loose': 0.4302550651812346, 'let': 0.2887414223842076, 'propn': 0.11879923366171383, 'adj': 0.11592369368236971, 'cconj': 0.14737279906180495, 'adp': 0.10031075068328675}, {'feel': 0.3234413254944142, 'people': 0.6991890053506882, 'wanna': 0.3456457109745421, 'way': 0.33276229812161984, 'like': 0.21381245893208142, 'kill': 0.3446970867724102, 'adp': 0.10856744433246794}, {'press': 0.7722740226210641, 'shit': 0.47046165801884327, 'adv': 0.3883571181702599, 'adp': 0.17730598152722274}, {'chance': 0.4459529919498621, 'opportunity': 0.4807642471476075, 'blow': 0.3747193103067092, 'miss': 0.41783697051620705, 'shot': 0.37911212088626445, 'num': 0.2298117482877216, 'adv': 0.2417642081341283}, {'motherfucke': 0.6233919068013465, 'style': 0.4972040112937935, 'break': 0.428045103326903, 'propn': 0.31110574978560085, 'like': 0.25866953169346835, 'adp': 0.13134449752320984}, {'piece': 0.33086462927229465, 'produce': 0.35809616458580523, 'cook': 0.30887911520174643, 'small': 0.2990057752813594, 'stand': 0.25584481297238126, 'stack': 0.2789370706789801, 'cut': 0.2434662866091046, 'block': 0.25303741887813613, 'loot': 0.30887911520174643, 'loose': 0.2990057752813594, 'crack': 0.24796110330274104, 'adv': 0.15268942097876656, 'adj': 0.16112235140509182, 'cconj': 0.10241673278221032, 'adp': 0.06971096032182043}, {'shotgun': 0.38480901598360856, 'feel': 0.24811563099880676, 'pen': 0.30926882817364315, 'devil': 0.3332448158518914, 'knock': 0.6442994589072024, 'say': 0.21073921261140494, 'let': 0.23972859650838743, 'propn': 0.1972669755300914, 'adp': 0.16656671756648064}, {'wound': 0.277744623794639, 'seein': 0.3158087244491748, 'baboon': 0.3158087244491748, 'read': 0.23780723246807017, 'enemy': 0.277744623794639, 'worthy': 0.2917929508032894, 'stab': 0.2724036977432625, 'sign': 0.2567435713984479, 'make': 0.16763320220244696, 'feed': 0.2567435713984479, 'ya': 0.1997431318135344, 'bleed': 0.26369629678598866, 'propn': 0.0728101084978781, 'actually': 0.2509555754339397, 'adv': 0.2693167704376959, 'adj': 0.07104773704620512, 'adp': 0.12295763896173172}, {'pump': 0.2986027960629179, 'hill': 0.2781318488842754, 'belly': 0.2986027960629179, 'light': 0.23747676194589334, 'pretty': 0.2750918476252819, 'steel': 0.2606789303054033, 'life': 0.19722687920009202, 'heavy': 0.2814365183948833, 'sight': 0.3307829488486693, 'krill': 0.29353130843472114, 'shit': 0.17881635533712534, 'ass': 0.23336683809263922, 'propn': 0.07981280048408798, 'adj': 0.15576185721189995, 'adp': 0.33695848381867244}, {'soldier': 0.6383445921051814, 'middle': 0.6876440339391583, 'propn': 0.17625556208676182, 'adp': 0.2976505352782538}, {'paris': 0.9744377054874274, 'propn': 0.2246578690462405}, {'say': 0.8627427678500506, 'adv': 0.3733980908633585, 'adp': 0.34095275664237257}, {'talkin': 0.5838462477483051, 'dog': 0.6823409782083015, 'know': 0.3713139395189674, 'adv': 0.1742211313053623, 'adp': 0.15908269602174618}, {'cconj': 1.0}, {'womb': 0.9482923147079615, 'adv': 0.23438652425043308, 'adp': 0.21402019324264168}, {'project': 0.705905615718657, 'ghost': 0.6649256460333975, 'adv': 0.18023785598843065, 'adp': 0.1645766150236006}, {'half': 0.41477154326811655, 'pop': 0.42281830014425736, 'brain': 0.42574660635465333, 'nigga': 0.308617397325806, 'niggas': 0.3244369449130838, 'propn': 0.1322809161848514, 'lose': 0.38363178423197236, 'like': 0.21997049341003302, 'adv': 0.12232322500412822, 'cconj': 0.1640970928830513, 'adp': 0.11169430639056158}, {'cold': 0.7145187193361964, 'adv': 0.6599792149702515, 'adj': 0.23214313585676438}, {'god': 0.6429911512665388, 'blow': 0.6966902923337688, 'propn': 0.24304347577173105, 'adp': 0.20521911423065528}, {'splash': 0.4044108722061933, 'ultimate': 0.4232380484254514, 'lie': 0.29597117123346955, 'ring': 0.3266822374321954, 'sharp': 0.3588675077632807, 'razor': 0.3722256018751079, 'tell': 0.22563492843691563, 'propn': 0.2927342328496696, 'adv': 0.09023270693922841, 'adj': 0.19043239305644882, 'cconj': 0.12104753525911373}, {'medina': 0.5760913970007455, 'deep': 0.38519117797321534, 'street': 0.38218093758431787, 'heart': 0.40707690992328105, 'propn': 0.13281861415791563, 'adv': 0.24564089353103163, 'adj': 0.12960373453924975, 'adp': 0.3364449705668782}, {'famous': 0.32978976352575096, 'lighter': 0.35693283291711486, 'small': 0.29803440802891074, 'bridge': 0.3210516469071937, 'change': 0.2708913386375469, 'feel': 0.41401281491272335, 'people': 0.2237447609846819, 'new': 0.21827179909930547, 'just': 0.17233553500985827, 'burn': 0.2648549257130982, 'want': 0.2087471016550366, 'adv': 0.15219338539820107, 'adj': 0.24089838018708834, 'adp': 0.06948449331151053}, {'cause': 1.0}, {'diamond': 0.5090143453520873, 'clique': 0.6125975394031344, 'lace': 0.5686784253399499, 'propn': 0.15701979267083999, 'adp': 0.1325831218726296}, {'backstroke': 0.9744377054874274, 'propn': 0.2246578690462405}, {'es': 0.4285620859741131, 'train': 0.3854802663556645, 'ese': 0.4285620859741131, 'rub': 0.34055438171440333, 'ask': 0.31172766177789313, 'girl': 0.28541585309883183, 'ride': 0.32794124455327667, 'propn': 0.19761108267212513, 'cconj': 0.1225702282809014, 'adp': 0.16685727201425743}, {'culture': 0.5446401606288983, 'dark': 0.4483094535469569, 'suffer': 0.5446401606288983, 'people': 0.3573040334261955, 'adj': 0.25646473987556023, 'adp': 0.11096165832673033}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'wicked': 0.9686853572241145, 'propn': 0.24829151958854698}, {'committee': 0.2701111295505115, 'gritty': 0.2701111295505115, 'rub': 0.2386309669958072, 'pity': 0.25902575662368427, 'shitty': 0.2701111295505115, 'york': 0.2261283485904875, 'city': 0.2079399649739507, 'witty': 0.25902575662368427, 'calm': 0.25074598237733986, 'midst': 0.2701111295505115, 'titty': 0.22979277468579143, 'act': 0.2261283485904875, 'new': 0.18363912090685705, 'yo': 0.16768038956641984, 'say': 0.14792534580706576, 'fool': 0.22790964061302374, 'propn': 0.2077030554257432, 'adv': 0.06402260763345005, 'adj': 0.13511706336775686, 'adp': 0.23383820211384854}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'say': 0.5499497834439397, 'love': 0.6005169676377484, 'adv': 0.47604038390357284, 'adj': 0.2511658814561636, 'adp': 0.2173381240243289}, {}, {'aim': 0.5552699972119557, 'pick': 0.510107065204338, 'game': 0.4280520911333059, 'everybody': 0.4280520911333059, 'adp': 0.2549682858271988}, {'humor': 0.36238456144421677, 'guys': 0.3922103182914917, 'neighborhood': 0.3747633689802086, 'escape': 0.32749066282165057, 'negro': 0.3527828123637998, 'nice': 0.3151118552856587, 'crack': 0.2715832026929578, 'll': 0.2835295495888331, 'propn': 0.18084918887911636, 'adv': 0.08361771546910263, 'adj': 0.17647172736842437, 'cconj': 0.1121734978908446, 'adp': 0.07635199882090707}, {'fonz': 0.6119623004077254, 'finger': 0.5188885697054407, 'snap': 0.48629230085571656, 'propn': 0.14108869717583883, 'like': 0.23461698956619503, 'cconj': 0.1750233194095739, 'adp': 0.1191313503497489}, {'raekwon': 0.47350882179082265, 'cappa': 0.4524454177268581, 'emcee': 0.4014925676275314, 'today': 0.3724212289940891, 'ill': 0.34442103648192113, 'world': 0.2582781667028686, 'propn': 0.2183361384295177, 'adj': 0.10652565193798805, 'cconj': 0.1354251490726306, 'adp': 0.09217846475979943}, {'mad': 0.9553492212329051, 'adj': 0.2954790440787327}, {'knowledge': 0.30295798845282856, 'violin': 0.3352379479633893, 'mix': 0.3352379479633893, 'quote': 0.362829425597225, 'pain': 0.2732143062537268, 'sound': 0.23801766706140798, 'god': 0.22130492795757475, 'ill': 0.26391501294043757, 'fuck': 0.18864765673147424, 'rap': 0.21963449735735588, 'intj': 0.142175426815165, 'propn': 0.33460316702819026, 'adv': 0.15470764668082343, 'kill': 0.22425487641515418, 'adj': 0.08162602115384543, 'adp': 0.07063238926519255}, {'skill': 0.5359838966566094, 'kick': 0.4792077613428841, 'hard': 0.4492037375686253, 'tell': 0.35958423495284847, 'propn': 0.15550579261370492, 'like': 0.25859123837299397, 'adv': 0.14379980580683258, 'adj': 0.15174176897569375, 'adp': 0.13130474256339758}, {'card': 0.2290009774913746, 'obama': 0.2633554320680158, 'stone': 0.2458558142635342, 'rolling': 0.2723514726116188, 'papa': 0.28503067962813794, 'hopper': 0.28503067962813794, 'ho': 0.19736743586034147, 'mama': 0.23799701803497753, 'kumbaya': 0.28503067962813794, 'grammar': 0.28503067962813794, 'doom': 0.18255183333091562, 'pull': 0.21004664287686065, 'rock': 0.18437394708116547, 'star': 0.20865660193717417, 'propn': 0.32857095295808697, 'like': 0.2185528093603333, 'adp': 0.1109744496763385}, {'bout': 0.961206940856846, 'propn': 0.2758282379464141}, {'steel': 0.5232219460936326, 'tec': 0.5801828991915721, 'blue': 0.5273435482032395, 'propn': 0.16019633325770843, 'adv': 0.1481372573087988, 'adj': 0.1563187749046083, 'cconj': 0.19872671989495075}, {'battle': 0.23208235726004822, 'bat': 0.2920581982955265, 'snap': 0.23208235726004822, 'bing': 0.2920581982955265, 'head': 0.1847213667105489, 'ding': 0.2920581982955265, 'ring': 0.22542922602196955, 'sting': 0.2790663815483197, 'bee': 0.2519174646321089, 'point': 0.2346470666992817, 'king': 0.20127704885590544, 'kong': 0.2920581982955265, 'right': 0.17044403464577684, 'propn': 0.33667197039412955, 'adv': 0.062265672743836785, 'killer': 0.23208235726004822, 'adp': 0.1705658380613289}, {'ooh': 0.9985734092534512, 'propn': 0.053396126563071473}, {'pay': 0.338428254545822, 'fam': 0.3933996179236194, 'laugh': 0.3587165491741786, 'need': 0.26616899390016474, 'come': 0.2403843835804365, 'make': 0.24209229993606632, 'funny': 0.41023570994318775, 'money': 0.2921054427724808, 'propn': 0.21030161558995186, 'like': 0.17485572174902445, 'adv': 0.1944707716311336, 'cconj': 0.13044165682484174, 'adp': 0.17757280311930712}, {'herb': 0.41457325271874784, 'bird': 0.402603555050144, 'pretty': 0.388530009539974, 'observe': 0.4889358067095192, 'try': 0.31019221173736466, 'play': 0.3338926701809085, 'adv': 0.10423921366012576, 'adj': 0.21999254572944943, 'adp': 0.0951816522828953}, {'adj': 1.0}, {}, {'miracle': 0.4971270635115789, 'automatic': 0.5202706025985369, 'barrel': 0.44114231981655994, 'double': 0.41343002377216165, 'propn': 0.11994905805571664, 'adj': 0.117045686533085, 'cconj': 0.2975983579293888}, {'soprano': 0.39865484995728045, 'spiral': 0.39865484995728045, 'stroke': 0.35060539102716487, 'note': 0.33802318339324117, 'high': 0.26446894559165207, 'lil': 0.28482230644895357, 'right': 0.23265342816732174, 'baby': 0.24846426056519513, 'intj': 0.15621369008678718, 'propn': 0.18382077904416008, 'like': 0.15283817436241465, 'adj': 0.26905708512037174, 'adp': 0.15521312527665573}, {'waist': 0.33524650387317945, 'scene': 0.2948395876622132, 'wind': 0.28425865249804455, 'stand': 0.23951968092784823, 'jam': 0.28425865249804455, 'fam': 0.2891699317991836, 'sip': 0.2636760061116162, 'plan': 0.254432671451247, 'throw': 0.23564452535927974, 'big': 0.22415539688773545, 'straight': 0.23327080112290965, 'thing': 0.21139749739178215, 'num': 0.13587944254188836, 'propn': 0.3091660543971939, 'adv': 0.0714732516344587, 'adj': 0.1508413391326338, 'adp': 0.130525585252016}, {'rhymin': 0.5167538264265982, 'vitamin': 0.5408110811166972, 'slow': 0.41383562572151017, 'rap': 0.32737358545503387, 'hold': 0.34310308854783567, 'adp': 0.21056053398915026}, {'abundance': 0.7723177845932319, 'cash': 0.5347858729220739, 'adv': 0.1646551499337377, 'adp': 0.30069584520620807}, {'mix': 0.5628485585938331, 'yo': 0.34014891050924284, 'world': 0.3322771725919227, 'man': 0.311090614071763, 'slang': 0.4745122756559237, 'propn': 0.28089139580838224, 'adp': 0.2371768394924894}, {'equivalent': 0.13256056794791551, 'york': 0.4990973864492255, 'state': 0.511593689338818, 'new': 0.40531762543593475, 'mind': 0.4348015196860513, 'propn': 0.3056200981040785, 'adj': 0.029822255197939695, 'adp': 0.1548342385036775}, {'adv': 1.0}, {'kelly': 0.7470221837965553, 'ooh': 0.5618002486740596, 'intj': 0.3063496714292598, 'propn': 0.18024487876434875}, {'know': 1.0}, {'talkin': 0.9582465982984028, 'adv': 0.28594310072029994}, {'liar': 0.5835005251954735, 'lover': 0.5835005251954735, 'thief': 0.5648488950092877}, {'smokey': 0.3985746767169939, 'message': 0.7170147690235498, 'motherfucker': 0.2937202159759013, 'motherfucking': 0.3985746767169939, 'say': 0.19633522290081648, 'propn': 0.09189190547818903, 'adv': 0.16994914389856403, 'adp': 0.07759095522857258}, {'know': 1.0}, {}, {'man': 0.7531226093632627, 'intj': 0.5778853739697849, 'adv': 0.3144118792566089}, {'sentence': 0.5523563849800069, 'round': 0.5056578309289538, 'ass': 0.4139664284226682, 'num': 0.49779493121091073, 'propn': 0.14157889882234742}, {'wake': 0.5576323167905146, 'god': 0.44815464061735355, 'trust': 0.583864458852684, 'propn': 0.1693974502204644, 'adv': 0.3132914862713423, 'adp': 0.1430344697663292}, {'wanna': 1.0}, {'hood': 0.6007257606519173, 'loc': 0.7630716761654832, 'adv': 0.17607347853299357, 'adp': 0.1607740889585967}, {}, {'enjoy': 0.20136817521909006, 'nice': 0.16178437009302818, 'push': 0.1707419629510059, 'taking': 0.20136817521909006, 'large': 0.16581224386646579, 'live': 0.12981883005409273, 'dog': 0.16813988336909252, 'cost': 0.20136817521909006, 'scripture': 0.18112535000050783, 'squeeze': 0.16813988336909252, 'picture': 0.16370663781347825, 'barrel': 0.1707419629510059, 'cover': 0.18605506908504799, 'dough': 0.15685465100848806, 'tree': 0.16370663781347825, 'thug': 0.16001605520661286, 'hustle': 0.17369195747573865, 'light': 0.13813602612311435, 'cd': 0.18605506908504799, 'car': 0.15408952904611253, 'big': 0.26928103777553114, 'life': 0.11472338225485629, 'soul': 0.13813602612311435, 'tape': 0.15685465100848806, 'corner': 0.15837885134169657, 'line': 0.14386918437707275, 'street': 0.13358831325296716, 'weak': 0.16370663781347825, 'propn': 0.04642569235949423, 'lose': 0.13464051888776557, 'adv': 0.04293091230580086, 'adj': 0.27181174023726284, 'adp': 0.3136044506706636}, {'chapter': 0.48975151350224894, 'influence': 0.46796557510975745, 'gave': 0.48975151350224894, 'rapper': 0.3499070829754718, 'true': 0.3660319233912905, 'propn': 0.11291284272558964, 'adv': 0.1044131191779556, 'adj': 0.11017978306324044, 'adp': 0.09534044678975073}, {'employee': 0.6920797170132637, 'jameson': 0.6047806803179409, 'propn': 0.333976225590359, 'adv': 0.15441777305136853, 'adp': 0.14100009262154165}, {'click': 0.8046004975902998, 'hear': 0.5938165030356112}, {'super': 0.8214995222442789, 'propn': 0.26945222427108023, 'like': 0.4480732401377794, 'adp': 0.2275179229428328}, {'propn': 0.734200756444857, 'adv': 0.6789324334834799}, {'apologize': 0.8016348183770851, 'shit': 0.4140748144783409, 'nigga': 0.43118866634022895}, {'rulers': 0.36038873944386596, 'abortion': 0.36038873944386596, 'auction': 0.36038873944386596, 'birth': 0.3443573303345286, 'bad': 0.2605256725945327, 'slave': 0.2929858642062116, 'control': 0.28954558055715485, 'sell': 0.2483682442044027, 'teach': 0.2693483936861691, 'propn': 0.08308808841835642, 'adj': 0.16215387614183452, 'cconj': 0.2061448341287436, 'adp': 0.21047177490600322}, {'lesson': 0.34454047293662715, 'memorize': 0.3917587523122811, 'depend': 0.32711361093152286, 'stab': 0.337915087492546, 'skin': 0.32711361093152286, 'good': 0.2485408353808974, 'need': 0.22862889226049, 'let': 0.21952385211738734, 'pretend': 0.36196733494173156, 'adv': 0.25056433007226364, 'adj': 0.08813427453082218, 'cconj': 0.11204434847010214, 'adp': 0.1525281839851901}, {'adj': 1.0}, {'roam': 0.233448745859809, 'shore': 0.22306409189776905, 'beggar': 0.22306409189776905, 'lynch': 0.233448745859809, 'service': 0.22306409189776905, 'pillar': 0.233448745859809, 'alpha': 0.22306409189776905, 'rape': 0.20531140869288406, 'maintain': 0.20136334648973084, 'rob': 0.20136334648973084, 'home': 0.33752104255715837, 'america': 0.18361066328484588, 'stone': 0.20136334648973084, 'black': 0.13833782236812786, 'earth': 0.17717407152595915, 'come': 0.1230418173182512, 'beat': 0.16088531292735278, 'cause': 0.2840538333239472, 'propn': 0.053821909272432945, 'adv': 0.04977036527992797, 'adj': 0.05251914790683172, 'cconj': 0.2670685719376055, 'adp': 0.2726742903594391}, {'deep': 0.5930445758718292, 'poetry': 0.7800526806094902, 'adj': 0.19953933572844992}, {'okay': 0.7243634543216446, 'intj': 0.6894182954079582}, {'roach': 0.46162333235218517, 'seven': 0.39817741867843714, 'cereal': 0.46162333235218517, 'box': 0.36682630983748976, 'bed': 0.3708800557167822, 'clock': 0.3630731273743709, 'propn': 0.10642785430433496}, {'lead': 0.620080797718802, 'head': 0.5247504707790964, 'right': 0.4841918886514623, 'intj': 0.32510761707726965}, {'lung': 0.7572962371510126, 'smoke': 0.6280512418943074, 'adp': 0.17903643973207115}, {'wish': 0.5198871893762319, 'forgiveness': 0.6470880628596933, 'feed': 0.5260643149034926, 'cconj': 0.18506940809353295}, {'fall': 0.9573736993486073, 'adv': 0.2888522109930308}, {'trash': 0.6346289027249217, 'delete': 0.613666477648568, 'talk': 0.4440855784308784, 'propn': 0.15312612143678703}, {'wanna': 0.6933404630920456, 'just': 0.5401345157335184, 'adv': 0.47700493409672956}, {'okay': 0.9029697648053129, 'intj': 0.42970408870225785}, {'carry': 0.9377573409850452, 'propn': 0.25498145311191966, 'adv': 0.23578725155867014}, {'disease': 0.619422663985041, 'grease': 0.640581716430167, 'stop': 0.45383987034752254}, {'100': 0.5411172718039793, 'bang': 0.40746689652991647, 'chopper': 0.46674564171476024, 'shot': 0.3618064779876544, 'num': 0.4386426846695865}, {'member': 0.5466917799212921, 'family': 0.4711185300711518, 'insert': 0.5466917799212921, 'num': 0.23189635552376633, 'adv': 0.12197861767319633, 'adp': 0.334138928115099}, {'acrobat': 0.33533365630056555, 'jones': 0.3098331030792831, 'blaze': 0.30162375856218177, 'johnny': 0.5686650997160011, 'love': 0.18037149675205125, 'run': 0.20453410173994, 'propn': 0.5411812469264002, 'adj': 0.07544027631643017, 'adp': 0.0652797586815213}, {'instead': 0.3933922192745611, 'art': 0.3933922192745611, 'study': 0.8204559893169964, 'adv': 0.09723355711400503, 'adp': 0.08878473175776164}, {'dangerous': 0.5945703611648999, 'happen': 0.5255503737712279, 'world': 0.39892148042709474, 'man': 0.3734855673185009, 'adv': 0.1559218879315174, 'adj': 0.16453334525736987, 'adp': 0.14237351184151628}, {'allow': 0.43903205225748404, 'mistake': 0.8490607721358426, 'make': 0.24389001808608624, 'adv': 0.09795743198535822, 'cconj': 0.13141028463355192}, {'admire': 0.4013503623209703, 'wire': 0.41227398256913134, 'struggle': 0.37257624684011253, 'desire': 0.3584932509697001, 'live': 0.2876617462886808, 'hustle': 0.38487892536815427, 'feel': 0.25878109467972826, 'soul': 0.3060915776501496, 'adj': 0.10038328007556924}, {'vocals': 0.4193992981140868, 'liar': 0.36175669255645443, 'chick': 0.3556125953982655, 'emotion': 0.38750594675617617, 'black': 0.2485290096125236, 'truth': 0.29182589268244413, 'moment': 0.3070210986181935, 'propn': 0.29007914635241516, 'adv': 0.08941430029278713, 'adj': 0.09435258985243178, 'cconj': 0.1199496394877044, 'adp': 0.24493471911641956}, {'troy': 0.507634670602215, 'life': 0.28920938622974096, 'pass': 0.7384870201223448, 'propn': 0.1170358276463013, 'adv': 0.10822573876580356, 'adp': 0.2964653398725691}, {'folk': 0.6968986279893454, 'plane': 0.676777537619928, 'adv': 0.17522636712820608, 'adp': 0.16000058481995025}, {'spill': 0.38095639659368696, 'small': 0.33290250102646163, 'thou': 0.3986916596725342, 'plate': 0.33805439469577825, 'gold': 0.29584123444738336, 'lil': 0.2848486054592364, 'beer': 0.33290250102646163, 'slang': 0.31055871202035734, 'num': 0.16159452771772298, 'kill': 0.24642033572786576, 'adj': 0.08969397615070646}, {'bizarre': 0.42646832808575225, 'talkin': 0.3046938795447475, 'motherfucke': 0.3940374101232723, 'belly': 0.36785414887941775, 'big': 0.2851489165067431, 'say': 0.2100754492095024, 'time': 0.23412907203423353, 'heart': 0.30135046293196316, 'propn': 0.09832282275605583, 'lose': 0.2851489165067431, 'adv': 0.09092139000778533, 'adj': 0.1918858301664657, 'adp': 0.16604208387479302}, {'allegiance': 0.5551331698527814, 'make': 0.6378409804282877, 'promise': 0.5182453098730977, 'adv': 0.12809311538884732}, {}, {'come': 0.9270313600105353, 'adv': 0.37498380972652334}, {'like': 0.6487961385631958, 'adj': 0.3807146537121818, 'adp': 0.6588777754897336}, {'happen': 0.8101722959863363, 'fuck': 0.5861918208370261}, {'adj': 1.0}, {'testing': 0.35950459877192553, 'intercom': 0.35950459877192553, 'thank': 0.30482731850476236, 'operation': 0.32336488230332877, 'doomsday': 0.31009397296413527, 'casualty': 0.3321659586383439, 'drink': 0.27509756322917717, 'damage': 0.31009397296413527, 'complete': 0.3321659586383439, 'propn': 0.1657684972935739, 'adv': 0.07664498318375039, 'adj': 0.08087803224878888, 'cconj': 0.10281954979603693, 'adp': 0.06998514169926717}, {'latch': 0.9318619285578095, 'adp': 0.3628131007895389}, {'view': 0.4851499721333924, 'bullet': 0.4456902582735162, 'discuss': 0.572171965857782, 'point': 0.4596976706000126, 'adv': 0.1219848392793571, 'adp': 0.1113853237029362}, {'tell': 0.9393337898728003, 'adp': 0.34300441863509895}, {'avenue': 0.5956898833387696, 'control': 0.500873243894043, 'sell': 0.4296422273672759, 'dream': 0.43820285412164844, 'adv': 0.13291114152481284}, {'beatbox': 0.4511295269454015, 'instead': 0.3891258910450827, 'pill': 0.35481960446926725, 'wanna': 0.2795980940663242, 'krill': 0.38251695379377054, 'make': 0.23946231169463286, 'hear': 0.2928159685689485, 'fake': 0.32814277603210945, 'adv': 0.09617906175481096, 'adj': 0.10149096438073259, 'cconj': 0.1290245938958141, 'adp': 0.08782186368644261}, {'graphic': 0.3078478154582768, 'person': 0.5220540956319117, 'stroke': 0.2707432349742481, 'trophy': 0.29415361879540863, 'intelligence': 0.29415361879540863, 'mic': 0.19846454482700715, 'rate': 0.2707432349742481, 'dope': 0.24733285115308773, 'hard': 0.20502197872665567, 'tell': 0.16411856180889628, 'num': 0.24954884879594583, 'propn': 0.07097471066844825, 'like': 0.11802414570183328, 'adj': 0.069256765091201, 'adp': 0.2397162435223883}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'crazy': 0.7065464587330159, 'think': 0.6081448402844359, 'adj': 0.2237288670183845, 'cconj': 0.28442459273052084}, {'sugar': 0.9689155276841114, 'adv': 0.24739179495815924}, {'monkey': 0.4422425800683729, 'mouth': 0.3795010397805668, 'sittin': 0.4697970349020605, 'throne': 0.3997123863708106, 'motherfucker': 0.36232332092215525, 'want': 0.2875451900248446, 'propn': 0.11335474559726572, 'adv': 0.20964351398358322, 'adp': 0.09571357721677985}, {'matter': 0.9656011204395729, 'adp': 0.2600278373671586}, {'imagine': 0.6708702664632394, 'rule': 0.5830599954375071, 'world': 0.4315674971057889, 'adp': 0.1540247471603219}, {'best': 0.2854893735381638, 'duel': 0.26377924445557854, 'gamble': 0.2854893735381638, 'harm': 0.2854893735381638, 'mc': 0.19864885720782288, 'powerful': 0.2567901439602632, 'iron': 0.22936950397386519, 'bet': 0.22936950397386519, 'mic': 0.18405041623522023, 'pipe': 0.23838002165732225, 'set': 0.21038466654517132, 'strike': 0.21846015671693358, 'bomb': 0.22936950397386519, 'propn': 0.2632797722553135, 'like': 0.10945226091221054, 'adv': 0.060865224836397155, 'adj': 0.19268030649884368, 'cconj': 0.08165094120915296, 'adp': 0.33345911561001745}, {'hallelujah': 0.5486177346001636, 'berry': 0.5486177346001636, 'halle': 0.5486177346001636, 'propn': 0.26474591841012507, 'cconj': 0.16421127407012226}, {'watchin': 0.4142553238545552, 'listen': 0.3563697060215017, 'pistol': 0.4588992447746447, 'wave': 0.44374134541821814, 'say': 0.23657439643204964, 'quit': 0.44374134541821814, 'adv': 0.10239022715312061, 'adj': 0.1080451681201047, 'cconj': 0.1373568969825257}, {'white': 0.5582440792160669, 'fuck': 0.39649025469045285, 'blue': 0.5787516256470312, 'propn': 0.17581307026792367, 'adj': 0.34311501640037945, 'cconj': 0.21809959103619964}, {'syrup': 0.4201749732036759, 'counterfeit': 0.4397360404427246, 'crime': 0.34943369997400486, 'sandwich': 0.4201749732036759, 'ayy': 0.31599383465796615, 'remember': 0.3337341753325498, 'nigga': 0.23652814532694133, 'propn': 0.20276342188396274, 'cconj': 0.12576601763054732, 'adp': 0.08560388157978145}, {'contemplatin': 0.6301589676652041, 'gettin': 0.49562873255864287, 'stage': 0.5261747801604474, 'adj': 0.2835347168452963}, {}, {'lotta': 0.6948611660997156, 'say': 0.3422839681011079, 'day': 0.43557647598818977, 'thing': 0.43816090503894756, 'adp': 0.13526936049476826}, {'meal': 0.5278966391150886, 'baller': 0.48775257338186984, 'big': 0.3529667850057812, 'deal': 0.4074644419154324, 'food': 0.37505393285431426, 'propn': 0.1217072506045367, 'adv': 0.11254551170123714, 'adj': 0.11876132196423952, 'adp': 0.10276619886711025}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'def': 0.5375097445369871, 'mos': 0.5293181839670731, 'mighty': 0.5701975011021844, 'propn': 0.2923037970140366, 'adj': 0.14261428623242484}, {'big': 0.8232246319831564, 'propn': 0.5677157786218353}, {'hell': 1.0}, {'spock': 0.6032894160254398, 'shocks': 0.619709245429073, 'propn': 0.46390185855360616, 'cconj': 0.19182647698355584}, {'anybody': 0.18146288692076054, 'nas': 0.9344172199820061, 'propn': 0.3064892814952629}, {'jersey': 0.7208433055828042, 'car': 0.5515986096236285, 'propn': 0.1661913532661121, 'adv': 0.15368099107283958, 'adj': 0.32433737045036326, 'adp': 0.140327331156578}, {'whisper': 0.6882038404237498, 'start': 0.4765417796809906, 'shit': 0.3554834084223852, 'cconj': 0.3936573233388048, 'adp': 0.13397337184159885}, {}, {'herb': 0.44999065371352, 'slide': 0.44999065371352, 'try': 0.3366922376712874, 'catch': 0.34689329745829856, 'num': 0.4302031170437188, 'like': 0.2034645946568501, 'cconj': 0.30356751917250246, 'adp': 0.20662622902674355}, {'flash': 0.8998213243443915, 'adv': 0.4362586208375775}, {'fail': 0.9730407526422572, 'adv': 0.23063324499601015}, {'sit': 1.0}, {'fresh': 0.39852763788785667, 'crispy': 0.4839858706723773, 'press': 0.41037615556303303, 'lace': 0.40412209008997124, 'shoe': 0.39852763788785667, 'propn': 0.22316713267854665, 'adj': 0.21776536372505242, 'cconj': 0.13842162103118805}, {'eh': 0.24710175456030214, 'nugget': 0.25860547168792347, 'shocking': 0.24710175456030214, 'hoo': 0.23893973736574164, 'uh': 0.37166721463142266, 'oh': 0.15940375712024377, 'wee': 0.23893973736574164, 'house': 0.20339677564266917, 'ah': 0.4155405718318769, 'rock': 0.16728062962939413, 'intj': 0.5066753234450012, 'propn': 0.17886547451705634, 'adp': 0.050343001569688135}, {'thankful': 0.42084867607119714, 'dwellin': 0.46788331916868237, 'past': 0.3967226512331199, 'yo': 0.2612556915724346, 'make': 0.24835532706120172, 'propn': 0.10787110233397512, 'adv': 0.1995018102808282, 'adj': 0.31578023456998006, 'cconj': 0.13381623600458986, 'young': 0.3382336990059308, 'adp': 0.18216668439069103}, {'listen': 0.9281779023708023, 'adj': 0.2814075826663244, 'adp': 0.2435067842349227}, {'window': 0.5067795921365191, 'ugly': 0.5218465194559686, 'yo': 0.3436541193485431, 'hand': 0.41843934933218074, 'check': 0.39810836274631595, 'adj': 0.13845845522148853}, {'man': 0.7832791295663185, 'num': 0.621670173955475}, {'killah': 0.5605785484583755, 'hill': 0.4874516335190286, '10304': 0.6067164948804986, 'num': 0.24590949690117272, 'propn': 0.13987926994971536}, {}, {'web': 0.5181594514553103, 'spider': 0.560806129739927, 'try': 0.3557884109789675, 'label': 0.41327286245227124, 'like': 0.21500449586876166, 'cconj': 0.16039247892708766, 'adp': 0.21834544865205419}, {'num': 1.0}, {'love': 1.0}, {'alright': 0.8916749155877435, 'intj': 0.4526763136188932}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'bench': 0.4055970499975992, 'bum': 0.39219977525127386, 'blunt': 0.35443497880721275, 'deal': 0.32764042931456216, 'set': 0.31281012691362786, 'park': 0.35992010228291804, 'sleep': 0.29836629747024174, 'nigga': 0.2283218280578248, 'propn': 0.09786428393926348, 'adj': 0.0954954752159802, 'adp': 0.24790159375060628}, {'tally': 0.5042873955159012, 'alamo': 0.5042873955159012, 'ho': 0.3654465651874622, 'remember': 0.40054250920727197, 'propn': 0.3650302056835862, 'like': 0.20233675617420532, 'adv': 0.11251729342610939, 'adp': 0.10274043253640873}, {'jay': 0.680427100853769, 'fuck': 0.44033660416884884, 'propn': 0.5857667073611998}, {'hook': 0.9281253876653741, 'cconj': 0.3077435965679447, 'adp': 0.20946871733608644}, {'pain': 0.9300441751019765, 'adj': 0.27786175091572146, 'adp': 0.2404385155022666}, {'dough': 0.5388363342816632, 'try': 0.4388633890716356, 'color': 0.5696079847781419, 'hold': 0.4388633890716356}, {'legend': 0.49769558372261347, 'heaven': 0.4598481667328314, 'presence': 0.49769558372261347, 'hell': 0.359785039057411, 'rap': 0.3012741295388697, 'propn': 0.22948871670953574, 'cconj': 0.14234264604303334}, {'villain': 0.7197784941198987, 'super': 0.6611647180428776, 'adj': 0.21161317307240907}, {'africa': 0.48672922099951443, 'south': 0.4632957170631001, 'representative': 0.5267890605747435, 'mind': 0.3455758943064902, 'propn': 0.2429037938887921, 'adv': 0.22461876052244764, 'adp': 0.2051011707549056}, {'doom': 0.6118128245394928, 'long': 0.6413055090087344, 'propn': 0.22023763785107506, 'adv': 0.40731768279542513}, {}, {'tech': 0.5228322374022678, 'state': 0.4035554122595338, 'note': 0.44331435397377844, 'house': 0.41121477668498163, 'day': 0.3277394602132934, 'propn': 0.1205396462616533, 'adv': 0.11146580093970343, 'cconj': 0.14953181531527573, 'adp': 0.20356061282407178}, {'cetera': 0.6776875809676505, 'et': 0.6776875809676505, 'america': 0.26650532172080355, 'propn': 0.07812087266427023, 'adp': 0.06596308022744321}, {'expand': 0.5859072902260319, 'universe': 0.5598439912332513, 'length': 0.5859072902260319}, {}, {'wacko': 0.33223478021739183, 'basket': 0.33223478021739183, 'kind': 0.29883640145094825, 'waitin': 0.3069698820012076, 'type': 0.24830660501857985, 'chance': 0.26130724385490267, 'case': 0.25214694770301416, 'pipe': 0.2774118459191984, 'place': 0.22491132396051108, 'let': 0.1861693155040433, 'heat': 0.24830660501857985, 'crack': 0.23005357444566646, 'tell': 0.1771196402060001, 'propn': 0.07659715682835751, 'like': 0.1273737351334509, 'adv': 0.07083116385660976, 'adp': 0.2587059887452523}, {'know': 0.7108062224970315, 'num': 0.6340463591432246, 'adp': 0.3045319827484817}, {'come': 1.0}, {'lock': 0.3438673553926934, 'cold': 0.6627020089989446, 'deep': 0.31995532541231436, 'block': 0.3381344969209019, 'world': 0.2610141317176875, 'adj': 0.322962264691641, 'cconj': 0.1368597204679573, 'adp': 0.18630983988691355}, {'fuck': 0.925237643553205, 'adv': 0.3793880637976273}, {'surprise': 0.5817234179338856, 'analyze': 0.5663100618269271, 'way': 0.3756658966071572, 'adv': 0.26845726014736543, 'adj': 0.2832839677395008, 'cconj': 0.18006824113754752, 'adp': 0.12256522613207171}, {'sure': 0.201953611313367, 'mr': 0.20573377641795, 'lab': 0.23829477036708852, 'shit': 0.1451668054088217, 'real': 0.18179126878291935, 'make': 0.14917669925712454, 'nigga': 0.7558329924020952, 'send': 0.20573377641795, 'propn': 0.3887620655894631, 'adj': 0.12645068832415704, 'adp': 0.05470996940871123}, {'lame': 0.29206247230882604, 'mexican': 0.29206247230882604, 'nigga': 0.1644100655688539, 'witness': 0.24849238948529523, 'star': 0.22375778783554803, 'court': 0.23809167148976906, 'sit': 0.19216736298767634, 'business': 0.23592744033641913, 'snitch': 0.47185488067283826, 'rap': 0.37005449731365764, 'tell': 0.32590367652089747, 'propn': 0.21141044826290092, 'adv': 0.06516537828971164, 'adj': 0.06876441676794862, 'cconj': 0.08741961417061311, 'adp': 0.11900604694655915}, {'friend': 0.9156174090897209, 'cconj': 0.4020506935348164}, {'poster': 0.4896944648594871, 'thug': 0.38913287284881676, 'lung': 0.4032282556019412, 'nut': 0.44046722499463475, 'propn': 0.3386990702623963, 'adj': 0.1101669487852234, 'young': 0.3540010157370889}, {'umi': 0.36813919655005173, 'light': 0.5285913596596246, 'shine': 0.5848069923415615, 'say': 0.18978525072443145, 'world': 0.42030403249134324, 'propn': 0.08882628426552867, 'adp': 0.1500048608134037}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'outfit': 0.6759932324694787, 'cool': 0.5217748793940228, 'let': 0.37879597461729114, 'just': 0.32638537180389793, 'adv': 0.14411912980234826}, {'shut': 0.8022811751643565, 'nigga': 0.548669744641917, 'propn': 0.2351731857407909}, {'son': 0.30404946995143733, 'killa': 0.3937937155947493, 'number': 0.3437801852351025, 'deep': 0.30525644925053114, 'brother': 0.31612860626326916, 'bee': 0.3937937155947493, 'wu': 0.3243580888742263, 'hold': 0.28964027551396476, 'num': 0.18504161279352116, 'propn': 0.2105122903673609, 'adj': 0.10270841617720232, 'adp': 0.08887534550491549}, {'nazareth': 0.48635669591905056, 'miraculous': 0.48635669591905056, 'jesus': 0.4374649900739497, 'black': 0.2882068436898059, 'propn': 0.3363904894676329, 'adv': 0.10368935726374094, 'adj': 0.21883209656469726, 'adp': 0.2840387221461621}, {'script': 0.7507609867685776, 'flip': 0.660573947977266}, {'poison': 0.8551533738032583, 'tell': 0.5183750642854117}, {}, {'struggle': 0.4252381998296459, 'dangerous': 0.4140261939587132, 'hide': 0.4091646367323385, 'try': 0.32309587216673125, 'need': 0.29721092404879773, 'world': 0.27778704257307957, 'propn': 0.11741400939038145, 'like': 0.19524825140128713, 'adv': 0.32572635653413823, 'adj': 0.11457199881732892, 'adp': 0.19828221209274308}, {'humble': 0.9587640174501934, 'adj': 0.2842033758468841}, {'rich': 0.7281531434192395, 'say': 0.4604735401882142, 'know': 0.4247524272954902, 'adj': 0.21030146040670739, 'adp': 0.1819774430323957}, {'wake': 0.3945132132554804, 'drank': 0.8024606530984687, 'pass': 0.37810683467581774, 'propn': 0.2396903134610346}, {'faded': 0.341160306825871, 'drank': 0.8267656980802334, 'fade': 0.30274000397282474, 'propn': 0.3292667847185863}, {'eat': 0.9644506212181451, 'adp': 0.2642631249946425}, {'mile': 0.8067999856907732, 'num': 0.371820938862735, 'propn': 0.4230014874215221, 'adp': 0.17858531337089953}, {'midnight': 0.45834547875925685, 'black': 0.2939623219978379, 'burn': 0.3680983194562937, 'propn': 0.4574775908204999, 'hop': 0.34349954800830435, 'hip': 0.3524415529430043, 'adj': 0.11160108207397304, 'cconj': 0.14187749994088544, 'adp': 0.2897109632457276}, {'nas': 0.8214995222442789, 'propn': 0.26945222427108023, 'like': 0.4480732401377794, 'adp': 0.2275179229428328}, {'depend': 0.561356880790014, 'ones': 0.6722938571524208, 'friend': 0.437888577602695, 'propn': 0.15499821535045188, 'adp': 0.13087615851670528}, {'large': 0.5694307546767895, 'wife': 0.6220188710849822, 'niggas': 0.39103517115415953, 'adj': 0.3111510560863929, 'cconj': 0.19778183652485823}, {'whoa': 0.6786388222055313, 'common': 0.5810561441268955, 'propn': 0.17790359215806603, 'adv': 0.16451156947071321, 'adj': 0.34719485785658327, 'adp': 0.1502168181441739}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'tryna': 0.493468716351073, 'away': 0.49799544867016104, 'run': 0.38994862284081994, 'man': 0.32648620042040744, 'num': 0.2591243981207494, 'adv': 0.40890210391765264, 'adp': 0.12445725079921706}, {'wham': 0.9048147473433668, 'adj': 0.21303338937128197, 'adp': 0.36868285558585867}, {'ass': 0.6373832566635619, 'bitch': 0.5124925341790525, 'niggas': 0.5346470409871504, 'adj': 0.21271231299426205}, {'represent': 0.9543467813619425, 'propn': 0.2899113027008301, 'cconj': 0.0719281410187157}, {'pussy': 0.3562136549777782, 'drug': 0.33253987513565547, 'sellin': 0.8373426724131486, 'niggas': 0.24776261301524422}, {}, {'cobra': 0.4577995957286909, 'snake': 0.3822568812002747, 'feel': 0.2655049939571613, 'life': 0.2608173707675445, 'world': 0.24970947712216907, 'strike': 0.35031416472133364, 'like': 0.35102673123140204, 'adj': 0.10299153499929863, 'hot': 0.33970110546362936, 'adp': 0.2673609991615078}, {'nod': 0.6194141947593179, 'beginnin': 0.30970709737965896, 'god': 0.4089018399613883, 'feel': 0.19440067789519114, 'people': 0.21011974337117537, 'rap': 0.4058154100645888, 'propn': 0.15456032985510806, 'like': 0.12850951218214746, 'adv': 0.07146275725501734, 'adj': 0.15081919117920925, 'adp': 0.19575963037485777}, {'vehicular': 0.6074076723615415, 'vernacular': 0.5803879577422534, 'master': 0.4938052783972984, 'propn': 0.14003862180889468, 'adv': 0.12949695495652408, 'adp': 0.11824469607525973}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'swear': 0.6966638742239896, 'feel': 0.5028921451320213, 'world': 0.47297390809162926, 'adj': 0.19507593131974657}, {'die': 0.885516188934791, 'adv': 0.27767490119250265, 'cconj': 0.3725019844002676}, {'inch': 0.4198343106355687, 'performance': 0.43937951847359263, 'push': 0.37255401149176676, 'start': 0.30424517474337065, 'car': 0.33621888364654134, 'need': 0.2564201871627614, 'foot': 0.3491503918542739, 'num': 0.17808580654759057, 'propn': 0.20259902868488536, 'adv': 0.09367400561698377, 'adj': 0.09884755573630133, 'adp': 0.08553447706975896}, {'whip': 0.4569202357465533, 'math': 0.517197086973863, 'motherfucker': 0.4237325272809845, 'new': 0.3516242316468727, 'ass': 0.38761610566505494, 'propn': 0.2651338738504337}, {}, {'shifty': 0.46337691282533766, 'swift': 0.4075265702436515, 'num': 0.7512489570994187, 'propn': 0.10683214454277813, 'adj': 0.1042462684117368, 'adp': 0.18041215058182847}, {'mile': 0.3414769609935613, 'area': 0.3710034853541906, 'remote': 0.3710034853541906, 'dead': 0.28068498632777533, 'south': 0.3414769609935613, 'island': 0.2881120518591243, 'label': 0.2861304029201632, 'man': 0.19828318776688006, 'num': 0.31474538048711204, 'propn': 0.2685521783260539, 'adv': 0.08277880509188824, 'adj': 0.08735062087086948, 'adp': 0.1511719662110921}, {'white': 0.4465904968257162, 'wild': 0.5093881791446133, 'hide': 0.49013383406982114, 'bitch': 0.3306663446017857, 'like': 0.23388574051511543, 'adv': 0.13006134422291887, 'adj': 0.27448908344498757, 'cconj': 0.1744778105933893, 'adp': 0.11876004438824048}, {'honest': 0.8234015554920169, 'adv': 0.3903305635703527, 'adj': 0.41188824886876546}, {'bloom': 0.46842550982942266, 'flower': 0.46842550982942266, 'room': 0.3722316208084938, 'dark': 0.3684231339198198, 'trust': 0.3722316208084938, 'tell': 0.2497250820940881, 'adj': 0.1053820552492414, 'adp': 0.27356667307970767}, {'boo': 0.7742497733528462, 'baby': 0.5935707729168057, 'propn': 0.21957009359658322}, {'buh': 0.9047672452246248, 'simon': 0.15914331599605175, 'sky': 0.13967146343526618, 'wall': 0.14711004214875006, 'point': 0.1453826541261655, 'hand': 0.12302858462345027, 'say': 0.08913646006199497, 'fuck': 0.18816800254617722, 'hold': 0.11480106347395683, 'propn': 0.12515715277663225, 'adv': 0.038578572030697984, 'adp': 0.07045279985647382}, {'motrin': 0.9744377054874274, 'propn': 0.2246578690462405}, {'care': 0.9175950403035509, 'adv': 0.23757710099643922, 'cconj': 0.31871062594844957}, {'bible': 0.6252662326903963, 'stand': 0.44672671248979096, 'throw': 0.43949918320774173, 'hand': 0.4251127570474668, 'propn': 0.14415593591232148, 'adp': 0.12172124096350113}, {'pump': 0.43303355104815056, 'chillin': 0.5020334691972642, 'bench': 0.4797011844990769, 'loose': 0.4191916069476629, 'crack': 0.34762945048864907, 'adv': 0.10703158439626903, 'adj': 0.11294286429272378, 'adp': 0.09773138813680449}, {'pace': 0.4293045043389427, 'keepin': 0.39665790846244925, 'lookin': 0.3258172438580626, 'boy': 0.5974362416659378, 'cause': 0.2611827912623372, 'intj': 0.1682238176729866, 'adv': 0.18305210352338946, 'adj': 0.193161943769754, 'adp': 0.16714632675592261}, {'loot': 0.6846443487322136, 'lot': 0.5579165565144388, 'like': 0.30430629895071504, 'adj': 0.178567442593021, 'adp': 0.30903491158899876}, {'aw': 0.5498926588176415, 'hell': 0.48276021599037083, 'card': 0.5365347898991003, 'say': 0.3289581701418715, 'intj': 0.2616822102479172}, {'approach': 0.3997904388220795, 'bail': 0.7610851785257065, 'hood': 0.31473375695139066, 'gods': 0.3805425892628532, 'propn': 0.09975835655698698, 'adp': 0.08423316653419886}, {'dog': 0.7164893169149195, 'tear': 0.6975980638926632}, {'wack': 0.31820079791670014, 'sweatshirt': 0.3524930096056685, 'hurt': 0.31820079791670014, 'phony': 0.34084981423263955, 'sign': 0.2999078571832273, 'pressure': 0.3244396520337387, 'shit': 0.19055249213687972, 'mad': 0.26833293688987936, 'play': 0.25192277469097857, 'rhyme': 0.2333243801313974, 'propn': 0.08505110177418415, 'like': 0.1414318358378343, 'adj': 0.2489773098409145, 'adp': 0.2154443156519758}, {'humble': 0.9587640174501934, 'adj': 0.2842033758468841}, {'rza': 1.0}, {'standing': 0.3488308148234526, 'glory': 0.32230386594285554, 'blaze': 0.31376409582655046, 'lover': 0.3008872031969351, 'use': 0.23716686057815636, 'type': 0.2607101980653565, 'story': 0.27719638846519, 'friends': 0.3067865955891592, 'similar': 0.3067865955891592, 'propn': 0.08042339399900378, 'adv': 0.22310812179411835, 'adj': 0.1569534853631235, 'adp': 0.3395363242624063}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'food': 0.9533464367514751, 'adj': 0.3018784052118761}, {'momma': 0.7317865167862608, 'kid': 0.594884009365925, 'propn': 0.20752790573985935, 'adv': 0.19190585793175383, 'adp': 0.17523076008868718}, {'niggas': 0.9259897046974679, 'propn': 0.3775487608167934}, {'opposite': 0.18844560428013257, 'false': 0.2142715315338224, 'stray': 0.2047399501980575, 'wrong': 0.17891402294436767, 'shall': 0.19273157787710424, 'course': 0.18844560428013257, 'reveal': 0.1979771856158975, 'create': 0.1979771856158975, 'state': 0.16538849378004772, 'speak': 0.16014288604125448, 'unless': 0.1848218652373516, 'away': 0.16690565062341445, 'feeling': 0.16690565062341445, 'life': 0.12207467635708993, 'word': 0.14107972336972469, 'truth': 0.29818829572424566, 'right': 0.37514411056593056, 'true': 0.16014288604125448, 'adv': 0.31977300404742764, 'adj': 0.24102417460846115, 'cconj': 0.12256478766432635, 'adp': 0.2919872647920972}, {'coroner': 0.36875387908604795, 'pre': 0.36875387908604795, 'obviously': 0.35235035797324593, 'sheet': 0.36875387908604795, 'body': 0.264986131634979, 'peace': 0.27560035630037044, 'just': 0.17804301307863094, 'propn': 0.17003336429098279, 'like': 0.14137459929211857, 'adv': 0.2358506813935644, 'adp': 0.43071425347241227}, {'leg': 0.09520181543252099, 'kunta': 0.10220882071741696, 'talkin': 0.08465964622922274, 'cut': 0.08056356294115843, 'wanna': 0.07343996410160623, 'game': 0.07745355444702227, 'king': 0.08166281695112738, 'world': 0.06463371558155484, 'run': 0.07227499759685894, 'funk': 0.9605419217457444, 'everybody': 0.07745355444702227, 'propn': 0.08195742628526079, 'adv': 0.02526264303119306, 'adj': 0.05331576243856895, 'adp': 0.023067519605260853}, {'dead': 0.954831295652993, 'adj': 0.2971484424351353}, {'spectacular': 0.8824213220683673, 'adj': 0.39703803727162584, 'cconj': 0.252375528367173}, {'muscular': 0.9390763238906117, 'adv': 0.200207422377137, 'adj': 0.2112647389411647, 'adp': 0.18281098438912013}, {'hollow': 0.27062086593376056, 'chest': 0.26460278680548555, 'rip': 0.25121917409803624, 'tip': 0.2595145734027982, 'threat': 0.27062086593376056, 'bet': 0.24172334976302615, 'double': 0.717243888111685, 'point': 0.24172334976302615, 'adj': 0.1353720476155771, 'adp': 0.058569871639266906}, {'day': 0.5230646812670936, 'lot': 0.5865190427338023, 'thing': 0.5261682087352039, 'adp': 0.3248780814982211}, {'bulletproof': 0.5013384483788248, 'wear': 0.4448794329740172, 'deuce': 0.5013384483788248, 'pack': 0.3921354182667532, 'black': 0.31091543523700754, 'adv': 0.1118593203074653, 'adj': 0.11803723269747998, 'cconj': 0.15005972311234958}, {'tune': 0.4456092609624343, 'loud': 0.3632642459510554, 'room': 0.3705858338338155, 'dark': 0.3667941858104184, 'lookin': 0.353935975991023, 'make': 0.24754377307221534, 'soon': 0.3705858338338155, 'propn': 0.10751861050530609, 'adv': 0.09942494778757761, 'adj': 0.20983223687894811, 'adp': 0.09078570795265166}, {'feet': 0.3488538727294201, 'skeet': 0.3223251704031213, 'treat': 0.313784835803382, 'beach': 0.313784835803382, 'cake': 0.29128857829576354, 'jamaica': 0.313784835803382, 'til': 0.24650664332916278, 'sweet': 0.28360834342670405, 'make': 0.18517376899056842, 'trade': 0.313784835803382, 'meet': 0.25707964110040527, 'propn': 0.08042871002894614, 'adj': 0.07848193003679671, 'adp': 0.20373526067850542}, {'rapper': 0.6858967621325549, 'livin': 0.35618314593047384, 'life': 0.27347203214575694, 'dream': 0.3373998669589091, 'like': 0.3680582824864496, 'adp': 0.2803331524355505}, {'empire': 0.7231031417827211, 'bad': 0.5227325711088324, 'time': 0.3969801657500468, 'adj': 0.16267708235188938, 'adp': 0.14076725586744004}, {'tree': 0.25002305329041274, 'rappin': 0.30754211726685765, 'lean': 0.27662600393160836, 'damage': 0.26527326026664805, 'rapper': 0.21972604918647684, 'half': 0.22232275369018464, 'ace': 0.27662600393160836, 'tat': 0.2704743822713392, 'bring': 0.21194806419963477, 'masta': 0.30754211726685765, 'brain': 0.22820552527112958, 'need': 0.17948038985512962, 'face': 0.1963389122803023, 'num': 0.12465052124206766, 'propn': 0.3545211577818645, 'like': 0.11790694568912205, 'adv': 0.06556678408769787, 'adj': 0.06918799192872005, 'cconj': 0.0879581016452012, 'adp': 0.11973910057861813}, {'invisible': 0.2504918718239174, 'character': 0.5009837436478348, 'skit': 0.27110839486635663, 'outro': 0.27110839486635663, 'dr': 0.2384319789488368, 'fantastic': 0.25904850199127605, 'woman': 0.21781545590639764, 'doom': 0.17363511387203479, 'mr': 0.19846479860784508, 'num': 0.21976699018345122, 'propn': 0.5000351191521766}, {'munch': 0.6114263536659365, 'bit': 0.48089527289152595, 'little': 0.41754106580658695, 'man': 0.31224117749328983, 'just': 0.2952109698538565, 'adv': 0.13035372219134775, 'adj': 0.13755306752258084}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'prince': 0.5771032845791011, 'ask': 0.43931600065811854, 'say': 0.29751162762383726, 'right': 0.3524746036597048, 'just': 0.29161090749293217, 'propn': 0.2784921621331567, 'adv': 0.25752814837550597, 'adj': 0.13587562436637676, 'adp': 0.11757549683585032}, {'willing': 0.6496940935253779, 'god': 0.4288908980489213, 'come': 0.370611966599435, 'propn': 0.1621159706215907, 'adv': 0.29982478082319847, 'adj': 0.15819194737292225, 'cconj': 0.2011080680129405, 'adp': 0.27377238403924603}, {'dome': 0.7488564790755412, 'nigga': 0.4580024686128669, 'just': 0.41111695858255426, 'adv': 0.18153331440817397, 'adp': 0.16575950837558803}, {'cater': 0.55797476405247, 'away': 0.434631424711329, 'motherfucker': 0.41118635422732164, 'make': 0.2961764169416528, 'propn': 0.12864180107942685, 'adv': 0.4758322041370041}, {'drink': 1.0}, {'dead': 0.9190862939855258, 'adv': 0.27105427400241794, 'adj': 0.28602441286186364}, {'sane': 0.5539684810074252, 'hell': 0.40046481844394805, 'life': 0.3156066629426952, 'parallel': 0.5293259370522152, 'propn': 0.25543629471861945, 'adv': 0.11810392706013295, 'adj': 0.24925344946786232, 'adp': 0.10784163199210804}, {'tell': 0.9178478229356872, 'propn': 0.3969324551258303}, {'asian': 0.5470357388515539, 'bang': 0.41192356336675584, 'lick': 0.44472460195740987, 'lie': 0.38254313131060297, 'ass': 0.368765129602652, 'adj': 0.12306706028020653, 'cconj': 0.15645409984516603, 'adp': 0.10649202772056171}, {'sir': 0.4907103993157422, 'yes': 0.7592118493391317, 'intj': 0.4275519521958011}, {'tony': 0.7269641773869097, 'bullet': 0.3147756852902606, 'head': 0.5111782171565958, 'num': 0.16378876596502617, 'propn': 0.27950103551747035, 'adp': 0.07866761938142337}, {'city': 1.0}, {'status': 0.8104689059264881, 'right': 0.47298651805445696, 'adv': 0.34557764144261743}, {'friend': 0.6830586853140478, 'just': 0.5063395859097312, 'know': 0.47651135182898213, 'adv': 0.22357993589748346}, {'fat': 0.5874592279519042, 'come': 0.4011419707776558, 'make': 0.4039920599665464, 'beat': 0.5245196544027723, 'adv': 0.16226176473868328, 'adj': 0.17122336904710722}, {'world': 1.0}, {'fix': 0.3872247277387509, 'plumbing': 0.4305015108279576, 'uhh': 0.4305015108279576, 'need': 0.25123901624693273, 'leave': 0.2739711609594882, 'super': 0.3025992009267387, 'num': 0.17448744320648363, 'adv': 0.3671249955711516, 'adj': 0.29055079012759694}, {'feeling': 0.5035845619579856, 'need': 0.37729256396220134, 'come': 0.34074307111651914, 'money': 0.41405728682387727, 'know': 0.29375519006313866, 'num': 0.26203260866886524, 'adv': 0.13783043428405264, 'adp': 0.37756218632269345}, {'alright': 0.3079664837126105, 'song': 0.283470234508711, 'justice': 0.32055928736504474, 'poetic': 0.3383078472624467, 'just': 0.577925994097777, 'know': 0.3625870915726184, 'want': 0.23334397484557404, 'propn': 0.09198779121636297, 'adv': 0.255189719132302, 'adj': 0.08976122322344621, 'adp': 0.07767191846444192}, {'fry': 0.5459708433832193, 'taste': 0.4835645765492538, 'lace': 0.5183556303855874, 'crack': 0.4298647204812403, 'adp': 0.12085073857987999}, {}, {'crowd': 0.63203640723463, 'rise': 0.6744019322836197, 'like': 0.30493281283846463, 'adv': 0.16956985683735312, 'adp': 0.15483558043499743}, {'rod': 0.4946080127903847, 'loaded': 0.47260603954883706, 'fella': 0.41938276941350805, 'gear': 0.4448868314580683, 'maybe': 0.367014060920309, 'adv': 0.10544850595059382, 'adj': 0.11127235352654974}, {'mos': 0.755465167829709, 'yo': 0.5051992954962465, 'propn': 0.4171882692815388}, {'step': 0.5134126243926126, 'skill': 0.5187199057993891, 'weak': 0.5306835719434284, 'adj': 0.29370836176196863, 'cconj': 0.1866944625630984, 'adp': 0.254150858331235}, {'sorry': 0.905270666917371, 'intj': 0.42483528528004605}, {'breathe': 0.9629666372688094, 'propn': 0.26962057693581415}, {'excellent': 0.48038160159715754, 'dollar': 0.6945374600286695, 'right': 0.2803488442497655, 'money': 0.3076670279298085, 'know': 0.2182760432957318, 'adv': 0.10241549037751134, 'adj': 0.2161436532295832, 'adp': 0.09351639609713777}, {'fuckin': 0.6635388114057817, 'shit': 0.5062934945366386, 'fuck': 0.5096229964674847, 'adv': 0.20896780761539122}, {}, {'rumplestiltskin': 0.6016663573141398, 'brown': 0.48339422313544855, 'timbs': 0.5559124501894926, 'propn': 0.2774299084483704, 'adj': 0.13535735346945002}, {'pizza': 0.37696019464971076, 'fart': 0.3601916266092927, 'guy': 0.29096202543504124, 'speak': 0.28173361650868134, 'eat': 0.2678183437005725, 'die': 0.25629176703683787, 'old': 0.24065632131378698, 'probably': 0.2884548106944271, 'study': 0.339065729318461, 'rhyme': 0.23842029690503538, 'adv': 0.24109934514245165, 'adj': 0.08480503137800166, 'adp': 0.2201497232107469}, {'propn': 1.0}, {'forever': 0.4151052428944179, 'hardly': 0.504118292692807, 'deep': 0.33706790278615667, 'sleep': 0.35434438371194804, 'flow': 0.37407097540049566, 'adv': 0.42990424265002175, 'adp': 0.09813724293880685}, {'liar': 0.729286166441478, 'room': 0.33593235163757934, 'inside': 0.28618398853254656, 'lie': 0.29562680713783773, 'good': 0.2681996154479126, 'tell': 0.22537240094901767, 'adj': 0.19021082391327657, 'adp': 0.16459267237556163}, {'lifestyle': 0.6679977207230926, 'know': 0.6070503071942241, 'adv': 0.28482903554781025, 'cconj': 0.19104964204672312, 'adp': 0.2600796501590896}, {'run': 0.76503937702066, 'adv': 0.5348161142607689, 'cconj': 0.35872897225461536}, {}, {'high': 0.9124495611339679, 'adj': 0.30942639747847583, 'adp': 0.2677519429059697}, {'sunroof': 0.463593415828634, 'spittin': 0.463593415828634, 'uncouth': 0.463593415828634, 'tooth': 0.4169900214298209, 'miss': 0.341634243659882, 'propn': 0.10688205958925956, 'adv': 0.09883631442173871, 'adj': 0.10429497526261541, 'adp': 0.18049644432057768}, {'funk': 0.7833025892711079, 'want': 0.621640614536388}, {'drink': 1.0}, {'record': 0.5545097018629217, 'million': 0.5731631348372722, 'wait': 0.5096618282743259, 'num': 0.28575398377851546, 'adv': 0.15030799366029715}, {'pushin': 0.6460601793236305, 'hood': 0.5224517222952838, 'shit': 0.3710110240601112, 'adv': 0.30626251822547196, 'adp': 0.2796507330923163}, {}, {'report': 0.42211651319004545, 'investigative': 0.42211651319004545, 'building': 0.3354324445993083, 'child': 0.3132231821587091, 'save': 0.3203619750655395, 'brother': 0.2922915313934606, 'build': 0.3712392441277924, 'burn': 0.3132231821587091, 'adj': 0.09496388386450001}, {'gon': 0.5016580308799518, 'suppose': 0.5831430296543622, 'shine': 0.5130915166386326, 'like': 0.25919164810404943, 'adj': 0.15209409040496497, 'cconj': 0.19335591466878713, 'adp': 0.1316096123094293}, {'ayy': 0.9521932312059845, 'propn': 0.30549640005326834}, {'fall': 0.9573736993486073, 'adv': 0.2888522109930308}, {}, {'wealthy': 0.24923028444449322, 'overrun': 0.24923028444449322, 'caravan': 0.24923028444449322, 'wicked': 0.2241760519089981, 'flesh': 0.2241760519089981, 'fear': 0.19071423333055004, 'matter': 0.1801690241099831, 'record': 0.19602306137470055, 'trader': 0.23814360993148856, 'pen': 0.1801690241099831, 'angels': 0.2241760519089981, 'die': 0.16944937663439288, 'soul': 0.17096882883920542, 'mind': 0.16349614082949698, 'pass': 0.18128522414092876, 'world': 0.1359441218216513, 'run': 0.1520160335756855, 'time': 0.13682623392395063, 'man': 0.2545521860984567, 'hold': 0.1581174708476607, 'propn': 0.11492072667093783, 'like': 0.09555108052593253, 'adv': 0.05313492796860779, 'adj': 0.11213906610115203, 'cconj': 0.21384215164138967, 'adp': 0.3396254674495431}, {'ghetto': 0.4868377245020285, 'bird': 0.4868377245020285, 'dial': 0.5649325279153203, 'street': 0.3922257423674591, 'adp': 0.23019180248409227}, {'ah': 0.8742740536399422, 'intj': 0.42640658355431243, 'adv': 0.23199634616416404}, {'clap': 0.6843363054082506, 'say': 0.4146509297734846, 'gun': 0.5723125752060266, 'adv': 0.17946237432736845}, {'bake': 1.0}, {'box': 0.5962727431435254, 'arm': 0.30143103461886434, 'slap': 0.6362410227339432, 'long': 0.25187393162446586, 'adv': 0.15997477761329115, 'think': 0.22943166964059852, 'adj': 0.08440503660742985}, {'live': 0.7249547382074499, 'life': 0.6406563632886515, 'adj': 0.25298231505053265}, {'agree': 1.0}, {'gettin': 0.6354100044640292, 'girl': 0.5380368714717186, 'adv': 0.17223720811701626, 'think': 0.49403625774115945, 'adj': 0.18174974921884732}, {'lap': 1.0}, {'mansion': 0.4979802535820982, 'room': 0.4282862925522938, 'mad': 0.3920333776847794, 'mom': 0.41600856086488347, 'promise': 0.4648901287897798, 'adj': 0.12125162726962152, 'adp': 0.10492110255140712}, {'rich': 0.9050669829845478, 'adv': 0.24771564647632133, 'adj': 0.2613968091846238, 'adp': 0.22619112040520925}, {'intj': 0.7147872851937589, 'like': 0.6993419313364072}, {}, {'loud': 0.5534671748138607, 'volume': 0.656501881099635, 'turn': 0.46279619124098526, 'adv': 0.15148324001426908, 'adj': 0.1598495539056048}, {'bye': 0.9310696503703251, 'intj': 0.36484148086433443}, {}, {'h2o': 0.523287006735781, 'cognac': 0.48349348194472686, 'doomsday': 0.45136598383864796, 'turn': 0.3408351877972799, 'propn': 0.3619334817530716, 'adp': 0.20373767368145793}, {}, {'remember': 0.733676258850229, 'dream': 0.6794991885201422}, {'bless': 0.625531464744534, 'america': 0.5594148317353874, 'god': 0.43382662859890775, 'propn': 0.3279632433178009}, {'invasion': 0.7465778178155577, 'home': 0.564828075364638, 'adj': 0.3515548424152896}, {'evil': 0.560811658026946, 'thinkin': 0.495451736772905, 'beat': 0.4296882563823821, 'adj': 0.14026675698461638, 'adp': 0.48550087534613834}, {}, {'rock': 0.6596849903389673, 'adv': 0.2174242301438237, 'hit': 0.6269393649107001, 'cconj': 0.29167546954172324, 'adp': 0.1985317880361365}, {'glory': 0.50906812679219, 'height': 0.5509665512391123, 'fame': 0.4333428031415864, 'turn': 0.3588638463106751, 'num': 0.2233133738209484, 'cconj': 0.15757832568651017, 'adp': 0.2145144862777595}, {'eat': 0.6368128637597332, 'right': 0.26154679915703954, 'lard': 0.428228063234882, 'fast': 0.3490949540638345, 'food': 0.3184064318798666, 'propn': 0.10332479679383129, 'adv': 0.2866404935324689, 'adj': 0.10082381614875141, 'cconj': 0.1281764540616436}, {'sidewalk': 0.5404674455388393, 'trainwrecks': 0.5656286776848037, 'maybach': 0.5656286776848037, 'propn': 0.2608128414664479}, {'level': 0.9746425170097616, 'adp': 0.22376765636900395}, {'couch': 1.0}, {'lock': 0.4836002596332796, 'going': 0.4836002596332796, 'break': 0.42695197175180855, 'hide': 0.5406867232702837, 'adv': 0.1434760001122485, 'cconj': 0.19247362482565142}, {'ink': 0.6278835417767066, 'waste': 0.6596419002202195, 'nigga': 0.38401512194984, 'adv': 0.15220777757278475}, {'cconj': 1.0}, {'fallin': 0.6185005090448098, 'russell': 0.6185005090448098, 'way': 0.3690421380403391, 'propn': 0.2851921792096843, 'adv': 0.13186190462324193}, {'ayy': 1.0}, {'ski': 0.5866534831184683, 'make': 0.3462016775997456, 'drop': 0.44343749552326595, 'key': 0.5370553067678174, 'cconj': 0.1865367896193993, 'adp': 0.1269681075197942}, {'turn': 0.9581211144288816, 'adp': 0.2863632834103524}, {'bit': 0.938754903693615, 'adv': 0.2544632954823109, 'adp': 0.23235245220025902}, {'punct': 1.0}, {'wonder': 0.6279175378820406, 'll': 0.5583499372361642, 'yeah': 0.40881157483216496, 'propn': 0.356143242939934}, {'wit': 0.6956743904689672, 'fuck': 0.37854438658019685, 'just': 0.3515250142306926, 'know': 0.3308168359616109, 'adv': 0.31043964301883253, 'cconj': 0.20822800794094262}, {'know': 1.0}, {'contract': 0.6772169760690437, 'record': 0.5326405061883096, 'going': 0.4866473736109473, 'adv': 0.14438002718149243}, {'toothpaste': 0.6247474224396568, 'bout': 0.5019381443799309, 'case': 0.4741470942639098, 'need': 0.3646001787883922}, {'adp': 1.0}, {'taste': 0.6090015347851823, 'blood': 0.5801407555405796, 'sit': 0.4915342828367055, 'adv': 0.16668292151914563, 'adp': 0.15219949691160503}, {'slug': 0.42224940191665544, 'bug': 0.39419149138225623, 'pocket': 0.3874965196738724, 'dig': 0.3763085905016084, 'check': 0.2956148968437784, 'catch': 0.2987171941327932, 'niggas': 0.258415782577637, 'propn': 0.10536246568698546, 'adv': 0.09743111076739584, 'adj': 0.10281216318867195, 'cconj': 0.2614084452524308, 'adp': 0.17793023912930656}, {'propn': 0.6275930355070696, 'cconj': 0.7785415735739628}, {'threat': 0.47346233891203704, 'happen': 0.37825404734995216, 'collect': 0.48634864294368774, 'say': 0.2592898720120606, 'shit': 0.2718937845659377, 'adv': 0.22444312904709404, 'adj': 0.11841948340944054, 'cconj': 0.15054567516904777, 'adp': 0.4098816005251077}, {'ringer': 0.7837868567649997, 'dead': 0.5929788044038088, 'adj': 0.18453807382291387}, {'rash': 0.639175740136759, 'lip': 0.541963100290667, 'catch': 0.41779393729417685, 'adv': 0.27253956706864135, 'cconj': 0.182806456623671, 'adp': 0.12442901953692152}, {'hoe': 0.7586080528947625, 'check': 0.6239058231341159, 'adp': 0.18776406989240077}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'fair': 0.8990627253935007, 'adj': 0.43781984400893814}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'tropical': 0.6381550542305829, 'tree': 0.518802031245018, 'puff': 0.5504464666362932, 'adj': 0.14356624430424186}, {'lung': 0.7572962371510126, 'smoke': 0.6280512418943074, 'adp': 0.17903643973207115}, {'filter': 0.4384857700597631, 'brita': 0.4384857700597631, 'pure': 0.40239656717906647, 'power': 0.36017490644681555, 'juice': 0.37711825608537464, 'water': 0.34972684340356164, 'propn': 0.21882774347314404, 'adj': 0.10676550480039086}, {'worry': 0.9760008643029457, 'adv': 0.21776664776751928}, {'say': 0.7350421320450821, 'know': 0.6780214333770135}, {'wig': 0.24080823610239263, 'split': 0.22249589815040322, 'pow': 0.2166006420805857, 'capone': 0.24080823610239263, 'tone': 0.24080823610239263, 'chrome': 0.23009620509994597, 'team': 0.20107183614550986, 'cream': 0.19577029313209807, 'america': 0.18939900401849286, 'dome': 0.2117838671479565, 'blow': 0.1591456172281192, 'bone': 0.20771134197048227, 'hear': 0.1563021098865825, 'gun': 0.163723303477856, 'propn': 0.6107051415763391, 'cconj': 0.06887198246644326, 'adp': 0.1406351845028967}, {'red': 0.35295553695456366, 'tap': 0.3855517160541948, 'mercury': 0.42864152099197755, 'white': 0.3137868644036964, 'god': 0.26144649311894286, 'rough': 0.36972865625598794, 'just': 0.20695816981551152, 'rap': 0.2594730701750601, 'propn': 0.09882385518182263, 'like': 0.16433460556509671, 'adv': 0.1827694125778337, 'adj': 0.19286364000006972, 'cconj': 0.12259294696879237, 'adp': 0.0834440997063418}, {'truancy': 0.6607392939007625, 'matter': 0.47764963250175346, 'fact': 0.5250526564834239, 'propn': 0.1523342958989985, 'adv': 0.14086704938646757, 'adp': 0.12862681942840762}, {'whooping': 0.6822317347937132, 'cough': 0.6518835722381111, 'like': 0.2615572163467917, 'adj': 0.15348220978613544, 'adp': 0.1328107757018308}, {'just': 0.4433089638631825, 'know': 0.834387669961914, 'adv': 0.1957480562086254, 'cconj': 0.2625967959907817}, {'africa': 0.7593220075515553, 'send': 0.6016110950424662, 'propn': 0.1894710533700532, 'adp': 0.15998405890751383}, {'talkin': 0.6337666394219189, 'head': 0.5610481818087774, 'just': 0.42829279221893346, 'adv': 0.18911749682304074, 'cconj': 0.2537018742020032}, {'kiss': 0.759838772813029, 'hand': 0.6501115591419601}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'evidence': 0.6578249121313837, 'propn': 0.3174459182261205, 'hop': 0.47671200345434384, 'hip': 0.48912180460848215}, {'sorry': 0.9655674098807067, 'adj': 0.2601529876366277}, {'know': 0.8917730649805059, 'propn': 0.4524829284904289}, {'right': 0.6255557117469783, 'intj': 0.420025472466207, 'yeah': 0.5673481128217359, 'adv': 0.2285245553569765, 'adj': 0.24114580746258435}, {'propn': 1.0}, {'father': 0.5176564208216593, 'peace': 0.49190181842669906, 'increase': 0.6288880904835937, 'propn': 0.15174095238974725, 'adv': 0.140318370909782, 'cconj': 0.1882376526910883, 'adp': 0.1281258167620476}, {'yell': 0.7864684336115658, 'mic': 0.563689245738612, 'adv': 0.1864112745927836, 'adp': 0.170213612487071}, {'num': 0.9014178014690694, 'adp': 0.4329502825898947}, {'bass': 0.5029249080323507, 'crazy': 0.4214038863532666, 'let': 0.6647321933769378, 'like': 0.22739897309240806, 'adv': 0.12645412264198527, 'adj': 0.13343809580480287, 'cconj': 0.16963870849486112, 'adp': 0.11546626176874328}, {'feel': 0.48660561817108394, 'nah': 0.6599122400448757, 'just': 0.4051055258470426, 'adv': 0.35775779741916247, 'adj': 0.18875825575924454}, {'cut': 0.6887853883144957, 'make': 0.5377503241111449, 'like': 0.38840029636654255, 'adv': 0.21598522650741883, 'adp': 0.19721782240895236}, {'blame': 0.5819683818618793, 'stab': 0.5432973577751413, 'make': 0.33433714955592236, 'man': 0.3216582835995308, 'propn': 0.14521660276249657, 'cconj': 0.3602881358695562}, {'muscular': 0.44360052301495023, 'youth': 0.42386754945827676, 'deep': 0.2966039918305567, 'brother': 0.3071679788575435, 'sharp': 0.3761330408008042, 'thing': 0.27972264982223566, 'num': 0.17979663048585723, 'adj': 0.39918863378706254, 'adp': 0.1727123690051373}, {'central': 0.3999551806682733, 'weapon': 0.3821637115547087, 'duck': 0.3695404633289039, 'low': 0.2927870397470436, 'release': 0.3449849915819732, 'soul': 0.2743642048936335, 'strike': 0.3060508710558378, 'propn': 0.18442036488724056, 'adv': 0.08526889002613652, 'adj': 0.17995646292514064, 'cconj': 0.1143885551266441, 'adp': 0.3114387975902686}, {'rappers': 0.479837962335949, 'scream': 0.40085264169376755, 'leave': 0.3305020076178627, 'beer': 0.4336345116528362, 'ear': 0.4403453020148583, 'num': 0.210490951244237, 'propn': 0.11973234446857427, 'adv': 0.22143854057125797, 'adp': 0.10109864335415525}, {'blooded': 0.40194881704607877, '12': 0.384068663695495, 'foul': 0.346704620836095, 'cold': 0.2783265558324499, 'tryin': 0.3026716121990037, 'speak': 0.3004096864471548, 'style': 0.2962067091830337, 'tell': 0.21428530092437928, 'num': 0.1629146927994619, 'like': 0.1541010309821592, 'adv': 0.17138785110657048, 'adj': 0.27128022421798836, 'adp': 0.15649560541320898}, {'clientele': 0.7131649287431833, 'attract': 0.681440744594821, 'propn': 0.16442109358834198}, {'plus': 0.4611100410083463, 'chain': 0.530554348610426, 'game': 0.4089990446501149, 'plot': 0.4972252425240979, 'cconj': 0.17895823620415233, 'adp': 0.2436193806303024}, {'elephant': 0.41547095817055973, 'strictly': 0.41547095817055973, 'saw': 0.41547095817055973, 'base': 0.3737051429890244, 'sword': 0.3522817191445233, 'just': 0.20059911348645404, 'propn': 0.09578736494654452, 'like': 0.15928521314665076, 'adv': 0.26573038045492137, 'cconj': 0.11882612077384369, 'adp': 0.24264051680137444}, {'grae': 0.5840848340479, 'pay': 0.4535857118341645, 'jean': 0.6112766551718611, 'propn': 0.281861241565833}, {'adj': 1.0}, {'hol': 0.948340616502722, 'propn': 0.3172539599299548}, {'like': 0.8916389869785232, 'adp': 0.45274707828975885}, {'jet': 0.6143403037955643, 'lab': 0.662295934724692, 'adv': 0.33305191298887604, 'cconj': 0.22339523299344446, 'adp': 0.15205617090330448}, {}, {'fly': 0.6371698383648869, 'city': 0.5859197871382057, 'shit': 0.43707555533418074, 'adv': 0.18039876385149523, 'adp': 0.16472354126885924}, {'woo': 0.7352142846969348, 'bitch': 0.5162905280470149, 'propn': 0.43920843141555127}, {'finally': 0.6445563543436604, 'nice': 0.5419615828678215, 'meet': 0.49710360321017905, 'adv': 0.14381429537249296, 'adj': 0.15175705878997867}, {'island': 0.5985878670777757, 'staten': 0.7094599632967881, 'propn': 0.3719665655219556}, {'cconj': 1.0}, {'aw': 0.47291063625030466, 'freak': 0.4953842503184697, 'realize': 0.5050970797326326, 'intj': 0.22504810449700505, 'like': 0.22018519257777544, 'look': 0.3559477675657205, 'adp': 0.22360664815715806}, {'company': 0.4643931600676608, 'corporate': 0.44373525397405966, 'account': 0.44373525397405966, 'rich': 0.36173654041354336, 'money': 0.2974270098478194, 'intj': 0.18197337670169356, 'like': 0.17804123737297994, 'adj': 0.31342468305862176, 'adp': 0.09040390921987766}, {'guzzle': 0.5775356314314549, 'bread': 0.5213501934475212, 'break': 0.3834596838127203, 'everybody': 0.39507769790041347, 'propn': 0.2787007993267421, 'adp': 0.11766358054171241}, {'like': 0.7900348279739363, 'adj': 0.46359375168100375, 'adp': 0.4011555857650799}, {}, {'physically': 0.3831516938667274, 'born': 0.3831516938667274, 'power': 0.5815798698289183, 'bear': 0.2843101111953042, 'speak': 0.28636103736313445, 'truth': 0.2666041302363655, 'song': 0.27221720885625733, 'propn': 0.1766722338037998, 'adv': 0.08168645194959354, 'adp': 0.14917709358476886}, {}, {}, {'probable': 0.2714918536784344, 'orbit': 0.25941490315304416, 'keepin': 0.2508461703901868, 'heaven': 0.2508461703901868, 'sense': 0.2508461703901868, 'hell': 0.19626195283642475, 'million': 0.2207152074109466, 'story': 0.21573943051868877, 'planet': 0.22669226933940617, 'tell': 0.1447366209248766, 'num': 0.6602334933779614, 'propn': 0.06259279681742341, 'adv': 0.05788100800599218, 'adj': 0.06107773578445422, 'cconj': 0.07764760246145723, 'adp': 0.10570321445003848}, {'watch': 0.7683635548002617, 'time': 0.6032128845154405, 'adp': 0.21389638521785914}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'stoge': 0.6815402759994879, 'let': 0.38190428644538216, 'burn': 0.5057234373623616, 'know': 0.30967862694417037, 'cconj': 0.1949228593612262}, {'ringer': 0.6701944180732834, 'puttin': 0.7013950342718397, 'cconj': 0.20060138840882674, 'adp': 0.13654131554466886}, {'committee': 0.3228673291186939, 'gritty': 0.3228673291186939, 'rub': 0.28523868337879665, 'pity': 0.3096168393846155, 'shitty': 0.3228673291186939, 'york': 0.2702941417812949, 'city': 0.24855333143767935, 'titty': 0.2746742777205746, 'act': 0.2702941417812949, 'new': 0.2195062180057792, 'say': 0.17681708039636782, 'fool': 0.27242334319055844, 'propn': 0.248270150388458, 'adj': 0.08075358731146066, 'adp': 0.0698774573710199}, {'skill': 0.3575121533113881, 'mad': 0.32725001818476135, 'check': 0.29102213967901946, 'grill': 0.41568921504287704, 'pull': 0.3315448001745543, 'build': 0.39567592133302193, 'gods': 0.39567592133302193, 'let': 0.25210478670556036, 'propn': 0.10372552443555624, 'adj': 0.10121484416263289}, {'bend': 0.48252153088448374, 'sittin': 0.5437576513390553, 'steelo': 0.5004823879726923, 'know': 0.2585752590729116, 'propn': 0.1312002964151424, 'cconj': 0.16275656268538163, 'adp': 0.332345583829656}, {'gorilla': 1.0}, {'big': 0.8771772599242795, 'adv': 0.27969306961631013, 'adj': 0.29514032314363664, 'adp': 0.25538995895494504}, {'foot': 0.6696231211522485, 'num': 0.6830888717036587, 'cconj': 0.24100661518027827, 'adp': 0.164043532064781}, {'drank': 0.6310610994614944, 'head': 0.5171045069330467, 'shot': 0.5466577804238603, 'propn': 0.18849426717552709}, {'tap': 0.7097192530106413, 'tie': 0.6805923428901127, 'propn': 0.1819138386856931}, {'adv': 0.7384617951868037, 'adp': 0.6742953188696205}, {'maybe': 0.6165471235511816, 'say': 0.4092919829084369, 'man': 0.4243173039009307, 'propn': 0.38312656945312923, 'adv': 0.3542860067190994}, {'know': 1.0}, {'land': 0.2536323985413089, 'sun': 0.5290646020628188, 'hand': 0.42422712347041797, 'walk': 0.4538589087343191, 'right': 0.3641427554059177, 'propn': 0.07192780857484558, 'adv': 0.1995399283459669, 'adp': 0.3036691504968763}, {'momma': 0.6835653497559853, 'baby': 0.524048474998905, 'cconj': 0.480956533597216, 'adp': 0.1636839065224486}, {'bar': 0.6811089144058946, 'jail': 0.7321821130817274}, {'propn': 0.3259776759680771, 'lose': 0.9453774668197097}, {'life': 0.4826004810066101, 'make': 0.44963753711297083, 'fuck': 0.4404286441689197, 'play': 0.5784711234446037, 'adj': 0.19056922544691052}, {'askin': 0.8452941191162827, 'come': 0.4953140373764039, 'adv': 0.20035432754326535}, {'hallelujah': 0.5486177346001636, 'berry': 0.5486177346001636, 'halle': 0.5486177346001636, 'propn': 0.26474591841012507, 'cconj': 0.16421127407012226}, {'sellin': 0.9333941481445942, 'propn': 0.22521354615821348, 'cconj': 0.2793818584594741}, {'allow': 0.6504627902042669, 'demonstrate': 0.6289773560457109, 'right': 0.397280036865237, 'adj': 0.1531476948888967}, {'starks': 0.4852862738737148, 'ironman': 0.5252273528981465, 'spot': 0.40540411582485136, 'come': 0.27682705155610926, 'rock': 0.3397467258442579, 'propn': 0.24218368645304394, 'like': 0.2013641367984325, 'cconj': 0.15021682657198013, 'adp': 0.10224656608698243}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'successful': 0.33910571814606527, 'race': 0.32402105565826306, 'jake': 0.3133183172969416, 'chase': 0.27568336913525615, 'damn': 0.2553501094279979, 'woo': 0.5234870311973884, 'motivate': 0.33910571814606527, 'straight': 0.23595611474957046, 'say': 0.16704121121679502, 'want': 0.19832116658788504, 'intj': 0.1328792452087398, 'adv': 0.07229602111795974, 'adj': 0.07628888003562292}, {'hol': 0.4089215969394665, 'lil': 0.4239280375682181, 'bitch': 0.6432299067904385, 'propn': 0.13679894509670015, 'humble': 0.45032267362638106, 'adj': 0.13348772141593296}, {'homie': 0.9404736718507714, 'propn': 0.2596774809561561, 'adp': 0.21926440303841552}, {'yo': 1.0}, {'propn': 0.7313597148766698, 'like': 0.608090577165452, 'adp': 0.30876984538342417}, {'asssociates': 0.44400352999568327, 'homie': 0.3707373405341469, 'close': 0.3458541483441286, 'really': 0.31208976044462167, 'girl': 0.2956996207552187, 'boy': 0.30894597839765564, 'bitch': 0.24066196708308546, 'niggas': 0.25106552778418567, 'know': 0.20174655610159606, 'propn': 0.20473117231838425, 'adv': 0.18931965380300708, 'adj': 0.09988782324408826, 'cconj': 0.1269865342973532}, {}, {'invite': 0.7062668837342184, 'day': 0.47916440280951866, 'intj': 0.2995299197192766, 'num': 0.30981873019341327, 'like': 0.29305758074968474}, {'baby': 1.0}, {'mansion': 0.7330220085241604, 'couple': 0.6624395434444795, 'adp': 0.15444282534412257}, {'propn': 0.6275930355070696, 'cconj': 0.7785415735739628}, {'libertie': 0.5097297389329253, 'civil': 0.48705509601084174, 'drama': 0.43967203875453126, 'oh': 0.31419611878855563, 'intj': 0.3994772092912938, 'like': 0.19542258855018796, 'adj': 0.1146743001464027}, {'finally': 0.4924482406002817, 'chamber': 0.463565251148511, 'bullet': 0.4014477580767018, 'pull': 0.37979269484696365, 'catch': 0.33687153942216824, 'num': 0.20888726787832296, 'adv': 0.2197514499766872, 'cconj': 0.14739872210200738, 'adp': 0.100328395456537}, {'run': 0.9439951370362817, 'adv': 0.32995936303104323}, {'product': 0.857710501616061, 'propn': 0.4736509040407055, 'adp': 0.19996878886203062}, {}, {'truck': 0.3956854502553401, 'crash': 0.37944650154893467, 'area': 0.4203391072273179, 'whip': 0.34957020015328855, 'fucking': 0.3338645427663988, 'control': 0.35343325119513613, 'let': 0.24650440532438717, 'propn': 0.10142131393883226, 'adv': 0.0937866365229699, 'adj': 0.19793281433763474, 'cconj': 0.12581514593144, 'adp': 0.17127464248564903}, {'destroy': 0.9730407526422572, 'adv': 0.23063324499601015}, {'lock': 0.6528961276868835, 'num': 0.7365072728966722, 'adp': 0.17687194074182505}, {'drank': 0.8319828088939719, 'head': 0.3408719540287077, 'shot': 0.3603532812027963, 'propn': 0.24850840908895985}, {'adj': 1.0}, {}, {'rule': 0.49353257024762215, 'bend': 0.5678597905895895, 'law': 0.5592057002831146, 'fuck': 0.3482094845164257}, {'wax': 0.7182445207549514, 'drive': 0.6610826201902885, 'adv': 0.1602556998490991, 'adp': 0.146330749856988}, {'rise': 0.35430865571860326, 'defeat': 0.38608506238194706, 'jaw': 0.36043022405699243, 'start': 0.28934515680172046, 'foot': 0.33205119839179403, 'pull': 0.30793316310744245, 'adv': 0.35634576444939325, 'cconj': 0.11950981509308749, 'adp': 0.40672767777793384}, {'doubt': 0.8811612979815951, 'adv': 0.47281578541688973}, {'super': 0.9501925120844457, 'propn': 0.31166358462074223}, {'good': 0.6506971268874988, 'come': 0.5405813208931626, 'adv': 0.43732985078996817, 'adj': 0.2307416370015461, 'adp': 0.19966467670479077}, {'judge': 0.44309039398355476, 'aw': 0.4229891442863834, 'past': 0.4355649204083276, 'make': 0.27267126776895684, 'fuck': 0.2670867684633036, 'intj': 0.4025830583944682, 'yeah': 0.27189391287748677, 'num': 0.2082058648198674, 'adp': 0.10000111808722484}, {'woody': 0.4358435405193941, 'jackson': 0.21792177025969706, 'michael': 0.4026996815826547, 'marry': 0.21792177025969706, 'dirt': 0.19601487110896731, 'press': 0.18477791132295762, 'step': 0.1713984824986779, 'laugh': 0.1713984824986779, 'wanna': 0.1350621229178485, 'daughter': 0.1731702737170787, 'game': 0.14244344505227224, 'hand': 0.1481630059841026, 'kick': 0.15482655303030818, 'soon': 0.1731702737170787, 'hold': 0.13825462356193846, 'propn': 0.4521793053025865, 'adj': 0.04902603199787863, 'cconj': 0.18697912392830746, 'adp': 0.12726918673428983}, {'autograph': 0.5427824976785118, 'book': 0.5115786536711858, 'wish': 0.5055716209353242, 'bring': 0.43367243101986774}, {'lifetime': 0.7312697285571699, 'yo': 0.4642845764012434, 'come': 0.4382452827358004, 'adv': 0.1772700394009111, 'adp': 0.16186667817206474}, {'ayy': 1.0}, {'hear': 0.5097750114599807, 'long': 0.5272614553358691, 'time': 0.4311750271235591, 'propn': 0.18107254003257026, 'like': 0.30110629048193555, 'adv': 0.16744196891954713, 'adj': 0.1766896722986949, 'adp': 0.30578517821955087}, {'chickenhead': 0.6841168405017342, 'bitch': 0.38807279722597954, 'crab': 0.6175626709858107}, {'expect': 0.7530618637220852, 'free': 0.6089811449273904, 'adj': 0.1883511940616839, 'adp': 0.16298350292554886}, {'use': 0.6346427869641817, 'word': 0.6145968240594644, 'know': 0.42414064550861774, 'adv': 0.19900751151122179}, {'bo': 0.9156461461421295, 'simon': 0.1831292292284259, 'sky': 0.1607225995262103, 'throw': 0.14636230040581394, 'hand': 0.14157132352147025, 'say': 0.10257101358695127, 'fuck': 0.10826424300656404, 'propn': 0.19202760963774007, 'adp': 0.04053568588146264}, {'read': 0.7146983709512686, 'label': 0.6994327977437166}, {'lung': 0.7572962371510126, 'smoke': 0.6280512418943074, 'adp': 0.17903643973207115}, {'thing': 0.5909185607315005, 'niggas': 0.5298985252817422, 'know': 0.4258059778354002, 'num': 0.37982325056120847, 'adj': 0.21082308948500628}, {'pray': 0.9754653797776782, 'adp': 0.22015288518479526}, {'propn': 1.0}, {'internet': 0.3294334053347194, 'chat': 0.3447700374606349, 'chick': 0.2923337458795226, 'track': 0.2596154003960124, 'happen': 0.24775136944124718, 'guess': 0.2596154003960124, 'movin': 0.3447700374606349, 'shit': 0.1780868121325154, 'just': 0.33292610475509105, 'actually': 0.27396951523180335, 'adv': 0.22051089594152026, 'adj': 0.15512637281086666, 'cconj': 0.09860541466217695, 'adp': 0.26846699605811497}, {'studio': 0.7442943641551224, 'follow': 0.6504089642348488, 'adp': 0.15163798577491389}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'lock': 0.3793858652008921, 'bing': 0.5279521935735078, 'ring': 0.4075073224051314, 'king': 0.36384754846686684, 'label': 0.3890619283659821, 'rap': 0.31958961011324793, 'propn': 0.1217200587565347, 'adp': 0.10277701371247738}, {'amazin': 0.3596217465854122, 'datum': 0.3719061782648322, 'power': 0.2953955128691805, 'def': 0.33002338089372163, 'uh': 0.2796931442795064, 'rock': 0.25176955855252975, 'propn': 0.6281463901200445}, {'potato': 0.6564982929505325, 'smash': 0.5905028585377398, 'propn': 0.3027130553265811, 'like': 0.25169140818769226, 'adp': 0.25560243854693065}, {'tally': 0.5042873955159012, 'alamo': 0.5042873955159012, 'ho': 0.3654465651874622, 'remember': 0.40054250920727197, 'propn': 0.3650302056835862, 'like': 0.20233675617420532, 'adv': 0.11251729342610939, 'adp': 0.10274043253640873}, {'rub': 0.38377476598750193, 'bra': 0.44622547722918726, 'ta': 0.4829516902054144, 'floor': 0.3798481754380674, 'titty': 0.36956087234146723, 'propn': 0.3340354040986822, 'cconj': 0.13812584186623655, 'adp': 0.09401671797352812}, {'raekwon': 0.621834581474225, 'bomb': 0.4995978930454744, 'drop': 0.42277960896836014, 'propn': 0.43009429290314755}, {'aight': 0.6585955559783276, 'begin': 0.6585955559783276, 'man': 0.36401069667139585}, {'grave': 0.35843587315174935, 'pis': 0.40392445946068806, 'spit': 0.2987081776664345, 'laugh': 0.3324821906008061, 'shit': 0.21835557099807637, 'talk': 0.2826486887877057, 'face': 0.2698757198148625, 'just': 0.2041034617708514, 'adv': 0.09012417786216072, 'cconj': 0.12090194307055355, 'adp': 0.4937586072470173}, {'propn': 1.0}, {'language': 0.25614651072591993, 'stainless': 0.25614651072591993, 'bonded': 0.25614651072591993, 'ancient': 0.24475217717456296, 'shore': 0.24475217717456296, '9000': 0.25614651072591993, 'mile': 0.22527343531109337, 'read': 0.19288096910029187, 'book': 0.208239877095629, 'land': 0.208239877095629, 'war': 0.19600661902815036, 'inside': 0.17340222723682233, 'steel': 0.19288096910029187, 'place': 0.17340222723682233, 'ride': 0.19600661902815036, 'num': 0.1038192633908995, 'propn': 0.059054908219638505, 'adv': 0.10921888106148812, 'adj': 0.1152509638300822, 'cconj': 0.14651756336153735, 'strip': 0.22094151074348878, 'adp': 0.3989145042408571}, {'dollar': 0.9143073939604238, 'money': 0.4050209739622114}, {'wanna': 0.7362800445849221, 'say': 0.5851922874709079, 'cconj': 0.33976710057124615}, {'slave': 0.700825681440057, 'label': 0.6352705018536225, 'propn': 0.19874769843627088, 'adj': 0.1939370028194665, 'adp': 0.16781699858004132}, {'forgive': 0.7249794590367216, 'lord': 0.6599591956559185, 'propn': 0.1971259598429789}, {'doom': 1.0}, {'alright': 0.9600522168198188, 'adj': 0.279820908760142}, {'issue': 0.3996282738031174, 'dart': 0.35945506723659476, 'truly': 0.3996282738031174, 'weed': 0.3336845619976492, 'boo': 0.32488649712564094, 'vein': 0.35945506723659476, 'send': 0.29254772769922355, 'heart': 0.28238478072176004, 'propn': 0.09213481364447701, 'adv': 0.0851991947530632, 'adp': 0.1555921201825182}, {'amaze': 0.8001697920597799, 'ayy': 0.5750011318514401, 'adv': 0.17059308967414574}, {'believe': 0.537056397176616, 'place': 0.47102645852935393, 'right': 0.40606118728450163, 'cause': 0.4233096699998701, 'propn': 0.16041561126825873, 'adv': 0.1483400287606197, 'adj': 0.15653274528255448, 'adp': 0.2709009122644404}, {'common': 0.6144721459279613, 'woo': 0.6298571795130147, 'propn': 0.1881346633136818, 'adv': 0.1739724777793068, 'adj': 0.3671617132331657, 'adp': 0.15885564851606282}, {'speak': 0.5711873382156786, 'watch': 0.5344414116595547, 'eye': 0.5109993369942883, 'num': 0.309759684638927, 'propn': 0.17619880115716074}, {'just': 0.48530527164562304, 'hope': 0.714120495876624, 'know': 0.4567161594250987, 'adv': 0.214291997988447}, {'instead': 0.21467462071582424, 'recover': 0.24888104934526972, 'conduct': 0.24888104934526972, 'experiment': 0.49776209869053945, 'forbid': 0.21888367251596216, 'pursue': 0.23780991008666735, 'later': 0.20781253325735982, 'lesson': 0.21888367251596216, 'learn': 0.19386454734073436, 'doom': 0.1593993036068104, 'injury': 0.22386192417004183, 'day': 0.1560120721993241, 'bitter': 0.2299548117745646, 'secret': 0.20493568659933672, 'want': 0.14555454952992095, 'num': 0.1008744844571695, 'propn': 0.05737984673318036, 'adv': 0.2653023620140682, 'adj': 0.1679728960671453, 'adp': 0.14534981386211307}, {'old': 0.44944861357089155, '80': 0.6504724941128532, 'year': 0.48294134570484204, 'adv': 0.1500920009297325, 'adj': 0.31676295530987325, 'adp': 0.13705019580747826}, {'height': 0.445320424213831, 'art': 0.3841151964627519, 'vanish': 0.445320424213831, 'raise': 0.3620329246088678, 'technique': 0.37183693057615774, 'lose': 0.2977539669425675, 'adj': 0.3005522579152875, 'adp': 0.086690999493875}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'nigga': 0.6130504384824548, 'man': 0.58203816769294, 'adv': 0.48597588713511086, 'adp': 0.2218742174033678}, {'lye': 0.9206279170659165, 'intj': 0.3904410817509757}, {'pie': 0.7834654891538472, 'case': 0.5946049103935754, 'propn': 0.18062897840814796}, {}, {'school': 0.21882086817183533, 'family': 0.4668782863031402, 'use': 0.19274675753456777, 'worth': 0.25499773431205547, 'respect': 0.2334391431515701, 'ball': 0.21693529253558483, 'poor': 0.22297402464627528, 'grab': 0.236716115698281, 'step': 0.22297402464627528, 'really': 0.1992695845938222, 'life': 0.1615135735970818, 'eat': 0.2014154334857899, 'play': 0.19359893337731024, 'cause': 0.17247534892400282, 'propn': 0.19608154847744405, 'adv': 0.30220191071813157, 'adj': 0.12755692474801686, 'cconj': 0.08108101304699121, 'adp': 0.2207543681515916}, {}, {'unite': 0.5821267719153705, 'team': 0.5635190538372996, 'try': 0.42816162860032947, 'man': 0.3446471726982529, 'propn': 0.15559522052679617, 'adp': 0.13138025299236017}, {'junkie': 0.6720074859507961, 'school': 0.5186984249131347, 'pill': 0.5285431702507599}, {'life': 0.5745231165610295, 'real': 0.6523104631883517, 'adj': 0.45373525155222894, 'adp': 0.19631242867132748}, {'simply': 0.4462219727695595, 'phase': 0.4669956469994504, 'amaze': 0.4669956469994504, 'num': 0.1892789557852578, 'propn': 0.32299934511345896, 'hop': 0.32336776352100377, 'hip': 0.3317856963942598, 'adv': 0.09956165688401938}, {'abi': 0.36960017688017927, 'light': 0.5306891030848702, 'shine': 0.5871278305482476, 'say': 0.19053842376564828, 'world': 0.4219720317967626, 'adp': 0.15060016322381167}, {'child': 0.8739355497882748, 'adj': 0.26496223390355506, 'cconj': 0.33684421894826355, 'adp': 0.22927634326776483}, {'krill': 0.6033655150964438, 'come': 0.37505265238419927, 'thing': 0.44871091445411393, 'money': 0.45574891120587707, 'adj': 0.16008740892104428, 'cconj': 0.203517752047217, 'adp': 0.13852636724820394}, {'syringe': 0.5729823091275179, 'jam': 0.4858370697861786, 'ask': 0.41677610154998207, 'shoot': 0.40487997053015246, 'like': 0.21967265688199925, 'adp': 0.22308614817415884}, {}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'provoke': 0.5336863167273201, 'mirror': 0.445621334913429, 'properly': 0.5099459976132605, 'broke': 0.45251762955577657, 'adv': 0.2275596969312396}, {'dog': 0.8753914233812723, 'propn': 0.48341478656585385}, {'pastry': 0.21692786776177708, 'yellow': 0.19512088208807923, 'wanted': 0.21692786776177708, 'cheeba': 0.21692786776177708, 'brick': 0.2072781228760966, 'rain': 0.18711311229585617, 'holy': 0.18711311229585617, 'thought': 0.16897478936166696, 'road': 0.17862453424734748, 'ghostface': 0.19512088208807923, 'york': 0.16334892573852863, 'wet': 0.17635622829024222, 'laugh': 0.1706167644551244, 'bag': 0.16897478936166696, 'heavy': 0.17635622829024222, 'new': 0.13265587136987902, 'mind': 0.14230561625555954, 'bitch': 0.23516158698646508, 'steal': 0.174285427194633, 'kick': 0.1541204166143926, 'beat': 0.14949965894644565, 'fuck': 0.11278835465357953, 'num': 0.08792347542100319, 'propn': 0.30007799718953476, 'look': 0.13444612855811816, 'adv': 0.13874453484170526, 'adj': 0.3416170308002103, 'adp': 0.16891831276360778}, {}, {'pleasure': 0.9104230351855102, 'know': 0.41367849473184287}, {'drank': 0.6190502751962174, 'stand': 0.5730098001413195, 'sit': 0.5042281591815706, 'propn': 0.18490670406953094}, {'bronze': 0.25986505677082117, 'shave': 0.24830530869227968, 'chair': 0.25986505677082117, 'golden': 0.2337417484630147, 'dip': 0.22854378882683465, 'use': 0.17667986046328046, 'blonde': 0.25986505677082117, 'flip': 0.1972225208828482, 'honey': 0.22414897657467006, 'perfect': 0.22854378882683465, 'skin': 0.21698404074829317, 'hair': 0.20650026363533933, 'girl': 0.1730661887652386, 'stomach': 0.24830530869227968, 'bag': 0.20242048051902825, 'make': 0.13793796128651328, 'nigga': 0.1397779446310553, 'fuck': 0.1351128948417404, 'man': 0.13270702322362504, 'propn': 0.1797366714104422, 'adv': 0.05540222009476924, 'adj': 0.23384818456998407, 'cconj': 0.0743222986191852, 'adp': 0.2529410316713626}, {'theme': 0.46352477307750123, 'mainstream': 0.4851039718193991, 'extreme': 0.4851039718193991, 'team': 0.40505569042801154, 'blow': 0.3205960571140256, 'adj': 0.2182684439133735}, {'family': 0.6685132546222134, 'peace': 0.606774662939635, 'say': 0.39991968146830476, 'adp': 0.15804678162872424}, {'boss': 0.3119863313207288, 'follower': 0.3468543648427868, 'beef': 0.2701803315692377, 'crime': 0.275625813924922, 'cash': 0.2401768002493656, 'try': 0.22005245086348088, 'portion': 0.3314250142123124, 'pass': 0.25229506684926234, 'street': 0.2301043324912866, 'play': 0.23686571621878794, 'cause': 0.4220425840192909, 'propn': 0.1599354418166511, 'adp': 0.20256752171283274}, {'mathematic': 0.6240854723418948, 'simple': 0.604136541823293, 'check': 0.46801863196267446, 'adj': 0.16277260881786373}, {}, {'tired': 0.3256285557639587, 'bed': 0.29085719242738167, 'break': 0.22967468306594332, 'mind': 0.2374875092942654, 'yo': 0.202144662366608, 'make': 0.38432620115237465, 'time': 0.19874794191381362, 'ya': 0.22897170145167442, 'sit': 0.2276019993628435, 'got': 0.2747531626741933, 'll': 0.26170582724934144, 'hard': 0.24110067401209026, 'propn': 0.1669289379241677, 'adv': 0.15436305267846717, 'adj': 0.16288841661847267, 'cconj': 0.2070786491464307, 'adp': 0.21142519052292688}, {'mood': 0.9763670287315536, 'adp': 0.21611900704453949}, {}, {'explosion': 0.9614504788567761, 'cconj': 0.27497813859664516}, {'winnin': 1.0}, {'god': 0.7826363895486927, 'intj': 0.5027979437787145, 'cconj': 0.366980257624417}, {'rza': 0.955567697361726, 'propn': 0.2947717350066132}, {'card': 0.6909221861261517, 'nas': 0.6044724441309877, 'propn': 0.3965344840048206}, {'san': 0.5285642861316615, 'sittin': 0.5285642861316615, 'peace': 0.4134308431626393, 'propn': 0.2550687455860402, 'adv': 0.11793398646499169, 'adj': 0.24889479687604787, 'cconj': 0.15820891192462538, 'adp': 0.3230593736627669}, {'nigga': 0.9296393437041822, 'adv': 0.36847074597212937}, {'condom': 0.4815274880415819, 'cool': 0.7433475216311344, 'adv': 0.41063915565513737, 'adj': 0.21665923517831037}, {'secret': 0.9358961136730822, 'adv': 0.24231548314246526, 'adj': 0.25569839858914817}, {'forever': 0.6810824909107329, 'live': 0.26661882765293277, 'gun': 0.5623583087407659, 'adv': 0.176340974637872, 'cconj': 0.11828105943602325, 'adp': 0.32203668354473164}, {'packin': 0.537552710078207, 'gettin': 0.44247556300213814, 'steel': 0.42362723330719615, 'high': 0.37321626982624034, 'real': 0.36390739499555125, 'adj': 0.2531273415467902}, {'margin': 0.32422491946793447, 'writin': 0.30980220932595454, 'book': 0.26358570019166283, 'charge': 0.291631743465036, 'gandhi': 0.32422491946793447, 'past': 0.2749133477887266, 'sip': 0.25500737773392423, 'til': 0.229103366278807, 'word': 0.21347475150186823, 'watchin': 0.27966316357352816, 'rhyme': 0.2050662182923282, 'propn': 0.37375236553946606, 'adv': 0.06912349267648163, 'adp': 0.18935162728579424}, {'tongue': 0.9773714350060704, 'adp': 0.21153032414803996}, {'adj': 1.0}, {'army': 0.6614072373788843, 'strike': 0.5754792890708867, 'adv': 0.4810031748266315}, {'unite': 0.5004546765450779, 'mic': 0.37404403490159427, 'black': 0.3438153534596852, 'people': 0.3636991222776843, 'come': 0.3057997096341676, 'right': 0.3386010348756828, 'num': 0.23516104196355522, 'adj': 0.2610549897617736, 'cconj': 0.16593848646531908}, {'black': 0.6106521731816147, 'people': 0.6459678346771556, 'like': 0.3950747796844456, 'adj': 0.23183053812723872}, {'start': 0.5757682936070085, 'yo': 0.46429291158200636, 'shit': 0.429502898171857, 'know': 0.3778187978449296, 'adv': 0.3545464437680407}, {}, {'feraud': 0.5452153639435741, 'relief': 0.520962190646418, 'prophet': 0.49040680590411495, 'come': 0.28736196016976956, 'propn': 0.2514002098750154, 'adp': 0.21227530681139264}, {'tech': 0.6237031942337405, 'use': 0.42405006158601344, 'time': 0.3424100700424594, 'got': 0.4733545855607123, 'propn': 0.1437955753813895, 'adv': 0.13297109688442055, 'adj': 0.14031499799787364, 'cconj': 0.17838125536232036}, {'hood': 0.7675363237598977, 'num': 0.4276877802517073, 'propn': 0.24327915441210363, 'adp': 0.410836229367665}, {'arab': 0.5060206310066323, 'mic': 0.3530729188060263, 'devil': 0.4266032087701866, 'steal': 0.44001074221773895, 'thing': 0.345344970653682, 'propn': 0.25253123452317683, 'adj': 0.12320935318259484, 'adp': 0.21323031239519502}, {'chain': 0.30014581966950454, 'jaz': 0.3382368982863011, 'wearin': 0.35398337328375035, 'glad': 0.35398337328375035, 'god': 0.21590934857004282, 'style': 0.26085970566214906, 'bread': 0.30533158952562667, 'break': 0.224575259104258, 'run': 0.21590934857004282, 'face': 0.22598761787003385, 'propn': 0.32644529197460664, 'adj': 0.07963591780961098, 'adp': 0.2756412755005066}, {'project': 0.3692571727825448, 'contemplatin': 0.4422308471961836, 'sippin': 0.3749716798377409, 'hall': 0.3977749557112553, 'floor': 0.34782066992757343, 'war': 0.3384007572198688, 'niggas': 0.2500631493962151, 'propn': 0.20391378370957358, 'adp': 0.17217909651523933}, {'lower': 0.5564104462254128, 'cannon': 0.5316592747267874, 'laser': 0.5140980390743364, 'doom': 0.35636075097403197, 'propn': 0.1282811455879997}, {}, {'propn': 0.5545420927881086, 'cconj': 0.6879204342722335, 'adp': 0.46823983538021036}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'hop': 0.6823851595430924, 'hip': 0.700149059086427, 'adv': 0.21009947428715575}, {'relax': 0.47076352370967406, 'dome': 0.47076352370967406, 'need': 0.3123875172777875, 'say': 0.263675503851085, 'day': 0.3355425829875268, 'time': 0.2938663288219262, 'stay': 0.3593538086899834, 'num': 0.21695555090794075, 'adj': 0.12042243189628739}, {'elephant': 0.5107150697851812, 'scent': 0.4718775818883659, 'smell': 0.4405219448745195, 'high': 0.33881006594633856, 'adv': 0.21776493579825623, 'think': 0.3123128130244744, 'adj': 0.22979194160591634, 'adp': 0.09942144453496274}, {'lye': 0.9206279170659165, 'intj': 0.3904410817509757}, {'copy': 0.3847931685612967, 'warn': 0.4087681688468742, 'opposite': 0.37623612057302974, 'inside': 0.28960441422758515, 'earth': 0.32467404398733607, 'eye': 0.28603810498870075, 'send': 0.31316950950839534, 'propn': 0.19725885157005005, 'adj': 0.09624209677419829, 'cconj': 0.1223517534564878, 'adp': 0.33311971584361655}, {'bad': 0.6997500196346707, 'dream': 0.6803880906098212, 'adj': 0.21776582876475384}, {'nigga': 0.8811050736492166, 'adv': 0.3492337603459524, 'adp': 0.318888114899622}, {'hope': 1.0}, {}, {'know': 0.8917730649805059, 'propn': 0.4524829284904289}, {'make': 0.42092146531433083, 'niggas': 0.44840022269995916, 'fake': 0.5768019908530916, 'adv': 0.5071841742430643, 'adj': 0.17839853437053413}, {'come': 0.61661717587813, 'just': 0.5648625259956314, 'adv': 0.4988427958919603, 'adp': 0.22774865559341076}, {'huh': 0.8950658108908498, 'intj': 0.44593406931328505}, {'patrol': 0.5137952651210018, 'american': 0.4729045753812864, 'road': 0.4427695439213912, 'nigga': 0.28922960406289017, 'stay': 0.3609881644419605, 'adj': 0.24194023603840822, 'adp': 0.2093550155846639}, {'fade': 0.8318773279909498, 'shit': 0.5067713991811185, 'propn': 0.22619208683472844}, {'cocked': 0.6351019412456214, 'catch': 0.41513111958756477, 'fuck': 0.33021162163015383, 'propn': 0.14642357119791571, 'adv': 0.13540126544422718, 'adj': 0.14287938307548306, 'cconj': 0.18164133615128422, 'hot': 0.47126479257769593}, {'wake': 0.9627356441479266, 'adv': 0.27044422620399367}, {'lil': 0.7966782645839748, 'bitch': 0.6044036256835876}, {'propn': 0.3159034552949618, 'hop': 0.9487913400388434}, {'mama': 1.0}, {'match': 0.42140391965612445, 'wonder': 0.3808777669615646, 'oh': 0.28878259290128044, 'brother': 0.3244098695192551, 'try': 0.29722765395282047, 'maybe': 0.347641586364435, 'pass': 0.34077816688348994, 'love': 0.2520002273291959, 'intj': 0.1835828920307931, 'adv': 0.19976502151716594, 'cconj': 0.1339927854648241, 'adp': 0.09120351232851505}, {'risk': 0.7918781924033368, 'use': 0.5827024888553551, 'adv': 0.1827203816704599}, {'adv': 0.4589808835053696, 'adj': 0.48433007818305673, 'cconj': 0.6157246808166129, 'adp': 0.4190990830067574}, {'kiss': 0.717229761196377, 'listen': 0.6697413793982273, 'adv': 0.19242649083727487}, {'adv': 0.37143663103820007, 'adj': 0.3919508175958227, 'cconj': 0.4982837179250804, 'adp': 0.6783234642555992}, {'addict': 0.6002766397985555, 'snack': 0.5399329678701621, 'fruit': 0.5735741395865923, 'propn': 0.13839455305962722}, {'common': 0.8154022294383151, 'adv': 0.23086082450153148, 'adj': 0.4872222142512111, 'adp': 0.21080084885418518}, {'wanna': 1.0}, {'bell': 0.522447185763788, 'low': 0.44339831782973815, 'rock': 0.39179732262693, 'key': 0.4987458339014587, 'like': 0.2322139513623281, 'adj': 0.27252706613152844}, {'comrade': 0.6464492470408509, 'dad': 0.557600698348078, 'mom': 0.498970938920348, 'propn': 0.14903970717563544}, {'yoga': 0.9104230351855102, 'know': 0.41367849473184287}, {'obnoxious': 0.9551728214281698, 'adv': 0.20363913309042916, 'adj': 0.21488598064817577}, {}, {'fuck': 0.7134300556202816, 'man': 0.7007264485786461}, {'jet': 0.39290027246264836, 'livin': 0.37067861442753697, 'black': 0.29602293858067474, 'fight': 0.42357021279012275, 'fiend': 0.37616372361831646, 'night': 0.3493338607344654, 'crack': 0.3459074105534508, 'adv': 0.2130027715080224, 'adj': 0.11238338314855041}, {'tough': 0.8205231342762569, 'want': 0.5335024061427333, 'adj': 0.20522419145262047}, {'bar': 0.4415594208739683, 'tear': 0.480309783001305, 'peace': 0.4415594208739683, 'come': 0.3113917984517846, 'open': 0.4520935085310155, 'propn': 0.13621142380482099, 'adj': 0.13291442109931972, 'cconj': 0.168972965326287, 'adp': 0.11501311710821514}, {'scholar': 0.7829100378493349, 'skill': 0.6221349312124766}, {'say': 0.5240203193778937, 'hear': 0.690483196536804, 'adv': 0.4535956582213185, 'adp': 0.20709089555597707}, {'nigga': 0.9191274338387593, 'propn': 0.3939603537984212}, {'villain': 0.5154970029507179, 'mf': 0.5412396184445983, 'super': 0.47351849686007097, 'propn': 0.4659428597007922}, {'worth': 0.9270152700633927, 'adj': 0.2318593484031367, 'cconj': 0.29476080408929556}, {'clap': 0.6843363054082506, 'say': 0.4146509297734846, 'gun': 0.5723125752060266, 'adv': 0.17946237432736845}, {'wiz': 1.0}, {'like': 0.8916389869785232, 'adp': 0.45274707828975885}, {'adj': 1.0}, {'man': 0.9114220658954327, 'propn': 0.4114727424737899}, {'pure': 0.7131526215991759, 'cut': 0.5718369440646943, 'adv': 0.35862645748440286, 'adj': 0.18921657353720864}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'fuck': 0.9141576195579484, 'propn': 0.40535891084833114}, {'pipe': 0.4404721408111417, 'stick': 0.39722765189453896, 'fiend': 0.39722765189453896, 'crack': 0.3652770850558885, 'hop': 0.3652770850558885, 'hip': 0.3747860044010272, 'like': 0.20224292012996448, 'adp': 0.20538557091119208}, {'grenade': 0.30196548418937297, 'especially': 0.2790024240971896, 'challenge': 0.30196548418937297, 'pay': 0.22406749535834375, 'relax': 0.26556989504145584, 'ac': 0.28853295513363925, 'island': 0.22406749535834375, 'god': 0.1841814500414502, 'black': 0.17893969556033057, 'lie': 0.21116503669766948, 'sell': 0.20810482934117494, 'bat': 0.30196548418937297, 'new': 0.18465813010598758, 'try': 0.19157390422971082, 'day': 0.18928826057664522, 'propn': 0.20885559483630647, 'adv': 0.12875573518018046, 'adj': 0.13586682480122117, 'adp': 0.23513576484386733}, {'plug': 0.43975021548991483, 'battery': 0.43975021548991483, 'connection': 0.43975021548991483, 'charge': 0.3955436930724027, 'bitch': 0.23835655515180826, 'adv': 0.3750121471203522, 'adp': 0.2568199231537757}, {'traitor': 0.4443942625881937, 'turn': 0.28944957546358263, 'people': 0.2785703048193628, 'watch': 0.3107657519851476, 'try': 0.2819340234525377, 'ah': 0.35703777802804865, 'yes': 0.30921785745926167, 'intj': 0.34827353847438436, 'adj': 0.09997572666264165, 'young': 0.321253417453055, 'adp': 0.08651070262749813}, {'drank': 0.6190502751962174, 'stand': 0.5730098001413195, 'sit': 0.5042281591815706, 'propn': 0.18490670406953094}, {'adv': 1.0}, {'god': 0.47013773886788324, 'king': 0.531204059322631, 'propn': 0.17770681590382734, 'adv': 0.4929888177413552, 'think': 0.4713545024868827}, {'gut': 0.9744377054874274, 'propn': 0.2246578690462405}, {'just': 0.6932706666209794, 'know': 0.6524304078287819, 'adv': 0.3061214558688631}, {'smack': 0.5253928725550293, 'truck': 0.49457762021999285, 'luck': 0.4662249304570671, 'pull': 0.40520070632768906, 'fuck': 0.2858873711318873, 'propn': 0.1267691598341137}, {'bronx': 0.5803982169399887, 'shooting': 0.5803982169399887, 'crap': 0.5071867009932312, 'propn': 0.14004109719435462, 'adv': 0.1294992440027548, 'adj': 0.13665139709847463, 'adp': 0.11824678622151796}, {'care': 0.6747134833576738, 'wanna': 0.5078396207196749, 'everybody': 0.535593721959706}, {'shatter': 0.44659198362971536, 'raise': 0.4036435104984898, 'punk': 0.38674889923045563, 'sure': 0.3567870376134974, 'hand': 0.3375683200393395, 'niggas': 0.2807522100577274, 'propn': 0.11446957613692019, 'like': 0.19035194092614882, 'adv': 0.10585266659596355, 'adj': 0.22339767136601582, 'cconj': 0.14200177326693503, 'adp': 0.1933098178964543}, {'adj': 1.0}, {'chip': 0.5521600606578352, 'bit': 0.534190166823825, 'lil': 0.4852510480543107, 'nigga': 0.36532576295512287, 'adj': 0.15279729335911116, 'adp': 0.13221810582764298}, {'reflect': 0.3127681058008132, 'tonight': 0.2988550366294987, 'owe': 0.2889835569550972, 'debt': 0.2889835569550972, 'broke': 0.2651990081093812, 'bout': 0.2512859389380666, 'arm': 0.2512859389380666, 'sweet': 0.254271634334636, 'dime': 0.23551761520996925, 'sell': 0.21554964619804529, 'cash': 0.21657401631760542, 'time': 0.17170819390443692, 'rhyme': 0.1978199971929387, 'tell': 0.1667416467689022, 'like': 0.11991050979188983, 'adv': 0.06668094453146345, 'adj': 0.14072737335635, 'cconj': 0.08945275231208029, 'adp': 0.3044344951115361}, {'adp': 1.0}, {'admit': 1.0}, {'lookout': 0.4012221954574268, 'glock': 0.3460778667527361, 'clip': 0.3261823104023972, 'block': 0.28351107544699655, 'regular': 0.35286329701545804, 'rough': 0.3460778667527361, 'play': 0.2739933306965109, 'propn': 0.09250229433643636, 'adv': 0.34215605061888127, 'adj': 0.1805265455517713, 'adp': 0.2343190515328552}, {'know': 0.49504998827517765, 'propn': 0.5023737029976378, 'adv': 0.23227829561621421, 'hit': 0.6697708302328598}, {'finish': 0.7630140687549652, 'day': 0.5176643405070364, 'adv': 0.35212037204789254, 'adp': 0.1607619514632177}, {'ill': 0.9553492212329051, 'adj': 0.2954790440787327}, {'num': 1.0}, {'bang': 0.4845333023376512, 'chopper': 0.5550237554455042, 'shot': 0.43023688324001486, 'num': 0.5216055349752888}, {'adv': 1.0}, {'tramp': 0.6805812981523742, 'swing': 0.5870416105665665, 'just': 0.32860059741836467, 'adv': 0.29019457514732216}, {'life': 0.5305755882044281, 'let': 0.5218541764396082, 'propn': 0.2147107115157754, 'adv': 0.1985479646878072, 'hit': 0.5725099488835511, 'adp': 0.1812957204187014}, {'let': 0.8750610330154123, 'adv': 0.33293129561247553, 'adj': 0.3513188592999216}, {'dear': 0.7644799322595393, 'bear': 0.5936760450596461, 'propn': 0.18445716298222414, 'adv': 0.1705718081024425}, {'wit': 0.48694633725862907, 'lick': 0.41430334387007967, 'house': 0.40081995810046983, 'ya': 0.32232256868079723, 'bish': 0.39335420953755745, 'tell': 0.2716843426107235, 'hit': 0.3132851905454335}, {'troubled': 0.4681845605012721, 'comfort': 0.48998069366556335, 'body': 0.35209958716112616, 'mind': 0.32142944696241793, 'food': 0.34811584800010514, 'adv': 0.31338593849408225, 'adj': 0.11023134190477583, 'adp': 0.2861551846059519}, {'old': 0.47600050380972136, 'lot': 0.5240813782672704, 'grow': 0.553257343333656, 'propn': 0.34379787023461733, 'adv': 0.1589589241197937, 'adj': 0.16773811484010007, 'adp': 0.14514665365919732}, {'ask': 0.5552373145744334, 'punk': 0.5945982362031751, 'try': 0.4842795121157114, 'adv': 0.16274075758353526, 'adj': 0.17172881633333079, 'cconj': 0.21831737359885872}, {'chance': 0.4459529919498621, 'opportunity': 0.4807642471476075, 'blow': 0.3747193103067092, 'miss': 0.41783697051620705, 'shot': 0.37911212088626445, 'num': 0.2298117482877216, 'adv': 0.2417642081341283}, {'say': 1.0}, {'hella': 0.34637661262119507, 'doc': 0.30462819585346196, 'shock': 0.31155660582783407, 'throw': 0.2434678707568367, 'way': 0.20667333950348477, 'make': 0.1838588241759359, 'rock': 0.22405596242794454, 'fuse': 0.33096851415672635, 'rap': 0.209674981802197, 'propn': 0.3194302980712678, 'lose': 0.46319461159305436, 'adj': 0.0779246188824858, 'cconj': 0.09906490067511411, 'adp': 0.1348590054114187}, {'bitches': 0.7120776466269452, 'come': 0.3753086245547779, 'snitch': 0.5496271417254598, 'propn': 0.1641704192949412, 'adv': 0.1518121866526421}, {'human': 1.0}, {'super': 0.8734429125583807, 'intj': 0.4869265637665838}, {'fuck': 1.0}, {}, {'jackson': 0.5584641233454241, 'michael': 0.5159955436726987, 'guess': 0.4205292549695085, 'right': 0.32591750186582197, 'propn': 0.25750924699039895, 'adv': 0.23812476106706507, 'adj': 0.12563811292544178}, {'raw': 0.3887928424754186, 'loud': 0.3725198100431511, 'scream': 0.3691336396110198, 'door': 0.3725198100431511, 'start': 0.33115147755578705, 'come': 0.25206003860069837, 'shit': 0.24702735618363666, 'yes': 0.3327659874467542, 'intj': 0.18739795444587512, 'adj': 0.21517852608485746, 'adp': 0.09309882560176726}, {'cop': 0.6656331757167712, 'shit': 0.46656597798885663, 'hit': 0.5552744680254758, 'adp': 0.17583779095385807}, {'live': 0.8340732070171372, 'adv': 0.5516537730643633}, {'choose': 0.25746448371714253, 'bear': 0.2349976011095441, 'lock': 0.22757702786471903, 'cold': 0.4385870051425145, 'deep': 0.21175165616890274, 'block': 0.22378292856532647, 'knock': 0.23847497328988357, 'die': 0.21531834645590534, 'brother': 0.4385870051425145, 'shit': 0.16358524071299443, 'world': 0.17274341223570466, 'time': 0.17386430700102234, 'baby': 0.19738254741337194, 'propn': 0.07301455258134903, 'adj': 0.21374169765852707, 'cconj': 0.18115199323253803, 'adp': 0.1849543390430093}, {'movement': 1.0}, {'alright': 0.3079664837126105, 'song': 0.283470234508711, 'justice': 0.32055928736504474, 'poetic': 0.3383078472624467, 'just': 0.577925994097777, 'know': 0.3625870915726184, 'want': 0.23334397484557404, 'propn': 0.09198779121636297, 'adv': 0.255189719132302, 'adj': 0.08976122322344621, 'adp': 0.07767191846444192}, {'unpredictable': 0.42152715940695545, 'natural': 0.3707209245498524, 'talent': 0.37915253589220893, 'witty': 0.3635920987361702, 'game': 0.27552906117397535, 'tang': 0.328346301035106, 'wu': 0.299481768259599, 'propn': 0.2915508898440406, 'adj': 0.18966259296106927, 'cconj': 0.12055821512459067}, {'square': 0.37524142897249574, 'lard': 0.41568085778927827, 'coat': 0.37524142897249574, 'color': 0.3582182170886031, 'feed': 0.3536692982114205, 'stop': 0.2945019218724438, 'sugar': 0.3632468136096625, 'baby': 0.2711369972860522}, {'love': 0.7986459493190684, 'num': 0.6018011695205022}, {'jerk': 0.515256849126508, 'hurt': 0.4810187175639641, 'pussy': 0.4533655911428537, 'away': 0.4343898483761688, 'shit': 0.28805495145330895, 'adv': 0.11889193190808396, 'adp': 0.1085611654651776}, {'product': 0.7429211312543286, 'sell': 0.6131795445280792, 'propn': 0.20513055674761435, 'adp': 0.17320650564150197}, {'propn': 0.840281253235296, 'adj': 0.40997110673483506, 'adp': 0.3547549958829824}, {'pack': 0.9339520148481281, 'cconj': 0.35739842467632943}, {'just': 0.5345673259064173, 'heart': 0.7823465137538848, 'adv': 0.23604421179969398, 'adp': 0.21553384088413183}, {'revolve': 0.7280563553944737, 'science': 0.6681342887905094, 'adp': 0.1533965955036683}, {'dry': 0.33944785622137474, 'steak': 0.35104316167236665, 'dick': 0.5220321139141105, 'pussy': 0.29867429857335726, 'spit': 0.25960166721624744, 'bomb': 0.29516722048083804, 'baby': 0.2289756359719066, 'adj': 0.2479532349563779, 'cconj': 0.10507360808129086, 'hot': 0.2726113624080471, 'adp': 0.21455816617587958}, {'family': 0.4722465480794434, 'type': 0.42863359560049774, 'provide': 0.5158595005583889, 'life': 0.3267413792282161, 'right': 0.3346997858291832, 'adv': 0.1222706759739834, 'adj': 0.12902360028962245, 'cconj': 0.16402659815009848, 'adp': 0.22329264690917486}, {'spree': 0.3810728890771748, 'shopper': 0.3810728890771748, 'property': 0.36412137334807443, 'sheez': 0.3810728890771748, 'seize': 0.33514256580365553, 'knee': 0.32869789862640936, 'bee': 0.32869789862640936, 'propn': 0.2635705373342936, 'cconj': 0.10898815488935551, 'adp': 0.14836772731652673}, {'wiz': 1.0}, {'fate': 0.33568814767470967, 'relate': 0.33568814767470967, 'choose': 0.28560995624722874, 'voice': 0.26454455272444916, 'plate': 0.2978841006041833, 'cue': 0.33568814767470967, 'crew': 0.2711681675707529, 'yo': 0.1961670614719908, 'tape': 0.2736556721832583, 'gate': 0.32460003363761364, 'food': 0.24959892753885154, 'adj': 0.1580716584933657, 'adp': 0.20517315599864935}, {'think': 1.0}, {'dawn': 0.6593141924358139, 'break': 0.41828420985948184, 'say': 0.3247737663611536, 'stop': 0.44633264413095164, 'adv': 0.14056322329303444, 'adp': 0.2566987868282128}, {'share': 0.7378904104607943, 'bar': 0.6270663641360176, 'adj': 0.18875412648886272, 'adp': 0.16333216723187863}, {'book': 0.2086827558335636, 'cool': 0.19813076983219266, 'johnny': 0.2176509385382697, 'say': 0.12644440759643638, 'mo': 0.6926610495627583, 'intj': 0.6035098998584627, 'propn': 0.05918050454434796, 'adv': 0.054725582359287615, 'adj': 0.05774803817592329}, {'mouth': 0.6171064394006723, 'live': 0.5154257556959562, 'way': 0.47704039537369614, 'adv': 0.17045060341950466, 'adp': 0.31127959424143276}, {'nosed': 0.7387134438346383, 'coat': 0.6371840234122486, 'adj': 0.16618894427822112, 'adp': 0.14380612993137068}, {'grade': 0.7538113200320297, 'little': 0.5147752956608925, 'propn': 0.17379217149301335, 'adj': 0.33917105071432335, 'adp': 0.14674524951048562}, {'represent': 0.9886605592791032, 'propn': 0.150167568156146}, {'fuck': 1.0}, {'gay': 0.9480789183115425, 'adv': 0.21876261206517328, 'adj': 0.23084471883852556}, {}, {'spree': 0.3810728890771748, 'shopper': 0.3810728890771748, 'property': 0.36412137334807443, 'sheez': 0.3810728890771748, 'seize': 0.33514256580365553, 'knee': 0.32869789862640936, 'bee': 0.32869789862640936, 'propn': 0.2635705373342936, 'cconj': 0.10898815488935551, 'adp': 0.14836772731652673}, {'screw': 1.0}, {'offend': 0.7077509709189371, 'prolly': 0.6762676194140006, 'adv': 0.15088975620803963, 'adp': 0.1377786324757963}, {'steels': 0.5647136145075353, 'bobby': 0.5647136145075353, 'rza': 0.4417060174457499, 'propn': 0.4087699369228179}, {'strong': 0.5613291924926871, 'worthy': 0.6116723732328732, 'cause': 0.40276090396958236, 'propn': 0.15262853930376039, 'adv': 0.14113914307348419, 'adj': 0.29786831938359154, 'adp': 0.12887527033087154}, {'friend': 0.9142170446222272, 'adv': 0.29924308500527697, 'adp': 0.27324123297687963}, {'mike': 0.43892025287422365, 'president': 0.40398853376519195, 'lie': 0.3212271238223282, 'shit': 0.23727377779235195, 'propn': 0.4236186259661465, 'adv': 0.09793248715405166, 'adj': 0.10334123024413094, 'strip': 0.3962199841710898, 'adp': 0.35769172127060006}, {'irish': 0.21649010058614168, 'fine': 0.19472712208692997, 'shaolin': 0.18076650008628636, 'mc': 0.15063786979270793, 'ghost': 0.1702724545245368, 'sip': 0.1702724545245368, 'sure': 0.15556954799708764, 'bring': 0.14919796399074123, 'start': 0.1499070068442419, 'realize': 0.1903967714870348, 'little': 0.1478403846895695, 'sell': 0.14919796399074123, 'yo': 0.12088328142946149, 'wu': 0.15380939682617836, 'shit': 0.22365071022759966, 'make': 0.11491426929285263, 'cell': 0.1686337929878231, 'cat': 0.16566102168909969, 'vibe': 0.15556954799708764, 'man': 0.11055644480707241, 'rhyme': 0.13692595343312722, 'propn': 0.5490327891946297, 'like': 0.0829989946056522, 'adv': 0.0923096960403558, 'adj': 0.09740789629151667, 'adp': 0.3371548607225863}, {'atrocities': 0.2793310408429676, 'bug': 0.2409395388072772, 'self': 0.2270882451191149, 'horror': 0.2580892241045136, 'mama': 0.2332378916261405, 'bag': 0.4351668070646322, 'yo': 0.3119445437069225, 'nigga': 0.150248437577035, 'niggas': 0.15795008475817168, 'snitch': 0.21560559062760565, 'fuck': 0.29046787603101504, 'man': 0.28529569450285064, 'everybody': 0.18258329913662563, 'tell': 0.1489158161589851, 'propn': 0.0644001315228859, 'adv': 0.238209168964663, 'cconj': 0.15977927382093446, 'adp': 0.05437767010819529}, {'tomb': 0.8770862182288743, 'say': 0.4803329738764261}, {'rhymin': 0.5303217987625259, 'cypher': 0.5303217987625259, 'step': 0.4365235856510073, 'right': 0.3239021000673269, 'adv': 0.11832612508702639, 'adj': 0.12486119460316737, 'cconj': 0.31746993489162867, 'adp': 0.10804452277179749}, {'alright': 0.8916749155877435, 'intj': 0.4526763136188932}, {'ounce': 0.3437662891589603, 'mc': 0.23919902741624363, 'deck': 0.3284743074283145, 'way': 0.20511583172880613, 'make': 0.18247324851927285, 'tape': 0.2677748917168509, 'let': 0.19263105056072768, 'rap': 0.20809485339716383, 'propn': 0.39627880539451377, 'comin': 0.2761906765569561, 'adv': 0.3664481837191223, 'cconj': 0.09831833920100268, 'adp': 0.3346067413380175}, {'uh': 0.813627111783685, 'oh': 0.17447761519916266, 'intj': 0.5545885725156553}, {'student': 0.5961142283004298, 'school': 0.4601191471107829, 'lead': 0.4455256013103045, 'new': 0.3645361622141485, 'adv': 0.12708923657654403, 'adj': 0.26821657327966886, 'adp': 0.11604618933684922}, {'pew': 0.5767780385791909, 'church': 0.5329167714701346, 'prey': 0.5329167714701346, 'like': 0.22112788152012797, 'adp': 0.22456398553387474}, {}, {'apple': 0.8156290314451091, 'look': 0.5471103829407644, 'adv': 0.1882007224808757}, {'adj': 1.0}, {'crush': 0.49637612272641557, 'mic': 0.3557700096587769, 'toss': 0.5273034329190962, 'heat': 0.41244463274235116, 'hold': 0.3501075893090013, 'like': 0.21157155043945247, 'adp': 0.10742957935844913}, {'deep': 0.9477888029430834, 'adj': 0.3188987065130819}, {}, {'little': 0.8268538050656741, 'adv': 0.25813861204329314, 'adj': 0.2723954278839399, 'cconj': 0.346293974801111, 'adp': 0.23570841288581815}, {'joyce': 0.4676408750480928, 'jazzy': 0.4676408750480928, 'sexy': 0.4676408750480928, 'voice': 0.3521384106094608, 'sound': 0.30677442966013324, 'propn': 0.2156304130589275, 'like': 0.1792863616415343, 'adv': 0.09969921699620381, 'adj': 0.1052055353455609, 'cconj': 0.13374689615354243, 'adp': 0.09103614534114234}, {'mr': 0.36647138093485815, 'nigga': 0.8078143471755809, 'propn': 0.46166514645681067}, {'hey': 0.8916749155877435, 'intj': 0.4526763136188932}, {}, {'better': 0.29607794745420457, 'sure': 0.32314131160199144, 'gang': 0.3655791260651444, 'word': 0.29607794745420457, 'roll': 0.3470937183695058, 'strap': 0.41548620425275073, 'gun': 0.3057349572518953, 'propn': 0.10367486783945054, 'adv': 0.0958705499762079, 'adj': 0.20233082742273384, 'cconj': 0.12861072411771407, 'adp': 0.3501606365434798}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {}, {'lot': 0.7290345254400546, 'thing': 0.6540193282880525, 'adp': 0.2019093334693539}, {'compton': 0.6894109717198972, 'thang': 0.6646700173213586, 'propn': 0.18072748615169473, 'cconj': 0.22419602114119067}, {'ly': 0.44263512503818403, 'prob': 0.41667376586696037, 'attention': 0.41667376586696037, 'pay': 0.34373939635074313, 'makin': 0.41667376586696037, 'big': 0.3097367212435454, 'adj': 0.20843175073909637, 'cconj': 0.13248874990102516, 'adp': 0.09017977567277195}, {'bulletproof': 0.39405665369875076, 'orbit': 0.39405665369875076, 'driver': 0.4124017936775169, 'glass': 0.3395832867324989, 'inside': 0.27918158766823886, 'real': 0.26676477978748087, 'line': 0.2946439258709706, 'star': 0.30189857812433, 'propn': 0.09507976511653335, 'adv': 0.0879224595438754, 'adj': 0.1855567115549972, 'adp': 0.1605653895173864}, {'gosh': 0.9310696503703251, 'intj': 0.36484148086433443}, {'yawk': 0.9660854504636703, 'propn': 0.2582225830604425}, {'rule': 0.4193531417318716, 'live': 0.3668619084876446, 'today': 0.44757118549817004, 'day': 0.3567156314875476, 'world': 0.31039547764698344, 'time': 0.31240956699238814, 'adv': 0.12132073917981884, 'adj': 0.12802119914761215, 'cconj': 0.16275225416235792, 'adp': 0.33233678591345445}, {'dangerous': 0.9637787463616274, 'adj': 0.2667030709639653}, {'fuck': 0.6196593198945574, 'intj': 0.4670099264016185, 'yeah': 0.6308122192143788}, {'way': 1.0}, {'giant': 0.6762883771727127, 'eye': 0.47323705849716313, 'open': 0.541596809588808, 'adj': 0.1592281796959187}, {'admit': 0.5073221827671419, 'pain': 0.44289003876599714, 'little': 0.4016520787557538, 'cause': 0.35782781041689726, 'want': 0.3439766262680738, 'intj': 0.23047138767054115, 'adv': 0.12539327931868036, 'adj': 0.13231866284325505, 'adp': 0.2289951946421504}, {'vibe': 0.6324954855631482, 'bitch': 0.47708078109676244, 'propn': 0.20292634683483277, 'adv': 0.18765068990341374, 'kill': 0.5440142510903391}, {'track': 0.4560643989194748, 'flip': 0.4596569775617452, 'cut': 0.4117791938417776, 'yo': 0.33818429469311406, 'rza': 0.45265613806236094, 'propn': 0.27926903671279235, 'adp': 0.11790348242072338}, {'ask': 0.5552373145744334, 'punk': 0.5945982362031751, 'try': 0.4842795121157114, 'adv': 0.16274075758353526, 'adj': 0.17172881633333079, 'cconj': 0.21831737359885872}, {'lie': 0.8870897557825633, 'adj': 0.28538358034248806, 'cconj': 0.362805701797167}, {'hol': 0.4089215969394665, 'lil': 0.4239280375682181, 'bitch': 0.6432299067904385, 'propn': 0.13679894509670015, 'humble': 0.45032267362638106, 'adj': 0.13348772141593296}, {'dough': 0.6563044681646774, 'feel': 0.4886479533964848, 'just': 0.4068057965684363, 'adv': 0.3592593447185488, 'adj': 0.18955049411496117}, {'morning': 0.4745879794028795, 'butter': 0.44305224008307437, 'store': 0.45173901368704583, 'bread': 0.44305224008307437, 'food': 0.36493111030923475, 'adj': 0.11555591686872747, 'cconj': 0.14690524754809112, 'adp': 0.09999250712937237}, {'dicke': 0.477695797646474, 'ovary': 0.45644614158424657, 'break': 0.30306128938852267, 'remember': 0.3625434315705933, 'long': 0.3206951601204571, 'hold': 0.30306128938852267, 'adv': 0.20368577482809888, 'think': 0.2921208461612332, 'cconj': 0.13662263854552067}, {'reign': 0.3009077889351761, 'flu': 0.31491642311734863, 'million': 0.25601815562313573, 'devil': 0.24530244459517872, 'die': 0.2141087777839933, 'battle': 0.250246513343969, 'king': 0.2170301968965083, 'wu': 0.22373819846355414, 'year': 0.21602869074522857, 'just': 0.15204902787388513, 'num': 0.38291824844793676, 'propn': 0.43562632365391735, 'adv': 0.06713895743355619, 'cconj': 0.09006717844198173, 'adp': 0.24522045693525218}, {'clang': 0.5024925948821846, 'yang': 0.48013988659446194, 'yin': 0.48013988659446194, 'mic': 0.32394890954082695, 'intj': 0.1969027154598588, 'propn': 0.11585031546093426, 'like': 0.19264797817123097, 'cconj': 0.2874292154154402, 'adp': 0.09782076662104833}, {'bulletproof': 0.30607170854050525, 'jam': 0.2716029631982239, 'fam': 0.27629558380822505, 'lock': 0.23018213608630864, 'combine': 0.3203207468044504, 'summer': 0.29596185500133715, 'new': 0.19588275228823307, 'face': 0.20449695660327505, 'man': 0.32716066802837807, 'num': 0.2596597071559928, 'propn': 0.2954014442714591, 'like': 0.24561215375778667, 'adj': 0.07206281026308141, 'cconj': 0.09161283357506776, 'adp': 0.3117858983014933}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'rappers': 0.519198133956305, 'attack': 0.4419659430894816, 'feel': 0.32589653274653374, 'bomb': 0.4514692529941225, 'drop': 0.38205123940488517, 'propn': 0.259107510042208, 'adp': 0.1093915677689574}, {'degree': 0.5508144696773745, 'seed': 0.4580785396879997, 'god': 0.3516056170498893, 'need': 0.3364183103396494, 'hard': 0.3839118925240007, 'propn': 0.26580599468699534, 'adv': 0.12289847785037838, 'adj': 0.12968607522660816}, {'staple': 0.767596503987352, 'town': 0.6409333873862362}, {'merit': 0.3587793843035966, 'stockholder': 0.3587793843035966, 'gunman': 0.3587793843035966, 'dispose': 0.3587793843035966, 'sufficient': 0.34281956519647655, 'affair': 0.34281956519647655, 'fear': 0.27454261974935146, 'god': 0.21883463742026152, 'try': 0.22761795969060866, 'propn': 0.08271704951631531, 'adj': 0.08071488017964384, 'cconj': 0.20522427193538256, 'adp': 0.13968792685844147}, {'commercial': 0.6817427296002664, 'mil': 0.6817427296002664, 'adp': 0.2654311610839163}, {'way': 0.5387391334181606, 'make': 0.47926812353150916, 'propn': 0.2081661843562531, 'look': 0.5595972616226815, 'adp': 0.3515394094058161}, {'isle': 0.7248326789783816, 'long': 0.5092612487394824, 'fuck': 0.3944105828765474, 'propn': 0.17489089505068448, 'adj': 0.17065765426923662}, {'slow': 0.8735391859108655, 'adv': 0.4867538296492206}, {}, {'cconj': 1.0}, {'emotion': 0.44625327797873526, 'scare': 0.44625327797873526, 'vital': 0.43442934159361707, 'feel': 0.28010962772890924, 'feeling': 0.37621604465262865, 'shit': 0.24947842331831585, 'know': 0.21945751329635785, 'adj': 0.21731358117156302, 'adp': 0.18804515081033987}, {'die': 0.885516188934791, 'adv': 0.27767490119250265, 'cconj': 0.3725019844002676}, {'spock': 0.6032894160254398, 'shocks': 0.619709245429073, 'propn': 0.46390185855360616, 'cconj': 0.19182647698355584}, {'lacka': 0.4174014085271482, 'cue': 0.3988338673957621, 'jumah': 0.4174014085271482, 'far': 0.34370011083235236, 'doom': 0.2673304938996302, 'say': 0.20560914521039939, 'catch': 0.27283228531699305, 'll': 0.3017402343542937, 'propn': 0.1924648655291968, 'adv': 0.17797671599596404, 'adp': 0.16251195017273526}, {'foul': 0.49503635062649953, 'sound': 0.37649126819835055, 'girl': 0.38221925351794006, 'town': 0.4792124832229332, 'meet': 0.4229337584005689, 'adv': 0.12235662759398908, 'adj': 0.12911429895776605, 'cconj': 0.16414190259020825}, {'wanna': 0.5800547998451101, 'man': 0.4779495902633278, 'just': 0.4518813412619881, 'adv': 0.3990665716215038, 'cconj': 0.2676746965577661}, {'tony': 0.6656688628087857, 'champion': 0.7071441603968674, 'propn': 0.17062292957870562, 'adj': 0.16649299506419954}, {'womb': 0.9482923147079615, 'adv': 0.23438652425043308, 'adp': 0.21402019324264168}, {'student': 0.8288425033018866, 'hold': 0.5258369007813161, 'propn': 0.1910907075107593}, {'chance': 0.4459529919498621, 'opportunity': 0.4807642471476075, 'blow': 0.3747193103067092, 'miss': 0.41783697051620705, 'shot': 0.37911212088626445, 'num': 0.2298117482877216, 'adv': 0.2417642081341283}, {'style': 0.4479247401331124, 'wild': 0.507528951644658, 'batter': 0.6078282963905578, 'hit': 0.37366102061399514, 'adj': 0.13674360974834057, 'adp': 0.11832657940129612}, {'gon': 0.578227751692279, 'okay': 0.6416572979433532, 'tell': 0.4154310971846824, 'adv': 0.16613328754279277, 'adj': 0.17530871336053744, 'adp': 0.1516976217709247}, {'fashion': 0.6077940163864384, 'clothe': 0.5110507482527382, 'designer': 0.6077940163864384}, {'sinner': 0.4725418226391243, 'prophet': 0.4725418226391243, 'false': 0.5253537648886617, 'bear': 0.38982833614803364, 'tell': 0.28007443939813115, 'adj': 0.11818924955016719, 'cconj': 0.15025298083536923, 'adp': 0.10227117484330688}, {'later': 0.6426656326033933, 'prophet': 0.6922987889974033, 'adv': 0.3281817658298667}, {'right': 0.5968458580541744, 'intj': 0.4007484206620135, 'yeah': 0.5413096944904383, 'adv': 0.43607286055330996}, {'adp': 1.0}, {'dk': 0.9673146071327873, 'propn': 0.2535792791762402}, {'adj': 1.0}, {}, {'adv': 1.0}, {'rag': 0.4895009241313208, 'pen': 0.35386110479409505, 'need': 0.28567084560096934, 'pad': 0.4522766726040915, 'just': 0.23634251564517883, 'intj': 0.19181190362450173, 'rhyme': 0.3096002106406177, 'like': 0.18766717023751994, 'adv': 0.208719388996062, 'adp': 0.28587499287306456}, {'dot': 0.7035410269123483, 'good': 0.5420541981024916, 'nigga': 0.45957292105887065}, {'stick': 0.9348414836740658, 'cconj': 0.35506534666462664}, {'adj': 0.7561939568785191, 'adp': 0.6543475373075138}, {'good': 0.48559318452976324, 'shit': 0.39536277883858606, 'street': 0.507774828910496, 'adv': 0.32636442695057916, 'adj': 0.17219465352666838, 'cconj': 0.43781917686707145, 'adp': 0.14900297264713142}, {'curb': 0.5412889186490942, 'blade': 0.5190743970395277, 'love': 0.3236916511399705, 'ride': 0.46049299312484204, 'adv': 0.2565960766790611, 'adp': 0.23429991161727332}, {}, {'stop': 0.9538179706338747, 'adv': 0.30038521750558395}, {'blind': 0.5016121130845844, 'lie': 0.37964881706763914, 'truth': 0.377757822574378, 'rock': 0.3511763720493269, 'true': 0.4057518608152546, 'adv': 0.11574350402954088, 'adj': 0.24427187436512335, 'adp': 0.3170589330363823}, {'good': 0.942496605615773, 'adj': 0.33421572135784716}, {'rasclaat': 0.5964050294445433, 'bumba': 0.5964050294445433, 'roof': 0.524520944825779, 'adp': 0.11610279990413158}, {'product': 0.7429211312543286, 'sell': 0.6131795445280792, 'propn': 0.20513055674761435, 'adp': 0.17320650564150197}, {'forth': 0.3062986032609589, 'future': 0.2883336302999543, 'live': 0.2066587286135509, 'shock': 0.2883336302999543, 'steady': 0.32055820451214995, 'hustle': 0.2765004051213405, 'yo': 0.17899260772501868, 'come': 0.1689538484954482, 'check': 0.20735515738959776, 'rock': 0.20735515738959776, 'num': 0.3897782941338312, 'propn': 0.36952553624228446, 'adv': 0.13668352659841196, 'adj': 0.1442324626205708, 'cconj': 0.0916807472949052, 'adp': 0.18721021741264096}, {'sure': 0.7006280219778569, 'shot': 0.6519073801260128, 'adj': 0.21934466797135374, 'adp': 0.18980268488398808}, {'dark': 0.6877263653490825, 'villain': 0.669100898582762, 'propn': 0.20159366225182285, 'adj': 0.19671407997237644}, {'nasty': 0.7474419612159047, 'set': 0.6123690159876642, 'adv': 0.17716109473657798, 'adj': 0.18694557866865694}, {'scream': 0.3095503458024646, 'finger': 0.3400477540455471, 'hug': 0.3705451622886296, 'busy': 0.3832027303403246, 'mic': 0.258545707392283, 'good': 0.25443070490432923, 'snap': 0.31868615801172856, 'come': 0.21137404923065012, 'make': 0.21287584893352446, 'time': 0.22017045276556454, 'propn': 0.18492176315655415, 'adv': 0.0855007173187001, 'adj': 0.18044572483023247, 'cconj': 0.22939910472342004, 'adp': 0.07807138273606984}, {}, {'healthy': 0.39373420322031966, 'attitude': 0.3762194659343976, 'earn': 0.35415350657004246, 'buck': 0.3200947842489893, 'destruct': 0.3762194659343976, 'self': 0.3200947842489893, 'america': 0.30967738954839863, 'way': 0.23493030329181014, 'propn': 0.09077592807418074, 'adv': 0.16788520362619294, 'adj': 0.08857869327481606, 'cconj': 0.11260933421354616, 'adp': 0.15329731023387397}, {'hill': 0.7378730918312758, 'fuckin': 0.6217304994515196, 'cconj': 0.2626680155693069}, {'string': 0.3887814148269453, 'jean': 0.4507301616065521, 'palm': 0.3964041189383163, 'guess': 0.3394044686653059, 'pull': 0.33215497157119006, 'blue': 0.3420780762700806, 'propn': 0.3117492592430336, 'adj': 0.20280223769289557, 'adp': 0.08774411881217781}, {'sheep': 0.7091342934485947, 'beginnin': 0.3276039766825255, 'kool': 0.3276039766825255, 'sleep': 0.2492249912603056, 'num': 0.2874206632072195, 'propn': 0.24523773813855387, 'lose': 0.2370737310579162, 'adj': 0.07976724977952689, 'cconj': 0.10140742155508856, 'adp': 0.06902396267021721}, {'mean': 1.0}, {'life': 0.5073392330843163, 'die': 0.6054475173153069, 'bitch': 0.48267897245623537, 'propn': 0.20530753795900378, 'adv': 0.18985263245159484, 'cconj': 0.2546880615717068}, {'sophisticated': 0.9716132272193309, 'adj': 0.23657501282349544}, {'joint': 0.26871043833421976, 'whip': 0.24279275600715305, 'flesh': 0.2748219411646022, 'mask': 0.24279275600715305, 'raw': 0.24839248611695944, 'wear': 0.2590672023342866, 'bird': 0.25158732738466905, 'dead': 0.22087283865511834, 'cover': 0.2823018161142198, 'ugly': 0.2590672023342866, 'brother': 0.2115664945570263, 'shit': 0.15782116448101183, 'flow': 0.22671724475695015, 'drop': 0.20773140671912446, 'just': 0.14752014736351848, 'propn': 0.07044181774727322, 'like': 0.11713799581576974, 'adv': 0.13027835867054965, 'hit': 0.18782780417917228, 'adj': 0.2749470834539864, 'adp': 0.11895820200061567}, {'troop': 0.3741822101473226, 'elementary': 0.4160013430290193, 'eventually': 0.39749608193117425, 'knowledge': 0.347355868037156, 'plate': 0.35273143743667323, 'state': 0.3210964846405002, 'want': 0.24329248147949387, 'adv': 0.0886898694753684, 'adj': 0.09358814922527758, 'adp': 0.3239336914011675}, {'hop': 0.5741986917623194, 'hip': 0.5891462733967289, 'adv': 0.1767899573847892, 'think': 0.5070951271647526, 'adj': 0.18655394365929512}, {'valuable': 0.5449258967133875, 'understand': 0.4552265605695733, 'start': 0.4083858309800949, 'people': 0.36970315030708994, 'intj': 0.23110471955377587, 'adv': 0.12573785815138733, 'adj': 0.26536454505002965, 'adp': 0.22962446996929745}, {'yo': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'fate': 0.6412467509818784, 'destruction': 0.3206233754909392, 'skate': 0.3206233754909392, 'peace': 0.2507842393911795, 'rich': 0.2613747489907236, 'lot': 0.23585775445903473, 'world': 0.1830276413007629, 'tell': 0.17888696213690095, 'propn': 0.0773614528429043, 'adv': 0.214613778215558, 'hit': 0.2062784902531249, 'adj': 0.15097783185573038, 'cconj': 0.0959684123671321, 'adp': 0.06532184736745773}, {'pace': 0.5315425323873647, 'change': 0.4034099832296502, 'start': 0.7361255764107589, 'adv': 0.11332280197651576}, {'come': 0.9270313600105353, 'adv': 0.37498380972652334}, {'corner': 0.5957218317505253, 'catch': 0.49508413826271463, 'shot': 0.5064331244997757, 'propn': 0.17462431542084958, 'adv': 0.16147914636882915, 'adp': 0.29489577714448983}, {'bow': 0.8272774330355878, 'bitch': 0.4692822168865096, 'adv': 0.18458327236681588, 'cconj': 0.24761919405912255}, {'coupe': 0.5747968520111055, 'room': 0.45675899234784734, 'shoot': 0.20308108016236137, 'juice': 0.22837949617392367, 'propn': 0.06626007757094553, 'hop': 0.5970208942246201, 'cconj': 0.08219693677055738}, {'party': 0.5484357580865332, 'homie': 0.27003884342881235, 'approach': 0.29881129130739986, 'wanna': 0.40087528450173376, 'good': 0.2051754420733603, 'game': 0.21139182224859973, 'hear': 0.20991324189585372, 'nigga': 0.347910144680294, 'propn': 0.22368411382716902, 'adv': 0.13789725167054873, 'adj': 0.07275661044175512, 'cconj': 0.18498971160166727, 'adp': 0.12591507359282625}, {'propn': 1.0}, {'hollow': 0.5007798099940094, 'breathe': 0.4584417585826406, 'drum': 0.46487727336760415, 'inside': 0.37689869618154054, 'deep': 0.3722574088382495, 'propn': 0.12835889288033217, 'adv': 0.11869643927428247, 'adp': 0.10838265959161038}, {'velour': 0.9139989398047415, 'adv': 0.19486102155745416, 'adp': 0.35585828684097526}, {'honor': 0.5241536200142339, 'crook': 0.5068403036164612, 'royalty': 0.4824385546819306, 'trust': 0.43590634968056213, 'adp': 0.2135757114480121}, {'94': 0.5863148793923284, 'cousin': 0.4895655201291402, 'yo': 0.3273852540137839, 'fuck': 0.30484552878283877, 'num': 0.23764047662069518, 'adv': 0.1250000534761364, 'kill': 0.3623850810944212, 'adp': 0.11413853968720143}, {'stitch': 0.32408031825217554, 'rib': 0.3133756223883209, 'switch': 0.28320077952298844, 'bell': 0.2925522295386877, 'sound': 0.22249549911613997, 'oh': 0.2090621348684685, 'ding': 0.33916773968484176, 'time': 0.18620146661956402, 'hard': 0.22588057351297977, 'intj': 0.1329035484711689, 'adv': 0.2169277316069096, 'hit': 0.2085025730499185, 'adj': 0.07630283306996635, 'cconj': 0.09700313825987748, 'adp': 0.4621830063349449}, {'come': 0.3863930395535014, 'fiend': 0.5520380814007189, 'fast': 0.5710507008391267, 'adv': 0.46888748409310527}, {'let': 0.7038939760668764, 'niggas': 0.7103050545059943}, {}, {'car': 0.6567310951763486, 'park': 0.7277039330025948, 'propn': 0.19786675951515661}, {'nickel': 0.3508443206471188, 'dude': 0.31557519108349863, 'member': 0.33523748219078686, 'bite': 0.29748418752032374, 'use': 0.23853582465662068, 'rob': 0.30262397102293775, 'little': 0.23959044404426239, 'fist': 0.32416425408372124, 'point': 0.2818773490639918, 'probably': 0.2684706065305433, 'everybody': 0.22932758691545113, 'propn': 0.16177522072410117, 'adv': 0.0747986455471531, 'adj': 0.15785944533969065, 'adp': 0.06829923616762701}, {'humor': 0.36238456144421677, 'guys': 0.3922103182914917, 'neighborhood': 0.3747633689802086, 'escape': 0.32749066282165057, 'negro': 0.3527828123637998, 'nice': 0.3151118552856587, 'crack': 0.2715832026929578, 'll': 0.2835295495888331, 'propn': 0.18084918887911636, 'adv': 0.08361771546910263, 'adj': 0.17647172736842437, 'cconj': 0.1121734978908446, 'adp': 0.07635199882090707}, {'breaker': 0.6459122320840845, 'ball': 0.4942603841876821, 'passion': 0.5680610952640779, 'adp': 0.12574041957213677}, {'kufi': 0.3173126638731094, 'jungle': 0.28541435229811757, 'dollar': 0.22938589953136165, 'stand': 0.2267066982867144, 'war': 0.24281174958941348, 'black': 0.18803417755945612, 'block': 0.22421903774553842, 'kid': 0.2097059492803742, 'kick': 0.22544065203670133, 'rock': 0.41051151667919505, 'gun': 0.21573795982033614, 'num': 0.12861064136516745, 'propn': 0.36578421835318914, 'like': 0.1216528238741797, 'adv': 0.0676498266492961, 'adj': 0.1427721589617817, 'cconj': 0.09075251152687655, 'adp': 0.24708637185717916}, {'cconj': 0.8266727668787891, 'adp': 0.5626829804614382}, {'say': 1.0}, {'shifty': 0.46337691282533766, 'swift': 0.4075265702436515, 'num': 0.7512489570994187, 'propn': 0.10683214454277813, 'adj': 0.1042462684117368, 'adp': 0.18041215058182847}, {'flu': 0.5135457574469322, 'shorty': 0.4174981931655465, 'month': 0.42880422225544185, 'need': 0.29970331730221234, 'tell': 0.27377940301373926, 'num': 0.2081462757566539, 'like': 0.19688559170461212, 'adv': 0.32845787852002495, 'adj': 0.11553279283187076, 'adp': 0.0999724975056083}, {'sleep': 0.769975277067927, 'time': 0.601384518845709, 'adp': 0.21324805555241083}, {'ho': 0.5764154677865669, 'bow': 0.795407817928344, 'adj': 0.1872741617919131}, {'piss': 0.3109228795960696, 'rush': 0.3049439479972659, 'stuff': 0.2951963959386707, 'wound': 0.3109228795960696, 'grab': 0.2951963959386707, 'til': 0.24981368343190732, 'feeling': 0.2753833697046269, 'come': 0.18633409801668835, 'walk': 0.25715367682491436, 'mom': 0.27288016048231334, 'propn': 0.24452313375398788, 'like': 0.13553951679335768, 'adv': 0.07537206719248327, 'adj': 0.15906962798692229, 'cconj': 0.20222385586147024, 'adp': 0.2752913280696484}, {'murderer': 0.38209771171404217, 'bust': 0.2873577172337354, 'cloud': 0.3390671788244047, 'word': 0.2632912600431673, 'try': 0.253697018409539, 'yo': 0.22328755370519907, 'kid': 0.26427717982471616, 'check': 0.25866892733809954, 'pull': 0.29468664452905613, 'want': 0.23386771512037624, 'propn': 0.2765827731139603, 'adj': 0.08996269218251722, 'cconj': 0.11436880017298375, 'adp': 0.3113850119732755}, {'eardrum': 0.2991573082174647, 'forth': 0.2858496970987513, 'beware': 0.2991573082174647, 'dedicated': 0.2858496970987513, 'don': 0.25804086669072773, 'threat': 0.2690840898624842, 'bring': 0.20616952543396594, 'cd': 0.27640779674910987, 'music': 0.21254184375401805, 'make': 0.15879452863826365, 'murder': 0.2252685440019947, 'love': 0.16091272210127935, 'beat': 0.20616952543396594, 'nigga': 0.16091272210127935, 'rap': 0.18109133489647425, 'propn': 0.2758844120882067, 'adv': 0.06377917538732242, 'adj': 0.20190496453278564, 'adp': 0.17471181184460768}, {'feel': 0.3425354762542692, 'steel': 0.4447430843408006, 'way': 0.35240670650950157, 'nerve': 0.5312472214115199, 'flow': 0.4382579710077334, 'adv': 0.12591792300224341, 'adj': 0.13287228223223202, 'adp': 0.22995330725462915}, {'freestyle': 0.6836561398703872, 'ready': 0.5891492931103248, 'yo': 0.3995101314855327, 'adj': 0.16096287673106027}, {'engrave': 0.37910931045951113, 'unmarked': 0.37910931045951113, 'dumile': 0.3982846647565471, 'government': 0.3655041800700995, 'say': 0.21233981269903307, 'hey': 0.3327236953836519, 'right': 0.2515679535621314, 'intj': 0.33782745986669177, 'propn': 0.09938262584525154, 'adj': 0.09697706559825545, 'cconj': 0.24657222605716103, 'adp': 0.08391591002851911}, {'oh': 0.5069665953773163, 'yes': 0.5722879791290744, 'intj': 0.6445706633999819}, {'pay': 0.634202153478359, 'arm': 0.6866760255758265, 'propn': 0.19704876247125988, 'cconj': 0.24444288723061938, 'adp': 0.16638246456193168}, {'bug': 0.7372389677279446, 'plus': 0.6298592963242574, 'cconj': 0.2444503452592076}, {'cd': 0.6016886854167253, 'pack': 0.4867033657501669, 'black': 0.38589625355032475, 'beat': 0.448792950815171, 'cconj': 0.18624834406729446, 'adp': 0.12677177420695024}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'world': 0.49608270754292294, 'master': 0.7393837861918846, 'propn': 0.4193648425234025, 'adp': 0.17704997274430218}, {'sight': 0.5494710965306732, 'new': 0.35165586262285253, 'sniper': 0.5494710965306732, 'hood': 0.41828118303145756, 'know': 0.26129219660378283, 'adj': 0.1293697858033064, 'adp': 0.11194588368813611}, {'shawty': 0.9823120038626505, 'adv': 0.12880220086986266, 'adj': 0.13591585675859758}, {'way': 1.0}, {'let': 0.6269038364921082, 'talk': 0.7480366260321127, 'adp': 0.2177906928818789}, {'hund': 0.6713041548884756, 'trust': 0.5334479621329923, 'love': 0.36108554246811214, 'num': 0.27208765278222213, 'adv': 0.1431194366869584, 'adj': 0.15102382354296606, 'adp': 0.13068349212684852}, {'weird': 0.7962804632965546, 'just': 0.453424479169018, 'adv': 0.4004293513998805}, {'failure': 0.7253355876993793, 'life': 0.41323785052007556, 'new': 0.4435576923086253, 'adj': 0.16317931746503658, 'adp': 0.28240369696559475}, {'niece': 0.4856478182066615, 'daddy': 0.3948179566784233, 'touch': 0.7718344570047139, 'propn': 0.11196673048554594}, {'simple': 0.5775047040235332, 'adv': 0.29490687524979214, 'adj': 0.46679156500680863, 'cconj': 0.19780937306910587, 'young': 0.4999826474637426, 'adp': 0.26928180547661124}, {'tap': 0.6820582476270894, 'glass': 0.624394147403222, 'just': 0.18305913416896277, 'tell': 0.20212716863255759, 'adv': 0.2424954553538035, 'cconj': 0.10843620596052783}, {'wave': 0.7487103294531701, 'bottle': 0.6373375503800545, 'adj': 0.18230109556905297}, {'straight': 0.9561267067287048, 'adv': 0.29295344456094274}, {'okay': 0.9029697648053129, 'intj': 0.42970408870225785}, {'mama': 0.5642328392655654, 'act': 0.5088378244547085, 'boy': 0.4701912850748621, 'baby': 0.42115826506063453, 'propn': 0.15579230632250007}, {'vibe': 0.6324954855631482, 'bitch': 0.47708078109676244, 'propn': 0.20292634683483277, 'adv': 0.18765068990341374, 'kill': 0.5440142510903391}, {}, {'amazin': 0.5589176180917392, 'city': 0.4188716985015379, 'stage': 0.5050996115344663, 'adv': 0.12896635048140087, 'adj': 0.1360890722389087, 'adp': 0.47104078769198565}, {'half': 0.5776579395294154, 'nas': 0.5616742714880073, 'man': 0.4080726197267423, 'propn': 0.18422942152762298, 'like': 0.3063558820340031, 'adj': 0.17977014135682126, 'adp': 0.1555581715620044}, {}, {'load': 0.33522394224777746, 'fully': 0.3726890440239056, 'draw': 0.35611047238336274, 'flood': 0.3443477886099185, 'clip': 0.30298566434687024, 'bear': 0.27654650949961423, 'son': 0.2482052540856271, 'blood': 0.27654650949961423, 'gun': 0.25338785103534783, 'adv': 0.15891171133586587, 'cconj': 0.31977103924139705, 'adp': 0.0725517716459718}, {'real': 0.7481203848275007, 'just': 0.5584083214929839, 'adv': 0.24657147139643237, 'adj': 0.260189442111587}, {'pedigree': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'thinkin': 0.800262138283813, 'time': 0.552876467607989, 'propn': 0.23218122575852596}, {'clear': 0.48218425333352294, 'light': 0.3677398918177227, 'turn': 0.3491637056836257, 'sharp': 0.4545420390795656, 'adv': 0.11428886069808285, 'adj': 0.24120190982510656, 'focus': 0.48218425333352294}, {'happy': 0.3835851923831302, 'joking': 0.42645521585486496, 'broker': 0.3835851923831302, 'brag': 0.39402529501610134, 'cash': 0.29529583472330934, 'time': 0.234121873482201, 'just': 0.20590257046809424, 'rhyme': 0.26972497527305134, 'like': 0.16349640960237039, 'adv': 0.18183718906224605, 'adj': 0.09593996521434055, 'cconj': 0.12196765619175479, 'adp': 0.1660369787309936}, {'fantastik': 0.3060353004822191, 'riot': 0.35479921411639503, 'thief': 0.2962528632742999, 'quiet': 0.32781839643689903, 'arm': 0.28505481217610346, 'mr': 0.2597306313976125, 'deal': 0.273856761077907, 'catch': 0.2319126827042156, 'night': 0.24811176439691096, 'thing': 0.22372691459640143, 'meet': 0.2614609203392584, 'propn': 0.1635988322984666, 'like': 0.13602459409832887, 'adv': 0.15128362692690292, 'adj': 0.07981945816319176, 'cconj': 0.10147379362615339, 'adp': 0.20720741842702364}, {'ayo': 1.0}, {'hungry': 0.711056323935005, 'pretty': 0.6550702153361813, 'adv': 0.17574962670106792, 'adj': 0.18545615623613534}, {'shut': 0.36433620551920615, 'stall': 0.46322925220215205, 'flip': 0.3515641618047792, 'car': 0.3544690079976732, 'shit': 0.2392754933660073, 'bitch': 0.2510828304596598, 'propn': 0.21359620239153754, 'like': 0.3551900257851134, 'adv': 0.09875867615195527, 'adj': 0.10421304908523951, 'cconj': 0.13248515686998652, 'adp': 0.2705319901221653}, {'guy': 0.6249585321345762, 'check': 0.5237431165422322, 'propn': 0.37334293186610196, 'like': 0.31041676797495427, 'adp': 0.3152403311323481}, {'hol': 0.948340616502722, 'propn': 0.3172539599299548}, {'lettin': 0.9270152700633927, 'adj': 0.2318593484031367, 'cconj': 0.29476080408929556}, {'slack': 0.344415935332111, 'age': 0.3182247173491415, 'faster': 0.3029038369808907, 'warning': 0.344415935332111, 'ball': 0.263551523042605, 'kardashian': 0.344415935332111, 'fall': 0.24337071411457115, 'pass': 0.25052140101495174, 'ass': 0.23217603167318865, 'court': 0.26828093008988424, 'propn': 0.07940553784151384, 'adv': 0.07342813878298228, 'cconj': 0.09850414023742406, 'adp': 0.33523907788722507}, {'quick': 0.7065451062885395, 'way': 0.5247229520450714, 'num': 0.3564377256694901, 'adv': 0.18748798775014158, 'cconj': 0.2515158812993448}, {'hood': 0.6858293690366702, 'yo': 0.5264809754923427, 'num': 0.3821589042689786, 'cconj': 0.2696657134793057, 'adp': 0.18355063027139043}, {'ooh': 0.9873762815064246, 'propn': 0.1583921674785265}, {'teach': 1.0}, {'diamond': 0.4658890156062647, 'boojy': 0.26884265354054354, 'brand': 0.26024908158029336, 'benz': 0.2642766139409841, 'friend': 0.20300828947749422, 'new': 0.19059891650148728, 'need': 0.36379078855247043, 'love': 0.16764865097895168, 'propn': 0.07185828582838527, 'like': 0.23898689312342775, 'look': 0.38634228800242143, 'adv': 0.13289804031162494, 'adj': 0.14023790656142068, 'cconj': 0.2674248745189994, 'adp': 0.12135025407293569}, {'shooter': 0.5832430474471899, 'respect': 0.5197860982359334, 'gon': 0.46840384720505324, 'everybody': 0.41261094945321675}, {'hood': 0.7246797256191811, 'propn': 0.6890858402815344}, {'deal': 0.5065017686818848, 'real': 0.4244710668362863, 'crab': 0.5660164107806687, 'niggas': 0.3710571560811109, 'know': 0.2981671917164402, 'adp': 0.12774430387648078}, {'hammer': 0.6230424329752396, 'pro': 0.6006832523777226, 'propn': 0.1633291277574848, 'adv': 0.4531026746856197, 'adp': 0.13791054797923175}, {'kind': 0.7499230889584555, 'oh': 0.5139124815988478, 'intj': 0.32670092291501096, 'adv': 0.17774917960451414, 'adj': 0.18756614305445551}, {'homie': 0.3653669899083239, 'ask': 0.31828120579391095, 'gon': 0.3246915267608979, 'song': 0.31088103332847017, 'justice': 0.35155649647589615, 'poetic': 0.3710212937254536, 'time': 0.24022486622351605, 'just': 0.21126995402049187, 'want': 0.25590770102084703, 'num': 0.17735314692991327, 'adv': 0.18657724614637144, 'adj': 0.19688177756578468, 'adp': 0.17036516242828564}, {'disease': 0.619422663985041, 'grease': 0.640581716430167, 'stop': 0.45383987034752254}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'illa': 0.8351625772206205, 'intj': 0.3272601048852281, 'yeah': 0.4420455783748105}, {'story': 0.3303181899397138, 'horror': 0.3840700457833912, 'glorious': 0.3971896145590164, 'oratory': 0.41568060819864605, 'laboratory': 0.3971896145590164, 'bring': 0.2864736089352672, 'like': 0.15936558976203918, 'adv': 0.08862149005612209, 'adj': 0.1870319865166169, 'adp': 0.3236839402421755}, {'cup': 0.713206247135204, 'going': 0.5546908652634958, 'fuck': 0.4013408628279705, 'adp': 0.15026777720141113}, {'loud': 0.5534671748138607, 'volume': 0.656501881099635, 'turn': 0.46279619124098526, 'adv': 0.15148324001426908, 'adj': 0.1598495539056048}, {'es': 0.6014863767483976, 'say': 0.2962881706971877, 'make': 0.31927264704717934, 'song': 0.4273371232973443, 'star': 0.4403178761232337, 'intj': 0.23569362434413482, 'adv': 0.12823455774590217}, {'dreams': 0.5353915823619191, 'rapper': 0.3825150135713075, 'livin': 0.39727669941423555, 'feel': 0.3105051646309431, 'life': 0.30502304096718014, 'just': 0.2584996007009019, 'propn': 0.12343521943104388, 'like': 0.2052609469719702, 'adv': 0.2282868089422355, 'adp': 0.20845049484312658}, {'underground': 0.6011427803556989, 'king': 0.4605895569943493, 'time': 0.3669085167046849, 'know': 0.303674929573078, 'adv': 0.4274543787489183, 'adp': 0.13010399386913246}, {'bank': 0.5969098451133145, 'hook': 0.6072229558706776, 'little': 0.48074452641393034, 'adj': 0.1583745641286412, 'adp': 0.1370442134151775}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'afro': 0.4851694732328252, 'natural': 0.42669249576536294, 'pryor': 0.46358736074851264, 'richard': 0.4851694732328252, 'propn': 0.22371289487048665, 'like': 0.18600655818742837, 'adj': 0.10914895786116617, 'adp': 0.18889691229735486}, {'collar': 1.0}, {'truth': 0.9561267067287048, 'adv': 0.29295344456094274}, {'tap': 0.46373585038700804, 'pill': 0.4054979124128857, 'track': 0.3882247362584506, 'feel': 0.2990057622258047, 'eat': 0.36629171463263793, 'love': 0.27731479055435887, 'fuck': 0.26805948701799476, 'like': 0.19765921116800725, 'adv': 0.21983232193577334, 'adp': 0.10036531786998822}, {'york': 0.6770572276502085, 'new': 0.5498390399272055, 'propn': 0.4145930272419546, 'adv': 0.19169188428356232, 'adp': 0.175035379054384}, {'maker': 0.6673715849883106, 'money': 0.4955339645617855, 'propn': 0.5351402853260453, 'adp': 0.15061916391026844}, {'pawn': 0.4584291191107284, 'rook': 0.4584291191107284, 'kingpin': 0.438036515370006, 'castle': 0.4584291191107284, 'just': 0.22134032013914298, 'lose': 0.3065188151165125, 'adv': 0.09773530643337948, 'cconj': 0.1311123023220692, 'adp': 0.08924288303857994}, {'reason': 0.6136269026414816, 'game': 0.419766834930133, 'come': 0.33847567582047305, 'thing': 0.4049504224337468, 'adv': 0.4107398214149247}, {'drown': 0.5338694466980941, 'poison': 0.49138114174786424, 'going': 0.40149810061886265, 'limit': 0.502557027795333, 'intj': 0.21893691128538612, 'adp': 0.1087672988844431}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'cloud': 0.9217490674756784, 'adv': 0.2317621731636472, 'cconj': 0.3109098771319128}, {'proof': 0.6701899073734383, 'recognize': 0.6930831339581394, 'adv': 0.15464165681253175, 'adj': 0.16318240786491212, 'adp': 0.14120452265855543}, {'right': 0.9330717386381799, 'adj': 0.35969032591206007}, {'stock': 0.705905615718657, 'step': 0.6649256460333975, 'adv': 0.18023785598843065, 'adp': 0.1645766150236006}, {'fatal': 0.5918357850441532, 'strike': 0.5423799253500223, 'num': 0.5745671713235687, 'adj': 0.15945841387555507}, {'propn': 1.0}, {'wake': 0.9050148972045796, 'adv': 0.25422976189294605, 'cconj': 0.3410502367769886}, {'artery': 0.37486671924824666, 'phony': 0.36248449794991106, 'squeeze': 0.3275809764717671, 'easy': 0.3230461189122971, 'start': 0.5433161969563636, 'way': 0.23408558041585495, 'adv': 0.33456310048905796, 'adj': 0.17652039381193055, 'adp': 0.1527461095459997}, {'hour': 0.406354199920601, 'later': 0.41205851985342334, 'jamaica': 0.44388185678295633, 'sound': 0.3237320398420839, 'yo': 0.27555429793170827, 'leave': 0.3140574940599533, 'propn': 0.22754984354104857, 'like': 0.189196797250609, 'adv': 0.21042060724941844, 'cconj': 0.14114004078600184, 'adp': 0.1921367244545047}, {'just': 0.4629658945341562, 'adv': 0.2044277949090103, 'slit': 0.8624800618952465}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'strivin': 0.6022488829131452, 'pushin': 0.5862916836476804, 'desire': 0.5236861142267218, 'adv': 0.13896473826677677}, {'african': 0.3022412746857035, 'sense': 0.29225794419385714, 'clearly': 0.3022412746857035, 'takin': 0.28451427146198255, 'east': 0.2728377929421634, 'vacation': 0.3022412746857035, 'fuckin': 0.2141321511351364, 'busy': 0.3022412746857035, 'girl': 0.21065898982541026, 'lot': 0.2223354683452294, 'make': 0.16790033796035084, 'man': 0.16153315476859467, 'num': 0.12820505568706914, 'propn': 0.14585227345308205, 'adv': 0.20230945979426318, 'adj': 0.213482870421511, 'cconj': 0.09046631499962153, 'young': 0.22866250965770837, 'adp': 0.12315358094483866}, {'hear': 0.7380472304036453, 'fuck': 0.5912069960609828, 'cconj': 0.3252085077332047}, {'deep': 0.6394188634839967, 'mom': 0.7381443847625474, 'adj': 0.2151427067421861}, {}, {'cause': 0.9351074512555572, 'propn': 0.3543642964610511}, {'provoke': 0.5336863167273201, 'mirror': 0.445621334913429, 'properly': 0.5099459976132605, 'broke': 0.45251762955577657, 'adv': 0.2275596969312396}, {'ask': 0.6964104839257105, 'going': 0.6880028755491872, 'adv': 0.20411879167388575}, {'adj': 1.0}, {'tight': 0.6581246406930468, 'hug': 0.6581246406930468, 'adv': 0.3037153609930907, 'cconj': 0.20371768239927732}, {'turn': 0.5878690978966709, 'kick': 0.6412405600221359, 'like': 0.3460277647558151, 'adp': 0.3514046868480075}, {'crip': 0.3143072727836, 'fit': 0.2904056775012274, 'loud': 0.2448279502372302, 'type': 0.23490789190245928, 'clutch': 0.2904056775012274, 'matter': 0.2272132968684363, 'spit': 0.2220953724309757, 'throw': 0.4418527099097152, 'sign': 0.2555229336102608, 'fist': 0.2904056775012274, 'propn': 0.07246394688101493, 'like': 0.1205006028804682, 'adv': 0.20102726684989528, 'adj': 0.07070995428447362, 'cconj': 0.26967887806407903, 'adp': 0.18355959087598947}, {'live': 0.7517902309254519, 'niggas': 0.6594023420378909}, {'hol': 0.4089215969394665, 'lil': 0.4239280375682181, 'bitch': 0.6432299067904385, 'propn': 0.13679894509670015, 'humble': 0.45032267362638106, 'adj': 0.13348772141593296}, {'sweatshirt': 0.42017934222746295, 'body': 0.31599712039526184, 'wet': 0.35749669561126496, 'cash': 0.30449521194687823, 'run': 0.2682162961006401, 'intj': 0.17231322740450503, 'num': 0.5346964873495096, 'adv': 0.1875019790753677, 'adj': 0.09892879142534952, 'cconj': 0.2515346507177861, 'adp': 0.08560477169799109}, {'view': 0.7105828664204111, 'just': 0.4046258585564584, 'baby': 0.5223146078417015, 'adv': 0.17866709622550672, 'adp': 0.16314234183287932}, {'sophisticated': 0.9716132272193309, 'adj': 0.23657501282349544}, {'ecstatic': 0.8666703214367834, 'know': 0.41213121754600296, 'adv': 0.193372667506476, 'adj': 0.2040525053169934}, {'kiddin': 0.842770853243624, 'life': 0.48014301487673067, 'adv': 0.17967547034243062, 'adp': 0.1640630962322847}, {'just': 0.6839646619705256, 'know': 0.6436726156681172, 'propn': 0.1632987592717721, 'adv': 0.3020122849071026}, {'game': 0.95070795190552, 'adv': 0.3100877136934181}, {'advice': 0.6544337109432891, 'ignore': 0.6328171133156278, 'cconj': 0.39176784376741713, 'adp': 0.1333303253791131}, {'song': 0.29795151017210475, 'justice': 0.3369352832957625, 'poetic': 0.35559054081857117, 'just': 0.6074497486749567, 'know': 0.3811101073458668, 'want': 0.24526451539187583, 'propn': 0.09668705202086879, 'adv': 0.26822626484096734, 'adj': 0.0943467382410457, 'adp': 0.08163984287293448}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {}, {'damn': 0.569024021905751, 'gun': 0.5137701025822179, 'man': 0.3859008081407938, 'adv': 0.1611049738591338, 'adj': 0.17000268941257712, 'cconj': 0.43224592645250526, 'adp': 0.14710622868762835}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'dunnie': 0.505044612864827, 'sister': 0.4825783814842429, 'dun': 0.45427427731063164, 'peep': 0.4282320604263809, 'brother': 0.3497144951773448}, {'bust': 0.5190861828674178, 'cop': 0.5323252388108726, 'shot': 0.4829896934145258, 'run': 0.44059696857859704, 'adp': 0.1406223389642422}, {'ray': 0.3326020296622822, 'future': 0.3326020296622822, 'shoot': 0.2612892674899369, 'buy': 0.29708602280367785, 'new': 0.22612450083289148, 'come': 0.19489364757895433, 'make': 0.19627835503519833, 'mad': 0.2689664350121177, 'ya': 0.2338752277403375, 'just': 0.35707120196635145, 'intj': 0.1448967122815085, 'propn': 0.2557556881000013, 'like': 0.14176573745821108, 'adv': 0.2365032045727908, 'adj': 0.16637674128018184, 'cconj': 0.21151332641647172, 'adp': 0.07198431694120626}, {'white': 0.3262530312894526, 'great': 0.34399715566856254, 'break': 0.28274379269370475, 'mind': 0.2923618667886122, 'right': 0.2600916666994504, 'funny': 0.4008689666489736, 'adv': 0.5700915013809776, 'adj': 0.20052575271152506, 'cconj': 0.1274633361064443}, {'alright': 0.8916749155877435, 'intj': 0.4526763136188932}, {'adj': 1.0}, {'manhattan': 0.444604017338354, 'digit': 0.444604017338354, 'chase': 0.37827768069547535, 'briefcase': 0.444604017338354, 'num': 0.37718529913449006, 'propn': 0.3218281823814703, 'adv': 0.0992006564552518, 'adp': 0.09058090575917858}, {'intj': 1.0}, {'bump': 0.48900105343189215, 'tire': 0.4518148147290097, 'stock': 0.40830970436090575, 'double': 0.3885818574703529, 'tie': 0.4217923218794286, 'propn': 0.112739823189029, 'adj': 0.22002190294231533}, {'make': 0.33853555352940856, 'talk': 0.8528709183816136, 'baby': 0.3974982711603158}, {'spill': 0.5263341239364759, 'mc': 0.3832829773727782, 'blood': 0.40873795098189325, 'straight': 0.3832829773727782, 'propn': 0.12699626920892956, 'comin': 0.4425569199708352, 'adv': 0.11743638962569969, 'cconj': 0.1575413837855262, 'adp': 0.10723209826925009}, {'vocals': 0.31011449213549486, 'glocks': 0.2963194654045532, 'sneak': 0.2865317381744549, 'mc': 0.21578347629133493, 'squeeze': 0.25894168471257145, 'lock': 0.22284793271491335, 'fall': 0.21913267554103313, 'deep': 0.20735141533815005, 'poetry': 0.27273671144351314, 'nas': 0.21797925246655822, 'need': 0.18098161787677303, 'kid': 0.2049488134670892, 'cell': 0.2415620064275982, 'rap': 0.18772413646246458, 'hard': 0.20653155103531415, 'tell': 0.1653269631607039, 'propn': 0.21449188769435282, 'adv': 0.1983456132351855, 'adj': 0.13953340225093108, 'adp': 0.12074063446886703}, {'stack': 0.5267921765498209, 'say': 0.3331357705060226, 'true': 0.5054473541281508, 'blue': 0.5132646695340276, 'adj': 0.30429083513677835}, {'pile': 0.40914321287189553, 'renegade': 0.4428174012374186, 'left': 0.40914321287189553, 'scream': 0.3417948361408495, 'pose': 0.3894450754358439, 'foot': 0.35188228549899553, 'adj': 0.09962097892473923, 'adp': 0.25861120006558963}, {'codependence': 0.6683868314711171, 'form': 0.6011962846374328, 'come': 0.3522808833814877, 'adp': 0.26023114736346603}, {'throne': 0.7511036038385277, 'catch': 0.6039016854893293, 'adv': 0.19697162790492537, 'adp': 0.17985635480684828}, {'cold': 0.7145187193361964, 'adv': 0.6599792149702515, 'adj': 0.23214313585676438}, {'thing': 0.6867426043788732, 'ya': 0.6888206185549757, 'adv': 0.23218688762387782}, {'party': 0.4767238289661933, 'insert': 0.5372241713252728, 'shirt': 0.5194791215926521, 'come': 0.2963320442334905, 'rhyme': 0.3556027874320069}, {'bless': 0.5235191099040581, 'trip': 0.2523657659377731, 'queens': 0.26175955495202907, 'box': 0.23651229982722843, 'crazy': 0.2114588338143228, 'god': 0.36307770792878113, 'people': 0.18657239307358933, 'life': 0.3391346067870442, 'bitch': 0.16132513794878867, 'gun': 0.20235790209506097, 'baby': 0.18550169487265908, 'propn': 0.2744786392049889, 'adj': 0.06695871832001382, 'adp': 0.17382156536199572}, {'san': 0.979870763158491, 'adp': 0.19963288182861175}, {'snack': 0.9199223289232968, 'like': 0.3921006359958344}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {}, {'impossible': 0.5973225810275649, 'mission': 0.5973225810275649, 'say': 0.29423711274313813, 'niggas': 0.3377610738017232, 'adj': 0.268760261405868, 'adp': 0.11628142064437665}, {'punk': 0.7247635457853128, 'line': 0.6647628204070636, 'adp': 0.18113032685099165}, {'pair': 0.5412616511920783, 'adidas': 0.6017538186472232, 'loose': 0.5024568394393348, 'propn': 0.1387351185472649, 'adj': 0.13537702971432092, 'adp': 0.23428810874721862}, {'ecstatic': 0.9512095425096927, 'adv': 0.21223517414070203, 'adj': 0.2239567750615442}, {'witness': 0.31753803235987743, 'star': 0.2859307193337741, 'court': 0.3042473898002799, 'sit': 0.24556263655915314, 'business': 0.3014818093194042, 'snitch': 0.3014818093194042, 'year': 0.26793929995143423, 'send': 0.2859307193337741, 'label': 0.28783554957685276, 'fuck': 0.2030809603778949, 'rap': 0.23643858306142598, 'tell': 0.20822933932835735, 'propn': 0.1801017136467641, 'adv': 0.08327211164479789, 'adj': 0.17574234480256457, 'cconj': 0.11170986898590234, 'adp': 0.15207285045876137}, {'liar': 0.493218114198449, 'lover': 0.493218114198449, 'thief': 0.4774523668341674, 'beat': 0.39407147342132137, 'just': 0.2760822470944617, 'adv': 0.12190721963188032, 'cconj': 0.16353902002152146, 'adp': 0.11131444858754495}, {'say': 1.0}, {'breed': 0.5051025880957415, 'cow': 0.46669190313187353, 'mouth': 0.38987053320413767, 'beef': 0.39344692920339225, 'feed': 0.4106341350020885, 'adj': 0.22726665276886188}, {'month': 0.6664214383160517, 'feel': 0.462877788877065, 'run': 0.4868079206265281, 'num': 0.32348828036316857}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'ass': 0.6373832566635619, 'bitch': 0.5124925341790525, 'niggas': 0.5346470409871504, 'adj': 0.21271231299426205}, {'adv': 0.7384617951868037, 'adp': 0.6742953188696205}, {'foolproof': 0.6200706802766014, 'plan': 0.4705977179438363, 'case': 0.4705977179438363, 'just': 0.2993846532863213, 'adv': 0.1321966590271282, 'adj': 0.1394977884768459, 'cconj': 0.17734234389644002, 'adp': 0.12070981726230925}, {'cook': 0.4843647050760324, 'dollar': 0.40594100933729355, 'coke': 0.4843647050760324, 'garbage': 0.5365642504884868, 'adv': 0.11971894945423013, 'adj': 0.12633094369056083, 'adp': 0.21863264348443484}, {'suppose': 0.663219865412065, 'girl': 0.5120743184924781, 'tell': 0.40991166514056143, 'adv': 0.3278520697821888, 'adp': 0.14968216187807232}, {'add': 0.9036111739036365, 'adv': 0.42835364641437573}, {'pack': 0.7333808290244155, 'come': 0.5171869617184669, 'num': 0.39771857518497444, 'adp': 0.19102392834594298}, {'write': 0.2766799302715221, 'friend': 0.25503339473239645, 'lend': 0.33200300428729107, 'gentleman': 0.33200300428729107, 'pipe': 0.3269433328177897, 'pen': 0.5661113822068429, 'fiend': 0.294844827549421, 'propn': 0.09027346923434683, 'like': 0.15011613271233723, 'adp': 0.3048975716953724}, {'knowledge': 0.831259321627255, 'yo': 0.5558848263874414}, {'admire': 0.5592710193082112, 'struggle': 0.5191750572624565, 'hustle': 0.5363185114773965, 'feel': 0.360604549507004}, {'ban': 0.4331019626982328, 'cellie': 0.4331019626982328, 'fresh': 0.35662839065721585, '50': 0.40016658790802995, 'city': 0.29989832657786974, 'deep': 0.2895843542583365, 'life': 0.24674664687157308, 'num': 0.17554143764462898, 'adv': 0.1846713102488836, 'adj': 0.09743528907774539, 'adp': 0.16862483725219915}, {'innocent': 0.3050024350640736, 'filthy': 0.31920169375592783, 'mma': 0.31920169375592783, 'stand': 0.22805633155527488, 'underground': 0.28711348473706744, 'prove': 0.26652938330967424, 'game': 0.20864454648532987, 'way': 0.19045881742556617, 'catch': 0.20864454648532987, 'time': 0.1752402029156166, 'intj': 0.12507981395161608, 'propn': 0.2207770858352196, 'like': 0.12237704904950855, 'adv': 0.2722102419131365, 'kill': 0.19728977677848786, 'adj': 0.2154331680566754, 'cconj': 0.09129278056033575, 'adp': 0.3106966620797957}, {}, {'shit': 0.6392872472423518, 'right': 0.7222810181009861, 'adv': 0.26385970970252187}, {'lettin': 0.7498156296191176, 'niggas': 0.471375221383142, 'know': 0.3787789123619641, 'propn': 0.19219126282952675, 'adj': 0.18753926598651138}, {'coffin': 0.5117225609192614, 'bitty': 0.5355455871827216, 'body': 0.3848424694906542, 'little': 0.36572233748115884, 'baby': 0.333782314030714, 'adj': 0.2409642236501104}, {'benefit': 0.5660730168085308, 'monch': 0.5194828527854048, 'pharoahe': 0.49222935392942824, 'propn': 0.28250057212201624, 'cconj': 0.17522377361765815, 'adp': 0.23853558297110508}, {'mirror': 0.5559337561855419, 'breathe': 0.548237703673714, 'breath': 0.5412757773381595, 'adv': 0.28389151766264586, 'adp': 0.1296117975732857}, {'little': 0.44121840310930494, 'girl': 0.43029165282192705, 'life': 0.368094801865957, 'way': 0.38550895702284804, 'man': 0.32994731536747696, 'think': 0.39510243473820567, 'adj': 0.1453532353227568, 'cconj': 0.18478632332832334, 'adp': 0.12577663535653577}, {'yo': 0.8185512783769435, 'intj': 0.5744334640909001}, {'good': 0.8382581057403711, 'adj': 0.29725203870738703, 'cconj': 0.37789397128050617, 'adp': 0.2572172624741875}, {'dt': 0.7007750616133075, 'lead': 0.5237473220504731, 'new': 0.4285384233559224, 'propn': 0.16156459375106236, 'adj': 0.15765391660056324}, {'backstroke': 0.5211512463537719, 'chicago': 0.49796853301197574, 'golden': 0.4687617683197792, 'day': 0.3266857243120897, 'propn': 0.36045627482589643, 'adj': 0.11724380565111267, 'adp': 0.10145306610099102}, {'ill': 0.7749835143763208, 'man': 0.5440977021420101, 'propn': 0.2456396241121356, 'adp': 0.20741122928800246}, {'shit': 0.6958521603283778, 'tell': 0.7181850534272693}, {'mind': 0.657926435933359, 'adv': 0.4276415774048021, 'kill': 0.6198834456369682}, {'nas': 0.8214995222442789, 'propn': 0.26945222427108023, 'like': 0.4480732401377794, 'adp': 0.2275179229428328}, {'sinner': 0.678966762847087, 'turn': 0.4916596701629005, 'cause': 0.4592394895028511, 'adp': 0.2938945303428019}, {'cconj': 1.0}, {'crazy': 0.7065464587330159, 'think': 0.6081448402844359, 'adj': 0.2237288670183845, 'cconj': 0.28442459273052084}, {'silly': 0.9480789183115425, 'adv': 0.21876261206517328, 'adj': 0.23084471883852556}, {'ipod': 0.35709715743909426, 'daybed': 0.35709715743909426, 'cyclop': 0.35709715743909426, 'med': 0.34121216993498477, 'dead': 0.2581461820005243, 'pain': 0.2688978491044586, 'brain': 0.2649768594637874, 'eye': 0.23876536855257613, 'drop': 0.2427870708442918, 'propn': 0.41164604972160457, 'adj': 0.08033642827927381}, {'hole': 0.5108059507466384, 'wall': 0.4814403959004822, 'studio': 0.5658550452481991, 'like': 0.22703973039659006, 'adv': 0.12625435164347357, 'adp': 0.3458515478593355}, {'spend': 0.3702174952860929, 'jungle': 0.3702174952860929, 'truth': 0.2863944901573221, 'soul': 0.2823479628882998, 'old': 0.26276669329171404, 'day': 0.25800903310450646, 'let': 0.23063836048884592, 'time': 0.2259628768612496, 'tell': 0.21942704852776304, 'adv': 0.08775014002267455, 'adj': 0.2777895575073048, 'young': 0.29754170557528814, 'adp': 0.3205013937517267}, {'way': 1.0}, {'stack': 0.6070637958043532, 'cousin': 0.6507402564595872, 'nigga': 0.41919735305382083, 'propn': 0.17967817240608702}, {}, {'want': 1.0}, {}, {'human': 0.9205537651996015, 'adv': 0.2275304714213903, 'adj': 0.2400968209632646, 'adp': 0.20775987705745988}, {'sit': 1.0}, {'hall': 0.22373073516523914, 'pity': 0.21454881571368947, 'ii': 0.24873519847179532, 'bar': 0.1859004425747988, 'dough': 0.19375093759166045, 'city': 0.17223489202860195, 'tryna': 0.19198975958613476, 'slow': 0.190335387148489, 'cold': 0.17223489202860195, 'titty': 0.190335387148489, 'ole': 0.23767054719343683, 'gold': 0.18456901814011076, 'soul': 0.3412584122238262, 'roll': 0.19198975958613476, 'steal': 0.19984025460299643, 'fool': 0.18877560332463791, 'ya': 0.15732037682516048, 'hold': 0.31560675365605784, 'propn': 0.2293848825051987, 'like': 0.19072254426693094, 'adv': 0.053029377563462585, 'adj': 0.16787445951009983, 'adp': 0.19368618003896698}, {'essence': 0.7532018046729352, 'til': 0.557003997206114, 'adv': 0.1680554168496712, 'adp': 0.3069054665549773}, {'river': 0.7246912976758466, 'let': 0.45146870389615024, 'run': 0.4914204514772113, 'adv': 0.17176865937988012}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'phat': 0.7678231626515917, 'yo': 0.44869505995621073, 'intj': 0.31488003796437575, 'adj': 0.18077951454450822, 'cconj': 0.22982344872875896, 'adp': 0.1564315994088938}, {'ya': 0.7646132936035166, 'tell': 0.6444893414516508}, {'grenadiers': 0.501191266042869, 'air': 0.44078319837119745, 'twist': 0.43230710103031633, 'buddha': 0.4249647715432378, 'super': 0.3522869787944622, 'propn': 0.23110058483924525, 'adp': 0.09756743555510937}, {'lead': 0.9328227281474246, 'adv': 0.2660940875964052, 'adp': 0.24297262067531955}, {'propn': 0.1576276178798244, 'doubt': 0.543297220199381, 'promise': 0.5897305588849318, 'lose': 0.457140500954571, 'adv': 0.2915238134854496, 'cconj': 0.19554017766261753}, {'emotion': 0.6606428379271251, 'rock': 0.46251306336475534, 'hard': 0.4761901451712379, 'adj': 0.3217156446123164, 'adp': 0.13919301909945517}, {'number': 0.7028026730132508, 'label': 0.6877911855222872, 'adp': 0.1816911883479112}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'thank': 1.0}, {'num': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'come': 0.8359858338378323, 'cconj': 0.45363752679638886, 'adp': 0.30877286134717224}, {'doc': 0.8127359698383506, 'propn': 0.42611369635591617, 'like': 0.3542931313886604, 'adp': 0.17989924446653804}, {'talkin': 0.4014102100629692, 'drunk': 0.5053588446075818, 'lord': 0.43366291631446346, 'way': 0.33523346354719036, 'head': 0.3553523560671018, 'propn': 0.2590651639964838, 'adj': 0.12639724091326274, 'cconj': 0.16068772996585243, 'adp': 0.21874737972111252}, {'grenade': 0.22994204111164945, 'tuck': 0.21971337820118939, 'pair': 0.20682678695809292, 'fresh': 0.1893407722172336, 'blade': 0.1983386063025855, 'pay': 0.1706239286512661, 'lay': 0.18272211239343228, 'iron': 0.1847413487194707, 'slide': 0.1949700116299308, 'throw': 0.1616260945659142, 'style': 0.1694503688331628, 'fade': 0.1949700116299308, 'guzzle': 0.21971337820118939, 'usually': 0.21971337820118939, 'yo': 0.1283945473391482, 'day': 0.2882801596501097, 'shit': 0.11877379304311786, 'real': 0.14873950332281777, 'niggas': 0.2600453195137006, 'fuck': 0.11955487669822762, 'propn': 0.3180806038357023, 'like': 0.17631252586761603, 'adv': 0.09804549891402335, 'adj': 0.20692096712986607, 'cconj': 0.06576421338432098, 'adp': 0.2238153056287719}, {'human': 1.0}, {'lap': 0.5217674629822444, 'blower': 0.5217674629822444, 'chip': 0.4439298298312052, 'throw': 0.38382386181402245, 'nigga': 0.2937173753357048, 'adv': 0.1164174699875454, 'adp': 0.10630171467081632}, {}, {'share': 1.0}, {'screamin': 0.3268344796594215, 'medicine': 0.35373431689525275, 'spinnin': 0.35373431689525275, 'devil': 0.27553943301101497, 'knock': 0.5327311908596841, 'head': 0.22373036213554687, 'let': 0.3964333631992945, 'propn': 0.16310780544450182, 'like': 0.13561632878516278, 'adv': 0.0754147815148041, 'adj': 0.0795798873980683, 'adp': 0.13772366960742757}, {'mic': 0.6301512598007165, 'check': 0.6322748355796426, 'propn': 0.4507082449482216}, {'thinkin': 0.40071453042120625, 'mind': 0.3308027097865847, 'sack': 0.48183737600174037, 'buddha': 0.4275745044381012, 'world': 0.27505654659493034, 'sit': 0.3170329183451132, 'propn': 0.232519786708819, 'adv': 0.21501642873223437, 'adp': 0.1963332054809054}, {'live': 0.46205035076773043, 'cost': 0.7167083230889514, 'high': 0.4754666712932448, 'propn': 0.16523802772217927, 'adp': 0.1395223697270307}, {'filter': 0.4384857700597631, 'brita': 0.4384857700597631, 'pure': 0.40239656717906647, 'power': 0.36017490644681555, 'juice': 0.37711825608537464, 'water': 0.34972684340356164, 'propn': 0.21882774347314404, 'adj': 0.10676550480039086}, {'sparkin': 0.9815736896072488, 'adp': 0.19108399166547846}, {'friendly': 0.5921448525328766, 'nowadays': 0.5921448525328766, 'adv': 0.5284806776107581, 'adj': 0.13941707438369752}, {'maker': 0.6402293536605378, 'shake': 0.6034234194862063, 'money': 0.47538042821195736}, {'dash': 0.35298401331641466, 'ash': 0.35298401331641466, 'pounder': 0.3372819935050752, 'clash': 0.3372819935050752, 'sprinkle': 0.35298401331641466, 'scream': 0.27245567282288746, 'sound': 0.23155903416943965, 'fix': 0.31749978807206486, 'child': 0.2619247824885304, 'num': 0.14306866858118517, 'propn': 0.16276183853002324, 'adv': 0.0752548197079755, 'adj': 0.07941109101200552, 'adp': 0.20614731722971036}, {'hour': 0.6768484500034574, 'yes': 0.5719549199706991, 'intj': 0.32209776864564194, 'num': 0.33316178154573306}, {'awaken': 0.7508412962102576, 'god': 0.4579696883511369, 'black': 0.44493599431956476, 'adj': 0.16891735676277508}, {'lawn': 0.6478845471505951, 'fuckin': 0.4385951741050395, 'buy': 0.5205271053368962, 'just': 0.3128138399185742, 'adv': 0.13812646734144343}, {'party': 0.6731577456938984, 'shit': 0.4100810073509008, 'kick': 0.5640430323366794, 'adv': 0.16925702181746582, 'adj': 0.17860496930462144}, {'know': 0.49504998827517765, 'propn': 0.5023737029976378, 'adv': 0.23227829561621421, 'hit': 0.6697708302328598}, {'worldwide': 0.5024178791773263, 'universal': 0.4858225159594613, 'bad': 0.3801073604823072, 'motherfucker': 0.3874816164221743, 'man': 0.26851774338251566, 'propn': 0.3636769497036293, 'adv': 0.1121001643836174}, {'propn': 0.3259776759680771, 'lose': 0.9453774668197097}, {'calvin': 0.7305815008310749, 'shake': 0.5939421212892917, 'propn': 0.3368730134661875}, {'ready': 0.5855103521504312, 'moment': 0.5205342833333679, 'snap': 0.5650430550182972, 'adj': 0.15996867303429155, 'cconj': 0.2033668041311872}, {'smile': 0.6798332272677394, 'kiss': 0.6724026008396978, 'cconj': 0.24200698833089743, 'adp': 0.16472444592636767}, {'sayin': 0.786918626901885, 'know': 0.4499630036694387, 'adv': 0.4222468116678072}, {'conscious': 0.5995055571482895, 'raise': 0.4873810819632356, 'daughter': 0.47639362190643475, 'way': 0.35770837588921145, 'adv': 0.127812254705944, 'adj': 0.13487123655719405, 'adp': 0.1167063829220691}, {'space': 0.5126162843468034, 'travel': 0.5126162843468034, 'place': 0.4268577501262161, 'time': 0.34616687221726433, 'man': 0.3220052600685711, 'propn': 0.1453732495726104, 'cconj': 0.18033839140100785, 'adp': 0.12274910657607162}, {'snappin': 0.6433022210664358, 'start': 0.48211236372885485, 'ya': 0.4403643062132671, 'tell': 0.37118122858241703, 'adv': 0.14843751032714814}, {'ayy': 1.0}, {'feel': 0.4110340273790095, 'way': 0.4228792574595918, 'sit': 0.4455767072834161, 'hard': 0.47200307884315296, 'adv': 0.4532951002049709, 'adj': 0.15944342434303996}, {'press': 0.5406820656964966, 'statement': 0.6092992568131841, 'release': 0.5500237009094144, 'adv': 0.1359476835486317, 'adp': 0.12413490748674687}, {'know': 1.0}, {'libertie': 0.5097297389329253, 'civil': 0.48705509601084174, 'drama': 0.43967203875453126, 'oh': 0.31419611878855563, 'intj': 0.3994772092912938, 'like': 0.19542258855018796, 'adj': 0.1146743001464027}, {'lab': 0.6617009072897999, 'yo': 0.4357531076452739, 'adv': 0.49912903306046785, 'adj': 0.17556519402968537, 'adp': 0.3038391177428988}, {}, {'adj': 1.0}, {'sorry': 0.905270666917371, 'intj': 0.42483528528004605}, {'beer': 0.6023263172014754, 'steal': 0.579559006859683, 'rap': 0.43666661044077915, 'propn': 0.3326208599899989}, {'adv': 1.0}, {'stay': 1.0}, {'say': 0.34902597764230253, 'rap': 0.85782220494616, 'propn': 0.16335663908427306, 'like': 0.27164644407934097, 'adv': 0.1510596652558719, 'adp': 0.13793377777421748}, {'stack': 0.5666677728057604, 'loc': 0.6721599323946136, 'right': 0.4245553836784873, 'adj': 0.16366208298829532, 'adp': 0.1416195937297249}, {'live': 0.6258354228623111, 'life': 0.5530627291568246, 'fuck': 0.5047335788701097, 'adj': 0.21839335033221177}, {'bet': 0.6789868168658979, 'spit': 0.5971737288073389, 'num': 0.3425351256546844, 'propn': 0.19484226478641048, 'adp': 0.16451935962155434}, {'adv': 0.4284090177917052, 'adj': 0.45206974960854923, 'adp': 0.7823673401693158}, {'lady': 0.630391711543646, 'miss': 0.6018576880325881, 'just': 0.39432836129102744, 'adv': 0.174120120554282, 'cconj': 0.23358283428547455}, {'boojy': 0.41786693649409273, 'brand': 0.40450979416091104, 'benz': 0.4107698596193814, 'friend': 0.3155394089802546, 'new': 0.29625129899842617, 'need': 0.28272325900522677, 'propn': 0.22338123333763255, 'adv': 0.20656579690659926, 'adj': 0.21797428206952374, 'cconj': 0.27710883816462295, 'adp': 0.09430843328696395}, {'dive': 0.9423440151269762, 'adv': 0.24712307830429164, 'adp': 0.22565004171012296}, {'flick': 0.6758213054195337, 'watch': 0.5373720192859418, 'nigga': 0.41333397636544045, 'propn': 0.17716498667191716, 'adj': 0.1728767014160902, 'adp': 0.1495931603267728}, {'whip': 0.2752348480927583, 'fresh': 0.28520455459034516, 'family': 0.28520455459034516, 'safe': 0.32002312899408714, 'seed': 0.2752348480927583, 'provide': 0.3115437893326922, 'nice': 0.27827642962977506, 'home': 0.2503859801866032, 'cop': 0.25524358225804855, 'ride': 0.2650409552024675, 'adj': 0.3116856531987115, 'adp': 0.3371336443009702}, {'stoge': 0.29485756028570387, 'burnin': 0.29485756028570387, 'dame': 0.28174121767961785, 'fly': 0.22203078938408224, 'problem': 0.25433207986725254, 'dollar': 0.21315306447020974, 'bop': 0.28174121767961785, 'plus': 0.2172883310164188, 'clothe': 0.23689614610694115, 'bust': 0.21188431828049756, 'light': 0.2022685640663363, 'people': 0.18483263030602493, 'today': 0.23190954408091424, 'game': 0.19273212876690451, 'block': 0.2083518433594428, 'walk': 0.21447361032060283, 'world': 0.16083178729606543, 'play': 0.20135726771451676, 'adj': 0.132668674342692, 'cconj': 0.08433027478952355, 'adp': 0.11480046824539636}, {'century': 0.4878146399513499, 'cotton': 0.4878146399513499, 'america': 0.42655278426206744, 'deep': 0.3626196788241631, 'money': 0.34734497251256063, 'num': 0.21981429177020095, 'propn': 0.12503568607472845, 'adj': 0.12200919252699713, 'adp': 0.10557663669843957}, {'mic': 1.0}, {'puff': 0.9707861716986288, 'adv': 0.2399462623978971}, {'teach': 0.4764878191544436, 'ether': 0.5734519434175724, 'soul': 0.4373455876610225, 'fuck': 0.33148015977997203, 'propn': 0.14698607074042186, 'like': 0.2444237569385333, 'adp': 0.2482218553352527}, {'conscious': 0.4181744168451131, 'rope': 0.36777228459969463, 'semi': 0.36777228459969463, 'learn': 0.3257347003495114, 'truth': 0.29097359733680184, 'yo': 0.23349934052977503, 'skill': 0.33229988055002807, 'hard': 0.2784978229155901, 'propn': 0.19282130165741937, 'adv': 0.08915316036694672, 'adj': 0.18815405470055813, 'cconj': 0.11959931923850675, 'adp': 0.16281291487166977}, {'girl': 1.0}, {'joke': 0.46320650953437914, 'breathe': 0.4128095573915283, 'feel': 0.2907510361267646, 'really': 0.35238472823025424, 'people': 0.3142609056579342, 'street': 0.33258419994032273, 'hope': 0.3561794085883257, 'adv': 0.10688167830141983, 'cconj': 0.1433821965626935, 'adp': 0.1951890153866256}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'mathematic': 0.991187545784174, 'propn': 0.13246602991841397}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'wow': 0.9310696503703251, 'intj': 0.36484148086433443}, {'end': 1.0}, {}, {'dope': 0.4875749088147014, 'open': 0.46438471176639456, 'fiend': 0.45697932898887333, 'bottle': 0.4773115842816053, 'like': 0.23266465336174164, 'adp': 0.23628002716163266}, {'drama': 0.6192260017631366, 'camera': 0.6313669540038932, 'cconj': 0.20532014251902092, 'adp': 0.4192595463531565}, {'adv': 0.26511655939521467, 'adj': 0.2797587624104287, 'hot': 0.9227395324732917}, {'tour': 0.9114501378094454, 'adp': 0.4114105568494115}, {'shade': 0.38940395202923533, 'alleyway': 0.4075324874598851, 'canal': 0.4075324874598851, 'perfect': 0.3584130160148746, 'tree': 0.3313123995350011, 'say': 0.2007477806262478, 'place': 0.27588523769711265, 'money': 0.26100980717152994, 'just': 0.196766233821383, 'adv': 0.08688434238364488, 'adj': 0.09168290412919103, 'cconj': 0.1165556908896952, 'adp': 0.15866956350135103}, {'picture': 0.5653409575670135, 'note': 0.5896365970301906, 'say': 0.3425496380092653, 'bitch': 0.37692594715483213, 'adp': 0.2707487045232587}, {'know': 0.7108062224970315, 'num': 0.6340463591432246, 'adp': 0.3045319827484817}, {'cable': 0.6051053351432518, 'mc': 0.4210436340478888, 'mic': 0.3901016959721626, 'death': 0.4592398881157035, 'num': 0.24525647447017418, 'propn': 0.13950781499551498, 'adp': 0.11779649764605489}, {'wanna': 0.8666933787006625, 'adv': 0.2981342067831238, 'cconj': 0.39994822422687115}, {'camera': 0.8998213243443915, 'adv': 0.4362586208375775}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'leg': 0.3231345709319979, 'ashy': 0.3843048060717033, 'white': 0.294427396239551, 'sky': 0.3104406002206568, 'black': 0.23833459498237078, 'kid': 0.2658037125794746, 'shit': 0.20774947741251806, 'rock': 0.26016306538846673, 'blue': 0.30524342407348626, 'hold': 0.25516243743907296, 'like': 0.15419577910162857, 'adv': 0.08574661396324834, 'adj': 0.3619293590406503, 'adp': 0.07829591291139555}, {'yo': 1.0}, {'vigilance': 0.29166277070513685, 'relax': 0.2565089570140657, 'force': 0.2515763849548463, 'fighting': 0.2786885440232702, 'guide': 0.2786885440232702, 'monarch': 0.2786885440232702, 'mysterious': 0.29166277070513685, 'powerful': 0.2623429515046707, 'fear': 0.22318411997993937, 'foe': 0.2565089570140657, 'world': 0.1590891705634995, 'sleep': 0.2050095508043951, 'adv': 0.31090684559230414, 'adj': 0.19684680854243888, 'adp': 0.28389150522591167}, {'chicago': 0.5686732601981055, 'spine': 0.5686732601981055, 'mind': 0.3904193921561315, 'propn': 0.41163614038876867, 'adj': 0.13389082397310406, 'adp': 0.11585801517976031}, {'leave': 1.0}, {'jay': 0.4585835265170106, 'nasty': 0.5134062190129952, 'nas': 0.40120452154844016, 'fuck': 0.29677111999345956, 'propn': 0.5263810765148359}, {'lesson': 0.5182585849638874, 'teach': 0.4404211275121988, 'let': 0.33020829162530657, 'street': 0.3909332400955617, 'nigga': 0.31696822812602987, 'smoke': 0.4024204190613102, 'adp': 0.11471662548889565}, {}, {'nah': 0.9596215032578224, 'propn': 0.2812944551270024}, {'need': 0.8831739040237379, 'adv': 0.3226362095811918, 'adj': 0.3404551828340267}, {'bastard': 0.6691969418421464, 'bloody': 0.7208791149471487, 'adj': 0.1803018432022657}, {'let': 0.9346387654951096, 'adv': 0.35559861927990905}, {}, {'innocent': 0.4933256384278619, 'kendrick': 0.4310974702657944, 'eat': 0.36680934710370866, 'street': 0.3425099550831183, 'propn': 0.23806366616280114, 'adv': 0.11007149119169334, 'adj': 0.11615066302423638, 'cconj': 0.4429840297273805, 'adp': 0.20101430225725456}, {'miss': 0.7411834833762533, 'rhyme': 0.6361350541177777, 'adv': 0.21442769618875102}, {'matter': 0.9656011204395729, 'adp': 0.2600278373671586}, {'worthy': 0.46689924408804356, 'wonder': 0.4108165707238484, 'fame': 0.39744666100534304, 'dirty': 0.4545282717439034, 'game': 0.330304392389007, 'man': 0.25805870928383484, 'adv': 0.10773375109939073, 'adj': 0.22736762234809482, 'adp': 0.09837254211940329}, {'read': 0.3802070731979282, 'write': 0.35678315056590126, 'eat': 0.35872701492264725, 'need': 0.29466710823095843, 'sleep': 0.3549051927605191, 'bleed': 0.4215986039347838, 'adv': 0.10764615944237858, 'cconj': 0.4332232531620287, 'adp': 0.09829256148305852}, {'bring': 0.9623436363331538, 'adp': 0.2718358431279486}, {'hustlin': 0.30362595185348407, 'cheese': 0.32987960901921654, 'government': 0.2927296996364944, 'forgive': 0.2927296996364944, 'lord': 0.266476042470762, 'cocaine': 0.27737229468775165, 'pot': 0.31898335680222684, 'thug': 0.2743405954111559, 'eatin': 0.2977873374674599, 'day': 0.21641319052109664, 'just': 0.1666885195769877, 'hope': 0.24528002313599503, 'propn': 0.07959483857937556, 'adv': 0.2208095686706593, 'adj': 0.07766824247744972, 'adp': 0.13441531165340034}, {'adp': 1.0}, {'speak': 0.8868751019792125, 'adp': 0.46200925693037953}, {'light': 0.22463334754584857, 'shine': 0.24852307923174444, 'black': 0.19404725134458478, 'people': 0.27369270272256985, 'say': 0.053768183942708006, 'world': 0.17861491694897486, 'free': 0.7939596754929643, 'want': 0.06383675553567646, 'adj': 0.3192319342069027, 'adp': 0.06374696335248813}, {'cconj': 1.0}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'num': 1.0}, {'gain': 0.6072007839178005, 'chain': 0.5148512352496419, 'way': 0.36229990475328855, 'adv': 0.2589056942888498, 'adj': 0.40980731332187453}, {'1555': 0.3749004684910439, 'tribe': 0.34639104460884745, 'pile': 0.34639104460884745, 'capture': 0.33721306009211566, 'date': 0.317881620726651, 'pen': 0.27101622781099094, 'high': 0.24871021038441543, 'foot': 0.2979124878982404, 'man': 0.19145292482500192, 'num': 0.15195167161691395, 'propn': 0.08643378625574118, 'adv': 0.15985464553851556, 'adj': 0.16868330632922385, 'cconj': 0.10722282140548431, 'adp': 0.21894681598033813}, {'story': 0.3303181899397138, 'horror': 0.3840700457833912, 'glorious': 0.3971896145590164, 'oratory': 0.41568060819864605, 'laboratory': 0.3971896145590164, 'bring': 0.2864736089352672, 'like': 0.15936558976203918, 'adv': 0.08862149005612209, 'adj': 0.1870319865166169, 'adp': 0.3236839402421755}, {'swolla': 0.3940226785531319, 'thunder': 0.3940226785531319, 'mess': 0.3640591002005003, 'fatty': 0.3764951088294223, 'thigh': 0.3465315304767906, 'roller': 0.3640591002005003, 'high': 0.26139594776612396, 'adj': 0.2659307753917639, 'adp': 0.153409625832131}, {'drop': 0.8360950404931103, 'intj': 0.48187958137591586, 'adv': 0.2621777113253457}, {'adv': 0.6878566831204381, 'adj': 0.7258465288795898}, {}, {'puff': 0.9707861716986288, 'adv': 0.2399462623978971}, {'yah': 0.7330757012624104, 'mic': 0.5373708982557649, 'propn': 0.19217409365784607, 'adv': 0.17770783251624575, 'adp': 0.32453286107200463}, {'happen': 0.5044572237782017, 'know': 0.3189756306385451, 'tell': 0.374247944935719, 'hop': 0.4860955982141301, 'hip': 0.4987496737818266, 'adp': 0.1366593006256486}, {'new': 0.43999538850727404, 'night': 0.5031548966060454, 'year': 0.49357496017686436, 'propn': 0.4976520586403293, 'cconj': 0.20578240723206137, 'adp': 0.14006782715855867}, {'crew': 1.0}, {'toilet': 0.4087893239414404, 'milk': 0.3595183672883387, 'cold': 0.28306321543584384, 'bust': 0.29375555824225935, 'wealth': 0.4087893239414404, 'shit': 0.21115520383017453, 'justice': 0.3284318547489673, 'talk': 0.27332822890891734, 'propn': 0.09424690556242257, 'like': 0.15672357674000614, 'adv': 0.17430459007321686, 'adj': 0.09196565562064322, 'cconj': 0.11691515043942612, 'adp': 0.23873835432636048}, {}, {'everybody': 0.9730266152638959, 'adv': 0.15868364090427398, 'adj': 0.16744762792422485}, {'breasted': 0.3636455346807828, 'vest': 0.3636455346807828, 'test': 0.3359919957753491, 'informer': 0.3636455346807828, 'bubble': 0.3270895446786292, 'double': 0.2889688198733896, 'pop': 0.26798000782410875, 'everybody': 0.2376950346726605, 'propn': 0.08383894675822301, 'doubt': 0.2889688198733896, 'adv': 0.07752781462508254, 'adj': 0.1636192437120901, 'cconj': 0.20800774337208325, 'adp': 0.07079126208643033}, {'shall': 0.561524267961455, 'fall': 0.4411285908340627, 'write': 0.4411285908340627, 'intj': 0.24462574800433456, 'adv': 0.2661885716755238, 'cconj': 0.1785465138332112, 'adp': 0.36458834225538744}, {'rollin': 0.4897696408738179, 'foul': 0.4696694727453912, 'gettin': 0.42826226777981674, 'style': 0.4012615943512667, 'money': 0.3487370171255399, 'adv': 0.11608677362024976, 'adj': 0.2449963306275984}, {'tank': 0.4994717413443389, 'modern': 0.23074462794516185, 'mega': 0.23074462794516185, 'auto': 0.23074462794516185, 'bite': 0.21175338521815426, 'small': 0.20852629827037616, 'grand': 0.20563957062750524, 'piranha': 0.24973587067216946, 'figure': 0.20852629827037616, 'reality': 0.21175338521815426, 'day': 0.15654792033609718, 'propn': 0.40303848824370736, 'like': 0.09574491455561784, 'think': 0.30543728547328125, 'adj': 0.11236655036347426, 'cconj': 0.07142531661110699, 'adp': 0.0486163469287629}, {'ban': 0.4331019626982328, 'cellie': 0.4331019626982328, 'fresh': 0.35662839065721585, '50': 0.40016658790802995, 'city': 0.29989832657786974, 'deep': 0.2895843542583365, 'life': 0.24674664687157308, 'num': 0.17554143764462898, 'adv': 0.1846713102488836, 'adj': 0.09743528907774539, 'adp': 0.16862483725219915}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'acrobat': 0.2662260905027588, 'stunt': 0.2662260905027588, 'table': 0.23413813370727943, 'able': 0.23946333013702403, 'lyrical': 0.23413813370727943, 'attempt': 0.24598084382917546, 'exact': 0.25438338038086283, 'couple': 0.22229542358538346, 'half': 0.19245532309770594, 'faggot': 0.25438338038086283, 'motherfuckin': 0.20939049760540424, 'break': 0.1689000042582375, 'time': 0.14615685014756713, 'crack': 0.18434633391115696, 'adv': 0.056758367763202644, 'adj': 0.3593585574154705, 'cconj': 0.1522831522209183, 'adp': 0.36278560864219894}, {'end': 0.9637222527312677, 'adp': 0.2669071366422609}, {'pump': 0.5631582218104348, 'feelin': 0.5307830045181039, 'kid': 0.43148420282147204, 'play': 0.4458580329068258, 'adp': 0.12709923890416597}, {'divine': 0.5957475121184106, 'god': 0.3802880700048072, 'cipher': 0.5608058315725326, 'propn': 0.4312339329076312}, {'holla': 0.5092037752821513, 'ghetto': 0.46615352607778193, 'universal': 0.5230628599929402, 'black': 0.3354691602731322, 'life': 0.3225256948138203, 'propn': 0.13051810704286235, 'adj': 0.12735891128661045}, {'expect': 0.7530618637220852, 'free': 0.6089811449273904, 'adj': 0.1883511940616839, 'adp': 0.16298350292554886}, {'baywatch': 0.5058465623361967, 'flock': 0.46558847464922726, 'wanna': 0.3281055955489709, 'girl': 0.35256973402858716, 'watch': 0.3702076521887722, 'play': 0.3615228276276673, 'propn': 0.12205293802423595, 'adv': 0.11286517685960266}, {'cereal': 0.7815421533362925, 'eat': 0.555261080637988, 'adj': 0.17582415272918822, 'cconj': 0.22352373968835626}, {'quick': 0.5747219196759638, 'clap': 0.5815505731101177, 'gun': 0.4863525484164375, 'propn': 0.16492237797626444, 'adj': 0.1609304255305974, 'cconj': 0.2045894718437398}, {'pic': 0.9815736896072488, 'adp': 0.19108399166547846}, {'world': 1.0}, {'murder': 0.764032433624464, 'rap': 0.6141987285540892, 'adp': 0.1975205361789484}, {'kool': 0.4916777200967183, 'boo': 0.43261872326648, 'taste': 0.4145113464184438, 'girl': 0.35440039832256, 'propn': 0.3680600375815641, 'like': 0.20401619625462808, 'adp': 0.31077960293462725}, {'little': 0.8825299576702685, 'adj': 0.2907371580891428, 'cconj': 0.36961165934093954}, {'woo': 1.0}, {'valuable': 0.617448112866873, 'lot': 0.4697241532024015, 'money': 0.42800060779247934, 'adv': 0.14247185479667318, 'adj': 0.3006809523113856, 'cconj': 0.1911265598908242, 'adp': 0.26018435993907396}, {'fuck': 0.7529802290753269, 'know': 0.6580431403955732}, {'funk': 0.36472434076100335, 'mercedes': 0.4949263901588671, 'ride': 0.3787240674406355, 'bm': 0.4729102543276304, 'quit': 0.45728955736344057, 'propn': 0.11410591720916725, 'adv': 0.10551638276812765, 'adj': 0.11134397913346371, 'adp': 0.09634784551935478}, {'hog': 0.3264073829884768, 'soda': 0.3264073829884768, 'shelf': 0.2935948117035573, 'cent': 0.30158563102494407, 'meat': 0.30158563102494407, 'dead': 0.23596048845510495, 'cold': 0.22601843531499066, 'cut': 0.22192137564477674, 'crazy': 0.23190216347602727, 'eat': 0.23190216347602727, 'hood': 0.23742233299701004, 'place': 0.22096637989071355, 'fast': 0.25425326563915607, 'propn': 0.15050728577148112, 'adv': 0.06958878541655375, 'adj': 0.14686425118212634, 'adp': 0.19062621475360747}, {'nas': 0.9501925120844457, 'propn': 0.31166358462074223}, {'mc': 0.5423487178288816, 'island': 0.5783677249705539, 'day': 0.4885948337051868, 'propn': 0.179700815952298, 'adv': 0.16617350391224217, 'cconj': 0.22292241645255034, 'adp': 0.15173434365665855}, {'bullpen': 0.592290096350943, 'bologna': 0.592290096350943, 'talk': 0.39602209146510425, 'know': 0.26912508365203086, 'adv': 0.12627394650803836, 'adp': 0.2306034830252101}, {'yo': 1.0}, {'green': 0.6014641031178445, 'thumb': 0.683893025947672, 'let': 0.38322266090069657, 'adj': 0.1538559517632436}, {'earn': 0.42450102158793196, 'past': 0.4001656184538919, 'plate': 0.4001656184538919, 'gold': 0.3501965731087076, 'way': 0.2815958388078601, 'hood': 0.3432827110268713, 'old': 0.3012951337035464, 'adv': 0.10061659580761771, 'adj': 0.21234716070019677, 'adp': 0.18374762241155873}, {'man': 0.9114220658954327, 'propn': 0.4114727424737899}, {'ooh': 0.9521932312059845, 'propn': 0.30549640005326834}, {'yes': 0.8713325397177943, 'intj': 0.4906929846950516}, {'dice': 0.34739468704084553, 'window': 0.31802446518595956, 'pro': 0.32747956475412215, 'floor': 0.3037673715776561, 'style': 0.2846157343327093, 'blood': 0.28658689315468683, 'game': 0.2524507234323314, 'ground': 0.34739468704084553, 'set': 0.2846157343327093, 'propn': 0.08904352078732135, 'hit': 0.23742784500350947, 'adj': 0.2606646569171206, 'cconj': 0.11046024870928658, 'adp': 0.07518585885068407}, {'dick': 0.6355529999553693, 'right': 0.5220587154963554, 'fuck': 0.4651101958766602, 'adv': 0.19071560468349474, 'adj': 0.2012486947640061, 'adp': 0.17414393041272888}, {}, {'need': 0.38223152508301744, 'blunt': 0.5468824746756477, 'trees': 0.6051524157645713, 'propn': 0.1510016363598691, 'adv': 0.1396347082645553, 'adp': 0.3825046769441755}, {'exchange': 0.37158942269967465, 'scene': 0.32680213187206614, 'conversation': 0.3550597662370624, 'week': 0.33423486193753155, 'date': 0.31507415396968225, 'honey': 0.32051784814439466, 'number': 0.27981067458077447, 'late': 0.3020917032745111, 'let': 0.20822187378237555, 'night': 0.25985318915334527, 'num': 0.15060966491091077, 'adj': 0.08359676458959407, 'adp': 0.07233770719601838}, {'shit': 0.4069988471351199, 'shot': 0.5268365261075155, 'fuck': 0.40967536473214866, 'num': 0.3193599372226894, 'propn': 0.1816596570397997, 'adv': 0.5039546688170788}, {'issue': 0.7009276239725915, 'press': 0.5943231013215198, 'just': 0.338424280258229, 'adv': 0.14943504515915162, 'adp': 0.1364503242857633}, {'turd': 0.306463398373656, 'toad': 0.306463398373656, 'derriere': 0.306463398373656, 'wide': 0.2831582929845393, 'autograph': 0.2643428014395648, 'load': 0.27565572480547174, 'read': 0.23077010537664153, 'yard': 0.27565572480547174, 'bird': 0.2523506194163551, 'fry': 0.2695256802565515, 'ask': 0.22291546947831814, 'taste': 0.2387180066883673, 'villain': 0.2345097514733352, 'love': 0.1648425704541583, 'propn': 0.07065553152508112, 'like': 0.11749338135821061, 'adj': 0.06894531169116602, 'adp': 0.11931910987556575}, {'run': 0.6735190367191181, 'money': 0.7072221958208994, 'adp': 0.21496249187990107}, {'rhyme': 0.49516977867468437, 'tell': 0.41737653168542727, 'heart': 0.5532118557537476, 'hold': 0.4966900331347028, 'adv': 0.16691127800017114}, {'flesh': 0.5432129628496652, 'journalist': 0.6039232116547228, 'beef': 0.47042271946379743, 'say': 0.2974885392917173, 'adv': 0.12875408147676654, 'adp': 0.11756637241223773}, {'greet': 0.43825611462796066, 'bang': 0.3300113824077002, 'pop': 0.3229625165892923, 'gang': 0.3562898404819044, 'meet': 0.6459250331785846, 'propn': 0.20208102427553876, 'adj': 0.09859482268986518}, {'fur': 0.796526649087674, 'new': 0.48709249666387655, 'adj': 0.17919522652004377, 'adp': 0.3101213758826418}, {'adj': 1.0}, {'splash': 0.6440311474944368, 'enterprise': 0.6440311474944368, 'life': 0.38399879368054346, 'adj': 0.15163340188060617}, {'listen': 0.9281779023708023, 'adj': 0.2814075826663244, 'adp': 0.2435067842349227}, {'hostility': 0.31170428987329624, 'usually': 0.29783854312492253, 'household': 0.31170428987329624, 'broken': 0.2741348924955578, 'responsibility': 0.31170428987329624, 'claim': 0.2741348924955578, 'terrorist': 0.28800063924393154, 'fist': 0.28800063924393154, 'metal': 0.2741348924955578, 'rest': 0.29783854312492253, 'say': 0.1535434507166848, 'let': 0.17466495906122387, 'know': 0.14163235820364428, 'propn': 0.215591477447431, 'adv': 0.0664541431104144, 'adp': 0.12135960969384763}, {'thankful': 0.7869054496938348, 'make': 0.4643763220295651, 'adv': 0.18651485754847733, 'adj': 0.19681594328906052, 'cconj': 0.25021042326319176, 'adp': 0.1703081949050027}, {'ski': 0.7527946327889589, 'jet': 0.6582554525745584}, {'pair': 0.4239422424005672, 'odd': 0.4503564727275354, 'swear': 0.3786727183268898, 'fear': 0.36066216282852254, 'god': 0.28747949482613433, 'rotten': 0.4239422424005672, 'propn': 0.10866403915204406, 'adv': 0.2009683043392026, 'adj': 0.10603382194215462, 'cconj': 0.13479988981073088}, {'ill': 0.7793343282230603, 'want': 0.6266083344906224}, {'bitch': 0.6529715642208193, 'sit': 0.7573824240890573}, {'adv': 1.0}, {'old': 0.47262563858169426, '20': 0.6385639126551825, 'year': 0.5078455134120728, 'adj': 0.33309768794901334}, {}, {'know': 1.0}, {'kid': 0.6342639852283153, 'alright': 0.7407770582352232, 'propn': 0.22126578369613342}, {'prince': 0.42356652759923735, 'belly': 0.3823599429777626, 'beast': 0.40957570310081565, 'motherfuckin': 0.3486501588673348, 'king': 0.3054979972732988, 'straight': 0.3084463507695323, 'propn': 0.1022000404696854, 'adp': 0.43147428074194416}, {'day': 0.7486057902535149, 'fuck': 0.6209201011818862, 'adp': 0.23248139441079285}, {'right': 0.7508006728247508, 'adv': 0.548556704693293, 'cconj': 0.3679455006137956}, {'ooh': 0.9967987271624574, 'propn': 0.07995184505253415}, {'breasted': 0.3636455346807828, 'vest': 0.3636455346807828, 'test': 0.3359919957753491, 'informer': 0.3636455346807828, 'bubble': 0.3270895446786292, 'double': 0.2889688198733896, 'pop': 0.26798000782410875, 'everybody': 0.2376950346726605, 'propn': 0.08383894675822301, 'doubt': 0.2889688198733896, 'adv': 0.07752781462508254, 'adj': 0.1636192437120901, 'cconj': 0.20800774337208325, 'adp': 0.07079126208643033}, {'swipe': 0.7363808899775025, 'yo': 0.4111787934941077, 'niggas': 0.4163927633507497, 'propn': 0.3395471267523818}, {'sweat': 0.6058517268067694, 'wipe': 0.5789012263360114, 'dome': 0.5328290414736775, 'adp': 0.11794179850315899}, {'hey': 0.7780259572104906, 'baby': 0.6282321305908349}, {'way': 1.0}, {'tang': 0.6450796717532209, 'wu': 0.5883714850934805, 'propn': 0.38186015136469154, 'adv': 0.17655746029994165, 'adj': 0.1863086059223037, 'adp': 0.16121601654645354}, {'hater': 0.4702591642441478, 'shut': 0.3698653284455726, 'fan': 0.40562633429836775, 'sound': 0.3084920386581116, 'bitch': 0.5097864672695044, 'fuck': 0.24450411993221333, 'propn': 0.10841885647857802, 'like': 0.1802901736877712, 'adv': 0.10025742607638624, 'adp': 0.0915458504771031}, {'nigga': 0.9296393437041822, 'adv': 0.36847074597212937}, {'12': 0.7647102220536028, 'day': 0.5016781106014829, 'num': 0.3243756720679639, 'propn': 0.18451272834147583, 'adp': 0.1557973879129465}, {'finish': 0.7674438291203818, 'roll': 0.6411161900506385}, {'hell': 0.7195137504348512, 'intj': 0.3900154616744883, 'yeah': 0.5268121832066306, 'propn': 0.22947075241754408}, {'bust': 0.5190861828674178, 'cop': 0.5323252388108726, 'shot': 0.4829896934145258, 'run': 0.44059696857859704, 'adp': 0.1406223389642422}, {'walkin': 0.5808893443704427, 'smell': 0.6236437255495335, 'street': 0.47965095550607484, 'adv': 0.15414412089500293, 'adp': 0.1407502186683614}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'world': 0.49608270754292294, 'master': 0.7393837861918846, 'propn': 0.4193648425234025, 'adp': 0.17704997274430218}, {'stand': 0.1743788071085085, 'boat': 0.22551084267293692, 'van': 0.23321413805506466, 'bond': 0.23321413805506466, 'jam': 0.206950362245234, 'ball': 0.18676652946435288, 'flip': 0.18523599215408365, 'fall': 0.1724653423501247, 'pose': 0.21465365762736172, 'lottery': 0.24407132310063984, 'guess': 0.18378822805677236, 'cop': 0.17986261025194566, 'watch': 0.17067953987440918, 'yo': 0.1362840257330655, 'timbs': 0.22551084267293692, 'mad': 0.1775326967719559, 'rock': 0.15787912118125902, 'gun': 0.16594184629655556, 'niggas': 0.13801218101090865, 'water': 0.17986261025194566, 'hope': 0.1734049865884713, 'propn': 0.3938967070343479, 'like': 0.09357321362305825, 'adj': 0.10981783492155793, 'adp': 0.23756811721291143}, {'bail': 0.711589005956208, 'ferryboat': 0.4045551147539871, 'island': 0.3001920949365357, 'staten': 0.355794502978104, 'cash': 0.2801312678598347, 'propn': 0.18654140635275465}, {'fix': 0.3872247277387509, 'plumbing': 0.4305015108279576, 'uhh': 0.4305015108279576, 'need': 0.25123901624693273, 'leave': 0.2739711609594882, 'super': 0.3025992009267387, 'num': 0.17448744320648363, 'adv': 0.3671249955711516, 'adj': 0.29055079012759694}, {'snow': 0.9402637932770282, 'cconj': 0.28143806829094953, 'adp': 0.19156359980161394}, {'person': 0.6859168596939195, 'say': 0.3984836985628517, 'just': 0.3905803409672949, 'adv': 0.3449302800980417, 'adp': 0.3149585729721619}, {'facin': 0.9756158595280678, 'adj': 0.2194850670029951}, {'guy': 0.3501777693814919, 'accent': 0.4536780355122978, 'wonder': 0.3688274264924715, 'stack': 0.3533900520927583, 'eye': 0.30334210479336504, 'say': 0.4469575386032735, 'lot': 0.31888996338248965, 'adv': 0.09672239387607079, 'adp': 0.08831798455328357}, {'woo': 0.9890308831944519, 'propn': 0.14770887613005038}, {'mommy': 0.5999086916550671, 'strong': 0.5505337108430737, 'guess': 0.4889173138120379, 'adv': 0.2768495108419612, 'adj': 0.1460698582988581}, {'oh': 0.5460431198710513, 'intj': 0.6942535844167921, 'yeah': 0.46888044506667687}, {'kardashian': 0.7035845586811582, 'ugly': 0.5965759411611805, 'propn': 0.32442465384297053, 'adj': 0.15828597136490483, 'adp': 0.13696755258465002}, {'doc': 0.9219500278345817, 'propn': 0.24168706000189125, 'adv': 0.22349361853439592, 'adp': 0.20407379468677062}, {'main': 0.8372263245258663, 'shit': 0.5013675756487818, 'adj': 0.2183635400174951}, {'believe': 1.0}, {'adp': 1.0}, {'lung': 0.7572962371510126, 'smoke': 0.6280512418943074, 'adp': 0.17903643973207115}, {'adv': 1.0}, {'level': 0.4314499503971534, 'force': 0.43890432757175, 'vital': 0.45768785788066724, 'soul': 0.3490576106119814, 'high': 0.337565939447298, 'right': 0.29695688039758794, 'propn': 0.11731364873323474, 'adv': 0.10848264635540901, 'adj': 0.22894813478742831, 'adp': 0.09905636431406273}, {'copy': 0.31496129056837924, 'mail': 0.33458533186712663, 'mathers': 0.32353364493513126, 'help': 0.30795716705985393, 'week': 0.31496129056837924, 'ex': 0.31496129056837924, 'fan': 0.3020352650126186, 'lp': 0.31496129056837924, 'study': 0.31496129056837924, 'tell': 0.1866768244880154, 'propn': 0.16146051318642973, 'adv': 0.07465313687496003, 'adj': 0.07877617765498252, 'cconj': 0.10014748005023598, 'adp': 0.1363327420912408}, {'pillar': 0.46880013005466825, 'lounge': 0.46880013005466825, 'surprise': 0.433150076915093, 'judge': 0.4043678310412418, 'num': 0.19001033448357837, 'adv': 0.19989273131593654, 'adp': 0.36504727497325096}, {'steelo': 0.5271110611929035, 'wild': 0.5004497762458011, 'sweet': 0.48725471091154215, 'yo': 0.33466384044806574, 'know': 0.27233301807133553, 'adv': 0.12777911478803536, 'adj': 0.13483626634468956, 'adp': 0.11667612260033115}, {'verse': 0.4600122374927462, 'slaughter': 0.48327966298594777, 'ton': 0.5230555895872544, 'microphone': 0.4511663728649809, 'num': 0.21200072516914575, 'cconj': 0.14959569480717858, 'adp': 0.10182378661887755}, {'difference': 0.5446331565793313, 'fix': 0.5126894264171722, 'soon': 0.45293792150677364, 'hope': 0.40495874735508886, 'adv': 0.24303858963491587, 'adp': 0.11096023136446949}, {'swear': 0.3976436999779275, 'mc': 0.34438521777291775, 'crowd': 0.39329742552783126, 'sound': 0.3246796515712494, 'dig': 0.40754365897515815, 'feel': 0.28704214568737546, 'come': 0.2608612495267153, 'world': 0.2699653330181238, 'propn': 0.22821591570620853, 'adj': 0.11134597038353644, 'adp': 0.09634956858202857}, {'depict': 0.45295119073925455, 'film': 0.45295119073925455, 'white': 0.3315827490091689, 'flick': 0.39835744971464404, 'black': 0.268411300027064, 'life': 0.25805513975301464, 'propn': 0.10442848087711964, 'like': 0.173654561270954, 'adj': 0.3057023565501958, 'cconj': 0.1295455959964925, 'adp': 0.1763529778201771}, {'body': 0.4739117897497821, 'belt': 0.5800060223848572, 'way': 0.39350192533088557, 'shit': 0.34065377744992825, 'adv': 0.14060159531530667, 'adp': 0.38515329363543865}, {'son': 0.3979534941895323, 'wait': 0.43196373809562627, 'hear': 0.38784793339493784, 'song': 0.42453431955251797, 'rap': 0.36171459360306996, 'propn': 0.27552786569538523, 'adv': 0.12739349742356673, 'adj': 0.13442935160162783, 'cconj': 0.17089888350071114, 'adp': 0.23264802465619866}, {'shit': 0.9168173621334246, 'adj': 0.399306804964189}, {'hurtin': 0.3166022437892939, 'service': 0.3166022437892939, 'person': 0.28094758570931055, 'orange': 0.3061445561769867, 'agent': 0.3313415266446629, 'really': 0.23289971968667328, 'send': 0.24255844009686706, 'meet': 0.24417433031491373, 'just': 0.1599794527127492, 'secret': 0.2728359730097184, 'propn': 0.3819560803288236, 'adv': 0.14128145133336506, 'think': 0.20262218677382193, 'adp': 0.19350781969654}, {'conquer': 0.9780202119011796, 'adv': 0.2085101079390913}, {'flashin': 0.6658669248024879, 'imagine': 0.5908792770636327, 'everybody': 0.4555029290694371}, {'tryna': 0.7184078241641546, 'work': 0.6956221662509937}, {'hope': 1.0}, {'career': 0.49896978970809447, 'crack': 0.34550802774965045, 'ear': 0.42308116093974535, 'sugar': 0.41663347326328687, 'fake': 0.36294084552525424, 'propn': 0.11503812818716669, 'like': 0.19129738852833536, 'adj': 0.11225362590920528, 'adp': 0.29140493519969024}, {'praise': 0.6786281239855452, 'whisper': 0.7344820415339365}, {'whoa': 0.6786388222055313, 'common': 0.5810561441268955, 'propn': 0.17790359215806603, 'adv': 0.16451156947071321, 'adj': 0.34719485785658327, 'adp': 0.1502168181441739}, {'king': 0.4852291172058863, 'kong': 0.7040799859557464, 'tell': 0.3753562276265237, 'propn': 0.32465309663649056, 'adv': 0.15010711648178107}, {'depend': 0.7582989627999766, 'friend': 0.59151400041766, 'propn': 0.20937658369963263, 'adp': 0.1767917320596391}, {'propn': 1.0}, {'everyday': 0.326401409499024, 'live': 0.22774466354260361, 'life': 0.20126231365060768, 'justice': 0.5676453395541468, 'poetic': 0.5990744314777409, 'adj': 0.31789776209132403, 'adp': 0.13754117964569046}, {'wrap': 0.7617276072415924, 'tell': 0.439511911885471, 'adv': 0.35152668796621717, 'adp': 0.32098180528540604}, {'dice': 0.33026936317898026, 'fox': 0.35084719231804457, 'overnight': 0.36718073419284336, 'rifle': 0.36718073419284336, 'scare': 0.339258359930113, 'bet': 0.2950024437925838, 'big': 0.24550753625058624, 'roll': 0.2834136114046522, 'tell': 0.19574988352591183, 'propn': 0.0846539915625859, 'adv': 0.3131260216836515, 'adj': 0.08260493846984929, 'adp': 0.07147946312650576}, {'protect': 0.8797396199771748, 'like': 0.35298058719474157, 'cconj': 0.2633220815431765, 'adp': 0.1792327745638068}, {'champ': 1.0}, {'fool': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'shave': 0.6906478098323872, 'hair': 0.5743693341099798, 'just': 0.34898507765402154, 'propn': 0.1666426157780666, 'adv': 0.1540982839626817, 'adp': 0.14070836460211586}, {'yawk': 1.0}, {'family': 0.5745590163113686, 'grandma': 0.6447027974564942, 'hold': 0.4426779888246898, 'cconj': 0.19956304871955738, 'adp': 0.1358345593837088}, {'head': 0.5731056968751698, 'high': 0.60112477263727, 'adj': 0.20385112860491456, 'cconj': 0.5183083882183647}, {'word': 1.0}, {'tired': 0.47469611150623314, 'agree': 0.5042726225744423, 'everyday': 0.48761599533388467, 'old': 0.3369217530968836, 'adj': 0.35618420102986476, 'adp': 0.20547484557517065}, {'stamp': 0.5199323241076942, 'buy': 0.45210766876938263, 'goddamn': 0.48538351345802183, 'food': 0.399798327300682, 'man': 0.2873704898285826, 'propn': 0.1297369550073736, 'adv': 0.11997076522013693, 'adj': 0.12659666706591777}, {'second': 0.7780550268417077, 'love': 0.47586037240415663, 'num': 0.3585735692836698, 'adj': 0.19902833113126386}, {'brew': 0.7770045823059145, 'kick': 0.552037279358628, 'adp': 0.3025206129736212}, {'ink': 0.3724514333425625, 'leaf': 0.4046562306669355, 'loose': 0.3536128345644793, 'lee': 0.4046562306669355, 'bruce': 0.4234948294450187, 'cause': 0.257648267189597, 'want': 0.24767494066053114, 'propn': 0.2929118364348223, 'adj': 0.09527396475609239, 'adp': 0.08244218780194124}, {'forever': 0.6810824909107329, 'live': 0.26661882765293277, 'gun': 0.5623583087407659, 'adv': 0.176340974637872, 'cconj': 0.11828105943602325, 'adp': 0.32203668354473164}, {'know': 1.0}, {'teach': 0.7697617765337418, 'look': 0.6383312677502316}, {'motherfucker': 0.8272384263953194, 'propn': 0.5176117349204278, 'adp': 0.21852843697711402}, {'ho': 0.9242640355981206, 'cconj': 0.3817538375705946}, {'dat': 0.6264795920919386, 'course': 0.5766208558062667, 'black': 0.3885243106173763, 'propn': 0.15115981904454764, 'like': 0.2513643005959787, 'adj': 0.1475009898624441, 'adp': 0.1276351240167555}, {'rasclaat': 0.5964050294445433, 'bumba': 0.5964050294445433, 'roof': 0.524520944825779, 'adp': 0.11610279990413158}, {'pac': 0.6315272298417637, 'good': 0.40065551654998843, 'nas': 0.44390003358191266, 'propn': 0.4367982506279049, 'adj': 0.14207517744031473, 'cconj': 0.1806189564141377}, {'vigilance': 0.29166277070513685, 'relax': 0.2565089570140657, 'force': 0.2515763849548463, 'fighting': 0.2786885440232702, 'guide': 0.2786885440232702, 'monarch': 0.2786885440232702, 'mysterious': 0.29166277070513685, 'powerful': 0.2623429515046707, 'fear': 0.22318411997993937, 'foe': 0.2565089570140657, 'world': 0.1590891705634995, 'sleep': 0.2050095508043951, 'adv': 0.31090684559230414, 'adj': 0.19684680854243888, 'adp': 0.28389150522591167}, {'hungry': 0.711056323935005, 'pretty': 0.6550702153361813, 'adv': 0.17574962670106792, 'adj': 0.18545615623613534}, {'fat': 0.5874592279519042, 'come': 0.4011419707776558, 'make': 0.4039920599665464, 'beat': 0.5245196544027723, 'adv': 0.16226176473868328, 'adj': 0.17122336904710722}, {'reign': 0.3631297383329538, 'sword': 0.3222353135052132, 'scratch': 0.35113520121036723, 'round': 0.3129316277138342, 'mic': 0.24500252122182894, 'rza': 0.28403174000868014, 'remain': 0.3129316277138342, 'blast': 0.29080775950955057, 'year': 0.26069927342301197, 'propn': 0.2628527388393258, 'adv': 0.16204400777439992, 'adj': 0.08549679275863872, 'adp': 0.22194550199887478}, {'adp': 1.0}, {'know': 0.7108062224970315, 'num': 0.6340463591432246, 'adp': 0.3045319827484817}, {'read': 0.38461136440477145, 'poison': 0.449203069246807, 'god': 0.31153709137111285, 'bomb': 0.4103617801349616, 'niggas': 0.2888163937610143, 'label': 0.37639627230660033, 'propn': 0.3532726260828293, 'adv': 0.10889312475918558, 'adj': 0.11490721623397786, 'adp': 0.09943117539835666}, {'glass': 0.6096065852893102, 'jaw': 0.6385762511860879, 'break': 0.46968093701259517}, {'propn': 0.26935321321021255, 'lose': 0.7811591932735811, 'adv': 0.49815430154801005, 'adj': 0.262833508416861}, {'yo': 0.55776928798381, 'come': 0.5264869257740784, 'let': 0.5597439472281757, 'propn': 0.2303000083202716, 'adv': 0.21296374827678496}, {'sleazy': 0.9851440593101919, 'propn': 0.1229098332344061, 'adj': 0.11993479603571114}, {'rap': 0.7171836901574571, 'intj': 0.46425264919612386, 'like': 0.45422092843866335, 'adv': 0.2525873719227309}, {'handle': 0.6224097542662916, 'live': 0.46519428583440076, 'business': 0.5569655497195364, 'adv': 0.1538391239698797, 'cconj': 0.2063757966999368, 'adp': 0.14047172355836293}, {}, {'mr': 0.3037809224354275, 'wanna': 0.2571893186818024, 'nigga': 0.6696255159558866, 'sit': 0.26089272402569635, 'year': 0.28466632716345225, 'propn': 0.478362947773628, 'adj': 0.09335683087756626, 'adp': 0.08078325913596685}, {'woo': 1.0}, {'feel': 0.5671459280253598, 'just': 0.4721563846061967, 'propn': 0.45091541171909355, 'adv': 0.4169719182203573, 'cconj': 0.2796847433981602}, {'adv': 0.6878566831204381, 'adj': 0.7258465288795898}, {'hawkins': 0.2986177639970145, 'haughty': 0.2986177639970145, 'john': 0.27590928233837403, 'trick': 0.25320080067973355, 'portion': 0.28533415377839566, 'separate': 0.26859878410022325, 'nameless': 0.2986177639970145, 'remain': 0.2458903024415828, 'slavery': 0.2986177639970145, 'anguish': 0.2986177639970145, 'survive': 0.28533415377839566, 'propn': 0.2065401312196699, 'adv': 0.12732829331310158, 'cconj': 0.17081141192717314, 'adp': 0.17439671090695447}, {'pale': 0.6029810018047261, 'wait': 0.43589605851536334, 'sick': 0.4654193627711402, 'look': 0.37371160341541626, 'adv': 0.12855320599880254, 'adj': 0.2713062201482918}, {'world': 1.0}, {'dig': 0.43976805431159316, 'fuckin': 0.36154648478091017, 'shootin': 0.5340696715237252, 'video': 0.5340696715237252, 'just': 0.25786135117458736, 'propn': 0.12313045118336076, 'adv': 0.11386157821824118, 'adp': 0.10396790963606396}, {'merit': 0.3587793843035966, 'stockholder': 0.3587793843035966, 'gunman': 0.3587793843035966, 'dispose': 0.3587793843035966, 'sufficient': 0.34281956519647655, 'affair': 0.34281956519647655, 'fear': 0.27454261974935146, 'god': 0.21883463742026152, 'try': 0.22761795969060866, 'propn': 0.08271704951631531, 'adj': 0.08071488017964384, 'cconj': 0.20522427193538256, 'adp': 0.13968792685844147}, {'logical': 0.29499586446651377, 'electromagnetic': 0.29499586446651377, 'saying': 0.29499586446651377, 'spades': 0.29499586446651377, 'joker': 0.29499586446651377, 'spock': 0.2653409812253903, 'lay': 0.23441675668380949, 'feeling': 0.22978543317233993, 'game': 0.19282253058383272, 'block': 0.2084495716693024, 'come': 0.15548092636627572, 'high': 0.19570123187443242, 'year': 0.20236343898841624, 'stay': 0.19804182171176274, 'num': 0.11956537399428238, 'propn': 0.20403503040355916, 'like': 0.11309690418755904, 'adv': 0.06289197175376304, 'adj': 0.26546180628658184, 'cconj': 0.08436983026017499, 'adp': 0.11485431588865125}, {'king': 0.6566607916978802, 'num': 0.3861941852286595, 'propn': 0.21967659390690425, 'adv': 0.6094200932294126}, {'world': 0.9244563806813182, 'adj': 0.38128781808182366}, {'day': 0.9010423755306027, 'propn': 0.3313953380607089, 'adp': 0.27982095598756856}, {'voice': 0.8805467819018884, 'num': 0.47395924390418653}, {'right': 0.939286159475833, 'adv': 0.34313482862737793}, {'lil': 1.0}, {'person': 0.571708064793872, 'socialize': 0.6742560983594518, 'say': 0.3321340493932929, 'propn': 0.15545061259005355, 'like': 0.2584994792789459, 'adp': 0.13125815009453576}, {'squeeze': 0.9639304605289112, 'propn': 0.2661542170707071}, {'breathe': 0.5342286886658941, 'right': 0.7572579552246959, 'intj': 0.2542280603063993, 'adv': 0.2766372910655351}, {'bowl': 0.664150277074961, 'milk': 0.6321748635169936, 'fuck': 0.37373571294331354, 'adp': 0.13993201302516964}, {'tip': 0.4493450559315411, 'dick': 0.3701143462051235, 'lick': 0.4235128061985077, 'fuckin': 0.35266090665436434, 'let': 0.29191344588948165, 'stick': 0.39227626151757317, 'adj': 0.23439439068793685, 'cconj': 0.14899179081851952, 'adp': 0.20282546681338548}, {'extra': 0.46582206810829074, 'wreck': 0.46582206810829074, 'sure': 0.3880768458019645, 'feel': 0.3132048464221072, 'make': 0.2866600034451643, 'let': 0.30261760595308035, 'know': 0.24538662703406028, 'adv': 0.1151358223299267, 'adj': 0.24298938729142758, 'adp': 0.1051314320352009}, {'munch': 0.6114263536659365, 'bit': 0.48089527289152595, 'little': 0.41754106580658695, 'man': 0.31224117749328983, 'just': 0.2952109698538565, 'adv': 0.13035372219134775, 'adj': 0.13755306752258084}, {'tap': 0.7206865688861099, 'glass': 0.6597566663699758, 'just': 0.0644755584861342, 'adv': 0.19928935331352887, 'cconj': 0.03819249430607159}, {}, {'fear': 0.6866137116846261, 'clock': 0.7057266749094098, 'adp': 0.17467533096567905}, {'3000': 0.6486271819419827, 'ck': 0.6486271819419827, 'num': 0.26289640274111037, 'propn': 0.2990836657488806}, {'oh': 0.5806889975178108, 'food': 0.6693104110263652, 'intj': 0.36915163224960795, 'adj': 0.2119380234543388, 'adp': 0.1833935889697245}, {'ovary': 0.5398131739283805, 'womb': 0.4872975576511826, 'seed': 0.44892943818685954, 'bad': 0.40839900250260286, 'adj': 0.25419176777761276, 'cconj': 0.16157590879780762, 'adp': 0.10997823755145723}, {'uh': 0.6433352381872935, 'amazing': 0.3737667843306697, 'half': 0.32359373882440745, 'intj': 0.35081070060523467, 'doubt': 0.3557079093754661, 'adv': 0.2862999911632644, 'adj': 0.10070404678941279}, {'adp': 1.0}, {'alike': 0.9079774799179537, 'adv': 0.41901896849885206}, {'dirt': 0.3721996944313543, 'filthy': 0.41379725855345256, 'hill': 0.33245535819378896, 'stand': 0.29564092747417475, 'foul': 0.3569246022021349, 'war': 0.31664300787202665, 'mad': 0.30098801569386074, 'sick': 0.3193952310536679, 'propn': 0.09540149134242869, 'adv': 0.08821996723171852, 'adj': 0.18618458921566422, 'cconj': 0.11834743693582711, 'adp': 0.08055435138676506}, {'ho': 1.0}, {'outfit': 0.6759932324694787, 'cool': 0.5217748793940228, 'let': 0.37879597461729114, 'just': 0.32638537180389793, 'adv': 0.14411912980234826}, {'wonder': 0.5067859978878003, 'drink': 0.47701435192059155, 'speak': 0.46589959158455296, 'pack': 0.46589959158455296, 'num': 0.25266125648629556, 'adv': 0.13290105718204215}, {'garbage': 0.7787014911033823, 'nas': 0.5728303022333318, 'propn': 0.1878886047857605, 'adv': 0.1737449417632042}, {'dangerous': 0.7074411617283962, 'game': 0.5687962456430345, 'adv': 0.3710429202055869, 'adj': 0.19576768119400248}, {'hoe': 0.7586080528947625, 'check': 0.6239058231341159, 'adp': 0.18776406989240077}, {'lust': 0.4317169394218254, 'influence': 0.4125125911228677, 'conflict': 0.4317169394218254, 'damn': 0.3250873159142645, 'love': 0.23221477794920029, 'remember': 0.32764814230368144, 'funk': 0.31814362551053443, 'want': 0.2524835249903059, 'propn': 0.09953289686502549, 'cconj': 0.12347252720078822}, {'care': 0.3504641362211522, 'shorty': 0.34601368437649477, 'snake': 0.3553838824877745, 'fuckin': 0.2881270598222153, 'crew': 0.32851759784438306, 'hate': 0.31809804316923096, 'niggas': 0.2406680748538413, 'fake': 0.3095846471141576, 'intj': 0.16677842176720475, 'yeah': 0.22527543935236896, 'propn': 0.09812628905946359, 'adv': 0.18147930149905434, 'adj': 0.19150227698451677, 'adp': 0.165710188760118}, {'round': 0.8003859226235612, 'nigga': 0.5228347493092774, 'propn': 0.2240996789267045, 'adp': 0.18922350193800877}, {'shot': 0.4427328865108472, 'babysittin': 0.6326958127291431, 'num': 0.5367552925275704, 'adv': 0.2823359102104348, 'cconj': 0.18937737326848178}, {'slow': 0.5550703056548172, 'knowin': 0.6379508774450149, 'adv': 0.46394472284660854, 'adj': 0.16318935563851628, 'cconj': 0.20746123034551034}, {'brooklyn': 0.3491293521991251, 'continue': 0.3793175566763009, 'saga': 0.39697652425955116, 'fight': 0.3366001153051998, 'battle': 0.6309101957400424, 'come': 0.2092309932858252, 'propn': 0.09152344936911377, 'adv': 0.08463385205684057, 'adp': 0.07727984119394483}, {'true': 0.8709102771717933, 'adv': 0.24843313588917565, 'adj': 0.26215392503827173, 'cconj': 0.33327403993687976}, {'shout': 0.4722390245527238, 'school': 0.41445859813652436, 'crew': 0.41445859813652436, 'old': 0.34280102846848326, 'mad': 0.39057274158051064, 'propn': 0.24759272849175928, 'adj': 0.24159973706051577, 'adp': 0.20906037600759114}, {'poet': 0.8872450841428116, 'adv': 0.3783144070272821, 'adj': 0.19960422418241816, 'adp': 0.17272094195130486}, {'forget': 0.9645255845011249, 'adv': 0.26398938774648356}, {'stash': 0.7704333347163109, 'boy': 0.609550442754542, 'adv': 0.18676384686455472}, {'prick': 0.45236896807020616, 'usin': 0.47342881305290807, 'bein': 0.4163669252781658, 'shame': 0.45236896807020616, 'rich': 0.36877481343803076, 'propn': 0.10914962309710172, 'adj': 0.10650765230931196, 'adp': 0.18432577874779088}, {'hey': 0.49907014583369397, 'shabazz': 0.6465777760380959, 'intj': 0.25336277818730346, 'num': 0.26206575386470166, 'propn': 0.44720801910487074}, {'know': 1.0}, {'nasty': 0.7916806475823396, 'time': 0.4832036274915679, 'propn': 0.20292202163595444, 'adv': 0.18764669029189876, 'cconj': 0.25172878139035065}, {'sell': 1.0}, {'ability': 0.5814557762245919, 'fuckin': 0.4119502747677229, 'feel': 0.35291966565193017, 'stick': 0.4582257649425218, 'like': 0.2332992588475847, 'adv': 0.1297352080768112, 'cconj': 0.17404029765618093, 'adp': 0.23692449377598682}, {'dave': 0.9721032252951693, 'propn': 0.23455344672532355}, {'penetrate': 0.8843772598245415, 'just': 0.4269980628478821, 'adv': 0.18854579451526213}, {'beez': 0.4962419205070581, 'tang': 0.38654496010716843, 'wu': 0.3525642524364965, 'fuck': 0.25801345996535685, 'propn': 0.4576368577066232, 'adv': 0.10579684872533446, 'killer': 0.3943357705918423, 'adp': 0.19320788241619036}, {'adj': 1.0}, {'relationship': 0.6845081935739338, 'hangin': 0.6324545529903876, 'say': 0.3371841630024044, 'adp': 0.13325393634803814}, {'hold': 1.0}, {'camera': 0.6014004406541059, 'create': 0.6318192834674313, 'wanna': 0.42381386243053226, 'adv': 0.14578790239386202, 'cconj': 0.1955750509320157}, {'son': 0.5928502036657798, 'free': 0.6475036539378466, 'love': 0.4788190202472965}, {'pumpin': 0.7739120938784934, 'block': 0.5468606984386292, 'adj': 0.1741076122537782, 'cconj': 0.2213415164816217, 'adp': 0.15065828848332544}, {'skata': 0.47061376320162135, 'dedicated': 0.44967914193123293, 'later': 0.3929565492189492, 'datum': 0.44967914193123293, 'cheap': 0.40593219686565485, 'adv': 0.10033302519591177, 'adj': 0.2117486966618297}, {'crash': 0.3943494121019558, 'mask': 0.36329970722113614, 'tony': 0.41122615190423045, 'glass': 0.37645934698605904, 'ayo': 0.36329970722113614, 'break': 0.2900489973474413, 'grow': 0.3392453300367661, 'propn': 0.10540467592433041, 'adj': 0.10285335172561294, 'cconj': 0.13075658526050898, 'adp': 0.17800152141731607}, {'flight': 0.4384280993106599, 'frame': 0.4127134898883303, 'blow': 0.30323798884313935, 'lee': 0.4384280993106599, 'num': 0.1859729414698561, 'propn': 0.5289295373098005, 'like': 0.17591183166374436, 'adp': 0.08932266195789229}, {'glue': 0.9402637932770282, 'cconj': 0.28143806829094953, 'adp': 0.19156359980161394}, {'seed': 0.4133572918241648, 'watermelon': 0.520179074910085, 'spit': 0.36756822185434285, 'eat': 0.3695708465971365, 'new': 0.31810024761942374, 'stay': 0.3492157823901516, 'like': 0.19942870420190956, 'adj': 0.11702509547704967, 'adp': 0.10126381245451523}, {'adp': 0.2844375890361016, 'focus': 0.6571189631688973, 'motion': 0.6980615489963352}, {'propn': 0.3259776759680771, 'lose': 0.9453774668197097}, {'rake': 0.29126128509842786, 'stuff': 0.2545215440098341, 'news': 0.27417827833419933, 'hell': 0.22035553048137713, 'bad': 0.22035553048137713, 'ugly': 0.2584604388131048, 'happen': 0.21904391321528183, 'juice': 0.24222410900658742, 'break': 0.19338540206412416, 'snooze': 0.29126128509842786, 'good': 0.19338540206412416, 'lot': 0.21425834145430006, 'loose': 0.2545215440098341, 'blue': 0.23134134821852856, 'tell': 0.162504827976337, 'propn': 0.07027683536050383, 'like': 0.11686364590900833, 'adv': 0.06498661630350455, 'adj': 0.274303127526752, 'adp': 0.23735917794660938}, {'boy': 0.7088242227027637, 'crack': 0.7053851581298142}, {'let': 0.4152411543912467, 'thing': 0.4672754526075396, 'man': 0.37842812415633953, 'just': 0.35778795881132436, 'know': 0.33671083333332513, 'adv': 0.4739558852713631}, {'tattoo': 0.43930384735309264, 'dag': 0.47546038139805263, 'spell': 0.41011269162735087, 'type': 0.3553509751403486, 'boo': 0.3865358583475421, 'adp': 0.37023350775705133}, {'ja': 0.4764489556323884, 'rarely': 0.4552547636627776, 'strawberry': 0.4552547636627776, 'memory': 0.42855323961892694, 'propn': 0.21969184172350403, 'like': 0.18266324506910334, 'adv': 0.10157706554270528, 'cconj': 0.27253207489561465, 'adp': 0.09275082373439861}, {'man': 0.32120226166380716, 'num': 0.5098613210695137, 'kill': 0.7775028009121318, 'cconj': 0.17988867377657564}, {'son': 0.4802608449052673, 'say': 0.3552232253715675, 'num': 0.29228217801874085, 'like': 0.27646975356508613, 'kill': 0.4457098482967418, 'adj': 0.324465822880885, 'adp': 0.4211487215904929}, {'niacin': 0.6027886484966398, 'killin': 0.5421924532836333, 'high': 0.3998919824996649, 'intj': 0.23620392209997673, 'like': 0.2310999516812255, 'adj': 0.2712196723983731}, {'sane': 0.6049230018552735, 'close': 0.4712015006332571, 'shoot': 0.427449858857103, 'friend': 0.39400757574005796, 'adj': 0.272180006704858}, {'stunt': 0.44998943838897526, 'stress': 0.4047536033738082, 'life': 0.2563677715943886, 'shit': 0.2324366269361311, 'crab': 0.38814249725484795, 'niggas': 0.2544503099953637, 'fake': 0.3273134979612165, 'cause': 0.2737672127106607, 'adv': 0.09593599930572472, 'adj': 0.20246895552358116, 'cconj': 0.2573970493071705}, {'rule': 0.51116225347186, 'shit': 0.3582918120709247, 'fool': 0.526433187202969, 'true': 0.5184153077174734, 'adv': 0.14788152576111901, 'adj': 0.156048919481577, 'adp': 0.13503179340888627}, {'rain': 0.5424324959597202, 'fall': 0.4443671065414155, 'lie': 0.43976588134350175, 'truth': 0.43757544949554333, 'like': 0.24109689298065562, 'adv': 0.13407138853343964, 'cconj': 0.17985730098588398, 'adp': 0.1224216476352438}, {'recognize': 1.0}, {'recognize': 0.9721032252951693, 'propn': 0.23455344672532355}, {'freak': 0.9754653797776782, 'adp': 0.22015288518479526}, {'glory': 0.42027282006052047, 'dirty': 0.40913726244333565, 'story': 0.36145426785390167, 'laboratory': 0.4346290507216839, 'deep': 0.30413442023182385, 'flow': 0.33752207875206514, 'propn': 0.10486925589900419, 'adj': 0.30699267468722896, 'cconj': 0.13009238612913449, 'adp': 0.08854866701229401}, {'world': 0.768336290476755, 'know': 0.6400463613961255}, {'actor': 0.5463409834821027, 'pressure': 0.48049106681741066, 'crack': 0.3783098688041543, 'actually': 0.43414670108317804, 'adv': 0.23295554846654418, 'adj': 0.12291076061848473, 'cconj': 0.1562553974236967, 'adp': 0.21271355791122556}, {'group': 0.44652322376457404, 'troop': 0.4016358349561401, 'hour': 0.36767983615254507, 'soft': 0.4016358349561401, 'bar': 0.33372383734895006, 'open': 0.3416853392209334, 'adj': 0.3013640421972088, 'cconj': 0.1277071753679438, 'adp': 0.08692514975866193}, {'propn': 1.0}, {'collar': 0.3273389780638421, 'swallow': 0.32104437098311317, 'pill': 0.29274031708189624, 'dollar': 0.2690639401119945, 'squeal': 0.3556430319650591, 'dig': 0.3064798641632195, 'appeal': 0.3721998421156614, 'real': 0.2407598862107776, 'follow': 0.31078216791323987, 'num': 0.15085707524629907, 'adj': 0.25120227337666573, 'cconj': 0.10645043298811026, 'adp': 0.14491307638284157}, {'gauge': 0.45766723527914643, 'mac': 0.3821463618963932, 'fact': 0.363682620190636, 'black': 0.2712059491455969, 'catch': 0.2991518360144634, 'niggas': 0.25879178477703796, 'crack': 0.31690837218710266, 'propn': 0.2110315420495067, 'adv': 0.1951457515233489, 'adj': 0.10296175776489525, 'cconj': 0.1308944009299097, 'adp': 0.2672836989140418}, {'skata': 0.47061376320162135, 'dedicated': 0.44967914193123293, 'later': 0.3929565492189492, 'datum': 0.44967914193123293, 'cheap': 0.40593219686565485, 'adv': 0.10033302519591177, 'adj': 0.2117486966618297}, {'wow': 0.6956263878444153, 'blowin': 0.6646823821354871, 'intj': 0.27258257356849747}, {'ooh': 0.9873762815064246, 'propn': 0.1583921674785265}, {'whip': 0.5987038243881194, 'say': 0.37113150641585185, 'intj': 0.29523058463528773, 'comin': 0.6053200160187174, 'adj': 0.16949833375940113, 'adp': 0.14666980113279157}, {'late': 0.7138290731852014, 'stop': 0.5944084912222066, 'adv': 0.1871966448737481, 'adj': 0.19753538525368156, 'cconj': 0.2511250436718481}, {'dream': 1.0}, {}, {'propn': 1.0}, {'silly': 0.9716132272193309, 'adj': 0.23657501282349544}, {'table': 0.633192867904876, 'drink': 0.5509304417512972, 'leave': 0.4581889876507497, 'adv': 0.15349483269783398, 'cconj': 0.20591392858907065, 'adp': 0.14015734846870867}, {'outside': 0.6105164178853157, 'ugly': 0.5417621542661226, 'truth': 0.4445855583748718, 'adv': 0.2724385163836333, 'adp': 0.24876576889234733}, {'testing': 0.35950459877192553, 'intercom': 0.35950459877192553, 'thank': 0.30482731850476236, 'operation': 0.32336488230332877, 'doomsday': 0.31009397296413527, 'casualty': 0.3321659586383439, 'drink': 0.27509756322917717, 'damage': 0.31009397296413527, 'complete': 0.3321659586383439, 'propn': 0.1657684972935739, 'adv': 0.07664498318375039, 'adj': 0.08087803224878888, 'cconj': 0.10281954979603693, 'adp': 0.06998514169926717}, {'shawty': 0.967291997573513, 'adv': 0.25366551091987827}, {'adv': 1.0}, {'bucket': 0.5819842986768526, 'head': 0.4185404739642048, 'hoe': 0.5204704589079486, 'love': 0.35594303172349023, 'num': 0.2682126328400014, 'adp': 0.12882232300383833}, {'sweater': 0.4242324604855954, 'arm': 0.35670689496623553, 'knee': 0.38296109071693374, 'palm': 0.3904696777259154, 'heavy': 0.36094516686766387, 'weak': 0.36094516686766387, 'adv': 0.18931065365417393, 'adj': 0.2996492239010832, 'adp': 0.08643052924550174}, {'bear': 0.22340413211805107, 'plane': 0.24791077796718394, 'mental': 0.25139090046277035, 'pete': 0.2876787386140027, 'insane': 0.2596919702692834, 'snort': 0.27817642320043917, 'mc': 0.20949119285324533, 'spark': 0.2596919702692834, 'perform': 0.26478366183160473, 'live': 0.19409596301837773, 'building': 0.2392447252897597, 'cocaine': 0.24188858504920682, 'act': 0.22670995017888337, 'brain': 0.22340413211805107, 'come': 0.1586831591841837, 'rock': 0.1947500559515308, 'propn': 0.06941242240094342, 'adv': 0.19256182089562532, 'adj': 0.13546458414152943, 'cconj': 0.08610748288171904, 'adp': 0.17582972507072595}, {'destiny': 0.3879940922052217, 'strictly': 0.3879940922052217, 'jealousy': 0.3879940922052217, 'live': 0.25013356287893995, 'reality': 0.3289838269847559, 'strike': 0.296898091644964, 'thing': 0.24465871872599154, 'propn': 0.17890507616134177, 'adv': 0.24815649736372164, 'think': 0.2372664006653639, 'adj': 0.08728733598654603, 'cconj': 0.22193528550310324, 'adp': 0.151062443230039}, {'tommy': 0.6822767835677693, 'motherfuckin': 0.5366201146780145, 'boy': 0.4747409743327928, 'adv': 0.14545875847443723}, {'forever': 0.6339486219709143, 'grimy': 0.7356418361884158, 'adv': 0.1641374126637752, 'adj': 0.17320260770137472}, {'know': 1.0}, {'love': 0.7986459493190683, 'num': 0.6018011695205022}, {'phone': 1.0}, {'everybody': 0.9430568306711354, 'propn': 0.3326316493127395}, {'mo': 0.7539605722835472, 'intj': 0.6569196719857505}, {'lady': 0.5666112477906889, 'gentleman': 0.6224347181027594, 'hear': 0.47647254074511575, 'cconj': 0.20994987524961292, 'adp': 0.14290445540984043}, {'rape': 0.5395186642881024, 'plus': 0.45207352304688503, 'ho': 0.4247846613593458, 'big': 0.4101756527362683, 'make': 0.3256273338686574, 'adj': 0.1380101608022585, 'cconj': 0.17545113557308847}, {'machine': 0.412838920302811, 'amazing': 0.3919575218617731, 'doom': 0.6012895858484522, 'new': 0.28705837702798226, 'yes': 0.32662935950135996, 'intj': 0.18394209787535862, 'propn': 0.21644952956223312, 'adj': 0.21121036044824065}, {'grarrrr': 0.7071067811865475, 'whatcha': 0.7071067811865475}, {'fat': 0.5121275255089067, 'big': 0.44363136410651965, 'old': 0.4235835454754956, 'ass': 0.4472717280509341, 'num': 0.268922289116607, 'adj': 0.29853374030775276}, {'pizza': 0.37696019464971076, 'fart': 0.3601916266092927, 'guy': 0.29096202543504124, 'speak': 0.28173361650868134, 'eat': 0.2678183437005725, 'die': 0.25629176703683787, 'old': 0.24065632131378698, 'probably': 0.2884548106944271, 'study': 0.339065729318461, 'rhyme': 0.23842029690503538, 'adv': 0.24109934514245165, 'adj': 0.08480503137800166, 'adp': 0.2201497232107469}, {'major': 0.4164972853436964, 'cognac': 0.38482461845842886, 'plenty': 0.3979699629179822, 'sac': 0.4164972853436964, 'cul': 0.4164972853436964, 'pain': 0.3136267591429024, 'propn': 0.0960239859992426, 'adj': 0.09369972175774868, 'cconj': 0.23823930773958496}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'pink': 0.2976332004757511, 'crawl': 0.5952664009515022, 'pretty': 0.2629454719536229, 'blue': 0.25113173184612314, 'baby': 0.61870140464728, 'adv': 0.14109195459259008, 'adj': 0.14888436502395203}, {'air': 0.945875579206045, 'propn': 0.24795908776404096, 'adp': 0.20936971953186848}, {'pleasure': 0.9104230351855102, 'know': 0.41367849473184287}, {'heartbeat': 0.599647772015337, 'plus': 0.4624685896228832, 'child': 0.46567150123442813, 'head': 0.3969226080800045, 'adj': 0.14118359330065963, 'cconj': 0.17948549313250606}, {'hooo': 0.9756158595280678, 'adj': 0.2194850670029951}, {'super': 0.9501925120844457, 'propn': 0.31166358462074223}, {'hungry': 0.9676295021489978, 'adj': 0.25237501177985655}, {'round': 0.45089150290478547, 'livin': 0.40631966755064236, 'people': 0.34325167506219384, 'life': 0.31196609512666923, 'grow': 0.40631966755064236, 'bottle': 0.4306779562509353, 'adv': 0.2334831628745715, 'adp': 0.10659766340476087}, {'callin': 0.4851729634935615, 'crib': 0.4851729634935615, 'chase': 0.412794523237122, 'building': 0.4034885335227405, 'gettin': 0.3993602416105328, 'propn': 0.11706471893537901, 'adj': 0.11423116295110458, 'adp': 0.09884617495407534}, {'seat': 0.7950052629549182, 'sit': 0.5794595456413772, 'adp': 0.17942482224895784}, {'better': 0.5287688907420012, 'music': 0.5705721864983546, 'lose': 0.5369708530966725, 'adv': 0.171216278691563, 'cconj': 0.2296873188766206, 'adp': 0.15633894128103487}, {'reveal': 0.24639174662716842, 'beez': 0.26667081231029227, 'destruct': 0.25480831933600356, 'self': 0.21679583697279495, 'crowd': 0.21190841789279263, 'storm': 0.26667081231029227, 'clear': 0.23986334564570466, 'affair': 0.25480831933600356, 'perform': 0.2345292536528797, 'blow': 0.17623770560654725, 'sting': 0.25480831933600356, 'wu': 0.18946121176692127, 'make': 0.14155049794609564, 'gods': 0.2345292536528797, 'science': 0.22611268094404458, 'cause': 0.16223875222237902, 'num': 0.10808488947769143, 'propn': 0.3074064975784807, 'adv': 0.11370636144816698, 'adj': 0.05999314231728493, 'killer': 0.21190841789279263, 'adp': 0.10382617997292733}, {'gamin': 0.5968148480102814, 'team': 0.4983328613283188, 'card': 0.47949639580562736, 'intj': 0.23386307658432257, 'num': 0.24189624026336237, 'like': 0.22880968790934825}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'chronomentrophobia': 0.6761162968895564, 'talkin': 0.4830569680224508, 'baby': 0.4213939345796078, 'propn': 0.1558794837589573, 'like': 0.25921265095445245, 'adj': 0.15210641491253038, 'adp': 0.13162027691617548}, {'reveal': 0.5543033901442395, 'throw': 0.4216867541206028, 'hair': 0.4767268224118561, 'face': 0.38299988462655987, 'adj': 0.13496556855938968, 'adp': 0.35036403004077127}, {'work': 0.8301716054213182, 'know': 0.5047128997046039, 'adv': 0.23681215007672562}, {'ayy': 1.0}, {'face': 1.0}, {'tell': 0.8812007235447498, 'cconj': 0.47274230276569207}, {'cconj': 1.0}, {'shot': 0.855151009679231, 'num': 0.5183789643152891}, {'cock': 0.5245107826339739, 'half': 0.4771566803342783, 'pen': 0.4771566803342783, 'll': 0.4771566803342783, 'adv': 0.14072166935768543, 'adj': 0.14849362919329667}, {'pour': 0.6236483650491745, 'dive': 0.5764925576306281, 'going': 0.5095711103821395, 'adp': 0.13804467114634172}, {'propn': 1.0}, {'state': 0.5026730293653612, 'battle': 0.517508504308989, 'mind': 0.4272198848967825, 'hate': 0.48672980700051927, 'propn': 0.150145499984043, 'adj': 0.14651122243346423, 'adp': 0.1267786613674987}, {'diamond': 0.4658890156062647, 'boojy': 0.26884265354054354, 'brand': 0.26024908158029336, 'benz': 0.2642766139409841, 'friend': 0.20300828947749422, 'new': 0.19059891650148728, 'need': 0.36379078855247043, 'love': 0.16764865097895168, 'propn': 0.07185828582838527, 'like': 0.23898689312342775, 'look': 0.38634228800242143, 'adv': 0.13289804031162494, 'adj': 0.14023790656142068, 'cconj': 0.2674248745189994, 'adp': 0.12135025407293569}, {'case': 0.638479713905241, 'wanna': 0.5214004916404852, 'just': 0.40618774908866684, 'adv': 0.35871353309428017, 'adp': 0.163772085270484}, {'clash': 0.404071694308969, 'sound': 0.27741312335425933, 'notch': 0.390724803581084, 'ill': 0.3075968643159487, 'high': 0.28054203367409664, 'rhyme': 0.2674656660815879, 'num': 0.17139960160742454, 'adv': 0.09015702910288949, 'adj': 0.475681695288337, 'hot': 0.3137919980304436}, {'history': 0.8584624334805676, 'shit': 0.47992443966527465, 'adp': 0.1808722823281503}, {'dick': 0.47582889043729143, 'jaz': 0.6399471360554777, 'damn': 0.5043208407796966, 'intj': 0.2624387857751801, 'propn': 0.15440932873999563, 'adp': 0.13037891913105057}, {'forget': 0.9645255845011249, 'adv': 0.26398938774648356}, {'ball': 0.47922600817840205, 'man': 0.3198188878897592, 'north': 0.550781854653929, 'cause': 0.38101072447890755, 'adv': 0.2670344942855808, 'hit': 0.3849948925791509}, {'lucky': 0.6182317617422675, 'lick': 0.5439714359949327, 'plate': 0.5673487160421384}, {'earths': 0.9081099344173472, 'propn': 0.41873183185962976}, {'develop': 0.5948455408454923, 'picture': 0.506106069194232, 'truth': 0.43317383312904456, 'try': 0.39495274507074485, 'cconj': 0.17804809793172172, 'adp': 0.12119019571428652}, {'gorilla': 0.9571923995433393, 'uh': 0.1911777714209846, 'intj': 0.2084984746718252, 'propn': 0.06133641683773222}, {'longer': 0.6315197576463879, 'shit': 0.34139021306498657, 'bottle': 0.5198226240379396, 'adv': 0.4227166562598146, 'cconj': 0.18902535857530636}, {'hol': 0.986297587553785, 'propn': 0.16497596426626399}, {'african': 0.3110516876538149, 'plus': 0.23989355418700384, 'ghost': 0.25603586036681536, 'low': 0.23830599317236612, 'black': 0.192905154513532, 'dope': 0.261541235081343, 'stop': 0.22037415988530606, 'star': 0.23830599317236612, 'propn': 0.675467575823547, 'adj': 0.14647063497828458, 'cconj': 0.18620686394150493}, {'lightin': 0.9733845868772879, 'adj': 0.2291777607660297}, {'leviathan': 0.40759897043568344, 'game': 0.2788282733433752, 'bloody': 0.38369254577408685, 'lab': 0.361696573312088, 'ok': 0.367945786407942, 'try': 0.2706287955571928, 'rap': 0.25822186417474746, 'everybody': 0.2788282733433752, 'intj': 0.1671540864198523, 'propn': 0.09834731632368948, 'like': 0.16354216708813515, 'adv': 0.1818880795534211, 'adp': 0.16608344724188742}, {'try': 0.6832515229998215, 'adv': 0.6888142138451274, 'adj': 0.2422856477865404}, {'agree': 0.6143670281333604, 'thousand': 0.5368706813759785, 'num': 0.5212058421606595, 'adp': 0.2503347684982507}, {'autograph': 0.6794083481105911, 'son': 0.5245735011581307, 'love': 0.4236749322495484, 'propn': 0.18159737165873246, 'cconj': 0.22527513131794902}, {'thankful': 0.7869054496938348, 'make': 0.4643763220295651, 'adv': 0.18651485754847733, 'adj': 0.19681594328906052, 'cconj': 0.25021042326319176, 'adp': 0.1703081949050027}, {'dream': 1.0}, {'folk': 0.6007350489562321, 'poor': 0.5572369285791051, 'hate': 0.5295131045172609, 'adv': 0.1510472484913472, 'adj': 0.15938948287438628}, {'pop': 0.7159537015045332, 'going': 0.6981477617968547}, {'pearl': 0.5073713356955055, 'diamond': 0.42158068173288593, 'shine': 0.4281009041283819, 'black': 0.33426192851401443, 'love': 0.30340888153086015, 'baby': 0.3515640029078353, 'adj': 0.12690059278607618, 'cconj': 0.16132763689128887, 'adp': 0.1098092488271132}, {}, {'dc': 0.4780671629129094, 'mayor': 0.4500276499545122, 'mocha': 0.4780671629129094, 'black': 0.2964832649684857, 'watch': 0.3498770875364928, 'propn': 0.11535019935086814, 'hit': 0.3075726230324604, 'adj': 0.11255814337849336, 'adp': 0.09739848256345592}, {'feel': 0.48660561817108394, 'nah': 0.6599122400448757, 'just': 0.4051055258470426, 'adv': 0.35775779741916247, 'adj': 0.18875825575924454}, {'understand': 0.5939827915955859, 'word': 0.5066793100862709, 'death': 0.5840387533669646, 'adv': 0.16406363438144864, 'adp': 0.1498078050634469}, {'fella': 0.4849790901648346, 'hoe': 0.4498626459336666, 'rock': 0.7399655812709166, 'adv': 0.12194187316440794}, {'adv': 1.0}, {'diamond': 0.5443994499080548, 'need': 0.42509588879630855, 'love': 0.39180075216841626, 'like': 0.2792603577105664, 'look': 0.4514477096890569, 'adv': 0.15529368071783797, 'cconj': 0.20832709036281497, 'adp': 0.14179989085499387}, {'sperm': 0.5192542995887038, 'ho': 0.3595538901390703, 'wait': 0.375369873811002, 'kidnap': 0.4961559693763484, 'just': 0.25070814246603224, 'adv': 0.33210899551230627, 'adp': 0.2021675709229177}, {'lovely': 0.6740517254156076, 'bubbly': 0.34853843452511546, 'sippin': 0.309287232253169, 'feelin': 0.29654322836461433, 'livin': 0.27066625378715947, 'run': 0.22248520705816796, 'money': 0.2336184548544011, 'propn': 0.08409692407850154, 'adv': 0.15553274444870654, 'adj': 0.16412270965090459, 'adp': 0.07100909092133756}, {'know': 1.0}, {'power': 0.6347290760959603, 'yam': 0.7727347539475423}, {'dollar': 0.313133858521678, 'crunk': 0.43316236525163715, 'bass': 0.3672824290089394, 'trunk': 0.38095375100434886, 'speaker': 0.4138937191256978, 'cat': 0.3314614376850018, 'num': 0.17556591952643794, 'adv': 0.09234853271406304, 'adp': 0.33729670902104636}, {'hallelujah': 0.5486177346001636, 'berry': 0.5486177346001636, 'halle': 0.5486177346001636, 'propn': 0.26474591841012507, 'cconj': 0.16421127407012226}, {'lyrical': 0.6241509246460323, 'game': 0.46388457438005803, 'niggas': 0.4012996160536608, 'propn': 0.1636197162762353, 'think': 0.43398948751728084, 'adp': 0.1381559127981565}, {'adj': 1.0}, {'adv': 1.0}, {'pop': 0.9543834085414191, 'propn': 0.2985838399861296}, {'bitch': 0.9202149123408855, 'propn': 0.3914134835509076}, {}, {'enterprise': 0.383598295544875, 'jameson': 0.33521115045766603, 'jonah': 0.3462800123565983, 'misguided': 0.40145655110618483, 'effort': 0.383598295544875, 'free': 0.2920116269671777, 'fool': 0.3046822609317669, 'propn': 0.27766897600002294, 'adj': 0.18063199190090112, 'adp': 0.15630394554752225}, {'holdin': 0.6254007100219238, 'breath': 0.5996314306942202, 'stop': 0.4993156308665655}, {'verse': 0.346739790182955, 'freeze': 0.3400721126843394, 'dollar': 0.5700217840970742, 'sign': 0.6410436382980578, 'adv': 0.16810917741357234}, {'propn': 1.0}, {'sayin': 0.8811612979815951, 'adv': 0.47281578541688973}, {'grand': 0.6445428546774882, 'god': 0.477435402981069, 'let': 0.4386206189222774, 'num': 0.3172601573451599, 'propn': 0.18046525145552914, 'adj': 0.17609708316481057}, {'ago': 0.5317978142546859, 'album': 0.5127131376083395, 'shoot': 0.427277564753648, 'oh': 0.3727227091459726, 'intj': 0.23694472780761017, 'num': 0.2450837457713021, 'adv': 0.12891524946923397}, {'rock': 0.5862717086221568, 'propn': 0.4179155613771119, 'look': 0.5617252496109185, 'adj': 0.20389994964163222, 'adp': 0.35287621301782496}, {'tan': 0.5159834823926592, 'tropez': 0.540004874043772, 'st': 0.540004874043772, 'propn': 0.373496459324426, 'adp': 0.10512332180825382}, {'count': 0.525967210347247, 'wally': 0.5379297158407159, 'grand': 0.49245085365328123, 'kid': 0.3952396254715019, 'propn': 0.13788108345177086, 'adv': 0.1275018292987558}, {'ho': 0.9242640355981206, 'cconj': 0.3817538375705946}, {'hangin': 0.44881106317004765, 'jaz': 0.4641421406002354, 'ass': 0.327451533262011, 'propn': 0.5599515360891784, 'cconj': 0.13892619113588484, 'adp': 0.37824593442283794}, {'whip': 0.5145131571992659, 'weed': 0.540634389040813, 'way': 0.38633108709320024, 'propn': 0.29855291108386317, 'like': 0.2482324474845142, 'adp': 0.37813459363022506}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'ther': 0.9989386142669221, 'propn': 0.04606131702938433}, {'praise': 0.6198540614967456, 'pow': 0.60343039504349, 'god': 0.4091922148346052, 'propn': 0.15467008831496307, 'adv': 0.14302701069836005, 'adj': 0.15092629293135953, 'adp': 0.13059909722401133}, {'member': 0.5968971647410478, 'gang': 0.5078516304096169, 'terrorist': 0.5771810565706709, 'propn': 0.14402203766793917, 'cconj': 0.178662186307934}, {'vibe': 0.6459348023818792, 'bitch': 0.4872178333155278, 'adv': 0.19163790740998615, 'kill': 0.5555735112608652}, {'propn': 0.44136387286259116, 'adv': 0.8162787783147653, 'adp': 0.3726753115041142}, {'singin': 0.536798208324143, 'bee': 0.4630201940889946, 'em': 0.482835796950394, 'yo': 0.29973624065022, 'niggas': 0.3035370585630626, 'adv': 0.11444329165917813, 'adj': 0.2415278299762463, 'adp': 0.1044990767901455}, {'wild': 0.5063692872368862, 'shit': 0.31324899988082633, 'real': 0.39227930223403124, 'man': 0.6193889700766346, 'propn': 0.13981539821787095, 'adj': 0.2728623223486405, 'adp': 0.11805621231744719}, {}, {'chart': 0.9572597189079648, 'adv': 0.21358509777380746, 'adp': 0.1950262458368032}, {'louis': 0.3465039163883196, 'ease': 0.670117093465002, 'pain': 0.5461361934472846, 'belt': 0.31892720422205584, 'propn': 0.0836060263744375, 'adv': 0.15462485550992233}, {'free': 1.0}, {'45': 0.8875238807295782, 'num': 0.3764709127529414, 'cconj': 0.26565205247781615}, {'water': 0.9668341782709541, 'adp': 0.25540491719449876}, {'spend': 0.2076642108525837, 'national': 0.2206029787966976, 'profit': 0.21331624257212536, 'quarter': 0.21331624257212536, 'folk': 0.19575942845958513, '15': 0.2206029787966976, 'fear': 0.1766670455014581, 'large': 0.1901073967400435, 'live': 0.1488401535009498, 'pocket': 0.19575942845958513, 'city': 0.15986638093323838, 'half': 0.16689855090796163, 'america': 0.18158484817017537, 'black': 0.1368115120413186, '20': 0.1991416622827156, 'year': 0.15837600233809349, 'num': 0.4678781415737219, 'propn': 0.053228080813051096, 'like': 0.17702640014005003, 'adv': 0.1968849534345273, 'adj': 0.1558190792638369, 'cconj': 0.13206097407066605, 'adp': 0.31461012040652475}, {'doom': 0.6312892745188176, 'propn': 0.2272486830026698, 'look': 0.6108952859414547, 'adv': 0.42028423425768113}, {'body': 0.44122703207460623, 'regard': 0.6140101696312987, 'ask': 0.44661896315898986, 'god': 0.37451062887693226, 'propn': 0.1415608360650285, 'adv': 0.26180916342546484}, {}, {'right': 0.9330717386381799, 'adj': 0.35969032591206007}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'rotate': 0.5690294943203333, 'sex': 0.49082158400846737, 'murder': 0.4284850884757674, 'let': 0.31885834285595005, 'money': 0.3644427945197448, 'propn': 0.13119048339218367}, {'easy': 0.8266359379341458, 'adv': 0.4280532502636432, 'adj': 0.22584716664378948, 'cconj': 0.2871175689041655}, {'joyner': 0.7582885436698136, 'whoa': 0.36089042882900035, 'mind': 0.2691909898926361, 'set': 0.3023973374672835, 'man': 0.20955587883458943, 'propn': 0.2838197649324846, 'adp': 0.07988315749634553}, {'channel': 0.6097396168966643, 'second': 0.5362483281708902, 'lick': 0.4957010834270511, 'propn': 0.14057625462733397, 'adj': 0.1371736010253888, 'adp': 0.23739731638449535}, {'strength': 0.4884104416983563, 'wrong': 0.4533947053969991, 'bear': 0.4029193199900112, 'son': 0.3616270274937906, 'shit': 0.28047798631679355, 'star': 0.3974999323333557, 'adj': 0.1221582107894783, 'adp': 0.10570558474434953}, {'universe': 0.38904420911442417, 'punk': 0.31715196169922066, 'adv': 0.6076285323671793, 'adj': 0.18319640948881172, 'cconj': 0.5822400664357198, 'adp': 0.07926148992740517}, {'planet': 0.7701089197902794, 'propn': 0.637912416919007}, {'point': 0.971877466790978, 'adp': 0.2354871324381685}, {'cock': 0.7420217067028694, 'gun': 0.6348674296731134, 'propn': 0.2152838440803572}, {'past': 0.6467359611488198, 'lookin': 0.5788768675029727, 'right': 0.4451331916643008, 'adv': 0.16261359746142148, 'adp': 0.14848376485752793}, {'aw': 0.47291063625030466, 'freak': 0.4953842503184697, 'realize': 0.5050970797326326, 'intj': 0.22504810449700505, 'like': 0.22018519257777544, 'look': 0.3559477675657205, 'adp': 0.22360664815715806}, {'donna': 0.4930937447124253, 'caught': 0.4930937447124253, 'bein': 0.43366166295599995, 'father': 0.3878250414017064, 'baby': 0.3073239236457918, 'propn': 0.2273667968784356, 'cconj': 0.1410265042832959, 'adp': 0.0959910824857472}, {'tit': 0.5681342680571343, 'hole': 0.5128634398220797, 'head': 0.37606299221119166, 'need': 0.34699664048002316, 'like': 0.22795422985435743, 'adj': 0.1337639213966676, 'cconj': 0.17005292777957995, 'adp': 0.23149640842889332}, {'potato': 0.7071067811865475, 'mash': 0.7071067811865475}, {'cheap': 0.45732041816180197, 'trouble': 0.46628694304902574, 'sure': 0.38099411245542236, 'buy': 0.4259684608213478, 'lot': 0.37267032642136344, 'adv': 0.22606899079364537, 'adj': 0.11927731188892757, 'adp': 0.2064253875113111}, {'tactical': 0.5985709575368735, 'national': 0.5719443323097663, 'stand': 0.42765404890290476, 'adv': 0.127613001701267, 'adj': 0.2693219578955563, 'cconj': 0.1711933493623232, 'adp': 0.11652444342404748}, {}, {'throw': 0.44369492698180174, 'case': 0.4790711153133103, 'try': 0.4004703913312491, 'catch': 0.41260379373206785, 'place': 0.4273243035377313, 'adp': 0.24576654148595742}, {'rappers': 0.515230985188633, 'lookin': 0.42321389782734326, 'hungry': 0.480994572250323, 'propn': 0.1285638458015487, 'like': 0.21378936139313406, 'adv': 0.11888596398442426, 'adj': 0.3763558590394145, 'adp': 0.32566714832033106}, {'thang': 0.9665572521565075, 'adj': 0.2564509276716728}, {'ayo': 1.0}, {'people': 0.4745649337908411, 'hop': 0.5242194844139245, 'hip': 0.5378660037286511, 'adv': 0.16140186600804027, 'adj': 0.34063195741637403, 'cconj': 0.21652124522489768, 'adp': 0.14737732326221786}, {'luther': 0.43813178404319936, 'cuter': 0.43813178404319936, 'feel': 0.25409846963641525, 'lie': 0.30638638884262775, 'need': 0.25569201417626813, 'make': 0.23256303027705783, 'super': 0.3079625144569148, 'll': 0.31672626036828816, 'propn': 0.30303554268357313, 'like': 0.1679730273204654, 'cconj': 0.12530719479122882, 'adp': 0.08529157928427186}, {'disorder': 0.318585850906419, 'drag': 0.318585850906419, 'american': 0.2801870260570931, 'wrap': 0.2943588898068003, 'explosive': 0.30441398715671186, 'flag': 0.2943588898068003, 'compulsive': 0.318585850906419, 'great': 0.2459049676075629, 'son': 0.2121733475675805, 'daughter': 0.25316240290314945, 'block': 0.22511869541439505, 'adj': 0.28669003747530775, 'cconj': 0.18223329478111475, 'adp': 0.12403889126999675}, {'bullpen': 0.592290096350943, 'bologna': 0.592290096350943, 'talk': 0.39602209146510425, 'know': 0.26912508365203086, 'adv': 0.12627394650803836, 'adp': 0.2306034830252101}, {'truth': 0.7749167331245738, 'tell': 0.5937184458782585, 'adp': 0.21680051602208783}, {'watchin': 1.0}, {'ayy': 1.0}, {'slaughter': 0.7449538415446799, 'thinkin': 0.640695121187491, 'propn': 0.18588581348335909}, {}, {'ago': 0.5639179837158611, 'doom': 0.41066623591629375, 'year': 0.43985601031372096, 'meet': 0.472518202765626, 'propn': 0.1478297906087103, 'adv': 0.2734032581642078}, {'floor': 0.8962043747011245, 'adp': 0.4436414303991078}, {}, {'smile': 0.5697437448806376, 'dance': 0.5697437448806376, 'ya': 0.4485197480180555, 'know': 0.32222078027443374, 'propn': 0.1634938394133198, 'adp': 0.1380496258952572}, {'louis': 0.7680390010414135, 'propn': 0.370631822271834, 'adv': 0.3427318247939344, 'adj': 0.3616606648854603, 'adp': 0.15647557300356513}, {}, {'bunch': 0.4917389093272484, 'mumble': 0.5085363724759582, 'fuckin': 0.3602882745977472, 'make': 0.2825008890418202, 'song': 0.37811919802273036, 'propn': 0.12270194753567562, 'adv': 0.22693066195394293, 'adj': 0.11973194221824293, 'cconj': 0.1522141928133915, 'adp': 0.20721218627812696}, {'men': 0.6146446909775113, 'mind': 0.403209566526586, 'real': 0.39758691196279106, 'business': 0.47442214522383896, 'adj': 0.27655419879601323}, {'yellin': 0.48744606920560407, 'weird': 0.41331009032765276, 'fuckin': 0.32998393699974304, 'mic': 0.3142486559750024, 'beard': 0.41331009032765276, 'smoke': 0.3328753332908198, 'want': 0.28507591562314694, 'adj': 0.10966112544715213, 'adp': 0.09489164350230567}, {'right': 0.5968458580541744, 'intj': 0.4007484206620135, 'yeah': 0.5413096944904383, 'adv': 0.43607286055330996}, {'counterfeit': 0.40941907441306563, 'scheme': 0.39120661669529494, 'tax': 0.40941907441306563, 'mean': 0.28778037160261916, 'cream': 0.3328461414319614, 'shit': 0.21148049385466944, 'free': 0.2978034103599248, 'propn': 0.09439209534540148, 'adv': 0.08728655538952897, 'hit': 0.2516894164231605, 'adj': 0.18421466215878116, 'cconj': 0.1170952612368889, 'adp': 0.23910613690390545}, {'adv': 0.7384617951868037, 'adp': 0.6742953188696205}, {'adv': 1.0}, {'adv': 1.0}, {'scar': 0.2939889297447911, 'throat': 0.28192361082215717, 'rip': 0.27291190525762915, 'fold': 0.2771354034669927, 'cold': 0.22632183966499336, 'feel': 0.1895570160273995, 'neck': 0.2597259235774762, 'steel': 0.24611807480018208, 'bullet': 0.2545945720759067, 'snatch': 0.269133857368656, 'make': 0.17349161575308875, 'coat': 0.28192361082215717, 'intj': 0.1280750734156158, 'num': 0.2649488682282087, 'propn': 0.15070932488898287, 'adv': 0.06968220054075529, 'adj': 0.07353069996754368, 'adp': 0.3181368483746651}, {'life': 1.0}, {'number': 0.835081487080659, 'num': 0.4494872939746122, 'cconj': 0.31717516058250184}, {'brother': 0.49850114718608846, 'ass': 0.48530684678651104, 'bitch': 0.3902144167796162, 'niggas': 0.40708297071281674, 'kill': 0.44496071130972864}, {}, {'kiss': 0.6226136921860514, 'motherfucker': 0.5773910907637683, 'ass': 0.528177733920201}, {'bedford': 0.7467303391054859, 'live': 0.4814050625581676, 'propn': 0.34431928442608795, 'adv': 0.15920000600561343, 'cconj': 0.21356744127375496, 'adp': 0.1453667874401621}, {'remind': 0.3689113182312971, 'medicine': 0.3689113182312971, 'sell': 0.25424172941038997, 'smoke': 0.25192833785926216, 'crack': 0.255449978346758, 'propn': 0.5103178796602018, 'hop': 0.255449978346758, 'hip': 0.26209987055241085, 'cconj': 0.10550990386431354, 'adp': 0.3590817887876345}, {'know': 1.0}, {'direction': 0.5834275264212071, 'mc': 0.40595980841881224, 'step': 0.4588738085111186, 'damage': 0.5032407380117173, 'propn': 0.1345099682520431, 'adp': 0.11357645562065538}, {'carry': 0.504074717326049, 'lookin': 0.4511844259206186, 'kid': 0.39288805592374526, 'adj': 0.4012295037433635, 'cconj': 0.1700265440553656, 'young': 0.42975881434199537, 'adp': 0.11573024587207541}, {'snappin': 0.5970361145427482, 'story': 0.5134789626255423, 'start': 0.4474389843338808, 'mind': 0.4238933688688236}, {'plane': 0.5902747102316436, 'jet': 0.5638125894842168, 'leave': 0.45620347061390576, 'know': 0.3257227716850804, 'adp': 0.13954999034635324}, {'need': 0.5612869190791386, 'niggas': 0.5438425459798881, 'cause': 0.5851290099394891, 'adj': 0.2163707960423381}, {'new': 0.616738558879983, 'teach': 0.7537601088114777, 'adj': 0.22689038841509207}, {}, {'woman': 0.6119714315692605, 'child': 0.565206276778046, 'man': 0.38898373595353397, 'like': 0.29202511946213094, 'cconj': 0.21784955068149045, 'adp': 0.14828144748551939}, {'rule': 0.6499073254272408, 'follow': 0.7363888483637869, 'adv': 0.18802109552245996}, {}, {'meal': 0.4540530753930365, 'cartoon': 0.4540530753930365, 'saturday': 0.4540530753930365, 'thing': 0.28631375036632917, 'water': 0.33460371458485755, 'sugar': 0.37912858403220684, 'propn': 0.20936504360874755}, {'say': 0.6018435344780212, 'everybody': 0.7986140244241914}, {'famous': 0.6626888894502131, 'watch': 0.5015609599547621, 'grow': 0.5322069875965902, 'adj': 0.16135600888056023}, {'yo': 0.924309926552634, 'propn': 0.3816427120701562}, {'raise': 0.5054725715896087, 'woman': 0.4995372373788685, 'hand': 0.4227282797306545, 'love': 0.33443591093651004, 'adv': 0.3976698611688397, 'cconj': 0.17782523349595816, 'adp': 0.12103850083575826}, {'rumor': 0.9491826741640231, 'cconj': 0.3147256758938389}, {'linen': 0.38759183481289, 'dice': 0.34862860857453093, 'spinnin': 0.38759183481289, 'bet': 0.31140124689603765, 'livin': 0.28760482967452194, 'style': 0.2856266694348271, '20': 0.3343208747708898, 'roll': 0.2991682063514366, 'num': 0.15709563512133184, 'propn': 0.17871959424072142, 'adj': 0.0871968398247154, 'adp': 0.22635874122490385}, {'king': 0.7083662212866191, 'check': 0.6648764246692043, 'propn': 0.23697391514513239}, {'web': 0.9544896446794523, 'adv': 0.22024184255790133, 'adp': 0.20110457226625483}, {'yo': 0.55776928798381, 'come': 0.5264869257740784, 'let': 0.5597439472281757, 'propn': 0.2303000083202716, 'adv': 0.21296374827678496}, {'shut': 0.47282772461106914, 'son': 0.40036944320607176, 'trap': 0.5185438102421355, 'save': 0.4562524398146553, 'bitch': 0.32584991998246376, 'propn': 0.13860028845943523, 'adp': 0.11703020761796944}, {'tenth': 0.23309737432119507, 'length': 0.23309737432119507, 'strength': 0.20966492576193005, 'invent': 0.23309737432119507, 'scent': 0.21537141127532938, 'scar': 0.20966492576193005, 'shave': 0.2227283506501947, 'tint': 0.2227283506501947, 'tweeter': 0.2227283506501947, 'bump': 0.23309737432119507, 'pump': 0.20106026776203856, 'air': 0.20500238760432898, 'track': 0.1755247312422437, 'lawn': 0.23309737432119507, 'dark': 0.18333430471617287, 'action': 0.21537141127532938, 'figure': 0.1946333639333286, 'try': 0.14788237862444156, 'razor': 0.20500238760432898, 'rza': 0.17421299967019874, 'make': 0.12372951174986596, 'catch': 0.1523629006472455, 'niggas': 0.13180686944004186, 'num': 0.09447717102136735, 'propn': 0.10748180022257812, 'like': 0.08936596944384728, 'adv': 0.04969545423355941, 'adj': 0.15732029872656406, 'adp': 0.09075462637931574}, {'nigga': 0.5664307194129782, 'fake': 0.7659803495966436, 'adv': 0.2245098070957332, 'adp': 0.2050016845173139}, {'benefit': 0.40892186382947776, 'liquor': 0.3644310909724741, 'space': 0.3598032764446974, 'sick': 0.3416099229923408, 'hungh': 0.44257783424804625, 'court': 0.344743610352231, 'propn': 0.10203689016685859, 'adj': 0.09956708335077888, 'adp': 0.3446283863807209}, {'protect': 0.6138629069716957, 'neck': 0.5105120498358168, 'ya': 0.40633197922153996, 'propn': 0.44434682521494157}, {'yo': 0.8185512783769435, 'intj': 0.5744334640909001}, {'forget': 0.5865752382733993, 'man': 0.3845591788358289, 'propn': 0.6944559535261525, 'adv': 0.1605448735702892}, {'thankful': 0.7869054496938348, 'make': 0.4643763220295651, 'adv': 0.18651485754847733, 'adj': 0.19681594328906052, 'cconj': 0.25021042326319176, 'adp': 0.1703081949050027}, {'hmm': 0.9310696503703251, 'intj': 0.36484148086433443}, {}, {'modern': 0.47825076580122555, 'slave': 0.4208045783759391, 'daddy': 0.4208045783759391, 'day': 0.32446763095659564, 'miss': 0.3814425509320461, 'rock': 0.3348211984577135, 'adj': 0.23289551414624962}, {'wet': 0.5471870965270468, 'bed': 0.540761944152351, 'old': 0.4296968536783195, 'adj': 0.45426342794924335, 'adp': 0.1310272991312327}, {'game': 0.5754651083131411, 'color': 0.7249414096193817, 'like': 0.3375296549688138, 'adp': 0.17138726250758}, {'fellas': 0.935903600328766, 'propn': 0.21577378143161122, 'adj': 0.2105509688268796, 'adp': 0.18219334692688213}, {'treble': 0.6107164166854473, 'say': 0.30083482670491707, 'come': 0.3218850351853814, 'time': 0.33528039129293796, 'num': 0.49506142669150793, 'adj': 0.13739335244188716, 'adp': 0.2377776256871486}, {'propn': 1.0}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'serve': 0.5925658573458622, 'actin': 0.5729928165749756, 'try': 0.3934391298643643, 'like': 0.23775699028187997, 'adj': 0.13951619752742975, 'cconj': 0.1773657471648007, 'adp': 0.24145149385595574}, {'government': 0.27758285791222154, 'individual': 0.30247806053689963, 'order': 0.26956839275942407, 'force': 0.2823787961622444, 'better': 0.2155476701681629, 'people': 0.20521522752677637, 'life': 0.18651094180519162, 'good': 0.2076931882882102, 'way': 0.1953345667588421, 'world': 0.17856766832162704, 'place': 0.22162024697945476, 'nigga': 0.1760897075601932, 'fuck': 0.1702127628438972, 'know': 0.1487520344787167, 'num': 0.2653766466620138, 'propn': 0.1509526556093289, 'adv': 0.0697947073154049, 'adj': 0.07364942041303589, 'cconj': 0.09362987747171357, 'adp': 0.4461107035188386}, {'sharice': 0.6665907671199092, 'club': 0.6665907671199092, 'propn': 0.3073667211843944, 'adp': 0.12976593192874938}, {'bo': 0.9416989883776113, 'sky': 0.1652956330575314, 'throw': 0.1505267409353359, 'hand': 0.14559944658223256, 'ya': 0.13544665786457025, 'propn': 0.1481185225032018, 'adp': 0.04168904608903443}, {'dime': 0.5903667052495607, 'sell': 0.5403134467466448, 'rhyme': 0.4958709346269276, 'like': 0.30057697606831346, 'adp': 0.15262381939718564}, {'ay': 0.38517393877098893, 'dick': 0.28639379346307825, 'iron': 0.32386536278635275, 'style': 0.297059134605363, 'wild': 0.3365880418168579, 'yo': 0.2250852174784421, 'come': 0.21246136483379593, 'long': 0.270619919230034, 'niggas': 0.22793941997545175, 'intj': 0.3159154095957663, 'propn': 0.1858730072623145, 'adv': 0.08594053603986837, 'hit': 0.2478081906937397, 'adj': 0.181373944036152, 'adp': 0.07847298469675078}, {'know': 0.6960314679399697, 'adv': 0.6531582947073237, 'adp': 0.2982020081963766}, {'sacrifice': 0.5777488019736896, 'compton': 0.5081133332585014, 'human': 0.49834250240829336, 'propn': 0.39960219303244776}, {'adj': 1.0}, {'speak': 0.7367187830538431, 'soul': 0.6761992566512214}, {'dominant': 0.31261215205182863, 'lynch': 0.31261215205182863, 'continent': 0.31261215205182863, 'evidence': 0.29870602027360793, 'rape': 0.2749333309797182, 'president': 0.2749333309797182, 'black': 0.18524873287018748, 'send': 0.22884760846271535, 'secret': 0.2574136768893183, 'propn': 0.43243880766780907, 'adv': 0.06664769579832013, 'hit': 0.19217758779194324, 'adj': 0.14065720328129236, 'cconj': 0.17881629800864368, 'adp': 0.18256961802154778}, {'trippin': 0.527272154187974, 'straight': 0.3668858478648288, 'nigga': 0.5672253044670174, 'man': 0.26926559068964884, 'drop': 0.35848748494978416, 'adv': 0.22482474788388174, 'adj': 0.11862083109918083}, {'daddy': 0.8362350942599671, 'tell': 0.5483711034764908}, {'arrest': 1.0}, {'lie': 0.6506901640999055, 'straight': 0.6474491385473016, 'adv': 0.39675171497801387}, {'forfeit': 0.7351206420683952, 'leave': 0.46783077570487164, 'face': 0.46931063797439826, 'adp': 0.14310671539935402}, {'cloud': 0.48860369570421447, 'black': 0.3414732609523863, 'new': 0.3523858339604806, 'need': 0.3362944626450771, 'follow': 0.48115745531746096, 'nigga': 0.30995459350948856, 'adj': 0.2592766662245563, 'adp': 0.11217826225804903}, {'father': 1.0}, {'truly': 0.6036302320960444, 'sincerely': 0.5767785518342552, 'right': 0.35227626819949615, 'adv': 0.38607485812071024, 'cconj': 0.17264031925991416}, {'break': 1.0}, {'atrocities': 0.2793310408429676, 'bug': 0.2409395388072772, 'self': 0.2270882451191149, 'horror': 0.2580892241045136, 'mama': 0.2332378916261405, 'bag': 0.4351668070646322, 'yo': 0.3119445437069225, 'nigga': 0.150248437577035, 'niggas': 0.15795008475817168, 'snitch': 0.21560559062760565, 'fuck': 0.29046787603101504, 'man': 0.28529569450285064, 'everybody': 0.18258329913662563, 'tell': 0.1489158161589851, 'propn': 0.0644001315228859, 'adv': 0.238209168964663, 'cconj': 0.15977927382093446, 'adp': 0.05437767010819529}, {'edge': 0.7738188031897957, 'rza': 0.6052632927571119, 'propn': 0.1867104878434285}, {'ooh': 0.9873762815064246, 'propn': 0.1583921674785265}, {'right': 0.6255557117469783, 'intj': 0.420025472466207, 'yeah': 0.5673481128217359, 'adv': 0.2285245553569765, 'adj': 0.24114580746258435}, {'slam': 0.6871671365438288, 'willie': 0.6565994292691071, 'propn': 0.1584272690857357, 'adp': 0.26754311119457697}, {'bronx': 0.713785400376284, 'know': 0.678858474433399, 'propn': 0.17222535788793092}, {'catch': 0.5094936344799783, 'line': 0.556895692638857, 'miss': 0.5744087517112204, 'adv': 0.16617902052947917, 'cconj': 0.22292981701651607, 'adp': 0.1517393809235871}, {'boo': 0.7742497733528462, 'baby': 0.5935707729168057, 'propn': 0.21957009359658322}, {'look': 0.945616690401582, 'adv': 0.3252830687785003}, {'analyze': 0.530791736722424, 'roof': 0.5189879659333232, 'plus': 0.43487043861216074, 'propn': 0.13605149072710043, 'adj': 0.13275835920784196, 'cconj': 0.16877456518009276, 'young': 0.42659431458692604, 'adp': 0.11487807408991656}, {'regardless': 0.7078180941424563, 'hard': 0.49334176759032194, 'adv': 0.3158586825651684, 'adj': 0.1666516688595328, 'cconj': 0.2118628394937487, 'adp': 0.2884130668183611}, {'buildin': 0.6316658165432381, 'rich': 0.5325290071112802, 'dna': 0.5276883679572884, 'adv': 0.1457524909691866, 'adp': 0.13308775486380833}, {'know': 0.7572907433021049, 'intj': 0.653077889771921}, {'yellow': 0.47084839440552995, 'purple': 0.5001851688408537, 'black': 0.31020020501547213, 'blue': 0.397284216058621, 'num': 0.21216912710473362, 'propn': 0.120686931490107, 'adj': 0.3532970991386058, 'cconj': 0.2994290511085907}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'letter': 0.49435835522209237, 'threat': 0.48125982568282877, 'better': 0.3522827126937624, 'love': 0.28779415619922905, 'death': 0.4060689912903007, 'rap': 0.32388382497637486, 'adv': 0.11406974988667573, 'cconj': 0.15302502318483294, 'adp': 0.10415799283665958}, {'liar': 0.5835005251954735, 'lover': 0.5835005251954735, 'thief': 0.5648488950092877}, {'truck': 0.9521560090475447, 'adv': 0.22568307597885587, 'adp': 0.20607300563483344}, {'wind': 0.5151805640696271, 'tire': 0.5613848744772426, 'earth': 0.4611249861493565, 'propn': 0.4202414092653426, 'cconj': 0.17377259335265205}, {'adv': 0.5976534819625343, 'cconj': 0.8017545232164636}, {'boy': 1.0}, {'cool': 0.9600522168198188, 'adj': 0.279820908760142}, {}, {'know': 1.0}, {'biological': 0.5653437530715022, 'shocks': 0.5653437530715022, 'clock': 0.48124727084828384, 'propn': 0.2821366306925167, 'adj': 0.1376537513958545, 'cconj': 0.1749980353468515}, {'intj': 0.8672352009728135, 'adj': 0.4978986906928394}, {'dude': 0.44102437656214577, 'screw': 0.44102437656214577, 'cd': 0.45302781112213275, 'need': 0.28614528611185575, 'food': 0.34835256957365557, 'yes': 0.34116959106662526, 'intj': 0.192130463739932, 'propn': 0.11304249807801343, 'adp': 0.19089984828705067}, {'strong': 0.41754993763310705, 'raw': 0.40034503075707306, 'deal': 0.38010169467789895, 'set': 0.3628967878018649, 'shit': 0.25436727147421484, 'world': 0.2686077927570106, 'song': 0.34986767140560265, 'adv': 0.2099753270490783, 'adj': 0.22157211818823658, 'adp': 0.19173013557389953}, {'true': 0.7207677070183918, 'tell': 0.5141309750082917, 'adv': 0.411207873866686, 'adj': 0.21695929923954077}, {'crowd': 0.5518428728156791, 'wild': 0.5798592907035913, 'act': 0.522930108703924, 'adv': 0.14805463082339548, 'adj': 0.15623158501593637, 'cconj': 0.19861587613613577}, {'adv': 0.1110000116577016, 'goose': 0.46830861218025077, 'kill': 0.3217978481404182, 'think': 0.3183866655069069, 'shitter': 0.48105464636548784, 'slit': 0.46830861218025077, 'hit': 0.3200667964546847, 'adp': 0.10135499052639278}, {'finna': 0.7305758146307021, 'roll': 0.5639052127409214, 'come': 0.3850582944442336}, {'adv': 1.0}, {'camel': 0.2159215163494776, 'explode': 0.2159215163494776, 'records': 0.2159215163494776, 'weapon': 0.2063165376549473, 'callin': 0.2063165376549473, 'blueprint': 0.2159215163494776, 'fella': 0.18308187728649822, 'gay': 0.1995016968179879, 'ammo': 0.2159215163494776, 'beef': 0.16819089737180118, 'stupid': 0.18624507469994214, 'cock': 0.171580783521934, 'handle': 0.18624507469994214, 'soldier': 0.18029173942892734, 'album': 0.18308187728649822, 'sound': 0.141645445391509, 'start': 0.14951329479539366, 'make': 0.11461246130296862, 'sleep': 0.1517710778403115, 'hear': 0.140148813518917, 'street': 0.14324304787867573, 'just': 0.10425196734105999, 'want': 0.1262786344269446, 'propn': 0.34846688741410514, 'adv': 0.27620176842491, 'adj': 0.09715206660596515, 'cconj': 0.18526288546658193, 'adp': 0.16813468277467716}, {'premiere': 0.8604475609989735, 'world': 0.4693361736287651, 'propn': 0.19837729430160947}, {'love': 0.7639142997745987, 'know': 0.6453177067149828}, {'ar': 0.6355345554555714, 'close': 0.4950462047508676, 'eye': 0.42493657314292177, 'look': 0.39388743100420476, 'adp': 0.12372018625151537}, {'joyce': 0.4676408750480928, 'jazzy': 0.4676408750480928, 'sexy': 0.4676408750480928, 'voice': 0.3521384106094608, 'sound': 0.30677442966013324, 'propn': 0.2156304130589275, 'like': 0.1792863616415343, 'adv': 0.09969921699620381, 'adj': 0.1052055353455609, 'cconj': 0.13374689615354243, 'adp': 0.09103614534114234}, {'bureaucrat': 0.511636112226698, 'government': 0.4338210545095405, 'run': 0.3120683852210939, 'blast': 0.39151056263096096, 'business': 0.39491352565096177, 'tell': 0.27276134080451586, 'adv': 0.2181576611357497, 'cconj': 0.146329685067305}, {'joyner': 0.9702504739589874, 'propn': 0.24210332046950583}, {'layin': 0.3907846766661367, 'talkin': 0.27919939502776625, 'yard': 0.35150048541175405, 'playin': 0.3436838016259857, 'island': 0.2899740146131675, 'crazy': 0.27764020268915357, 'shine': 0.29658292658583474, 'run': 0.23835601143477095, 'num': 0.15838973234868936, 'propn': 0.360383643700746, 'adv': 0.08331377421557025, 'adj': 0.08791513596683512, 'adp': 0.2282234029590191}, {'different': 0.7305554425418761, 'day': 0.5309219509386136, 'know': 0.38484337299591226, 'adj': 0.19054187373149561}, {'pack': 0.7333808290244155, 'come': 0.5171869617184669, 'num': 0.39771857518497444, 'adp': 0.19102392834594298}, {'adv': 0.7384617951868037, 'adp': 0.6742953188696205}, {'way': 0.570910874645673, 'adv': 0.6119739797248076, 'cconj': 0.5473103519495073}, {'andre': 0.9063119149195363, 'num': 0.3673391261223237, 'propn': 0.208951380216955}, {'speak': 0.9677115744422713, 'adp': 0.25206012911696374}, {'deaf': 0.8916037049448339, 'like': 0.3577408498716928, 'adj': 0.20992292598908077, 'adp': 0.1816498907401471}, {'forbid': 0.6719139812437158, 'self': 0.6211086747969344, 'adv': 0.16288137369518454, 'cconj': 0.21850601067193612, 'adp': 0.29745654691840434}, {'shady': 0.580683978224198, 'minute': 0.49405713833778825, 'slim': 0.5152893415712521, 'num': 0.24631520576479227, 'propn': 0.2802200939294326, 'adp': 0.11830500547943097}, {'busta': 0.4140377927334188, 'fat': 0.319580890741833, 'fucking': 0.31423069433944745, 'rhymes': 0.3825521587362235, 'handsome': 0.4140377927334188, 'leave': 0.263493650784447, 'nigga': 0.2227054009762287, 'face': 0.2643271451424618, 'propn': 0.19091389361533487, 'adj': 0.27943922331426246, 'adp': 0.08060117643080053}, {'grenadiers': 0.501191266042869, 'air': 0.44078319837119745, 'twist': 0.43230710103031633, 'buddha': 0.4249647715432378, 'super': 0.3522869787944622, 'propn': 0.23110058483924525, 'adp': 0.09756743555510937}, {'dave': 0.8175123317667756, 'good': 0.5427942505907418, 'adj': 0.19247854149199164}, {'know': 1.0}, {'tomorrow': 0.6888218814755167, 'cause': 0.49423854552286084, 'know': 0.36912818404421094, 'adv': 0.34639114224577255, 'adp': 0.1581462488896536}, {'haul': 0.39178772282035507, 'weekend': 0.3743595721011035, 'ball': 0.2998010267995624, 'come': 0.20649617645727114, 'super': 0.27538730730662714, 'run': 0.23896781147423035, 'star': 0.28680805529794823, 'propn': 0.541962987053783, 'cconj': 0.11205263413489672, 'adp': 0.2288091951364239}, {'work': 0.489763393344424, 'drop': 0.4455354922344968, 'bish': 0.5058059832453161, 'just': 0.3163963625345238, 'propn': 0.15108129502227424, 'like': 0.2512337226681703, 'adv': 0.13970837047348117, 'cconj': 0.18741933467951707, 'adp': 0.2551376410565444}, {}, {}, {'fling': 0.5885395031455605, 'anybody': 0.5623591136958445, 'yo': 0.3286274346885977, 'catch': 0.3846958212458621, 'propn': 0.1356885410751593, 'adv': 0.25094866922791037}, {'taylor': 0.29376545234002027, 'ja': 0.29376545234002027, 'kelly': 0.28069769068930983, 'swift': 0.2583582045947308, 'jay': 0.23601871850015185, 'ho': 0.20341576614961504, 'really': 0.20648752420638233, 'motherfucker': 0.21648352780032548, 'blow': 0.19414404170574648, 'die': 0.1997284274127736, 'propn': 0.541824029595418, 'adv': 0.1878889580117881, 'cconj': 0.0840179281667336, 'adp': 0.2859381615505936}, {'dry': 0.5549528599029546, 'son': 0.4000090029728473, 'allah': 0.5739096681535855, 'propn': 0.41542653271272617, 'adv': 0.12805151012282612, 'adp': 0.11692484893976877}, {'nice': 0.5593320803183364, 'dummy': 0.6261990497346354, 'people': 0.4364056626447151, 'adv': 0.14842371037548355, 'adj': 0.15662104857475254, 'cconj': 0.199110997823274, 'adp': 0.13552686647808498}, {'absurd': 0.9551728214281698, 'adv': 0.20363913309042916, 'adj': 0.21488598064817577}, {'wallet': 0.43156752238145024, 'fucking': 0.3275347434276193, 'dollar': 0.6239618874434678, 'bet': 0.3467324451101875, 'remember': 0.3275347434276193, 'adv': 0.0920085184127613, 'adj': 0.1941801696664282, 'cconj': 0.12342979341413929, 'adp': 0.16802741500299323}, {'stretch': 0.3587875336694898, 'benz': 0.30421931228421467, 'sex': 0.3094754619151868, 'breakfast': 0.34282735204877174, 'crew': 0.2769352015915771, 'villa': 0.3587875336694898, 'house': 0.28219135122254924, 'dime': 0.2701707198710319, 'trees': 0.33150342297685226, 'propn': 0.24815678508937944, 'adv': 0.0764921076909039, 'cconj': 0.10261446671432184, 'adp': 0.13969109974985228}, {'lady': 0.42265170748772135, 'quiet': 0.5059323876269991, 'life': 0.3119628773689177, 'just': 0.2643809430843836, 'baby': 0.34127830856037833, 'want': 0.32024013850964195, 'adv': 0.23348075462486445, 'adj': 0.12318786708289643, 'cconj': 0.31321536099778485, 'adp': 0.10659656390881218}, {'teen': 0.3547832639321569, 'monkey': 0.3339745769982242, 'shake': 0.3018564497758298, 'fresher': 0.37130004794752, 'style': 0.2736208210047535, 'turn': 0.2418407488478515, 'dope': 0.2983120063900042, 'fiend': 0.27959277240256175, 'nigga': 0.199717338638906, 'niggas': 0.20995473280391233, 'witness': 0.3018564497758298, 'propn': 0.08560370465850474, 'adv': 0.0791597271030118, 'adj': 0.16706332744815772, 'cconj': 0.10619308876610743, 'adp': 0.07228137430597213}, {'world': 1.0}, {'movement': 0.5006599690943396, 'eye': 0.38063285520096385, 'rapid': 0.5120468911549315, 'lucid': 0.5259833574281442, 'adj': 0.2561400278269754}, {'conviction': 0.4075901357391621, 'baller': 0.3765948158432965, 'father': 0.3205752718687539, 'dead': 0.5892952949651294, 'kid': 0.2693686261657615, 'murder': 0.306919583461395, 'propn': 0.18794086235327748, 'adj': 0.1833917466158127, 'adp': 0.0793460042023707}, {'momentum': 0.2608027085531702, 'adrenaline': 0.2608027085531702, 'venom': 0.2557875692451594, 'prepare': 0.2608027085531702, 'barely': 0.2667343593717053, 'bass': 0.2514432579728697, 'care': 0.2441835040958249, 'taste': 0.230992099400245, 'lace': 0.24761130385759034, 'fuckin': 0.20075056994653365, 'better': 0.19524983942878468, 'wait': 0.21437289494289966, 'world': 0.16175219402635826, 'square': 0.2557875692451594, 'face': 0.1893181886102496, 'propn': 0.20510647421572156, 'adv': 0.18966670415430884, 'hit': 0.1823003243759151, 'cconj': 0.1696257586809125, 'adp': 0.17318617102503975}, {'ya': 0.6296245395762369, 'bish': 0.768377666150109, 'propn': 0.11475496209368553}, {}, {'speak': 0.60090690872108, 'kid': 0.5313581747421534, 'time': 0.44140025557027024, 'propn': 0.18536663864864966, 'adv': 0.17141282130214308, 'adp': 0.3130368117934433}, {'shawty': 0.9823120038626505, 'adv': 0.12880220086986266, 'adj': 0.13591585675859758}, {'original': 0.4029167224825836, 'range': 0.37403030953695154, 'change': 0.33996601906331614, 'plan': 0.33996601906331614, 'damn': 0.3373089188368315, 'shit': 0.23138176690553275, 'thing': 0.28246358935866017, 'ya': 0.28331829582244655, 'propn': 0.20654963873825163, 'adv': 0.09550061589607418, 'adj': 0.20155009685903208, 'cconj': 0.12811445607780375, 'adp': 0.1744047387897671}, {'oh': 0.8439100398992143, 'intj': 0.5364847104599594}, {'dick': 0.9511720960531325, 'propn': 0.3086610498425264}, {'ago': 0.4488784491477802, 'believe': 0.39395628716557973, 'die': 0.34701350742239706, '20': 0.4402466831384137, 'year': 0.3501251768154946, 'man': 0.2606473056276071, 'tell': 0.2721001893478467, 'num': 0.20686961992751657, 'adv': 0.10881443229387822, 'adp': 0.09935932068450021}, {'crazy': 0.9533464367514751, 'adj': 0.3018784052118761}, {'balloon': 0.6409336842373468, 'fame': 0.5275715059434727, 'way': 0.40023113757243295, 'make': 0.35604992172405486, 'propn': 0.1546473675309355}, {'cheat': 1.0}, {'duel': 0.4968800879323689, 'liver': 0.51385317020847, 'iron': 0.43206257391009706, 'mic': 0.34669515864181655, 'propn': 0.371954425353957, 'adp': 0.20937861004205244}, {'glass': 0.6096065852893102, 'jaw': 0.6385762511860879, 'break': 0.46968093701259517}, {}, {'watch': 0.55618065444997, 'walk': 0.5785125244042162, 'thing': 0.5015182656927182, 'adv': 0.1695627509567973, 'cconj': 0.22746910484353414, 'adp': 0.15482909199913455}, {'chamber': 0.5103054910225873, 'enter': 0.4989572942973619, 'watch': 0.39674050910185094, 'dream': 0.3987814381424092, 'propn': 0.13080049664781246, 'like': 0.21750869751831695, 'adp': 0.3313328446002583}, {'dawn': 0.6593141924358139, 'break': 0.41828420985948184, 'say': 0.3247737663611536, 'stop': 0.44633264413095164, 'adv': 0.14056322329303444, 'adp': 0.2566987868282128}, {'press': 0.5406820656964966, 'statement': 0.6092992568131841, 'release': 0.5500237009094144, 'adv': 0.1359476835486317, 'adp': 0.12413490748674687}, {'got': 0.9627356441479266, 'adv': 0.27044422620399367}, {'yeahh': 0.7277509516683557, 'somebody': 0.5846938284670163, 'say': 0.35848525673782694}, {'talk': 0.9180738529477463, 'adv': 0.29273318609239135, 'adp': 0.2672969926764552}, {'monkey': 0.7638942564856224, 'throw': 0.5969499751602307, 'adv': 0.18106067061290568, 'adp': 0.1653279335795465}, {'change': 1.0}, {'word': 0.6428995713011811, 'time': 0.5360577396490307, 'man': 0.4986422032872035, 'propn': 0.22511817803991885}, {'better': 0.5432941457248641, 'music': 0.5862457759248968, 'lose': 0.5517214155752057, 'adv': 0.1759195813040182, 'adp': 0.1606335641788972}, {'effect': 0.3613380142234493, 'skate': 0.3613380142234493, 'ambush': 0.3781599518518548, 'track': 0.2847583509195331, 'try': 0.2399134410810547, 'rap': 0.2289146499321285, 'propn': 0.08718526434603649, 'adj': 0.25522482509725714, 'cconj': 0.10815504483981891, 'hot': 0.5612121761779751, 'adp': 0.07361679907780602}, {}, {'wait': 0.8187567012402152, 'man': 0.2891955334900289, 'intj': 0.22190526076832587, 'yeah': 0.2997378472855689, 'adv': 0.24146536042542285, 'adp': 0.2204839346669805}, {'know': 1.0}, {'son': 1.0}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'standing': 0.3488308148234526, 'glory': 0.32230386594285554, 'blaze': 0.31376409582655046, 'lover': 0.3008872031969351, 'use': 0.23716686057815636, 'type': 0.2607101980653565, 'story': 0.27719638846519, 'friends': 0.3067865955891592, 'similar': 0.3067865955891592, 'propn': 0.08042339399900378, 'adv': 0.22310812179411835, 'adj': 0.1569534853631235, 'adp': 0.3395363242624063}, {'better': 0.5439379694468353, 'moment': 0.6047693490846082, 'let': 0.4629267288049765, 'adv': 0.35225610507095084}, {'girlfriend': 0.4881077337516218, 'pussy': 0.41529148242619807, 'better': 0.33633936115392965, 'vibe': 0.36708286868770407, 'bitch': 0.27688447699329133, 'propn': 0.11777283352800985, 'adv': 0.3267217954906396, 'kill': 0.31573080987199675, 'adj': 0.11492213760302786, 'cconj': 0.14609952939499804, 'adp': 0.09944408711366767}, {'right': 0.7508006728247508, 'adv': 0.548556704693293, 'cconj': 0.3679455006137956}, {'ayo': 0.7268536764248186, 'black': 0.5420304140501104, 'propn': 0.4217662424997895}, {'dead': 0.6548357409405485, 'walkin': 0.7277777767233553, 'adj': 0.20378827271080324}, {'hour': 0.39375876544412663, 'guy': 0.36910105880918687, 'half': 0.34568758757870127, 'wait': 0.34568758757870127, 'man': 0.48840543794888835, 'just': 0.23088345389981013, 'adv': 0.40779673767724695, 'adj': 0.10757976690313828}, {'po': 0.8755344266127537, 'respect': 0.36046988979527045, 'stop': 0.29635308942313604, 'cconj': 0.1252029263085531}, {'strivin': 0.7165357333765261, 'pushin': 0.6975503872800617}, {'swallow': 0.2279412815498021, 'stuff': 0.22065512446158367, 'model': 0.2525063069386033, 'maker': 0.2279412815498021, 'bahamas': 0.2525063069386033, 'smile': 0.21231458951623228, 'taste': 0.20584516800621472, 'slim': 0.22406991328206638, 'floor': 0.2078454228386166, 'inside': 0.17889587957891753, 'dime': 0.19899173829010303, 'follow': 0.22065512446158367, 'rhyme': 0.16714055581308343, 'num': 0.10710841917955652, 'doo': 0.4883315439865038, 'propn': 0.3046292979552066, 'cconj': 0.07557973386213797, 'adp': 0.20577636818785228}, {'glorious': 0.5522254639911787, 'god': 0.3525063078517296, 'day': 0.36228027220185705, 'check': 0.3738404184066014, 'true': 0.43193807297242004, 'propn': 0.13324344840980504, 'adv': 0.12321330083156047, 'adj': 0.2600365713237555, 'adp': 0.11250704168409799}, {'cut': 0.6887853883144957, 'make': 0.5377503241111449, 'like': 0.38840029636654255, 'adv': 0.21598522650741883, 'adp': 0.19721782240895236}, {'sleep': 0.9569501874534486, 'adv': 0.29025219849780526}, {'hollow': 0.727656311564231, 'krill': 0.6859419015053233}, {'complete': 0.4093900352321676, 'cipher': 0.39854282811424674, 'make': 0.23519198242045808, 'foot': 0.35209456426474883, 'timbs': 0.4093900352321676, 'suede': 0.39854282811424674, 'street': 0.293943747612911, 'propn': 0.2043074227882837, 'adj': 0.0996810769158026, 'adp': 0.17251147434518502}, {'steak': 0.34874076847750035, 'outside': 0.34874076847750035, 'order': 0.30053175162915025, 'restaurant': 0.364976246685954, '10304': 0.364976246685954, 'house': 0.28705885949571397, 'food': 0.2593041261778719, 'num': 0.14792926508632176, 'propn': 0.4207287206314871, 'adv': 0.07781151725255146, 'adp': 0.21315093961333115}, {'plateau': 0.5560147139142975, 'explain': 0.5818997425295211, 'define': 0.5560147139142975, 'adv': 0.12405876345714971, 'cconj': 0.1664253246208751}, {'attraction': 0.4441317380408941, 'fatal': 0.37084439263284763, 'pain': 0.33443578754499137, 'common': 0.6688715750899827, 'adj': 0.2997499989264716, 'cconj': 0.12702320223855298}, {'change': 0.7354116657742137, 'night': 0.6776206031720083}, {}, {}, {'trip': 1.0}, {'head': 0.6585634549363713, 'know': 0.4731181430639751, 'num': 0.42202618176372175, 'adp': 0.4053977064956093}, {'hubby': 0.4671585975555331, 'smelly': 0.4671585975555331, 'seed': 0.3712248763011252, 'time': 0.5129356706484341, 'know': 0.21226776780580234, 'like': 0.17910146382452086, 'adj': 0.10509703699886559, 'adp': 0.27282677960981955}, {}, {'boojy': 0.4352592937686261, 'brand': 0.4213462036651456, 'benz': 0.4278668240646916, 'friend': 0.3286727144799044, 'new': 0.3085817994167048, 'need': 0.2944906985918447, 'propn': 0.1163393766918397, 'adv': 0.1075817144479806, 'adj': 0.22704675528843962, 'cconj': 0.2886425956753901}, {'feel': 0.9385911877163499, 'adv': 0.34503127733759376}, {'copy': 0.39863955506789744, 'better': 0.29180458528218267, 'tryin': 0.33372821186730567, 'write': 0.31316777423748027, 'long': 0.2975315133283247, 'niggas': 0.2506066839626417, 'time': 0.24331032930850902, 'fake': 0.32236922934685336, 'comin': 0.3560719099267109, 'adv': 0.18897365587086948, 'adj': 0.19941053933111252, 'adp': 0.17255334314373336}, {'cent': 0.26295609908763645, 'diss': 0.2559888086695721, 'list': 0.26295609908763645, 'click': 0.2502961178964097, 'light': 0.1952309644205286, 'music': 0.2021982548385929, 'shit': 0.4410177554288648, 'bitch': 0.15426010238703441, 'fuse': 0.27193849869110887, 'business': 0.2196713374982382, 'fuck': 0.14797266305170603, 'just': 0.27482162900325846, 'num': 0.23070237779010208, 'propn': 0.131229092766238, 'adv': 0.3033764488579048, 'cconj': 0.16279228512847257, 'adp': 0.16620926416519075}, {'choke': 1.0}, {'lil': 0.8646839735129169, 'bitch': 0.3279982346039083, 'sit': 0.3804455073287536}, {'gay': 0.6291819021246765, 'lookin': 0.5168138813373543, 'say': 0.3354393956705284, 'boy': 0.4738290387133148}, {'base': 0.4400722526389058, 'mouth': 0.37763861957666034, 'son': 0.3258366468393207, 'throw': 0.3438972319154308, 'big': 0.32713011427303806, 'dime': 0.36841433344612484, 'shit': 0.25271896076760497, 'man': 0.24985129543627543, 'propn': 0.1127984515525087, 'adj': 0.22013632146572892, 'adp': 0.09524385808215043}, {'attitude': 0.3972888200198541, 'curve': 0.38416597438899736, 'bad': 0.30057131918583246, 'yo': 0.4643296519035303, 'remember': 0.31555629243509603, 'propn': 0.28757891031417576, 'hip': 0.2954017414288416, 'adj': 0.2806180518276691, 'cconj': 0.11891577540201574, 'adp': 0.16188239314988864}, {'sit': 1.0}, {'wake': 0.828270241983654, 'adv': 0.46534249779297804, 'cconj': 0.31212940584336424}, {'cappachino': 0.28381634191673, 'step': 0.22322547331954232, 'cappa': 0.8135734592477185, 'skill': 0.2255330137807245, 'weak': 0.23073466818258026, 'propn': 0.26173689386790433, 'adj': 0.12770077118728165, 'cconj': 0.08117244842019289, 'adp': 0.110501656854806}, {'mother': 0.3134398354545284, 'happy': 0.3268539357024228, 'father': 0.28580621593232164, 'sayin': 0.2887606699984897, 'intj': 0.28478515737045357, 'propn': 0.16755711186057662, 'adv': 0.4648318189720185, 'adj': 0.08175069279040259, 'cconj': 0.41571582267812585, 'adp': 0.35370134880075915}, {'cconj': 1.0}, {'shit': 0.47032784035569936, 'let': 0.5102246661767108, 'hard': 0.6064050198338934, 'adv': 0.3882466542437463}, {'dad': 0.7801594818016044, 'propn': 0.625580676615776}, {'borrow': 0.8152026615934943, 'food': 0.5791758114172956}, {'sit': 1.0}, {'adv': 0.1110000116577016, 'goose': 0.46830861218025077, 'kill': 0.3217978481404182, 'think': 0.3183866655069069, 'shitter': 0.48105464636548784, 'slit': 0.46830861218025077, 'hit': 0.3200667964546847, 'adp': 0.10135499052639278}, {'oh': 0.5069665953773163, 'yes': 0.5722879791290744, 'intj': 0.6445706633999819}, {'jet': 0.4126169987792115, 'voice': 0.3950405677149485, 'doom': 0.3359969630654822, 'ah': 0.42148923717819553, 'right': 0.30616332500968924, 'time': 0.2880111635847014, 'intj': 0.2055714508303197, 'num': 0.21263280115708755, 'propn': 0.2419013610130692, 'adv': 0.22369178763969833, 'adp': 0.10212737223384068}, {'weed': 0.7205944816919844, 'cocaine': 0.6933567573443418}, {'break': 0.5708787285933571, 'bone': 0.7761643483036447, 'adj': 0.20243748884381813, 'adp': 0.17517261421985925}, {'cconj': 0.8266727668787891, 'adp': 0.5626829804614382}, {'smile': 0.5697437448806376, 'dance': 0.5697437448806376, 'ya': 0.4485197480180555, 'know': 0.32222078027443374, 'propn': 0.1634938394133198, 'adp': 0.1380496258952572}, {'whoa': 1.0}, {'killing': 0.38247908529490365, 'cow': 0.38247908529490365, 'graze': 0.41395870504390875, 'field': 0.41395870504390875, 'dead': 0.2992514977697418, 'blood': 0.3071698425069083, 'cash': 0.2866427160513922, 'need': 0.24158469879017136, 'propn': 0.0954387130389072, 'adv': 0.17650877399199028}, {'act': 0.7214452787114757, 'right': 0.559132664831094, 'adv': 0.40851850991576955}, {'freestyle': 0.4226897378404875, 'wind': 0.3750878702850245, 'appear': 0.4226897378404875, 'blow': 0.29235258006709336, 'sharp': 0.3750878702850245, 'ear': 0.3750878702850245, 'like': 0.16959708131367068, 'adj': 0.19903969905222127, 'adp': 0.2583486730815795}, {'note': 0.7423816155753723, 'car': 0.6699772659245238}, {}, {'fashion': 0.22329530738125916, 'flashin': 0.22329530738125916, 'cent': 0.21591964086058402, 'zero': 0.22329530738125916, 'shooting': 0.22329530738125916, 'opinion': 0.22329530738125916, 'fresh': 0.1924275448231367, 'second': 0.205524222760012, 'sky': 0.18037747161808976, 'sun': 0.1981485562393369, 'passion': 0.205524222760012, 'try': 0.14825881435757654, 'old': 0.14919121731637375, 'day': 0.1464899574800704, 'pull': 0.1722128734456098, 'hate': 0.17465646020188955, 'blast': 0.17882316206501528, 'fast': 0.1820321267225647, 'everybody': 0.15275074158367904, 'num': 0.3788706535498169, 'propn': 0.2155107919448035, 'like': 0.08959345120697436, 'adv': 0.049821954394849044, 'adj': 0.21029434501062505, 'adp': 0.22746410744840362}, {'gza': 0.9660854504636703, 'propn': 0.2582225830604425}, {'gza': 0.297214716545741, 'allegiance': 0.3183699776527355, 'pledge': 0.3292452772595812, 'goddamn': 0.594429433091482, 'propn': 0.47665070492377454, 'hop': 0.2385971903097341, 'hip': 0.24480836952532828, 'adp': 0.06707842095004844}, {'monch': 0.3851087770569613, 'bob': 0.3994436476594314, 'probably': 0.34754918511309, 'propn': 0.7329925760313828, 'adv': 0.09683074301289808, 'cconj': 0.12989882689559692, 'adp': 0.0884169190089892}, {'wop': 0.5780249869603896, 'jake': 0.53406889527002, 'shorty': 0.46991798522537453, 'propn': 0.3997932174465027}, {'stab': 0.5097379306554914, 'plan': 0.44850438850874097, 'knife': 0.5097379306554914, 'hand': 0.40178825635214094, 'propn': 0.13624658675334797, 'adj': 0.13294873292733722, 'cconj': 0.1690165856594151, 'adp': 0.2300856154372389}, {}, {'clap': 0.8244600135838471, 'man': 0.5178931477537636, 'adj': 0.22814989263863603}, {'better': 0.9513686148610682, 'adv': 0.30805479814041614}, {'chapter': 0.8079336365790114, 'end': 0.5678959694251691, 'adp': 0.15728129829976997}, {'suicide': 0.7443487813293326, 'try': 0.4942166903667582, 'make': 0.41349882498851775, 'adj': 0.17525260748297133}, {'exist': 0.617964427985925, 'planet': 0.5400143046851528, 'space': 0.5257760646659281, 'cconj': 0.18496800166976007, 'adp': 0.1259002965133329}, {'industry': 0.5495868809554258, 'party': 0.5043535944917252, 'head': 0.3762126689608547, 'bum': 0.5495868809554258}, {'rollin': 0.42564313797215736, 'wop': 0.4732136169108322, 'shorty': 0.38470930229040246, 'num': 0.19179917382046335, 'doo': 0.43722793877700894, 'propn': 0.43640003739663674, 'adv': 0.10088730390195161, 'cconj': 0.1353407194632128}, {'ho': 0.8703089892199933, 'intj': 0.49250610481787277}, {'learn': 0.7425454212698891, 'thing': 0.6011073556073938, 'adv': 0.20323370814096237, 'adj': 0.2144581643609854}, {'num': 1.0}, {'adp': 1.0}, {'prove': 0.6052930438009715, 'leave': 0.461334512815499, 'fuck': 0.37690742182457465, 'lose': 0.4846974308743846, 'adv': 0.15454859407561294, 'adp': 0.1411195463357794}, {'uh': 0.8683036971832845, 'intj': 0.49603295198790875}, {'sayin': 0.7129326298097839, 'right': 0.5235861755714845, 'adv': 0.38254721591265617, 'adj': 0.20183751616914553, 'adp': 0.1746534476243678}, {'talkin': 0.5050899927456911, 'room': 0.5617777602163304, 'dark': 0.5560299324807784, 'adj': 0.3180884785463746, 'adp': 0.13762369474750477}, {'tongue': 0.6279877346437639, 'son': 0.464972323261753, 'speak': 0.5218022356901427, 'adj': 0.3141368468498001, 'adp': 0.1359139875715353}, {'crowd': 0.7520709887024868, 'shot': 0.6328066769837045, 'adp': 0.18424151952506646}, {'ironclad': 0.4390574130404406, 'awesome': 0.4390574130404406, 'lord': 0.3388926363942127, 'doom': 0.5624007618592444, 'know': 0.19949913689345236, 'tell': 0.23406848306675007, 'propn': 0.20245050503927386, 'adv': 0.09360533399055211, 'adj': 0.09877509142374741, 'adp': 0.17094354492662744}, {'make': 0.7829564814416899, 'adv': 0.31447128045743994, 'adj': 0.3318393103587636, 'cconj': 0.4218644735415948}, {}, {'forgive': 0.7249794590367216, 'lord': 0.6599591956559185, 'propn': 0.1971259598429789}, {'fuckin': 0.8055787785628455, 'adv': 0.25370035380615524, 'adj': 0.5354240954680929}, {'loud': 0.565042782671622, 'come': 0.38232787028093135, 'niggas': 0.4101808959970627, 'rap': 0.43910948584197407, 'adv': 0.15465146870645494, 'adj': 0.32638552332581233, 'cconj': 0.20746556039514957}, {'lock': 0.3214047489161924, 'cold': 0.619412018815578, 'deep': 0.299054735542159, 'block': 0.31604638061282725, 'yo': 0.24974335412177734, 'shit': 0.23102979114837907, 'world': 0.24396378473466418, 'propn': 0.10311771868989555, 'adj': 0.3018652511346454, 'cconj': 0.1279195695779581, 'adp': 0.17413943594932427}, {'porch': 0.6367741273947195, 'pack': 0.4759141160163653, 'num': 0.516184434175178, 'propn': 0.29361819174006243, 'adp': 0.12396149503617088}, {'vocal': 0.5465530305423439, 'socialize': 0.5465530305423439, 'dive': 0.4443321737385048, 'vibe': 0.3927524061733184, 'adj': 0.1229584650123507, 'cconj': 0.15631604361110027, 'adp': 0.10639805838182481}, {'people': 0.5678781400107578, 'talk': 0.605722515457161, 'right': 0.5286901015507856, 'adp': 0.17635597208031153}, {'casualty': 0.7602209936452509, 'war': 0.6296098002479974, 'adp': 0.16017346925350734}, {'car': 0.5679339721945138, 'tec': 0.6197199280007802, 'cash': 0.5139246455730535, 'propn': 0.17111304082003906}, {'avenger': 0.463379845267494, 'hinge': 0.463379845267494, 'door': 0.36094722433035914, 'blow': 0.30623899198700616, 'straight': 0.3224283817457759, 'technique': 0.38691631909607893, 'propn': 0.21366564124219437, 'adv': 0.19758156401636234, 'adp': 0.09020664615254032}, {'wait': 0.7384292408149463, 'tell': 0.544566848352696, 'adp': 0.3977049207448581}, {'large': 0.6058048206924055, 'live': 0.47430075867469046, 'case': 0.5583616518357856, 'adv': 0.1568506222768567, 'adj': 0.16551337295406635, 'cconj': 0.21041573365696584}, {'collection': 0.2190624840669996, 'receive': 0.20240380865885668, 'recipe': 0.2190624840669996, 'expect': 0.19704091302136628, 'technically': 0.2190624840669996, 'bowel': 0.2190624840669996, 'removal': 0.2190624840669996, 'lecture': 0.20931778364155032, 'hysterectomy': 0.2190624840669996, 'rectal': 0.2190624840669996, 'riddle': 0.20931778364155032, 'ability': 0.20931778364155032, 'wreck': 0.18895434507313258, 'section': 0.20240380865885668, 'mc': 0.152427782434428, 'foul': 0.18895434507313258, 'titty': 0.16762944275990757, 'middle': 0.19704091302136628, 'little': 0.1495970569916723, 'fee': 0.20931778364155032, 'check': 0.14170199115944723, 'propn': 0.15151541421680892, 'adv': 0.18681308072120206, 'adj': 0.24641329640000945, 'adp': 0.21322563105998943}, {'good': 0.6858739609416573, 'try': 0.6858739609416573, 'adj': 0.24321558215789468}, {'fashion': 0.4672334766042954, 'smash': 0.43982937915067094, 'form': 0.43982937915067094, 'huh': 0.38459371841666284, 'shape': 0.43982937915067094, 'propn': 0.11273619869918344, 'adj': 0.11000741471222698, 'cconj': 0.13985148427132368, 'adp': 0.09519129351370367}, {'super': 0.8214995222442789, 'propn': 0.26945222427108023, 'like': 0.4480732401377794, 'adp': 0.2275179229428328}, {'stitch': 0.6320209325628073, 'vein': 0.5949517496040909, 'line': 0.47257450687611086, 'propn': 0.15249685864394424}, {'sell': 1.0}, {'cold': 0.4491874222860975, 'nose': 0.570512591747751, 'water': 0.4780439572638944, 'hold': 0.41155012919015765, 'adv': 0.13830025456869863, 'adj': 0.14593848135117554, 'cconj': 0.18553034159247733}, {'yo': 1.0}, {'man': 0.3037434308271309, 'fiction': 0.5947861837172497, 'science': 0.5043247793924154, 'trade': 0.5349944477772678, 'adp': 0.11578765748870512}, {'adj': 1.0}, {'ask': 1.0}, {}, {'singe': 0.5772702479748637, 'smile': 0.48538548293971073, 'away': 0.47059533926124086, 'walk': 0.43944310042213425, 'adv': 0.12880132728897956}, {'ayy': 0.9586970578634372, 'adv': 0.28442916735804236}, {'mentally': 0.7223437248186211, 'yo': 0.4365373727243554, 'run': 0.4768500313068643, 'propn': 0.18024398749872853, 'adv': 0.1666757872136143}, {'know': 1.0}, {'black': 0.1853143019107396, 'people': 0.9801576379913001, 'adj': 0.07035349454469741}, {'lookin': 1.0}, {'omar': 0.553919070353856, 'consider': 0.553919070353856, 'kid': 0.3660746566342817, 'propn': 0.3831202670083177, 'like': 0.21236410259772678, 'adv': 0.11809339290083472, 'adp': 0.21566402633550003}, {}, {'ox': 0.6150089895070301, 'carry': 0.5457487878908256, 'jaw': 0.5551779634041668, 'adp': 0.12529817353672}, {'adj': 1.0}, {'state': 0.48868983551539513, 'pen': 0.457690397471557, 'clock': 0.49796502654868335, 'check': 0.4095438726168618, 'time': 0.3475850174498405, 'adp': 0.12325197404914566}, {'love': 0.7137686524882244, 'just': 0.6407004713997804, 'adv': 0.28290849522989525}, {'good': 0.5943369606512946, 'truth': 0.6518532220088055, 'num': 0.37970226877654184, 'adj': 0.21075593784650826, 'adp': 0.1823707101178973}, {'lightin': 0.4862237925930316, 'bong': 0.4862237925930316, 'writin': 0.4862237925930316, 'straight': 0.35407414115721214, 'song': 0.3615288118325092, 'adv': 0.10848691763548317, 'adj': 0.11447857457361336, 'adp': 0.09906026445375628}, {'timer': 0.4751761097014935, 'shoot': 0.3513998384476964, 'crap': 0.4152373257466729, 'brother': 0.34435022309431484, 'old': 0.3174813796018645, 'time': 0.2730140756654943, 'num': 0.40312151057988155, 'adj': 0.11187746165188692, 'adp': 0.09680947704781583}, {'chip': 0.5518141691482035, 'poor': 0.533855532256064, 'rich': 0.5287178337991256, 'adj': 0.3054031520592046, 'cconj': 0.19412820594116426}, {'murderer': 0.8852970188811164, 'know': 0.42098884576600193, 'adv': 0.19752868171690313}, {'home': 1.0}, {'lovely': 0.6740517254156076, 'bubbly': 0.34853843452511546, 'sippin': 0.309287232253169, 'feelin': 0.29654322836461433, 'livin': 0.27066625378715947, 'run': 0.22248520705816796, 'money': 0.2336184548544011, 'propn': 0.08409692407850154, 'adv': 0.15553274444870654, 'adj': 0.16412270965090459, 'adp': 0.07100909092133756}, {'base': 0.28965870653853243, 'laughin': 0.3220313731447456, 'lo': 0.3220313731447456, 'cee': 0.2975423962242789, 'grant': 0.2975423962242789, 'champ': 0.28321726304477995, 'tryna': 0.24856444238334546, 'pack': 0.24068075269759903, 'sell': 0.22193358996210075, 'broken': 0.28321726304477995, 'head': 0.20367884112871118, 'corner': 0.2532821232509183, 'propn': 0.14848949635122, 'adj': 0.07244765121584984, 'cconj': 0.18420415716544675, 'adp': 0.18807056731512886}, {'nigga': 0.9191274338387593, 'propn': 0.3939603537984212}, {'invisible': 0.2504918718239174, 'character': 0.5009837436478348, 'skit': 0.27110839486635663, 'outro': 0.27110839486635663, 'dr': 0.2384319789488368, 'fantastic': 0.25904850199127605, 'woman': 0.21781545590639764, 'doom': 0.17363511387203479, 'mr': 0.19846479860784508, 'num': 0.21976699018345122, 'propn': 0.5000351191521766}, {'stomach': 0.461873503433017, 'eatin': 0.41694023235632505, 'long': 0.3245083781949533, 'man': 0.24684876078272988, 'intj': 0.18941177261895165, 'lose': 0.3231988978964809, 'adv': 0.10305384781301606, 'adj': 0.5437272004353421}, {'throttle': 0.47407746934850153, 'shift': 0.47407746934850153, 'gear': 0.42642015040200837, 'episode': 0.47407746934850153, 'time': 0.26026626284093957, 'propn': 0.10929917164216603, 'adv': 0.10107147388415652, 'adj': 0.21330716205228456, 'adp': 0.09228916398322257}, {'lay': 0.5247757795536502, 'land': 0.5368791173220023, 'bitch': 0.3579497772019437, 'man': 0.3372462114014664, 'propn': 0.30450793038003465, 'cconj': 0.18887405521659298, 'adp': 0.25711798084838455}, {'butter': 0.4779973092274566, 'soup': 0.5541617891675427, 'really': 0.38951992122797485, 'bread': 0.4779973092274566, 'like': 0.21245715727991926, 'adv': 0.11814513960854565, 'cconj': 0.15849217470656357}, {'woody': 0.6631481902116287, 'type': 0.49562564048207114, 'black': 0.3929705263712691, 'propn': 0.30577934009705193, 'adp': 0.25819152365846015}, {'bear': 0.22025068727170552, 'plane': 0.24441141133630612, 'mental': 0.2478424104148621, 'pete': 0.2836180302149023, 'insane': 0.2560263070717457, 'snort': 0.27424984404633146, 'mc': 0.20653413509341498, 'spark': 0.2560263070717457, 'perform': 0.2610461272305967, 'live': 0.19135621551024593, 'building': 0.23586768369779093, 'cocaine': 0.23847422424629128, 'act': 0.22350984229713175, 'brain': 0.22025068727170552, 'come': 0.15644327854371828, 'rock': 0.1920010756419753, 'propn': 0.06843263637989995, 'adv': 0.2531249712793512, 'adj': 0.13355244361541901, 'cconj': 0.08489203894363799, 'adp': 0.1733478133213692}, {'sound': 0.8024097573377025, 'propn': 0.28200516517776747, 'like': 0.4689475785127294, 'adp': 0.23811727520143702}, {'head': 0.8593502736542564, 'propn': 0.313249252148794, 'adj': 0.30566704205964096, 'adp': 0.2644989084988547}, {'spit': 0.8561960029285638, 'adv': 0.5166511439735237}, {'world': 1.0}, {'preach': 0.9540671043866009, 'propn': 0.21996140070482562, 'adv': 0.2034033985147199}, {'kid': 0.8799910367960646, 'adv': 0.2838796004427876, 'cconj': 0.380825613123685}, {'punct': 1.0}, {'adj': 1.0}, {'fat': 0.5874592279519042, 'come': 0.4011419707776558, 'make': 0.4039920599665464, 'beat': 0.5245196544027723, 'adv': 0.16226176473868328, 'adj': 0.17122336904710722}, {'winter': 0.4483051442697272, 'vanish': 0.4691757996631427, 'land': 0.3814266709361414, 'live': 0.3024701064887457, 'wig': 0.4691757996631427, 'hand': 0.3189883081908063, 'propn': 0.10816908537797489, 'adp': 0.09133495074460285}, {'brooklyn': 0.945875579206045, 'propn': 0.24795908776404096, 'adp': 0.20936971953186848}, {'intj': 0.5950149601813041, 'yeah': 0.8037146242046621}, {'blend': 0.5038161284104016, 'stray': 0.5038161284104016, 'bullet': 0.4107149514570196, 'tape': 0.4107149514570196, 'play': 0.3600716994223583, 'propn': 0.12156302577700655, 'adp': 0.1026444194559912}, {}, {'range': 0.7174293008221455, 'close': 0.6692767970862461, 'adj': 0.19329709569422723}, {'ignorant': 0.5795329515126351, 'militia': 0.5795329515126351, 'gettin': 0.4558106715491198, 'fuck': 0.30131936824467376, 'adj': 0.13037798376373647, 'adp': 0.11281829459082182}, {'li': 0.6497483610855433, 'guy': 0.5427943752290795, 'straight': 0.48931738230084754, 'adj': 0.15820516080845645, 'adp': 0.1368976258309125}, {'sure': 0.7006280219778569, 'shot': 0.6519073801260128, 'adj': 0.21934466797135374, 'adp': 0.18980268488398808}, {'flow': 0.9549671532522538, 'propn': 0.29671153703434994}, {'opera': 0.6439611833659765, 'soap': 0.6439611833659765, 'tell': 0.3433059387394056, 'adv': 0.1372900214313687, 'cconj': 0.18417510982055205}, {'wish': 0.471113781474094, 'fight': 0.49719816429674024, 'talk': 0.39207127336451436, 'thing': 0.36975637053243987, 'just': 0.2831186109435931, 'adv': 0.25002841036978685, 'adj': 0.26383730541790107, 'cconj': 0.16770705349890797}, {'heart': 0.9257159445141645, 'adv': 0.2793006508392205, 'adp': 0.2550316382589351}, {'pull': 0.6207903441226836, 'sick': 0.6502219633025242, 'adv': 0.35919484524960704, 'adj': 0.18951646325010604, 'adp': 0.16399183024264596}, {'write': 0.7451136311806641, 'rhyme': 0.666937535777351}, {'omar': 0.9744377054874274, 'propn': 0.2246578690462405}, {'level': 0.9746425170097616, 'adp': 0.22376765636900395}, {'flippin': 0.3505232140235708, 'broker': 0.3152863641647746, 'charge': 0.3152863641647746, 'playin': 0.30827501165482374, 'spade': 0.3238675661142202, 'large': 0.288630716255424, 'coke': 0.3023469975739715, 'spit': 0.24768623097648418, 'card': 0.2816193637454732, 'propn': 0.0808135788160865, 'adj': 0.1577149661205467, 'cconj': 0.20050168583144107, 'strip': 0.3023469975739715}, {'jail': 0.7007822504864337, 'probably': 0.6674514162229495, 'adv': 0.18595876303622813, 'adp': 0.16980042059778366}, {'skull': 0.5579780236020597, 'bash': 0.5395474534471421, 'split': 0.5395474534471421, 'like': 0.22387920918910814, 'adv': 0.12449681979999817, 'cconj': 0.1670129789471732, 'adp': 0.11367903302845585}, {'sleep': 0.5790203010434559, 'hear': 0.5346803182091703, 'beat': 0.5677086981321217, 'adv': 0.17562242795516414, 'adp': 0.16036223110056508}, {'servant': 0.5416402767921783, 'mansion': 0.500451071814945, 'live': 0.34918679164089456, 'man': 0.27660305577175726, 'money': 0.3469009920731202, 'adv': 0.1154756018370587, 'cconj': 0.15491097916804075, 'adp': 0.3163250621896449}, {'sex': 0.647538337797351, 'murder': 0.565298126656473, 'money': 0.48080746461521934, 'propn': 0.17307891567608824}, {'adv': 1.0}, {'paula': 0.6802037283920196, 'son': 0.4530053725558477, 'old': 0.4342509616190621, 'know': 0.30907132574349033, 'propn': 0.15682184636053223, 'adj': 0.15302596759141185}, {'umm': 0.8309451583775366, 'yo': 0.46398138834358416, 'propn': 0.19157547734876398, 'adv': 0.17715427815951099, 'adp': 0.16176097566491895}, {'door': 0.6662219493196926, 'attack': 0.6726958135667206, 'propn': 0.197187747149333, 'adj': 0.19241481021289344, 'adp': 0.16649981933738997}, {'snake': 0.5819981680630841, 'set': 0.5136482900981878, 'smoke': 0.4759888199085546, 'propn': 0.16069755350652704, 'like': 0.267224639457585, 'adp': 0.2713770405473981}]\n" + ] + } + ], + "source": [ + "X_train, X_test = train_test_split(features, test_size=0.1, random_state=0)\n", + "\n", + "\n", + "vectorizer = TfidfVectorizer( max_df=.5,# drop words that occur in more than half the paragraphs\n", + " min_df=2, # only use words that appear at least twice\n", + " stop_words='english', \n", + " lowercase=True, #convert everything to lower case (since Alice in Wonderland has the HABIT of CAPITALIZING WORDS for EMPHASIS)\n", + " use_idf=True,#we definitely want to use inverse document frequencies in our weighting\n", + " norm=u'l2', #Applies a correction factor so that longer paragraphs and shorter paragraphs get treated equally\n", + " smooth_idf=False #Adds 1 to all document frequencies, as if an extra document existed that used every word once. Prevents divide-by-zero errors\n", + " )\n", + "\n", + "#Applying the vectorizer\n", + "rap_paras_tfidf=vectorizer.fit_transform(X_train.loc[:]['lyrics'])\n", + "print(\"Number of features: %d\" % rap_paras_tfidf.get_shape()[1])\n", + "\n", + "#splitting into training and test sets\n", + "X_train_tfidf, X_test_tfidf = train_test_split(rap_paras_tfidf, test_size=0.1, random_state=0)\n", + "X_train_features,X_test_features= train_test_split(X_train[X_train.columns[1:len(X_train.columns)-2]],\n", + " test_size=0.4,random_state=0)\n", + "\n", + "#Reshapes the vectorizer output into something people can read\n", + "X_train_tfidf_csr = X_train_tfidf.tocsr()\n", + "\n", + "#number of paragraphs\n", + "n = X_train_tfidf_csr.shape[0]\n", + "#A list of dictionaries, one per paragraph\n", + "tfidf_bypara = [{} for _ in range(0,n)]\n", + "#List of features\n", + "terms = vectorizer.get_feature_names()\n", + "#for each paragraph, lists the feature words and their tf-idf scores\n", + "for i, j in zip(*X_train_tfidf_csr.nonzero()):\n", + " tfidf_bypara[i][terms[j]] = X_train_tfidf_csr[i, j]\n", + "\n", + "#Keep in mind that the log base 2 of 1 is 0, so a tf-idf score of 0 indicates that the word was present once in that sentence.\n", + "print('Original sentence:', X_train)\n", + "print('Tf_idf vector:', tfidf_bypara)" + ] + }, + { + "cell_type": "code", + "execution_count": 906, + "metadata": {}, + "outputs": [], + "source": [ + "tfidf_features = pd.DataFrame(X_train_tfidf_csr.toarray())" + ] + }, + { + "cell_type": "code", + "execution_count": 924, + "metadata": {}, + "outputs": [], + "source": [ + "X_train_final = pd.concat([X_train_features,tfidf_features],axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 908, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "35411940" + ] + }, + "execution_count": 908, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_train_final.shape[0]*X_train_final.shape[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 925, + "metadata": {}, + "outputs": [], + "source": [ + "X_train_final = X_train_final.dropna()" + ] + }, + { + "cell_type": "code", + "execution_count": 919, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((3251, 5223), (4012, 2134))" + ] + }, + "execution_count": 919, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_train_final.shape,X_train_features.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 926, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import MinMaxScaler\n", + "scaler = MinMaxScaler()\n", + "scaler.fit(X_train_final)\n", + "X_final =scaler.transform(X_train_final)" + ] + }, + { + "cell_type": "code", + "execution_count": 916, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "MinMaxScaler(copy=True, feature_range=(0, 1))" + ] + }, + "execution_count": 916, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_train_final" + ] + }, + { + "cell_type": "code", + "execution_count": 935, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.decomposition import PCA \n", + "sklearn_pca = PCA(n_components=100)\n", + "X_train_final_pca = sklearn_pca.fit_transform(X_final)" + ] + }, + { + "cell_type": "code", + "execution_count": 944, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n", + "3\n", + "4\n", + "5\n", + "6\n", + "7\n", + "8\n", + "9\n", + "10\n", + "11\n", + "12\n", + "13\n", + "14\n", + "15\n", + "16\n", + "17\n", + "18\n", + "19\n", + "20\n", + "21\n", + "22\n", + "23\n", + "24\n", + "25\n", + "26\n", + "27\n", + "28\n", + "29\n", + "30\n", + "31\n", + "32\n", + "33\n", + "34\n", + "35\n", + "36\n", + "37\n", + "38\n", + "39\n", + "40\n", + "41\n", + "42\n", + "43\n", + "44\n", + "45\n", + "46\n", + "47\n", + "48\n", + "49\n" + ] + } + ], + "source": [ + "Sum_of_squared_distances = []\n", + "K = range(1,50)\n", + "for k in K:\n", + " km = KMeans(n_clusters=k)\n", + " km = km.fit(X_train_final_pca)\n", + " Sum_of_squared_distances.append(km.inertia_)\n", + " print(k)" + ] + }, + { + "cell_type": "code", + "execution_count": 945, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYwAAAEWCAYAAAB1xKBvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjAsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+17YcXAAAgAElEQVR4nO3dedzVY/7H8denlKhoZdIi+1iGUMo23MZSWTKyZZBtGpMlM8g+g2GGjHUsM83UUBOSRKhfUnfEKCqRZCnLSCEqIpX4/P64rqPvfXcv53Sfc5/7vs/7+Xicx32+1/d7zrm+t5zPfW2fy9wdERGRytTLdwVERKR2UMAQEZG0KGCIiEhaFDBERCQtChgiIpIWBQwREUmLAoZUmZmdYWYvJI7dzLbPZ52yJZv3YmYfmNmh2XivmsDMvjazbXPwviX+PZU61zH+N9ko258rlVPAkLTEL7tv45dE6nF3vusFP37BuJndVqr82Fh+f5rvM8XMzslJJSv/7PvNbE2p3+9JWXz/o8zsZTP7xsy+MLMRZtYug9ev97tx9ybu/l626ig1nwKGZOLo+CWRepyf7wolLABOKvWX5+nAO3mqz4YYVOr3OzLTNzCz+mWUHQ88CNwJtAJ2BVYDL5hZ86pWWgqHAobkSk8ze8/MPjezW8ysHoCZ1TOzq83sQzP7zMyGmdnm8dwDZnZxfN42tg76x+PtzWypmVk5n/cJMAc4Il7fAtgPGJu8yMy6mdl/zWy5mb1mZgfH8huBA4G7y2g9HWpm75rZMjO7J1WHiu4lnj8tnvvCzK7a0F+kme0c/8JfbmZzzeyYxLn7zew+MxtnZt8ARaVea8CtwA3uPsLdv3X3T4BzgK+B38XrzjCzF83sb2b2pZm9ZWa/qOh3k+yui/W418zGx2teNLOfmNkd8ff2lpntmajX5Wa2wMxWmNmbZvbLDfzd9I6t39025PWSGQUMyZVfAp2BvYBewFmx/Iz4KAK2BZoAqS/n54CD4/ODgPfiT4CfA1O94lw2wwitCoCTgScIf0kDIQgBTwM3AC2AS4DRZtba3a8CpgLnl9F6OgroAuwBnEgMShXdi5ntAtwHnAZsBbQE0u4CStS5AfAk8AywBXABMMLMdkpcdgpwI9AUKN33vxPQARiVLHT3H4DRwGGJ4q6E33kr4I/AY2bWopLfTdKJwNXx9auBl4BZ8fhRINlluIAQhDYHrgP+Y2ZtKvxllGJmZwI3A4e6+xuZvFY2jAKGZOLx+Fdu6vHrCq692d2Xuvv/gDuAPrH8V8Bt7v6eu38NXAGcHLuSngMOjK2RnwODgP3j6w6K5ysyBjg4/pV/OiGAJJ0KjHP3ce7+g7tPBGYAPSt535vcfXm8l2KgUxr3cjzwlLs/7+6rgWuAHyr5nEsSv9vPY1k3QiC6yd3XuPtk4CnW/T4BnnD3F+M9rSr1nq3iz8VlfN7ixHmAz4A73P272B32NnBkJXVOGuPuM2MdxgCr3H2Yu38PjAR+bGG4+yh3XxTrPBJ4F9gng8+6CLgUONjd52fwOqkCBQzJxLHu3izx+GcF136UeP4h4a9s4s8PS53bCNjS3RcQukk6Ef76fApYFP+arjRguPu3hBbE1UArd3+x1CVbAyckgx5wAFDZX7afJJ6vJHyBV3gv8dyPvwN3/wb4opLP+Wvid5v6It8K+Ci2CJKf0zZxnPxdl5YKPGXdY5vEeYCPS7Xgkv/d0vFp4vm3ZRynfm+Y2elmNjvx32E3SgavylwK3OPuCzN4jVSRAobkSvvE8w7Aovh8EeGLO3luLeu+XJ4j/HXe0N0/jsenA82B2Wl87jDgYmB4Gec+AoaXCnqN3f2meD7T1M0V3ctiEr8DM9uU0C2VqUVA+9QYUOJzPk4cV1Tvt4GFwAnJwvh+vYFJieK2pcaIkv/dspbW2sy2Bv4JnA+0dPdmwBtAeeNTZTkcuNrMemerXlI5BQzJlUvNrLmZtQcGELokAB4Cfmdm25hZE+DPwEh3XxvPP0f4Ink+Hk8h9Nu/ELs2KvMcoV/+b2Wc+w9wtJkdYWb1zayRmR1s66aXfkoYi0hXRffyKHCUmR1gZg2B69mw/9+mA98AA82sQRykPxp4OJ0XxxbDJYQv11PMbBMz+wnwL2Az4PbE5VsAF8bPOQHYGRgXz2X6u6lIY0IAWgI/jkVkOmg9F+gO3JOcBCC5pYAhmXjSSq4TGFPBtU8AMwmtgqeBIbF8KOGv/+eB94FVhICQ8hxh8DYVMF4ANk0cV8iDSe6+tIxzHxEG4K8kfFl9ROjaSP1/cCdwfJzVc1caH1fuvbj7XOA8wnTWxcAywl/6GXH3NcAxQA9C99G9wOnu/lYG7zGSMPj+u/gebwKbAPu7e7KbbDqwQ7zmRuD4xPlMfzcV1edNwsytlwiB6GdA6e7DdN7nNcKEhH+aWY+q1EnSY9pASUTM7AzgHHc/IN91kZpLLQwREUmLAoaIiKRFXVIiIpIWtTBERCQtOU0RbGaNCDNINo6f9ai7/9HMRhDSRnwHvAz8xt2/i3PA7ySsvF0JnOHus+J79SUsyIKQF+eBij67VatW3rFjxxzclYhI3TVz5szP3b11WedynVN+NXCIu38dc+K8YGbjgRGENA0Qph2eQ8i704MwrW8HQl6b+4CuFhLJ/ZEQZByYaWZj3X1ZeR/csWNHZsyYkaPbEhGpm8zsw/LO5bRLKs6J/zoeNogPj7l8PC4qepl1Sdl6AcPiqWlAs5iQ7AhgYsxNtAyYSFi0IyIi1STnYxhxRe1sQmKzie4+PXGuAWFB0f/ForaUzIuzMJaVVy4iItUk5wHD3b93906EVsQ+pfLW3ws87+5T43FZuWS8gvISzKyfmc0wsxlLliypatVFRCSh2mZJuftyQl6g7gBm9kegNfD7xGULKZm0rh0h+Vl55aU/Y7C7d3b3zq1blzlmIyIiGyinAcPMWptZs/h8E+BQ4C0LewMfAfQplbZ5LHC6Bd2AL919MTABODwms2tOyFQ5IZd1FxGRknLdwmgDFJvZ68ArhDGMp4C/E/YMeCnmxP9DvH4cYcev+YT0x/0BYiK5P8X3eAW4vqzkclU1aBAUF5csKy4O5SIihS6n02rd/XUSu2wlysv83Dhr6rxyzg0lZAfNmS5d4MQT4ZFHoKgoBIvUsYhIocv1OoxapagI7r8fjjwS+veHBx5YFzxERAqdUoOUstVWsHo13HornHuugoWISIoCRinLl8Mmm4Tnt9++/piGiEihUsBISI1ZjB0LvXrBqlVw3HEKGiIioIBRwiuvhDGLQw6BoUOhbVto1AieT2tzUBGRuk2D3gkDB6573qIFPPwwHHggvPEGuIOVtd5cRKRAqIVRgX33hT//GR59FP7+93zXRkQkvxQwKnHJJbDjjjBgAMyeva5cC/pEpNAoYFSiXj246Sb4/ns4+mhYsWLd4HiXLvmunYhI9VHASMMvfxnWZSxcCPvtV3I1uIhIoVDASNNFF8FBB4UB8K5dFSxEpPAoYKSpuBjmzoVtt4Wnn4bBg/NdIxGR6qWAkYZkEsJp06BVK/jtb+HJJ/NdMxGR6qOAkYbUgr6iImjdGh5/PJRfeWVYnyEiUggUMNIwcGDJMYv99w9Tat94A+66K3/1EhGpTgoYG+j3v4dddgk/p01bV671GSJSVylgbCAz+MtfwvNjjoEvvtD6DBGp2xQwquCYY+Cee2DJkjDVVuszRKQuU8CoonPPhR49YMGCkEJEwUJE6ioFjCoqLg6zqPbaC/77X7jqqnzXSEQkNxQwqiC5PuOll2D33UN223vvzXfNRESyTwGjCpLrMxo2hEmTYMst4fLL4eOP8107EZHsymnAMLNGZvaymb1mZnPN7LpYvo2ZTTezd81spJk1jOUbx+P58XzHxHtdEcvfNrMjclnvdJVen9GqFTz7bFjMd+yx8O23+aubiEi25bqFsRo4xN33ADoB3c2sG3AzcLu77wAsA86O158NLHP37YHb43WY2S7AycCuQHfgXjOrn+O6b5DddoMRI2DGDDjyyJIrwbVGQ0Rqs5wGDA++jocN4sOBQ4BHY/kDwLHxea94TDz/CzOzWP6wu6929/eB+cA+uax7VRxzDJxzTggQv/51KNMaDRGp7XK+p3dsCcwEtgfuARYAy919bbxkIdA2Pm8LfATg7mvN7EugZSxPrKcu8ZrkZ/UD+gF06NAh6/eSicGD4f33YcgQmDcP3n4bRo3StFsRqb1yPujt7t+7eyegHaFVsHNZl8WfVs658spLf9Zgd+/s7p1bt269oVXOCrOQzXb33cN021WrwlqNm24KrY0kdVWJSG1QbbOk3H05MAXoBjQzs1Trph2wKD5fCLQHiOc3B5Ymy8t4TY01bRosWgRnnQWrV4fuqX/9K+zglwoa6qoSkdoi17OkWptZs/h8E+BQYB5QDBwfL+sLPBGfj43HxPOT3d1j+clxFtU2wA7Ay7mse1Ul12gMGQITJkDTpvD11/Dll9C9OwwYoHQiIlJ75HoMow3wQBzHqAc84u5PmdmbwMNmdgPwKjAkXj8EGG5m8wkti5MB3H2umT0CvAmsBc5z9+9zXPcqSa7RADjkEHjiidA9ZQbXXhtSo199tYKFiNQO5nV0B6DOnTv7jBkz8l2NMhUXh5lUX38Nm20WNmRS0BCRmsDMZrp757LOaaV3NUt1VT32GHTsCFttFY5LD4SLiNQ0ChjVLNVVddhhYYvXt96CSy8N5SIiNZm6pPJozRrYfnto3x5eeCGMbYiI5JO6pGqohg3hssvCQLi6pESkplPAyLOzz4Y2beBPf8p3TUREKpZ2wDCzAWa2mQVDzGyWmR2ey8oVgkaNQtbbKVNg6tR810ZEpHyZtDDOcvevgMOB1sCZwE05qVWB6dcPtthCrQwRqdkyCRipIdmewL/d/TXKzvEkGdp0U7jkEpg4EaZPz3dtRETKlknAmGlmzxACxgQzawr8kJtqFZ5Vq8IivmQrQ0kJRaQmySRgnA1cDnRx95VAQ0K3lGTBAQfA2rXw9NMwc6aSEopIzZNJwHBgF+DCeNwYaJT1GhWooiIYOTKsxTj5ZCUlFJGaJ5OAcS+wL9AnHq8gbIgkWXLUUSFAzJ8PK1bAQw+FNRo336w9NEQk/zIJGF3d/TxgFYC7LyN0S0mWFBfD66/DqaeG42HDYP/94W9/C8Hk4YfXXafuKhGpbpkEjO9imnKHsNcFGvTOmuT+GcOHw/jx0KRJWKOx/fawciX06QOHHqruKhHJj0wCxl3AGGALM7sReAH4c05qVYBK759RVBT2AG/ZMizqe+892HlnmDQp/Dz44HzWVkQKUUbJB83sp8AvCOsvJrn7vFxVrKpqQ/LBTKRaIO3bw6uvQu/eIaAoYaGIZFNWkg+aWTfgY3e/x93vBhaaWddsVVLKl+yumjkTjjsORo8O4xrf1+h9B0WkLsmkS+o+4OvE8TexTHIs2V1lBo8+GgbGx42Dww+H775bd61mT4lIrmSyp7d5ov/K3X8ws1zvCS6Ege8kszAwvskm8M9/hvGMSZPgpZfWtURERLItky/898zsQta1KvoD72W/SpKuwYND0LjrLthtN/jyS82eEpHcyaRL6lxgP+BjYCHQFeiXi0pJ+u68M4xlLFgQZlQdeGC+ayQidVXaAcPdP3P3k919C3ff0t1PcffPclk5qVxxMUybFsYy3n4bevaEH7Q6RkRyIJNZUq3N7EozG2xmQ1OPSl7T3syKzWyemc01swGxvJOZTTOz2WY2w8z2ieVmZneZ2Xwze93M9kq8V18zezc++m7oDdclydlTEybAmWeGFOnHHgt1dKt2EcmjTMYwngCmAs8C6U7mXAtc7O6zYjr0mWY2ERgEXOfu482sZzw+GOgB7BAfXQnjJV3NrAXwR6AzYaX5TDMbG9OTFKzSi/2GDAkrwkeODKvCH3po3TqN4uJwfekBdBGRdGUSMDZ198syeXN3Xwwsjs9XmNk8oC3hS3+zeNnmwKL4vBcwLM7GmmZmzcysDSGYTHT3pQAx6HQHHsqkPnVNWbOnHnoo7K0xcmQYEP/3v0u2RERENlQmAeMpM+vp7uM25IPMrCOwJzAduIiwCdNfCd1i+8XL2gIfJV62MJaVV176M/oRB+I7dOiwIdWs9czgscegRw+4/35YtAhmzdLsKRGpukxmSQ0gBI1vzewrM1thZl+l80IzawKMBi6K+4L/Fvidu7cHfgcMSV1axsu9gvKSBe6D3b2zu3du3bp1OlWrk+rVCxsx/fSn8MwzYSBcwUJEqiqTWVJN3b2eu2/i7pvF480qe52ZNSAEixHu/lgs7gukno8C9onPFwLtEy9vR+iuKq9cyjF1KixZAs2bw3/+E1aFi4hURSYtDMysuZntY2Y/Tz0qud4IrYd57n5b4tQi4KD4/BDg3fh8LHB6nC3VDfgyjoNMAA6Pn98cODyWSRlSYxajRsHjj4dptr17r78Jk4hIJtIewzCzcwjdUu2A2UA34CXCF3559gdOA+aY2exYdiXwa+DOmFpkFesWAI4DegLzgZXEPcPdfamZ/Ql4JV53fWoAXNZXevbUhReG1eAjR6prSkQ2XNrpzc1sDtAFmObunWKq8+vc/aRcVnBD1bX05lXxzTewxx5hbcbrr0PjxutfM2hQ2MEvGVA0FVek8GQlvTmwyt1XxTfc2N3fAnbKRgUltxo3hqFDwyZMV15Z9jVduoRurFS3lbaBFZHSMplWu9DMmgGPAxPNbBkaeK41fv5zuOCC0DXVu3c4Tjr4YBgwIKQY2XJL+OqrMD1XXVgikpLRjns/vsjsIMKCu/Hu/l1l1+eDuqTW98030KEDNGoE77wTWh7ucOONcN99Yc1G8+awLK6f32EH2H13+PWv4Ygj1r2PuqpE6q5s7bg3PPXc3Z9z97FAhbmkpGZp3BiuuSYEhtNOg7FjYccdQxnAZZdB/fpw1VXQtGlYBDh6dFjH8ZvfhFaHuqpEClcmg96z3D2ZDLA+MMfdd8lV5apCLYzyHXccjBkTnterB5dcAocdFvJPpWZXpQLDZZfBgw+GfcQbN4aNNw47/qmrSqRuqlILw8yuMLMVwO5xhfdX8fgzQkJCqWWGD4dOncLzyy+Hm29eP31IUVE4/uGHcO6MM0KXVps2ChYiharSgOHuf3H3psAtcYV3apV3S3e/ohrqKFn28suwcGHoiho8OLQmBg5cPxAUFYXy4mJ46qkwUD53Lvz1r/mpt4jkVybTap8ys8YAZnaqmd1mZlvnqF6SI8nMtddfH34mp9NWdP2ECbDVVqFVMkHr7EUKTiYB4z5gpZntAQwEPgSG5aRWkjOlV4Gnup5eeaXy6xs1CntufP893H579dVZRGqGjAe9zewPwMfuPqT0QHhNokHv3DnhhNBF9eabsM02+a6NiGRTtlZ6rzCzK4BTgafjLKkG2aig1C633w4bbRQWAmorWJHCkUnAOAlYDZzt7p8QNjC6JSe1khqtXTu47rqw58YTmicnUjA2aKV3baAuqdz67ruwavz77+H999clNNQqcJHararrMF6IP1ck1mFktOOe1D0NGsAVV4RNms45J5RpFbhI3VZp8kF3PyD+bJr76khtcuGFMH48PPwwbL55SCOivcNF6q5KA4aZtajovDYyKmzDhkHHjvCPf5S9+E9E6o50Br1nAjPizyXAO4QtVZfEMilgb7wRuqcA7rgDJk/Ob31EJHfSSQ2yjbtvS9hD+2h3b+XuLYGjgMdyXUGpuVJjFmPGwC23wJo1cMwx2jtcpK7KZFptF3cflzpw9/HAQdmvktQWyVXgF18cFvStXAkPPZTvmolILmQSMD43s6vNrKOZbW1mVwFf5KpiUvMlxyzMQtqQn/40tDg++mj96wcNWr/1UVwcykWk5sskYPQBWgNj4qN1LBMBwqZLY8aEjZYOPxxWr153rrgYFiwof99wBRORmi/tgOHuS919gLvv6e57uftFyRlSZva30q8xs/ZmVmxm88xsrpkNSJy7wMzejuWDEuVXmNn8eO6IRHn3WDbfzC7fsNuVXNtpp7Bj31tvwfHHh7JUYDjwwDAV96ijoHNnOPpoOP98aNkSdtut/GAiIjVD1lZ6l5WI0MzaAG3cfZaZNSXMqjoW2BK4CjjS3Veb2Rbu/pmZ7QI8BOwDbAU8C+wY3+4d4DBgIfAK0Mfd3yyvPlrpnV99+oT1GTvuCO+9F7Z+TbY4ytKyZWid9OkD48ZpTYdIPlS00rvSdRhV4e6LgcXx+Qozm0fIQfVr4CZ3Xx3PfRZf0gt4OJa/b2bzCcEDYL67vwdgZg/Ha8sNGJJfw4fD66+HjLYdO0KvXqEVsWYN/OEP0L8/3Hsv3HgjNG8O774L8+eHLq1hw+CUUxQsRGqaTMYwqsTMOgJ7AtMJrYYDzWy6mT1nZqmOh7ZAcrh0YSwrr1xqqKlT4bPPwq5+X38dAsZ228Ef/wijRoXNm0aNgquvhtatQzfW6aeHLLhbbhn2Eb/ppnzfhYgkZbOFYeWeMGsCjAYucvevzGwjoDnQDegCPGJm25bzHk7ZgW29vjQz6wf0A+jQoUPGNyDZkdylr6goPE48EY47ruLNm048MQSR3XeHbt1CrqoffoArr8zfvYjIOtlsYdxZVqGZNSAEixHunlrotxB4zIOXgR+AVrG8feLl7YBFFZSX4O6D3b2zu3du3bp1Ve9HNlB5u/ptt135+4YnX9OyZdh3fMcdQwvkT38q+RrNnhLJj0oHvc3sScr4az7F3Y+p4LUGPAAsdfeLEuXnAlu5+x/MbEdgEtAB2AV4kHWD3pOAHQgtj3eAXwAfEwa9T3H3ueV9tga9a7/ly2HffcOMq2uvDd1ZpVsvIpJdVR30/mv8eRzwE+A/8bgP8EElr90fOA2YY2azY9mVwFBgqJm9AawB+nqIXHPN7BHCYPZa4Dx3/z7exPmE9CT1gaEVBQupG5o1g+nTYb/9QsCYMweee07BQiRfMtnT+3l3/3llZTWFWhh1x4oVsOuuYfX4KafAiBH5rpFI3ZWtPb1bx4Hp1JtuQ1jtLZJTM2aEHFWp2VP33ZfvGokUpkxmSf0OmGJm78XjjsBvsl4jkYTUmMWoUSFP1Z57wnnnQZMmcNpp+a6dSGFJO2C4+/+Z2Q7AT2PRW6mFdyK5UnrG1fPPh3QhAwbAoYdCmzb5rZ9IIUm7S8rMNgUuBc5399eADmZ2VM5qJsL6u/jtuCM8+2xYDHjggfDll+vOabqtSG5lMobxb8KMpn3j8ULghqzXSKQSXbrADTeE7LcHHQSrVilZoUh1yGQMYzt3P8nM+gC4+7dxnYVItRs4MLQu/vznMK7x+eeabiuSa5m0MNaY2SbERXxmth2gMQzJmxtvhMMOCwv71q6tPBuuiFRNJgHjj8D/Ae3NbARhFfbAnNRKJA3FxfDqq2G21IoV0KMHnHxySCeizZhEsi+tgBG7nt4irPY+g7BnRWd3n5KzmolUIJkiZNgwePpp2HRTGD0abr8djjkGJk0qea3GN0SqJq0xDHd3M3vc3fcGns5xnUQqVXq67RFHwFNPhY2XZs2CyZOhe/eQMn3sWI1viGRDJl1S0xL7VojkVenpthCOb7klTLsdPhwaNoShQ0NOqs03177hIlWVScAoAl4yswVm9rqZzTGz13NVMZENZQZt28Imm4QgsmAB7L03PPkk9O6tfcNFNlQm02p75KwWIlmUTCdSVBQCxcknw8yZ8O23YXD8nHNg5Eh1VYlkIpPUIB8CmNkWQKOc1UikikqPbxx9dBjfmDIl7Cn+17/CPfeE9CIKFiLpyyS9+THArYSNjT4DtgbmufuuuavehlN6cylLcXHolvr6a3APg+SHHZbvWonUHNlKb/4nwh7c77j7NoTd717MQv1EqkWqq2r06DAVd+1a6NVr/YFwESlbJgHjO3f/AqhnZvXcvRjolKN6iWRdsqvq5JPh/PPDmMbQofmumUjtkMmg93IzawI8D4wws88I26iK1AoDS+Ul+Otf4eWX4Ykn4N13YYcd8lMvkdoikxZGL+BbwkZK/wcsAI7ORaVEqsPGG4eZVA0bhnGNlSvzXSORmi3tgOHu37j79+6+1t0fcPe7YheVSK3VoUMYx5gzB/r3DwPhoAV9ImXJZAOlFWb2VXysMrPvzeyrXFZOpDqcemrIQ/XAAzBkiBb0iZQnkxZGU3ffLD4aAb2Bu3NXNZHqUVQUxjEaNIB+/UJeqj59YNttlU5EJCmTMYwS3P1x4JCKrjGz9mZWbGbzzGyumQ0odf4SM3MzaxWPzczuMrP5Mf3IXolr+5rZu/HRd0PrLVKWQw8NC/ncoWlT+NvfoGNH+Pvf4cgjw0K/H35Q60MKW9qzpMzsuMRhPaAzcTOlCqwFLnb3WWbWFJhpZhPd/U0zaw8cBvwvcX0PYIf46ArcB3Q1sxaE/ThSnznTzMa6+7J06y9SkeJiuP9+uOYauO++0D21ZElIK/Lhh2EK7uWXh7UbN9wA06eH1yVXihcXh6m7pWdjidQVmbQwjk48jgBWEGZOlcvdF7v7rPh8BTAPaBtP307YgCkZdHoBwzyYBjQzszbx8ya6+9IYJCYC3TOou0i5kntrXH99+HnxxbDXXiGdyJIlcOyxYXX42rVwySXwl7+EnFR/+UvY6U8tDykEmeSSOrMqH2RmHYE9gekxzcjH7v5aqW3B2wIfJY4XxrLyykt/Rj+gH0CHDh2qUl0pIKVzTxUVheNXXgnPX3sNXnhhXevjggvgnXdgzBi48kq46aaQIXfMGOWmkrotky6puyo67+4XVvDaJsBo4CJCN9VVwOFlXVrWW1dQXroOg4HBEHJJVVRfkZSyupCKisIj2fpIlaWOhw4NGzSNHBleM3o07LMPNG5cvfUXqS6ZdEk1AvYC3o2PTsD3wMz4KJOZNSAEixHu/hiwHbAN8JqZfQC0A2aZ2U8ILYf2iZe3AxZVUC6SUxW1Pl58MWwDe/nlYe+Ne+4J6zruKvWnlWZVSZ3h7mk9gGKgQeK4AVBcyWsMGAbcUcE1HwCt4vMjgfHxdd2Al2N5C+B9oHl8vA+0qOiz9957bxfJlcmT3Vu1Cj9Tx5tv7t68uTu4n3ii+7ffrn+dSE0HzMI/XFYAABVGSURBVPByvlczySW1FdAUWBqPm8SyiuwPnAbMMbPZsexKdx9XzvXjgJ7AfGAlcCaAuy81sz8Br8Trrnf3pWW/hUjuldXyGDMmjHW8/HI4N3lymIr76KMa25C6IZP9MM4EriW0NAAOAq519wdyU7Wq0X4Ykk+/+hU8+GDYT/y110JXlUhtkJX9MNz934S1EWPiY9+aGixE8qm4GJ55Bs4+G778Erp2hY8+qvx1IjVdJrmk9gdWuPsThK6pgWa2dc5qJlILJWdV/etfcPfd8OmnChpSN2QyS+o+YKWZ7QFcCnxIGNAWkaj02Eb//iFoLF0KnTqFc0maQSW1SSYBY20cQe8F3OXudxJaGiISDRy4/gB3//7w3HNhd78+fdYFDa0Ol9omk4CxwsyuAE4Fnjaz+oSptSJSia5dw6ypjTcOQaNv33VdV6+8ooy4UjtkEjBOAlYDZ7v7J4TUHLfkpFYidVC3bmGh30YbwbBhoZvqiitCwDj22DD9Fta1PBYsUCCRmiWTWVKfuPtt7j41Hv/P3X8cwzCzl3JRQZG6ZNWqkD79pJNCa2PlSnjqKfjqKzjhBNh8c+jeHXr2hPbt4fjjQ8sE1IUl+ZfJwr3KNMrie4nUOakv/FGjSuapeuKJECiuuQYmToSWLWH48HXbxR56aNjMadkyLQKU/NrgDZTKoGR/IhUoLy/V7NmhpfHqqyFomIVWx0svhey4e+4ZuqfWrIHWrfN7D1LYshkwRKQCZc2gKioKXUyl9+Po2zfMqtppJ/jf/+Dcc0NQ2XdfmDYtP/UXqTRgmNnGab5XWSnIRaQS5bU8Hn54XSC5777QTbVyJRx8cOi6Eqlu6bQwXgIws+GVXHda1asjUnjKa3lst13JQHLKKeG4efMwMH7ttSVfoxlUkmvpBIyGZtYX2M/Mjiv9SF3k7m/krpoihaesQNK7N8ybBzvvDNddF7aLBU3FleqRTsA4l7A3RTNK7ut9NHBU7qomImVp1iykUN9nH7j1VujYMUzD7dsX9tgjTM9NBQ1NxZVsyiS9+dnuPiTH9ckapTeXum7NGjjkkLDzX4MG8N13687VqxcWCr7zTsluLZHKZCW9OTDczC40s0fj44K4/aqI5MGLL8Lbb4epuJtvDv/5Dzz+eJhp1bEj/Pe/IWgoWEi2ZBIw7gX2jj/vJezvfV8uKiUiFUumUU9Nxb3oIthsMzjggLByvGPHsJ5jeGXTVUTSlMlK7y7uvkfieLKZvZbtColI5SqaivvYY+H5DjuEwfGzzoKf/AQOOyy/dZbaL5MWxvdmtl3qwMy2Bb7PfpVEpDLpTMVt1w6GDoW1a+Hmm/NTT6lbMmlhXAoUm9l7hEV6WwNn5qRWIrJBBg4seXzCCWH21PDhYcxj//3zUy+pGzLJVjsJ2AG4MD52cvcfZ3ybmRq8IjXQXXfB1lvDqaeGsY10DRqkNR1SUka5pNx9tbu/7u6vufvqUqfV6BWpgTbbLKwM//BDuOCCdeWVffmnclxNmAArVmhNh2Q3+eB6uaTMrL2ZFZvZPDOba2YDYvktZvaWmb1uZmPMrFniNVeY2Xwze9vMjkiUd49l883s8izWW6TOO+EE2GSTsHHTI4+U/PIvqyUxaVIYQO/SBXr0gDZtwt4cWtNR2HKd3nwtcLG770xYLX6eme0CTAR2c/fdgXeAKwDiuZOBXYHuwL1mVj9uB3sP0APYBegTrxWRNBQVhTUaG20Ep50WgsBRR8HixdCkybrV4XPmwMknw+GHw+DBMHUq7LorfPNN2Pjp5z/P951IPuU0vbm7L3b3WfH5CmAe0Nbdn3H3tfGyaUC7+LwX8HDs+nofmA/sEx/z3f09d18DPByvFZE0HXZYSJO+Zk3Y7e/+++FXv4LzzoMvvgirxnffHUaODGlHHnootCg++QSOOSZ0aZ2paS4FLZsB44OKTppZR2BPYHqpU2cB4+PztsBHiXMLY1l55aU/o5+ZzTCzGUuWLMmg6iJ1X3Fx6Ga65hpo2BDGj4e5c8OOf7feCp1jMojf/z5s3rTllnD66SFoPPEEHHFEmG11yy35vQ/Jn7QDRuwaOiamB/l96pE67+7HVfDaJsBo4CJ3/ypRfhWh22pEqqiMl3sF5SUL3Ae7e2d379xaW5OJ/KisleGnnQaffhpaD3vuCR98EILJsGHh+tKLA0ePDrOtrrsOFi3K6+1InmSyDuNJYBUwB/gh3RfFfFOjgRHu/liivC8h2+0vfF0GxIVA+8TL2wGpf5rllYtIJcpbGf7KK+E4FUyKisIjeZzSuDGMGxcGwk85BZ59NoyJSAFx97QewOvpXpt4jQHDgDtKlXcH3gRalyrfFXgN2BjYBngPqE8IbO/Fsobxml0r+uy9997bRaRyN9/sPnlyybLJk0N5WU480R3cr7kmveuldgFmeDnfq5mkN78ZmOTuz6QbjMzsAGAqJVslVwJ3xaDwRSyb5u7nxtdcRRjXWEvowhofy3sCd8QAMtTdb6zos5XeXCQ3iovDLKvVq+GZZ0Iro6wWidROFaU3zyRg/BL4D2Hc4ztC68HdfbNsVTSbFDBEcmf8eDj66DDbygz++U/o0yes6ejSpWTgSI2HlE5bIjVTtvbDuBXYF9jU3Tdz96Y1NViISG716AH9+sHKlWGNximnhN3+5syB444LC/9AW8fWNZkEjHeBNzzdJomI1FnFxTBqVJhV1bw5/Pa34eeDD8Ly5WHh3047wZFHhoWAHTqE/cjHjVv3eqUZqX0ymeOwGJhiZuOBH/NIufttWa+ViNRYySm6pWdV7b57CAo33QRvvhnGN+6+e91rjzwyBJY1a0Jw0ZhH7ZJJC+N9YBJhllLTxENECkhFU3Rbtgz7cHz2WWh9NGsW1m9MmxZWjhcVwbJloRurT5+w8vz3v1d3VW2R9qB3baNBb5HqV7r1kTyG8Py3v4W//Q323TecX7UKGjQIAebqq2HKFM26yqeKBr3T7pIys2LKXl19SBXqJiJ1SDpbxya7sR56CN5+G267Df7wh5DfavlyePRRBYuaKJMxjEsSzxsBvQlrJUREgLKnzhYVVdyNddllcPHFIUXJ+PFhqu4nn1RvvSU9VeqSMrPn3P2gLNYna9QlJVJ7pLquTjoJ/vGPsA/57ruHvFXHHlvyOq3pyK2srMMwsxaJRysz6w78JGu1FJGClBznuPvu0MrYdNOwpqN37zDjKnmdpuLmTyZdUjNZN4axlpDO/OxsV0hECkvp7qpDD4WnngobPo0dC1dcEcZAFi4Maz80tpE/lbYwzKyLmf3E3bdx922B64C34uPNXFdQROq2gQPXDwJFRXDnnTBvHuy3H7z2WpiKu2AB/JB2rmzJtnS6pP4BrAEws58DfwEeAL4EBueuaiJS6F56Cd55B37zmzCu8etfwzbbwL/+VfI6rduoHukEjPruvjQ+PwkY7O6j3f0aYPvcVU1ECllybOPvf4cJE8K+4p9/HgLHCSfAihUa26hO6Yxh1DezjTzswf0LoF+GrxcRyVjpsY1DDglbxT73HMycGdZqPPMM1KsX1nhobCP30vnCfwh4zsw+B74l7G+BmW1P6JYSEcm68tZ0pALDWWfBv/8d0qvPmgUHHxyeS+5U2iUVNyq6GLgfOCCRrbYecEHuqiYiUrbiYnjySbj00pBW5JJLwnqNZcvyXbO6La11GO4+zd3HuPs3ibJ33H1W7qomIrK+5NjGoEFh3UbjxvD007DddnDffetfrwHx7MgkW62ISN6VNbbx5JMhqWHDhtC/P5x3XshJpQ2cskvZakWkzli6FI46KkzHhTAg3rlzmIo7blxIcnjGGTB1qjLilicre3rXNgoYIoXJHU47DUaMgN12C0Fj3jz47rtwvlWr8HzMGAWLsmRrT28RkRpvypSwZuOaa0LW2zvuCKvE584NGXE//xy+/DKs7bjqKnVVZUIBQ0TqjOSA+PXXh58nnggvvACffgr//W/ITbXppqGFcdttcPTRYT1H8vVaBFi2nAYMM2tvZsVmNs/M5prZgFjewswmmtm78WfzWG5mdpeZzTez181sr8R79Y3Xv2tmfXNZbxGpnSrawCkVSP7855DcsGlT2Guv0Pro2RN+9SuNa1Qmp2MYZtYGaOPus8ysKSHj7bHAGcBSd7/JzC4Hmrv7ZWbWk7C2oyfQFbjT3buaWQtgBtCZkDF3JrC3u5c761pjGCKSMmhQaDUkA0Fqb42f/SwEi2XLYMcdw/Tc7Qs46VHexjDcfXFqrYa7rwDmAW2BXoQEhsSfqS1SegHDPJgGNItB5whgorsvjUFiItA9l3UXkbqjvIy4AwdCo0ZQvz784hch0eFPfxrKr7++7PGNnj0Ld9yj2sYwzKwjsCcwHdjS3RdDCCrAFvGytsBHiZctjGXllZf+jH5mNsPMZixZsiTbtyAidUxyzOPZZ0N+qo02gltugdtvD4Pkzz5b8tpDDw0/n302zMgqpHGPakkeaGZNgNHARe7+lZWf8KWsE15BeckC98HElOudO3eum/OFRSRrSo959O4NLVqEAfGZM8Mgeffu0KEDfPQRtGkTgslXX8Fhh8GWW8K33xbOFN2cBwwza0AIFiPc/bFY/KmZtXH3xbHL6bNYvhBon3h5O2BRLD+4VPmUXNZbROq+ihIcusPIkSFP1fvvw7bbwt57w+abh8f06WH2FcDVV4c1H336lD1OAuWPodSm/clzPUvKgCHAPHe/LXFqLJCa6dQXeCJRfnqcLdUN+DJ2WU0ADjez5nFG1eGxTEQkJ8xCC2L16rCm46uvQvqRf/4TjjwS3noLrrwSmjSBd98N5UccAffcE16f7Krq0iU8T4191NpuLHfP2QM4gNB19DowOz56Ai2BScC78WeLeL0B9wALgDlA58R7nQXMj48zK/vsvffe20VENtTkye6tWoWfyeNbby27vH9/9803dwf3rbZyb9DAvVMn96Ki8OjUKZSdfnrJ19c0wAwv53tVqUFERMpQ3lTcW24JadXL6l7q3z8MlBcXQ/v20LFjyfecPTvsElhUFAbN69XApdPKJSUiUg1SXU2//W1Is54cUC8uDtvKbrklvPkmdO0aEiK2aJHfOpemXFIiIjlWXlqS4uJ150aNgjfegAsvDIPmW28N9967/vvU1DUdChgiIllQXlqSV14pec4M7rwzBAr3sHfHhRfWjjUd6pISEcmTpUvDjKtp08KeHcuWwWOP5XdNh7qkRERqoBYt4MUX4fDDw1qP5cvhhhvgN7+ByZNLXlsTuqoUMERE8ui552DWLLjssrA3+auvwuDBYU3HoEHrd1UNGpS/XFYKGCIieZIcKL/pprA3ef36cMEF0KxZCCJbbhkSHp56atjH42c/y98iQAUMEZE8KW+gvF07WLgwjG8sWRJaGXfcAd26hT3LGzeGHj3g/POrdw8PDXqLiNRApdd03HVXSMU+e3botpowAdasgXPOCWlJsqWiQe9qyVYrIiLpS3ZVpZIhpo6vuy6cf+EF2GQTGDIk7OFx8cW5r5cChohIDVPRmg4IwWP06LBD4AEHhIy6K1bAtdfmtl7qkhIRqUVK57hatgwOPBDmzoUBA8JYR8qGpFBXl5SISB1R+su/eXN4+eWwxeydd4YAcv/9MGXKum6sbFHAEBGp5TbdFKZODTOohg0LyQ0/+CD7s6c0rVZEpA7YaCMYPx723RdmzAizq7I91VYBQ0SkjpgyJez+d801YSpu6RXhVaWAISJSB1SUXj1bFDBEROqAyqbiZoOm1YqIyI+U3lxERKpMAUNERNKigCEiImlRwBARkbQoYIiISFrq7CwpM1sCfFjJZa2Az6uhOjVVId+/7r1wFfL9p3PvW7t767JO1NmAkQ4zm1He9LFCUMj3r3svzHuHwr7/qt67uqRERCQtChgiIpKWQg8Yg/NdgTwr5PvXvReuQr7/Kt17QY9hiIhI+gq9hSEiImlSwBARkbQUbMAws+5m9raZzTezy/Ndn1wys6Fm9pmZvZEoa2FmE83s3fizeT7rmCtm1t7Mis1snpnNNbMBsbxQ7r+Rmb1sZq/F+78ulm9jZtPj/Y80s4b5rmuumFl9M3vVzJ6Kx4V07x+Y2Rwzm21mM2LZBv/bL8iAYWb1gXuAHsAuQB8z2yW/tcqp+4HupcouBya5+w7ApHhcF60FLnb3nYFuwHnxv3Wh3P9q4BB33wPoBHQ3s27AzcDt8f6XAWfnsY65NgCYlzgupHsHKHL3Ton1Fxv8b78gAwawDzDf3d9z9zXAw0CvPNcpZ9z9eWBpqeJewAPx+QPAsdVaqWri7ovdfVZ8voLwxdGWwrl/d/ev42GD+HDgEODRWF5n79/M2gFHAv+Kx0aB3HsFNvjffqEGjLbAR4njhbGskGzp7oshfKkCW+S5PjlnZh2BPYHpFND9xy6Z2cBnwERgAbDc3dfGS+ryv/87gIHAD/G4JYVz7xD+OHjGzGaaWb9YtsH/9jfKQQVrAyujTPOL6zAzawKMBi5y96/CH5qFwd2/BzqZWTNgDLBzWZdVb61yz8yOAj5z95lmdnCquIxL69y9J+zv7ovMbAtgopm9VZU3K9QWxkKgfeK4HbAoT3XJl0/NrA1A/PlZnuuTM2bWgBAsRrj7Y7G4YO4/xd2XA1MIYznNzCz1B2Nd/fe/P3CMmX1A6HY+hNDiKIR7B8DdF8WfnxH+WNiHKvzbL9SA8QqwQ5wt0RA4GRib5zpVt7FA3/i8L/BEHuuSM7HPeggwz91vS5wqlPtvHVsWmNkmwKGEcZxi4Ph4WZ28f3e/wt3buXtHwv/jk939VxTAvQOYWWMza5p6DhwOvEEV/u0X7EpvM+tJ+GujPjDU3W/Mc5VyxsweAg4mpDb+FPgj8DjwCNAB+B9wgruXHhiv9czsAGAqMId1/dhXEsYxCuH+dycMbNYn/IH4iLtfb2bbEv7qbgG8Cpzq7qvzV9Pcil1Sl7j7UYVy7/E+x8TDjYAH3f1GM2vJBv7bL9iAISIimSnULikREcmQAoaIiKRFAUNERNKigCEiImlRwBARkbQoYIhUIzPrmMwaLFKbKGCIiEhaFDBE8sTMto37NHTJd11E0qGAIZIHZrYTIb/Vme7+Sr7rI5KOQs1WK5JPrQn5e3q7+9x8V0YkXWphiFS/Lwn7seyf74qIZEItDJHqt4awy9kEM/va3R/Md4VE0qGAIZIH7v5N3OBnopl94+51MsW21C3KVisiImnRGIaIiKRFAUNERNKigCEiImlRwBARkbQoYIiISFoUMEREJC0KGCIikpb/Bwjni+RWA2YAAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(K, Sum_of_squared_distances, 'bx-')\n", + "plt.xlabel('k')\n", + "plt.ylabel('Sum_of_squared_distances')\n", + "plt.title('Elbow Method For Optimal k')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 978, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.cluster import KMeans\n", + "kmeans = KMeans(n_clusters=8,random_state=0,n_init=10).fit(X_train_final_pca)" + ] + }, + { + "cell_type": "code", + "execution_count": 980, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "\n", + "\n", + "3\n", + "2\n", + "3\n", + "2\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "\n", + "\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "\n", + "\n", + "4\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "2\n", + "5\n", + "3\n", + "4\n", + "\n", + "\n", + "5\n", + "5\n", + "6\n", + "4\n", + "6\n", + "5\n", + "4\n", + "5\n", + "4\n", + "5\n", + "\n", + "\n", + "2\n", + "2\n", + "2\n", + "1\n", + "2\n", + "2\n", + "2\n", + "2\n", + "2\n", + "2\n", + "\n", + "\n", + "3\n", + "5\n", + "6\n", + "5\n", + "6\n", + "5\n", + "4\n", + "4\n", + "4\n", + "5\n", + "\n", + "\n", + "3\n", + "5\n", + "4\n", + "5\n", + "5\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "\n", + "\n", + "4\n", + "5\n", + "5\n", + "5\n", + "5\n", + "5\n", + "4\n", + "4\n", + "4\n", + "5\n", + "\n", + "\n", + "4\n", + "6\n", + "5\n", + "6\n", + "6\n", + "5\n", + "5\n", + "4\n", + "5\n", + "5\n", + "\n", + "\n", + "5\n", + "8\n", + "5\n", + "6\n", + "7\n", + "5\n", + "6\n", + "6\n", + "7\n", + "6\n", + "\n", + "\n", + "2\n", + "2\n", + "2\n", + "3\n", + "2\n", + "2\n", + "3\n", + "3\n", + "4\n", + "2\n", + "\n", + "\n", + "3\n", + "5\n", + "5\n", + "5\n", + "5\n", + "5\n", + "5\n", + "4\n", + "6\n", + "5\n", + "\n", + "\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "\n", + "\n", + "5\n", + "5\n", + "5\n", + "4\n", + "5\n", + "5\n", + "4\n", + "5\n", + "4\n", + "6\n", + "\n", + "\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "\n", + "\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "2\n", + "1\n", + "1\n", + "\n", + "\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "\n", + "\n", + "1\n", + "1\n", + "2\n", + "0\n", + "2\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "\n", + "\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "\n", + "\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "\n", + "\n", + "9\n", + "10\n", + "11\n", + "9\n", + "11\n", + "9\n", + "9\n", + "9\n", + "10\n", + "10\n", + "\n", + "\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "3\n", + "\n", + "\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "\n", + "\n", + "0\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "0\n", + "1\n", + "0\n", + "1\n", + "\n", + "\n", + "0\n", + "1\n", + "1\n", + "1\n", + "0\n", + "1\n", + "1\n", + "1\n", + "1\n", + "0\n", + "\n", + "\n", + "6\n", + "8\n", + "9\n", + "9\n", + "10\n", + "8\n", + "8\n", + "8\n", + "8\n", + "9\n", + "\n", + "\n", + "9\n", + "9\n", + "10\n", + "10\n", + "10\n", + "10\n", + "10\n", + "10\n", + "10\n", + "10\n", + "\n", + "\n", + "4\n", + "4\n", + "5\n", + "4\n", + "4\n", + "4\n", + "4\n", + "5\n", + "4\n", + "4\n", + "\n", + "\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "1\n", + "\n", + "\n", + "0\n", + "1\n", + "11\n", + "0\n", + "1\n", + "1\n", + "0\n", + "8\n", + "1\n", + "1\n", + "\n", + "\n", + "3\n", + "5\n", + "4\n", + "3\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "\n", + "\n", + "4\n", + "5\n", + "4\n", + "6\n", + "5\n", + "5\n", + "6\n", + "6\n", + "5\n", + "6\n", + "\n", + "\n", + "4\n", + "3\n", + "4\n", + "4\n", + "4\n", + "4\n", + "2\n", + "4\n", + "3\n", + "3\n", + "\n", + "\n", + "6\n", + "10\n", + "7\n", + "6\n", + "7\n", + "7\n", + "6\n", + "7\n", + "5\n", + "7\n", + "\n", + "\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "\n", + "\n", + "11\n", + "13\n", + "14\n", + "13\n", + "12\n", + "13\n", + "11\n", + "15\n", + "13\n", + "14\n", + "\n", + "\n", + "10\n", + "13\n", + "0\n", + "12\n", + "12\n", + "12\n", + "0\n", + "13\n", + "0\n", + "0\n", + "\n", + "\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "4\n", + "\n", + "\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n", + "0\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 4\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[1;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;36m10\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 5\u001b[0m \u001b[0mlines_for_predicting\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdf_songs\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'lyrics'\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mdf_songs\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'artist'\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m==\u001b[0m \u001b[0mdf\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0martist\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0munique\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mi\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 6\u001b[1;33m \u001b[0mval\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mkmeans\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mpredict\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0msklearn_pca\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mfit_transform\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mvectorizer\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mtransform\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mlines_for_predicting\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mtoarray\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 7\u001b[0m \u001b[0munique_elements\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcounts_elements\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0munique\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mval\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreturn_counts\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mTrue\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 8\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0margmax\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mcounts_elements\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0maxis\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\decomposition\\pca.py\u001b[0m in \u001b[0;36mfit_transform\u001b[1;34m(self, X, y)\u001b[0m\n\u001b[0;32m 358\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 359\u001b[0m \"\"\"\n\u001b[1;32m--> 360\u001b[1;33m \u001b[0mU\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mS\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mV\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_fit\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mX\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 361\u001b[0m \u001b[0mU\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mU\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;33m:\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mn_components_\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 362\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\decomposition\\pca.py\u001b[0m in \u001b[0;36m_fit\u001b[1;34m(self, X)\u001b[0m\n\u001b[0;32m 407\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_fit_full\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mX\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mn_components\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 408\u001b[0m \u001b[1;32melif\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_fit_svd_solver\u001b[0m \u001b[1;32min\u001b[0m \u001b[1;33m[\u001b[0m\u001b[1;34m'arpack'\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;34m'randomized'\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 409\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_fit_truncated\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mX\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mn_components\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_fit_svd_solver\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 410\u001b[0m \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 411\u001b[0m raise ValueError(\"Unrecognized svd_solver='{0}'\"\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\decomposition\\pca.py\u001b[0m in \u001b[0;36m_fit_truncated\u001b[1;34m(self, X, n_components, svd_solver)\u001b[0m\n\u001b[0;32m 532\u001b[0m \u001b[1;31m# Get variance explained by singular values\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 533\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mexplained_variance_\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mS\u001b[0m \u001b[1;33m**\u001b[0m \u001b[1;36m2\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;33m/\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mn_samples\u001b[0m \u001b[1;33m-\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 534\u001b[1;33m \u001b[0mtotal_var\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mvar\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mX\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mddof\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0maxis\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 535\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mexplained_variance_ratio_\u001b[0m \u001b[1;33m=\u001b[0m\u001b[0;31m \u001b[0m\u001b[0;31m\\\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 536\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mexplained_variance_\u001b[0m \u001b[1;33m/\u001b[0m \u001b[0mtotal_var\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msum\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\numpy\\core\\fromnumeric.py\u001b[0m in \u001b[0;36mvar\u001b[1;34m(a, axis, dtype, out, ddof, keepdims)\u001b[0m\n\u001b[0;32m 3365\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 3366\u001b[0m return _methods._var(a, axis=axis, dtype=dtype, out=out, ddof=ddof,\n\u001b[1;32m-> 3367\u001b[1;33m **kwargs)\n\u001b[0m\u001b[0;32m 3368\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 3369\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\numpy\\core\\_methods.py\u001b[0m in \u001b[0;36m_var\u001b[1;34m(a, axis, dtype, out, ddof, keepdims)\u001b[0m\n\u001b[0;32m 119\u001b[0m \u001b[0mx\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mum\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mmultiply\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mum\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mconjugate\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mout\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mreal\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 120\u001b[0m \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 121\u001b[1;33m \u001b[0mx\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mum\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mmultiply\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mx\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mout\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 122\u001b[0m \u001b[0mret\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mumr_sum\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0maxis\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mout\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mkeepdims\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 123\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "for j in range(8,50):\n", + " kmeans = KMeans(n_clusters=j,random_state=0,n_init=10).fit(X_train_final_pca)\n", + " print('\\n')\n", + " for i in range(0,10):\n", + " lines_for_predicting = list(df_songs['lyrics'][df_songs['artist']== df.artist.unique()[i]])\n", + " val = kmeans.predict(sklearn_pca.fit_transform(vectorizer.transform(lines_for_predicting).toarray()))\n", + " unique_elements, counts_elements = np.unique(val, return_counts=True)\n", + " print(np.argmax(counts_elements,axis=0))" + ] + }, + { + "cell_type": "code", + "execution_count": 982, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "6200 Yasiin\n", + "1953 GZA\n", + "499 MF DOOM\n", + "2915 Eminem\n", + "48 MF DOOM\n", + "3088 Eminem\n", + "6589 Yasiin\n", + "1168 Kendrick\n", + "4479 Aesop\n", + "3585 Nas\n", + "4954 Aesop\n", + "1060 Kendrick\n", + "2346 Eminem\n", + "6149 Yasiin\n", + "5646 Pharoah\n", + "3688 Nas\n", + "5700 Pharoah\n", + "3369 Eminem\n", + "7342 Ghostface\n", + "6816 Ghostface\n", + "6113 Yasiin\n", + "7307 Ghostface\n", + "532 MF DOOM\n", + "5076 Aesop\n", + "1277 Kendrick\n", + "1666 Kendrick\n", + "4493 Aesop\n", + "4658 Aesop\n", + "667 Kendrick\n", + "6326 Yasiin\n", + " ... \n", + "4851 Aesop\n", + "5072 Aesop\n", + "2163 GZA\n", + "6036 Yasiin\n", + "6921 Ghostface\n", + "6216 Yasiin\n", + "2893 Eminem\n", + "537 MF DOOM\n", + "1701 Kendrick\n", + "2897 Eminem\n", + "2222 GZA\n", + "2135 GZA\n", + "2599 Eminem\n", + "705 Kendrick\n", + "6458 Yasiin\n", + "3468 Eminem\n", + "6744 Yasiin\n", + "7238 Ghostface\n", + "6743 Yasiin\n", + "5924 Andre\n", + "5874 Andre\n", + "4373 Nas\n", + "1033 Kendrick\n", + "5827 Andre\n", + "4859 Aesop\n", + "4931 Aesop\n", + "3264 Eminem\n", + "1653 Kendrick\n", + "2607 Eminem\n", + "2732 Eminem\n", + "Name: text_source, Length: 6688, dtype: object" + ] + }, + "execution_count": 982, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_train['text_source']" + ] + }, + { + "cell_type": "code", + "execution_count": 1000, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "KNeighborsClassifier(algorithm='auto', leaf_size=30, metric='minkowski',\n", + " metric_params=None, n_jobs=None, n_neighbors=10, p=2,\n", + " weights='uniform')" + ] + }, + "execution_count": 1000, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.neighbors import KNeighborsClassifier\n", + "X_train_knn,X_test_knn,y_train_knn,y_test_knn= train_test_split(X_train[X_train.columns[1:len(X_train.columns)-2]],\n", + " X_train['text_source'],test_size=0.4,random_state=0)\n", + "classifier = KNeighborsClassifier(n_neighbors=10)\n", + "classifier.fit(X_train_knn, y_train_knn)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1001, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.37313060817547355" + ] + }, + "execution_count": 1001, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "classifier.score(X_train_knn,y_train_knn)" + ] + }, + { + "cell_type": "code", + "execution_count": 991, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\ensemble\\forest.py:245: FutureWarning: The default value of n_estimators will change from 10 in version 0.20 to 100 in 0.22.\n", + " \"10 in version 0.20 to 100 in 0.22.\", FutureWarning)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training set score: 0.8045862412761715\n", + "\n", + "Test set score: 0.3109118086696562\n" + ] + } + ], + "source": [ + "from sklearn import ensemble\n", + "rfc = ensemble.RandomForestClassifier()\n", + "train = rfc.fit(X_train_knn, y_train_knn)\n", + "print('Training set score:', rfc.score(X_train_knn, y_train_knn))\n", + "print('\\nTest set score:', rfc.score(X_test_knn, y_test_knn))" + ] + }, + { + "cell_type": "code", + "execution_count": 996, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training set score: 0.5413758723828515\n", + "\n", + "Test set score: 0.30904334828101643\n" + ] + } + ], + "source": [ + "clf = ensemble.GradientBoostingClassifier()\n", + "train = clf.fit(X_train_knn, y_train_knn)\n", + "\n", + "print('Training set score:', clf.score(X_train_knn, y_train_knn))\n", + "print('\\nTest set score:', clf.score(X_test_knn, y_test_knn))" + ] + }, + { + "cell_type": "code", + "execution_count": 995, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\linear_model\\logistic.py:432: FutureWarning: Default solver will be changed to 'lbfgs' in 0.22. Specify a solver to silence this warning.\n", + " FutureWarning)\n", + "C:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\linear_model\\logistic.py:469: FutureWarning: Default multi_class will be changed to 'auto' in 0.22. Specify the multi_class option to silence this warning.\n", + " \"this warning.\", FutureWarning)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training set score: 0.6527916251246261\n", + "\n", + "Test set score: 0.34977578475336324\n" + ] + } + ], + "source": [ + "from sklearn.linear_model import LogisticRegression\n", + "\n", + "lr = LogisticRegression(penalty='l2') # No need to specify l2 as it's the default. But we put it for demonstration.\n", + "train = lr.fit(X_train_knn, y_train_knn)\n", + "print('Training set score:', lr.score(X_train_knn, y_train_knn))\n", + "print('\\nTest set score:', lr.score(X_test_knn, y_test_knn))" + ] + }, + { + "cell_type": "code", + "execution_count": 464, + "metadata": {}, + "outputs": [], + "source": [ + "rap_lemmas = []\n", + "include_stop=True\n", + "for sents in rap_lyrics.sents:\n", + " for token in sents:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " rap_lemmas.append(token.lemma_)" + ] + }, + { + "cell_type": "code", + "execution_count": 696, + "metadata": {}, + "outputs": [], + "source": [ + "dpp = dpp.dropna()" + ] + }, + { + "cell_type": "code", + "execution_count": 522, + "metadata": {}, + "outputs": [ + { + "ename": "TypeError", + "evalue": "'int' object is not callable", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 10\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 11\u001b[0m \u001b[1;31m#Applying the vectorizer\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 12\u001b[1;33m \u001b[0mrap_paras_tfidf\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mvectorizer\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mfit_transform\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mrap_paras\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 13\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"Number of features: %d\"\u001b[0m \u001b[1;33m%\u001b[0m \u001b[0mrap_paras_tfidf\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_shape\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 14\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\feature_extraction\\text.py\u001b[0m in \u001b[0;36mfit_transform\u001b[1;34m(self, raw_documents, y)\u001b[0m\n\u001b[0;32m 1650\u001b[0m \"\"\"\n\u001b[0;32m 1651\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_check_params\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 1652\u001b[1;33m \u001b[0mX\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0msuper\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mfit_transform\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mraw_documents\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 1653\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_tfidf\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mfit\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mX\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 1654\u001b[0m \u001b[1;31m# X is already a transformed view of raw_documents so\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\feature_extraction\\text.py\u001b[0m in \u001b[0;36mfit_transform\u001b[1;34m(self, raw_documents, y)\u001b[0m\n\u001b[0;32m 1056\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 1057\u001b[0m vocabulary, X = self._count_vocab(raw_documents,\n\u001b[1;32m-> 1058\u001b[1;33m self.fixed_vocabulary_)\n\u001b[0m\u001b[0;32m 1059\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 1060\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mbinary\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\feature_extraction\\text.py\u001b[0m in \u001b[0;36m_count_vocab\u001b[1;34m(self, raw_documents, fixed_vocab)\u001b[0m\n\u001b[0;32m 968\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0mdoc\u001b[0m \u001b[1;32min\u001b[0m \u001b[0mraw_documents\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 969\u001b[0m \u001b[0mfeature_counter\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;33m{\u001b[0m\u001b[1;33m}\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 970\u001b[1;33m \u001b[1;32mfor\u001b[0m \u001b[0mfeature\u001b[0m \u001b[1;32min\u001b[0m \u001b[0manalyze\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdoc\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 971\u001b[0m \u001b[1;32mtry\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 972\u001b[0m \u001b[0mfeature_idx\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mvocabulary\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mfeature\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\feature_extraction\\text.py\u001b[0m in \u001b[0;36m\u001b[1;34m(doc)\u001b[0m\n\u001b[0;32m 350\u001b[0m tokenize)\n\u001b[0;32m 351\u001b[0m return lambda doc: self._word_ngrams(\n\u001b[1;32m--> 352\u001b[1;33m tokenize(preprocess(self.decode(doc))), stop_words)\n\u001b[0m\u001b[0;32m 353\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 354\u001b[0m \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mC:\\Users\\Clyde\\Anaconda3\\lib\\site-packages\\sklearn\\feature_extraction\\text.py\u001b[0m in \u001b[0;36m\u001b[1;34m(x)\u001b[0m\n\u001b[0;32m 254\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 255\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mlowercase\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 256\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[1;32mlambda\u001b[0m \u001b[0mx\u001b[0m\u001b[1;33m:\u001b[0m \u001b[0mstrip_accents\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mlower\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 257\u001b[0m \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 258\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mstrip_accents\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mTypeError\u001b[0m: 'int' object is not callable" + ] + } + ], + "source": [ + "vectorizer = TfidfVectorizer( max_df=.3,# drop words that occur in more than half the paragraphs\n", + " min_df=2, # only use words that appear at least twice\n", + " stop_words='english', \n", + " lowercase=True, #convert everything to lower case (since Alice in Wonderland has the HABIT of CAPITALIZING WORDS for EMPHASIS)\n", + " use_idf=True,#we definitely want to use inverse document frequencies in our weighting\n", + " norm=u'l2', #Applies a correction factor so that longer paragraphs and shorter paragraphs get treated equally\n", + " smooth_idf=False #Adds 1 to all document frequencies, as if an extra document existed that used every word once. Prevents divide-by-zero errors\n", + " )\n", + "\n", + "\n", + "#Applying the vectorizer\n", + "rap_paras_tfidf=vectorizer.fit_transform(rap_paras)\n", + "print(\"Number of features: %d\" % rap_paras_tfidf.get_shape()[1])\n", + "\n", + "#splitting into training and test sets\n", + "X_train_tfidf, X_test_tfidf= train_test_split(rap_paras_tfidf, test_size=0.4, random_state=0)\n", + "\n", + "\n", + "#Reshapes the vectorizer output into something people can read\n", + "X_train_tfidf_csr = X_train_tfidf.tocsr()\n", + "\n", + "#number of paragraphs\n", + "n = X_train_tfidf_csr.shape[0]\n", + "#A list of dictionaries, one per paragraph\n", + "tfidf_bypara = [{} for _ in range(0,n)]\n", + "#List of features\n", + "terms = vectorizer.get_feature_names()\n", + "#for each paragraph, lists the feature words and their tf-idf scores\n", + "for i, j in zip(*X_train_tfidf_csr.nonzero()):\n", + " tfidf_bypara[i][terms[j]] = X_train_tfidf_csr[i, j]\n", + "\n", + "#Keep in mind that the log base 2 of 1 is 0, so a tf-idf score of 0 indicates that the word was present once in that sentence.\n", + "print('Original sentence:', X_train)\n", + "print('Tf_idf vector:', tfidf_bypara)" + ] + }, + { + "cell_type": "code", + "execution_count": 526, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "spacy.tokens.doc.Doc" + ] + }, + "execution_count": 526, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type(rap_paras)" + ] + }, + { + "cell_type": "code", + "execution_count": 484, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mic\n", + "Check\n", + "When\n", + "I\n", + "was\n", + "led\n", + "to\n", + "you\n", + "I\n", + "knew\n", + "you\n", + "were\n", + "the\n", + "one\n", + "for\n", + "me\n", + "Come\n", + "through\n", + "dig\n", + "the\n", + "sound\n", + "I\n", + "swear\n", + "the\n", + "whole\n", + "world\n", + "could\n", + "feel\n", + "you\n", + "MC\n", + "Crowd\n", + "around\n", + "I\n", + "used\n", + "to\n", + "cop\n", + "a\n", + "lot\n", + "but\n", + "never\n", + "copped\n", + "no\n", + "drop\n", + "Hold\n", + "mics\n", + "like\n", + "pony\n", + "tails\n", + "tied\n", + "in\n", + "bobbalobs\n", + "Stop\n", + "and\n", + "stick\n", + "around\n", + "come\n", + "through\n", + "and\n", + "dig\n", + "the\n", + "sound\n", + "Of\n", + "the\n", + "fly\n", + "brown\n", + "6\n", + "-\n", + "0\n", + "sicko\n", + "psycho\n", + "who\n", + "throws\n", + "his\n", + "dick\n", + "around\n", + "Bound\n", + "to\n", + "go\n", + "three\n", + "-\n", + "plat\n", + "came\n", + "to\n", + "destroy\n", + "rap\n", + "It\n", + "'s\n", + "a\n", + "intricate\n", + "plot\n", + "of\n", + "a\n", + "b\n", + "-\n", + "boy\n", + "strap\n", + "Femstat\n", + "cats\n", + "get\n", + "kidnapped\n", + "Then\n", + "release\n", + "a\n", + "statement\n", + "to\n", + "the\n", + "press\n", + "let\n", + "the\n", + "rest\n", + "know\n", + "who\n", + "did\n", + "that\n", + "Metal\n", + "Fist\n", + "terrorists\n", + "claim\n", + "responsibility\n", + "Broken\n", + "household\n", + "name\n", + "usually\n", + "said\n", + "in\n", + "hostility\n", + "Um\n", + "...\n", + "what\n", + "is\n", + "MF\n", + "?\n", + "You\n", + "silly\n", + "I\n", + "'d\n", + "like\n", + "to\n", + "take\n", + "\"\n", + "Means\n", + "to\n", + "the\n", + "End\n", + "\"\n", + "for\n", + "two\n", + "milli\n", + "'\n", + "\"\n", + "Doo\n", + "-\n", + "doo\n", + "-\n", + "doo\n", + "-\n", + "doo\n", + "-\n", + "doo\n", + "!\n", + "\"\n", + "That\n", + "'s\n", + "a\n", + "audio\n", + "daily\n", + "double\n", + "Rappers\n", + "need\n", + "to\n", + "fall\n", + "off\n", + "just\n", + "to\n", + "save\n", + "me\n", + "the\n", + "trouble\n", + "yo\n", + "Watch\n", + "your\n", + "own\n", + "back\n", + "came\n", + "in\n", + "and\n", + "go\n", + "out\n", + "alone\n", + "black\n", + "Stay\n", + "in\n", + "the\n", + "zone\n", + "—\n", + "turn\n", + "H2O\n", + "to\n", + "Cognac\n", + "On\n", + "Doomsday\n", + "!\n", + "ever\n", + "since\n", + "the\n", + "womb\n", + "‘\n", + "til\n", + "I\n", + "'m\n", + "back\n", + "where\n", + "my\n", + "brother\n", + "went\n", + "that\n", + "'s\n", + "what\n", + "my\n", + "tomb\n", + "will\n", + "say\n", + "Right\n", + "above\n", + "my\n", + "government\n", + ";\n", + "Dumile\n", + "Either\n", + "unmarked\n", + "or\n", + "engraved\n", + "hey\n", + "who\n", + "'s\n", + "to\n", + "say\n", + "?\n", + "I\n", + "wrote\n", + "this\n", + "one\n", + "in\n", + "B.C.\n", + "D.C.\n", + "O\n", + "-\n", + "section\n", + "If\n", + "you\n", + "do\n", + "n't\n", + "believe\n", + "me\n", + "go\n", + "get\n", + "bagged\n", + "and\n", + "check\n", + "then\n", + "Cell\n", + "number\n", + "17\n", + "up\n", + "under\n", + "the\n", + "top\n", + "bunk\n", + "I\n", + "say\n", + "this\n", + "not\n", + "to\n", + "be\n", + "mean\n", + "wish\n", + "bad\n", + "luck\n", + "or\n", + "pop\n", + "junk\n", + "Pop\n", + "the\n", + "trunk\n", + "on\n", + "Cee\n", + "Cipher\n", + "Punk\n", + "leave\n", + "him\n", + "left\n", + "scraped\n", + "God\n", + "forbid\n", + "if\n", + "there\n", + "ai\n", + "n't\n", + "no\n", + "escape\n", + "blame\n", + "MF\n", + "tape\n", + "Definition\n", + "\"\n", + "super\n", + "-\n", + "villain\n", + "\"\n", + ":\n", + "a\n", + "killer\n", + "who\n", + "love\n", + "children\n", + "One\n", + "who\n", + "is\n", + "well\n", + "-\n", + "skilled\n", + "in\n", + "destruction\n", + "as\n", + "well\n", + "as\n", + "building\n", + "While\n", + "Sidney\n", + "Sheldon\n", + "teaches\n", + "the\n", + "trife\n", + "to\n", + "be\n", + "trifer\n", + "I\n", + "'m\n", + "trading\n", + "science\n", + "fiction\n", + "with\n", + "my\n", + "man\n", + "the\n", + "live\n", + "lifer\n", + "A\n", + "pied\n", + "piper\n", + "holler\n", + "a\n", + "rhyme\n", + "a\n", + "dollar\n", + "and\n", + "a\n", + "dime\n", + "Do\n", + "his\n", + "thing\n", + "ring\n", + "around\n", + "the\n", + "white\n", + "collar\n", + "crime\n", + "Get\n", + "out\n", + "my\n", + "face\n", + "askin\n", + "'\n", + "‘\n", + "bout\n", + "my\n", + "case\n", + "need\n", + "toothpaste\n", + "Fresher\n", + "mint\n", + "monkey\n", + "-\n", + "style\n", + "nigga\n", + "get\n", + "dentadent\n", + "And\n", + "dope\n", + "fiends\n", + "still\n", + "in\n", + "they\n", + "teens\n", + "shook\n", + "niggas\n", + "turn\n", + "witness\n", + "Real\n", + "mens\n", + "mind\n", + "their\n", + "own\n", + "business\n", + "That\n", + "'s\n", + "the\n", + "difference\n", + "between\n", + "sissy\n", + "-\n", + "pissy\n", + "rappers\n", + "that\n", + "'s\n", + "double\n", + "-\n", + "dutch\n", + "How\n", + "come\n", + "I\n", + "hold\n", + "the\n", + "microphone\n", + "double\n", + "-\n", + "clutch\n", + "C.O.\n", + "'s\n", + "make\n", + "rounds\n", + "never\n", + "have\n", + "‘\n", + "ox\n", + "found\n", + "On\n", + "shakedown\n", + "lock\n", + "-\n", + "down\n", + "wet\n", + "dreams\n", + "of\n", + "Fox\n", + "'\n", + "Brown\n", + "On\n", + "Doomsday\n", + "!\n", + "Ever\n", + "since\n", + "the\n", + "womb\n", + "‘\n", + "til\n", + "I\n", + "'m\n", + "back\n", + "where\n", + "my\n", + "brother\n", + "went\n", + "That\n", + "'s\n", + "what\n", + "my\n", + "tomb\n", + "will\n", + "say\n", + "Right\n", + "above\n", + "my\n", + "government\n", + ";\n", + "Dumile\n", + "Either\n", + "unmarked\n", + "or\n", + "engraved\n", + "hey\n", + "who\n", + "'s\n", + "to\n", + "say\n", + "?\n", + "Doomsday\n", + "Ever\n", + "since\n", + "the\n", + "womb\n", + "‘\n", + "til\n", + "I\n", + "'m\n", + "back\n", + "to\n", + "the\n", + "essence\n", + "Read\n", + "it\n", + "off\n", + "the\n", + "tomb\n", + "Either\n", + "engraved\n", + "or\n", + "unmarked\n", + "grave\n", + "who\n", + "'s\n", + "to\n", + "say\n", + "?\n", + "Pass\n", + "the\n", + "mic\n", + "like\n", + "\"\n", + "Pass\n", + "the\n", + "peas\n", + "like\n", + "they\n", + "used\n", + "to\n", + "say\n", + "\"\n", + "Some\n", + "M\n", + "-\n", + "er\n", + "F\n", + "-\n", + "ers\n", + "do\n", + "n't\n", + "like\n", + "how\n", + "Sally\n", + "walk\n", + "I\n", + "'ll\n", + "tell\n", + "y'\n", + "all\n", + "fools\n", + "it\n", + "'s\n", + "hella\n", + "cool\n", + "how\n", + "ladies\n", + "from\n", + "Cali\n", + "talk\n", + "Never\n", + "let\n", + "her\n", + "interfere\n", + "with\n", + "the\n", + "Yeti\n", + "ghetto\n", + "slang\n", + "Nicknames\n", + "of\n", + "nimble\n", + "and\n", + "tip\n", + "of\n", + "nipple\n", + "metal\n", + "fang\n", + "Known\n", + "amongst\n", + "hoes\n", + "for\n", + "the\n", + "bang\n", + "-\n", + "bang\n", + "Known\n", + "amongst\n", + "foes\n", + "for\n", + "flow\n", + "without\n", + "no\n", + "talking\n", + "orangutans\n", + "Only\n", + "gin\n", + "and\n", + "Tang\n", + "Guzzled\n", + "out\n", + "a\n", + "rusty\n", + "tin\n", + "can\n", + "me\n", + "and\n", + "this\n", + "mic\n", + "is\n", + "like\n", + "yin\n", + "and\n", + "yang\n", + "Clang\n", + "!\n", + "Crime\n", + "do\n", + "n't\n", + "pay\n", + "listen\n", + "youth\n", + "It\n", + "'s\n", + "like\n", + "me\n", + "holding\n", + "up\n", + "the\n", + "line\n", + "at\n", + "the\n", + "kissing\n", + "booth\n", + "I\n", + "took\n", + "her\n", + "back\n", + "to\n", + "the\n", + "truck\n", + "she\n", + "was\n", + "uncouth\n", + "Spittin\n", + "'\n", + "all\n", + "out\n", + "the\n", + "sunroof\n", + "through\n", + "her\n", + "missing\n", + "tooth\n", + "But\n", + "then\n", + "she\n", + "has\n", + "a\n", + "sexy\n", + "voice\n", + "sound\n", + "like\n", + "Jazzy\n", + "Joyce\n", + "So\n", + "I\n", + "turned\n", + "it\n", + "up\n", + "faster\n", + "than\n", + "a\n", + "speeding\n", + "knife\n", + "Strong\n", + "enough\n", + "to\n", + "please\n", + "a\n", + "wife\n", + "Able\n", + "to\n", + "drop\n", + "today\n", + "'s\n", + "math\n", + "in\n", + "the\n", + "48\n", + "keys\n", + "of\n", + "life\n", + "Cut\n", + "the\n", + "crap\n", + "far\n", + "as\n", + "rap\n", + "Touch\n", + "the\n", + "mic\n", + "get\n", + "the\n", + "same\n", + "thing\n", + "a\n", + "Arab\n", + "will\n", + "do\n", + "to\n", + "you\n", + "for\n", + "stealing\n", + "What\n", + "the\n", + "Devil\n", + "?\n", + "He\n", + "'s\n", + "on\n", + "another\n", + "level\n", + "It\n", + "'s\n", + "a\n", + "word\n", + "!\n", + "No\n", + "a\n", + "name\n", + "!\n", + "MF\n", + "-\n", + "the\n", + "Super\n", + "-\n", + "Villain\n", + "!\n", + "When\n", + "I\n", + "was\n", + "led\n", + "to\n", + "you\n", + "I\n", + "knew\n", + "you\n", + "were\n", + "the\n", + "one\n", + "for\n", + "me\n", + "I\n", + "swear\n", + "the\n", + "whole\n", + "world\n", + "could\n", + "feel\n", + "you\n", + "MC\n", + "Now\n", + "I\n", + "have\n", + "n't\n", + "eaten\n", + "all\n", + "day\n", + ".\n", + "How\n", + "am\n", + "I\n", + "gon\n", + "na\n", + "do\n", + "this\n", + "man\n", + "?\n", + "Yeah\n", + "do\n", + "n't\n", + "wait\n", + "for\n", + "her\n", + "man\n", + "do\n", + "n't\n", + "wait\n", + "for\n", + "her\n", + "I\n", + "'ll\n", + "tell\n", + "you\n", + "what\n", + "man\n", + ":\n", + "come\n", + "with\n", + "me\n", + "now\n", + "and\n", + "you\n", + "know\n", + "I\n", + "'ll\n", + "get\n", + "you\n", + "some\n", + "lunch\n", + "I\n", + "'ll\n", + "hook\n", + "you\n", + "up\n", + "with\n", + "something\n", + "I\n", + "got\n", + "a\n", + "little\n", + "bank\n", + "y'know\n", + "no\n", + "problem\n", + "I\n", + "hear\n", + "you\n", + "that\n", + "'s\n", + "cool\n", + "(\n", + "alright\n", + "?\n", + "It\n", + "'s\n", + "cool\n", + ")\n", + "Man\n", + "ca\n", + "n't\n", + "you\n", + "guys\n", + "just\n", + "wait\n", + "here\n", + "about\n", + "a\n", + "half\n", + "hour\n", + "man\n", + "?\n", + "Yo\n", + "I\n", + "'ll\n", + "be\n", + "back\n", + "man\n", + "I\n", + "'m\n", + "just\n", + "gon\n", + "na\n", + "munch\n", + "up\n", + "a\n", + "little\n", + "bit\n", + "man\n", + "I\n", + "'m\n", + "pretty\n", + "hungry\n", + "Yo\n", + "let\n", + "him\n", + "come\n", + "back\n", + "Here\n", + "you\n", + "will\n", + "find\n", + "food\n", + "for\n", + "your\n", + "body\n", + "As\n", + "well\n", + "as\n", + "comfort\n", + "for\n", + "your\n", + "troubled\n", + "mind\n", + "I\n", + "'d\n", + "really\n", + "like\n", + "some\n", + "soup\n", + "(\n", + "bread\n", + "and\n", + "butter\n", + ")\n", + "Of\n", + "course\n", + "my\n", + "friend\n", + ".\n", + "What\n", + "happened\n", + "to\n", + "your\n", + "hand\n", + "?\n", + "Oh\n", + "food\n", + "at\n", + "last\n", + "!\n", + "How\n", + "did\n", + "they\n", + "get\n", + "here\n", + "?\n", + "Regular\n", + "storage\n", + "procedure\n", + "the\n", + "same\n", + "as\n", + "the\n", + "other\n", + "food\n", + "What\n", + "other\n", + "food\n", + "?\n", + "Fish\n", + "(\n", + "food\n", + ")\n", + "protein\n", + "(\n", + "fast\n", + "for\n", + "ya\n", + ")\n", + "Now\n", + "what\n", + "happened\n", + "?\n", + "Well\n", + "the\n", + "cop\n", + "got\n", + "The\n", + "next\n", + "morning\n", + "I\n", + "went\n", + "to\n", + "the\n", + "store\n", + "to\n", + "get\n", + "some\n", + "food\n", + "(\n", + "Bread\n", + "and\n", + "butter\n", + ")\n", + "They\n", + "arrested\n", + "me\n", + "I\n", + "'ll\n", + "save\n", + "you\n", + "(\n", + "thank\n", + "you\n", + ")\n", + "Would\n", + "you\n", + "like\n", + "a\n", + "snack\n", + "?\n", + "Thanks\n", + "for\n", + "the\n", + "drink\n", + "Operation\n", + "Doomsday\n", + "complete\n", + "All\n", + "your\n", + "intercoms\n", + "casualty\n", + "and\n", + "damage\n", + "testing\n", + "Enough\n", + "!\n", + "you\n", + "talk\n", + "of\n", + "the\n", + "people\n", + "'s\n", + "rights\n", + "The\n", + "people\n", + "have\n", + "only\n", + "those\n", + "rights\n", + "which\n", + "I\n", + "choose\n", + "to\n", + "give\n", + "them\n", + "And\n", + "that\n", + "'s\n", + "for\n", + "their\n", + "own\n", + "good\n", + "believe\n", + "me\n", + "I\n", + "do\n", + "DOOM\n", + "They\n", + "dissappoint\n", + "me\n", + "they\n", + "must\n", + "work\n", + "faster\n", + "What\n", + "about\n", + "the\n", + "prisoner\n", + "?\n", + "Ah\n", + "yes\n", + "the\n", + "young\n", + "traitor\n", + "who\n", + "has\n", + "tried\n", + "to\n", + "turn\n", + "my\n", + "people\n", + "against\n", + "me\n", + "Watch\n", + "him\n", + ".\n", + "I\n", + "have\n", + "special\n", + "plans\n", + "for\n", + "that\n", + "one\n", + "Beef\n", + "rap\n", + "could\n", + "lead\n", + "to\n", + "getting\n", + "teeth\n", + "capped\n", + "Or\n", + "even\n", + "a\n", + "wreath\n", + "for\n", + "mom\n", + "dukes\n", + "on\n", + "some\n", + "grief\n", + "crap\n", + "I\n", + "suggest\n", + "you\n", + "change\n", + "your\n", + "diet\n", + "It\n", + "can\n", + "lead\n", + "to\n", + "high\n", + "blood\n", + "pressure\n", + "if\n", + "you\n", + "fry\n", + "it\n", + "Or\n", + "even\n", + "a\n", + "stroke\n", + "heart\n", + "attack\n", + "heart\n", + "disease\n", + "It\n", + "ai\n", + "n't\n", + "no\n", + "starting\n", + "back\n", + "once\n", + "arteries\n", + "start\n", + "to\n", + "squeeze\n", + "Take\n", + "the\n", + "easy\n", + "way\n", + "out\n", + "phony\n", + "until\n", + "then\n", + "They\n", + "know\n", + "they\n", + "would\n", + "n't\n", + "be\n", + "talking\n", + "that\n", + "bologna\n", + "in\n", + "the\n", + "bullpen\n", + "So\n", + "disgusting\n", + "pardon\n", + "self\n", + "as\n", + "I\n", + "discuss\n", + "this\n", + "They\n", + "talk\n", + "a\n", + "wealth\n", + "of\n", + "shit\n", + "and\n", + "they\n", + "ai\n", + "n't\n", + "never\n", + "seen\n", + "the\n", + "justice\n", + "Bust\n", + "this\n", + "like\n", + "a\n", + "cold\n", + "milk\n", + "from\n", + "out\n", + "the\n", + "toilet\n", + "Two\n", + "batteries\n", + "some\n", + "Brillo\n", + "and\n", + "some\n", + "foil\n", + "heat'll\n", + "boil\n", + "it\n", + "He\n", + "be\n", + "better\n", + "off\n", + "on\n", + "PC\n", + "glued\n", + "And\n", + "it\n", + "'s\n", + "a\n", + "feud\n", + "so\n", + "do\n", + "n't\n", + "be\n", + "in\n", + "no\n", + "TV\n", + "mood\n", + "Every\n", + "week\n", + "it\n", + "'s\n", + "mystery\n", + "meat\n", + "seaweed\n", + "stewed\n", + "(\n", + "Food\n", + "we\n", + "need\n", + "food\n", + "!\n", + ")\n", + "He\n", + "wears\n", + "a\n", + "mask\n", + "just\n", + "to\n", + "cover\n", + "the\n", + "raw\n", + "flesh\n", + "A\n", + "rather\n", + "ugly\n", + "brother\n", + "with\n", + "flows\n", + "that\n", + "'s\n", + "gorgeous\n", + "Drop\n", + "dead\n", + "joints\n", + "hit\n", + "the\n", + "whips\n", + "like\n", + "bird\n", + "shit\n", + "They\n", + "need\n", + "it\n", + "like\n", + "a\n", + "hole\n", + "in\n", + "they\n", + "head\n", + "or\n", + "a\n", + "third\n", + "tit\n", + "Her\n", + "bra\n", + "smell\n", + "his\n", + "card\n", + "say\n", + ":\n", + "aw\n", + "hell\n", + "Barred\n", + "from\n", + "all\n", + "bars\n", + "and\n", + "kicked\n", + "out\n", + "the\n", + "Carvel\n", + "Keep\n", + "a\n", + "cooker\n", + "where\n", + "the\n", + "jar\n", + "fell\n", + "And\n", + "keep\n", + "a\n", + "cheap\n", + "hooker\n", + "that\n", + "'s\n", + "off\n", + "the\n", + "hook\n", + "like\n", + "Ma\n", + "Bell\n", + "Top\n", + "bleeding\n", + "maybe\n", + "fella\n", + "took\n", + "the\n", + "loaded\n", + "rod\n", + "gears\n", + "Stop\n", + "feeding\n", + "babies\n", + "colored\n", + "sugar\n", + "-\n", + "coated\n", + "lard\n", + "squares\n", + "The\n", + "odd\n", + "pair\n", + "swears\n", + "and\n", + "God\n", + "fears\n", + "Even\n", + "when\n", + "it\n", + "'s\n", + "rotten\n", + "we\n", + "'ve\n", + "gotten\n", + "through\n", + "the\n", + "hard\n", + "years\n", + "I\n", + "wrote\n", + "this\n", + "note\n", + "around\n", + "New\n", + "Year\n", + "'s\n", + "Off\n", + "a\n", + "couple\n", + "a\n", + "shots\n", + "and\n", + "a\n", + "few\n", + "beers\n", + "but\n", + "who\n", + "cares\n", + "?\n", + "Enough\n", + "about\n", + "me\n", + "it\n", + "'s\n", + "about\n", + "the\n", + "beats\n", + "Not\n", + "about\n", + "the\n", + "streets\n", + "and\n", + "who\n", + "food\n", + "he\n", + "'bout\n", + "to\n", + "eat\n", + "A\n", + "rhyming\n", + "cannibal\n", + "who\n", + "'s\n", + "dressed\n", + "to\n", + "kill\n", + "and\n", + "cynical\n", + "Whether\n", + "is\n", + "it\n", + "animal\n", + "vegetable\n", + "or\n", + "mineral\n", + "It\n", + "'s\n", + "a\n", + "miracle\n", + "how\n", + "he\n", + "get\n", + "so\n", + "lyrical\n", + "And\n", + "proceed\n", + "to\n", + "move\n", + "the\n", + "crowd\n", + "like\n", + "a\n", + "old\n", + "Negro\n", + "spiritual\n", + "For\n", + "a\n", + "mil\n", + "'\n", + "do\n", + "a\n", + "commercial\n", + "for\n", + "Mello\n", + "Yello\n", + "Tell\n", + "'em\n", + "devil\n", + "'s\n", + "hell\n", + "no\n", + "sell\n", + "y'\n", + "all\n", + "own\n", + "Jello\n", + "We\n", + "hollow\n", + "krills\n", + "she\n", + "swallow\n", + "pills\n", + "He\n", + "follow\n", + "flea\n", + "collar\n", + "three\n", + "dollar\n", + "bills\n", + "And\n", + "squeal\n", + "for\n", + "halal\n", + "veal\n", + "if\n", + "y'\n", + "all\n", + "appeal\n", + "Dig\n", + "the\n", + "real\n", + "it\n", + "'s\n", + "how\n", + "the\n", + "big\n", + "ballers\n", + "deal\n", + "Twirl\n", + "a\n", + "L\n", + "after\n", + "every\n", + "meal\n", + "(\n", + "food\n", + "!\n", + ")\n", + "What\n", + "up\n", + "?\n", + "To\n", + "all\n", + "rappers\n", + ":\n", + "shut\n", + "up\n", + "with\n", + "your\n", + "shutting\n", + "up\n", + "And\n", + "keep\n", + "your\n", + "shirt\n", + "on\n", + "at\n", + "least\n", + "a\n", + "button\n", + "-\n", + "up\n", + "Yuck\n", + "is\n", + "they\n", + "rhymers\n", + "or\n", + "strippin\n", + "'\n", + "males\n", + "?\n", + "Out\n", + "of\n", + "work\n", + "jerks\n", + "since\n", + "they\n", + "shut\n", + "down\n", + "Chippendales\n", + "They\n", + "chippin\n", + "'\n", + "nails\n", + "DOOM\n", + "tippin\n", + "'\n", + "scales\n", + "Let\n", + "alone\n", + "the\n", + "pre\n", + "-\n", + "orders\n", + "that\n", + "'s\n", + "counted\n", + "off\n", + "shippin\n", + "'\n", + "sales\n", + "This\n", + "one\n", + "goes\n", + "out\n", + "to\n", + "all\n", + "my\n", + "peoples\n", + "skippin\n", + "'\n", + "bail\n", + "Dippin\n", + "'\n", + "jail\n", + "whippin\n", + "'\n", + "tail\n", + "and\n", + "sippin\n", + "'\n", + "ale\n", + "Light\n", + "the\n", + "doobie\n", + "'\n", + "til\n", + "it\n", + "glow\n", + "like\n", + "a\n", + "ruby\n", + "After\n", + "which\n", + "they\n", + "could\n", + "n't\n", + "find\n", + "the\n", + "Villain\n", + "like\n", + "Scooby\n", + "He\n", + "'s\n", + "in\n", + "the\n", + "lab\n", + "on\n", + "some\n", + "old\n", + "Buddha\n", + "Monk\n", + "shit\n", + "Overproof\n", + "drunk\n", + "shit\n", + "but\n", + "who'd'a\n", + "thunk\n", + "it\n", + "?\n", + "Punk\n", + "try\n", + "and\n", + "ask\n", + "why\n", + "ours\n", + "be\n", + "better\n", + "Could\n", + "be\n", + "the\n", + "iron\n", + "mask\n", + "or\n", + "the\n", + "Cosby\n", + "sweater\n", + "Yes\n", + "you\n", + "who\n", + "'s\n", + "screwed\n", + "by\n", + "the\n", + "dude\n", + "on\n", + "the\n", + "CD\n", + "nude\n", + "(\n", + "We\n", + "need\n", + "food\n", + "!\n", + ")\n", + "Yo\n", + "!\n", + "(\n", + "Yo\n", + "!\n", + ")\n", + "MF\n", + "DOOM\n", + "(\n", + "Mr.\n", + "Fantastik\n", + ")\n", + "Mr.\n", + "Fantastik\n", + "(\n", + "Villain\n", + ")\n", + "What\n", + "up\n", + "nigga\n", + "?\n", + "(\n", + "Ai\n", + "n't\n", + "nuttin\n", + ";\n", + "what\n", + "'s\n", + "the\n", + "word\n", + "?\n", + ")\n", + "What\n", + "'s\n", + "cracking\n", + "boy\n", + "?\n", + "(\n", + "Same\n", + "ol'\n", + "shit\n", + "kid\n", + ")\n", + "Man\n", + "(\n", + "Different\n", + "day\n", + "you\n", + "know\n", + "?\n", + ")\n", + "These\n", + "rap\n", + "snitches\n", + "man\n", + "shit\n", + "is\n", + "bugged\n", + "out\n", + "man\n", + "What\n", + "the\n", + "fuck\n", + "man\n", + "?\n", + "(\n", + "Shit\n", + "you\n", + "telling\n", + "me\n", + ")\n", + "Niggas\n", + "running\n", + "their\n", + "mouth\n", + "telling\n", + "e'rything\n", + "e'rything\n", + "(\n", + "critical\n", + ")\n", + "Rap\n", + "snitches\n", + "telling\n", + "all\n", + "their\n", + "business\n", + "Sit\n", + "in\n", + "the\n", + "court\n", + "and\n", + "be\n", + "their\n", + "own\n", + "star\n", + "witness\n", + "Do\n", + "you\n", + "see\n", + "the\n", + "perpetrator\n", + "?\n", + "Yeah\n", + "I\n", + "'m\n", + "right\n", + "here\n", + "Fuck\n", + "around\n", + "get\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "the\n", + "whole\n", + "label\n", + "sent\n", + "up\n", + "for\n", + "years\n", + "Rap\n", + "snitches\n", + "telling\n", + "all\n", + "their\n", + "business\n", + "Sit\n", + "in\n", + "the\n", + "court\n", + "and\n", + "be\n", + "their\n", + "own\n", + "star\n", + "witness\n", + "Do\n", + "you\n", + "see\n", + "the\n", + "perpetrator\n", + "?\n", + "Yeah\n", + "I\n", + "'m\n", + "right\n", + "here\n", + "Fuck\n", + "around\n", + "get\n", + "the\n", + "whole\n", + "label\n", + "sent\n", + "up\n", + "for\n", + "years\n", + "Type\n", + "profile\n", + "low\n", + "like\n", + "A\n", + "in\n", + "\"\n", + "Paid\n", + "in\n", + "Full\n", + "\"\n", + "Attract\n", + "heavy\n", + "cash\n", + "cause\n", + "the\n", + "game\n", + "'s\n", + "centrifugal\n", + "Mr.\n", + "Fantastik\n", + "long\n", + "dough\n", + "like\n", + "elastic\n", + "Guard\n", + "my\n", + "life\n", + "with\n", + "twin\n", + "Glocks\n", + "that\n", + "'s\n", + "made\n", + "out\n", + "of\n", + "plastic\n", + "Ca\n", + "n't\n", + "stand\n", + "a\n", + "brown\n", + "nosing\n", + "nigga\n", + "fake\n", + "ass\n", + "bastard\n", + "Admiring\n", + "my\n", + "style\n", + "tour\n", + "bus\n", + "through\n", + "Manhattan\n", + "Plotting\n", + "plan\n", + "the\n", + "quickest\n", + "my\n", + "flow\n", + "'s\n", + "the\n", + "sickest\n", + "My\n", + "hoes\n", + "be\n", + "the\n", + "thickest\n", + "my\n", + "dro\n", + "the\n", + "stickiest\n", + "Street\n", + "nigga\n", + "stamped\n", + "and\n", + "bonafide\n", + "When\n", + "beef\n", + "jump\n", + "niggas\n", + "come\n", + "get\n", + "me\n", + "cause\n", + "they\n", + "know\n", + "I\n", + "ride\n", + "True\n", + "to\n", + "the\n", + "ski\n", + "mask\n", + "New\n", + "York\n", + "'s\n", + "my\n", + "origin\n", + "Play\n", + "a\n", + "fake\n", + "gangsta\n", + "like\n", + "a\n", + "old\n", + "accordion\n", + "According\n", + "to\n", + "him\n", + "when\n", + "the\n", + "D\n", + "'s\n", + "rushed\n", + "in\n", + "Complication\n", + "from\n", + "the\n", + "wire\n", + "testimony\n", + "was\n", + "thin\n", + "Caused\n", + "his\n", + "man\n", + "to\n", + "go\n", + "up\n", + "north\n", + "the\n", + "ball\n", + "hit\n", + "'em\n", + "again\n", + "Lame\n", + "rap\n", + "snitch\n", + "nigga\n", + "even\n", + "told\n", + "on\n", + "the\n", + "Mexican\n", + "Rap\n", + "snitches\n", + "telling\n", + "all\n", + "their\n", + "business\n", + "Sit\n", + "in\n", + "the\n", + "court\n", + "and\n", + "be\n", + "their\n", + "own\n", + "star\n", + "witness\n", + "Do\n", + "you\n", + "see\n", + "the\n", + "perpetrator\n", + "?\n", + "Yeah\n", + "I\n", + "'m\n", + "right\n", + "here\n", + "Fuck\n", + "around\n", + "get\n", + "the\n", + "whole\n", + "label\n", + "sent\n", + "up\n", + "for\n", + "years\n", + "Rap\n", + "snitches\n", + "telling\n", + "all\n", + "their\n", + "business\n", + "Sit\n", + "in\n", + "the\n", + "court\n", + "and\n", + "be\n", + "their\n", + "own\n", + "star\n", + "witness\n", + "Do\n", + "you\n", + "see\n", + "the\n", + "perpetrator\n", + "?\n", + "Yeah\n", + "I\n", + "'m\n", + "right\n", + "here\n", + "Fuck\n", + "around\n", + "get\n", + "the\n", + "whole\n", + "label\n", + "sent\n", + "up\n", + "for\n", + "years\n", + "True\n", + "there\n", + "'s\n", + "rules\n", + "to\n", + "this\n", + "shit\n", + "fools\n", + "dare\n", + "care\n", + "Everybody\n", + "wanna\n", + "rule\n", + "the\n", + "world\n", + "with\n", + "tears\n", + "for\n", + "fear\n", + "Yeah\n", + "yeah\n", + "tell\n", + "'em\n", + "tell\n", + "it\n", + "on\n", + "the\n", + "mountain\n", + "hill\n", + "Running\n", + "up\n", + "they\n", + "mouth\n", + "bill\n", + "everybody\n", + "doubting\n", + "still\n", + "Informer\n", + "keep\n", + "it\n", + "up\n", + "and\n", + "get\n", + "tested\n", + "Pop\n", + "through\n", + "your\n", + "bubble\n", + "vest\n", + "or\n", + "double\n", + "-\n", + "breasted\n", + "He\n", + "keep\n", + "a\n", + "lab\n", + "down\n", + "south\n", + "in\n", + "the\n", + "little\n", + "beast\n", + "So\n", + "much\n", + "heat\n", + "you\n", + "woulda\n", + "thought\n", + "it\n", + "was\n", + "the\n", + "Middle\n", + "East\n", + "A\n", + "little\n", + "grease\n", + "always\n", + "keeps\n", + "the\n", + "wheels\n", + "a\n", + "-\n", + "spinning\n", + "Like\n", + "sitting\n", + "on\n", + "twenty\n", + "threes\n", + "to\n", + "get\n", + "the\n", + "squealers\n", + "grinning\n", + "Hitting\n", + "on\n", + "many\n", + "trees\n", + "feel\n", + "real\n", + "linen\n", + "Spitting\n", + "on\n", + "enemies\n", + "get\n", + "the\n", + "steel\n", + "for\n", + "tin\n", + "men\n", + "Where\n", + "no\n", + "brains\n", + "but\n", + "gum\n", + "flap\n", + "He\n", + "said\n", + "his\n", + "gun\n", + "clap\n", + "then\n", + "he\n", + "fled\n", + "after\n", + "one\n", + "slap\n", + "(\n", + "pap\n", + "!\n", + ")\n", + "Son\n", + "shut\n", + "your\n", + "trap\n", + "save\n", + "it\n", + "for\n", + "the\n", + "bitches\n", + "Mmm\n", + "delicious\n", + "rapp\n", + "snitch\n", + "knishes\n", + "You\n", + "know\n", + "what\n", + "I\n", + "'m\n", + "saying\n", + "?\n", + "(\n", + "It\n", + "'s\n", + "terrible\n", + ")\n", + "Crazy\n", + "man\n", + "I\n", + "'m\n", + "just\n", + "analyzing\n", + "this\n", + "whole\n", + "game\n", + "This\n", + "is\n", + "bugged\n", + "out\n", + "man\n", + "niggas\n", + "is\n", + "snitching\n", + "Telling\n", + "on\n", + "they\n", + "own\n", + "self\n", + "(\n", + "it\n", + "'s\n", + "a\n", + "horror\n", + "yo\n", + ")\n", + "Fuck\n", + "around\n", + "and\n", + "get\n", + "everybody\n", + "bagged\n", + "man\n", + "(\n", + "Atrocities\n", + ")\n", + "Fuck\n", + "around\n", + "and\n", + "get\n", + "yo\n", + "mama\n", + "bagged\n", + "nigga\n", + "You\n", + "know\n", + "your\n", + "grandmama\n", + "used\n", + "to\n", + "be\n", + "bootlegging\n", + "Fake\n", + "hustling\n", + "nigga\n", + "heheheheh\n", + "haha\n", + "Perpetrator\n", + "?\n", + "Yeah\n", + "I\n", + "'m\n", + "right\n", + "here\n", + "...\n", + "Keep\n", + "your\n", + "hoes\n", + "in\n", + "check\n", + "...\n", + "(\n", + "Super\n", + "!\n", + ")\n", + "I\n", + "got\n", + "this\n", + "girl\n", + "and\n", + "she\n", + "wants\n", + "me\n", + "to\n", + "duke\n", + "her\n", + "I\n", + "told\n", + "her\n", + "I\n", + "'d\n", + "come\n", + "scoop\n", + "her\n", + "around\n", + "8\n", + "she\n", + "said\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "That\n", + "sounds\n", + "great\n", + "shorty\n", + "girl\n", + "'s\n", + "a\n", + "trooper\n", + "No\n", + "matter\n", + "what\n", + "I\n", + "need\n", + "her\n", + "to\n", + "do\n", + "she\n", + "be\n", + "like\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "Own\n", + "his\n", + "own\n", + "throne\n", + "the\n", + "boss\n", + "like\n", + "King\n", + "Koopa\n", + "On\n", + "the\n", + "microphone\n", + "he\n", + "flossed\n", + "the\n", + "ring\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "Average\n", + "emcees\n", + "is\n", + "like\n", + "a\n", + "TV\n", + "blooper\n", + "MF\n", + "DOOM\n", + "he\n", + "'s\n", + "like\n", + "D.B.\n", + "Cooper\n", + "Out\n", + "with\n", + "the\n", + "moolah\n", + "I\n", + "let\n", + "her\n", + "get\n", + "a\n", + "outfit\n", + "Just\n", + "to\n", + "cool\n", + "her\n", + "off\n", + "she\n", + "said\n", + "niggas\n", + "ai\n", + "n't\n", + "about\n", + "shit\n", + "I\n", + "wonder\n", + "if\n", + "she\n", + "meant\n", + "it\n", + "I\n", + "doubt\n", + "it\n", + "The\n", + "way\n", + "it\n", + "be\n", + "in\n", + "her\n", + "mouth\n", + "she\n", + "ca\n", + "n't\n", + "live\n", + "without\n", + "it\n", + "And\n", + "ca\n", + "n't\n", + "live\n", + "with\n", + "this\n", + "handle\n", + "your\n", + "business\n", + "Villain'll\n", + "stay\n", + "on\n", + "a\n", + "scandalous\n", + "ho\n", + "'s\n", + "shit\n", + "list\n", + "One\n", + "pack\n", + "of\n", + "cookies\n", + "please\n", + "Mr.\n", + "Hooper\n", + "It\n", + "'s\n", + "fun\n", + "smacking\n", + "rookies\n", + "he\n", + "is\n", + "the\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "Look\n", + "like\n", + "a\n", + "black\n", + "wookie\n", + "when\n", + "he\n", + "let\n", + "his\n", + "beard\n", + "grow\n", + "Weirdo\n", + "brown\n", + "-\n", + "skinned'd\n", + "always\n", + "kept\n", + "his\n", + "hair\n", + "low\n", + "Rumor\n", + "has\n", + "it\n", + "it\n", + "'s\n", + "a\n", + "S\n", + "-\n", + "Curl\n", + "accident\n", + "DOOM\n", + "was\n", + "always\n", + "known\n", + "to\n", + "keep\n", + "the\n", + "best\n", + "girls\n", + "'\n", + "backs\n", + "bent\n", + "Some\n", + "say\n", + "it\n", + "'s\n", + "the\n", + "eyes\n", + "some\n", + "say\n", + "the\n", + "accent\n", + "A\n", + "lot\n", + "of\n", + "guys\n", + "wonder\n", + "where\n", + "they\n", + "stacks\n", + "went\n", + "I\n", + "call\n", + "her\n", + "thunder\n", + "thighs\n", + "with\n", + "the\n", + "fatty\n", + "swolla\n", + "Only\n", + "mess\n", + "with\n", + "high\n", + "rollers\n", + "do\n", + "what\n", + "daddy\n", + "told\n", + "her\n", + "No\n", + "matter\n", + "the\n", + "city\n", + "she\n", + "with\n", + "me\n", + "to\n", + "do\n", + "the\n", + "thang\n", + "-\n", + "thang\n", + "Work\n", + "in\n", + "the\n", + "coochie\n", + "hooptie\n", + "chitty\n", + "chitty\n", + "bang\n", + "bang\n", + "Same\n", + "name\n", + "on\n", + "the\n", + "titty\n", + "as\n", + "on\n", + "the\n", + "name\n", + "ring\n", + "Pretty\n", + "like\n", + "Baby\n", + "D\n", + "off\n", + "\"\n", + "All\n", + "in\n", + "the\n", + "Same\n", + "Gang\n", + "\"\n", + "Keep\n", + "my\n", + "eye\n", + "on\n", + "her\n", + "really\n", + "do\n", + "n't\n", + "trust\n", + "her\n", + "But\n", + "I\n", + "treat\n", + "her\n", + "like\n", + "a\n", + "daughter\n", + "taught\n", + "her\n", + "how\n", + "to\n", + "bust\n", + "a\n", + "nut\n", + "And\n", + "the\n", + "heat\n", + "to\n", + "turn\n", + "beef\n", + "to\n", + "horsemeat\n", + "chalupa\n", + "Teach\n", + "her\n", + "how\n", + "to\n", + "hold\n", + "it\n", + "of\n", + "course\n", + "he\n", + "is\n", + "the\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "See\n", + "most\n", + "cats\n", + "treat\n", + "her\n", + "like\n", + "Foofur\n", + "Or\n", + "beat\n", + "her\n", + "to\n", + "a\n", + "stupor\n", + "take\n", + "it\n", + "from\n", + "the\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "You\n", + "need\n", + "to\n", + "make\n", + "her\n", + "feel\n", + "cuter\n", + "And\n", + "lay\n", + "down\n", + "the\n", + "G\n", + "like\n", + "Luther\n", + "everything'll\n", + "be\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "Do\n", + "for\n", + "her\n", + "keep\n", + "her\n", + "in\n", + "a\n", + "new\n", + "fur\n", + "So\n", + "she\n", + "look\n", + "sweet\n", + "when\n", + "she\n", + "go\n", + "to\n", + "meet\n", + "the\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "Got\n", + "the\n", + "buddha\n", + "get\n", + "the\n", + "Grenadiers\n", + "twist\n", + "it\n", + "Put\n", + "it\n", + "in\n", + "the\n", + "air\n", + "come\n", + "here\n", + "kiss\n", + "it\n", + "Listen\n", + "here\n", + "scooter\n", + "let\n", + "her\n", + "try\n", + "to\n", + "bag\n", + "you\n", + "When\n", + "she\n", + "'s\n", + "on\n", + "the\n", + "rag\n", + "never\n", + "let\n", + "her\n", + "fry\n", + "the\n", + "Ragu\n", + "Which'll\n", + "have\n", + "you\n", + "under\n", + "some\n", + "type\n", + "of\n", + "spell\n", + "crying\n", + "\"\n", + "dag\n", + "boo\n", + "\"\n", + "Her\n", + "name\n", + "on\n", + "your\n", + "back\n", + "in\n", + "a\n", + "tattoo\n", + "Whether\n", + "a\n", + "bougie\n", + "broad\n", + "nerd\n", + "ho\n", + "street\n", + "chick\n", + "Do\n", + "n't\n", + "call\n", + "her\n", + "Wifey\n", + "if\n", + "you\n", + "met\n", + "her\n", + "at\n", + "the\n", + "Freaknik\n", + "You\n", + "do\n", + "n't\n", + "want\n", + "her\n", + "do\n", + "n't\n", + "waste\n", + "her\n", + "time\n", + "I\n", + "'ll\n", + "dupe\n", + "her\n", + "And\n", + "be\n", + "a\n", + "father\n", + "to\n", + "your\n", + "child\n", + "like\n", + "the\n", + "(\n", + "\"\n", + "Super\n", + "!\n", + "\"\n", + ")\n", + "He\n", + "keep\n", + "his\n", + "hoes\n", + "in\n", + "check\n", + "Sends\n", + "'em\n", + "out\n", + "to\n", + "get\n", + "glows\n", + "from\n", + "off\n", + "frozen\n", + "necks\n", + "Tell\n", + "'em\n", + "take\n", + "his\n", + "clothes\n", + "leave\n", + "him\n", + "posing\n", + "naked\n", + "for\n", + "real\n", + "Better\n", + "yet\n", + "get\n", + "him\n", + "for\n", + "the\n", + "check\n", + "off\n", + "the\n", + "record\n", + "deal\n", + "Find\n", + "out\n", + "where\n", + "he\n", + "keep\n", + "the\n", + "money\n", + "Others\n", + "make\n", + "us\n", + "laugh\n", + "like\n", + "the\n", + "Sunday\n", + "funnies\n", + "Fam\n", + "be\n", + "around\n", + "whether\n", + "you\n", + "paid\n", + "or\n", + "bummy\n", + "You\n", + "could\n", + "either\n", + "ignore\n", + "this\n", + "advice\n", + "or\n", + "take\n", + "it\n", + "from\n", + "me\n", + "Be\n", + "too\n", + "nice\n", + "and\n", + "people\n", + "take\n", + "you\n", + "for\n", + "a\n", + "dummy\n", + "So\n", + "nowadays\n", + "he\n", + "ai\n", + "n't\n", + "so\n", + "friendly\n", + "Actually\n", + "they\n", + "would\n", + "n’t\n", + "have\n", + "made\n", + "a\n", + "worthy\n", + "enemy\n", + "Read\n", + "the\n", + "signs\n", + ":\n", + "\"\n", + "No\n", + "feeding\n", + "the\n", + "baboon\n", + "\"\n", + "Seein\n", + "'\n", + "as\n", + "how\n", + "they\n", + "got\n", + "ya\n", + "back\n", + "bleeding\n", + "from\n", + "the\n", + "stab\n", + "wounds\n", + "Y'all\n", + "know\n", + "the\n", + "dance\n", + "they\n", + "smile\n", + "in\n", + "ya\n", + "face\n", + "y'\n", + "all\n", + "know\n", + "the\n", + "glance\n", + "Try\n", + "to\n", + "put\n", + "'em\n", + "on\n", + "they\n", + "blow\n", + "the\n", + "chance\n", + "Never\n", + "let\n", + "your\n", + "so\n", + "-\n", + "called\n", + "mans\n", + "know\n", + "your\n", + "plans\n", + "(\n", + "How\n", + "many\n", + "of\n", + "us\n", + "have\n", + "them\n", + "?\n", + ")\n", + "A\n", + "show\n", + "of\n", + "hands\n", + "(\n", + "Friends\n", + ")\n", + "is\n", + "a\n", + "term\n", + "some\n", + "people\n", + "use\n", + "loosely\n", + "I\n", + "'m\n", + "real\n", + "choosy\n", + "on\n", + "what\n", + "I\n", + "choose\n", + "to\n", + "let\n", + "crews\n", + "see\n", + "You\n", + "telling\n", + "me\n", + ";\n", + "I\n", + "try\n", + "to\n", + "act\n", + "broke\n", + "Jealousy\n", + "the\n", + "number\n", + "one\n", + "killer\n", + "among\n", + "black\n", + "folk\n", + "Fellas\n", + "be\n", + "under\n", + "some\n", + "type\n", + "of\n", + "spell\n", + "like\n", + "crack\n", + "smoke\n", + "Ghetto\n", + "Cinderellas\n", + "lead\n", + "'em\n", + "right\n", + "to\n", + "your\n", + "stack\n", + "loc\n", + "Just\n", + "another\n", + "way\n", + "a\n", + "chick'll\n", + "lead\n", + "to\n", + "your\n", + "end\n", + "I\n", + "check\n", + "the\n", + "dictionary\n", + "for\n", + "the\n", + "meaning\n", + "of\n", + "friend\n", + "It\n", + "said\n", + ":\n", + "person\n", + "one\n", + "who\n", + "likes\n", + "to\n", + "socialize\n", + "with\n", + "Sympathiser\n", + "helper\n", + "and\n", + "that\n", + "'s\n", + "about\n", + "the\n", + "size\n", + "of\n", + "it\n", + "Most\n", + "of\n", + "the\n", + "time\n", + "these\n", + "attributes\n", + "is\n", + "one\n", + "-\n", + "sided\n", + "To\n", + "bolster\n", + "the\n", + "crime\n", + "they\n", + "'re\n", + "apt\n", + "to\n", + "shoot\n", + "you\n", + "through\n", + "your\n", + "eyelid\n", + "And\n", + "they\n", + "ca\n", + "n't\n", + "hide\n", + "it\n", + "going\n", + "wild\n", + "like\n", + "a\n", + "white\n", + "bitch\n", + "Sometimes\n", + "ya\n", + "need\n", + "to\n", + "cut\n", + "niggas\n", + "off\n", + "like\n", + "a\n", + "light\n", + "switch\n", + "(\n", + "Click\n", + "!\n", + ")\n", + "And\n", + "when\n", + "things\n", + "get\n", + "quiet\n", + "Catch\n", + "'em\n", + "like\n", + "a\n", + "thief\n", + "in\n", + "the\n", + "night\n", + "what\n", + "a\n", + "riot\n", + "I\n", + "first\n", + "met\n", + "Mr.\n", + "Fantastik\n", + "at\n", + "a\n", + "arms\n", + "deal\n", + "Do\n", + "n't\n", + "let\n", + "it\n", + "get\n", + "drastic\n", + "think\n", + "of\n", + "how\n", + "your\n", + "moms'll\n", + "feel\n", + "When\n", + "it\n", + "get\n", + "for\n", + "real\n", + "steel\n", + "get\n", + "to\n", + "sparkin\n", + "'\n", + "Everything\n", + "darken\n", + "and\n", + "ai\n", + "n't\n", + "no\n", + "talkin\n", + "'\n", + "For\n", + "somethin\n", + "so\n", + "cheap\n", + "it\n", + "sure\n", + "buys\n", + "a\n", + "lot\n", + "of\n", + "trouble\n", + "Ya\n", + "better\n", + "off\n", + "focusing\n", + "than\n", + "tryin\n", + "to\n", + "plot\n", + "to\n", + "bubble\n", + "Or\n", + "else\n", + "it\n", + "'d\n", + "be\n", + "a\n", + "sad\n", + "note\n", + "to\n", + "end\n", + "on\n", + "the\n", + "guns\n", + "we\n", + "got\n", + "is\n", + "(\n", + "One\n", + "'s\n", + "we\n", + "can\n", + "depend\n", + "on\n", + "friends\n", + ")\n", + "Some\n", + "come\n", + "in\n", + "the\n", + "form\n", + "of\n", + "codependence\n", + "A\n", + "lot\n", + "of\n", + "times\n", + "only\n", + "end\n", + "up\n", + "being\n", + "codefendants\n", + "Ten\n", + "bucks\n", + "say\n", + "they\n", + "tell\n", + "for\n", + "a\n", + "lower\n", + "sentence\n", + "And\n", + "leave\n", + "you\n", + "up\n", + "under\n", + "the\n", + "jail\n", + "begging\n", + "for\n", + "a\n", + "penance\n", + "It\n", + "do\n", + "n't\n", + "make\n", + "no\n", + "sense\n", + "what\n", + "happened\n", + "to\n", + "the\n", + "loyalty\n", + "?\n", + "Honor\n", + "amongst\n", + "crooks\n", + "trust\n", + "amongst\n", + "royalty\n", + "I\n", + "'d\n", + "rather\n", + "go\n", + "out\n", + "in\n", + "a\n", + "blaze\n", + "than\n", + "give\n", + "'em\n", + "the\n", + "glory\n", + "(\n", + "How\n", + "many\n", + "of\n", + "us\n", + "have\n", + ")\n", + "a\n", + "similar\n", + "story\n", + "(\n", + "Friends\n", + ")\n", + "before\n", + "lovers\n", + "we\n", + "used\n", + "to\n", + "have\n", + "some\n", + "type\n", + "of\n", + "over\n", + "-\n", + "standing\n", + "Just\n", + "so\n", + "when\n", + "I\n", + "let\n", + "her\n", + "get\n", + "the\n", + "man\n", + "thing\n", + "she\n", + "know\n", + "it\n", + "'s\n", + "no\n", + "strings\n", + "We\n", + "could\n", + "do\n", + "the\n", + "damn\n", + "thing\n", + "but\n", + "ho\n", + "it\n", + "'s\n", + "no\n", + "rings\n", + "Just\n", + "how\n", + "the\n", + "tramp\n", + "swings\n", + "Will\n", + "she\n", + "see\n", + "'em\n", + "again\n", + "\"\n", + "Everybody\n", + "on\n", + "the\n", + "floor\n", + "!\n", + "\"\n", + "A\n", + "whole\n", + "string\n", + "of\n", + "jobs\n", + "like\n", + "we\n", + "on\n", + "tour\n", + "Every\n", + "night\n", + "on\n", + "the\n", + "score\n", + "coming\n", + "to\n", + "your\n", + "corner\n", + "store\n", + "There\n", + "it\n", + "is\n", + "done\n", + "Now\n", + "that\n", + "the\n", + "representative\n", + "from\n", + "South\n", + "Africa\n", + "has\n", + "been\n", + "mind\n", + "programmed\n", + "All\n", + "of\n", + "the\n", + "world\n", + "leaders\n", + "on\n", + "earth\n", + "are\n", + "under\n", + "my\n", + "control\n", + "And\n", + "when\n", + "they\n", + "meet\n", + "tomorrow\n", + "in\n", + "special\n", + "session\n", + "I\n", + "Doom\n", + "shall\n", + "be\n", + "voted\n", + ":\n", + "Master\n", + "of\n", + "the\n", + "World\n", + "My\n", + "plan\n", + "is\n", + "foolproof\n", + "but\n", + "just\n", + "in\n", + "case\n", + "And\n", + "what\n", + "about\n", + "snow\n", + "?\n", + "Now\n", + "you\n", + "keep\n", + "your\n", + "eyes\n", + "open\n", + "When\n", + "I\n", + "tell\n", + "ya\n", + "start\n", + "snappin\n", + "'\n", + "(\n", + "Oh\n", + "yeah\n", + "sure\n", + ")\n", + "Uh\n", + "ladies\n", + "and\n", + "gentlemen\n", + "I\n", + "am\n", + "risking\n", + "my\n", + "life\n", + "to\n", + "tell\n", + "you\n", + "with\n", + "great\n", + "concern\n", + "that\n", + "I\n", + "must\n", + "warn\n", + "you\n", + "I\n", + "I\n", + "you\n", + "must\n", + "listen\n", + "Many\n", + "among\n", + "you\n", + "have\n", + "have\n", + "have\n", + "their\n", + "minds\n", + "taken\n", + "over\n", + "(\n", + "What\n", + "a\n", + "story\n", + "start\n", + "snappin\n", + "’\n", + ")\n", + "DOOM\n", + "gosh\n", + "I\n", + "wish\n", + "I\n", + "’d\n", + "brought\n", + "my\n", + "autograph\n", + "book\n", + "(\n", + "Your\n", + "attempts\n", + "at\n", + "humor\n", + "bore\n", + "me\n", + ")\n", + "Right\n", + "lead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "head\n", + "You\n", + "’re\n", + "weird\n", + "Why\n", + "is\n", + "everyone\n", + "staring\n", + "at\n", + "us\n", + "?\n", + "(\n", + "Aw\n", + "I\n", + "should\n", + "have\n", + "realized\n", + "we\n", + "must\n", + "look\n", + "like\n", + "freaks\n", + "to\n", + "them\n", + ")\n", + "Relax\n", + "masseur\n", + "just\n", + "do\n", + "your\n", + "thing\n", + "(\n", + "Get\n", + "a\n", + "good\n", + "grip\n", + "on\n", + "my-\n", + ")\n", + "What\n", + "?\n", + "Why\n", + "I\n", + "’ll\n", + "bend\n", + "your\n", + "read\n", + "out\n", + "meter\n", + "for\n", + "ya\n", + "you\n", + "little\n", + "(\n", + "Knock\n", + "it\n", + "off\n", + "Ben\n", + ")\n", + "What\n", + "’s\n", + "the\n", + "matter\n", + "?\n", + "(\n", + "Oh\n", + "Ben\n", + ")\n", + "You\n", + "’re\n", + "nothing\n", + "but\n", + "a\n", + "chicken\n", + "head\n", + "(\n", + "You\n", + "overgrown\n", + "granite\n", + "head\n", + ")\n", + "Hold\n", + "it\n", + "Yo\n", + "yo\n", + "yo\n", + "y'\n", + "all\n", + "ca\n", + "n't\n", + "stand\n", + "right\n", + "here\n", + "In\n", + "his\n", + "right\n", + "hand\n", + "was\n", + "your\n", + "man\n", + "'s\n", + "worst\n", + "nightmare\n", + "Loud\n", + "enough\n", + "to\n", + "burst\n", + "his\n", + "right\n", + "eardrum\n", + "close\n", + "-\n", + "range\n", + "The\n", + "game\n", + "is\n", + "not\n", + "only\n", + "dangerous\n", + "but\n", + "it\n", + "'s\n", + "most\n", + "strange\n", + "I\n", + "sell\n", + "rhymes\n", + "like\n", + "dimes\n", + "The\n", + "one\n", + "who\n", + "mostly\n", + "keep\n", + "cash\n", + "but\n", + "brag\n", + "about\n", + "the\n", + "broker\n", + "times\n", + "Joking\n", + "rhymes\n", + "like\n", + "the\n", + "\"\n", + "Is\n", + "you\n", + "just\n", + "happy\n", + "to\n", + "see\n", + "me\n", + "?\n", + "\"\n", + "trick\n", + "Classical\n", + "slapstick\n", + "rappers\n", + "need\n", + "Chapstick\n", + "A\n", + "lot\n", + "of\n", + "'em\n", + "sound\n", + "like\n", + "they\n", + "in\n", + "a\n", + "talent\n", + "show\n", + "So\n", + "I\n", + "give\n", + "'em\n", + "something\n", + "to\n", + "remember\n", + "like\n", + "the\n", + "Alamo\n", + "Tally\n", + "-\n", + "ho\n", + "!\n", + "A\n", + "high\n", + "Joker\n", + "like\n", + "a\n", + "Spades\n", + "game\n", + "Came\n", + "back\n", + "from\n", + "five\n", + "years\n", + "laying\n", + "and\n", + "stayed\n", + "the\n", + "same\n", + "I\n", + "'m\n", + "saying\n", + "electromagnetic\n", + "field\n", + "it\n", + "blocks\n", + "all\n", + "logic\n", + "Spock\n", + "And\n", + "G\n", + "-\n", + "Shocks\n", + "her\n", + "biological\n", + "clock\n", + "When\n", + "I\n", + "hit\n", + "it\n", + "slit\n", + "it\n", + "to\n", + "the\n", + "shitter\n", + "thought\n", + "I\n", + "killed\n", + "her\n", + "goose\n", + "Her\n", + "Power\n", + "U\n", + "was\n", + "pure\n", + "Brita\n", + "water\n", + "filtered\n", + "juice\n", + "Keep\n", + "a\n", + "pen\n", + "like\n", + "a\n", + "fiend\n", + "keep\n", + "a\n", + "pipe\n", + "with\n", + "him\n", + "Gentleman\n", + "who\n", + "lent\n", + "a\n", + "pen\n", + "to\n", + "a\n", + "friend\n", + "who\n", + "write\n", + "with\n", + "him\n", + "Never\n", + "seen\n", + "the\n", + "shit\n", + "again\n", + "but\n", + "he\n", + "'s\n", + "still\n", + "my\n", + "dunny\n", + "The\n", + "only\n", + "thing\n", + "that\n", + "come\n", + "between\n", + "us\n", + "is\n", + "krill\n", + "and\n", + "money\n", + "I\n", + "sell\n", + "rhymes\n", + "like\n", + "dimes\n", + "The\n", + "one\n", + "who\n", + "mostly\n", + "keep\n", + "cash\n", + "but\n", + "brag\n", + "about\n", + "the\n", + "broker\n", + "times\n", + "Better\n", + "rhymes\n", + "make\n", + "for\n", + "better\n", + "songs\n", + "it\n", + "matters\n", + "not\n", + "If\n", + "you\n", + "got\n", + "a\n", + "lot\n", + "of\n", + "what\n", + "it\n", + "takes\n", + "just\n", + "to\n", + "get\n", + "along\n", + "Surrender\n", + "now\n", + "or\n", + "suffer\n", + "serious\n", + "setbacks\n", + "Got\n", + "get\n", + "-the\n", + "mayor\n", + "Chucked\n", + "it\n", + "in\n", + "the\n", + "ol'\n", + "tar\n", + "pit\n", + "off\n", + "La\n", + "Brea\n", + "player\n", + "They\n", + "say\n", + "he\n", + "'s\n", + "gone\n", + "too\n", + "far\n", + "DOOM'll\n", + "catch\n", + "em\n", + "after\n", + "Jumah\n", + "on\n", + "cue\n", + "lacka\n", + "!\n", + "!\n", + "Do\n", + "whatcha\n", + "got\n", + "ta\n", + "do\n", + "grarrrr\n", + "The\n", + "rumors\n", + "are\n", + "not\n", + "true\n", + "got\n", + "two\n", + "ma\n", + "No\n", + "prob\n", + "got\n", + "the\n", + "job\n", + "hot\n", + "-\n", + "barred\n", + "heart\n", + "throb\n", + "Scotchguard\n", + "the\n", + "bar\n", + "with\n", + "cotton\n", + "swabs\n", + "dart\n", + "lob\n", + "Bake\n", + "a\n", + "cake\n", + "sweet\n", + "Jamaica\n", + "trade\n", + "in\n", + "treats\n", + "on\n", + "the\n", + "beach\n", + "Make\n", + "her\n", + "skeet\n", + "til\n", + "her\n", + "feets\n", + "meet\n", + "Can\n", + "it\n", + "be\n", + "I\n", + "stayed\n", + "away\n", + "too\n", + "long\n", + "?\n", + "Did\n", + "you\n", + "miss\n", + "these\n", + "rhymes\n", + "when\n", + "I\n", + "was\n", + "gone\n", + "?\n", + "As\n", + "you\n", + "listen\n", + "to\n", + "these\n", + "crazy\n", + "tracks\n", + "Check\n", + "them\n", + "stats\n", + "then\n", + "you\n", + "know\n", + "where\n", + "I\n", + "'m\n", + "at\n", + "And\n", + "that\n", + "'s\n", + "that\n", + "Look\n", + "there\n", + "'s\n", + "Doom\n", + "now\n", + "!\n", + "I\n", + "followed\n", + "him\n", + "to\n", + "the\n", + "studio\n", + "but\n", + "I\n", + "was\n", + "too\n", + "late\n", + "to\n", + "stop\n", + "him\n", + "That\n", + "'s\n", + "right\n", + "!\n", + "You\n", + "'ll\n", + "never\n", + "stop\n", + "me\n", + "!\n", + "You\n", + "'re\n", + "dead\n", + "!\n", + "You\n", + "'re\n", + "all\n", + "dead\n", + "!\n", + "Doom\n", + "!\n", + "It\n", + "ai\n", + "n't\n", + "nothing\n", + "like\n", + "a\n", + "fistfull\n", + "a\n", + "cash\n", + "or\n", + "a\n", + "bliss\n", + "fulla\n", + "the\n", + "hash\n", + "That\n", + "twist\n", + "like\n", + "a\n", + "mustache\n", + "from\n", + "end\n", + "to\n", + "end\n", + "spread\n", + "it\n", + "like\n", + "a\n", + "rash\n", + "From\n", + "talking\n", + "through\n", + "your\n", + "walkman\n", + "or\n", + "at\n", + "your\n", + "disco\n", + "bash\n", + "Gimme\n", + "the\n", + "Timbs\n", + "Rumplestiltskin\n", + "brown\n", + "A\n", + "metal\n", + "face\n", + "mask\n", + "with\n", + "a\n", + "built\n", + "in\n", + "frown\n", + "A\n", + "mic\n", + "to\n", + "tilt\n", + "down\n", + "a\n", + "hundred\n", + "thousand\n", + "pounds\n", + "And\n", + "see\n", + "how\n", + "kilt\n", + "sound\n", + "like\n", + "spilt\n", + "milk\n", + "clown\n", + "Cocoa\n", + "butter\n", + "on\n", + "very\n", + "ashy\n", + "day\n", + "fam\n", + "With\n", + "Ray\n", + "-\n", + "Bans\n", + "out\n", + "on\n", + "the\n", + "islands\n", + "of\n", + "Cayman\n", + "Or\n", + "i\n", + "'ll\n", + "break\n", + "it\n", + "down\n", + "for\n", + "the\n", + "layman\n", + "Bain\n", + "de\n", + "Soliel\n", + "for\n", + "that\n", + "St.\n", + "Tropez\n", + "tan\n", + "A\n", + "can\n", + "a\n", + "ole\n", + "gold\n", + "too\n", + "cold\n", + "to\n", + "hold\n", + "slow\n", + "ya\n", + "roll\n", + "Keep\n", + "on\n", + "moving\n", + "like\n", + "Soul\n", + "II\n", + "Soul\n", + "hold\n", + "the\n", + "dough\n", + "Like\n", + "a\n", + "fool\n", + "who\n", + "stole\n", + "pity\n", + "y'\n", + "all\n", + "From\n", + "tryna\n", + "go\n", + "up\n", + "against\n", + "city\n", + "hall\n", + "titty\n", + "bar\n", + "The\n", + "black\n", + "mic\n", + "is\n", + "like\n", + "a\n", + "red\n", + "violin\n", + "Ok\n", + "everybody\n", + "back\n", + "to\n", + "the\n", + "lab\n", + "try\n", + "again\n", + "Bloody\n", + "rap\n", + "game\n", + "like\n", + "leviathan\n", + "Leave\n", + "a\n", + "bad\n", + "taste\n", + "killin\n", + "my\n", + "high\n", + "like\n", + "niacin\n", + "Stop\n", + "kiddin\n", + "middlemen\n", + "need\n", + "Ritalin\n", + "Hit\n", + "me\n", + "with\n", + "the\n", + "full\n", + "tin\n", + "of\n", + "gin\n", + "and\n", + "i\n", + "m\n", + "a\n", + "kid\n", + "again\n", + "Keep\n", + "the\n", + "bong\n", + "lightin\n", + "straight\n", + "through\n", + "the\n", + "song\n", + "writin\n", + "The\n", + "Supervillain\n", + "AKA\n", + "the\n", + "thong\n", + "bitin\n", + "that\n", + "s\n", + "inviting\n", + "all\n", + "To\n", + "the\n", + "recitin\n", + "that\n", + "s\n", + "dope\n", + "and\n", + "raw\n", + "Hoping\n", + "all\n", + "y\n", + "all\n", + "come\n", + "in\n", + "peace\n", + "and\n", + "its\n", + "open\n", + "bar\n", + "Tear\n", + "the\n", + "roof\n", + "off\n", + "this\n", + "bumba\n", + "rasclaat\n", + "By\n", + "the\n", + "end\n", + "of\n", + "the\n", + "night\n", + "spazz\n", + "like\n", + "shazbot\n", + "Spilt\n", + "a\n", + "shot\n", + "made\n", + "the\n", + "pen\n", + "lines\n", + "runny\n", + "A\n", + "ill\n", + "plot\n", + "that\n", + "s\n", + "ten\n", + "times\n", + "Ben\n", + "Stien\n", + "money\n", + "funny\n", + "How\n", + "he\n", + "rips\n", + "the\n", + "scripts\n", + "with\n", + "a\n", + "straight\n", + "face\n", + "With\n", + "more\n", + "rhymes\n", + "than\n", + "is\n", + "lines\n", + "in\n", + "ya\n", + "database\n", + "Placing\n", + "rappers\n", + "in\n", + "endangerment\n", + "who\n", + "'s\n", + "reckless\n", + "With\n", + "this\n", + "food\n", + "for\n", + "thought\n", + "sorta\n", + "like\n", + "breakfast\n", + "You\n", + "could\n", + "mark\n", + "it\n", + "off\n", + "as\n", + "wreck\n", + "on\n", + "the\n", + "checklist\n", + "Wear\n", + "gold\n", + "fronts\n", + "ca\n", + "n't\n", + "afford\n", + "no\n", + "necklace\n", + "Shit\n", + "that\n", + "there\n", + "could\n", + "go\n", + "to\n", + "help\n", + "them\n", + "daycares\n", + "Somebody\n", + "say\n", + "yeahh\n", + "..\n", + "(\n", + "yeahhh\n", + "!\n", + ")\n", + "Pay\n", + "ya\n", + "fares\n", + "...\n", + "give\n" + ] + } + ], + "source": [ + "for sents in MF_temp.doc:\n", + " print(sents)" + ] + }, + { + "cell_type": "code", + "execution_count": 488, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Illegal... cocaine growers Starvation profanity Anxiety brothers trying me Gun slingers dead ringers \"Have integrated a number of corrupt cops judges and lawyers Into high-level positions – to insure the continued success Of the drug smuggling and money laundering operations\"" + ] + }, + "execution_count": 488, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentences" + ] + }, + { + "cell_type": "code", + "execution_count": 523, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Mic Check MF DOOM When I was led to you MF DOOM I knew you were the one for me MF DOOM Come through dig the sound I swear the whole world could feel you MC Crowd around MF DOOM I used to cop a lot but never copped no drop Hold mics like pony tails tied in bobbalobs Stop and stick around come through and dig the sound Of the fly brown 6-0 sicko psycho who throws his dick around Bound to go three-plat came to destroy rap MF DOOM It's a intricate plot of a b-boy strap Femstat cats get kidnapped MF DOOM Then release a statement to the press MF DOOM let the rest know who did that Metal Fist terrorists claim responsibility Broken household name usually said in hostility MF DOOM Um... what is MF? MF DOOM You silly MF DOOM I'd like to take \"Means to the End\" for two milli' \"Doo-doo-doo-doo-doo! MF DOOM \" MF DOOM That's a audio daily double Rappers need to fall off just to save me the trouble yo Watch your own back came in and go out alone black Stay in the zone MF DOOM —turn H2O to Cognac On Doomsday! MF DOOM ever since the womb MF DOOM ‘ MF DOOM til I'm back where my brother went MF DOOM that's what my tomb will say MF DOOM Right above my government; Dumile Either unmarked or engraved hey who's to say? MF DOOM I wrote this one in MF DOOM B.C. D.C. O-section MF DOOM If you don't believe me go get bagged and check then Cell number 17 up under the top bunk I say this not to be mean wish bad luck or pop junk Pop the trunk on Cee Cipher Punk MF DOOM leave him left MF DOOM scraped God forbid if there ain't no escape blame MF tape Definition \"super-villain\": a killer who love children One who is well-skilled in destruction as well as building While Sidney Sheldon teaches the trife to be trifer MF DOOM I'm trading science fiction with my man MF DOOM the live lifer MF DOOM A pied piper holler a rhyme a dollar and a dime MF DOOM Do his thing ring around the white collar crime MF DOOM Get out my face askin' MF DOOM ‘ MF DOOM bout my case need toothpaste MF DOOM Fresher mint monkey-style nigga get dentadent And dope fiends still in they teens shook niggas turn witness MF DOOM Real mens mind their own business MF DOOM That's the difference between sissy-pissy rappers that's double-dutch MF DOOM How come I hold the microphone double-clutch C.O.'s make rounds never have ‘ MF DOOM ox found On shakedown lock-down wet dreams of Fox' Brown On Doomsday! MF DOOM Ever since the womb MF DOOM ‘ MF DOOM til I'm back where my brother went MF DOOM That's what my tomb will say MF DOOM Right above my government; Dumile Either unmarked or engraved hey who's to say? MF DOOM Doomsday Ever since the womb MF DOOM ‘ MF DOOM til I'm back to the essence MF DOOM Read it off the tomb MF DOOM Either engraved or unmarked grave who's to say? MF DOOM Pass the mic like \"Pass the peas like they used to say\" Some M-er F-ers don't like how Sally walk I'll tell y' MF DOOM all fools MF DOOM it's MF DOOM hella cool how ladies from Cali talk Never let her interfere with the Yeti ghetto slang Nicknames of nimble and tip of nipple metal fang MF DOOM Known amongst hoes for the bang-bang Known amongst foes for flow without no talking orangutans MF DOOM Only gin and Tang Guzzled out a rusty tin MF DOOM can me and this mic is like yin and yang Clang! MF DOOM Crime don't pay listen youth MF DOOM It's like me holding up the line at the kissing booth MF DOOM I took her back to the truck MF DOOM she was uncouth Spittin' all out the sunroof through her missing tooth MF DOOM But then she has a sexy voice sound like Jazzy Joyce MF DOOM So I turned it up faster than a speeding knife Strong enough to please a wife Able to drop today's math in the 48 keys of life MF DOOM Cut the crap far as rap Touch MF DOOM the mic get the same thing a Arab will do to you for stealing What the Devil? MF DOOM He's on another level MF DOOM It's a word! MF DOOM No a name! MF DOOM MF - the Super-Villain! MF DOOM When I was led to you MF DOOM I knew you were the one for me MF DOOM I swear the whole world could feel you MF DOOM MC MF DOOM Now I haven't eaten all day. MF DOOM How am I gonna do this man? MF DOOM Yeah don't wait for her man don't wait for her MF DOOM I'll tell you what man: come with me now MF DOOM and you know I'll get you some lunch MF DOOM I'll hook you up with something I got a little bank MF DOOM y'know MF DOOM no problem MF DOOM I hear you MF DOOM that's cool MF DOOM (alright? MF DOOM It's cool) MF DOOM Man can't you guys just wait here about a half hour man? MF DOOM Yo I'll be back man MF DOOM I'm just gonna munch up a little bit man MF DOOM I'm pretty hungry MF DOOM Yo let him come back MF DOOM Here you will find food for your body As well as comfort for your troubled mind MF DOOM I'd really like some soup (bread and butter) MF DOOM Of course my friend. MF DOOM What happened to your hand? MF DOOM Oh food at last! MF DOOM How did they get here? MF DOOM Regular storage procedure the same as the other food MF DOOM What other food? MF DOOM Fish (food) protein (fast for ya) MF DOOM Now what happened? MF DOOM Well the cop got MF DOOM The next morning I went to the store to get some food (Bread and butter) MF DOOM They arrested me MF DOOM I'll save you (thank you) MF DOOM Would you like a snack? MF DOOM Thanks for the drink Operation Doomsday complete All your intercoms casualty and damage testing Enough! MF DOOM you talk of the people's rights MF DOOM The people have only those rights which I choose to give them MF DOOM And that's for their own good MF DOOM believe me MF DOOM I do MF DOOM DOOM MF DOOM They dissappoint me they must work faster MF DOOM What about the prisoner? MF DOOM Ah yes the young traitor who has tried to turn my people against me Watch him. MF DOOM I have special plans for that one Beef rap could lead to getting teeth capped Or even a wreath for mom dukes on some grief crap MF DOOM I suggest you change your diet MF DOOM It can lead to high blood pressure if you fry it MF DOOM Or even a stroke heart attack heart disease MF DOOM It ain't no starting back once arteries start to squeeze Take the easy way out phony until then MF DOOM They know they wouldn't be talking that bologna in the bullpen MF DOOM So disgusting pardon self as I discuss this MF DOOM They talk a wealth of shit and they ain't never seen the justice Bust this like a cold milk from out the toilet MF DOOM Two batteries some Brillo and some foil heat'll boil MF DOOM it MF DOOM He be better off on MF DOOM PC glued MF DOOM And it's a feud MF DOOM so don't be in no TV mood MF DOOM Every week it's mystery meat seaweed stewed (Food we need food!) MF DOOM He wears a mask just to cover the raw flesh A rather ugly brother with flows that's gorgeous Drop dead joints hit the whips like bird shit MF DOOM They need it like a hole in they head or a third tit MF DOOM Her bra smell MF DOOM his card say: aw hell MF DOOM Barred from all bars and kicked out the Carvel Keep a cooker where the jar fell And keep a cheap hooker that's off the hook like Ma Bell Top bleeding MF DOOM maybe fella took the loaded rod gears MF DOOM Stop feeding babies colored sugar-coated lard squares MF DOOM The odd pair swears and God fears Even when it's rotten MF DOOM we've gotten through the hard years MF DOOM I wrote this note around New Year's Off a couple a shots and a few beers but who cares? MF DOOM Enough about me it's about the beats Not about the streets and who food MF DOOM he 'bout to eat A rhyming cannibal who's dressed to kill and cynical MF DOOM Whether is it animal vegetable or mineral MF DOOM It's a miracle how he get so lyrical And proceed to move the crowd like a old Negro spiritual MF DOOM For a mil' do a commercial for MF DOOM Mello Yello Tell 'em devil's hell MF DOOM no sell y' MF DOOM all own MF DOOM Jello MF DOOM We hollow krills MF DOOM she swallow pills He follow flea collar three dollar bills And squeal for halal veal if y'all appeal Dig the real MF DOOM it's how the big ballers deal Twirl a L after every meal (food!) MF DOOM What up? MF DOOM To all rappers: shut up with your shutting up And keep your shirt on at least a button-up Yuck is they rhymers or strippin' males? MF DOOM Out of work jerks since they shut down Chippendales They chippin' nails DOOM tippin' scales MF DOOM Let alone MF DOOM the pre-orders that's counted off shippin' sales MF DOOM This one goes out to all my peoples skippin' bail Dippin' jail whippin' tail and sippin' ale Light the doobie 'til it glow like a ruby After which they couldn't find the Villain like MF DOOM Scooby He's in the lab on some old Buddha Monk MF DOOM shit Overproof drunk shit but who'd'a thunk it? MF DOOM Punk try and ask why ours be better MF DOOM Could be the iron mask or the Cosby sweater MF DOOM Yes you who's screwed by the dude on the CD nude (We need food!) MF DOOM Yo! MF DOOM (Yo!) MF DOOM MF DOOM (Mr. Fantastik) MF DOOM Mr. Fantastik (Villain) MF DOOM What up nigga? MF DOOM (Ain't nuttin; what's the word?) MF DOOM What's cracking boy? MF DOOM (Same ol' shit kid) MF DOOM Man MF DOOM (Different day you know?) MF DOOM These rap snitches man shit MF DOOM is bugged out man MF DOOM What the fuck man? MF DOOM (Shit you telling me) MF DOOM Niggas running their mouth telling e'rything e'rything (critical) MF DOOM Rap snitches telling all their business Sit in the court and be their own star witness MF DOOM Do you see the perpetrator? MF DOOM Yeah I'm right here MF DOOM Fuck around get the whole label sent up for years Rap snitches telling all their business Sit in the court and be their own star witness MF DOOM Do you see the perpetrator? MF DOOM Yeah I'm right here MF DOOM Fuck around get the whole label sent up for years Type profile low like A in \"Paid in Full\" Attract heavy cash cause the game's centrifugal Mr. Fantastik long dough like elastic Guard my life with twin Glocks that's made out of plastic Can't stand a brown nosing nigga fake ass bastard MF DOOM Admiring my style tour bus through Manhattan Plotting plan the quickest my flow's the sickest My hoes be the thickest MF DOOM my dro the stickiest Street nigga stamped and bonafide When beef jump niggas come MF DOOM get me cause they know I ride True to the ski mask New York's my origin Play a fake gangsta like a old accordion MF DOOM According to him when the D's rushed in Complication from the wire testimony was thin MF DOOM Caused his man to go up north the ball hit 'em again MF DOOM Lame rap snitch nigga even told on the Mexican Rap snitches telling all their business Sit in the court and be their own star witness MF DOOM Do you see the perpetrator? MF DOOM Yeah I'm right here MF DOOM Fuck around get the whole label sent up for years Rap snitches telling all their business Sit in the court and be their own star witness MF DOOM Do you see the perpetrator? MF DOOM Yeah I'm right here MF DOOM Fuck around get the whole label sent up for years MF DOOM True there's rules to this shit fools MF DOOM dare care Everybody wanna MF DOOM rule the world with tears for fear MF DOOM Yeah MF DOOM yeah tell 'em tell it on the mountain hill Running up they MF DOOM mouth bill MF DOOM everybody doubting still Informer keep it up and get tested Pop through your bubble vest or double-breasted MF DOOM He keep a lab down south in the little beast MF DOOM So much heat you woulda thought it was the Middle East MF DOOM A little grease always keeps the wheels a-spinning Like sitting on twenty threes to get the squealers grinning Hitting on many trees feel real linen Spitting on enemies get the steel for tin men Where no brains but gum flap MF DOOM He said his gun clap MF DOOM then he fled after one slap (pap!) MF DOOM Son shut your trap save it for the bitches MF DOOM Mmm delicious rapp snitch knishes MF DOOM You know what I'm saying? MF DOOM (It's terrible) MF DOOM Crazy man I'm just analyzing this whole game MF DOOM This is bugged out man niggas is snitching Telling on they own self (it's a horror yo) Fuck around and get everybody bagged man (Atrocities) Fuck around and get yo mama bagged nigga MF DOOM You know your grandmama used to be bootlegging Fake hustling nigga heheheheh haha Perpetrator? MF DOOM Yeah I'm right here... MF DOOM Keep your hoes in check... MF DOOM (Super!) MF DOOM I got this girl and she wants me to duke her MF DOOM I told her MF DOOM I'd come scoop her around 8 MF DOOM she said (\"Super!\") MF DOOM That sounds great shorty girl's a trooper MF DOOM No matter what I need her to do MF DOOM she be like (\"Super!\") MF DOOM Own his own throne the boss like King Koopa MF DOOM On the microphone he flossed the ring (\"Super!\") MF DOOM Average emcees is like a TV blooper MF DOOM MF DOOM he's like D.B. Cooper Out with the moolah MF DOOM I let her get a outfit Just to cool her off MF DOOM she said niggas ain't about shit MF DOOM I wonder if she meant it MF DOOM I doubt it MF DOOM The way it be in her mouth she can't live without it MF DOOM And can't live with this handle your business MF DOOM Villain'll stay on a scandalous ho's shit list One pack of cookies please Mr. Hooper MF DOOM It's fun smacking rookies MF DOOM he is the (\"Super!\") MF DOOM Look like a black wookie when he let his beard grow MF DOOM Weirdo brown-skinned'd always kept his hair low Rumor has it MF DOOM it's a S-Curl accident DOOM was always known to keep the best girls' backs bent MF DOOM Some say it's the eyes some say the accent A lot of guys wonder where they stacks went MF DOOM I call her thunder thighs with the fatty swolla Only mess with high rollers MF DOOM do what daddy told her MF DOOM No matter the city she with me to do the thang-thang Work in the coochie hooptie chitty chitty bang bang MF DOOM Same name on the titty as on the name ring Pretty like Baby D off \"All in the Same Gang MF DOOM \" Keep my eye on her really don't trust her MF DOOM But I treat her like MF DOOM a daughter taught her how to bust a nut MF DOOM And the heat to turn beef to horsemeat chalupa Teach her how to hold it of course MF DOOM he is the (\"Super!\") MF DOOM See most cats treat her like Foofur Or beat her to a stupor take it from the MF DOOM (\"Super!\") MF DOOM You need to make her feel cuter And lay down the G like Luther everything'll be (\"Super!\") MF DOOM Do for her keep her in a new fur MF DOOM So she look sweet when she go to meet the MF DOOM (\"Super!\") Got the buddha get the Grenadiers twist it Put it in the air MF DOOM come here MF DOOM kiss it Listen here MF DOOM scooter let her try to bag you MF DOOM When she's on the rag never let her fry the Ragu Which'll MF DOOM have you under some type of spell crying \"dag boo\" Her name on your back in a tattoo MF DOOM Whether a bougie broad nerd ho street chick Don't call her Wifey if you met her at the Freaknik MF DOOM You don't want her don't waste her time MF DOOM I'll dupe her And be a father to your child like the (\"Super!\") MF DOOM He keep his hoes in check MF DOOM Sends 'em out to get glows from off frozen necks MF DOOM Tell 'em take his clothes MF DOOM leave him posing naked for real Better yet get him for the check off the record deal MF DOOM Find out where he keep the Tec and the blue steel MF DOOM Make sure for extra wreck let him know how you feel MF DOOM And while he's running down to All-Star Weekend to ball I'm coming with the U-Haul (\"Super!\") MF DOOM (\"Super! MF DOOM Super!\") MF DOOM (DOOM): Has the laser cannon been lowered? MF DOOM (DOOM Cronie): MF DOOM Everything has been prepared as you ordered. MF DOOM But how did you get permission to return to New York master? MF DOOM (DOOM): MF DOOM Through the efforts of the misguided fools (J. Jonah Jameson): It's free enterprise MF DOOM and I'm not gonna have some blasted government bureaucrat tell me how to run my business. MF DOOM But DOOM will be my guest on my private estate in Long Island. MF DOOM There's nothing you can do about it (Jameson Employee): MF DOOM He's dangerous MF DOOM I just hope you know what you're doing MF DOOM (Jay Jonah Jameson): MF DOOM Don't I always. MF DOOM Ah there's DOOM's jet right on time (Voice 1) MF DOOM : Why's it so cold out here? MF DOOM (Voice 2): The heat went out in the whole building (Voice 3): It's warming up out there in Long Island with DOOM (Voice 1): DOOM? MF DOOM Here in New York? MF DOOM (Voice 2): MF DOOM Yes DOOM has an amazing new machine (DOOM): MF DOOM Get the president of the United States on the phone (Jay Jonah Jameson): MF DOOM How long's all this gonna take DOOM? MF DOOM (DOOM): I would not advise you to repeat that error (Jay Jonah Jameson): MF DOOM Sure I know what you mean MF DOOM Before we go any further Friends MF DOOM As you call 'em they call you when they need something Trees for the blunt the G's for the front MF DOOM I found a way to get peace of mind for years and left the hell alone Turn a deaf ear to the cellular phone MF DOOM Send me a letter or better MF DOOM we could see each other in real life MF DOOM Just so you could feel me like a steel knife MF DOOM At least so you could see the white of they eyes Bright with surprise once they finish spitting lies MF DOOM Asssociates is your boys your girls bitches niggas homies Close but really don't know me MF DOOM Mom dad comrade MF DOOM peeps brothers sisters duns dunnies MF DOOM Some come around when they need some money Others make us laugh like the Sunday funnies Fam be around whether you paid or bummy MF DOOM You could either ignore this advice or take it from me MF DOOM Be too nice and people take you for a dummy MF DOOM So nowadays he ain't so friendly MF DOOM Actually they wouldn’t have made a worthy enemy Read the signs: \"No feeding the baboon\" Seein' as how they got ya back bleeding from the stab wounds MF DOOM Y'all know the dance they smile in ya MF DOOM face y' MF DOOM all know the glance Try to put 'em on MF DOOM they blow the chance Never let your so-called mans know your plans (How many of us have them?) MF DOOM A show of hands (Friends) is a term some people use loosely I'm real choosy on what I choose to let crews see You telling me; I try to act broke Jealousy the number one killer among black folk Fellas be under some type of spell like crack smoke MF DOOM Ghetto Cinderellas lead MF DOOM 'em MF DOOM right to your stack loc MF DOOM Just another way a chick'll lead to your end I check the dictionary for the meaning of friend MF DOOM It said: person one who likes to socialize with Sympathiser helper MF DOOM and that's about the size of it MF DOOM Most of the time these attributes is one-sided To bolster the crime they're apt to shoot you through your eyelid MF DOOM And they can't hide it going wild like a white bitch MF DOOM Sometimes ya need to cut niggas off like a light switch (Click!) MF DOOM And when things get quiet Catch 'em like a thief in the night what a riot I first met Mr. Fantastik at a arms deal MF DOOM Don't let it get drastic think of how your moms'll feel When it get for real steel MF DOOM get to sparkin' MF DOOM Everything darken and ain't no talkin' MF DOOM For somethin so cheap it sure buys a lot of trouble MF DOOM Ya better off focusing than tryin to plot to bubble MF DOOM Or else it'd be a sad note to end on the guns we got MF DOOM is (One's we can depend on friends) MF DOOM Some come in the form of codependence MF DOOM A lot of times only end up being codefendants Ten bucks say they tell for a lower sentence And leave you up under the jail begging for a penance MF DOOM It don't make no sense what happened to the loyalty? MF DOOM Honor amongst crooks trust amongst royalty MF DOOM I'd rather go out in a blaze than give 'em the glory (How many of us have) a similar story (Friends) before lovers we used to have some type of over-standing MF DOOM Just so when I let her get the man thing she know MF DOOM it's no strings We could do the damn thing MF DOOM but ho MF DOOM it's no rings MF DOOM Just how the tramp swings MF DOOM Will she see 'em again? MF DOOM That depends on how good was the skins and could she memorize the lessons It ain't no need to pretend Even though she let 'em stab it MF DOOM she know they're just friends MF DOOM Friends MF DOOM How many of us have them? MF DOOM Friends Ones we can depend on? MF DOOM Friends MF DOOM How many of us have them? MF DOOM Friends MF DOOM Before we go any further Fellas! MF DOOM Don't be silly! MF DOOM I know who my friends are! MF DOOM And the next nice neighborhood I move into you guys'll get crack' (Negro humor always escaped me.) MF DOOM [Outro Skit: Character 1; Mr. Fantastic; (Invisible Woman); Dr. DOOM; Character 2 MF DOOM The most powerful the most mysterious monarch in all the world Guided by a fighting force that never sleeps That never relaxes its vigilance For none is as feared none has as many foes MF DOOM As DOOM the awesome ironclad lord of I know who Doom is (Then tell us) MF DOOM He happens to be the most dangerous man in the world MF DOOM I’d hope we’d never hear from him MF DOOM I’d hope we’d never have to battle him MF DOOM But now the worst has happened and MF DOOM I must tell you what we’re up against I MF DOOM first met DOOM years ago MF DOOM When he wanted to be alone alone to pursue his forbidden experiments One day while conducting a secret experiment Later when he recovered from his injuries Instead of having learned his lesson DOOM was bitter MF DOOM angry vengeful MF DOOM What have I done to myself? MF DOOM My face it is hideous MF DOOM He traveled the world seeking a cure for his disfigured face (I’m sorry sir there is nothing we can do for you) MF DOOM He traveled through remote villages where strangers are seldom seen He continued his search never showing his face Unless threatened by bandits who prey on travelers Who foolishly wander alone through their domain MF DOOM I get no kick from champagne MF DOOM Mere alcohol doesn't thrill me at all So MF DOOM tell me why shouldn't it be true? MF DOOM I get a kick out of brew MF DOOM There's only one beer left Rappers screaming all in our ears MF DOOM like we're deaf MF DOOM Tempt MF DOOM me do a number on the label MF DOOM Eat up all they emcees and drink 'em under the table MF DOOM Like \"It's on me—put it on my tab kid MF DOOM \" However you get there MF DOOM foot it cab it iron MF DOOM horse MF DOOM it MF DOOM You're leaving on your face forfeit MF DOOM I crush the mic hold it like the heat he might toss it MF DOOM Told him tell her they stole it he told her he lost it MF DOOM She told him \"Get off it\" and a bunch of other more shit Getting money MF DOOM DT's be getting no new leads MF DOOM It's like he eating watermelon stay spitting new seeds MF DOOM It's the weed give me some of what he drooping off Soon as he wake up choking MF DOOM like it was whooping cough MF DOOM They group been soft First hour at the open bar and they're trooping off MF DOOM He went to go laugh and get some head by the side road MF DOOM She asked him autograph her derriere read \"To Wide Load this yard bird taste like fried toad turd Love Villain. MF DOOM \" MF DOOM Take pride in code words MF DOOM Crooked eye mold nerd geek with a cold heart MF DOOM Probably still be speaking in rhymes as an old fart Study how to eat to die by the pizza guy MF DOOM No MF DOOM he's not too fly to skeet in a skeezer eye MF DOOM And squeeze her thigh maybe give her curves a feel MF DOOM The same way she feel it when he flow with nerves of steel MF DOOM They call the super when they need their back uhh plumbing fixed \"How there only one left? MF DOOM The pack comes in six! MF DOOM Whatever happened to two and three? MF DOOM \" MF DOOM A herb tried to slide with four and five and got caught like \"What you doing G? MF DOOM Don't make me have to get cutting like MF DOOM truancy Matter fact not for nothing MF DOOM right now you and me! MF DOOM \" MF DOOM Looser than a pair of Adidas MF DOOM I hope you brought your spare tweeters MC's sound like cheerleaders Rapping and dancing like Red Head Kingpin DOOM MF DOOM came do his thing again no matter who be blingin' MF DOOM He do it for the smelly hubbies Seeds know what time it is like it's time for MF DOOM Tellie Tubbies Few can do it even fewer can sell it MF DOOM Take it from the dude who wears mask like a 'tarded helmet He plots shows like robberies MF DOOM In and out one two three no bodies please Run the cash and you won't get a wet sweatshirt MF DOOM The mic is the shotty: nobody move nobody get hurt Bring heat like your boy done gone to war MF DOOM He came in the door and MF DOOM \"Everybody on the floor!\" MF DOOM A whole string of jobs like we on tour Every night on the score coming to your corner store MF DOOM There it is done Now that the representative from South Africa has been mind MF DOOM programmed All of the world leaders on earth are under my control MF DOOM And when they meet tomorrow in special session MF DOOM I MF DOOM Doom shall be voted: MF DOOM Master of the World MF DOOM My plan is foolproof but just in case MF DOOM And what about snow? MF DOOM Now you keep your eyes open MF DOOM When I tell ya start snappin' MF DOOM (Oh yeah sure) MF DOOM Uh ladies and gentlemen I am risking my life to tell you with great concern that I must warn you MF DOOM I MF DOOM I MF DOOM you must listen Many among you MF DOOM have have have their minds taken over (What a story start snappin’) MF DOOM DOOM MF DOOM gosh MF DOOM I wish I’d brought my autograph book ( MF DOOM Your attempts at humor bore me) MF DOOM Right lead head MF DOOM You’re weird MF DOOM Why is everyone staring at us? MF DOOM (Aw I should have realized we must look like freaks to them) MF DOOM Relax masseur just do your thing MF DOOM (Get a good grip on my-) MF DOOM What? MF DOOM Why I’ll bend your read out meter for ya MF DOOM you little (Knock it off Ben) MF DOOM What’s the matter? MF DOOM (Oh Ben) MF DOOM You’re nothing but a chicken head MF DOOM (You overgrown granite head) MF DOOM Hold it MF DOOM Yo MF DOOM yo yo y' MF DOOM all can't stand right here MF DOOM In his right hand was your man's worst nightmare Loud enough to burst his right eardrum MF DOOM close-range MF DOOM The game is not only dangerous MF DOOM but it's most strange MF DOOM I sell rhymes like dimes MF DOOM The one who mostly keep cash but brag about the broker times Joking rhymes like the \"Is you just happy to see me? MF DOOM \" trick Classical slapstick rappers need Chapstick A lot of 'em sound like they in a talent show MF DOOM So I give 'em something to remember like the Alamo Tally-ho! MF DOOM A high Joker like a Spades game Came back from five years laying and stayed the same I'm saying electromagnetic field it blocks all logic MF DOOM Spock And G-Shocks MF DOOM her biological clock MF DOOM When I hit it slit it to the shitter thought I killed her goose MF DOOM Her Power U was pure Brita water filtered juice MF DOOM Keep a pen like a fiend keep a pipe with him Gentleman who lent a pen to a friend who write with him MF DOOM Never seen the shit again MF DOOM but he's still my dunny MF DOOM The only thing that come between us is krill and money MF DOOM I sell rhymes like dimes The one who mostly keep cash but brag about the broker times Better rhymes make for better songs it matters not MF DOOM If you got a lot of what it takes just to get along Surrender now or suffer serious setbacks Got get-back connects wet-back get stacks Even if you gots to get jet-black head to toe To get the dough battle for bottles of Mo' or 'dro MF DOOM This fly flow take practice like Tae Bo with Billy Blanks MF DOOM \" MF DOOM Oh you're too kind!\" MF DOOM \"Really? MF DOOM Thanks! MF DOOM \" MF DOOM To the gone and lost forever like \"Oh My Darling Clementine\" MF DOOM He hold his heart when he telling rhyme MF DOOM When it's his time I hope his soul go to Heaven MF DOOM He nasty like the old time Old No. 7 MF DOOM You still taste it when you chase it with the Coca-Cola Make 'em wish they could erase it out the Motorola MF DOOM I told her \"No credit for a bag MF DOOM If you want what they got then go get it MF DOOM it's all gack MF DOOM \" Only in America could you find a way to earn a healthy buck And still keep your attitude on self-destruct MF DOOM I sell rhymes like dimes MF DOOM The one who mostly keep cash but brag about the broker times Joking rhymes like the \"Is you just happy to see me? MF DOOM \" trick Classical slapstick rappers need Chapstick A lot of 'em sound like they in a talent show MF DOOM So I give 'em something to remember like the Alamo Tally-ho! MF DOOM A high Joker like a Spades game Came back from five years laying and stayed the same Saying \"Electromagnetic feeling blocks all logical Spock MF DOOM \" And G-Shocks her biological clock MF DOOM When I hit it slit her to the shitter thought I killed her goose MF DOOM Her Power U was pure Brita water filtered juice MF DOOM Keep a pen like a fiend keep a pipe with him Gentleman who lent a pen to a friend who write with him MF DOOM Never seen the shit again MF DOOM but he's still my dunny MF DOOM The only thing that come between us is krill and money MF DOOM We sell rhymes like dimes The one who mostly keep cash but tell em bout the broke times \"In your arms tonight She'll reflect That she owes you the sweetest of debts MF DOOM If she wants to pay\" Check it out y'all! MF DOOM Ya don't stop! MF DOOM Keep on to the sure shot! MF DOOM Huh-ha! MF DOOM Uh uh uh uh oh! MF DOOM Yeah you're listening to the buttery slickness MF DOOM The Land-O-Lakes from my man MF DOOM! MF DOOM Ha ha ha ha! MF DOOM Yeah! MF DOOM Rock-shocking the house with another nugget Uh-uh-ah eh oh ah hoo-wee! MF DOOM Yeah! MF DOOM Yeah! MF DOOM Regulation status right here MF DOOM Fondle 'Em Recordings 1999 MF DOOM Yeah! MF DOOM Now what are you 'posed to say on the end of records? MF DOOM I don't know! MF DOOM Yeah! MF DOOM Woo! MF DOOM Yeah! MF DOOM Mashed potatoes! MF DOOM Apple sauce! MF DOOM Buttery... biscuits! MF DOOM And I get lost A MF DOOM yes MF DOOM yes yes MF DOOM yes MF DOOM y' MF DOOM all You don't stop Keep on a' to the break-a-dawn Say what? MF DOOM Uh! MF DOOM Yeah! MF DOOM You thought it all was over! MF DOOM You thought the song was over! MF DOOM Ah! MF DOOM We tricked you! MF DOOM We tricked you! MF DOOM Ha ha ha ha... MF DOOM Woo! MF DOOM You listening to www dot hairline dot com MF DOOM Kool Bob Love... MF DOOM Already woke MF DOOM spared a joke barely spoke rarely smoke Stared at folks MF DOOM when properly provoked mirror broke MF DOOM Here share strawberry morning gone an more important spawning Torn in poor men sworn in Cornish hens switching positions auditioning morticians MF DOOM Saw it in a vision ignoring prison Ignoramuses enlist and sound dumb MF DOOM Found 'em drowned in cow's dung crowns MF DOOM flung Rings a Tinkerbell sing for things that's frail as a fingernail MF DOOM Bring a scale stale ginger lingers Seven figures invigor Nigga fresh from out the jail alpha male Sickest ninja injury this century enter plea Lend sympathy to limper Simple Simon rhyming emcees MF DOOM Trees is free please leave a key These meagre fleas MF DOOM he's the breeze MF DOOM And she's the bees knees for sheez G's of G's Seize property shopper sprees MF DOOM chop the cheese Drop MF DOOM the grease to stop diseases MF DOOM gee wiz pa! MF DOOM DOOM rock grammar like the kumbaya Mama was a ho hopper papa was a Rolling Stone star like Obama Pull a card MF DOOM like oh drama Civil liberties MF DOOM These little titties abilities riddle me middle C Give a MC a rectal hysterectomy Lecture on removal of the bowels foul technically Don't expect to see the recipe Until we receive the check as well as the collection fee More wreck than Section Z MF DOOM What you expect to get for free? MF DOOM Shit from me history MF DOOM The key plucked it off the mayor MF DOOM Chucked it in the ol' tar pit off La Brea player MF DOOM They say he's gone too far DOOM'll catch em after Jumah on cue lacka!! MF DOOM Do whatcha gotta do grarrrr MF DOOM The rumors are not true got two ma MF DOOM No prob got the job hot-barred heart throb Scotchguard the bar with cotton swabs dart lob MF DOOM Bake MF DOOM a cake sweet Jamaica trade in treats on the beach Make her skeet til her feets meet MF DOOM Can it be MF DOOM I stayed away too long? MF DOOM Did you miss these rhymes when I was gone? MF DOOM As you listen to these crazy tracks Check them stats then you know where I'm at MF DOOM And that's that MF DOOM Look there's Doom now! MF DOOM I followed him to the studio MF DOOM but I was too late to stop him MF DOOM That's right! MF DOOM You'll never stop me! MF DOOM You're dead! MF DOOM You're all dead! MF DOOM Doom! MF DOOM It ain't nothing like a fistfull a cash or a bliss MF DOOM fulla the hash That twist like a mustache from end to end MF DOOM spread it like a rash From talking through your walkman or at your disco bash Gimme MF DOOM the Timbs Rumplestiltskin brown MF DOOM A metal face mask with a built in frown A mic to tilt down a hundred thousand pounds And see how kilt sound like spilt milk clown Cocoa butter on very ashy day fam With Ray-Bans out on the islands of Cayman MF DOOM Or i'll break it down for the layman Bain de Soliel for MF DOOM that St. Tropez tan A can MF DOOM a ole gold too cold to hold slow ya roll Keep on moving like Soul II Soul hold the dough Like a fool who stole pity y'all From tryna go up against city hall titty bar MF DOOM The black mic is like a red violin MF DOOM Ok everybody back to the lab try again Bloody rap game like leviathan MF DOOM Leave a bad taste MF DOOM killin my high like niacin MF DOOM Stop kiddin middlemen need Ritalin Hit me with the full tin of gin MF DOOM and im a kid again MF DOOM Keep the bong lightin straight through the song writin MF DOOM The Supervillain AKA the thong bitin thats inviting all To the recitin thats dope and raw MF DOOM Hoping MF DOOM all yall come in peace and its open bar Tear MF DOOM the roof off this bumba rasclaat MF DOOM By the end of the night spazz like MF DOOM shazbot Spilt MF DOOM a shot made the pen lines runny A ill plot thats ten times MF DOOM Ben Stien money funny MF DOOM How he rips the scripts with a straight face With more rhymes than is lines in ya database Placing rappers in endangerment who's reckless With this food for thought sorta like breakfast You could mark it off as wreck on the checklist Wear gold fronts can't afford no necklace Shit that there could go to help them daycares MF DOOM Somebody say yeahh.. MF DOOM (yeahhh!) MF DOOM Pay ya fares... give the Herbalizers his shares MF DOOM And y'all could pay DOOM in beers; cheers! MF DOOM I came to the shores of America disguised as a pillar The alpha and omega and the home of the beggars the black sellers Who been beaten raped lynched robbed and stoned And caused to roam the earth in service cause they couldn't maintain at Home MF DOOM This dates back to 1555 When they captured the first tribe of men And piled them in a pen Fifty feet high MF DOOM They took em all on a 9000 mile ride And landed on the shore of a place they never seen before But read about this inside the ancient books of war Bonded in stainless steel stripped of their language MF DOOM Still survived the anguish of slavery but still remained nameless Separated to portions and tricked by John Haughty Hawkins MF DOOM And sold on the auction taught birth control and abortion Rulers of the first part became slaves of the worst part MF DOOM The devils cursed God and reversed God And turned God into dog and made people search hard MF DOOM No relief came to the prophet of W.D. Feraud MF DOOM To a trauma dropped our mommas off in Bahamas and Barbados Tobagos separated us from slave boats Made our own brothers hate us From Virgin Isle to Jamaica Trinidad Honduras Haiti Grenada Bermuda to Cayman mental enslavement MF DOOM You black gods become awaken MF DOOM It's the beat he hear it in his sleep sometimes MF DOOM Blare it in your jeep so your peoples can stare at them rhymes Real rhymes not your everyday hologram MF DOOM Even when ribs was touchin' never swallowed the ham He'd rather eat MF DOOM a sand sandwich salad It might need salt like your man's bland ballad MF DOOM A lot of stuff happens that the news won't tell you's Blues on L juice snooze all hell loose Rake it take it like the good the bad the ugly Break MF DOOM it rollin' through ya hood in the caddy buggy MF DOOM Butter softly leather flossy fatty juggy MF DOOM Always threw me off when she told me MF DOOM \"Daddy funk me MF DOOM \" MF DOOM I'm like \"Anywho's\" Seeds walkin' all out in street with out any shoes MF DOOM I guess it's better than some funky socks You need to get her some skips before she catch the monkey pox MF DOOM Instead she wanna hear the beatbox Take pills and make fake krills as sheetrock MF DOOM Sing MF DOOM it bring it back to your laboratory While he's in his oratory glorious like a horror story MF DOOM The mask is like Jason MF DOOM They told the place not to let the basket type case in He could be some kind of wacko Waitin' for the chance to heat the pipes like a crack MF DOOM ho MF DOOM He busted in blessed be the Lord Who believe any mess they read up on a message board MF DOOM If so I got bridges for the low low Same bitch a-go dry snitchin' to the popo MF DOOM Here orange peel stogs for the whole tier Feel like I've been gone over a year came home to old gear It was the shit when I first scooped it MF DOOM At least I get to sit out in New York and curse stupid Plead the fifth sip wine stiffly MF DOOM Patiently come up and be spiffy in a jiffy Gift for the grind criminal mind MF DOOM shifty Swift with the nine through a fifty nine fifty MF DOOM Well edumacated he heard it when he meditated In deep theta MF DOOM let her hate the creep MF DOOM later Dedicated cheap skata who keeps data MF DOOM Say he stay self medicated to sleep MF DOOM later Side effects is similar to sugar pill Whoever go next on the mic he put a booger ill And made his exit on some calm shit MF DOOM Begged him on the regular for kegs of more vomitspit ( MF DOOM \"Doom!\") MF DOOM Nobody pray for me Kendrick It's been that day for me Waaaaay Kendrick (Yeah yeah!) Kendrick Ayy I remember syrup sandwiches and crime allowances Finesse a nigga with some counterfeits Kendrick but now I’m countin' Kendrick this Parmesan where my accountant lives in fact Kendrick I'm downin’ Kendrick this D'USSÉ with my boo bae tastes like Kool-Aid for the analysts Girl Kendrick I can buy yo' ass the world with my paystub Ooh that pussy good Kendrick won't you sit it on my taste bloods? Kendrick I get way too petty once you let me do the extras Pull up on your block then Kendrick break it down: we playin' Tetris A.M. to the P.M. P.M. to the A.M. funk Piss out your per diem Kendrick you just gotta hate Kendrick 'em funk Kendrick If I quit your BM I still ride Mercedes funk Kendrick If I quit this season I still be the greatest funk Kendrick My left stroke just went Kendrick viral Right stroke put lil' baby in a spiral Soprano C we like to keep it on a high note Kendrick It's levels to it you Kendrick and I know Bitch be humble (Hol’ up bitch) Kendrick Sit down (Hol’ up lil' hol’ up lil' bitch) Be humble Kendrick (Hol' up bitch) Kendrick Sit down Kendrick (Hol' up sit down Kendrick lil’ sit down lil' bitch) Kendrick Be humble Kendrick (Hol' up hol' up) Kendrick Bitch sit down Kendrick (Hol' up hol Kendrick ' up lil' bitch) Kendrick Be humble (Lil' bitch hol' up bitch) Kendrick Sit down ( Kendrick Hol' up hol' up hol' up hol' up) Kendrick Be humble Kendrick (Hol' up hol' up) Kendrick Sit down ( Kendrick Hol' up Kendrick hol' up lil' hol' up lil' bitch) Kendrick Be humble Kendrick (Hol' up bitch) Kendrick Sit down Kendrick (Hol' up sit down Kendrick lil' sit down lil' bitch) Kendrick Be humble Kendrick (Hol' up hol' up) Kendrick Bitch sit down Kendrick (Hol' up hol Kendrick ' up lil' bitch) Kendrick Be humble (Lil' bitch hol' up bitch) Kendrick Sit down ( Kendrick Hol' up hol' up hol' up hol' up) Kendrick Who dat nigga thinkin' that he frontin' on Man-Man? Kendrick (Man-Man) Kendrick Get the fuck off my stage Kendrick I'm the Sandman (Sandman) Kendrick Get the fuck off my dick that ain't right Kendrick I make a play fucking up your whole life Kendrick I'm so fuckin' sick and tired of the Photoshop Kendrick Show me Kendrick somethin' natural like afro on Richard Pryor Kendrick Show me somethin' natural like ass with some stretch marks Kendrick Still will take you down right on your mama's couch in Polo socks Kendrick Ayy this shit way too crazy Kendrick ayy you do not amaze me Kendrick ayy Kendrick I blew cool from AC Kendrick ayy Kendrick Obama just paged me Kendrick ayy Kendrick I don't fabricate it ayy most of y' Kendrick all be fakin Kendrick ' ayy Kendrick I stay modest 'bout Kendrick it ayy Kendrick she elaborate it Kendrick ayy Kendrick This that Grey Poupon that Evian that TED Talk Kendrick ayy Kendrick Watch Kendrick my soul speak Kendrick you let the meds talk Kendrick ayy Kendrick If I kill a nigga it won't be the alcohol Kendrick ayy Kendrick I'm the realest nigga after all Bitch be humble Kendrick (Hol' up bitch) Kendrick Sit down Kendrick (Hol' up lil' hol' up lil' bitch) Kendrick Be humble Kendrick (Hol' up bitch) Kendrick Sit down Kendrick (Hol' up sit down Kendrick lil' sit down lil' bitch) Kendrick Be humble Kendrick (Hol' up hol' up) Kendrick Bitch sit down Kendrick (Hol' up hol Kendrick ' up lil' bitch) Kendrick Be humble (Lil' bitch hol' up bitch) Kendrick Sit down ( Kendrick Hol' up hol' up hol' up hol' up) Kendrick Be humble Kendrick (Hol' up hol' up) Kendrick Sit down ( Kendrick Hol' up Kendrick hol' up lil' hol' up lil' bitch) Kendrick Be humble Kendrick (Hol' up bitch) Kendrick Sit down Kendrick (Hol' up sit down Kendrick lil' sit down lil' bitch) Kendrick Be humble Kendrick (Hol' up hol' up) Kendrick Bitch sit down Kendrick (Hol' up hol Kendrick ' up lil' bitch) Kendrick Be humble (Lil' bitch hol' up bitch) Kendrick Sit down ( Kendrick Hol' up hol' up hol' up hol' up) Kendrick If Pirus and Crips all got along They'd probably gun me down by the end of this song Seem like the whole city go against me Kendrick Every time I'm in the street Kendrick I hear— YAWK! Kendrick YAWK! Kendrick YAWK! Kendrick YAWK! Kendrick Man down where you from nigga? Kendrick Fuck who you know Kendrick —where you from my nigga? Kendrick Where your grandma stay huh my nigga? Kendrick This m. Kendrick A.A.d city Kendrick I run my nigga Brace yourself Kendrick I'll take you on a trip down memory lane Kendrick This is not a rap on how I'm slingin' crack or move cocaine Kendrick This is cul-de-sac and plenty Cognac and major pain Kendrick Not the drill sergeant but the stress that weighin' on your brain Kendrick It was me Kendrick L Boog and Yan Yan YG Lucky ride down Rosecrans Kendrick It got ugly wavin' yo' hand out the window – check yourself! Kendrick Uh Warriors and Conans hope euphoria can slow dance With society the driver seat the first one to get killed Kendrick Seen a light-skinned nigga with his brains blown out At the same burger stand where *beep* hang out Now Kendrick this is not a tape recorder sayin' that he did it Kendrick But ever since that day I was lookin' at him different Kendrick That was back when I was Kendrick nine Joey packed the nine Pakistan on every porch Kendrick is fine we adapt to crime Pack a van with four guns at a time Kendrick With the sliding door fuck is up? Kendrick Fuck you shootin' for if you ain't walkin' up you fuckin' punk? Kendrick Pickin' up the fuckin' pump pickin' off you suckers Suck a dick or die or sucker punch A wall of bullets comin' from AK's AR's \"Ayy y'all—duck! Kendrick \" Kendrick That's what Momma said when we was eatin' that free lunch Aw man goddamn all hell broke loose Kendrick You killed my cousin back in '94 fuck yo' truce! Kendrick Now crawl your head in that noose Kendrick You wind up dead on the news Kendrick Ain't no peace treaty just piecin' BGs up to pre-approve Bodies on top of bodies IVs on top of IVs Obviously the coroner between the sheets like the Isleys Kendrick When you hop on that trolley make sure Kendrick your color's correct Make sure you're corporate or they'll be callin' Kendrick your mother collect Kendrick They say the governor collect all of our taxes except When we in traffic and tragic happens that shit ain't no threat Kendrick You movin' backwards if you suggest that you sleep with a TEC Go buy a chopper and have a doctor on speed dial I guess Kendrick M.A.A.d. Kendrick city Man down Kendrick where you from nigga? Kendrick Fuck who you know Kendrick —where you from my nigga? Kendrick Where your grandma stay huh my nigga? Kendrick This m. Kendrick A.A.d city Kendrick I run my nigga Kendrick If Pirus and Crips all got along They'd probably gun me down by the end of this song Seem like the whole city go against me Kendrick Every time I'm in the street Kendrick I hear— YAWK! Kendrick YAWK! Kendrick YAWK!— Kendrick Wake yo' punk-ass up! Kendrick It ain't Kendrick nothin' but a Compton thang Kendrick G-yeah Kendrick real simple and plain Kendrick Let me teach you some lessons about the street (Smoke somethin' nigga!) Kendrick Hood ('Sup Cuz?) Kendrick It ain't Kendrick nothin' but a Compton thang Kendrick G- Kendrick yeah Kendrick how we do Fresh outta school Kendrick 'cause I was a high school grad' Sleepin' in the living room of my momma's pad Reality Kendrick struck I seen the white car crash Hit the light pole two niggas hopped out on foot and dashed Kendrick My pops said I needed a job I thought I believed him Security guard for a month and ended up leavin' In fact I got fired 'cause I was inspired by all of my friends To stage a robbery the third Saturday I clocked in Projects tore up gang signs get thrown up Cocaine laced in marijuana Kendrick And they wonder why I rarely smoke now Imagine Kendrick if your first blunt had you foamin' at the mouth Kendrick I was straight tweakin' Kendrick the next weekend we broke Kendrick even I made allegiance that made a promise to see you bleedin' Kendrick You know the reasons but still will never know my life Kendrick a.k.a. Kendrick \" Kendrick Compton's Human Sacrifice Kendrick \" G-yeah Kendrick cocaine weed Kendrick Niggas been mixin' shit since the '80s loc Sherm sticks Kendrick butt-nakeds Dip make a nigga flip Cluck heads all up and down the block and shit One time's crooked and shit Block a nigga in Alondra Rosecrans Bullis Kendrick it's Compton Kendrick I'm still in the hood loc Kendrick yeah Kendrick that's Kendrick cool Shit the hood took me under Kendrick so I follow the rules Kendrick But yeah that's like me Kendrick I grew up in the hood where they bang And Kendrick niggas that rep colors Kendrick is doin' the same thang Kendrick Pass it to the left Kendrick so I can smoke on me A couple drive-by's in the hood lately shit Couple of IV's with the fuckin' spray- Kendrick can Shots in the crowd Kendrick then everybody ran Crew Kendrick I'm finna Kendrick slay the street life I crave Shots hit Kendrick the enemy hearts turn brave Mount up regulators in the whip Down the boulevard with the pistol grip Kendrick yeah Kendrick Trip Kendrick we in the hood still Kendrick So loc grab a strap Kendrick 'cause Kendrick yeah Kendrick it's so real Kendrick yeah Kendrick Deal with the outcome Kendrick a strap in the hand And a bird and ten grand's where a mothafucka stand Kendrick If I told you I killed a nigga at sixteen Kendrick would you believe me? Kendrick Or see me to be innocent Kendrick you seen in the street With a basketball and some Now and Laters to eat? Kendrick If I mentioned all of my skeletons would you jump in the seat? Kendrick Would you say my intelligence now is great relief? Kendrick And it's safe to say that our next generation maybe can sleep With dreams of bein' a lawyer or doctor Instead of boy with a chopper that hold the cul-de-sac hostage Kendrick Kill 'em all Kendrick if they gossip The Children of the Corn they vandalizin' the option Of livin' a lie drown their body with toxins Constantly drinkin' and drive Hit the powder then watch this flame that arrive in his eye Listen coward the concept is aim and then bang it and slide Out that bitch with deposit a price on his head the tithes Probably go to the projects I Live inside the belly of the rough Compton USA Made me an Angel on Angel Dust - what? Kendrick M.A.A.d Kendrick city Compton Nigga pass Dot the bottle Kendrick damn! Kendrick You ain't the one that got fucked up What you holdin' it for? Kendrick Niggas always actin' unsensitive and shit Nigga that ain't no word Kendrick Nigga shut up! Kendrick Hey Kendrick Dot you good my nigga? Kendrick Don't even trip Just lay back and drink that Pour up (Drank) Kendrick head shot (Drank) Kendrick Sit down (Drank) stand up Kendrick (Drank) Pass out (Drank) wake up Kendrick (Drank) Faded (Drank) faded (Drank) Kendrick Now I done grew up 'round some people livin' their life in bottles Kendrick Granddaddy had the golden flask Backstroke every day in Chicago Kendrick Some people like the way it feels Some people wanna kill their sorrows Kendrick Some people wanna fit in with the popular that was my problem Kendrick I was in a dark room loud tunes Lookin' to make a vow soon Kendrick That I'ma get fucked up fillin' up my cup Kendrick I see the crowd mood Changin' by the minute and Kendrick the record on repeat Took a sip then Kendrick another sip Kendrick then somebody said to me Nigga Kendrick why you babysittin' only two or three shots? Kendrick I'ma show you how to turn it up a notch Kendrick First you get a swimming pool full of liquor then you dive in it Pool full of liquor Kendrick then you dive in it Kendrick I wave a few bottles Kendrick then I watch 'em all flock All the girls wanna play Baywatch Kendrick I got a swimming pool full of liquor and they dive in it Pool full of liquor Kendrick I'ma dive in it Pour up Kendrick (Drank) head shot (Drank) Kendrick Sit down (Drank) stand up Kendrick (Drank) Pass out (Drank) wake up Kendrick (Drank) Faded (Drank) faded (Drank) Kendrick Okay now open your mind up and listen me Kendrick Kendrick I am your conscience if you do not hear me Kendrick Then you will be history Kendrick Kendrick I know that you're nauseous right now Kendrick And I'm hopin' to lead you to victory Kendrick Kendrick If I take another one down Kendrick I'ma drown in some poison abusin' my limit Kendrick I think that I'm feelin' the vibe I see the love in her eyes Kendrick I see the feelin' Kendrick the freedom is granted As soon as the damage of vodka arrived This how you capitalize this is parental advice Kendrick Then apparently I'm over-influenced by what you are doin' Kendrick I thought I was doin' the most 'til someone said to me Kendrick Nigga Kendrick why you babysittin' only two or three shots? Kendrick I'ma show you how to turn it up a notch Kendrick First you get a swimming pool full of liquor then you dive in it Pool full of liquor Kendrick then you dive in it Kendrick I wave a few bottles Kendrick then I watch 'em all flock All the girls wanna play Baywatch Kendrick I got a swimming pool full of liquor and they dive in it Pool full of liquor Kendrick I'ma dive in it Pour up Kendrick (Drank) head shot (Drank) Kendrick Sit down (Drank) stand up Kendrick (Drank) Pass out (Drank) wake up Kendrick (Drank) Faded (Drank) faded (Drank) Kendrick I ride you ride bang Kendrick One chopper 100 shots bang Kendrick Hop out Kendrick do you bang? Kendrick Two chopper 200 shots bang Kendrick I ride you ride bang Kendrick One chopper 100 shots bang Kendrick Hop out Kendrick do you bang? Kendrick Two chopper 200 shots bang Kendrick Nigga Kendrick why you babysittin' only two or three shots? Kendrick I'ma show you how to turn it up a notch Kendrick First you get a swimming pool full of liquor then you dive in it Pool full of liquor Kendrick then you dive in it Kendrick I wave a few bottles Kendrick then I watch 'em all flock All the girls wanna play Baywatch Kendrick I got a swimming pool full of liquor and they dive in it Pool full of liquor Kendrick I'ma dive in it Pour up Kendrick (Drank) head shot (Drank) Kendrick Sit down (Drank) stand up Kendrick (Drank) Pass out (Drank) wake up Kendrick (Drank) Faded (Drank) faded (Drank) Kendrick Aw man… Kendrick where is she takin' me? Kendrick Where is she takin' me? Kendrick All I have in life is my new appetite for failure Kendrick And I got hunger pain that grow insane Kendrick Tell me do that sound familiar? Kendrick If it do then you're like me Makin' excuse that your relief Is in the bottom of the bottle and the greenest indo leaf Kendrick As the window open I release Everything that corrode inside of me Kendrick I see you jokin' why you laugh? Kendrick Don't you feel bad? Kendrick I probably sleep Kendrick And never ever wake up Kendrick never ever wake up Kendrick never ever wake up In God I trust Kendrick but just when I thought I had enough They stomped the homie out over a bitch? Kendrick K-dot you good blood? Kendrick Now we can drop ye Kendrick we can drop you back off That nigga's straight man that nigga ain't trippin Kendrick ' We gon' do the same ol' shit Kendrick I'ma pop Kendrick a few shots they gon' run they gon' run opposite ways Kendrick Fall right in Kendrick * Kendrick * Kendrick **'s lap Kendrick And he gon' tear they ass up simple as that Kendrick And I hope that bitch that set him up out there Kendrick We gon' pop that bitch too Kendrick Wait hold up Kendrick ayy I see somebody Aha! Kendrick Got them niggas K-Dot you good? Kendrick L Kendrick * Kendrick * Kendrick ** Kendrick you good? Kendrick Yeah blood Kendrick I'm good Kendrick – Kendrick Dave you good? Kendrick Dave? Kendrick Dave say Kendrick somethin' – Dave? Kendrick These bitch-ass niggas killed my brother! Kendrick I got Kendrick I got Kendrick I got Kendrick I Kendrick got— Loyalty got royalty inside my DNA Cocaine quarter piece got war and peace inside my DNA Kendrick I got power poison pain and joy inside my DNA Kendrick I got hustle though ambition flow inside my DNA Kendrick I was born like this since one like this immaculate conception Kendrick I transform like this perform like this was Yeshua new weapon Kendrick I don't contemplate Kendrick I meditate then off your fucking head This that put-the-kids-to-bed This that I got Kendrick I got Kendrick I got Kendrick I got— Kendrick Realness Kendrick I just kill shit ’cause Kendrick it's in my DNA Kendrick I got millions I got Kendrick riches buildin' in my DNA Kendrick I got dark Kendrick I got evil that rot inside my DNA Kendrick I got off Kendrick I got troublesome heart inside my DNA Kendrick I just win again then win again like Wimbledon Kendrick I serve Kendrick Yeah that’s him again Kendrick the sound that engine in is like a bird You see fireworks and Corvette tire skrrt Kendrick the boulevard Kendrick I know how you work Kendrick I know Kendrick just who you are See Kendrick you's a Kendrick you's Kendrick a you's a— Kendrick Bitch Kendrick your hormones prolly switch inside your DNA Problem is all that sucker shit inside your DNA Daddy prolly snitched heritage inside your DNA Backbone don't exist born outside a jellyfish Kendrick I gauge Kendrick See my pedigree Kendrick most definitely don't tolerate the front Shit Kendrick I've been through prolly offend you Kendrick this is Paula's oldest son I know Kendrick murder conviction Burners boosters burglars ballers dead redemption Scholars fathers dead with kids Kendrick and I wish I was fed forgiveness Kendrick Yeah Kendrick yeah Kendrick yeah Kendrick yeah Kendrick soldier Kendrick ’s DNA (soldier’s DNA) Kendrick Born inside the beast my expertise checked out in second grade Kendrick When I was 9 on cell motel we didn't have nowhere to stay At 29 I’ve done so well hit cartwheel in my estate Kendrick And I'm gon' shine like I'm supposed to antisocial extrovert Kendrick And excellent mean the extra work Kendrick And absentness what the fuck you heard Kendrick And pessimists never struck my nerve Kendrick And Nazareth gon’ plead his case Kendrick The reason my power's here on Kendrick earth Salute the truth when the prophet say I got loyalty got royalty inside my DNA Kendrick This is why I say that hip hop has done more damage to young African Americans than racism in recent years Kendrick I got loyalty got royalty inside my DNA Kendrick I live a better life Kendrick I'm rollin Kendrick ' several dice fuck your life Kendrick I got loyalty got royalty inside my DNA Kendrick I live a be- fuck your life Kendrick 5 4 3 2 1 Kendrick This is my heritage all Kendrick I'm inheritin Kendrick ' Money and power the maker of marriages Tell me somethin' Kendrick You mothafuckas can't tell me nothin' Kendrick I'd rather die than to listen to you Kendrick My DNA not for imitation Kendrick Your DNA an abomination Kendrick This how it is when you in the Matrix Dodgin' bullets reapin' what you sow And stackin' up the footage livin' on the go And sleepin' in a villa Sippin' from a Grammy walkin' in the buildin' Diamond in the ceilin' marble on the floors Beach inside the window peekin' out the window Baby in the pool godfather goals Only Lord knows I've been goin' hammer Dodgin' paparazzi freakin' through the cameras Kendrick Eat at Kendrick Four Daughters Brock wearin' sandals Yoga on a Monday stretchin' to Nirvana Watchin' all the snakes curvin' Kendrick all the fakes Kendrick Phone never on Kendrick I don't conversate Kendrick I don't compromise Kendrick I just penetrate Kendrick Sex money murder Kendrick — Kendrick these are the breaks These are the times level number 9 Kendrick Look up in the sky 10 is on the way Kendrick Sentence on the way killings on the way Motherfucker Kendrick I got winners on the way You ain't shit without a body on your belt Kendrick You ain't shit without a ticket on your plate Kendrick You ain't sick enough to pull it on yourself Kendrick You ain't rich enough to hit the lot and skate Tell me when destruction gonna be my fate Gonna be your fate gonna be our faith Peace to the world Kendrick let it rotate Sex money murder Kendrick —our DNA America Kendrick God bless you Kendrick if it's good to you America please take my hand Kendrick Can you help me underst— Kendrick New Kung Fu Kenny Throw a steak off the ark to a pool full of sharks Kendrick he'll take it Kendrick Leave him in the wilderness with a sworn nemesis he'll make it Take the gratitude from him Kendrick I bet he'll show you somethin' Kendrick whoa Kendrick I'll chip a nigga lil' bit of nothin' Kendrick I'll chip a nigga lil' bit of nothin' Kendrick I'll chip a nigga lil' bit of nothin' Kendrick I'll chip a nigga then throw the blower in his lap Kendrick Walk myself to the court like \"Bitch Kendrick I did that! Kendrick \" Kendrick X-rated Johnny don't wanna go to school Kendrick no mo' Kendrick no mo' Johnny said books ain't cool no mo' (no mo') Kendrick Johnny wanna be a rapper like his big cousin Kendrick Johnny caught a body yesterday out hustlin' Kendrick God bless America Kendrick you know we all love him Yesterday Kendrick I got a call like from my dog Kendrick like 101 Said they killed his only son because of insufficient funds Kendrick He was sobbin' Kendrick he was mobbin' way belligerent and drunk Talkin' out his head philosophin' on what the Lord had done Kendrick He said: \"K-Dot can you pray for me? Kendrick It been a fucked up day for me Kendrick I know that you anointed show me how to overcome. Kendrick \" Kendrick He was lookin' for some closure Hopin' I could bring him closer To the spiritual my spirit do no better Kendrick but I told him \"I can't sugarcoat the answer for you this is how I feel: If somebody kill my son that mean somebody gettin' killed. Kendrick \" Tell me what you do for love loyalty and passion of All the memories collected moments you could never touch I'll wait in front a nigga's spot and watch him hit his block Kendrick I'll catch a nigga leavin' service if that's all I got Kendrick I'll chip a nigga then throw the blower in his lap Kendrick Walk myself to the court like Kendrick \"Bitch I did that! Kendrick \" Kendrick Ain't no Black Power when your baby killed by a coward I can't even keep the peace don't you fuck with one of ours Kendrick It be murder in the street Kendrick it be bodies in the hour Kendrick Ghetto bird be on the street paramedics on the dial Kendrick Let somebody touch my momma Kendrick Touch Kendrick my sister touch my woman Kendrick Touch Kendrick my daddy touch my niece Touch Kendrick my nephew touch my brother Kendrick You should chip a nigga then throw the blower in his lap Matter fact Kendrick I'm 'bout to speak at this convention Kendrick Call you back— Kendrick Alright kids Kendrick we're gonna talk about gun control (Pray for me) Kendrick Damn! Kendrick It's not a place This country is to me a sound Of drum and bass Kendrick You close your eyes to look around Hail Mary Jesus and Joseph Kendrick The great American flag is wrapped in drag with explosives Compulsive disorder sons and daughters Barricaded blocks and borders Kendrick Look what you taught us! Kendrick It's murder on my street your street back streets Wall Street corporate offices Kendrick Banks employees and bosses with Homicidal thoughts; Donald Trump's in office Kendrick We lost Barack and promised to never doubt him again Kendrick But is America honest or do we bask in sin? Kendrick Pass the gin Kendrick I mix it with American blood Kendrick Then bash him in you Crippin' or you married to Blood? Kendrick I'll ask again—oops accident Kendrick It's nasty when you set us up Kendrick Then roll the dice then bet us up You overnight the big rifles then tell Fox to be scared of us Kendrick Gang members or terrorists Kendrick et cetera et cetera America's reflections of me Kendrick that's what a mirror does Kendrick It's not a place This country is to me a sound Of drum and bass Kendrick You close your eyes to look ar— Kendrick Uh me and my niggas tryna get it ya bish (ya bish) Kendrick Hit the house lick: tell me is you wit' it ya bish? Kendrick (ya bish) Kendrick Home invasion was persuasive (was persuasive) Kendrick From nine to five I know it's vacant ya bish (ya bish) Kendrick Dreams of livin' life like rappers do (like rappers do) Kendrick Back when condom wrappers wasn't cool (they wasn't cool) Kendrick I fucked Sherane and went to tell my bros (tell my bros) Kendrick Then Usher Raymond \"Let It Burn\" came on (\"Let Burn\" came on) Kendrick Hot sauce all in our Top Ramen Kendrick ya bish (ya bish) Kendrick Park the car Kendrick then we start rhymin' ya bish (ya bish) Kendrick The only thing we had to free our mind (free our mind) Kendrick Then freeze that verse when we see dollar signs (see dollar signs) Kendrick You lookin' like a easy come-up ya bish (ya bish) Kendrick A silver spoon I know you come from ya bish (ya bish) Kendrick And that's a lifestyle that we never knew (we never knew) Go at a reverend for the revenue Kendrick It go Halle Berry or hallelujah Kendrick Pick Kendrick your poison tell me what you doin' Kendrick Everybody gon' respect the shooter Kendrick But the one in front of the gun lives forever (The one in front of the gun forever) Kendrick And I been hustlin' all day This-a-way that-a-way Kendrick Through canals and alleyways just to say Money trees is the perfect place for shade Kendrick And that's just how I feel nah Kendrick nah Kendrick A dollar might just fuck your main bitch Kendrick That's just how I feel nah Kendrick A dollar might say fuck them niggas that you came with Kendrick That's just how I feel nah Kendrick nah Kendrick A dollar might just make that lane switch Kendrick That's just how I feel nah A dollar might turn to a million and we all rich Kendrick That's just how I feel Dreams of livin' life like rappers Kendrick do (like rappers do) Bump that new E-40 after school (way after school) Kendrick You know “ Kendrick Big Ballin' Kendrick With My Homies” (my homies) Kendrick Earl Stevens had us thinkin' rational (thinkin' rational) Kendrick Back to reality we poor ya bish (ya bish) Kendrick Another casualty at war Kendrick ya bish (ya bish) Kendrick Two bullets in my Uncle Tony head (my Tony head) Kendrick He said one day I'll be on tour Kendrick ya bish (ya bish) Kendrick That Louis Burgers never be the same (won't be the same) Kendrick A Louis belt will never ease that pain (won't ease that pain) Kendrick But I'ma purchase when that day is jerkin' (that day is jerkin') Kendrick Pull off at Church's with Pirellis skirtin' (Pirellis skirtin') Kendrick Gang signs out the window ya bish (ya bish) Kendrick Hopin' Kendrick all of 'em offend you ya bish (ya bish) Kendrick They say your hood is a pot of gold (a pot of gold) Kendrick And we gon' crash it when nobody's home Kendrick It go Halle Berry or hallelujah Kendrick Pick Kendrick your poison tell me what you doin' Kendrick Everybody gon' respect the shooter Kendrick But the one in front of the gun lives forever (The one in front of the gun forever) Kendrick And I been hustlin' all day This-a-way that-a-way Kendrick Through canals and alleyways just to say Money trees is the perfect place for shade Kendrick And that's just how I feel nah Kendrick nah Kendrick A dollar might just fuck your main bitch Kendrick That's just how I feel nah Kendrick A dollar might say fuck them niggas that you came with Kendrick That's just how I feel nah Kendrick nah Kendrick A dollar might just make that lane switch Kendrick That's just how I feel nah A dollar might turn to a million and we all rich Kendrick That's just how I feel Be the last one out to get this dough? Kendrick No way! Kendrick Love one of you bucket-headed hoes? Kendrick No way! Kendrick Hit the streets then we break the code? Kendrick No way! Kendrick Hit the brakes when they on patrol? Kendrick No way! Kendrick Be the last one out to get this dough? Kendrick No way! Kendrick Love one of you bucket-headed hoes? Kendrick No way! Kendrick Hit the streets then we break the code? Kendrick No way! Kendrick Hit the brakes when they on patrol? Kendrick No way! Kendrick Imagine Rock up in them projects Where them niggas pick your pockets Santa Claus Kendrick don't miss them stockings Kendrick Liquors spillin' pistols poppin' Bakin' soda YOLA whippin' Kendrick Ain't no turkey on Thanksgivin Kendrick ' Kendrick My homeboy just dome'd a nigga Kendrick I just hope the Lord forgive him Pots with cocaine residue Every day I'm hustlin' What else is a thug to do When you eatin' cheese from the government? Kendrick Gotta provide for my daughter n'em Get the fuck up out my way Kendrick bish Got that drum Kendrick and I got them bands Just like a parade bish Drop that work up in the bushes Kendrick Hope Kendrick them boys don't see my stash Kendrick If they do tell the truth Kendrick This the last time you might see my ass From the gardens where the grass ain't cut Them Kendrick serpents Kendrick lurkin' Kendrick Blood Bitches Kendrick sellin' pussy niggas sellin' drugs Kendrick But it's all good Broken promises steal your watch Kendrick And tell you what time it is Take your J's and tell you to kick it where a FootLocker is In the streets with a heater under my Dungarees Dreams of me gettin' shaded under a money tree Kendrick It go Halle Berry or hallelujah Kendrick Pick Kendrick your poison tell me what you doin' Kendrick Everybody gon' respect the shooter Kendrick But the one in front of the gun lives forever (The one in front of the gun forever) Kendrick And I been hustlin' all day This-a-way that-a-way Kendrick Through canals and alleyways just to say Money trees is the perfect place for shade Kendrick And that's just how I feel K’s Kendrick Mom Kendrick : Kendrick just bring my car back man. Kendrick I called in for another appointment. Kendrick I figured you weren’t gonna be back here on time anyways. Kendrick Look shit shit Kendrick I just wanna get out the house man. Kendrick This man is on one he feelin' good as a motherfucker. Kendrick Shit I’m tryna get my thing goin' too. Kendrick Just bring my car back. Kendrick Shit he faded. Kendrick He feelin' good. Kendrick Look listen to him! Kendrick K’s Dad: Kendrick Girl girl Kendrick I want your body I want your body 'cause of that big ol’ fat ass. Kendrick Girl girl Kendrick I want your body I want your body 'cause of Kendrick that big ol’ fat ass Kendrick K’s Kendrick Mom Kendrick : See he high as hell. Kendrick Shit and he ain’t even trippin' off them damn dominoes anymore. Kendrick Just bring the car back! Kendrick K’s Dad Kendrick : Did somebody say dominoes? Kendrick I am a sinner who's probably gonna sin again Lord forgive me! Kendrick Lord forgive me! Kendrick Things Kendrick I don't understand Kendrick Sometimes I need to be alone Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick I can feel your energy from two planets away Kendrick I got my drink Kendrick I got my music Kendrick I would share it Kendrick but today I'm yelling Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Look inside of my soul and you can find gold and maybe get rich Look inside of your soul and you can find out it never exist I can feel the changes I can feel a new life I always knew life can be dangerous I can say that I like a challenge Kendrick and you tell me Kendrick it's painless Kendrick You don't know what pain is How can I paint this picture When the color blind is hangin' with you? Kendrick Fell on my face and awoke with a scar Another mistake livin' deep in my heart Kendrick Wear it on top of my sleeve in a flick Kendrick I can admit that it did look like yours Kendrick Why you resent every making of this? Kendrick Tell me your purpose is petty again Kendrick But even a small lighter can burn a bridge Kendrick Even a small lighter can burn a bridge I can feel the changes I can feel the new people around me just want to be famous Kendrick You can see that my city found me Then put me on stages to me that's amazin' To you Kendrick that's a quick check Kendrick With all disrespect let me say this Kendrick I am a sinner who's probably gonna sin again Lord forgive me! Kendrick Lord forgive me! Kendrick Things Kendrick I don't understand Kendrick Sometimes I need to be alone Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick I can feel your energy from two planets away Kendrick I got my drink Kendrick I got my music Kendrick I would share it Kendrick but today I'm yelling Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick I'm tryin' to keep it alive And not compromise the feeling we love Kendrick You're tryin' to keep it deprived And Kendrick only co-sign Kendrick what radio does Kendrick And I'm Kendrick lookin' right past you Kendrick We live in a world we live in a world on two different axles You live in a world Kendrick you livin' behind the mirror Kendrick I know what you scared of The feeling of feeling emotions inferior This shit is vital Kendrick I know you had to This shit Kendrick is vital Kendrick I know you had to Die in a pitiful vain Kendrick tell me a watch and Kendrick a chain Is way more believable give me a feasible gain Rather a seasonal name Kendrick I'll let the people know Kendrick this is somethin' Kendrick you can blame On yourselves you can remain stuck in a box Kendrick I'ma break out and then hide every lock Kendrick I'ma break out and then hide every lock Kendrick I can feel the changes I can feel the new people around me just want to be famous Kendrick You can see that my city found me Then put me on stages to me that's amazin' To you Kendrick that's a quick check Kendrick With all disrespect let me say this Kendrick I am a sinner who's probably gonna sin again Lord forgive me! Kendrick Lord forgive me! Kendrick Things Kendrick I don't understand Kendrick Sometimes I need to be alone Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick I can feel your energy from two planets away Kendrick I got my drink Kendrick I got my music Kendrick I would share it Kendrick but today I'm yelling Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick You ain't heard the Coast like this in a long time Kendrick Don't you see that long line? Kendrick And they waiting on Kendrick like the first and the fifteenth Kendrick Threes in the air Kendrick I can see you are in sync Kendrick Hide your feelings hide your feelings Kendrick Now what you better do I'll take your girlfriend and put that pussy on a pedestal Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Walk out the door and they scream it's alive My New Year's resolution is to stop all the pollution Talk too motherfuckin' much Kendrick I got my drink Kendrick I got my music Kendrick I say bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Bitch don't kill my vibe! Kendrick Ayy K-Dot get in the car nigga! Kendrick Come on we finna roll out! Kendrick Nigga Kendrick I got a pack of blacks and a beat CD Kendrick Get yo' freestyles ready! Kendrick Every second every minute Man Kendrick I swear that she can get it Say if you a bad bitch put your hands up high Hands up high hands up high Kendrick Tell 'em dim the lights down right now Kendrick Put me in the mood Kendrick I'm talkin' about dark room perfume go go Kendrick I recognize your fragrance Kendrick Hold up Kendrick you ain't never gotta say shit Uh Kendrick and I know your taste is A little bit hmm high maintenance Kendrick Uh everybody else Kendrick basic You live life on an everyday basis With poetic justice poetic justice Kendrick If I told you that a flower bloomed in a dark room Would you trust it? Kendrick I mean I write poems in these songs dedicated to you when You're in the mood for empathy Kendrick there's blood in my pen Kendrick Better yet where your friends and 'em? Kendrick I really wanna Kendrick know you all I really wanna show you off Fuck that pour up plenty of champagne Cold nights when you curse this name Kendrick You called up your girlfriends Kendrick And y'all curled in that little bitty Range Kendrick I heard that she wanna go and party she wanna go and party Nigga don't approach her with that Atari Nigga that ain't good game homie Kendrick sorry Kendrick They say conversation rule a nation I can tell Kendrick But I could never right my wrongs ' Kendrick Less Kendrick I write it down for real P.S Kendrick You can get it you can get it Kendrick You can get it you can get it Kendrick And I know just know Kendrick just know Kendrick just Know just know just what you want Poetic justice put it in a song alright Kendrick You can get it you can get it Kendrick You can get it you can get it Kendrick And I know just know Kendrick just know Kendrick just Know just know just what you want Poetic justice put it in a song Kendrick alright I really hope you play this 'cause ol' girl you test my patience Kendrick With all these seductive photographs Kendrick And all these one-off vacations you've been takin' Clearly a lot for me to take in it don't make sense Young East African girl you too busy fuckin' with your other man Kendrick I was tryna Kendrick put you on game Kendrick put you on a plane Kendrick Take you and your momma to the motherland Kendrick I could do it maybe one day Kendrick When you figure out you're gonna need someone When you figure out Kendrick it's alright here in the city Kendrick And you don't run from where we come from That sound like poetic justice poetic justice Kendrick You were so new to this life but goddamn you got adjusted Kendrick I mean I write poems in these songs dedicated to the fun sex Kendrick Your natural hair and your soft skin And your big ass in that sundress Kendrick ooh Good God Kendrick what you doin' that walk for? Kendrick When I see that thing move I just wish we would fight less and we would talk more Kendrick They say communication save relations I can tell Kendrick But I can never right my wrongs Kendrick Unless I write 'em down for real P.S You can get it you can get it Kendrick You can get it you can get it Kendrick And I know just know Kendrick just know Kendrick just Know just know just what you want Poetic justice put it in a song alright Kendrick You can get it you can get it Kendrick You can get it you can get it Kendrick And I know just know Kendrick just know Kendrick just Know just know just what you want Poetic justice put it in a song alright Kendrick Every time I write these words they become a taboo Makin' sure my punctuation curve every letter here's Kendrick true Livin' my life in the margin and that metaphor was proof Kendrick I'm talkin' poetic justice poetic justice Kendrick If I told you that a flower bloomed in a dark room Would you trust it? Kendrick I mean you need to hear this Love is not just a verb Kendrick it's you lookin' Kendrick in the mirror Love is not just a verb Kendrick it's you lookin' for it Kendrick maybe Call me crazy Kendrick we can both be insane Kendrick A fatal attraction is common and what we have common is pain Kendrick I mean you need to hear this love is not just a verb Kendrick And I can see power steerin' sex drive when you swerve I want that interference Kendrick it's coherent Kendrick I can hear it Kendrick Uh-huh Kendrick that's your heartbeat Kendrick It either caught me or it called me uh-huh Read slow Kendrick and you'll find gold mines in these lines Kendrick Sincerely yours truly and right Kendrick before you go blind P.S You can get it you can get it Kendrick You can get it you can get it Kendrick And I know just know Kendrick just know Kendrick just Know just know Kendrick just what you want Poetic justice put it in a song \"I'm gon' ask you one more time homie Where is you from? Kendrick Or it is a problem.\" Kendrick \" Kendrick Ayy you over here for Sherane homie? Kendrick \" Kendrick \" Kendrick Yo I don't care who this nigga over here for Kendrick If he don't tell me where he from it's a wrap! Kendrick I'm sorry.\" Kendrick \"Hol' up hol' up hol' up we gon' do it like this Kendrick okay? Kendrick I'ma tell you where I'm from okay? Kendrick You gon' tell me where you from okay? Kendrick Or where your grandma stay where your mama stay or where your daddy stay okay?\" Kendrick \" Kendrick Enough with all this talkin'. Kendrick \" Kendrick \"Matter of fact get out the van homie! Kendrick Get out the car before I snatch you out that motherfucker homie! Kendrick \" Kendrick I got a bone to pick I Kendrick don't want you monkey-mouth motherfuckers Sittin' in my throne again Kendrick Ayy ayy nigga Kendrick what's happenin'? Kendrick K-Dot back in the hood nigga! Kendrick I'm mad (He mad!) Kendrick but I ain't stressin' True friends Kendrick one question Bitch where you when I was walkin'? Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him Kunta black man taking no losses Kendrick oh yeah Kendrick Bitch where you when I was walkin'? Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him Kendrick When you got the yams—(What's the yams?) Kendrick The yam is the power that be Kendrick You can smell it when I'm walkin' down the street Kendrick (Oh yes we can Kendrick oh yes Kendrick we can) Kendrick I can dig rappin' but a rapper with a ghost writer? Kendrick What the fuck happened? Kendrick (Oh no!) Kendrick I swore I wouldn't tell but Kendrick most of y'all sharing bars Kendrick Like you got the bottom bunk in a two-man cell (A two-man cell) Kendrick Something's in the water Kendrick (Something's in the water) Kendrick And if I gotta brown-nose for some gold Kendrick Then I'd rather be a bum than a motherfuckin' baller Kendrick (Oh yeah!) Kendrick Bitch where you when I was walkin'? Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him King Kunta black man taking no losses Kendrick oh yeah Kendrick Bitch where you when I was walkin'? Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him Kendrick When you got the yams—(What's the yams?) Kendrick The yam brought it out of Richard Pryor Manipulated Bill Clinton with desires 24/7 365 days times two Kendrick I was contemplatin' gettin' off stage Kendrick Just to go back to the hood Kendrick see my enemy and say… Kendrick (Oh yeah) Kendrick Bitch where you when I was walkin'? Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him King Kunta black man taking no losses Kendrick oh yeah Kendrick Bitch where you when I was walkin'? Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him Kendrick You goat-mouth mammyfucker Kendrick I was gonna kill a couple rappers Kendrick but they did it to themselves Kendrick Everybody's suicidal Kendrick they ain't even need my help Kendrick This shit is elementary Kendrick I'll probably go to jail Kendrick If I shoot at your identity and bounce to the left Stuck a flag in my city Kendrick everybody's screamin' Kendrick \"Compton! Kendrick \" Kendrick I should probably run for mayor when I'm done to be honest Kendrick And I put that on my momma and my baby Kendrick boo too 20 million walkin' out Kendrick the court buildin' woo-woo! Kendrick Aw yeah fuck the judge I made it past 25 Kendrick and there I was A little nappy-headed nigga with the world behind him Life ain't shit but a fat vagina Screamin' Kendrick \" Kendrick Annie are you okay? Kendrick Annie are you okay? Kendrick \" Kendrick Limo tinted with the gold plates Kendrick Straight from the bottom this the belly of the beast From a peasant to a prince to a motherfuckin' king Kendrick (Oh yeah) Bitch where you when I was walkin'—*Gunshot Kendrick * Kendrick By the time you hear the next pop Kendrick The funk shall be within you—*Gunshot Kendrick * Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him King Kunta black man taking no losses Kendrick oh yeah Kendrick Bitch where you when I was walkin'? Kendrick Now I run the game got the whole world talkin' King Kunta everybody wanna cut the legs off him Funk funk funk funk funk funk funk funk funk funk funk Kendrick We want the funk We want the funk Kendrick Now if I give you the funk you gon' take it? Kendrick We want the funk Kendrick Now if I give you the funk you gon' take it? Kendrick We want the funk Kendrick Now if I give you the funk you gon' take it? Kendrick We want the funk Kendrick Do you want the funk? Kendrick We want the funk Kendrick Do you want the funk? Kendrick We want the funk Kendrick Now if I give you the funk you gon' take it? Kendrick We want the funk I remember you was conflicted misusing your influence Damn love or lust Kendrick Damn all of us Give me a run for my money Kendrick There is nobody no one to outrun me (Another world premiere!) Kendrick So give me a run for my money Sippin' bubbly feelin’ lovely livin' lovely Kendrick Just love me Kendrick I wanna Kendrick be with you Kendrick ayy Kendrick I wanna be with Just love me Kendrick just love me Kendrick just love Kendrick I wanna Kendrick be with you Kendrick ayy Kendrick I wanna be with Love me Kendrick I wanna Kendrick be with you Kendrick Love me Kendrick just love me Kendrick If I didn't ride blade on curb would you still love me? Kendrick If I minimized my net-worth would you still love me? Kendrick Keep it a hundred I’d rather you trust me than to love me Kendrick Keep it a whole one hund': don't got you Kendrick I got Kendrick nothin' Kendrick Ayy Kendrick I got Kendrick somethin' Hol' up Kendrick we gon' function no assumptions Kendrick Feelin' like Tyson with it Knock it out twice Kendrick I’m with it Only for the night Kendrick I’m kiddin' Only for life Kendrick yeah only for life Kendrick yeah Kendrick Only for life let’s get it Hit Kendrick that shoulder lean Kendrick I know what comin' over me Kendrick Backstroke oversea Kendrick I know what you need Already on ten all money come in All feeling go out Kendrick this feeling don't drought This party won't end Kendrick If I didn’t ride blade on curb would you still love me? Kendrick If I minimized my net-worth would you still love me? Kendrick Keep it a hundred Kendrick I'd rather you trust me than to love me Keep it a whole one hund': Kendrick don't got you Kendrick I got Kendrick nothin' Kendrick Give me a run for my money Kendrick There is nobody no one to outrun me Kendrick So give me a run for my money Sippin' bubbly feelin' lovely livin' lovely Kendrick Just love me Kendrick I wanna Kendrick be with you Kendrick ayy Kendrick I wanna be with Just love me Kendrick just love me Kendrick just love Kendrick I wanna Kendrick be with you Kendrick ayy Kendrick I wanna be with Love me Kendrick I wanna Kendrick be with you Kendrick Love me Kendrick just love me Kendrick I'm on the way We ain't got no time to waste Poppin' your gum on the way (love me) Kendrick Am I in the way? Kendrick I don't wan' pressure you none I want your blessing today (love me) Kendrick Oh by the way open the door by the way Kendrick Told you that I'm on the way (love me) Kendrick I'm on the way I know Kendrick connection is vague Pick up the phone for me Kendrick babe Dammit we jammin' Bad attitude from yo' nanny Curves and your hips from yo' mammy Remember Gardena Kendrick I took the studio camera Kendrick I know Kendrick Top will be mad at me Kendrick I had to do it Kendrick I want your body your music Kendrick I bought the big one to prove it Kendrick Look what you made Told you that I'm on the way Kendrick I'm like a exit away Kendrick yep Kendrick If I didn't ride blade on curb would you still love me? Kendrick If I minimized my net-worth would you still love me? Kendrick Keep it a hundred Kendrick I'd rather you trust me than to love me Keep it a whole one hund': Kendrick don't got you Kendrick I got Kendrick nothin' Kendrick Give me a run for my money Kendrick There is nobody no one to outrun me Kendrick So give me a run for my money Sippin' bubbly feelin' lovely livin' lovely Kendrick Just love me Kendrick I wanna Kendrick be with you Kendrick ayy Kendrick I wanna be with Just love me Kendrick just love me Kendrick just love me Kendrick I wanna Kendrick be with you Kendrick ayy Kendrick I wanna be with Love me Kendrick I wanna Kendrick be with you Kendrick Love me just love me Kendrick When I was little my father was famous GZA He was the greatest samurai in the empire GZA And he was the Shogun's decapitator GZA He cut off the heads of a hundred and thirty-one lords GZA It was a bad time for the empire GZA The Shogun just stayed inside his castle and he never came out GZA People said his brain was infected by devils My father would come home GZA he would forget about the killings He wasn't scared of the Shogun but the Shogun was scared of him GZA Maybe that was the problem GZA Then one night the Shogun sent his ninja spies to our house GZA They were supposed to kill my father but GZA they didn't GZA That was the night everything changed See GZA sometimes You gotta flash 'em back GZA See niggas don't know where this shit started GZA Y'all know where it came from GZA I'm saying we gonna take y'all back to the source GZA Do the knowledge yo GZA When the MCs came to live out the name and to perform Some had to snort cocaine to act insane before Pete rocked it on Now on with the mental plane to spark the brain with the building to be born GZA Yo RZA flip the track with the what to cut Fake niggas get flipped GZA In mic fights I swing swords and cut clowns GZA Shit is too swift to bite you record and write it down GZA I flow like the blood on a murder scene like a syringe On some wild out shit to insert a fiend GZA But it was your op to shop stolen art Catch a swollen heart from not rolling smart GZA I put mad pressure on phony wack rhymes that get hurt Shit's played like zodiac signs on sweatshirts GZA That's minimum and feminine like sandals My minimum table stacks a verse on a gamble Energy GZA is felt once the cards are dealt With the impact of roundhouse kicks from black belts That attack the mic-fones like cyclones or typhoon I represent from midnight to high noon GZA I don't waste ink nigga GZA I think I drop megaton bombs more faster than you blink Cause rhyme thoughts travel at a tremendous speed Clouds of smoke of natural blends of weed Only under one circumstance GZA that's if I'm blunted Turn GZA that shit up my Clan in the front want it GZA Now when the MCs came to live out the name and to perform Some had to snort cocaine to act insane before Pete rocked it on Now on with the mental plane to spark the brain with the building to be born GZA Yo RZA flip the track with the what to cut GZA I'm on a mission that niggas say is impossible GZA But when I swing my swords they all choppable GZA I be the body dropper GZA the heartbeat stopper Child educator plus head amputator GZA 'Cause niggas styles are old like Mark 5 sneakers Lyrics are weak like clock radio speakers Don't even stop in my station and attack While your plan failed get derailed like Amtrak GZA What the fuck for? GZA Down by law I make law GZA I be justice GZA I sentence that ass two to four Round GZA the clock that state pen time check it GZA But the pens I be sticking with you can't state the crime Came through with the Wu slid off on the DL GZA I'm low-key like seashells I rock these bells GZA Now come aboard GZA it's GZA Medina bound Enter the chamber GZA and it's a whole different sound GZA It's a wide entrance small exit like a funnel GZA So deep it's picked up on radios in tunnels GZA Niggas are fascinated how the shit begin GZA Get vaccinated my logo is branded in your skin When the MCs came to live out the name and to perform Some had to snort cocaine to act insane before Pete rocked it on Now on with the mental plane to spark the brain with the building to be born GZA Yo RZA flip the track with the what to cut Choose the sword and you will join me Choose the ball and you join your mother... GZA in death You don't understand my words GZA but you must choose (Baby gurgling) GZA So... come GZA boy choose life or death GZA The only man a ho wait for GZA Is the sky-blue Bally kid in '83 rocked Tale Lords GZA My Memorex performed tape decks my own Fostex Watch out for Haiti bitches I heard they throw hex Yo Wu GZA whole platoon is filled with raccoons Corner-sitting wine niggas sipping Apple Boone GZA This ain't no white cartoon GZA 'Cause GZA I be ducking crazy spades GZA The kid hold white shit like blacks rock ashy legs Why is the sky blue? GZA Why is water wet? GZA Why did Judas rat to Romans while Jesus slept? GZA Stand up you're out of luck like two dogs stuck Ironman be sipping rum out of Stanley Cups unflammable Noriega aiming nozzles GZA stay windy in GZA Chicago Spine-tingle mind boggles Kangols in GZA rainbow colors promoters try to hold dough GZA Give me mine before Po wrap you up in so-and GZA -so I ran the Dark Ages Constantine the Great Henry the 8th Built with Genghis Khan GZA the red suede GZA Wally Don GZA I judge wisely as if nothing ever surprise me Lounging between two pillars of ivory GZA I'm lively GZA my dome piece is like building stones in Greece GZA Our poems are deep from ancient thrones I speak I'm overwhelmed as my mind roams the realm My eye's the visions memory is the film Others act sub-tile GZA but they fragile above cloud GZA They act wild and couldn't budge a crowd GZA No matter how loud they get though they growl and spit Clutch they fists and throw up signs like a Crip And throw all types of fit GZA I leave them split like ass cheeks and ragged pussy lips GZA Aiyo camouflage chameleon ninjas scaling your building No time to grab the gun they already got your wife and children GZA A hit was sent from the President to raid your residence Because you had secret evidence and documents On how they raped the continents and lynched the prominent Dominant Islamic Asiatic black Hebrew GZA The year 2002 the battle's filled with the Wu Six million devils just died from the Bubonic Flu Or the Ebola virus under the reign of King Cyrus GZA You can see the weakness of a man right through his iris Unloyal snakes get thrown in boiling lakes of hot oil Up boils your skin chickenheads getting slim like GZA Olive Oyl Only plant the seed deep inside fertile soil Fortified with essential vitamin and minerals GZA Use the sky for a blanket stuffing clouds inside my pillow Rolling with the Lamb Twelve GZA Tribes a 144 000 chosen Protons Electrons GZA Always Cause GZA Explosions GZA The banks a G all CREAM downs a bet Money feed good opposites off the set GZA It ain't hard to see my seeds need God-degree GZA I got mouths to feed unnecessary beef is more cows to breed GZA I'm on some tax-free shit by any means Whether bounty-hit scheme or some counterfeit CREAM GZA I learned much from such swift cons who run scams Veterans got the game spiced like ham GZA And from that sons are born and guns are drawn Clips are fully loaded and then blood floods GZA the lawn Disciplinary action was a fraction of strength That made me truncate the length one-tenth Woofers thump tweeters hiss like air pumps RZA shaved the track niggas caught razor bumps Scarred trying to figure who invented This unprecedented opium-scented dark-tinted GZA Now watch me blow him out his shoes without clues GZA 'Cause GZA I won't hesitate to detonate GZA I'm short fused Special technique fuck that Special technique of shadowboxing Goddamn GZA The GZA Goddamn GZA The GZA Goddamn pledge allegiance to the Hip Hop Method Goddamn GZA I pledge allegiance to the Hip Hop Maximillion Maximillion Johnny Blaze GZA I pledge allegiance to the Hip Hop Johnny Blaze Maximillion Maximillion GZA I breaks it down to the bone gristle GZA Ill speaking scud missile heat seeking Johnny Blazing nightmares like Wes Craven Niggas gunning my third eye seen it coming before it happen GZA You know about them fucking Staten kids GZA they smashing Everything huh in any shape form or fashion GZA Now everybody talking bout they blasting hmmm GZA Is you busting steel or is you flashing? GZA Hmmm Talking out your asshole You should have learnt about the flow and peasy afro Ticallion stallion GZA chinky-eye and snot-nosed GZA From my naps to the bunion on my big toe I keeps it moving GZA know just what the fuck I'm doing Rap insomniac fiend to catch a nigga snoozing Slip the cardiac arrest me GZA exorcist Hip Hop possess me Crunch a nigga like a Nestle you know GZA my STEEZ Burning to the third degree sneaky ass alley cat top pedigree GZA The head toucher industry party bum rusher GZA You don’t like it? GZA Dick up in you fuck ya! GZA Allow me to demonstrate That's right GZA you corny-ass GZA The skill of Shaolin rap motherfuckers The special technique better go back and check Of shadowboxing your fucking stacks GZA Shadowboxing cause your naps ain't nappy enough GZA And your beats ain't rugged enough bitch GZA I slayed MCs back in the rec room era GZA My style broke motherfucking backs like Ken Patera GZA Most rap niggas came loud but unheard GZA Once I pulled out round 'em off to the nearest third Check these non-visual niggas with tapes and a portrait Flood the seminar trying to orbit this corporate Industry GZA but what them niggas can't see GZA Must break through like the Wu unexpectedly GZA Protect Ya Neck GZA my sword still remains imperial Before I blast the mic RZA scratch off the serial We reign all year round from June to June GZA While niggas bite immediately if not soon Set the lynching and form the execution date As this two thousand beyond slang suffocate Amplify sample through vacuum tubes compressions Cause RZA to charge niggas twenty Gs a session When my mind start to clicking and the strategy Is mastered the plot thicken GZA This be that Wu shit GZA I don't give a cotton-pickin' FUCK About a brother tryna size a nigga up GZA I hold my own Hard-hat protect your dome Look at GZA Mama baby boy acting GZA like he grown GZA No time for sleep GZA I gets deep as a baritone Killa bee that be holding down his honeycomb lounging son Wu brother number one GZA protect your neck Flying guillotines here GZA they come GZA bloody bastards GZA Hard times and killer tactics GZA spitting words GZA plus Semi-automatic slurs peep the graphic Novel from the genie bottle hit the clutch GZA Shift the gear now full throttle time to bungee To the next episode GZA I keeps it grungy Hand on my nut sack and spitting lunghies At a wack nigga dat don't understand the fact When it come to RZA tracks GZA I don't know how to act Real rap from the Stat Killa Hill Projects How to be exact GZA break it down GZA All in together now GZA Things are getting good looking better now ... GZA And some other shit Allow me to demonstrate the skill of Shaolin Sha-shadowboxing the special technique of shadowboxing GZA Oh mad one we see your trap GZA You can never escape your fate Submit with honor to a duel with my son GZA I agree GZA I see you're using an old style I wondered where you'd learned it from GZA You know very well it's yours too GZA Heh GZA I had forgotten will you show me? GZA And what have you come for? GZA You come here since you're so interested - fight GZA me Yo picture bloodbaths in elevator shafts GZA Like these murderous rhymes tight from genuine craft Check the print it's where veterans spark the letterings Slow-moving MCs is waiting for the editing GZA The liquid soluble that made up the chemistry GZA A gaseous element that burned down your ministry Herbal vapors and biblical papers Smoking Exodus every square yard is plush Fuck the screw-faced photo sessions facial expression GZA Leaves impression try to keep a shark nigga guessing Give crazy shouts son here's the outcome Cut across the semi-gloss rhymes you floss Shit is outdated just like neckloads of Sterlings Suede-fronts GZA bell-bottoms and tri-colored Shearlings GZA I ain't particular GZA I bang like vehicular homicides GZA On July 4th from Bed-Stuy Where money don't grow on trees and there's thieving MC's Who cut-throat to rake leaves GZA They can't breathe blood splash rushing fast Like running rivers GZA I be that whiskey in your liver Duel of the Iron Mic! GZA It's the fifty-two fatal strikes! GZA This is not a '85 affair made clear When the Gods get on to perform storms blew up Wu's up causing the crowd to self-destruct Killer Beez are stinging something while I reveal Science GZA that's heavily guarded by the culprit GZA Bombing your barracks with aerodynamic Swordplay poison darts by the doorway GZA Minds that's laced with explosive doses GZA Damaging lyrical launcher Lunge at the youthful offender then injure Any contender testing the murderous Master Could lead to disaster dynamite thoughts Explode through your barrier GZA rips the retina Who can withstand the astonishing punishing Stings to the sternum shocked in the Hip Hop livestock Seeking for a serum to cure 'em Adults kill for drugs plus the young bucks bust GZA Ducking handcuffs throats get cut when dough rush Out of town foes look shook but still pose We move like real pros through the streets we stroll GZA Bullet holes lace the windows in one-six- GZA oh GZA So control the avenues that's the dream that's sold GZA Building lobbies are graveyards for small-timers Bitches caught in airports GZA Ki's in they GZA vaginas GZA No peace yo GZA the police mad corrupt GZA You get bagged up depending if you're passing the cut GZA Plus shorty's not a shorty GZA no more he's living heartless GZA Regardless of the charges claims to be the hardest Individual critical thoughts criminal minded Blinded by illusion finding it confusing Duel of the Iron Mic! GZA It's the fifty-two fatal strikes! GZA Duel of the Iron Mic! GZA It's the fifty-two fatal strikes! GZA Huh Master he must be dreaming heh GZA Well if he is dreaming then he must be asleep GZA And if he's asleep then I will wake him up! GZA At the height of their fame and glory they turned on one another GZA Each struggling in vain for ultimate supremacy GZA In the passion and depth of their struggle GZA The very art that had raised them to such Olympian heights was lost Their techniques vanished “ GZA I had a bad dream GZA ” “Don’t be afraid bad dreams are only dreams” “ GZA What a time you chose to be born in” Babies crying brothers dying and brothers getting knocked Shit is deep on the block and you got me locked down In this cold cold world GZA It was the night before New Year’s And GZA all through the fucking projects Not a handgun was silent not even a Tec Outsiders were stuck by enemies who put fear And blasted on the spot before the pigs were there GZA You know hoods robbers snipers new in sight GZA Fuck blue and white GZA They escape before them flash the fucking lights Gunshots shatter GZA first-floor window panes Shells hit the ground and blood stained the dice game Whether pro-calisthenic any style you set it GZA Beat niggas GZA toothless physically cut up like gooses GZA But with iron on the sides thugs took no excuses GZA Therefore your fifty-two handblocks was useless Links was snatched off necks scars on throats Jackets took after bullet rips through coats Against those who felt the cold from the steel made ‘em fold GZA And squeal once the metal hit the temple of his grill Construction worker who was caught for his bomber GZA No time to swing the hammer that was hanging from his farmers GZA And it’s bugged how some niggas catch slugs And pockets dug from everything except check stubs GZA And it does sound ill like wars in Brownsville Or fatal robberies in Red Hook where feds look For fugitives to shoot cops niggas laying on roof tops For his cream GZA he stashed in a shoebox GZA But he was hot and the strip was filled with young killers GZA You do GZA n’t suspect so cops creep like caterpillars GZA And born thieves stay hooded with extra bullets Those who try to flee GZA they hit the vertebrae Increase the murder rate Similar to hitmen who pull out Tecs and then Drop those who crack like tacos from Mexican Rapid like recipients cashing checks again Back to the motherfucking spot on Lexington Babies crying brothers dying and brothers getting knocked Shit GZA is deep on the block and you got me locked down In this cold cold world GZA We be running from the cops busting off shots GZA Shit is deep on the block and you got me locked down In this cold cold world Babies crying brothers dying and brothers getting knocked GZA Shit is deep on the block and you got me locked down In this cold cold world GZA We be running from the cops busting off shots GZA Shit is deep on the block and you got me locked down In this cold cold world Yo; GZA no time to freeze undercovers ease up in Grand Prixs And seize packages and pocket the currency Cliques control strips full clips are sprayed Yellow tape barricades sidewalks where bodies lay Madness strikes at twelve o’clock midnight Stick-up kids on the ground broke the staircase light GZA And I stays harassed scrambling for petty cash Jakes on my ass young bucks is learning fast Three-Fifteen-Sevens and Forty-Fours Bought inside corner stores provide sparks for wars Hospital floors surrounded by the law Homicide questioning while the Jakes guard the door GZA My hood stay tense loyalty puts strength in my team GZA ‘ GZA Cause niggas’ main concern is CREAM GZA Some niggas in the jet-black Galant Shot up the Chinese restaurant for this kid named Lamont GZA I thought he was dead GZA but instead he missed the kid And hit a twelve-year-old girl in the head and then fled Tactical narcotic task force back off fast GZA ‘ GZA Cause the crime boss is passing off cash Extortions for portions of streets causes beef Having followers of Indians trying to play Chief GZA You witness the saga casualties and drama Life GZA is a script; I’m not an actor but the author Of a modern-day opera where the main character Is presidential papers the dominant factor GZA You know you had me With your sensuous charm GZA But you looked so alarmed As I walked on by Babies crying brothers dying and brothers getting knocked Shit GZA is deep on the block and you got me locked down In this cold cold world GZA We be running from the cops busting off shots GZA Shit is deep on the block and you got me locked down In this cold cold world Babies crying brothers dying and brothers getting knocked GZA Shit is deep on the block and you got me locked down In this cold cold world GZA We be running from the cops busting off shots GZA Shit is deep on the block and you got me locked down In this cold cold world Yo (yeah) check it out GZA son check it out son Yo GZA (Wu can I get a soo? GZA ) live in the place to be GZA You got the capital G Z to the A MC Givin' GZA a mad shout out to the Ranch Crew from the old school GZA And we gonna take y' GZA all back know what I'm sayin'? GZA Lyrical sorcerers right here the fathers the cream of the crop son (Yo check it) GZA Well if you livin' in the world today You be hearin' the slang that the Wu-Tang say Niggas that front we don't have 'em GZA So we blast 'em GZA alright GZA well GZA ok GZA Well if you like the way it sound then clap man GZA And if the women love it too well then raise your hands GZA But only raise your hands if you're sure Punk niggas shatter like GZA a glass jaw break it GZA My rhyme gross weight vehicle combination Was too heavy for the Chevy's is chased out the station Double-edged was the guillotine that beheaded it Gassed up fuckin' with some regular unleaded shit Heads roll on hillsides behind ropes that Bind-in X marks the spot on the scope Heavily armed military is necessary GZA it's GZA a gamble MCs bet they best at every Powerful parable ditties might harm If tampered with set off and strike like pipe bombs Flashbacks to the \"Duel of the Iron Mic GZA \" Look out for these fatal flying spikes of massive Sleep-holds put strangle on commercial angle Microphone cords tangled from being Star Spangled GZA Now who could ever say they heard of this? GZA My motherfuckin' style is mad murderous GZA Well if you like the way it sound then clap man GZA And if the women love it too well then raise your hands GZA But only raise your hands if you're sure Punk niggas shatter like GZA a glass jaw break it GZA Well if you livin' in the world today You be hearin' the slang that the Wu-Tang say Niggas that front we don't handle 'em GZA So we blast 'em GZA alright GZA well GZA okay GZA Well what you know about MCin'? GZA Yo I know a lot GZA Well can you demonstrate somethin' nigga? GZA Huh GZA I'd rather GZA not I'm talkin GZA 'bout GZA stacks cousin Nigga GZA that's what I got Cash Rules the world GZA Well Cash Rules the spot My preliminary attack keep cemeteries packed Of niggas who think it ain't like that MCs are gunned down like being run down with mad trucks GZA Then God struck religious niggas call it \"bad luck\" Rap celeb you got caught up in the web GZA Now bees are stingin' yo that niggas em-singin' GZA I'm just swingin' swords strictly based on keyboards Unbalanced like elephants and ants on see-saws GZA I throw raps GZA that attack like the Japs on Pearl Harbor MCs be out like bank robbers Fleeing the scene to be a sole survivor DJ the getaway driver Tried to dip GZA but he dive I socialize on vocal vibes GZA On tracks stabbed up with razor-sharp knives Criminal subliminal minded rappers find it Hard to define it when narrow is the gate For fat tapes and then played out and out of date GZA Then I construct my thoughts on site to renovate GZA And from that point the God made a statement Draftin' tracements replacements in basements Materials in sheet-rock to sound proof the beatbox GZA And microscopic optics received through the boxes Obnoxious topic major labels flavor tropical Punchlines GZA that's unstoppable Ring like shots from Glocks that attract cops Around the clubs and try to shut down the hip-hop GZA But we only increase if everything is peace Father GZA You See King the police GZA Well if you livin' in the world today You be hearin' the slang that the Wu-Tang say Niggas that front we don't have 'em GZA So we blast 'em GZA alright GZA well GZA ok GZA Well if you like the way it sounds then GZA clap man GZA And if the women love it too well then raise your hands GZA But only raise your hands if you're sure Punk niggas shatter like GZA a glass jaw break it GZA Well if you livin' in the world today You be hearin' the slang that the Wu-Tang say Niggas that front we don't have 'em GZA So we blast 'em GZA alright GZA well ok GZA The Wu-Tang say We don't handle 'em GZA alright GZA well okay GZA The world today the Wu-Tang say Niggas that front we don't handle 'em GZA So we blast 'em GZA alright GZA well okay GZA Aiyo shorty yo GZA that's my word GZA Oh y' GZA all smelling y' GZA all piss now y' GZA all think y'all gold GZA Yo anybody get caught flinging over here GZA I'm returning 'em GZA that's my word they getting blasted Anything from 220 to 140 GZA that's mine GZA Y'all need to step the fuck off Y'all niggas GZA ain't crazy for real Yo the fiends ain't coming fast enough GZA There is no cut that's pure enough GZA I can't fold GZA I need gold I re-up and reload GZA Product must be sold to you GZA I'm deep down in the back streets in the heart of Medina GZA About to set off something more deep than a misdemeanor GZA Under the subway waiting for the train to make noise GZA So I can blast a nigga and his boys for what? GZA He pushed up on the block and made the dope sales drop Like the crash in the Dow Jones stock I had a connect to cross-sales to catch more mill's Than ho-bitches got birth control pills GZA I'm in the park setting up a deal over blunt fire Bum nigga sleeping on the bench GZA they had him wired Peeped my convo the address of my condo GZA And how I changed a nigga name to John Doe GZA And while we set up camp we got vamped Put the stake through his heart I ripped his fucking fangs apart GZA Snake got smoked on the set like GZA Brandon Lee Blown out the frame like Pan Am Flight 103 GZA He got swung on his lungs was torn GZA A kingpin just castled with his rook and lost a pawn GZA A regular on the block that played lookout For preying predator with a Glock he should have took out No neighbourhood is rough enough There is no clip that's full enough GZA I can't fold GZA I need gold I re-up and reload GZA Product must be sold to you GZA Fiends ain't coming fast enough GZA There is no cut that's pure enough GZA I can't fold GZA I need gold I re-up and reload GZA Product must be sold to you GZA It's mandatory that I supply all my troops with mega firearms Big apes and spread 'em out like crops on a farm To get cream GZA sometimes they repaint the scene GZA Like the last episode on gates and other niggas Plant bombs till the smoke from the blast becomes thick And flows through all they knew he's gun sick GZA His Glock clicks like high-heeled shoes on parquet floors GZA Mad sick stand on hills and invade wars Filthy foul shovelling dirt GZA he's out to hurt For instance chop off hands attack worth His idols would lock down airports and extort Some import catching ten percent of what the fiends snort Up in the ski resorts up in hills GZA They move keys and had the skis making drops on snowmobiles GZA The plan was to expand catch seven figures release triggers And live large and bigger than my nigga GZA Who promised his moms a mansion with mad room GZA She died and he still put a hundred grand in her tomb Open wounds he hid behind closed doors And still organizes crime and drug wars GZA Fiends ain't coming fast enough GZA There is no cut that's pure enough GZA I can't fold GZA I need gold I re-up and reload GZA Product must be sold to you GZA No neighborhood is rough enough There is no clips that's full enough GZA I can't fold GZA I need gold I re-up and reload GZA Product must be sold to you GZA There's no cuffs that's tight enough GZA There is no niggas that's fuck with us GZA I can't fold GZA I need gold I re-up and reload GZA Product must be sold to you Lot of people GZA you know what I'm saying That be getting misinformed thinking everything is everything You could just get yourself a little deal GZA whatever You know what I'm saying You gonna get on you gonna get rich GZA And all these labels be trying to lure us in like spiders Into the web GZA you know what I'm saying GZA So sometimes people gotta come out and speak up GZA And let people understand That you know you gotta read the label You got GZA ta read the label GZA If you don't read the Label you might get poisoned Bomb these niggas God! GZA Tommy ain't my motherfuckin' boy GZA When you fake moves on a nigga you employ GZA We'll all emerge off your set now you know God GZA damn GZA I show living large niggas how to flip a def jam And rough up the motherfuckin' house 'cause I smother You cold chillin' motherfuckers I still warn a brother I'm ruthless my clan don't have to act wild GZA That shit is jive GZA an old sleeping bag profile GZA The soft comedian rap shit ain't the rough witty GZA On the reel to reel it wasn't from a tough city GZA Niggas be game thinking that they lyrical surgeons GZA They know they microphone's a virgin GZA And if you ain't boned a mic you couldn't hurt a bee GZA That's like going to Venus driving a Mercury GZA The capitol of this rugged slang is GZA Wu-Tang Witty unpredictable talent and natural game GZA I death row an MC with mic cables GZA The epic is that I rush associated labels From East West to ATCO I bring it to a next plateau GZA But I keep it phat though yo GZA I'm hitting batters up with the wild pitch style GZA I even show an Uptown MC a style Who thought he saw me on 4th & Broadway GZA But I was out on the island bombing MC's all day GZA My priority is that I'm first priority GZA I bone the secret out a bitch in a sorority GZA So look out for A&M the Abbot and the Master Breaking down your pendulum GZA As I fiend MC's out with a blow that'll numb the a- GZA -ppendix GZA I'm holding more more weight than Colombia Index GZA Interscope we RCA clan That's coming with a plan to free a Slave of a mental death MC GZA don't panic Throw that A&R nigga off the boat in the Atlantic GZA Now who's the bad boy character not from Arista GZA But firing weapons released on Geffen So duck as I struck with the soul of Motown My central broadcasting systems is low down GZA And dirty like that bastard GZA It's getting drastic Read the label and say it loud GZA Another Wu banger Thirty-six chambers through your area GZA (Yeah the RZA phat tracks on a disc) GZA RZA razor RZA razor sharp (Another Wu-Tang production kid coming at ya) GZA RZA: GZA Yes the good life you know GZA: What the fuck is that Hells Angels? GZA MK: GZA Ahh Mr. Bobby Steels Tony Starks on the line one for Mr. Bobby Steels RZA: GZA Steels over here Steels over here Peace Starks GZA what's going on baby? GZA Yeah everything is lovely over here GZA Yeah Maximillion didn't show up yet GZA I'm over here with Noodles GZA and I got Lucky Hands with me GZA GZA: GZA You got soul R&B classics? GZA All that shit right? GZA RZA: GZA Yeah Greco is right in front of me GZA right now Greco is standing right here GZA Yeah he has a briefcase; oh OK OK GZA I got you GZA Aight thanks GZA DK: GZA Bobby Steels RZA: GZA Mr. Greco good to see you good to see you good to see you DK: GZA A pleasure RZA: GZA So is everything OK is everything working as we planned? GZA DK: GZA Everything is working out very nicely GZA Do you have the cash twenty-thousand dollars? GZA RZA: GZA Do we have the cash? GZA We don't have to talk that hey hey GZA: Get the fuck outta here with that Hells Angels bullshit! GZA RZA: GZA We got the cash You know Cash Rules GZA Everything Around this Motherfucker GZA Uhm let me ask you... GZA GZA: GZA The fuck outta here! GZA DK: GZA Do you have the full amount? GZA Twenty thousand as we agreed upon? GZA GZA: GZA Fucking Hells bastards RZA GZA : Let me ask you a question Mr. Greco... GZA Do you know a a Don Rodriguez? GZA DK: GZA I know no such person RZA: Don Rodriguez from the Bronx? GZA Don Rodriguez? GZA DK: GZA I don't know who you're talking about RZA GZA : I think you do know him cause your fucking friend Don is down at One-Twenty Precinct right now singing his fucking ass like a fucking bird GZA The fucking guys is coming DK: Do you believe him? GZA Life of a drug dealer Killah hills GZA 10304 Restaurant's on a stakeout so order the food to take out Chaos outside of Sparks Steak House GZA Maintain the power I feel the deal's gone GZA sour Nigga missed a wedding late a fucking half-hour GZA And his man who bought land from Tony Starks While he was contracting bricklaying jobs in city parks GZA He's a loan shark interest raise a grand to a finger GZA In the garment district got it sewn like Singers GZA 'Cause all that talk blasphemy this kid after me GZA For the heist in a Burlington coat factory Fuck it he turned state's on my nigga Castro this copilot Who used to drop rice sacks of blow GZA On this remote area we label Dead Man's Island Two hundred miles South from GZA Thailand Right off the docks I got luxurious custom-made yachts Burial plots for my niggas hit with fatal shots GZA There's no need for us to spray up the scene I use less men more powerful shit for my team Like my man Muhammad from Afghanistan grew up in Iran GZA The nigga runs a neighborhood newsstand GZA A wild Middle Eastern—bomb specialist Initiated at eleven to be a terrorist GZA He set bombs in bottles of champagne GZA And when niggas popped the cork—niggas lost half they brains Like GZA this ex-worker tried to smuggle a half-a-key GZA In his left leg even underwent surgery GZA They say his pirate limp gave him away GZA As the feds rushed him coming through U.S. Customs GZA Now look whose on the witness stand singing a well known soprano GZA A smash hit from Sammy Gravano GZA Here's the plan minimum for the hit two hundred grand Half time at the game blasting niggas out the stands The sharp-shooters hit the prosecutor judges are sent Photographs of they wives taking baths Along with briefcase filled with one point five— GZA that's the bribe GZA Take it or commit suicide First rule GZA —anyone who schemes on the gold in Syria GZA I want they small intestines ripped from they interior GZA I got a price for those jewels ship 'em freight cargo GZA Don't forget to launder the cream through Wells Fargo Reconstruct those processing plants for the call of Costa Rica Four hundred barrels of ether Two hundred pounds of reefer and fifty immigrants with fake Visas Life of a drug dealer GZA Killah hills 10304 GZA The saga continues Here we go come on \"A battle-A battle was fought in Brooklyn... GZA \" \"Hessian Soldiers killed 3000 men; much of the fighting took place in what is now Prospect Park in Green-Wood Cemetery as well as the Park Slope and Gowanus neighborhoods.\" GZA \" GZA This was the first battle of America.\" GZA Rugged rhymsters crooked crimesters Dime droppers GZA Twenty-five-to-lifers Backstabbers low blowers GZA Illegal... cocaine growers Starvation profanity Anxiety brothers trying me Gun slingers GZA dead ringers GZA Yo my slang's out of this world Mix collaboration man GZA little man and his girl Way of life got me thinking GZA plus I'm analyzing young Youths on roofs GZA you know three time felony brutes Roll together GZA tropical trees puff GZA whatever Yo GZA we could go run up on kids for leathers GZA What drug? GZA Faculties bubble keys for G's Cream flow like seven seas hit chicks Guyanese Word up hold your head before you fall out The morgue route the devil want that Let's get my niggas locked all out Change for better that be my only vendetta With life GZA feed your seed GZA right he's breathing indeed right GZA Chef remarkable sparkable raps and tackable gats Never get jacked GZA see ya then move black Paradise trife plush with much ice GZA Getting nice laying back sleep all my life; word up! \" GZA The battle of Brooklyn depicted was the bloodiest Clash of the American revolution. GZA Soldiers killed 3000 men much of the fighting took place in what is now... GZA \" GZA Crack patients dime smokers Vial carriers mocha tokers GZA Burnt buildings brothers building Save the children investigative reports! GZA Calling all cars calling all cars! GZA Ghetto Psychos armed and dangerous leaving mad scars GZA On those who are found bound gagged and shot When they blast the spot victims took off like astronauts Get with this GZA even your best can't Come on down GZA you're the next contestant! GZA Get your pockets dug from all your Chemical Bank GZA ends GZA Caught him at the red light – on Putnam Avenue and Franklin GZA They used to heat up the cipher with a shot that was hyper Than your average JFK sniper GZA He just came home from Spofford Rolling like Kaufman and laid that ass out like carpet Stop the stuttering boy save complaints for the five- GZA oh GZA Then praise the God – chk-a-chk POW! GZA They release shots and premeditate to grab GZA And then they jet back to the lab GZA And then remain in Shaolin an endangered island Where shorties lose blood by the gallons \"Have integrated a number of corrupt cops judges ...into high-level positions to insure the continued Success of the drug smuggling and money laundering operations\" Crack patients dime smokers Vial carriers mocha tokers GZA Burnt buildings brothers building Save the children investigative reports! GZA Yo I grab the pen for revenge and let loose see GZA Like Muslims standing on the block rocking a kufi The hundred-dollar kick rocking kid's back for more Starting gun wars with black Reeboks and Velours Jungle GZA way of life living villain Packed with visions copywritten Throwing bread to pigeons Christ has risen King Elegant slang master jack expensive noodle hats GZA In sixty-nine old timers time that brothers shot craps GZA The baggy blue Guess jeans pull strings off in Palm Springs GZA I'm locked in the bing Rocky ring labelled rap king GZA The corner emperor – the golden thieves play the benches Rednecks be hanging big niggas down in Memphis Back in GZA Now-Y hit the bull's eye with loaded nines GZA Life is like Tarzan swinging from a thin vine Shatter dreams GZA then mirrors don't need a press spirals Aim at the white shadows with big barrels Of Moet-ers GZA the bald headers milk and Armarettas GZA Who fear none crushing all personal vendettas yo They use guns while we angrily shot arrows You better keep your eye on the sparrow Rugged rhymsters crooked crimesters Dime droppers GZA Twenty-five-to-lifers Backstabbers low blowers GZA Illegal... cocaine growers Starvation profanity Anxiety brothers trying me Gun slingers dead ringers \"Have integrated a number of corrupt cops judges and lawyers Into high-level positions – to insure the continued success Of the drug smuggling and money laundering operations\" GZA \" Eminem Look I was gonna go easy on you not to hurt your feelings.\" Eminem \" Eminem But I'm only going to get this one chance. Eminem \" Eminem \"Something's wrong I can feel it. Eminem \" Eminem Six minutes. Eminem Six minutes. Eminem Six minutes Slim Shady you're on! Eminem \" Eminem Just a feeling I've got. Eminem Like something's about to happen Eminem but I don't know what. Eminem If that means what I think it means we're in trouble big trouble; and if he is as bananas as you say I'm not taking any chances. Eminem \" Eminem \" Eminem You are just what the doc ordered. Eminem \" Eminem I'm beginnin' to feel like a Rap God Rap God All my people from the front to the back nod back nod Eminem Now who thinks their arms are long enough to slap box slap box? Eminem They said I rap like a robot so call me Rap-bot Eminem But for me to rap like a computer it must be in my genes Eminem I got a laptop in my back pocket Eminem My pen'll go off when I half-cock Eminem it Got a fat knot from that rap profit Made a livin' and a killin' off it Eminem Ever since Bill Clinton was still in office With Monica Lewinsky feelin' on his nutsack Eminem I'm an MC still as honest Eminem But as rude and as indecent as all hell Eminem Syllables skill-a-holic (Kill 'em all with) Eminem This flippity dippity-hippity hip-hop Eminem You don't really wanna get into a pissin' match With this rappity brat packin' a MAC in the back of the Ac' Backpack rap crap yap-yap yackety-yack Eminem And at the exact same time I attempt these lyrical acrobat stunts while I'm practicin' that I'll still be able to break a motherfuckin' table Over the back of a couple of faggots and crack it in half Eminem Only realized it was ironic Eminem I was signed to Aftermath after the fact How could I not blow? Eminem All I do is Eminem drop F-bombs Feel my wrath of attack Rappers are havin' Eminem a rough time period here's a maxi pad Eminem It's actually disastrously bad for the wack Eminem While I'm masterfully constructing this masterpiece as 'Cause Eminem I'm beginnin' to feel like a Rap God Rap God All my people from the front to the back nod back nod Eminem Now who thinks their arms are long enough to slap box slap box? Eminem Let me show you maintainin' this shit ain't that hard Eminem that hard Everybody wants the key and the secret to rap immortality like Ι have got. Eminem Well to be truthful the blueprint's Simply rage and youthful exuberance Everybody loves to root for a nuisance Hit the Earth like an asteroid Eminem Did nothing but shoot for the Moon since (Pew!) Eminem MCs get taken to school with this music Eminem 'Cause Eminem I use it as a vehicle to \"bus the rhyme Eminem \" Eminem Now I lead a new school full of students Me? Eminem I'm a product of Rakim Lakim Eminem Shabazz 2Pac N.W.A Cube hey Eminem Doc Ren Yella Eazy thank you they got Slim Inspired enough to one day grow up blow up and be in a position To meet Run–D.M.C. induct them Into the motherfuckin' Rock and Roll Hall of Fame Even though I'll walk in the church and burst in a ball of flames Only Hall of Fame Eminem I'll be inducted in Eminem is the alcohol of fame On the wall of shame Eminem You fags think it's all a game ' Eminem til I walk a flock of flames Off a plank and tell me what in the fuck are you thinkin'? Eminem Little gay-lookin' boy Eminem So gay Eminem I can barely say it with a straight face lookin' boy Eminem You're witnessin' a massacre Like you're watching a church gathering take place lookin' boy Eminem \" Eminem Oy vey that boy's Eminem gay!\"—that's all they say lookin' boy Eminem You get a thumbs up pat on the back Eminem And a \"way to go\" from your label every day lookin' boy Hey lookin' boy! Eminem What you say lookin' boy? Eminem I get a \"hell Eminem yeah Eminem \" from Dre lookin' boy I'ma work for everything I have never ask nobody for shit Get outta my face lookin' boy! Eminem Basically boy you're never gonna be capable Of keepin' up with the same pace lookin' boy 'cause— Eminem I'm beginnin' to feel like a Rap God Rap God All my people from the front to the back nod back nod Eminem The way I'm racin' around the track call me NASCAR NASCAR Dale Earnhardt of the trailer park the White Trash God Kneel before General Zod Eminem This planet's Krypton—no Asgard Asgard Eminem So you'll be Thor Eminem and I'll be Odin Eminem You rodent Eminem I'm omnipotent Eminem Let off then I'm reloadin' Eminem Immediately with these bombs I'm totin' Eminem And I should not be woken Eminem I'm the walkin' dead Eminem but I'm just a talkin' head a zombie floatin' Eminem But I got Eminem your mom deep-throatin Eminem ' I'm out my Ramen Noodle Eminem We have nothin' in common poodle Eminem I'm a Doberman pinch yourself in the arm and pay homage pupil Eminem It's me Eminem my honesty's brutal Eminem But it's honestly futile if I don't utilize what I do though Eminem For good at least once in a while Eminem So I wanna make sure somewhere in this chicken scratch I scribble and doodle enough rhymes To maybe try to help get some people through tough times Eminem But I gotta keep a few punchlines Just in case Eminem 'cause even you unsigned Rappers are hungry lookin' at me like it's lunchtime Eminem I know there was a time where once I Was king of the underground Eminem But I still rap Eminem like I'm on my Pharoahe Monch Eminem grind Eminem So I crunch rhymes Eminem but sometimes when you combine Appeal with the skin color of mine You get too big and here they come tryin' To censor you like that one line Eminem I said on \"I'm Back\" from The Mathers LP 1 when I Tried to say I'll take seven kids from Columbine Put Eminem 'em all in a line add an AK-47 a revolver and Eminem a 9 See if I get away with it now that I ain't as big as I was Eminem but I'm Morphin' into an immortal comin' through the portal Eminem You're stuck in a time warp from 2004 Eminem though Eminem And I don't know what the fuck that you rhyme for You're pointless as Rapunzel with fuckin' cornrows You write normal? Eminem Fuck being normal! Eminem And I just bought a new raygun from the future Just to come and shoot ya like when Fabolous made Ray J mad Eminem 'Cause Eminem Fab said he looked like a fag at Mayweather's pad Singin' to a man while he played piano Eminem Man Eminem oh man that was a 24/7 special on the cable channel Eminem So Ray J went straight to the radio station The very next day Eminem \"Hey Eminem Fab I'ma kill you!\" Eminem Lyrics comin' at you at supersonic speed (J.J. Fad) Eminem Uh summa-lumma dooma-lumma Eminem you assumin' Eminem I'm a human Eminem What I gotta do to get it through to you Eminem I'm superhuman? Eminem Innovative and I'm made of rubber so that anything you say is ricochetin' off of me Eminem and it'll glue to you Eminem and I'm devastating more than ever demonstrating How to give a motherfuckin' audience a feeling like it's levitating Never fading Eminem and I know the haters are forever waiting For the day that they can say I fell off Eminem they'll be celebrating Eminem 'Cause Eminem I know the way to get 'em motivated I make elevating music you make elevator music Eminem \" Eminem Oh he's too mainstream. Eminem \" Eminem Well that's what they do when they get jealous they confuse it Eminem \" Eminem It's not hip-hop Eminem it's Eminem pop\"—'cause Eminem I found a hella way to fuse it With rock shock rap with Doc Throw on \"Lose Yourself\" and make 'em lose it Eminem \" Eminem I don't know how to make songs like that Eminem I don't know what words to use. Eminem \" Let me know when it occurs to you Eminem While I'm rippin' any one of these verses that versus you Eminem It's curtains Eminem I'm inadvertently hurtin' Eminem you Eminem How many verses I gotta murder to Prove that if you were half as nice Your songs you could sacrifice virgins too? Eminem Ugh school flunky pill junkie Eminem But look at the accolades these skills brung me Eminem Full of myself but still hungry Eminem I bully myself Eminem 'cause I make me do what I put my mind to Eminem And I'm a million leagues above you Ill when I speak in tongues Eminem but it's still tongue-in-cheek fuck you! Eminem I'm drunk Eminem so Satan take the fucking wheel Eminem I'ma sleep in the front seat Bumpin' Heavy D and the Boyz Eminem still \"Chunky but Funky Eminem \" Eminem But in my head there's something I can feel tugging and struggling Eminem Angels fight with devils and here's what they want from me Eminem They're askin' me to eliminate some of the women Eminem hate Eminem But if you take into consideration the bitter hatred I have then you may be a little patient Eminem And more sympathetic to the situation Eminem And understand the discrimination Eminem But fuck it life's handin' you lemons? Eminem Make lemonade then! Eminem But if I can't batter the women How the fuck am I supposed to bake them a cake then? Eminem Don't mistake him for Satan; it's a fatal mistake Eminem If you think I need to be overseas and take a vacation To trip a broad and make her fall on her face and Don't be a retard! Eminem Be a king? Eminem Think not Why be a king when you can be a God? Eminem You sound like a bitch bitch Shut the fuck up When your fans become your haters You done? Eminem Fuckin' beard's weird Eminem Alright Eminem You yellin' at the mic fuckin' weird beard (You want smoke) Eminem We doin' this once You yellin' at the mic your beard's weird Eminem Why you yell at the mic? Eminem (Illa) Eminem Rihanna just hit me on a text Eminem Last night I left hickeys on her neck Eminem Wait you just dissed me? Eminem I'm perplexed Insult me in a line compliment me on the next Damn Eminem I'm really sorry you want me to have a heart attack Was watchin Eminem ' 8 Mile on my NordicTrack Realized Eminem I forgot to call you back Eminem Here's that autograph for your daughter Eminem I wrote it on a Starter cap Stan Stan son Listen man Eminem Dad isn't mad Eminem But how you gonna name yourself after a damn gun And have a man-bun? Eminem The giant's woke eyes open Eminem undeniable Supplyin' smoke got the fire stoked Eminem Say Eminem you got me in a scope Eminem but you grazed me Eminem I say one call to Interscope Eminem and you're Swayze Eminem Your reply got the crowd yelling \"Woo!\" Eminem So before you die let's see who can out-petty who Eminem With your corny lines (\"Slim you're old\")—ow Eminem Kelly ooh Eminem But I'm 45 Eminem and I'm still outselling you Eminem By 29 I had three albums that had blew Now Eminem let's talk about somethin' Eminem I don't really do Go in someone's daughter's mouth stealin' food Eminem But you're a fuckin' mole hill Eminem Now I'ma make a mountain out of you Eminem woo! Eminem Ho chill actin' like you put the chrome barrel to my bone marrow Gunner? Eminem Bitch you ain't a bow and Eminem arrow Say you'll run up on me like a phone bill sprayin' lead Eminem (Brrt) Playin' dead Eminem that's the only time you hold still Eminem (Hold up) Eminem Are you eating cereal or oatmeal? Eminem What the fuck's in the bowl milk? Eminem Wheaties or Cheerios? Eminem 'Cause Eminem I'm takin' a shit in 'em Kelly I need reading material …Dictionary… Eminem \"Yo Slim your last four albums sucked Go back to Recovery Eminem \" oh shoot that was three albums ago Eminem What do you know? Eminem Oops Know your facts before you come at me Eminem lil' goof Luxury Eminem oh you broke bitch? Eminem Yeah I had enough money in '02 Eminem To burn it in front of you ho Eminem Younger me? Eminem No you the wack me Eminem it's funny Eminem but so true Eminem I'd rather be 80-year-old me than Eminem 20-year-old you ' Eminem Til Eminem I'm hitting old age Still can fill a whole page with a 10-year-old's rage Got more fans than you in your own city lil' kiddy go play Feel like I'm babysitting Eminem Lil Tay Got the Diddy Eminem okay Eminem so you spent your whole day Eminem Shootin' a video just to fuckin' dig Eminem your own grave Got you at your own wake Eminem I'm the billy goat You ain't never made a list next to no Biggie Eminem no Jay Next to Taylor Swift and that Iggy ho you about to really blow Kelly they'll be putting your name Next to Ja next to Benzino—die motherfucker! Eminem Like the last motherfucker sayin' Hailie in vain Alien brain you Eminem Satanist Eminem (Yeah) Eminem My biggest flops are your greatest hits Eminem The game's mine again and ain't nothin' changed but the locks Eminem So before I slay this bitch I mwah give Jade a kiss Gotta wake up Labor Day to this (The fuck?) Eminem Bein' rich-shamed by some prick usin' my name for clickbait Eminem In a state of bliss 'cause I said his goddamn name Eminem Now I gotta cock back aim Eminem Yeah bitch pop Champagne to this! Eminem (Pop) Eminem It's your moment Eminem This is it as big as you're gonna get Eminem so enjoy it Had to give you a career to destroy it Lethal injection Go to sleep six feet deep Eminem I'll give you a B for the effort Eminem But if I was three-foot-eleven Eminem You'd look up to me and for the record You would suck a dick to fuckin' Eminem be me for a second Lick a ballsack to get on my channel Eminem Give your life to be as solidified This mothafuckin' shit is like Rambo when he's out of bullets Eminem So what good is a fuckin' machine gun when it's outta ammo? Eminem Had enough of this tatted-up mumble rapper Eminem How the fuck can him and I battle? Eminem He'll have to fuck Kim in my flannel Eminem I'll give him my sandals Eminem 'Cause Eminem he knows long as I'm Shady he's gon' have to live in my shadow Exhausting letting off on my offspring Lick a gun barrel bitch get off me! Eminem You dance around it like a sombrero we can all see You're fuckin' salty Eminem 'Cause Young Gerald's balls-deep inside of Halsey Eminem Your red sweater your black leather Eminem You dress better Eminem I rap better That a death threat or a love letter? Eminem Little white toothpick Eminem Thinks Eminem it's over a pic Eminem I just don't like you prick Thanks for dissing me Eminem Now I had an excuse on the mic to write \"Not Eminem Alike\" Eminem But really I don't care who's in the right Eminem But you're losin' the fight you picked Who else want it? Eminem Kells—attempt fails! Eminem Budden Eminem —L's! Eminem Fuckin' nails in these coffins as soft as Cottonelle Killshot Eminem I will not fail Eminem I'm with the Doc still Eminem But this idiot's boss pops pills and tells him he's got skills Eminem But Kells the day you put out a hit's the day Eminem Diddy admits That he put the hit out that got Pac killed ah! Eminem I'm sick of you bein' wack And still usin' that mothafuckin' Auto-Tune Eminem So let's talk about it Eminem (Let's talk about it) Eminem I'm sick of your mumble rap mouth Eminem Need to get the cock up out it Eminem Before we can even talk about it Eminem (Talk about it) Eminem I'm sick of your blonde hair and earrings Eminem Just 'cause you look in the mirror and think That you're Marshall Mathers (Marshall Mathers) Eminem Don't mean you are and you're not about it Eminem So just leave my dick in your mouth and keep my daughter out it Eminem You fuckin'—oh Eminem And I'm just playin' Diddy Eminem You know I love you Eminem I'm friends with the monster that's under my bed Get along with the voices inside of my head Eminem You're tryin' to save me Eminem stop holdin' your breath Eminem And you think I'm crazy Eminem yeah Eminem you think I'm crazy Eminem I wanted the fame but not the cover of Newsweek Eminem Oh well guess beggars can't be choosey Wanted to receive attention for my music Wanted to be left alone in public excuse me For wantin' my cake and eat it too and wantin' Eminem it both ways Fame made me a balloon Eminem ‘cause my ego inflated Eminem When I blew see Eminem but it was confusing Eminem ‘ Eminem Cause all I wanted to do's be the Bruce Lee of loose leaf Abused ink Eminem used it as a tool when I blew steam Whoo! Eminem Hit the lottery ooh-wee Eminem But with what I gave up to get it was bittersweet Eminem It was like winnin' a used mink Ironic Eminem ‘ Eminem cause I think I'm gettin Eminem ' so huge I need a shrink Eminem I'm beginnin' to lose sleep: one sheep two sheep Goin' coo-coo and kooky as Kool Keith Eminem But I'm actually weirder than you think Eminem ‘ Eminem cause I'm— Eminem I'm friends with the monster that's under my bed Get along with the voices inside of my head Eminem You're tryin' to save me Eminem stop holdin' your breath Eminem And you think I'm crazy Eminem yeah Eminem you think I'm crazy Eminem Well that's nothin' Eminem (Ooh-ooh-ooh-ooh) Eminem (Ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh) Eminem Well that's nothin' Eminem (Ooh-ooh-ooh-ooh) Eminem (Ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh) Eminem Now I ain't much of a poet Eminem But I know somebody once told me to seize the moment Eminem And don't squander it Eminem ‘cause you never know when it all Could be over tomorrow Eminem so I keep conjurin' Eminem Sometimes I wonder where these thoughts spawn from Eminem Yeah ponderin'll do you wonders Eminem No wonder you're losin' your mind the way it wanders Yodel-odel-ay-hee-hoo! Eminem I think it went wanderin' off down yonder Eminem And stumbled onto Jeff VanVonderen Eminem ‘ Eminem Cause I need an interventionist To intervene between me and this monster And save me from myself and all this conflict Eminem ‘ Eminem Cause the very thing that Eminem I love's killin' me and Eminem I can't conquer it Eminem My OCD's conkin' me in the head keep knockin' Eminem Nobody's home Eminem I'm sleepwalkin' Eminem I'm just relayin' what the voice in my head's sayin' Don't shoot the messenger Eminem I'm just friends with the— Eminem I'm friends with the monster that's under my bed Get along with the voices inside of my head Eminem You're tryin' to save me Eminem stop holdin' your breath Eminem And you think I'm crazy Eminem yeah Eminem you think I'm crazy Eminem Well that's nothin' Eminem (Ooh-ooh-ooh-ooh) Eminem (Ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh) Eminem Well that's nothin' Eminem (Ooh-ooh-ooh-ooh) Eminem (Ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh Eminem ) Call me crazy Eminem but I have this vision one day that I'll walk amongst you a regular civilian Eminem But until then drums get killed Eminem and I'm comin' straight at MC's blood gets spilled Eminem and I'll take you back to the days that I'd get on a Dre track Eminem Give every kid who got played that pumped-up feelin' Eminem And shit to say back to the kids who played him Eminem I ain't here to save the fuckin' children Eminem But if one kid out of a hundred million Who are goin' through a struggle feels it and relates that's great! Eminem It's payback Eminem Russell Wilson fallin' way back Eminem In the draft turn nothin' into somethin' still can make that Straw into gold chump I will spin—Rumpelstiltskin in a haystack Eminem Maybe I need a straightjacket Face facts: I am nuts for real Eminem but I'm okay with that! Eminem It's nothin' Eminem I'm still friends with the— Eminem I'm friends with the monster that's under my bed Get along with the voices inside of my head Eminem You're tryin' to save me Eminem stop holdin' your breath Eminem And you think I'm crazy Eminem yeah Eminem you think I'm crazy Eminem I'm friends with the monster that's under my bed (Get along with) Get along with the voices inside of my head (You're tryin' to) Eminem You're tryin' to save me Eminem stop holdin' your breath Eminem (And you think) Eminem And you think I'm crazy Eminem yeah Eminem you think I'm crazy Eminem Well that's nothin' Eminem (Ooh-ooh-ooh-ooh) Eminem (Ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh) Eminem Well that's nothin' Eminem (Ooh-ooh-ooh-ooh) Eminem (Ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh ooh-ooh-ooh-ooh) Eminem Look if you had one shot or one opportunity To seize everything you ever wanted in one moment Eminem Would you capture it or just let it slip? Eminem Yo! Eminem His palms are sweaty knees weak arms are heavy There's vomit on his sweater already: Eminem Mom's spaghetti Eminem He's nervous but on the surface he looks calm and ready To drop bombs Eminem but he keeps on forgetting What he wrote down Eminem the whole crowd goes so loud Eminem He opens his mouth but the words won't come out Eminem He's choking Eminem how? Eminem Everybody's joking now Eminem The clock's run out time's up over—blaow! Eminem Snap back to reality ope Eminem there goes Eminem gravity ope Eminem There goes Rabbit he choked he's so mad Eminem but he won't Give up that easy no he won't have it Eminem he knows His whole back's to these ropes it don't matter he's dope Eminem He knows that Eminem but he's broke Eminem he's so stagnant he knows Eminem When he goes back to this mobile home Eminem that's when it's Back to the lab again yo this whole rhapsody Eminem Better go capture this moment and hope it don't pass him Eminem and You better lose yourself in the music Eminem The moment you own it you better never let it go Eminem You only get one shot do not miss your chance to blow This opportunity Eminem comes once in a lifetime yo Eminem You better lose yourself in the music Eminem The moment you own it you better never let it go Eminem You only get one shot do not miss your chance to blow This opportunity Eminem comes once in a lifetime Eminem yo Eminem You better Eminem … His soul's escaping through this hole that is gaping This world is mine for the taking make me king As we move toward a New World Order Eminem A normal life is boring; but superstardom's Close to post-mortem Eminem it only grows harder Homie grows hotter he blows it's all over These hoes is all on him Eminem coast-to-coast shows Eminem He's known as the Globetrotter lonely roads God only knows he's grown farther from home Eminem he's no father Eminem He goes home and barely knows his own daughter Eminem But hold your nose 'cause here goes the cold water Eminem These hoes don't want him no mo' Eminem he's cold product Eminem They moved on to the next schmoe who flows He nose-dove and sold nada Eminem and so the soap opera Is told it unfolds Eminem I suppose it's old partner Eminem But the beat goes on: da-da-dom da-dom dah-dah dah-dah Eminem You better lose yourself in the music Eminem The moment you own it you better never let it go Eminem You only get one shot do not miss your chance to blow This opportunity Eminem comes once in a lifetime yo Eminem You better lose yourself in the music Eminem The moment you own it you better never let it go Eminem You only get one shot do not miss your chance to blow This opportunity Eminem comes once in a lifetime Eminem yo Eminem You better Eminem … Eminem No more games I'ma change what you call rage Tear this motherfuckin' roof off like two dogs caged I was playin' in the beginning Eminem the mood all changed Eminem I've been chewed up and spit out and booed off stage Eminem But I kept rhymin' and stepped right in the next cypher Eminem Best believe somebody's payin' the Pied Piper Eminem All the pain inside amplified by the Fact that I can't get by with my nine-to- Five Eminem and I can't provide the right type of life for my family Eminem 'Cause man these goddamn food stamps don't buy diapers Eminem And there's no movie Eminem there's no Mekhi Phifer Eminem this is my life Eminem And these times are so hard Eminem and it's gettin' even harder Tryna feed and water my seed plus teeter-totter Eminem Caught up between bein' a father and a prima donna Baby Eminem mama drama screamin' on her too much for me to wanna Stay in one spot another day of monotony's Eminem Gotten me to the point Eminem I'm like a snail I've got To formulate a plot or end up in jail or shot Success is my only motherfuckin' option—failure's not Eminem Mom Eminem I love you Eminem but this trailer's got To go Eminem ; I cannot grow old in Salem's Lot Eminem So here I go Eminem it's my shot: Eminem feet fail me not This may be the only opportunity that I got You better lose yourself in the music Eminem The moment you own it you better never let it go Eminem You only get one shot do not miss your chance to blow This opportunity Eminem comes once in a lifetime yo Eminem You better lose yourself in the music Eminem The moment you own it you better never let it go Eminem You only get one shot do not miss your chance to blow This opportunity Eminem comes once in a lifetime Eminem yo Eminem You better Eminem … Eminem You can do anything you set your mind to man Whoa Joyner Joyner Eminem yeah Eminem yeah Eminem yeah Eminem Yeah Eminem I done Eminem did a lot of things in my day Eminem I admit it Eminem I don't take back what I say if I said it Eminem then I meant it Eminem All my life I want a Grammy Eminem but I'll prolly never get it Eminem I ain't never had no trophy or no motherfuckin' ribbon Eminem (Yah I said it) Eminem Fuck the system Eminem I'm that nigga bend the law cut the rules I'm about to risk it all Eminem I ain't got too much to lose Y'all Eminem been eatin' long enough Eminem it's my turn to cut the food Pass the plate! Eminem Where my drink? Eminem This my day lucky Eminem you Fuck you too woo! Eminem Y'all gotta move y' Eminem all gotta move y' Eminem all gotta move Eminem Give me Eminem some room give me some room give me the juice Hop out the coupe hop out the coupe hop out and shoot Y'all Eminem gotta move y' Eminem all gotta move Eminem give me the juice Back on my bullshit my back to the wall Eminem Turn my back on you Eminem all of you finished Back to these bullets Eminem it's back to the job Eminem Pull my MAC out and all of you runnin Eminem ' Back on my hood shit it's back to the pushin' Eminem These packs and Eminem I'm actually pumpin' Eminem Can't fuck with you Eminem rappers you practically suckin Eminem ' Eminem You mighta went platinum but that don't mean nothin' Eminem I'm actually buzzin' this time Straight out the kitchen Eminem I told 'em the oven is mine I do not fuck with you guys Eminem If I don't kill you Eminem just know you gon' suffer this time I ain't no gangster Eminem but I got some bangers Eminem Some chains and some blades and a couple of nines Choppers and jammies a partridge a pear tree Eminem My 12 days of Christmas was Eminem nothin' but lies Eminem I run at you hard like a sumo (Sumo) Eminem They say I talk like a chulo (Chulo) Eminem I live in Mars Eminem I'm not Bruno Eminem (Woo) Bitch Eminem I'm Eminem a dog call me Cujo (Rah) Eminem You play your cards I reverse on you all Eminem And I might just draw 4 like a Uno (Bup) Cállate boca mejor maricón Eminem little puto and Eminem all of you culo Eminem (Joyner) Eminem They've invented a level up in the ghetto to get old Lookin' for somethin' Eminem I prolly can never find now Shit get relevant 'til 'nother beef die down In truth Eminem a nigga just really want me tied down Eminem I've been alone Eminem and I never needed nobody Eminem Just only me and my shotty Eminem I'll tell these niggas to lie down Keep all the money I never wanted the lifestyle Eminem I just pray to God that my son'll be alright Eminem now I said ain't no love for the other side Eminem Or anyone who ever want smoke (Joyner) Eminem When I die I'm goin' out as the underdog who never lost hope ( Eminem Yeah) Eminem You in the wrong cab down the wrong path Eminem Nigga wrong way wrong road Eminem (Woo woo) Eminem Snakes in the grass tryna slither fast Eminem I just bought a fuckin' lawn mower (Vroom!) Eminem I done said a lotta things in my day Eminem I admit it Eminem This is payback in a way I regret it that I did it Eminem I done won a couple Grammys Eminem but I sold my soul to get 'em Wasn't in it for the trophies Eminem just the fuckin' recognition Eminem Fuck's the difference? Eminem I'm that cracker bend the law fuck the rules Eminem Man Eminem I used to risk it all now Eminem I got too much to lose I've been eatin' long enough man my stomach should be full Eminem I just ate Eminem licked the plate my buffet lucky me Eminem Fuck Eminem you think? Eminem (Woo!) Eminem I got a couple of mansions Eminem Still I don't have any manners You got a couple of ghost writers Eminem But to these kids it don't actually matter They're askin' me Eminem \"What the fuck happened to hip-hop? Eminem \" Eminem I said \"I don't have any answers. Eminem \" Eminem 'Cause Eminem I took an L when I dropped my last album Eminem It hurt me like hell Eminem but I'm back on these rappers Eminem And actually comin' from humble beginnings Eminem I'm somewhat uncomfortable winning Eminem I wish I could say \"What a wonderful feeling!\" Eminem \" Eminem We're on the upswing like we're punchin' the ceiling!\" Eminem But nothin' is feeling like anyone has any fuckin' ability To even stick to a subject Eminem it's killin' me Eminem The inability to pen humility Eminem Ha-ta-ta ba-ta-ta Eminem why don't we make a bunch of Fuckin' songs about nothin' and mumble 'em? Eminem Fuck it Eminem I'm goin' for the jugular Shit Eminem is a circus you clowns that are Eminem comin' up Don't give an ounce of a motherfuck About the ones that were here before you that made rap Let's recap way back MC's that wreak havoc on tape decks ADAT's where the G Raps and Kanes at? Eminem We need 3 Stacks ASAP and bring Masta Ace back 'Cause half of these rappers have brain damage All the lean rappin' face tats syruped out like tree sap Eminem I don't hate trap Eminem and I don't wanna Eminem seem mad Eminem But in fact where the old me at? Eminem The same cat That would take that feedback and aim back Eminem I need that Eminem But I think it's inevitable Eminem They know what button to press or what lever to pull Eminem To get me to snap though Eminem (Lil' bitch) Eminem And if I pay it attention I'm prob'ly makin' it bigger Eminem But you've been takin' Eminem ya digs in the fuckin' back ho Eminem (Get it?) Eminem On the brink any minute got me thinkin' of finishin' Everything with acetaminophen and reapin' the benefits I'm asleep at the wheel again Eminem As I peak into thinkin' about an evil intent Of another beat Eminem I'ma kill again Eminem 'Cause even if I gotta end up eatin' a pill again Even ketamine or methamphetamine with the minithin It better be at least 70 or 300 milligram Eminem And I might Eminem as well Eminem 'cause Eminem I'ma end up bein' a villain again Levels to this shit Eminem I got an elevator You could never say to me Eminem I'm not a fuckin' record breaker I sound like a broken record every time I break a record Eminem Nobody could ever take away the legacy I made I never cater Motherfucker now Eminem I got a right to be this way I got spite inside my DNA Eminem But I wrote 'til the wheels fall off Eminem I'm workin' Eminem tirelessly ayy Eminem It's the moment y'all been waitin' for Like California wishin' rain to pour In that drought Eminem y'all been prayin' for My downfall from the 8 Mile to the Southpaw Still the same Marshall that outlaw That they say as a writer might've fell off Eminem I'm back on that bull like the cowboy Eminem So y'all gotta move (Yeah Eminem ) y'all gotta move (Yeah Eminem ) y'all gotta move Eminem Give me Eminem some room give me some room give me the juice Hop out the coupe hop out the coupe hop out and shoot Y'all Eminem gotta move y' Eminem all gotta move Eminem give me the juice *Plane crash Eminem * Yeah (Illa) Eminem Yo I'm just gonna write down my first thoughts and see where this takes me Eminem ’cause Eminem I feel like I wanna punch the world in the fuckin' face right now Eminem Yeah Eminem Let me explain just how to make greatness Eminem Straight out the gate Eminem I'm ’bout to break it down Eminem Ain't no mistakes allowed but make no mistake Eminem I'm 'bout Eminem To rape the alphabet I may raise some brows Eminem If I press the issue just to get the anger out Eminem (Brrr!) Eminem Full magazine could take Staples out Savage but ain't thinkin' 'bout no bank account Eminem But bitch I'm off the chain like Kala Brown Motherfucker shut the fuck up when I’m talkin Eminem ’ lil' bitch Eminem I’m Eminem sorry Eminem wait what's your talent? Eminem Oh critiquin' Eminem My talent? Eminem Oh bitch Eminem I don't know who the fuck y’all are To give a sub-par bar or even have an opinion or view Eminem You mention me millions of views attention in news Eminem I mention you lose-lose for me win-win for you Billions of views Eminem your ten cents are two Skim through the music to give shit reviews To get clicks but bitch you just lit the fuse Don't get misconstrued business as us' Shit-list renewed so get shit to do Or get dissed 'cause I just don't get What the fuck Eminem half the shit is that you're listenin' to Do you have any idea how much I hate this choppy flow Everyone copies though? Eminem Prob'ly no Eminem Get this fuckin' audio out my Audi yo adiós I can see why people like Lil Yachty but not me though Not even dissin' it just ain't for me All Eminem I am simply Eminem is just an emcee Eminem Maybe \"Stan\" just isn't your cup of tea (Get it?) Eminem Maybe your cup's full of syrup and lean Eminem Maybe I need to stir up shit preferably Shake the world up if it were up to me Eminem Paul wants me to chill y'all Eminem want me to ill Eminem I should eat a pill Eminem probably I will Old me killed the new me watch him bleed to death Eminem I breathe on the mirror I don't see my breath Possibly Eminem I'm dead I must be possessed Like an evil spell I'm Eminem E-V-I-L Eminem (Evil spelled) Eminem Jam a Crest Whitestrip in the tip of my dick Eminem With an ice pick stick it in a vise grip Eminem Hang it on a spike fence bang it with a pipe wrench Eminem While I take my ball sack and flick it like a light switch Like Eminem Vice President Mike Pence Back up on my shit in a sidekick as I lay it on a spike strip Eminem These are things that I'd rather do than hear you on a mic Since nine tenths of your rhyme is about ice and Jesus Christ man Eminem how many times is Someone gonna fuck on my bitch? Eminem (Fuck my side chick!) Eminem You won't ever see Em icy Eminem But as cold as I get on the M-I-C Eminem I polarize shit so the Thames might freeze Eminem And your skull might split like I bashed you upside it Eminem Bitch Eminem I got the club on smash like Eminem a nightstick (Yeah) Turn down for what? Eminem I ain't loud enough nah turn the Valium up! Eminem 'Cause Eminem I don't know how I'm gonna get your mouths to shut Now Eminem when it doesn't matter what caliber I spit at I'll bet a hundred thousand bucks Eminem You'll turn around and just be like Eminem \"Man how the fuck Sourpuss gonna get mad Eminem just 'cause his album sucks? Eminem And now he wants to take it out on us Eminem \" (Ooouuu) Eminem But last week an ex-fan mailed me a copy Of The Mathers LP to tell me to study It'll help me get back to myself Eminem and she'll love me Eminem (Oooouuu) Eminem I mailed the bitch back and said if I did that I'd just be like everyone else in the fuckin' industry Especially an effing Recovery clone of me (NFing) Eminem So finger-bang chicken wang MGK Igg Eminem ' Azae' Eminem Lil Pump Lil Xan imitate Lil Wayne Eminem I should aim at everybody in the game pick a name Eminem I'm fed up with bein' humble Eminem And rumor is Eminem I'm hungry Eminem I'm sure you heard rumblings Eminem I heard you wanna rumble like an empty stomach I heard your mumblin' Eminem but it's jumbled in mumbo-jumbo Eminem The era that I'm from will pummel you Eminem that's what it's comin' to What the fuck you're gonna do when you run into it? Eminem I'm gonna crumble you Eminem and I'll take a number two Eminem And dump on you if you ain't Joyner Eminem If you ain't Kendrick or Cole or Sean then you're a goner Eminem I'm 'bout to bring it to anyone in this bitch who want it I guess when you walk into BK Eminem you expect a Whopper Eminem You can order a Quarter Pounder when you go to McDonald's Eminem But if you're lookin' to get a porterhouse you better go get Revival Eminem But y'all are actin' like I tried to serve you up a slider Eminem Maybe the vocals shoulda been auto-tuned Eminem And you woulda bought it Eminem But sayin' I no longer got it Eminem 'Cause you missed a line and never caught it Eminem 'Cause it went over your head because you're too stupid to get it Eminem 'Cause Eminem you're mentally retarded but pretend to be the smartest With your expertise and knowledge Eminem but you'll never be an artist Eminem And I'm harder on myself than you could ever be regardless Eminem What I'll never be is flawless all I'll ever be is honest Eminem Even when I'm gone they're gonna say I brought it Even when I hit my forties like a fuckin' alcoholic With a bottle full of malt liquor Eminem But I couldn't bottle this shit any longer Eminem The fact that I know that I'ma hit my bottom Eminem If I don't pull myself from the jaws of defeat and rise to my feet I don't see why y'all even started with me Eminem I get in beefs Eminem my enemies die Eminem I don't cease fire 'til at least all are deceased Eminem I'm east side never be caught slippin' Eminem Now you see why I don't sleep not even a wink Eminem I don't blink Eminem I don't doze off Eminem I don't even nod to the beats I don't even close my fuckin' eyes when I sneeze \"Aw man! Eminem That BET cypher was weak it was garbage Eminem The Thing ain't even orange Eminem — Eminem oh my God that's a reach!\" Eminem Shout to all my colorblind people Each and everyone of y'all if you call a fire engine green Aquamarine or you think water is pink \"Dawg that's a date.\" Eminem \"Looks like an olive to me.\" Eminem \"Look there's an apple! Eminem \" Eminem No it's not it's a peach! Eminem So finger-bang Pootie Tang Burger King Gucci Gang dookie dang Charlamagne gonna hate anyway doesn't matter what I say Give me Donkey of the Day Eminem What a way for 2018 to get underway Eminem But I'm gonna say everything that I wanna Eminem say Eminem Welcome to the slaughterhouse bitch! Eminem (Yeah Eminem ) Invite 'em in like a One A Day Eminem I'm not done (Preach!) Eminem 'Cause Eminem I feel like the beast of burden That line in the sand was it even worth it? Eminem 'Cause the way I see people turning's Makin' it seem worthless it's startin' to defeat the purpose I'm watchin' my fan base shrink to thirds Eminem And I was just tryin' to do the right thing but word Eminem Has the court of public opinion reached a verdict Or still yet to be determined? Eminem 'Cause Eminem I'm determined to be me critiqued or worshipped Eminem But if I could go back I'd at least reword it Eminem And say I empathize with the people this evil serpent Sold the dream to that he's deserted Eminem But I think it's workin' These verses are makin' him Eminem a wee bit nervous Eminem And he's too scurred to answer me with words Eminem 'Cause he knows that he will lyrically get murdered Eminem But I know at least he's heard it Eminem 'Cause Agent Orange just sent the Secret Service To meet in person to see if I really think of hurtin' him Eminem Or ask if I'm linked to terrorists I said \"Only when it comes to ink and lyricists. Eminem \" Eminem But my beef is more media journalists (Hold up hold up hold up…) Eminem I said my beef is more meaty a journalist Can get a mouthful of flesh Eminem And yes I mean eatin' a penis Eminem 'Cause Eminem they been pannin' my album to death Eminem So I been givin' the media fingers Eminem Don't wanna turn this to a counseling sesh Eminem But they been puttin' me through the ringer Eminem So I ain't ironin' shit out with the press Eminem But I just took this beat to the cleaners I've been a liar been a thief Been a lover Eminem been a cheat Eminem All my sins need holy water feel it washing over me Eminem Well little one I don't want to admit to something If all it's gonna cause is pain Truth and my lies right now Eminem are falling like the rain So let the river run He's comin' home with his neck scratched to catch flack Sweat jackets and dress slacks mismatched On his breath's Jack Eminem he's a sex addict Eminem And she just wants to exact revenge and get back Eminem It's a chess match Eminem she's on his back like a jet-pack Eminem She's kept track of all his Internet chats And guess who just happens to be movin' on to the next Actually just shit on my last chick Eminem and she has what my ex lacks Eminem 'Cause she loves danger psychopath Eminem And you don't fuck with no man's girl Eminem even I know that Eminem But she's devised some plan to stab him in the back Knife in hand Eminem says their relationship's hangin' by a strand Eminem So she's been on the web Eminem lately Says maybe she'll be my Gwen Stacy to spite her man Eminem And I know she's using me to try to play him Eminem I don't care Hi Suzanne Eminem but I shoulda said \"Bye Suzanne Eminem \" After the first night Eminem but tonight I am Eminem I've been a liar been a thief Been a lover Eminem been a cheat Eminem All my sins need holy water feel it washing over me Eminem Well little one I don't want to admit to something If all it's gonna cause is pain Eminem The truth and my lies now are falling like the rain Eminem So let the river run A one-night stand turned a two-night stand Eminem It was \"come sunlight scram Eminem \" now we hug tight and... Eminem He found out now she feels deserted and used 'Cause he left Eminem so what? Eminem He did it first to her too Eminem Now how am I supposed to tell this girl that we're through? Eminem It's hard to find the words I'm aloof nervous and Sue Don't want this to hurt Eminem but what you deserve is Eminem the truth Don't take it personal Eminem I just can't say this in person to you Eminem So I revert to the studio like hole-in-the-wall diners Eminem Don't have to be reserved in a booth I just feel like the person who I'm turning into Eminem 's Irreversible Eminem I preyed on you like it's church at the pew Eminem And now that I got you Eminem I don't want you Took advantage in my thirst to pursue Eminem Why do I do this dirt that I do? Eminem Get on my soapbox and preach my sermon and speech Detergent and bleach is burnin' the wound Eminem 'Cause now with her in the womb We can't bring her in this world shoulda knew To use protection 'fore I bit into your forbidden fruit Fuck! Eminem I've been a liar been a thief Been a lover Eminem been a cheat Eminem All my sins need holy water feel it washing over me Eminem Well little one I don't want to admit to something If all it's gonna cause is pain Eminem The truth and my lies now are falling like the rain Eminem So let the river run My name's (ooh) my name's (ooh) River (ooh) river run Eminem Call me (ooh) call me (ooh) River Eminem (ooh) we'll let the river run Always the bridesmaid Eminem never \"The bride hey! Eminem \" Eminem Fuck can I say? Eminem If life was a highway And deceit was an enclave I'd be swerving in five lanes Speeds at a high rate like I'm slidin' on ice Eminem maybe That's why I may have came at you sideways Eminem I can't keep my lies straight Eminem But I made you terminate my baby Eminem This love triangle left us in a wreck tangled Eminem What else can I say? Eminem It was fun for a while Bet Eminem I really woulda Eminem loved your smile Eminem Didn't really wanna abort but fuck it Eminem What's one more lie to tell our unborn child? Eminem I've been a liar been a thief Been a lover Eminem been a cheat Eminem All my sins need holy water feel it washing over me Eminem Well little one Eminem (I'm sorry) Eminem I don't want to admit to something (I fucked up) Eminem If all it's gonna cause is pain Eminem The truth and my lies now are falling like the rain Eminem So let the river run Eminem Now this shit's about to kick off this party Eminem looks wack Eminem Let's take it back to straight hip-hop and start it from scratch Eminem I'm 'bout to bloody this track up everybody get back Eminem That's why my pen needs a pad 'cause my rhymes on the rag Just like I did with addiction Eminem I'm 'bout to kick it Like a magician critics I turn to crickets Eminem Got 'em still on the fence whether to picket But quick to get it impaled when I tell 'em \"Stick it!\" Eminem So sick I'm looking pale—wait Eminem that's my pigment ' Eminem Bout to go ham Eminem ya bish shout out to Kendrick Let's bring it back to that vintage Slim bitch! Eminem The art of MCing mixed with da Vinci and MC Ren Eminem And I don't mean Stimpy's friend bitch Been Public Enemy since you thought PE was Eminem gym bitch Eminem Kick your shoes off let your hair down Eminem (And go berserk) all night long Grow your beard out Eminem just weird out Eminem (And go berserk) all night long Eminem We're gonna rock this house until we knock it down Eminem So turn the volume loud Eminem 'Cause Eminem it's mayhem 'til the A.M. Eminem So baby make just like K-Fed Eminem And let yourself go let yourself go Eminem Say Eminem \"Fuck it!\" Eminem before we kick the bucket Life's too short to not go for broke Eminem So everybody everybody go berserk grab your vial Eminem yeah Eminem Guess Eminem it's just the way that I'm dressed Eminem ain't it? Eminem Khakis pressed Nike shoes crispy and fresh laced Eminem So I guess it ain't that aftershave Eminem Or cologne that made 'em just faint Eminem Plus I showed up with a coat fresher than wet paint Eminem So if love is a chess game check mate Eminem But girl your body's bangin' jump me in dang bang-bang Eminem Yes siree 'Bob' I was thinking the same thang Eminem So come get on this Kid's rock baw with da baw Eminem dang-dang Pow-p-p-p-pow Eminem chica pow chica Eminem wow Eminem -wow Got your gal blowin' up a valve valve-valve Eminem Ain't slowin' down throw in the towel towel-towel Eminem Dumb it down Eminem I don't know how huh-huh Eminem how-how At least I know that I don't know Question is are you bozos smart enough to feel stupid? Eminem Hope Eminem so now ho Eminem … Kick your shoes off let your hair down (And go berserk) all night long Grow your beard out Eminem just weird out Eminem (And go berserk) all night long Eminem We're gonna rock this house until we knock it down Eminem So turn the volume loud Eminem 'Cause Eminem it's mayhem 'til the A.M. Eminem So crank the bass up like crazy And let yourself go let yourself go Eminem Say Eminem \"Fuck it!\" Eminem before we kick the bucket Life's too short to not go for broke Eminem So everybody everybody go berzerk get your vinyls! Eminem They say that love is powerful as cough syrup in styrofoam Eminem All I know is Eminem I fell asleep and woke up in that Monte Carlo Eminem With the ugly Kardashian Lamar Eminem oh Sorry yo— Eminem we done both set the bar low Far as hard drugs are though that's the past Eminem But I done did enough codeine to knock Future into tomorrow Eminem And girl I ain't got no money to borrow Eminem But I am tryin' to find a way to get you alone: Eminem car note Eminem Oh Marshall Mathers Shithead with a potty mouth get the bar of soap lathered Kangol's and Carheartless Cargos Girl Eminem you're fixin' to get your heart broke Eminem Don't be absurd Eminem ma'am Eminem you birdbrain baby Eminem I ain't called anybody baby since Birdman unless you're a swallow Word Rick? Eminem (Word man you heard) Eminem But don't get discouraged girl Eminem This is your jam unless you got toe jam Kick your shoes off Eminem let your hair down (And go berserk) all night long Grow your beard out Eminem just weird out Eminem (And go berserk) all night long Eminem We're gonna rock this house until we knock it down Eminem So turn the volume loud Eminem 'Cause Eminem it's mayhem 'til the A.M. Eminem So baby make just like K-Fed Eminem And let yourself go let yourself go Eminem Say Eminem \"Fuck it!\" Eminem before we kick the bucket Life's too short to not go for broke Eminem So everybody everybody go berserk grab your vial Eminem yeah Eminem I got a song filled with shit for the strong-willed When the world gives you a raw deal Sets you off ' Eminem til you scream \"Piss off! Eminem Screw you! Eminem \" Eminem When it talks to you like you don't belong Or tells you you're in the wrong field Eminem When something's in your mitochondrial Eminem 'Cause it latched on to you Eminem like— Knock knock let the devil in Manevolent as I've ever been head is spinnin' This medicine's screamin' \"L-L-L-Let us in! Eminem \" Eminem L-L-L-Like a salad bowl Edgar Allan Poe Bedridden shoulda Eminem been dead Eminem a long time ago Liquid Tylenol gelatins think my skeleton's meltin' Eminem Wicked Eminem I get all high when I think I've smelled the scent Of elephant manure Eminem —hell Eminem I meant Kahlúa Screw it to hell with it Eminem I went through hell with accelerants And blew up my-my-myself again Eminem Volkswagen tailspin bucket matches my pale skin Mayo and went from Hellmann's and being rail thin Eminem Filet-o-Fish Scribble Jam Rap Olympics ' Eminem 97 Freaknik Eminem How can I be down? Eminem Me and Bizarre in Florida Proof's room slept on the floor of 'da motel then Dr. Dre said Eminem \"Hell yeah! Eminem \" Eminem And I got his stamp like a postcard word to Mel-Man Eminem And I know they're gonna hate Eminem But I don't care I barely can wait To hit 'em with the snare and the bass Square in the face this fuckin' world better prepare to get laced Because they're gonna taste my— Venom (I got that) adrenaline momentum Eminem And I'm not knowin' when I'm Ever gonna slow up Eminem and I'm Ready to snap any moment Eminem I'm Thinkin' it's time to go Eminem get 'em Eminem They ain't gonna know what hit 'em (W-W- Eminem When they get bit with the—) Eminem Venom (I got that) adrenaline momentum Eminem And I'm not knowin' when I'm Ever gonna slow up Eminem and I'm Ready to snap any moment Eminem I'm Thinkin' it's time to go Eminem get 'em Eminem They ain't gonna know what hit 'em (W-W- Eminem When they get bit with the—) Eminem I said knock knock let the devil in Shotgun p-p-pellets in the felt pen Eminem Cocked fuck around and catch a hot one Eminem It-it's evident Eminem I'm not done V-Venomous Eminem the thoughts spun Like a web Eminem and you just caught in 'em Eminem Held against your will like a hubcap or mud flap Beat strangler attack Eminem So this ain't gonna feel like a love tap Eat painkiller pills fuck up the track Eminem Like what's her name's at the wheel? Eminem Danica Patrick Threw the car into reverse at the Indy a nut crashin' Into ya the back of it just mangled steel My Mustang and the Jeep Wrangler grill Eminem With the front smashed much as my rear fender assassin Slim be a combination of an actual kamikaze and Gandhi (Gandhi) Translation I will probably kill us both Eminem When I end up backin' into ya You ain't gonna be able to tell what the fuck's happenin' to ya Eminem When you're bit with the— Venom adrenaline momentum Eminem And I'm not knowin' when I'm Ever gonna slow up Eminem and I'm Ready to snap any moment Eminem I'm Thinkin' it's time to go Eminem get 'em Eminem They ain't gonna know what hit 'em (W-W- Eminem When they get bit with the—) Eminem Venom (I got that) adrenaline momentum Eminem And I'm not knowin' when I'm Ever gonna slow up Eminem and I'm Ready to snap any moment Eminem I'm Thinkin' it's time to go Eminem get 'em Eminem They ain't gonna know what hit 'em (W-W- Eminem When they get bit with the—) Eminem I said knock knock let the devil in Alien E-E-Elliott phone home Eminem Ain't no telling when this chokehold On this game will end Eminem I'm loco Eminem Became a Symbiote Eminem so My fangs are in your throat Eminem ho Eminem You're snake-bitten with my—venom With the ballpoint pen Eminem I'm Eminem Gun cocked Eminem bump stock double-aught buckshot Tire thumper a garrote tie Eminem a couple knots Fired up and caught fire juggernaut Punk rock bitch Eminem it's goin' down like Yung Joc Eminem 'Cause the Doc put me on like sunblock Eminem Why the fuck not you only get one shot Ate shit ' Eminem til I can't taste it Chased it with straight liquor Eminem Then paint thinner then drank 'til I faint And awake with a headache Eminem And I take anything in rectangular shape Eminem Then I wait to face the demons I'm bonded to 'Cause Eminem they're chasin' Eminem me Eminem but I'm part of you Eminem So escapin' me is impossible Eminem I latch onto you like a—parasite Eminem And I probably ruined your parents' life Eminem And your childhood too 'Cause if I'm the music that y'all grew up on Eminem I'm responsible for you retarded fools Eminem I'm the super villain Eminem Dad and Mom was losin' their marbles to You marvel that? Eminem Eddie Brock is you Eminem And I'm the suit Eminem so call Eminem me— Venom (I got that) adrenaline momentum Eminem And I'm not knowin' when I'm Ever gonna slow up Eminem and I'm Ready to snap any moment Eminem I'm Thinkin' it's time to go Eminem get 'em Eminem They ain't gonna know what hit 'em (W-W- Eminem When they get bit with the—) Eminem Venom (I got that) adrenaline momentum Eminem And I'm not knowin' when I'm Ever gonna slow up Eminem and I'm Ready to snap any moment Eminem I'm Thinkin' it's time to go Eminem get 'em Eminem They ain't gonna know what hit 'em (W-W- Eminem When they get bit with the—) Eminem Tay Keith fuck these niggas up! Eminem Yeah Eminem Brain dead eye drops Pain meds cyclops Daybed iPod \"May-back Eminem \" Maybach Trainwrecks sidewalks Eminem Payless Eminem high-tops K-Fed iHop Playtex icebox Eminem That's how much we have in common Eminem (Yah!) Eminem That's how much we have in common (Whoa!) Eminem Up on this mic when we're on it (Yah) Eminem That's how much we have in common (Yuh!) Eminem That's how much we have in common (Woo!) Eminem That's how much we have in common Eminem We are not alike Eminem there's nada like us on the mic (Yah!) Eminem I don't do Jordans and Audemars Eminem I do explosions and Eminem Molotovs Y'all blowin' smoke Eminem as if y'all ain't washed I blow the smoke from the car exhaust Flyin' to a party I am not invited to feelin' like the streets need me Eminem I ain't gotta dance long as my Ferrari Spider move like C Breezy Eminem I don't gotta hire goons I'd rather try to buy the moon and breathe freely Eminem The sky is blue the tires is new Eminem The Maserati white and cool like G-Eazy Eminem Why these dudes tryna figure out How to do a freestyle as fly as me? Eminem (Why?) Eminem I'm confused tryna figure out how to do Kapri Styles and Mya G Eminem Everybody doin' chick joints Eminem Probably rob these little dudes at fist point 'Member everybody used to bite Nickel Eminem Now everybody doin' Bitcoin Eminem We don't got nothin' in common Eminem (No!) Eminem We don't got nothin' in common (No!) Eminem Y'all into stuff like doubled-up Styrofoam cups Eminem On them uppers-and-downers (Woo!) Eminem I'm into stuff like doublin' commas Eminem Find me a brother who's solid To count the shit up and then bust the shit down Eminem If the cops hit us up we can flush the shit down Eminem We cannot give a fuck shit a fuckin' Eminem colonic Sellin' your cock and your butt for a follower Possible couple of dollars you powder sniff Eminem Now you slippin' Eminem call it a power trip a product of politics Eminem Y'all went from profit and toppin' the charts To dropped in the park in a pile of shit Knowledge is power but powerless Eminem If you've got it and you do not acknowledge it Eminem Y'all music sound like Dr. Seuss inspired it Hirin' strippers prostitutes retirin' We can spit it for ya advance Eminem I'm fit to be king you're cut out to fit in Prince pants Eminem You niggas— Brain dead eye drops Pain meds cyclops Daybed iPod \"May-back Eminem \" Maybach Trainwrecks sidewalks Eminem Payless Eminem high-tops K-Fed iHop Playtex icebox Eminem That's how much we have in common Eminem (Yah!) Eminem That's how much we have in common (Whoa!) Eminem Up on this mic when we're on it (Yah) Eminem That's how much we have in common (Yuh!) Eminem That's how much we have in common (Woo!) Eminem That's how much we have in common Eminem We are not alike Eminem there's nada like Eminem us— Eminem You say you're affiliated with murderers killas Eminem (Ayy!) Eminem The people you run with are thuggin' (Gang!) Eminem But you just a wannabe gunna (Gang!) Eminem Like you was gon Eminem na do somethin' Actin' like you catchin' bodies Eminem (Ayy!) Eminem And you got juice Eminem lil' youngin Eminem ' you buggin' You ain't never even been charged in connection with battery Bitch you ain't plugged in to Eminem nothin' Rap God spit lyrical bullets (Pew!) Eminem And gats cock your partners better tool up Eminem This has not to do with muscular Eminem But have guns for sure you better put a Strap on other words if you're gonna Roll up with your (Gang!) Eminem you're gon' need a arsenal 'Cause this bar is over your head Eminem So you better have arms if you're gonna pull up (Skrrt!) Eminem Oh you run the streets Eminem huh? Eminem Now you wanna come and fuck with me Eminem huh? Eminem This little cock-sucker he must be feelin' himself Eminem He wants to keep up his tough demeanour Eminem So he does a feature decides to team up with N9na Eminem But next time you don't gotta use Tech N9ne Eminem If you wanna come at me with a sub Machine Gun Eminem And I'm talkin' to you Eminem But you already know who the fuck you are Kelly Eminem I don't use sublims and sure as fuck don't sneak-diss But keep commenting on my daughter Hailie I keep on telling you motherfuckers Eminem But just in case you forgot really and need Eminem Ja memories Jarred like strawberry or pineapple apricot jelly I respond rarely but Eminem this time Shady 'bout to sound off Like Eminem a fuckin' cocked semi-Glock demi-god Let me put a fuckin' silencer on this little Non-threatening blond fairy cornball takin' shots at me Eminem You're not ready fool Eminem break yourself like Rock Steady Crew Eminem Obviously I'm not gettin' through We can get it poppin' like Redenbach lettin' off like Remy Ma Heavy artillery Godzilla harsh with a hard shell Eminem With a motherfucking heart bigger than Bizarre's belly Only time you'll ever say I lost You'll be talkin Eminem ' 'bout Fetty Wap better call Diddy Just to try to get me off Eminem and you better hope I don't call Trick Trick Bitch Eminem this shit don't fly in our city Eminem Punk you don't disrespect OGs R.I.P. Prodigy Eminem Sold Dre my soul and then told him the moment he signed me Eminem That I'll be the most hated though made it Eminem So that there's no shame Eminem it's okay to own it Eminem 'Cause life is a bitch Eminem she's a bow-legged ho Eminem But now those days are over I Harvey Weinstein a bathrobe hanging open Eminem My code name is groper Eminem I role play with lotion Eminem I fuck the whole world Eminem then I throw away the Trojan Old lederhosen with home-made explosives I blow 80 holes in you Eminem Don't make me go in I Eminem OJ the flows Eminem and I'm insult to injury Rolaids to Goldman Eminem I'm throat spray and Eminem Motrin Eminem I throated Nicole Eminem As they both there to choke and my whole blade is soakin' I double-edge sword it 'cause one place I poke Eminem and I stick Eminem and I turn in a rotating motion Invisible with the pen I'm at the pinnacle of sick individuals Eminem Stick my dick and put the tip in at minimal I'm fuckin' these syllables I let 'em lick on my genitals Eminem I'm a fucking invincible indefensible despicable difficult prick Eminem A little bit unpredictable I spit the formidable That you bitches fuckin' with the original I consider me and Nickel identical— Eminem but not us Eminem The only thing we have in common is I'm a dick and you suck Otherwise one has nothin' to do with the other None Eminem come close to skunk bug soldier Eminem Tongue shrub shoulder one month older Sponge mug folder nun rug holster Eminem Lug nut coaster lung jug roaster Young Thug poster unplugged toaster! Eminem That's how much we have in common (Yah!) Eminem That's how much we have in common (Whoa!) Eminem Up on this mic when we're on it (Yah) Eminem That's how much we have in common Eminem (Yeah!) Eminem That's how much we have in common (Woo!) Eminem That's how much we have in common Eminem We are not alike Eminem there's nada like us— Eminem (Man fuck this shit let's go) Eminem Yeah yeah Nas Ayo Black— Nas it's time word Nas (Word it's time man) Nas It's time man Nas (Aight man begin) Nas Yeah Nas —straight out the fuckin' dungeons of rap Nas Where fake niggas don't make it back Nas I don't know how to start this shit yo Nas —now; Rappers; I monkey flip 'em with the funky rhythm Nas I be kickin' Musician inflictin' composition Of pain Nas I'm like Nas Scarface sniffin' cocaine Holdin' an M16 see with the pen Nas I'm extreme Nas Now bullet holes left in my peepholes Nas I'm suited up in street clothes Nas hand me a 9 and I'll defeat foes Nas Y'all know my steelo with or without the airplay I keep some E&J sittin' bent up in the stairway Nas Or either on the corner bettin' Grants with the cee-lo champs Laughin' at base-heads tryna sell some broken amps G-packs get off Nas quick forever niggas talk shit Reminiscin' about the last time the task force flipped Niggas be runnin' through the block shootin' Time to start the revolution catch a body head for Houston Nas Once they caught us off-guard Nas the MAC-10 was in the grass Nas and I ran like a cheetah with thoughts of an assassin Picked the MAC up told brothers \"Back up! Nas \" Nas — the MAC spit Nas Lead was hittin' niggas Nas one ran Nas I made him backflip Nas Heard Nas a few chicks scream my arm shook Nas couldn't look Nas Gave another squeeze Nas heard it click Nas \"Yo my shit is stuck! Nas \" Tried to cock it Nas it wouldn't shoot now Nas I'm in danger Nas Finally pulled it back and saw three bullets caught up in the chamber Nas So now I'm jettin' through the buildin' lobby Nas And it was full of children Nas prob'ly couldn't see as high as I be Nas (So what you sayin'?) Nas It's like the game ain't the same Got younger niggas pullin' the triggers bringin' fame to their name Nas And claim some corners crews without guns are goners Nas In broad daylight stick-up kids they run up on us Nas .45 Nas ’s and gauges MAC's in fact Same niggas will catch you back-to-back snatchin' your cracks in black Nas There was a snitch on the block gettin' niggas knocked Nas So hold your stash 'til the coke price drop Nas I know this crackhead who said she got to smoke nice rock Nas And if it's good Nas she'll bring you customers and measuring pots Nas but yo You gotta slide on a vacation Inside information Nas keeps large niggas erasin' and their wives basin' Nas It drops deep as it does in my breath I never sleep 'cause sleep is the cousin of death Beyond the walls of intelligence life is defined I think of crime when I'm in the New York State of Mind New York state of mind New York state of mind New York state of mind New York state of mind Nas Be havin' dreams that I'm a gangsta drinkin' Moëts holdin' Nas TEC's Makin' sure the cash came correct Nas then I stepped Investments in stocks Nas sewin' up the blocks to sell rocks Winnin' gunfights with Nas mega-cops But just a nigga walkin' with his finger on the trigger Make enough figures until my pockets get bigger Nas I ain't the type of brother made for you to start testin' Give me a Smith & Wesson Nas I have niggas undressin' Thinkin' of cash flow Buddha and shelter Nas Whenever frustrated Nas I'ma hijack Delta Nas In the PJ's my blend tape plays bullets are strays Nas Young bitches is grazed each block is like a maze Full of black rats trapped plus the Island is packed From what I hear in all the stories when my peoples come back Nas Black Nas I'm livin' where the nights is jet-black The fiends fight to get crack Nas I Nas just max Nas I dream Nas I can sit back Nas And lamp like Capone with drug scripts sewn Or the legal luxury life rings flooded with stones homes Nas I got so many rhymes Nas I don't think I'm Nas too sane Life is parallel to Hell Nas but I must maintain And be prosperous though we live dangerous Cops could just arrest me blamin' us Nas ; we're held like hostages Nas It's only right that I was born to use mics Nas And the stuff that I write is even tougher than dykes Nas I've taken rappers to a new plateau Nas Through rap slow my rhymin' is a vitamin held without a capsule Nas The smooth criminal on beat breaks Never put me in your box if your shit eats tapes The city never sleeps full of villains and creeps Nas That's where I learned to do my hustle Nas had to scuffle with freaks Nas I'm a addict for sneakers 20's of Buddha and bitches with beepers Nas In the streets I can greet ya about blunts I teach ya Nas Inhale deep like the words of my breath Nas I never sleep 'cause sleep is the cousin of death I lay puzzle as I backtrack to earlier times Nas Nothing's equivalent to the New York state of mind New York state of mind New York state of mind New York state of mind New York state of mind Nas \"Nasty Nas—\" Fuck Jay Z! Nas (What's up niggas? Nas Ayo Nas I know you ain't talkin' about me dog Nas You? Nas What?!) Nas Fuck Jay Z! Nas (You been on my dick nigga Nas You love my style nigga) Nas Fuck Jay Z! Nas (I Nas ) Fuck with your soul like ether Nas (Will) Teach you – the king Nas – Nas you know you (Not) God's Son across the belly Nas (Lose) Nas I prove you lost already Brace yourself for the main event y' Nas all impatiently waitin' Nas It's like an AIDS test what's the results? Nas Not positive Nas Who's the best: Pac Nas and B.I.G.? Nas Ain't no best East West North South flossed out greedy Nas I embrace y'all with napalm Blows up no guts left chest/face Nas gone Nas How could Nas be garbage? Nas Semi-autos at your cartilage Burner at the side of your dome come out of my throne! Nas I got this locked since 9-1 Nas I am the truest Name a rapper that I ain't influenced Gave y'all chapters Nas but now I keep my eyes on the Judas Nas With Hawaiian Sophie fame kept my name in his music Nas (I) Fuck with your soul like ether (Will) Teach you – Nas the king Nas – Nas you know you (Not) God's Son across the belly Nas (Lose) Nas I prove you lost already Ayo pass me the weed! Nas Put my ashes out on these niggas man Nas Ayo you Nas faggots y' Nas all kneel Nas And kiss the motherfuckin' ring! Nas (I Nas ) Fuck with your soul like ether Nas (Will) Teach you – the king Nas – Nas you know you (Not) God's Son across the belly Nas (Lose) Nas I prove you lost already I've been fucked over left for Nas dead dissed and forgotten Luck ran out Nas they hoped that I'd be gone stiff and rotten Y'all Nas just piss on me shit on me spit on my grave Talk about me laugh behind my back but in my face Nas Y'all some well-wishers friendly-acting envy-hiding snakes With your hands out for my money man Nas how much can I take? Nas When these streets keep callin' heard it when I was sleep That this Gay-Z and Cock-a-Fella Records wanted beef Started cockin' up my weapon slowly loadin' up this ammo To explode it on a camel and his soldiers I can handle this for dolo and his manuscript just sound stupid When KRS already made an album called Blueprint Nas (dick!) Nas First Biggie's your man then you got the nerve to say That you better than B.I.G Dick-suckin' lips why don't you let the late great veteran live? Nas I… Nas will… Nas not… lose God's son across the belly Nas I prove you lost already The king is back where my crown at? Nas Ill Will rest in peace! Nas Let's do it niggas! Nas (I Nas ) Fuck with your soul like ether Nas (Will) Teach you – the king Nas – Nas you know you (Not) God's Son across the belly Nas (Lose) Nas I prove you lost already Y'all niggas deal with emotions like bitches Nas What's sad is Nas I love you Nas ‘ Nas cause you're my brother Nas You traded your soul for riches My child Nas I've watched you grow up to be famous Nas And now I smile like a proud dad watchin' his only son that made it You seem to be only concerned with dissin' women Nas Were you abused as a child? Nas Scared to smile? Nas They called you ugly? Nas Well life is harsh Nas hug me don't reject me Or make records to disrespect me blatant or indirectly Nas In '88 Nas you was gettin' chased through your building Callin' my crib Nas and I ain't even give you my numbers Nas All I did was give you a style for you to run with Smilin' in my face glad to break bread with the God Wearin' Jaz' chains Nas no TEC's no cash no cars Nas No jail bars Nas Jigga no pies no case Nas Just Hawaiian shirts hangin' with little Chase Nas You a fan a phony a fake a pussy Nas a Stan Nas I still whip yo' ass you 36 in a karate class? Nas You Tae-Bo Nas ho Nas tryna work it out Nas you tryna get brolic? Nas Ask me if I'm tryna kick knowledge? Nas Nah Nas I'm tryna Nas kick the shit you need to learn though Nas That ether that shit that make your soul burn slow Nas Is he Dame Diddy Dame Daddy or Dame Dummy? Nas Oh I get it Nas you Biggie Nas and he's Nas Puffy Rocafella died of AIDS Nas that was the end of his chapter Nas And that's the guy y' Nas all chose to name your company after? Nas Put it together: I rock hoes y'all rock fellas Nas And now y'all try to take my spot fellas Nas Feel these hot rocks fellas put you in a dry spot fellas Nas In a pine box with nine shots from my Glock fellas Nas Foxy got you hot Nas ‘cause you kept your face in her puss Nas What you think you gettin' girls now Nas ‘cause of your looks? Nas Ne-gro please! Nas You no-mustache-havin' With whiskers like a rat compared to Beans you whack Nas And your man stabbed Un and made you take the blame Nas You ass went from Jaz to hangin' with Kane To Irv to B.I.G. – and Eminem Nas murdered you on your own shit Nas You a dick-ridin' faggot Nas you love the attention Nas Queens niggas run you niggas ask Russell Simmons! Nas Ha! Nas R-O-C get gunned up and clapped quick J.J. Evans get gunned up and clapped quick Nas Your whole damn record label gunned up and clapped quick Shawn Carter to Jay-Z – Nas damn you on Jaz dick! Nas So little shorty's gettin' gunned up and clapped quick Nas How much of Biggie's rhymes is gonna come out your fat lips? Nas Wanted to be on every last one of my classics Nas You pop Nas shit apologize nigga Nas just ask Kiss! Nas Ayo what's up what's up? Nas Let's keep it real son count this money Nas You know what I'm sayin'? Nas Yeah Nas yeah Nas Ayo put the Grants over there in the safe Nas You know what I'm sayin'? Nas ‘ Nas Cause we spendin' these Jacksons The Washingtons go to wifey you know how that go Nas I'm sayin' that's what this is all about right? Nas Clothes bankrolls and hoes Nas You know what I'm sayin'? Nas Yo Nas then what man what?! Nas Visualizin' the realism of life in actuality Fuck who's the baddest a person's status depends on salary Nas And my mentality is money-orientated Nas I'm destined to live the dream for all my peeps who never made it Nas ‘ Nas Cause Nas yeah Nas we were beginners in the hood as Five Percenters Nas But somethin' must've got in us Nas ‘cause all of us turned to sinners Nas Now some restin' in peace and some are sittin' in San Quentin Others such as myself Nas are tryin' to carry on tradition Keepin' this Schweppervescent street ghetto essence inside us Nas 'Cause it provides us with the proper insight to guide us Nas Even though we know somehow we all gotta go Nas But as long as we leavin' thievin' We'll be leavin' with some kind of dough Nas So until that day we expire and turn to vapors Me and my capers will be somewhere stackin' plenty papers Keepin' it Nas real packin' steel gettin' high Nas ‘ Nas Cause life's a bitch Nas and then you die Life's a bitch Nas and then you die Nas that's why we get high Nas ‘ Nas Cause you never know when you're gonna go Life's a bitch Nas and then you die Nas that's why we puff Nas lye Nas ‘ Nas Cause you never know when you're gonna go Life's a bitch Nas and then you die Nas that's why we get high Nas ‘ Nas Cause you never know when you're gonna go Life's a bitch Nas and then you die Nas that's why we puff Nas lye Nas I woke up early on my born day; I'm 20 Nas it's a blessin' The essence of adolescence leaves my body now Nas I'm fresh and My physical frame is celebrated Nas ‘cause I made it One quarter through life some godly-like thing created Got rhymes 365 days annual plus some Load up the mic and bust one cuss while I pus from My skull Nas ‘cause it's pain in my brain vein money maintain Nas Don't go against the grain simple and plain When I was young at this Nas I used to do my thing Nas hard Robbin' foreigners take they wallets they jewels and rip they green cards Nas Dipped to the projects flashin' my quick cash Nas And got my first piece of ass smokin' blunts with hash Nas Now it's all about cash in abundance Nas Niggas I used to run with is rich or doin' years in the hundreds I switched my motto; instead of sayin' \"Fuck tomorrow!\" Nas That buck that bought a bottle could've struck the lotto Nas Once I stood on the block loose cracks produce stacks I cooked up and cut small pieces to get my loot back Nas Time is illmatic Nas keep static like wool fabric Pack a 4-matic to crack your whole cabbage Nas Life's a bitch Nas and then you die Nas that's why we get high Nas ‘ Nas Cause you never know when you're gonna go Life's a bitch Nas and then you die Nas that's why we puff Nas lye Nas ‘ Nas Cause you never know when you're gonna go Life's a bitch Nas and then you die Nas that's why we get high Nas ‘ Nas Cause you never know when you're gonna go Life's a bitch Nas and then you die Nas that's why we puff Nas lye Nas ‘ Nas Cause you never know when you're gonna go Life's a bitch Nas and then you die (It's yours) Nas Whose world is this? Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas (It's yours) Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas I sip the Dom P watchin' Gandhi 'til I'm charged then Writin' in my book of rhymes all the words past the margin Behold Nas the mic Nas I'm throbbin' mechanical movement Nas Understandable smooth shit that murderers move with Nas The thief's theme play me at night Nas they won't act right Nas The fiend of hip-hop has got me stuck like a crack pipe Nas The mind activation react like I'm facin' Time like Pappy Mason with pens Nas I'm embracin' Nas Wipe the sweat off my dome Nas spit Nas the phlegm on the streets Suede Timbs on my feet makes my cipher complete Nas Whether cruisin' in a Six cab or Montero Jeep Nas I can't call it Nas the beats make me fallin' asleep I keep fallin' but never fallin' six feet deep Nas I'm out for presidents to represent me Nas (Say what?) Nas I'm out for presidents to represent me Nas (Say what?) Nas I'm out for dead presidents to represent me Nas Whose world is this? Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas (It's yours) Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas To my man Ill Nas Will God bless your life To my peoples throughout Queens God bless your life I trip we box up crazy bitches Aimin' guns in all my baby Nas pictures Beef with housing police release scriptures that's maybe Hitler's Nas Yet I'm the mild money-gettin' style rollin' foul Nas The versatile honey-stickin' wild golden child Dwellin' in the Rotten Apple you get tackled Or caught by the devil's lasso shit is a hassle Nas There's no days for broke days Nas We sell it smoke pays while all the old folks pray To Jesús soakin' their sins in trays of holy water Odds against Nas Nas are slaughter Thinkin' Nas a word best describin' my life to name my daughter Nas My strength my son the star will be my resurrection Born in correction all the wrong shit Nas I did Nas He'll lead a right direction Nas How you livin'? Nas Large a broker charge cards are mediocre You flippin' coke or playin' spit spades and strip poker? Nas (It's yours) Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas (It's yours) Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas Yo the world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas (It's yours) Nas Break it down Nas It's yours Nas it's yours Nas It's yours Nas it's yours Nas I'm Nas the young city bandit hold myself down single-handed Nas For murder raps Nas I kick my thoughts alone get remanded Born alone die alone no crew to keep my crown or throne Nas I'm deep by sound alone caved inside 1000 miles from home Nas I need a new nigga for this black cloud to follow ‘ Nas Cause Nas while it's over me it's too dark to see Nas tomorrow Tryin' to maintain I flip fill the clip to the tip Picturin' my peeps not eatin' can make my heartbeat skip Nas And I'm amped up Nas they locked the champ up Nas Even my brain's in handcuffs Headed for Indiana stabbin' women like the Phantom Nas The crew is lampin' Nas Big Willie style Check the chip-toothed smile plus I profile wild Stash loot in Nas fly clothes burnin' dollars to light my stoge Walk the blocks with a bop checkin' dames Plus the games people play bust the problems of the world today Nas (It's yours) Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas (It's yours) Nas The world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas (It's yours) Nas Yeah the world is yours the world is yours Nas It's mine Nas it's mine Nas it's mine—whose world is this? Nas (It's yours) Nas Yeah Nas a'ight? Nas To everybody in Queens the foundation (It's yours!) Nas The world is yours Nas To everybody uptown yo the world is yours Nas (It's yours!) Nas The world is yours Nas To everybody in Brooklyn Y'all Nas know the world is yours (It's yours!) Nas The world is yours Everybody in Mount Vernon Nas the world is yours Nas (It's yours!) Nas Long Island Nas the world is yours Nas (It's yours!) Nas Staten Island Nas yeah Nas the world is yours Nas (It's yours!) Nas South Bronx the world is yours (It's yours!) Nas Aight Fake thug no love you get the slug Nas CB4 Gusto Nas Your luck low Nas I didn't know 'til I was drunk though You freak niggas played out get fucked and ate out Nas Prostitute turned bitch Nas I got the gauge out 96 ways I made out Montana way Nas The Good F-E-L-L-A verbal AK spray Dipped attache jump out the Range empty out the ashtray A glass of 'Zé make a man Cassius Clay Red dot plots murder schemes 32 shotguns regulate with my dunns 17 rocks gleam from one ring Nas They let me let y' Nas all niggas know one thing Nas There's one life Nas one love Nas so there can only be one King Nas The highlights of livin' Vegas-style roll dice in linen Antera spinnin' on millenniums 20 G bets Nas I'm winnin' Nas 'em threats Nas I'm sendin' 'em Nas Lex with TV sets the minimum ill sex adrenaline Party with villains a case of Demi-Sec Nas To chase the Henny wet any clique with the semi TEC Nas Who want it? Nas Diamonds Nas I flaunt it Nas Chickenheads flock Nas I lace 'em fried broiled with basil taste 'em Crack Nas the legs way out of formation Nas It's horizontal how I have 'em fuckin' Nas me in the Benz wagon Nas Can it be Vanity from Last Dragon? Nas Grab your gun Nas it's on though Shit is grimy real niggas buck in broad daylight With the broke MAC that won't spray right Nas Don't give a fuck who they hit as long as the drama's lit Nas Yo overnight thugs bug Nas ‘cause they ain't promised shit Hungry-ass hooligans stay on that piranha shit I never sleep Nas ‘cause sleep is the cousin of death I ain't the type of brother made for you to start testin' I never sleep ‘cause sleep is the cousin of death I ain't the type of brother made for you to start testin' I never sleep Nas ‘cause sleep is the cousin of death I ain't the type of brother made for you to start testin' I never sleep ‘cause sleep is the cousin of death I ain't the type of brother made for you to start testin' I peeped you frontin' Nas I was in the Jeep sunk in the seat tinted with heat Nas beats bumpin' Nas Across the street you was wildin' Nas Talkin' about how you ran the Island in '89 Layin' up playin' the yard with crazy shine Nas I cocked the baby 9 that nigga grave be mine Nas Clanked him—what was he thinkin'? Nas On my corner when it's pay-me time Nas Dug 'em Nas you owe me Nas cousin Somethin' told me \"Plug him!\" Nas So dumb felt my leg burn Nas then it got numb Spun around and shot one Heard shots and dropped son caught a hot one Somebody take this biscuit 'fore the cops come Nas Then they came askin' me my name Nas What the fuck? Nas I got stitched up Nas it went through Left the hospital that same night what Got my gat back time to backtrack Nas I had the drop Nas so how the fuck I get clapped? Nas Black was in the Jeep Nas watchin' Nas All he seen speed by was a brown Datsun Nas And yo nobody in my hood got one Nas That clown nigga's through blazin' at his crew daily Nas The Bridge touched me up severely hear me? Nas So when I rhyme it's sincerely yours Nas Be lightin Nas ' Ls sippin' Coors on all floors in project halls Contemplatin' war niggas Nas I was cool with before We used to score together uptown coppin' the raw Nas But a thug changes and love changes And best friends become strangers Nas word up Nas Y'a–Y'all know my steelo Nas Ther–Ther–Ther–Ther–Ther– Nas There ain't an army that could strike back Nas Y'a–Y'all know my steelo Nas Ther–Ther–Ther–Ther– Nas There ain't an army that could strike back Nas Y'a–Y'all know my steelo Nas Ther–Ther–Ther– Nas There ain't an army that could strike back Nas Y'a–Y'all know my steelo There ain't an army that could strike back Thug niggas yo to them Nas thug niggas Gettin' it on in the world you know? Nas To them niggas that's locked down Nas Doin' Nas they thing survivin' ya Nas know'm sayin'? Nas To my thorough niggas New York and worldwide Yo to the Queensbridge Militia 9-6 shit Nas The Firm clique Illmatic nigga Nas It Was Written though It's been a long time comin' Y'all fake niggas tryin' to copy Better Nas come with the real though fake-ass niggas Nas yo Nas (They throw us slugs we throwin' them back Nas what) Bring the shit man! Nas Live man! Nas (Fuck that son word up) 9-6 shit Nas It ain't hard to tell I excel then prevail Nas The mic is contacted Nas I attract clientele Nas My mic check is life or death breathin' a sniper's breath Nas I exhale the yellow smoke of buddha through righteous steps Nas Deep like The Shining sparkle like a diamond Sneak a Uzi on the island in my army jacket linin' Hit the Earth like a comet—invasion! Nas Nas is like the Afrocentric Asian: half-man half-amazin' ‘Cause in my physical I can express through song Delete stress like Motrin then extend strong I drink Moët with Medusa give her shotguns in Hell Nas From the spliff that I lift and inhale; it ain't hard to tell The buddha monk's in your trunk turn the bass up Not stories by Aesop Place your loot up parties I shoot up Nas Nas I analyze drop a jew-el inhale from the L School Nas a fool Nas well you feel it like Braille Nas It ain't hard to tell I kick a skill like Shaquille Nas holds a pill Vocabulary spills Nas I'm Ill plus Matic Nas I freak Nas beats slam it like Iron Sheik Jam like a TEC with correct techniques Nas So analyze me surprise me but can't magmatize me Scannin' while you're plannin' ways to sabotage me Nas I leave 'em froze like heroin in your nose Nas Nas will rock well Nas ; it ain't hard to tell This rhythmatic explosion Is what your frame of mind has chosen I'll leave your brain stimulated niggas is frozen Speak with criminal slang begin like a violin End like Leviathan Nas it's deep? Nas Well let me try again Wisdom be leakin' out my grapefruit troop Nas I dominate break loops givin' mics men-e-strual cycles Nas Street's disciple Nas I rock beats that's mega trifle And groove even smoother than moves by Villanova Nas You're still a soldier Nas I'm like Sly Stone in Cobra Packin' like a Rasta in the weed spot Nas Vocals will squeeze Glocks MCs eavesdrop though they need not to sneak My poetry's deep I never fell Nas' raps should be locked in a cell; it ain't hard to tell What up kid? Nas I know shit is rough Nas doin' your bid Nas When the cops came you shoulda slid to my crib Fuck Nas it black no time for lookin' back Nas it's done Nas Plus congratulations you know you got a son I heard Nas he looks like ya why don't your lady write ya? Nas Told her she should visit that's when she got hyper Flippin' talkin' about Nas he acts too rough Nas He didn't listen he be riffin' while I'm tellin' him stuff Nas I was like \" Nas Yeah\" shorty don't care she a snake too Fuckin' with them niggas from that fake crew that hate you Nas But yo guess who got shot in the dome-piece? Nas Jerome's niece on her way home from Jones Beach Nas It's bugged plus Nas little Rob is sellin' drugs on the dime Hangin' out with young thugs that all carry 9's And night time Nas is more trife than ever What up with Cormega? Nas Did you see him? Nas Are y'all together? Nas If so then hold the fort down represent to the fullest Nas Say what's up to Herb Ice and Bullet Nas I left a half a hundred in your commissary Nas You was my nigga when push came to shove Nas (One what?) Nas One love! Nas One love one love one love Nas one love Nas One love Nas one love one love Nas one love Nas One love Nas one love one love Nas one love Nas One love Nas one love one love one love Nas Dear Born you'll be out Nas soon stay strong Out in New York Nas the same shit is goin' on Nas The crackheads stalkin' loudmouths is talkin' Hold check out the story yesterday when I was walkin' Nas That nigga you shot last year tried to appear Like he hurtin' Nas somethin' Word to mother Nas I heard him frontin' Nas And he be pumpin' on your block Nas Your man gave him your Glock Nas And now they run together Nas — Nas what up son? Nas Whatever Nas Since I'm on the streets Nas I'ma put it to a cease Nas But I heard you blew a nigga with a ox for the phone piece Wildin' on the Island but now in Elmira Better chill Nas ‘cause them niggas will put that ass on fire Nas Last time you wrote you said they tried you in the showers But maintain when you come home Nas the corner's ours Nas On the reals all these crab niggas know the deal Nas When we start the revolution all they probably do is squeal Nas But chill see you on the next V-I Nas I gave your mom dukes loot for kicks plus sent you flicks Your brother's buckwildin' in 4-Main Nas he wrote me Nas He might beat his case 'til he come home Nas I'll play it lowkey Nas So stay civilized time flies Nas Though incarcerated your mind dies I hate it when your moms cries It kinda makes me want to murder for reala I even got a mask and gloves to bust slugs but one love Nas One love one love one love Nas one love Nas One love Nas one love one love Nas one love Nas One love Nas one love one love Nas one love Nas One love Nas one love one love one love Nas Sometimes I sit back with a Buddha sack Mind's in another world thinkin' Nas \"How can we exist through the facts? Nas \" Nas Written in school text books bibles et cetera Fuck a school lecture the lies get me vexed- Nas er Nas So I be ghost from my projects Nas I take my pen and pad for the weekend Nas Hittin' L's while I'm sleepin' Nas A two-day stay you may say I need the time alone To relax my dome Nas no phone left the 9 at home Nas You see the streets had me stressed somethin' terrible Fuckin' with the corners have a nigga up in Bellevue Or HDM hit with numbers from eight to 10 A future in a maximum state pen is grim Nas So I comes back home Nas nobody's out Nas but Shorty Doo-Wop Rollin' two phillies together Nas : in the Bridge we call 'em oo-wops Nas He said: \"Nas niggas caught me bustin' off the roof Nas So I wear a bulletproof and pack a black tre-deuce. Nas \" Nas He inhaled so deep shut his eyes like he was sleep Nas Started coughin' one eye peeked to watch me speak Nas I sat back like The Mack Nas my army suit was black Nas We was chillin' on these benches Where he pumped his loose cracks Nas I took the L when he passed it this little bastard Nas Keeps me blasted and starts talkin' mad shit I had to school Nas him told him don't let niggas fool him Nas ‘ Nas Cause when the pistol blows The one that's murdered be the cool one Tough luck when niggas are struck families fucked up Coulda caught your man but didn't look when you bucked up Mistakes happen so take heed Nas never bust up At the crowd catch him solo make the right man bleed Shorty's laugh Nas was cold-blooded as he spoke so foul Only 12 tryin' to tell me that he liked my style Nas Then I rose wipin' Nas the blunt's ash from my clothes Then froze only to blow the herb smoke through my nose And told my little man Nas I'ma ghost Nas I broze Nas Left some jewels in his skull that he can sell if he chose Words of wisdom from Nas: Nas try to rise up above Keep an eye out for Nas Jake Shorty Wop Nas one love Nas One love Nas one love one love Nas one love Nas One love Nas one love one love Nas one love Nas One love Nas one love one love Nas one love Nas One love Nas one love one love one love To all my niggas locked up From Queensbridge and all over To my man Nas one love To my man Herb one Nas love To my man Nas one love Can't forget Nas my motherfuckin' heart Big one love Nas To Nas yeah one love Life Nas I wonder Will it take me under? Nas I don't know Imagine smoking weed in the streets without cops harassin' Imagine going to court with no trial Lifestyle cruising blue Bahama waters no welfare supporters Nas More conscious of the way we raise our daughters Nas Days are shorter nights are colder Nas Feeling like life is over these snakes strike like a cobra The world's hot Nas my son got knocked evidently Nas It's elementary they want us all gone eventually Trooping out of state for a plate of knowledge Nas If coke was cooked without the garbage We'd all have the top dollars Nas Imagine everybody flashin Nas ' fashion designer clothes Nas Lacing your clique up with diamond Roles Nas Your people holding dough no parole Nas no rubbers Go in raw imagine law with no undercovers Nas Just some thoughts for the mind Nas I take a glimpse into time Watch Nas the blimp read Nas \"The World Is Mine\" Nas If I ruled the world (Imagine that) Nas I'd free all my sons I love Nas 'em love 'em baby Black diamonds and pearls (Could it be if you could be mine we'd both shine?) Nas If I ruled the world (Still living for today in these last days and times) Nas The way to be paradise life relaxin' Black Latino and Anglo-Saxon Armani Exchange deranged Cash Lost Tribe of Shabazz free at last Brand new whips to crash then we laugh in the iller path Nas The Villa house is for the crew how we do Trees for breakfast dime sexes and Benz stretches Nas So many years of depression make me vision The better livin' type of place to raise kids in Open they eyes to the lies history's told foul Nas But I'm as wise as the old owl plus the Gold Child Seeing things like Nas I was controllin' click rollin' Tricking six digits on kicks and still holdin' Trips to Paris Nas I civilized every savage Nas Give me one shot Nas I turn trife life to lavish Political prisoners set free stress free No work release purple M3's and Nas jet skis Nas Feel the wind breeze in West Indies Nas I make Coretta Scott-King mayor the cities And reverse fiends to Willies Nas It sounds foul but every girl I meet'd go down-town Nas I'd open every cell in Attica Nas send 'em to Africa Nas If I ruled the world (Imagine that) Nas I'd free all my sons I love Nas 'em love 'em baby Black diamonds and pearls (Could it be if you could be mine we'd both shine?) Nas If I ruled the world (Still living for today in these last days and times) Nas And then we'll walk right up to the sun Hand in hand Nas We'll walk right up to the sun We won't land We'll walk right up to the sun Hand in hand Nas We'll walk right up to the sun Nas We won't land You love to hear the story how the thugs live in worry Duck down in car seats heat's mandatory Running from Jake getting chased hunger for papes Nas These are the breaks many mistakes go down out of state Nas Wait Nas I had to let it marinate we carry weight Trying to get laced flip Nas the ace stack the safe Millionaire plan to keep the gat with the cocked hammer Making moves in Atlanta back-and-forth scrambler Nas ‘ Nas Cause you could have Nas all the chips be poor or rich Nas Don't nobody want a nigga having shit Nas If I ruled the world and everything in it sky's the limit I push a Q-45 Infinit(i) Nas It wouldn't be no such thing as jealousies or B Felonies Strictly living longevity to the destiny I thought I'd never see but reality struck Nas Better find out before your time's out what the fuck? Nas If I ruled the world (Imagine that) Nas I'd free all my sons I love Nas 'em love 'em baby Black diamonds and pearls (Could it be if you could be mine we'd both shine?) Nas If I ruled the world (Still living for today in these last days and times) Nas If I ruled the world if I ruled if I ruled (Imagine that) Nas I'd free all my sons Nas if I ruled if I ruled I love 'em love 'em baby Black diamonds and pearls black diamonds black diamonds (Could it be if you could be mine we'd both shine) Nas If I ruled the world (Still living for today in these last days and times) Nas If I ruled the world if I ruled If I ruled I'd free all my sons Black diamonds Nas I love 'em love 'em baby Black diamonds and pearls if I ruled If I ruled the world Nas If I ruled the world I love 'em love 'em baby!! Nas Represent represent Represent represent Nas Represent represent Nas Represent represent Straight up shit Nas is real Nas And any day could be your last in the jungle Nas Get murdered on a humble guns'll blast niggas tumble Nas The corners is the hot spot full of mad criminals Who don't care guzzling beers we all stare Nas At the out-of-towners (Ay yo yo who that?) Nas they better break North Nas Before we get the four pounders and take their face off The streets is filled with undercovers Homicide chasing brothers Nas The D's on the roof tryin' to watch us and knock us Nas And killer coppers even come through in helicopters I drink a little vodka spark a L and hold a Glock Nas For the fronters wannabe ill niggas and spot runners Nas Thinking it can't happen ' Nas til I trap 'em and clap 'em Nas And leave 'em done Nas won't even run about gods I don't believe in none of that shit your facts are backwards Nas Nas is a rebel of the street corner Pulling a TEC out the dresser; police got me under pressure Nas Represent represent Represent represent Represent represent Represent represent Yo Nas they call me Nas Nas I'm not your legal type of Nas fella Moët drinking marijuana smoking street dweller Nas Who's always on the corner rolling up blessed Nas When I dress it's never nothing less than Guess Cold be walking with a bop and my hat turned back Love committing sins Nas and my friends sell crack This nigga raps with a razor Nas keep it under my tongue Nas The school drop-out never liked the shit from day one Nas ‘ Nas Cause life ain't shit but stress fake niggas and crab stunts Nas So I guzzle my Hennessy while pulling on mad blunts Nas The brutalizer crew de-sizer accelerator Nas The type of nigga who be pissing in your elevator Nas Somehow the rap game reminds me of the crack game Used to sport Bally's and Cazals with black frames Nas Now I'm into fat chains sex and TECs Fly new chicks and new kicks Nas Heines and Beck's Represent represent Represent represent Represent Nas represent Nas No doubt see my stacks are fat this is what it's about Before the BDP conflict with MC Shan Around the time when Shante dissed the Real Roxanne I used to wake up every morning see my crew on the block Every day's a different plan that had us running from cops Nas If it wasn't hanging out in front of cocaine spots Nas We was at the candy factory breaking the locks Nas Nowadays I need the green in a flash just like the next man Fuck a yard Nas God let me see a hundred grand Nas Could use a gun son but fuck being the wanted man Nas But if I hit rock bottom then I'm Nas a be the Son of Sam Nas Then call the crew to get live too with Swoop Bokeem my brother Jungle Big Bo cooks up the blow Mike'll chop it; Mayo you count the profit My shit is on the streets this way the Jakes'll never stop it Nas It's your brain on drugs to all fly bitches and thugs 'Nuff respect to the projects I'm ghost one love Represent y' Nas all represent Represent y' Nas all represent Represent y' Nas all represent Represent y' Nas all represent One time for your mothafuckin' mind Nas This goes out to everybody in New York Nas That's living the real fucking life and every projects all over To my man Nas Big Nas Will he's still here Nas The 40 side of Vernon my man Big L.E.S Big Cee-Lo from the Don Shawn Penn the 40 busters My crew the shorty busters the 41st side of Vernon posse The Goodfellas my man Cormega Lakey the Kid Nas Can't forget Draws the Hillbillies My man Slate Wallethead Nas Black Jay Big Oogie Crazy barrio spot (Big Dove) we rock shit a lot PHD Nas And my man Premo from Gang Starr '94 real shit y'all (word up Harry O Nas ) Fuck y' Nas all crab-ass niggas though! Nas Bitch ass niggas! Nas Bitch ass niggas! Nas Young bitch ass motherfuckers! Nas Come to Queensbridge motherfucker! Nas Yeah Nas yeah let's bring it back Nas That's just a warm up Nas ‘ Nas Cause I can– on anybody Nas anybody (Nas is; Nas is; Nas is; Nas is; Nas is; Nas is; Nas is; Nas Nas is like Nas ; Nas is like; Nas is like) Nas Umm Premo Nas Nas Nas Yeah Nas yeah yo Nas (Nas is; Nas is; Nas is; Nas is; Nas is; Nas is; Nas is; Nas Nas is like) Nas Freedom or jail clips inserted a baby's being born Same time a man is murdered—the beginning and end As far as rap go Nas it's only natural Nas I explain My plateau and also what defines my name Nas First it was Nasty but times Nas have changed Nas Ask me now Nas I'm the artist but hardcore my sign's for pain I spent time in the game kept my mind on fame Saw fiends shoot up and do lines of cocaine Nas Saw my close friends shot flatline am I sane? Nas That depends carry MAC-10s to practice my aim Nas On rooftops tape CD covers to trees Line the barrel up with your weak picture then squeeze Street scriptures for lost souls in the crossroads To the corner thugs hustling for cars that cost dough To the big dogs living large taking in light Pushing big toys getting nice enjoying your life Nas It's what you make it suicide few try to take it Nas Belt tied around their neck in jail cells Nas naked Heaven and Hell rap legend presence Nas is felt Nas And of course N-A-S are the letters that spell ( Nas Nas Nas Nas) Nas Nas is like; life or death; I'm a rebel Nas My poetry's deep Nas I never fell Nas Nas is like; half-man half-amazing Nas (Uh) No doubt Nas Nas is like; life or death; I'm a rebel (Uh uh) Nas My poetry's deep Nas I never fell Nas Nas is like; half-man Nas half-amazing (Uh) No doubt (Uh) Nas (Nas is like) Nas Earth Wind & Fire rims and tires Nas Bulletproof glass inside is the realest driver Planets in orbit line 'em up with the stars Nas Tarot cards you can see the pharaoh Nas Nas (Nas is like) Nas Iron Mike messiah type Before the Christ after the death Nas The last one left let my cash invest in stock Came a long way from blasting TECs on blocks Nas Went from Seiko to Rolex owning acres From the projects with no chips to large cake dough Nas Dimes giving fellatio siete zeros Nas Bet my 9 spit for the pesos Nas but what's it all worth? Nas Can't take it with you under this earth Rich men died and tried but none of it worked They just rob your grave Nas I'd rather be alive and paid Before my number's called history's made Some'll fall Nas but I rise thug or die Making choices that determine my future under the sky To rob steal or kill Nas I'm wondering why It's a dirty game is any man worthy of fame? Nas Much success to you even if you wish me the opposite Sooner or Nas later we'll all see who the prophet is Nas Nas is like; life or death; I'm a rebel Nas My poetry's deep Nas I never fell Nas Nas is like; half-man half-amazing (C'mon) Nas No doubt Nas Nas is like; life or death; I'm a rebel Nas My poetry's deep Nas I never fell Nas Nas is like; half-man half-amazing Nas No doubt (Uh) Nas (Nas is like) Nas Sex to a nympho but nothing sweet Nas I'm like beef busting heat through your windows Nas I'm like a street sweeper green leaf breather Like Greeks in Egypt learning something deep from they teachers Nas I'm like crime like your 9 your man you would die for Nas Always got you Nas I’m like pop dukes you would cry for Nas I'm like a whole lot of loot Nas I'm like crisp money Corporate accounts from a rich company Nas I'm like ecstasy for ladies Nas I'm like all races Nas Combined in one man; like the '99 Summer Jam Bulletproof Hummer man I'm like being locked down around new faces and none of 'em fam Nas I'm the feeling of a millionaire spending a hundred grand Nas I'm a poor man's dream Nas a thug poet Live it Nas and I write down Nas and I watch it blow up Nas Y'all know what I'm like y' Nas all play it your system every night Nas now Nas is like; life or death; I'm a rebel Nas My poetry's deep Nas I never fell Nas Nas is like; half-man half-amazing Nas No doubt Nas Nas is like; life or death; I'm a rebel Nas My poetry's deep Nas I never fell Nas Nas is like; half-man half-amazing Nas No doubt (Uh) Nas ; Nas is like Nas Mic Check Aesop When I was led to you Aesop I knew you were the one for me Aesop Come through dig the sound I swear the whole world could feel you MC Crowd around Aesop I used to cop a lot but never copped no drop Hold mics like pony tails tied in bobbalobs Stop and stick around come through and dig the sound Of the fly brown 6-0 sicko psycho who throws his dick around Bound to go three-plat came to destroy rap Aesop It's a intricate plot of a b-boy strap Femstat cats get kidnapped Aesop Then release a statement to the press Aesop let the rest know who did that Metal Fist terrorists claim responsibility Broken household name usually said in hostility Aesop Um... what is MF? Aesop You silly Aesop I'd like to take \"Means to the End\" for two milli' \"Doo-doo-doo-doo-doo! Aesop \" Aesop That's a audio daily double Rappers need to fall off just to save me the trouble yo Watch your own back came in and go out alone black Stay in the zone Aesop —turn H2O to Cognac On Doomsday! Aesop ever since the womb Aesop ‘ Aesop til I'm back where my brother went Aesop that's what my tomb will say Aesop Right above my government; Dumile Either unmarked or engraved hey who's to say? Aesop I wrote this one in Aesop B.C. D.C. O-section Aesop If you don't believe me go get bagged and check then Cell number 17 up under the top bunk I say this not to be mean wish bad luck or pop junk Pop the trunk on Cee Cipher Punk Aesop leave him left Aesop scraped God forbid if there ain't no escape blame MF tape Definition \"super-villain\": a killer who love children One who is well-skilled in destruction as well as building While Sidney Sheldon teaches the trife to be trifer Aesop I'm trading science fiction with my man Aesop the live lifer Aesop A pied piper holler a rhyme a dollar and a dime Aesop Do his thing ring around the white collar crime Aesop Get out my face askin' Aesop ‘ Aesop bout my case need toothpaste Aesop Fresher mint monkey-style nigga get dentadent And dope fiends still in they teens shook niggas turn witness Aesop Real mens mind their own business Aesop That's the difference between sissy-pissy rappers that's double-dutch Aesop How come I hold the microphone double-clutch C.O.'s make rounds never have ‘ Aesop ox found On shakedown lock-down wet dreams of Fox' Brown On Doomsday! Aesop Ever since the womb Aesop ‘ Aesop til I'm back where my brother went Aesop That's what my tomb will say Aesop Right above my government; Dumile Either unmarked or engraved hey who's to say? Aesop Doomsday Ever since the womb Aesop ‘ Aesop til I'm back to the essence Aesop Read it off the tomb Aesop Either engraved or unmarked grave who's to say? Aesop Pass the mic like \"Pass the peas like they used to say\" Some M-er F-ers don't like how Sally walk I'll tell y' Aesop all fools Aesop it's Aesop hella cool how ladies from Cali talk Never let her interfere with the Yeti ghetto slang Nicknames of nimble and tip of nipple metal fang Aesop Known amongst hoes for the bang-bang Known amongst foes for flow without no talking orangutans Aesop Only gin and Tang Guzzled out a rusty tin Aesop can me and this mic is like yin and yang Clang! Aesop Crime don't pay listen youth Aesop It's like me holding up the line at the kissing booth Aesop I took her back to the truck Aesop she was uncouth Spittin' all out the sunroof through her missing tooth Aesop But then she has a sexy voice sound like Jazzy Joyce Aesop So I turned it up faster than a speeding knife Strong enough to please a wife Able to drop today's math in the 48 keys of life Aesop Cut the crap far as rap Touch Aesop the mic get the same thing a Arab will do to you for stealing What the Devil? Aesop He's on another level Aesop It's a word! Aesop No a name! Aesop MF - the Super-Villain! Aesop When I was led to you Aesop I knew you were the one for me Aesop I swear the whole world could feel you Aesop MC Aesop Now I haven't eaten all day. Aesop How am I gonna do this man? Aesop Yeah don't wait for her man don't wait for her Aesop I'll tell you what man: come with me now Aesop and you know I'll get you some lunch Aesop I'll hook you up with something I got a little bank Aesop y'know Aesop no problem Aesop I hear you Aesop that's cool Aesop (alright? Aesop It's cool) Aesop Man can't you guys just wait here about a half hour man? Aesop Yo I'll be back man Aesop I'm just gonna munch up a little bit man Aesop I'm pretty hungry Aesop Yo let him come back Aesop Here you will find food for your body As well as comfort for your troubled mind Aesop I'd really like some soup (bread and butter) Aesop Of course my friend. Aesop What happened to your hand? Aesop Oh food at last! Aesop How did they get here? Aesop Regular storage procedure the same as the other food Aesop What other food? Aesop Fish (food) protein (fast for ya) Aesop Now what happened? Aesop Well the cop got Aesop The next morning I went to the store to get some food (Bread and butter) Aesop They arrested me Aesop I'll save you (thank you) Aesop Would you like a snack? Aesop Thanks for the drink Operation Doomsday complete All your intercoms casualty and damage testing Enough! Aesop you talk of the people's rights Aesop The people have only those rights which I choose to give them Aesop And that's for their own good Aesop believe me Aesop I do Aesop DOOM Aesop They dissappoint me they must work faster Aesop What about the prisoner? Aesop Ah yes the young traitor who has tried to turn my people against me Watch him. Aesop I have special plans for that one Beef rap could lead to getting teeth capped Or even a wreath for mom dukes on some grief crap Aesop I suggest you change your diet Aesop It can lead to high blood pressure if you fry it Aesop Or even a stroke heart attack heart disease Aesop It ain't no starting back once arteries start to squeeze Take the easy way out phony until then Aesop They know they wouldn't be talking that bologna in the bullpen Aesop So disgusting pardon self as I discuss this Aesop They talk a wealth of shit and they ain't never seen the justice Bust this like a cold milk from out the toilet Aesop Two batteries some Brillo and some foil heat'll boil Aesop it Aesop He be better off on Aesop PC glued Aesop And it's a feud Aesop so don't be in no TV mood Aesop Every week it's mystery meat seaweed stewed (Food we need food!) Aesop He wears a mask just to cover the raw flesh A rather ugly brother with flows that's gorgeous Drop dead joints hit the whips like bird shit Aesop They need it like a hole in they head or a third tit Aesop Her bra smell Aesop his card say: aw hell Aesop Barred from all bars and kicked out the Carvel Keep a cooker where the jar fell And keep a cheap hooker that's off the hook like Ma Bell Top bleeding Aesop maybe fella took the loaded rod gears Aesop Stop feeding babies colored sugar-coated lard squares Aesop The odd pair swears and God fears Even when it's rotten Aesop we've gotten through the hard years Aesop I wrote this note around New Year's Off a couple a shots and a few beers but who cares? Aesop Enough about me it's about the beats Not about the streets and who food Aesop he 'bout to eat A rhyming cannibal who's dressed to kill and cynical Aesop Whether is it animal vegetable or mineral Aesop It's a miracle how he get so lyrical And proceed to move the crowd like a old Negro spiritual Aesop For a mil' do a commercial for Aesop Mello Yello Tell 'em devil's hell Aesop no sell y' Aesop all own Aesop Jello Aesop We hollow krills Aesop she swallow pills He follow flea collar three dollar bills And squeal for halal veal if y'all appeal Dig the real Aesop it's how the big ballers deal Twirl a L after every meal (food!) Aesop What up? Aesop To all rappers: shut up with your shutting up And keep your shirt on at least a button-up Yuck is they rhymers or strippin' males? Aesop Out of work jerks since they shut down Chippendales They chippin' nails DOOM tippin' scales Aesop Let alone Aesop the pre-orders that's counted off shippin' sales Aesop This one goes out to all my peoples skippin' bail Dippin' jail whippin' tail and sippin' ale Light the doobie 'til it glow like a ruby After which they couldn't find the Villain like Aesop Scooby He's in the lab on some old Buddha Monk Aesop shit Overproof drunk shit but who'd'a thunk it? Aesop Punk try and ask why ours be better Aesop Could be the iron mask or the Cosby sweater Aesop Yes you who's screwed by the dude on the CD nude (We need food!) Aesop Yo! Aesop (Yo!) Aesop MF DOOM (Mr. Fantastik) Aesop Mr. Fantastik (Villain) Aesop What up nigga? Aesop (Ain't nuttin; what's the word?) Aesop What's cracking boy? Aesop (Same ol' shit kid) Aesop Man Aesop (Different day you know?) Aesop These rap snitches man shit Aesop is bugged out man Aesop What the fuck man? Aesop (Shit you telling me) Aesop Niggas running their mouth telling e'rything e'rything (critical) Aesop Rap snitches telling all their business Sit in the court and be their own star witness Aesop Do you see the perpetrator? Aesop Yeah I'm right here Aesop Fuck around get the whole label sent up for years Rap snitches telling all their business Sit in the court and be their own star witness Aesop Do you see the perpetrator? Aesop Yeah I'm right here Aesop Fuck around get the whole label sent up for years Type profile low like A in \"Paid in Full\" Attract heavy cash cause the game's centrifugal Mr. Fantastik long dough like elastic Guard my life with twin Glocks that's made out of plastic Can't stand a brown nosing nigga fake ass bastard Aesop Admiring my style tour bus through Manhattan Plotting plan the quickest my flow's the sickest My hoes be the thickest Aesop my dro the stickiest Street nigga stamped and bonafide When beef jump niggas come Aesop get me cause they know I ride True to the ski mask New York's my origin Play a fake gangsta like a old accordion Aesop According to him when the D's rushed in Complication from the wire testimony was thin Aesop Caused his man to go up north the ball hit 'em again Aesop Lame rap snitch nigga even told on the Mexican Rap snitches telling all their business Sit in the court and be their own star witness Aesop Do you see the perpetrator? Aesop Yeah I'm right here Aesop Fuck around get the whole label sent up for years Rap snitches telling all their business Sit in the court and be their own star witness Aesop Do you see the perpetrator? Aesop Yeah I'm right here Aesop Fuck around get the whole label sent up for years Aesop True there's rules to this shit fools Aesop dare care Everybody wanna Aesop rule the world with tears for fear Aesop Yeah Aesop yeah tell 'em tell it on the mountain hill Running up they Aesop mouth bill Aesop everybody doubting still Informer keep it up and get tested Pop through your bubble vest or double-breasted Aesop He keep a lab down south in the little beast Aesop So much heat you woulda thought it was the Middle East Aesop A little grease always keeps the wheels a-spinning Like sitting on twenty threes to get the squealers grinning Hitting on many trees feel real linen Spitting on enemies get the steel for tin men Where no brains but gum flap Aesop He said his gun clap Aesop then he fled after one slap (pap!) Aesop Son shut your trap save it for the bitches Aesop Mmm delicious rapp snitch knishes Aesop You know what I'm saying? Aesop (It's terrible) Aesop Crazy man I'm just analyzing this whole game Aesop This is bugged out man niggas is snitching Telling on they own self (it's a horror yo) Fuck around and get everybody bagged man (Atrocities) Fuck around and get yo mama bagged nigga Aesop You know your grandmama used to be bootlegging Fake hustling nigga heheheheh haha Perpetrator? Aesop Yeah I'm right here... Aesop Keep your hoes in check... Aesop (Super!) Aesop I got this girl and she wants me to duke her Aesop I told her Aesop I'd come scoop her around 8 Aesop she said (\"Super!\") Aesop That sounds great shorty girl's a trooper Aesop No matter what I need her to do Aesop she be like (\"Super!\") Aesop Own his own throne the boss like King Koopa Aesop On the microphone he flossed the ring (\"Super!\") Aesop Average emcees is like a TV blooper MF DOOM Aesop he's like D.B. Cooper Out with the moolah Aesop I let her get a outfit Just to cool her off Aesop she said niggas ain't about shit Aesop I wonder if she meant it Aesop I doubt it Aesop The way it be in her mouth she can't live without it Aesop And can't live with this handle your business Aesop Villain'll stay on a scandalous ho's shit list One pack of cookies please Mr. Hooper Aesop It's fun smacking rookies Aesop he is the (\"Super!\") Aesop Look like a black wookie when he let his beard grow Aesop Weirdo brown-skinned'd always kept his hair low Rumor has it Aesop it's a S-Curl accident DOOM was always known to keep the best girls' backs bent Aesop Some say it's the eyes some say the accent A lot of guys wonder where they stacks went Aesop I call her thunder thighs with the fatty swolla Only mess with high rollers Aesop do what daddy told her Aesop No matter the city she with me to do the thang-thang Work in the coochie hooptie chitty chitty bang bang Aesop Same name on the titty as on the name ring Pretty like Baby D off \"All in the Same Gang Aesop \" Keep my eye on her really don't trust her Aesop But I treat her like Aesop a daughter taught her how to bust a nut Aesop And the heat to turn beef to horsemeat chalupa Teach her how to hold it of course Aesop he is the (\"Super!\") Aesop See most cats treat her like Foofur Or beat her to a stupor take it from the Aesop (\"Super!\") Aesop You need to make her feel cuter And lay down the G like Luther everything'll be (\"Super!\") Aesop Do for her keep her in a new fur Aesop So she look sweet when she go to meet the Aesop (\"Super!\") Got the buddha get the Grenadiers twist it Put it in the air Aesop come here Aesop kiss it Listen here Aesop scooter let her try to bag you Aesop When she's on the rag never let her fry the Ragu Which'll Aesop have you under some type of spell crying \"dag boo\" Her name on your back in a tattoo Aesop Whether a bougie broad nerd ho street chick Don't call her Wifey if you met her at the Freaknik Aesop You don't want her don't waste her time Aesop I'll dupe her And be a father to your child like the (\"Super!\") Aesop He keep his hoes in check Aesop Sends 'em out to get glows from off frozen necks Aesop Tell 'em take his clothes Aesop leave him posing naked for real Better yet get him for the check off the record deal Aesop Find out where he keep the Tec and the blue steel Aesop Make sure for extra wreck let him know how you feel Aesop And while he's running down to All-Star Weekend to ball I'm coming with the U-Haul (\"Super!\") Aesop (\"Super! Aesop Super!\") Aesop (DOOM): Has the laser cannon been lowered? Aesop (DOOM Cronie): Aesop Everything has been prepared as you ordered. Aesop But how did you get permission to return to New York master? Aesop (DOOM): Aesop Through the efforts of the misguided fools (J. Jonah Jameson): It's free enterprise Aesop and I'm not gonna have some blasted government bureaucrat tell me how to run my business. Aesop But DOOM will be my guest on my private estate in Long Island. Aesop There's nothing you can do about it (Jameson Employee): Aesop He's dangerous Aesop I just hope you know what you're doing Aesop (Jay Jonah Jameson): Aesop Don't I always. Aesop Ah there's DOOM's jet right on time (Voice 1) Aesop : Why's it so cold out here? Aesop (Voice 2): The heat went out in the whole building (Voice 3): It's warming up out there in Long Island with DOOM (Voice 1): DOOM? Aesop Here in New York? Aesop (Voice 2): Aesop Yes DOOM has an amazing new machine (DOOM): Aesop Get the president of the United States on the phone (Jay Jonah Jameson): Aesop How long's all this gonna take DOOM? Aesop (DOOM): I would not advise you to repeat that error (Jay Jonah Jameson): Aesop Sure I know what you mean Aesop Before we go any further Friends Aesop As you call 'em they call you when they need something Trees for the blunt the G's for the front Aesop I found a way to get peace of mind for years and left the hell alone Turn a deaf ear to the cellular phone Aesop Send me a letter or better Aesop we could see each other in real life Aesop Just so you could feel me like a steel knife Aesop At least so you could see the white of they eyes Bright with surprise once they finish spitting lies Aesop Asssociates is your boys your girls bitches niggas homies Close but really don't know me Aesop Mom dad comrade Aesop peeps brothers sisters duns dunnies Aesop Some come around when they need some money Others make us laugh like the Sunday funnies Fam be around whether you paid or bummy Aesop You could either ignore this advice or take it from me Aesop Be too nice and people take you for a dummy Aesop So nowadays he ain't so friendly Aesop Actually they wouldn’t have made a worthy enemy Read the signs: \"No feeding the baboon\" Seein' as how they got ya back bleeding from the stab wounds Aesop Y'all know the dance they smile in ya Aesop face y' Aesop all know the glance Try to put 'em on Aesop they blow the chance Never let your so-called mans know your plans (How many of us have them?) Aesop A show of hands (Friends) is a term some people use loosely I'm real choosy on what I choose to let crews see You telling me; I try to act broke Jealousy the number one killer among black folk Fellas be under some type of spell like crack smoke Aesop Ghetto Cinderellas lead Aesop 'em Aesop right to your stack loc Aesop Just another way a chick'll lead to your end I check the dictionary for the meaning of friend Aesop It said: person one who likes to socialize with Sympathiser helper Aesop and that's about the size of it Aesop Most of the time these attributes is one-sided To bolster the crime they're apt to shoot you through your eyelid Aesop And they can't hide it going wild like a white bitch Aesop Sometimes ya need to cut niggas off like a light switch (Click!) Aesop And when things get quiet Catch 'em like a thief in the night what a riot I first met Mr. Fantastik at a arms deal Aesop Don't let it get drastic think of how your moms'll feel When it get for real steel Aesop get to sparkin' Aesop Everything darken and ain't no talkin' Aesop For somethin so cheap it sure buys a lot of trouble Aesop Ya better off focusing than tryin to plot to bubble Aesop Or else it'd be a sad note to end on the guns we got Aesop is (One's we can depend on friends) Aesop Some come in the form of codependence Aesop A lot of times only end up being codefendants Ten bucks say they tell for a lower sentence And leave you up under the jail begging for a penance Aesop It don't make no sense what happened to the loyalty? Aesop Honor amongst crooks trust amongst royalty Aesop I'd rather go out in a blaze than give 'em the glory (How many of us have) a similar story (Friends) before lovers we used to have some type of over-standing Aesop Just so when I let her get the man thing she know Aesop it's no strings We could do the damn thing Aesop but ho Aesop it's no rings Aesop Just how the tramp swings Aesop Will she see 'em again? Aesop That depends on how good was the skins and could she memorize the lessons It ain't no need to pretend Even though she let 'em stab it Aesop she know they're just friends Aesop Friends Aesop How many of us have them? Aesop Friends Ones we can depend on? Aesop Friends Aesop How many of us have them? Aesop Friends Aesop Before we go any further Fellas! Aesop Don't be silly! Aesop I know who my friends are! Aesop And the next nice neighborhood I move into you guys'll get crack' (Negro humor always escaped me.) Aesop [Outro Skit: Character 1; Mr. Fantastic; (Invisible Woman); Dr. DOOM; Character 2 Aesop The most powerful the most mysterious monarch in all the world Guided by a fighting force that never sleeps That never relaxes its vigilance For none is as feared none has as many foes Aesop As DOOM the awesome ironclad lord of I know who Doom is (Then tell us) Aesop He happens to be the most dangerous man in the world Aesop I’d hope we’d never hear from him Aesop I’d hope we’d never have to battle him Aesop But now the worst has happened and Aesop I must tell you what we’re up against I Aesop first met DOOM years ago Aesop When he wanted to be alone alone to pursue his forbidden experiments One day while conducting a secret experiment Later when he recovered from his injuries Instead of having learned his lesson DOOM was bitter Aesop angry vengeful Aesop What have I done to myself? Aesop My face it is hideous Aesop He traveled the world seeking a cure for his disfigured face (I’m sorry sir there is nothing we can do for you) Aesop He traveled through remote villages where strangers are seldom seen He continued his search never showing his face Unless threatened by bandits who prey on travelers Who foolishly wander alone through their domain Aesop I get no kick from champagne Aesop Mere alcohol doesn't thrill me at all So Aesop tell me why shouldn't it be true? Aesop I get a kick out of brew Aesop There's only one beer left Rappers screaming all in our ears Aesop like we're deaf Aesop Tempt Aesop me do a number on the label Aesop Eat up all they emcees and drink 'em under the table Aesop Like \"It's on me—put it on my tab kid Aesop \" However you get there Aesop foot it cab it iron Aesop horse Aesop it Aesop You're leaving on your face forfeit Aesop I crush the mic hold it like the heat he might toss it Aesop Told him tell her they stole it he told her he lost it Aesop She told him \"Get off it\" and a bunch of other more shit Getting money Aesop DT's be getting no new leads Aesop It's like he eating watermelon stay spitting new seeds Aesop It's the weed give me some of what he drooping off Soon as he wake up choking Aesop like it was whooping cough Aesop They group been soft First hour at the open bar and they're trooping off Aesop He went to go laugh and get some head by the side road Aesop She asked him autograph her derriere read \"To Wide Load this yard bird taste like fried toad turd Love Villain. Aesop \" Aesop Take pride in code words Aesop Crooked eye mold nerd geek with a cold heart Aesop Probably still be speaking in rhymes as an old fart Study how to eat to die by the pizza guy Aesop No Aesop he's not too fly to skeet in a skeezer eye Aesop And squeeze her thigh maybe give her curves a feel Aesop The same way she feel it when he flow with nerves of steel Aesop They call the super when they need their back uhh plumbing fixed \"How there only one left? Aesop The pack comes in six! Aesop Whatever happened to two and three? Aesop \" Aesop A herb tried to slide with four and five and got caught like \"What you doing G? Aesop Don't make me have to get cutting like Aesop truancy Matter fact not for nothing Aesop right now you and me! Aesop \" Aesop Looser than a pair of Adidas Aesop I hope you brought your spare tweeters MC's sound like cheerleaders Rapping and dancing like Red Head Kingpin DOOM Aesop came do his thing again no matter who be blingin' Aesop He do it for the smelly hubbies Seeds know what time it is like it's time for Aesop Tellie Tubbies Few can do it even fewer can sell it Aesop Take it from the dude who wears mask like a 'tarded helmet He plots shows like robberies Aesop In and out one two three no bodies please Run the cash and you won't get a wet sweatshirt Aesop The mic is the shotty: nobody move nobody get hurt Bring heat like your boy done gone to war Aesop He came in the door and Aesop \"Everybody on the floor!\" Aesop A whole string of jobs like we on tour Every night on the score coming to your corner store Aesop There it is done Now that the representative from South Africa has been mind Aesop programmed All of the world leaders on earth are under my control Aesop And when they meet tomorrow in special session Aesop I Aesop Doom shall be voted: Aesop Master of the World Aesop My plan is foolproof but just in case Aesop And what about snow? Aesop Now you keep your eyes open Aesop When I tell ya start snappin' Aesop (Oh yeah sure) Aesop Uh ladies and gentlemen I am risking my life to tell you with great concern that I must warn you Aesop I Aesop I Aesop you must listen Many among you Aesop have have have their minds taken over (What a story start snappin’) Aesop DOOM Aesop gosh Aesop I wish I’d brought my autograph book ( Aesop Your attempts at humor bore me) Aesop Right lead head Aesop You’re weird Aesop Why is everyone staring at us? Aesop (Aw I should have realized we must look like freaks to them) Aesop Relax masseur just do your thing Aesop (Get a good grip on my-) Aesop What? Aesop Why I’ll bend your read out meter for ya Aesop you little (Knock it off Ben) Aesop What’s the matter? Aesop (Oh Ben) Aesop You’re nothing but a chicken head Aesop (You overgrown granite head) Aesop Hold it Aesop Yo Aesop yo yo y' Aesop all can't stand right here Aesop In his right hand was your man's worst nightmare Loud enough to burst his right eardrum Aesop close-range Aesop The game is not only dangerous Aesop but it's most strange Aesop I sell rhymes like dimes Aesop The one who mostly keep cash but brag about the broker times Joking rhymes like the \"Is you just happy to see me? Aesop \" trick Classical slapstick rappers need Chapstick A lot of 'em sound like they in a talent show Aesop So I give 'em something to remember like the Alamo Tally-ho! Aesop A high Joker like a Spades game Came back from five years laying and stayed the same I'm saying electromagnetic field it blocks all logic Aesop Spock And G-Shocks Aesop her biological clock Aesop When I hit it slit it to the shitter thought I killed her goose Aesop Her Power U was pure Brita water filtered juice Aesop Keep a pen like a fiend keep a pipe with him Gentleman who lent a pen to a friend who write with him Aesop Never seen the shit again Aesop but he's still my dunny Aesop The only thing that come between us is krill and money Aesop I sell rhymes like dimes The one who mostly keep cash but brag about the broker times Better rhymes make for better songs it matters not Aesop If you got a lot of what it takes just to get along Surrender now or suffer serious setbacks Got get-back connects wet-back get stacks Even if you gots to get jet-black head to toe To get the dough battle for bottles of Mo' or 'dro Aesop This fly flow take practice like Tae Bo with Billy Blanks Aesop \" Aesop Oh you're too kind!\" Aesop \"Really? Aesop Thanks! Aesop \" Aesop To the gone and lost forever like \"Oh My Darling Clementine\" Aesop He hold his heart when he telling rhyme Aesop When it's his time I hope his soul go to Heaven Aesop He nasty like the old time Old No. 7 Aesop You still taste it when you chase it with the Coca-Cola Make 'em wish they could erase it out the Motorola Aesop I told her \"No credit for a bag Aesop If you want what they got then go get it Aesop it's all gack Aesop \" Only in America could you find a way to earn a healthy buck And still keep your attitude on self-destruct Aesop I sell rhymes like dimes Aesop The one who mostly keep cash but brag about the broker times Joking rhymes like the \"Is you just happy to see me? Aesop \" trick Classical slapstick rappers need Chapstick A lot of 'em sound like they in a talent show Aesop So I give 'em something to remember like the Alamo Tally-ho! Aesop A high Joker like a Spades game Came back from five years laying and stayed the same Saying \"Electromagnetic feeling blocks all logical Spock Aesop \" And G-Shocks her biological clock Aesop When I hit it slit her to the shitter thought I killed her goose Aesop Her Power U was pure Brita water filtered juice Aesop Keep a pen like a fiend keep a pipe with him Gentleman who lent a pen to a friend who write with him Aesop Never seen the shit again Aesop but he's still my dunny Aesop The only thing that come between us is krill and money Aesop We sell rhymes like dimes The one who mostly keep cash but tell em bout the broke times \"In your arms tonight She'll reflect That she owes you the sweetest of debts Aesop If she wants to pay\" Check it out y'all! Aesop Ya don't stop! Aesop Keep on to the sure shot! Aesop Huh-ha! Aesop Uh uh uh uh oh! Aesop Yeah you're listening to the buttery slickness Aesop The Land-O-Lakes from my man MF DOOM! Aesop Ha ha ha ha! Aesop Yeah! Aesop Rock-shocking the house with another nugget Uh-uh-ah eh oh ah hoo-wee! Aesop Yeah! Aesop Yeah! Aesop Regulation status right here Aesop Fondle 'Em Recordings 1999 Aesop Yeah! Aesop Now what are you 'posed to say on the end of records? Aesop I don't know! Aesop Yeah! Aesop Woo! Aesop Yeah! Aesop Mashed potatoes! Aesop Apple sauce! Aesop Buttery... biscuits! Aesop And I get lost A Aesop yes Aesop yes yes Aesop yes Aesop y' Aesop all You don't stop Keep on a' to the break-a-dawn Say what? Aesop Uh! Aesop Yeah! Aesop You thought it all was over! Aesop You thought the song was over! Aesop Ah! Aesop We tricked you! Aesop We tricked you! Aesop Ha ha ha ha... Aesop Woo! Aesop You listening to www dot hairline dot com MF DOOM Kool Bob Love... Aesop Already woke Aesop spared a joke barely spoke rarely smoke Stared at folks Aesop when properly provoked mirror broke Aesop Here share strawberry morning gone an more important spawning Torn in poor men sworn in Cornish hens switching positions auditioning morticians Aesop Saw it in a vision ignoring prison Ignoramuses enlist and sound dumb Aesop Found 'em drowned in cow's dung crowns Aesop flung Rings a Tinkerbell sing for things that's frail as a fingernail Aesop Bring a scale stale ginger lingers Seven figures invigor Nigga fresh from out the jail alpha male Sickest ninja injury this century enter plea Lend sympathy to limper Simple Simon rhyming emcees Aesop Trees is free please leave a key These meagre fleas Aesop he's the breeze Aesop And she's the bees knees for sheez G's of G's Seize property shopper sprees Aesop chop the cheese Drop Aesop the grease to stop diseases Aesop gee wiz pa! Aesop DOOM rock grammar like the kumbaya Mama was a ho hopper papa was a Rolling Stone star like Obama Pull a card Aesop like oh drama Civil liberties Aesop These little titties abilities riddle me middle C Give a MC a rectal hysterectomy Lecture on removal of the bowels foul technically Don't expect to see the recipe Until we receive the check as well as the collection fee More wreck than Section Z Aesop What you expect to get for free? Aesop Shit from me history Aesop The key plucked it off the mayor Aesop Chucked it in the ol' tar pit off La Brea player Aesop They say he's gone too far DOOM'll catch em after Jumah on cue lacka!! Aesop Do whatcha gotta do grarrrr Aesop The rumors are not true got two ma Aesop No prob got the job hot-barred heart throb Scotchguard the bar with cotton swabs dart lob Aesop Bake Aesop a cake sweet Jamaica trade in treats on the beach Make her skeet til her feets meet Aesop Can it be Aesop I stayed away too long? Aesop Did you miss these rhymes when I was gone? Aesop As you listen to these crazy tracks Check them stats then you know where I'm at Aesop And that's that Aesop Look there's Doom now! Aesop I followed him to the studio Aesop but I was too late to stop him Aesop That's right! Aesop You'll never stop me! Aesop You're dead! Aesop You're all dead! Aesop Doom! Aesop It ain't nothing like a fistfull a cash or a bliss Aesop fulla the hash That twist like a mustache from end to end Aesop spread it like a rash From talking through your walkman or at your disco bash Gimme Aesop the Timbs Rumplestiltskin brown Aesop A metal face mask with a built in frown A mic to tilt down a hundred thousand pounds And see how kilt sound like spilt milk clown Cocoa butter on very ashy day fam With Ray-Bans out on the islands of Cayman Aesop Or i'll break it down for the layman Bain de Soliel for Aesop that St. Tropez tan A can Aesop a ole gold too cold to hold slow ya roll Keep on moving like Soul II Soul hold the dough Like a fool who stole pity y'all From tryna go up against city hall titty bar Aesop The black mic is like a red violin Aesop Ok everybody back to the lab try again Bloody rap game like leviathan Aesop Leave a bad taste Aesop killin my high like niacin Aesop Stop kiddin middlemen need Ritalin Hit me with the full tin of gin Aesop and im a kid again Aesop Keep the bong lightin straight through the song writin Aesop The Supervillain AKA the thong bitin thats inviting all To the recitin thats dope and raw Aesop Hoping Aesop all yall come in peace and its open bar Tear Aesop the roof off this bumba rasclaat Aesop By the end of the night spazz like Aesop shazbot Spilt Aesop a shot made the pen lines runny A ill plot thats ten times Aesop Ben Stien money funny Aesop How he rips the scripts with a straight face With more rhymes than is lines in ya database Placing rappers in endangerment who's reckless With this food for thought sorta like breakfast You could mark it off as wreck on the checklist Wear gold fronts can't afford no necklace Shit that there could go to help them daycares Aesop Somebody say yeahh.. Aesop (yeahhh!) Aesop Pay ya fares... give the Herbalizers his shares Aesop And y'all could pay DOOM in beers; cheers! Aesop I came to the shores of America disguised as a pillar The alpha and omega and the home of the beggars the black sellers Who been beaten raped lynched robbed and stoned And caused to roam the earth in service cause they couldn't maintain at Home Aesop This dates back to 1555 When they captured the first tribe of men And piled them in a pen Fifty feet high Aesop They took em all on a 9000 mile ride And landed on the shore of a place they never seen before But read about this inside the ancient books of war Bonded in stainless steel stripped of their language Aesop Still survived the anguish of slavery but still remained nameless Separated to portions and tricked by John Haughty Hawkins Aesop And sold on the auction taught birth control and abortion Rulers of the first part became slaves of the worst part Aesop The devils cursed God and reversed God And turned God into dog and made people search hard Aesop No relief came to the prophet of W.D. Feraud Aesop To a trauma dropped our mommas off in Bahamas and Barbados Tobagos separated us from slave boats Made our own brothers hate us From Virgin Isle to Jamaica Trinidad Honduras Haiti Grenada Bermuda to Cayman mental enslavement Aesop You black gods become awaken Aesop It's the beat he hear it in his sleep sometimes Aesop Blare it in your jeep so your peoples can stare at them rhymes Real rhymes not your everyday hologram Aesop Even when ribs was touchin' never swallowed the ham He'd rather eat Aesop a sand sandwich salad It might need salt like your man's bland ballad Aesop A lot of stuff happens that the news won't tell you's Blues on L juice snooze all hell loose Rake it take it like the good the bad the ugly Break Aesop it rollin' through ya hood in the caddy buggy Aesop Butter softly leather flossy fatty juggy Aesop Always threw me off when she told me Aesop \"Daddy funk me Aesop \" Aesop I'm like \"Anywho's\" Seeds walkin' all out in street with out any shoes Aesop I guess it's better than some funky socks You need to get her some skips before she catch the monkey pox Aesop Instead she wanna hear the beatbox Take pills and make fake krills as sheetrock Aesop Sing Aesop it bring it back to your laboratory While he's in his oratory glorious like a horror story Aesop The mask is like Jason Aesop They told the place not to let the basket type case in He could be some kind of wacko Waitin' for the chance to heat the pipes like a crack Aesop ho Aesop He busted in blessed be the Lord Who believe any mess they read up on a message board Aesop If so I got bridges for the low low Same bitch a-go dry snitchin' to the popo Aesop Here orange peel stogs for the whole tier Feel like I've been gone over a year came home to old gear It was the shit when I first scooped it Aesop At least I get to sit out in New York and curse stupid Plead the fifth sip wine stiffly Aesop Patiently come up and be spiffy in a jiffy Gift for the grind criminal mind Aesop shifty Swift with the nine through a fifty nine fifty Aesop Well edumacated he heard it when he meditated In deep theta Aesop let her hate the creep Aesop later Dedicated cheap skata who keeps data Aesop Say he stay self medicated to sleep Aesop later Side effects is similar to sugar pill Whoever go next on the mic he put a booger ill And made his exit on some calm shit Aesop Begged him on the regular for kegs of more vomitspit ( Aesop \"Doom!\") Aesop Uh-uh uh-uh uh-uh Uh-uh uh-uh uh Uh-uh uh-uh uh-uh Uh-uh uh-uh ahhh Pharoah Get the fuck up Pharoah Simon says \"Get the fuck up\" Throw your hands in the sky (Buh-buh-buh-buh-buh!) Pharoah Queens is in the back sipping 'gnac y'all what's up? Pharoah Girls rub on your titties (Yeah!) Pharoah Yeah I said it rub on your titties New York City gritty committee pity the fool That act shitty in the midst of the calm the witty Pharoah Y'all know the name Pharoah Pharoahe fuckin' Monch ain't Pharoah a damn thing changed You all up in ya Range and shit inebriated Strayed from your original plan you deviated Pharoah I alleviated the pain with long-term goals Pharoah Took my underground loot without the gold You sold platinum 'round the world I sold wood in the hood Pharoah But when I'm in the street and shit it's all good Pharoah I'm soon to motivate a room control the game like Tomb Raider Rock clock dollars flip tips like a waiter Block shots style's greater let my lyrics anoint Pharoah If you holding up the wall then you missin' the point Get the fuck up Simon says \"Get the fuck up\" Put your hands to the sky (Buh-buh-buh-buh-buh!) Pharoah Brooklyn in the back shooting craps now Pharoah what's up? Pharoah Girlies rub on your titties (Yeah!) Pharoah Yeah fuck it Pharoah I said rub on your titties New York City gritty committee pity the fool That act shitty in the midst of the calm the witty Yo where you at? Pharoah Uptown let me see 'em Notorious for the six-fives and Pharoah the BMs Heads give you beef you put 'em in the mausoleum Pharoah And shit don't stop pumping ' Pharoah til after 12pm Uh ignorant minds— Pharoah I free 'em Pharoah If you tired of the same old everyday you will agree— Pharoah I'm the most obligated hard and R-rated Slated to be the best I must confess Pharoah — Pharoah the star made it Some might even say this song is sexist-es Pharoah 'Cause I asked the girls to rub on their breast-eses Whether you're riding the train or a Lexus-es Pharoah This is for either or Rollies or Timex-eses Pharoah Wicked like Exorcist Pharoah this is the joint You holding up the wall Pharoah then you missing the point Get the fuck up Simon says \"Get the fuck up\" Throw your hands in the sky (Buh-buh-buh-buh-buh!) Pharoah The Bronx is in the back shooting craps now what's up? Pharoah Girls rub on your titties Pharoah (Yeah!) Pharoah I said rub on your titties New York City gritty committee pity the fool That act shitty in the midst of the calm the witty New Jeruz Pharoah (Get the fuck up) Pharoah Shaolin (Get the fuck up) Pharoah Long Isle (Get the fuck up) Pharoah Worldwide (Get the fuck up) Pharoah It's not latin or white or black music Pharoah It's that cooked up coke crack music Black Thought and Pharoahe the rap duet Pharoah It's that lucid rapid eye movement Pharoah My think tank's like a piranha tank think multiple bites figure Mega reality tera giga Grand Theft Auto modern day Mickey and Mallory Small Pharoah But I'm sick enough to walk into an art gallery and piss on a Picasso Crack statues rub my balls on a Banksy shit on it and throw it at you Pharoah So when the beat intensifies I become emotionally desensitized Like once I slapped a rapper with mace Pharoah Then I spit acid in his face after he rinsed his eyes Pharoah no wait Pharoah I actually grew five times my size grabbed Ma$e by the thigh and slapped a rapper with him Pharoah Now that's practicing sacrilegious activism Attack is for battle and practical rap with wisdom Pharoah Actually it's pragmatic capitalism for actors that crack under pressure and collapse when I get Pharoah 'em Monch is medicinal man made medical marijuana With a phase plasma rifle like I'm searchin' for Sarah Conner Pharoah And shorty's got Pharoah brains shorty not playin' Pharoah From 40 blocks I'm a killa with 40 watt range With an arrangement of bullets that I've arranged Encrypted in scriptures specific individual names That shall remain anonymous Me and the ammunition's in a relationship that's monogamous Pharoah It's like I'm married to the silencer Pharoah Until I file for divorce and release my ex-calibers Pharoah Do art with your arteries place that for my adversaries Push your snap back cap back cap your capillaries Pharoah like It's not latin or white or black music Pharoah It's that cooked up coke crack music Black Thought and Pharoahe the rap duet Pharoah It's that lucid rapid eye movement Pharoah Vocally twice as magnifying as ever hearing Chewbacca scream Through a megaphone with the significance of Dr. King Philanthropic Cause Pharoah I'm trying to see man united without referencing UK soccer teams Pharoah My philosophy prophecy The opposite of Mephistopheles' eye inside an isosceles Sent to Earth to warn of environmental atrocities and nobody can copy me Pharoah Stop Pharoah it's not possible but probable that it's only philosophical mockery strange Change copper to gold switch properties bang! Pharoah Stay on top of the globe flip monopolies aim Take stock in the soul spit properly Take stock in the soul spit properly Pharoah That extended clip on my hip sits awkwardly Pharoah I'm diabolical follicle triggers that I cock and squeeze Sending shots to ancient Greece to pop Socrates I bear arms like button-downs without the sleeves Pharoah Manic depressive and possessive like apostrophes Pharoah My psychiatrist waive the doctor fees Pharoah When I wave the pistol and say listen quit watchin' me Pharoah so I can breathe National Association for the Advancement Of drugs for performance enhancement Pharoah And it's tough taking so many chances Pharoah But I've been a bad seed from the womb they call me ovary cancer Pharoah And I got an ugly heart although I'm totally handsome Pharoah And I take the love of your life and hold her for ransom Pharoah And my tactical cam that never stood for any national anthems Pharoah Whats hood Pharoah I am the actual answer Pharoah And I'll prove it Black attire rapid fire rapid eye movement Pharoah I'm from a species that is higher Pharoah I am not human Extraterrestrial Pharoah alien a monster killer of conscience chillin' Pharoah In a barrel of lobster Ex-Slave sadomasochist that gave the massa my ass to kiss A dyin' Pharoah breed Pharoah I'm the last of this Black is as miraculous as Jesus of Nazareth Pharoah When I vocalize the crowd rise like Pharoah Lazarus It's the Rhode Scholar my coat collar piss off Pharoah PETA Your hoes holla he's on top of the bars Pharoah Meet a Mr. Globe Trotter in my Adidas Pure cheetah hoppin' out of this exotic European 4 seater Hollerin' cheeba cheeba Pharoah like I'm Parkside Killin' Pharoah is the dark side Villain Pharoah I'm God Pharoah I'm Pharoah Godzilla Sometimes I'm Pharoah Bob Dylan put blood on these tracks for real So God-willin' you'll feel what I'm spillin' Pharoah Yeah Pharoah I never quit Pharoah I'm still syndicatin' up Pharoah Me and Pharoahe Monch did it for the benefit of us Pharoah This is straight razor behavior I never get enough Pharoah Get the picture Pharoah my militia gettin' ignorant as fuck Pharoah Yea Pharoah it's suicide murder Pharoah Straight from the underground through the fiber optics Pharoahe Black Thought Pharoah complete the cypher Pharoah The movement outlandish Pharoah It's not latin or white or black music Pharoah It's that cooked up coke crack music Black Thought and Pharoahe the rap duet Pharoah It's that lucid rapid eye movement Get the fuck up Pharoah Simon says \"Get the fuck up\" Throw your hands in the sky (Bo-bo-bo-bo-bo) Pharoah Queens is in the back sipping 'gnac y'all what's up? Pharoah Girls rub on your titties Pharoah Yeah fuck it Pharoah I said it rub on your titties New York City gritty committee pity the fool that act shitty Pharoah In the midst of the calm the witty Yo shut the fuck up Luck said \"Shut the fuck up\" Bitches in the back like crack get it cut up Pharoah I speak on behalf of them Pharoah broads you call Pharoah stuck up Act like a man and get cocked Pharoah smacked the fuck up Pull the truck up Luck Pharoah you know the name Ass out in the bleachers stay shitting on the game Pharoah I suppose what you're spitting is flames cowards Pharoah Knew your crew was vaginal Pharoah I could smell the douche powder Summer's Eve Pharoah I drop degrees chill Pharoah Come four by four lose one like Dru Hill Stay fly till you get airsick now Pharoah that's ill Two choices either squeeze or peel now Pharoah that's real Pharoah What the fuck's going on here? Pharoah Just a minute now hold up Sinister with it the time I diminish him Pharoah finish him roll up Pharoah When I'm in a cinematography state of mind Pharoah My rap trip rip flip clip say the rhyme Shit I spectacular run hit spit bitches vernacular Miraculous rhyme flow back track to the immaculate Binaca blast nigga that's fast son Pharoah I'll out-box you Pharoah Ladies rub the ta-tas bras titties and knockers on the floor Oww! Pharoah Fellas pull your cock out On the verge to splurge verbs for third-round knock-out Pharoah Uh I bust a rhyme that dust frustrated rappers Pharoah Dust crush competition lights out like the Clapper Pharoah The mic ripper whip a nigga like a slave Pharoah Separate him from him from his fam Pharoah He don't know how to behave now Pharoah Drag his ass bag dun for his loot Pharoah Figure me to give a nigga-y twenty-one gun salute That's seven shots for 2Pac seven for Biggie Smalls Seven for Freaky Tah up in your neighborhood malls Pharoah How's that? Pharoah Fat action packed rap remain tame Pharoah Pharoahe fuckin' Monch ain't a damn thing changed Yo Pharoah yo get the fuck up Pharoah Funk Doctor Spock said \"Get the fuck up\" I got a bitch named Nina Pharoah and I tuck her Pharoah I leave a nigga hanging like your mom's muffler Pharoah Snuff her Pharoah then my boys follow up Respect like The Fonz Pharoah you see the collar up Pharoah (Ayeeee) Pharoah I spit out a bullet load the barrel up Pharoah I kamikaze your town off a Arab bus Karat cut Pharoah yeah Pharoah mami pull over Pharoah I bend your pussy like for years Pharoah I knew yoga Pharoah I'm too smoked up Pharoah I can't remember me Off Hennessy Pharoah that's why I carry Mini-Me Pharoah I need fifty feet when my performance starts I push an armored car with Lowenharts Nineteen inches Pharoah I'm not on the charts Pharoah Doc turning dark off a warning shot Drive off and pop six in your hood Fuck the limelight we rhyme tight plus snatch the goods Pharoah Yeah Pharoah yeah Pharoah my nigga one rhyme Pharoah and you fold over Pharoah I'm hot-headed Pharoah 'cause I walk with cold shoulders Pharoah Yeah get the fuck up Simon says \"Get the fuck up Pharoah \" Throw ya hands in the sky (Bo-bo-bo-bo-bo) Pharoah Jersey in the back jacking cars now what's up? Pharoah Girls rub on your titties (Yeah) Pharoah That's right Pharoah I said it rub on your titties Brick City gritty committee pity the fool that act Pharoah shitty Pharoah In the midst of the calm the witty Pharoah Yo yo get the fuck up Pharoah Yo Pharoah yeah Pharoah I said it \"Get the fuck up Pharoah \" Walk through Shaolin after dark you get stuck up Seek and destroy baddest boy when I'm puffed up Pharoah You know my name and Pharoahe Monch Pharoah why we came what? Pharoah We off the chain plus we plotting on the game what? Pharoah Know your role by the way tuck your gold Pharoah And you and your mic can ease on down the road Pharoah Assholes are like opinions everybody got to have one Shooting in the sky trying to blast sun Zero to sixty in a second pull a fast one Fifty cent flashin' they hate us with a passion Mashin' still fresh in three-day old fashion Pharoah You're plaid Pharoah I'm stripes together Pharoah we be clashin' Pharoah Here's a Tunnel banger Wu-Tang death penalty the gas chamber Pharoah This gon' hurt me more than it hurts you Pharoah Slap you like the doctor the day your momma birthed you Pharoah Just so you can feel me the same way I'ma feel this world Pharoah when it kill me Even if time stands still I'mma still be Underground and filthy gotta have our way like the Milky Innocent until I'm proven guilty Never got caught in the game of tag Pharoah Momma never kept a boyfriend with kids Pharoah this bad No justice raider ruckus Underground 'til we under ground Pharoah But y'all first motherfuckers My thugs throw up your set Pharoah And shorties rub on your breasts Pharoah Get the fuck up out of that dress Pharoah I palm tits Pharoah You herbs get flipped like Jeeps on mountain cliffs Pharoah I'll rip through your chest hollow-point talon tips Double-S double the threat double your bet Pharoah Double up on that cash if you decide to invest You Pharoah sound like B.I.G. you sound like Jay Pharoah you sound like D Pharoah And I bet when I go plat you'll sound like me Pharoah Shabaam Sahdeeq injure your fleet instant delete Y'all crabs are weak frail like a fiend's physique I stay on the street stay on the beat stay with the heat Stay sticking fools like you for the rocks that gleam Pharoah So toss that link dummy should've insured that link Pharoah Straight to Canal appraise Pharoah that link then pawn that link Pharoah You froze up Sahdeeq says \"Shut the fuck up\" Punk niggas get gun-butt up and tied up Busta Rhymes is like Pharoah Hacksaw Jim Duggan Been Pharoah thuggin' lovin' the way we flood jewels for nothin' Lay it over another ambush and take over Yo Pharoah we don't only get money we cut the coke and cook the shake over You Pharoah better guard your head right especially if it's late at night Or find your picture of your autopsy up on the website Yo if you ever violate my space Fuck Pharoah a fat lip Pharoah I'll leave you with a fucking fat face nigga Busta Rhymes the handsome Pharoah I'll hold you for ransom and some Like the ghost of a haunted house I'll forever live in a mansion Pharoah Bitches snitches coming out Pharoah and you know who's showing it Like when the British civil servants pass secrets to the Soviets Y'all niggas is seamless blends of seamless friends Lip on about the results of a bunch of seamless ends Colossal me and my nigga Pharoahe Monch-o Pharoah The head honchos getting this money like Leonardo (Do-do-do-do) Pharoah Enough substance in the roughness Now watch it come around in an amazing large abundance Pharoah Now let me clear the smoke screen you blow fiend Live nigga shit that'll rebuild your whole self-esteem Pledge allegiance to the flag of united live niggas of America Pharoah Let us control and own the fucking area Wilding in your whip until you crash the whole truck up Pharoah And if you know what's good for you nigga You better get the fuck up In 2013 the World Government placed sanctions against freethinking individuals in order to force people to adhere to one way of life Pharoah An independently funded organization called poh pih evas nac ew Pharoah dna eerf rof cisum gnidaolnwod gnikcuf pots hired one hundred assassins to infiltrate the headquarters where files were kept Of these one hundred ninety-seven were captured tortured and executed Only three remained The third of which was said to own an arsenal that would rival an entire city's police force Pharoah The second was rumored was to be able to move throughout space and time Pharoah And the first... Pharoah (One) Fasten your seat belts for the last of the three assassins on earth Pharoah The first flashing her purse where a heat stealth They call me Jean McCoy beast in me employed deploy deplorable Through audible destructive actions attractive decoy Pharoah Then pass it to Troy after I'm passing your life over He Pharoah 'll deliver it through river Styx Hades Pharoah I'm cold deliberate ladies Pharoah My foes limited pray me Pharoah some praise (whispering) Pharoah Stay on your toes villains it's Grae and your day's whittling Blistering lines packed in six stick to spine Wracked with a sick mind trapped in thick bitch frame Pharoah Drug you with strychnine in nine drinks you drunk Pharoah and it's my Kidney Pharoah you dickbrain Pharoah I'm just itching to slit Pharoah veins Stitch lines Pharoah Rick James fuck yo lives sip brains Pharoah bitches Pharoah Niggas kick rocks or kick rhymes Pharoah it's to the pain Pharoah Liquor riddled liver sieve in it sipping it like Capri Sun Ignint Pharoah as ever she's clever equivalent Pharoah be none A ball breaker call fakers out with passion Pharoah You got the gall bastard to brawl with the broad brashest Pharoah The ball's in your court pass it - but warning - fall faster Than asses with age slack on the back of a Kardashian Pharoah The walls crash in you all on the floor gasping The gas pour in the corridor racking your jaws blacking out Catch Grae backing out the back door cackling Still make it back to the bar for last call Pharoah (Two) Pharoah They ask me why I'm highly regarded this God body Pharoah probably Monch is a mixture of Marcus Garvey Miles Davis and Bob Marley Pharoah (radical) Never skateboard slang like Pharoah gnarly more like: Pharoah Weed in my whip on the way to get top like Charles Barkley Pharoah You are hardly prepared to spar with a marksman - spark me Pharoah I'm Gambit with the ace of spades Pharoah a master in archery Vehicular particularly the vernacular Pharoah Specifically the fit Pharoah so when I spit it Pharoah it's spectacular and accurate Pharoah When I attack I'm more legend than Acura Flip Bloomberg the bird bitch more blood than Blacula More Crip than cryptic scriptures encrypted with backwards vernacular Plus sicker than most like Glenn Close in Fatal Attraction Pharoah I am that nigga for real Per capita smacking the next rapper that uses the term swag or thereafter These three assassins get to ass whipping Prepare to for a professional ass that can Shape shift spit hollow tip clips Pharoah mainly Sick ain't he - mind control Pharoah Make you shoot your best friend in the face Dick Cheney Pharoah My life is like a documentary film depicted in black and white Flick's grainy (geronimo) Pharoah I'm on Guantanamo Bay taking pics in a Captain Morgan Pharoah pose With my left foot on a pile of detainees screaming \"We are renegades!\" Pharoah Fuck you. Pharoah Pay me (Jean Grae) Pharoah Two. Pharoah Where the fuck... Pharoah no. Pharoah Where the fuck is Three? Pharoah (Pharoahe Monch) Pharoah I know. Pharoah I know. Pharoah He's gonna be here. Pharoah He gave me his word trust me (JG) Pharoah Yeah Pharoah but he does this every time (PM) Pharoah He's gonna be here trust me (JG) Pharoah He's gonna ruin this mission for us again (PM) Pharoah Look here Pharoah he comes now I be riding round with a stripper-slash-burlesque model I make it pop like my cock in a Durex condom Pharoah I'm a opposite artist I find irony in going From being like a stone in the grass to rocking the Garden Pharoah The same irony as going from fully automatic in the backyard Pharoah To having the whole machine behind me Pharoah I take my Australian bitches and show her some other thangs Pharoah She know my stroke is deadly Pharoah so she gave me bloody brain Pharoah Don't try to get familiar if I don't feel you in person Pharoah I'll flip the script Pharoah and I'll accidentally kill you on purpose Pharoah The bad is what I'm flailing Pharoah I got so many furs PETA gonna paint splash me when they see me no matter what I'm wearing Your bitch about to open up sniff some blow off of my dick Pharoah Guess Pharoah you could say she on my coconuts Pharoah I'm on point like Chris Paul You on point like an Atlantic City hooker that licks balls Pharoah I'm about to flip in this bitch like Dominique Dawes And shut shit down like a car when it stalls Pharoah I am the deadliest rapper Pharoah you claiming that you flow like water Pharoah But really y' Pharoah all niggas Evian backwards Pharoah Marshall hit the jackpot with this flow that I got Pharoah I know when I'm hot Pharoah it's my show to stop holding my crotch My whip cleaner than Amish men in honest Pharoah ends Two dimes with me Pharoah like I'm a twin cause Pharoah I'm a ten Pharoah Okay... Pharoah I'm in Totally intoxicated when he drove across the state line Rapper Pharoah gone insane story on Dateline Lost his wits Pharoah didn't take his meds When they pulled him over this is what he said I'm a Bad MotherFucker man (shut your mouth) Pharoah Well we talking about Pharoahe Mashing in that Aston Martin on the Verrazano Narrows Greatest of all time in the latest apparel Pharoah 80's baby ladies crave me on some Mercedes shit Go tell your favorite rapper eat a bag of baby dicks They keep singing the same ol' song I'm a bring 'em the pain for saying the name wrong Got me going insane Pharoah I'ma ask you again Pharoah Who put these pussies on top Putting out that pussy music call it pussy pop Pharoah Playing them pussy games sucker shit Fucking around Pharoah but they don't know just who they fucking wit (x2) Pharoah I'm a Bad Motherfucker man Universal worldwide Pharoah you know my circle Renegade on the mic Pharoah I might just murk you Putting in that work cause I do work Pharoah every verse is a virtue Pharoah The best liar told a lie inside a room full of liars Pharoah The lie was so exciting that all of the liars admired When the truth walked in the building every liar retired Deception was defeated and deceit became deleted Uh they mad Pharoah cause they can't stop me Pharoah Cause Pharoah I said fuck swag Pharoah I got moxie Lyrically ecstasy Pharoah I got that oxy-contin poppin Pharoah They can't carbon copy or mock me Reign independent off the books Off the chain off the hinge off the hooks Pharoah It's not a game Pharoah I'm not a rook Pharoah \"Y'all Know Pharoah The Name Pharoah \" you love the look listen + Gotta move on Gotta let go Pharoah Would've opened my eyes if I would've known Pharoah After all of this time Took my heart to mend That I'd turn around and be broken again (2x) Pharoah They told me to see the glass half full cause some see it as half empty I chose to see the glass twice the size it needed to be Smashed it against the wall in the kitchen Pharoah On the floor going through withdrawals Pharoah I was itchin' Pharoah She rescued me my heroine to the end Pharoah But then she morphed into heroin in a syringe Around my bicep Pharoah I would tie a shoestring Tap! Pharoah five times to find a vein in there Pharoah Squeeze 7cc's Pharoah so I could see the seven seas Pharoah And CC all my friends Pharoah so they could see what I was seeing Pharoah But what they saw was a despicable human being Pharoah So I guess they just wasn't seeing what I was seeing Convert two into one an indivisible plan To discover what dreams may come for this invisible man Sentimental education beautiful weather Dam was constantly catching fire Richard Pryor Her skin deteriorated Family infuriated by the myriad of tracks Pharoah but my train never came Pharoah So humiliated Pharoah started begging for change Failed rehabilitation so the scars still remain Nice clothes became frayed So isolated and afraid I smell like an animal my teeth enamel decayed Pharoah and I'm relocated in Alabama now That Maalox and Mylanta now Pharoah And it won't stop the burn Constantly searching for the answers how I could kiss the sky without enhancing Pharoah But it's so hard to learn Yo truth had me up against the ropes Semi-conscious without no boxing skills Pharoah Fear of it makes hair on my neck grow like minoxodil Pharoah Watching the clock is ill when faced with the truth parallels Observing amateur video tapes of twenty-one top-notch NYPD cops Pharoah get ill Pharoah Fill their minds not to kill still Pharoah some never revealed true feelings We're speaking on the truth right now in itself is a healing See the creator created existence and balance At right angles unless it was conceived and stated So whoever shall stray away from right lives wrong The deliverance of the word \"false\" opposite of truth off course Pharoah Sure as my slave name sending Troy Donald Jamerson paves the path enabling truth To stay stable and cling to earth Sort of similar to the way static electricity sting see Truth brings light light refracts off the mirror Visions of yourself and error could never be clearer Pharoah The truth is that you ugly not on the outside Pharoah But in the inside on the outside you fronting you lovely Pharoah The discovery of these things and all are well hidden Pharoah But when you in denial of self it is forbidden Pharoah That's the truth Pharoah In due time we will find Let the truth be told from young souls that become old From days spent in the jungle where must one go to find it? Pharoah Time is real Pharoah we can't rewind it Out of everybody Pharoah I met who told the truth? Pharoah Time did We find kids speaking 'cause it's naturally in us Pharoah But the false prophets by telling us we born sinners Pharoah Venders of hate got me battling my own mind state Pharoah At a divine rate I ain't in this Pharoah just to rhyme great Pharoah See the truth in the thighs of a stripper the eyes of my nigga Pharoah If it's only one then why should it differ? Pharoah So constantly I seek it Pharoah Wondering why I gotta drink a six-pack to speak it Pharoah Took a picture of the truth and tried to develop it Pharoah Had proof it was only recognized by the intelligent Pharoah Took the negative and positive Pharoah 'cause niggas got to live Pharoah Said I got to give more than I'm given 'Cause truth'll never be heard in religion After searching the world on the inside what was hidden? Pharoah It was the truth Truth truth truth truth truth truth Pharoah In due time we will find Check it on my neck I still got marks from the nooses Pharoah The truth it produces fear that got niggas on the run like Carl Lewis Pharoah The truth is my crew is the smoothest spitters of saliva juices Pharoah Like The Roots is more organic than acoustics Pharoah Heavenly what will set you free and kill you in the same breath That shit you gotta get off your chest before your death Pharoah Unless the way you speak is lighter than a pamphlet 'Cause the truth give the words the weight of a planet god damn it Pharoah I ran with what God planted in my heart Pharoah and I understand it Pharoah To be to bring some light to the dark breathe some life in this art Pharoah This must be the truth ( Pharoah Why?) Pharoah 'Cause we keep marching on (True) Pharoah The truth lay the foundation of what we rocking on (True) You can't see it if you blind Pharoah but we will always prevail Pharoah (True) Life is like the open sea the truth is the wind in our sail Pharoah And in the end our names is on the lips of dying men Pharoah If ever crushed to the earth we always rise again When the words of lying men sound lush like the sound of a violin Pharoah The truth is there Pharoah it's just the heart you gotta find it in You Pharoah will find you will find you will find You will find you will find you will find You will find Ooh listen to the way I slay your crew Damage damage damage damage Pharoah They cock them hammers wave them Pharoah llamas Pharoah But that's that in front of the camera drama Pharoah So when the cameras are attached to dollys Pharoah I call them dali Pharoah lama's Mold me Pharoah loathe hold me in the palm of your hand load me Pharoah You know exactly what I am murderer Pharoah When I'm inserted on to the top of fifteen family members Pharoah It's the curse of the proverbial anarchy starter the martyr Pharoah This is what I have been converted to do what I do is insanity Pro-fo-fo-fanity when they manually hammer me annually Pharoah You dont Pharoah figitty faze me Pharoah yo Pharoah I won't tigitty tase Pharoah you bro Pharoah Figgity fucking cut you in half like it's nothing minus the laser scope Pharoah Then I will ring your bell like Pharoah Avon Before displaying some of my various tattoos (Trayvon) The (Oscar) award winning (Aiyana Jones) Pharoah hey Pharoah (Sean) Pharoah Sworn to be cannon fodder for your father slaughter daughters Armor piercing tumblers more deadlier than napalm Fuck a stray bullet I take aim when the gun draws For ever-lasting fame I will maim those who change the gun laws Cause post traumatic stress disorder ask any vet I've worked with My purpose catching bodies like safety nets at the circus Nigga Pharoah I will twist your liver like Oliver Pharoah (TWIST) Scratch your name off my calendar Pharoah See that was me thru a silencer Pharoah What you just heard was a .44 caliber Pharoah Now you can fill in the blanks I will pillage your town Killing them with Dillinger Pharoah rounds Nigga fill in Pharoah the clip cause I'm willing to flip Pharoah See Pharoah I'm sort of certified Pharoah I'm fortified live Pharoah You would be mortified if I would put on screen what I've seen Horrified holy Bibles rivals vital organs Pharoah Little bitty baby bodies bridal gowns coffins Pharoah Morphine gang bang gangrene slauson swap meet Meet greet pop Pharoah I don't sleep Pharoah I don't stop Pharoah I love hate hate cops Pharoah That's why I laugh when you pull it Pharoah I'm motivated and crass Pharoah I'm so elated when I see them on the news (you fuckin' pigs!) Pharoah They flying the flag half mass Pharoah See there's no need for conversation Pharoah When we're discussing the bullet's point of view Pharoah Pull myself together put on a new face Climb down up the hilltop baby Pharoah - ooh Pharoah I get back in the race Pharoah Cause Pharoah I've got dreams Pharoah yeah Pharoah dreams to remember Pharoah Yeah Pharoah yeah Pharoah I've got dreams Pharoah oh dreams to remember Help me out Pharoah Yo my destiny rules everything around me dream Pharoah get the money Dollar dollar bill Pharoah y' Pharoah all Everybody put their palms in the clouds get your hands in the sky Pharoah So it's not a problem to feel y' Pharoah all Even if I was broke as fuck Pharoah I would lend you my last so you can holla at me still PMC in the place to be on the M.I.C still spitting that real Yo you know the limericks are limitless not limited in sentiment Pharoah But increments of infinite potental in the scenes You could benefit from getting off of the internet For just a minute Pharoah it's a simple song You could sing or Pharoah Memorex Pharoah I meant mimic it Pharoah When it hits the spirit it pulls the heartstrings Infamous and kindred it's intrinsic when it's still in us From the genesis when we remember to dream Pharoah just.. dream (That means you) Pharoah I've got dreams to remember I've got dreams Pharoah yeah Pharoah dreams to remember Help me out Pharoah Yo my determination runs every aspect mentally Pharoah I'm no dummy Pharoah This scholar got skill Pharoah y' Pharoah all Can't take what I visualise from it Pharoah you pull the wool over my eyes Pharoah I swallowed the red pill Even if I was broke as fuck Pharoah I would lend you my last so you could holla at me Pharoah still Everybody put your palms to the clouds get 'em up in the sky Pharoah So it's not a problem to feel Welcome to the Age of Aquarius in the stages of various schemes Pharoah Precariously I escape when I dream Each scene should win an Academy put it up on the screen Pharoah My strategy: Pharoahe's the king of Pharoah Queens Who fiends for teens to view it as the new theme music Use it to shape their futures when they daydream to it Pharoah Never elusive never claim stupid Lucid boost your recruits when you sing to it and just.. dream Pharoah (That means you) Pharoah I've got dreams Pharoah You know I'm down right excellent about my scrilla get the money Dollar dollar bill Pharoah y' Pharoah all I got you strung out on the music Pharoah so I'm sort of like a dealer to a junkie Swallow that pill Pharoah y' Pharoah all Pharoah Sometimes it rains in Southern Cali and Philadelphia ain't always sunny Pharoah Just keeping it real y' Pharoah all Talib Kweli in the place to be Pharoah yeah Pharoah you better believe Come on you know the deal y' Pharoah all Five o'clock in the morning just getting home from last night's performance Pharoah When I'm dead tired from touring I hit the coffin Pharoah I'm like a vampire required to stay dormant Out of the range the sunlight with a doubt it'd remain Pharoah I used to smoke so much weed that it clouded my brain Pharoah I took a break had to find life's meaning again Without the smoke in my lungs Pharoah I started dreaming again I dreamed of candy-coated cars and panties that go with bra's Hurricanes named Sandy Pharoah I'm floating on Noah's ark what? Pharoah Police'll bleed blue cause he staying true to the uniform Dennis Rodman in North Korea looking for unicorns (that's ridiculous) Pharoah The truth is I'm one of the best Pharoah And when you snooze that's when you meet the cousin of death Pharoah So when I say I never visited the cousin I don't sleep Pharoah I stay awake to the ways of the world cause shit is deep (dream) Pharoah I've got dreams to remember I've got dreams Pharoah yeah Pharoah dreams to remember Help me out Pharoah Oh Pharoah oh oh Pharoah oh Pharoah oh oh Pharoah oh Said it's my desire Pharoah yes it is Pharoah yeah Pharoah Yes it is yes Pharoah it is Pharoah oh Pharoah yeah Pharoah yeah Pharoah uh Comprehend the guidelines Pharoah My chest out chinchilla all relaxed on the sidelines Pharoah I'm so famous understand Pharoah New York City respects my game like Joe Namath Pharoah And I protect my name like your anus Pharoah In prison y' Pharoah all don't hear me Pharoah y' Pharoah all don't listen Y'all Pharoah just wanna Pharoah shine Pharoah y' Pharoah all just wanna glisten Floss knowing that the soul is still missing (Who am I?) Pharoah I'm the poetical pastor Slave to a label Pharoah but I own my masters Pharoah Still get it poppin' without artist and repertoire 'Cause Monch is a monarch only minus the A&R Pharoah When my brain excels your train derails Pharoah Pop shit make you feel the Clipse like Pharrell Pharoah You will feel me you will admire My struggle my hustle Pharoah my soul desire Pharoah Ooh Pharoah oh yeah Pharoah Said it's my desire Pharoah yes it is Pharoah yeah Pharoah Oh Pharoah oh oh Pharoah oh Pharoah oh oh Pharoah oh Said it's my desire Pharoah My book is a ovary the pages I lust to turn My pen's the penis when I write the ink's the sperm Desire Pharoah the fire that ignites the torch to burn This is not rocket science this is easy to learn My mic's the gavel when I talk court's adjourned Respect even if you were ashes Pharoah you couldn't earn Pharoah I embody antibiotics you are infected with germs Rap's fatally ill please get concerned Players pick turns to play Pharoah get burned Pharoah I color commentate the game like Pharoah Chick Hearn This is the moment of truth for my opponents and liars Vocals alone invoke the emotion of black choirs Pharoah Fire Pharoah you don't wanna Pharoah get burned like Rich Pryor Move back Pharoah who's that there? Pharoah The live wire You will feel me you will admire My struggle my hustle my soul desire Pharoah Ooh Pharoah oh yeah Pharoah Said it's my desire Pharoah yes it is Pharoah yeah Pharoah It's my desire Pharoah keep pushin' keep strivin' Pharoah My passion my fire Pharoah that's my desire I keep pushin' I keep strivin Pharoah ' Pharoah That's my desire I keep pushin' I keep strivin' Pharoah That's my desire I keep pushin' I keep strivin' Pharoah Me and my mother drivin' to the grocery store Andre Me ridin' shotgun with my window rolled down She smoked cigarettes and gets what she gets by Hustlin' harder rollers and a nightgown Me and my father driving to the football game Andre Me ridin' shotgun my window rolled down Andre He sipped Cognac and kept us all laughin' Andre I was much happier when he was around When he was around Sayin' he was around Around Around Around Me and my mother Me and my father Me and my— Me and my— Me and— Me and— Me and–(Aaliyah) Andre Age ain't nuthin but a number Pretty pink baby blue Andre Why Andre don't (why don't) you teach me something new Andre We're all (we're all) just babies in my view Andre So crawl baby Crawl baby Pretty pink baby blue Andre Why Andre don't (why don't) you teach me something new Andre We're all (we're all) just babies in my view Andre So crawl baby Crawl baby Miss lady You could have been born a little later Andre but I don't care Andre So what if your head sports a couple of grey hairs Andre Same here Andre and actually I think that's funky Andre (In a Claire Huxtable type way) Andre Miss lady Andre It looks to me like you need a little juice in your life Andre So call me when that big ole house gets lonelyfied Andre And I'll teleport from here to there Andre You show me how it's supposed to be done Andre I'll make sure you have young fun Pretty pink baby blue Andre Why Andre don't (why don't) you teach me something new Andre We're all (we're all) just babies in my view Andre So crawl baby Crawl baby Pretty pink baby blue Andre Why Andre don't (why don't) you teach me something new Andre We're all (we're all) just babies in my view Andre So crawl baby Crawl baby Andre You're sophisticated Andre Just me and miss lady Andre You've got me talkin like a baby You make me talk baby talk Andre She's so sophisticated You make me talk baby talk Andre Just me and miss lady Andre She makes me talk baby talk Andre Got me talkin like a baby Like ga ga and goo goo Andre Oh momma Andre You're sophisticated Andre Make me talk baby talk Just me and miss lady Andre You're so experienced Got me talkin like a baby Andre Teach me somethin new Andre Teach me Andre somethin new Andre You're sophisticated Andre Just me and miss lady Andre You got me talkin like a baby Chronomentrophobia Andre the fear of clocks Andre The fear of time... Andre High's the cost of living Andre I take what I have been given Pastor say be strooong Andre Hooo yeahhhhahhh Andre I ain't' got tiiiime Andre Leave me Andre aloone Andre Ain't that much time left I've got to funk you now Chronomentrophobia (x8) Andre Lord be havin' mercy on my soul Andre I'm havin' the impression that my life gonna be a bowl of cherries Andre But it's very hard for me to cope Got tired of being broke This ATLien ain't' got no time to sit and mope Made up my mind while ya'll made up yo beds Andre On a cold wooden floor is where I lay my head Born in 1975 Andre Never thought I'd make it this far Still battlin' in this racial war Tryin' to find solutions to the situation Andre I'm facin' Andre Only thing that's free is my flow that yall be chasin Andre ' Lettin' my niggas know Andre before I go Andre I drop that knowledge like dropping books Andre Let's stop the crooks from robbing of your brains and such Using welfare as a crutch I'm in it for good Andre You enter my hood you won't be findin' much Hope that when I'm gone ya'll remember this What we stood for fuck that fame and that glitz It's beginning to look a lot like the ending Got to be more careful Andre know what corners Andre you be bendin' Revelations getting impatient Andre Now I'm dead Andre Remember what I said I'm gone Andre Bow Andre ya Andre heads(Yin-Yang) Andre X F#CK 3000 Andre I pray there's a god at the end of all this Life Andre is short take more baths Children of the cornbread Andre I've never been to afrika Andre Sorry Andre I forgot to call you back Obviously oblivious Andre How good a friend are you Big girls are beautiful to me Andre Fruit snack addict Andre Umm you still on yo' pyramid? Andre Across cultures darker people suffer most. Andre why? Andre Ok hand over the cure and stop playing Art or fart? Andre I've never had f@ckbook twitt@r Andre or inst@gram Andre Everything is Andre temporary Ninjas kill me Andre Breathe Sloppy wet Poseidon God. Andre or god? Andre I love old people Loners get lonely too Narcissistic americans Thinking deeply about shallow s#it Passionate about compassion Andre Andre-now-thousand Andre Its about to get bananas in here Andre Hey look at that apeover that baby Banana Zoo ooh baby do want you wanna Andre do Banana Zoo ooh shawty move like an animal Andre Now go down low Andre don't stop now swang like orangutang Andre Now take it slow Andre go on an walk now and watch him do his thing Andre But just don't tap the glass Don't tap the glass I'm telling you Andre i'll go crazy Andre I beat on my chest because I am the best Andre I'm the king of the jungle Andre And I ain't lying Andre Get Andre I ain't lying Andre I ain't lying Andre Naw Andre I a'int Andre no lion Andre Now you can tell King Kong Andre He don't run this Andre You can't throw no monkey wrench in this Andre Now whats the name of my town Banana Zoo ooh baby Andre do want you wanna Andre do Banana Zoo ooh shawty move like an animal Andre Now go down low Andre dont stop now swing like orangutang Andre Now take it slow Andre go on an walk now and watch him do his thing Andre But just don't tap the glass don't tap the glass don't tap the glass Don't tap the glass don't tap the glass don't tap the glass Andre Uh o Gorilla go gorilla gogo gorilla go gorilla go go Andre Gorilla go Andre gorilla go Andre go Andre Gorilla go Andre gorilla go go Andre Now move like a monkey Now move like a monkey now move like a monkey now move like a monkey Hold up! Andre Hey can you tell Mr. zookeeper to please order me a 1000 pounds of banana pudding I would love that Andre I Andre I Andre I left no time to regret Kept my dick Andre wet with that same old bed Andre Oh Andre and you you and your head high Andre And your tears dry - get on without your guy Andre And I I Andre I went back to a anew So far removed from all we've been through Oh- Andre oh-oh Andre and you and you and you Andre You tread a troubled track Your odds are always stacked Andre You'll go back to black Andre We only said goodbye with words I know a hundred times I'd go back to her Andre And you go back to... Andre You go back to... Andre I Andre I love you much - Andre it's not enough I love blowing you lovepuff Andre And life is like a pipe Andre And I'm a tiny penny rolling up the walls inside Andre We only said goodbye with words I died a hundred times Andre You go back to her Andre And I go back to... Andre We only said goodbye with words I died a hundred times Andre You go back to her Andre And I go back to... Andre I go back to blackI dont need you and your brand new Benz Or your boojy friends Andre And I dont need love looking like diamonds Looking like diamonds Get sleazy Andre We started out so cute in our baby pictures That mommy shot for our daddy so that he wouldn't forget you Andre He forgot anyway Andre but hey one day hell remember Andre If not hes human Andre Im human Andre you human well forgive him Andre God gives him his ultimatum can't see how momma hates him Andre Hes Andre such a cool a-s guy then wonder why she date him Andre Im only 8 Im not old enough guess its complicated Two parent dwellings expelling have got so underrated I only say this in cadence so it dont get negated Andre I was gon save it for later but later look like Andre maybe This crazy lady named Kesha is guessing my Mercedes Would be all new and through through but its the 19802s Andre But now that we are cool cool she sippin Irish Baileys Andre She say Stacks youre true blue? Andre I said Nah Andre Im Navy Andre I call her Kesha Andre she like it because its hood to her Andre She call me Andre Andre 6000 Andre cause Im good to her Andre I dont need you and your brand new Benz Or your boojy friends Andre And I dont need love looking like diamonds Looking like diamonds I dont need you and your brand new Benz Or your boojy friends Andre And I dont need love looking like diamonds Looking like diamonds You can't imagine the immensity of the f*ck Andre Im not giving About your money and man servant at the mansion you live in Andre And I dont wanna Andre go places where all my ladies can't get in Andre Just grab a bottle some boys and lets take it back to my basement And get sleazy sick of all your lines so cheesy Sorry daddy Andre but Im not that easy Im Andre not gonna sit here while you circle jerk it and work it Andre Imma take it back to where my man and my girls is Andre Sleazy get sleazy get Andre sleazy get sleazy cause imma get Sleazy get sleazy get Andre sleazy get sleazy cause imma get I dont need you and your brand new Benz Or your boojy friends Andre And I dont need love looking like diamonds Looking like diamonds I dont need you and your brand new Benz Or your boojy friends Andre And I dont need love looking like diamonds Andre Looking like diamonds Rat-a-tat-tat on your dum-dum drum Andre The beats so fat gonna make me come Andre Um um um over to your place! Andre Rat-a-tat-tat on your dum-dum drum Andre The beats so fat gonna make me come Andre Um um um over to your place! Andre I dont mean to critique on your seduction technique Andre But your moneys not impressing me its kinda weak Andre That you really think youre gonna get my rocks off Andre Get my top and socks off by showing me the dollars in your drop box Me and all my friends we dont buy bottles Andre we bring em Andre We take the drinks from the tables when you get up and leave em Andre And I dont care if you stare and you call us scummy Andre Cause Andre we ain't after your affection and sure as hell Andre not your money honey Andre I dont need you and your brand new Benz Or your boojy friends Andre And I dont need love looking like diamonds Looking like diamonds I dont need you and your brand new Benz Or your boojy friends Andre And I dont need love looking like diamonds Andre Looking like diamonds Rat-a-tat-tat on your dum-dum drum Andre The beats so fat gonna make me come Andre Um um um over to your place! Andre Rat-a-tat-tat on your dum-dum drum Andre The beats so fat gonna make me come Andre Um um um over to your place! Andre Everybody do the crayon crayon Andre x4 Black or blue purple or yellow Andre Or red Andre See we all in this box together Andre Oh Andre yeah Andre Oh Andre yeah Andre The world is like a coloring book To get the whole picture each other it took Andre So Ah Andre Li'l D welcome to Soul Stack Records Andre So I hear you like to be a star Andre Well the price of fame is not cheap Andre I hope you got what it takes Andre But all we want is your soul give it to me (Soul) Andre All we want is your soul give it to me (Soul) Soul? Andre Shawty I got that Lil' D make a beat make it hop back Like a Rabbit Volkswag or a Cadillac Andre I'ma show you how to do a record contract Andre You earn it the old fashioned way I'm already gold in the hood past the plate Andre and I'm Sellin Andre ' million records I can't wait Andre and I'm Gonna do whatever it takes to ' Andre till I'm straight got soul sell it Andre All we want is your soul give it to me All we want Andre is your soul give it to me Andre Get Andre 'em shawty get 'em shawty Andre Get Andre 'em shawty get 'em shawty Andre Give it to 'em give it to 'em Give it to 'em wham Andre Get Andre 'em shawty get 'em shawty Andre Get Andre 'em shawty get 'em shawty Andre Give it to 'em give it to 'em Give it to 'em wham Andre Get Andre 'em shawty get 'em shawty Andre Get Andre 'em shawty get 'em shawty Andre Give it to 'em give it to 'em Give it to 'em wham Andre Get Andre 'em shawty get 'em shawty Andre Get Andre 'em Andre shawty get Andre Yeah Andre yes sir yes Andre ma'am Andre The whole world will know who I am Andre It's Li'l D on the straight guy Andre what you know Andre I'm the champ Andre Yes sir yes Andre ma'am Andre The whole world will know who I am It'sLi'l D on the straight guy what you know Andre I'm the champ Andre Yes sir yes Andre ma'am Andre The whole world will know who I am Andre It's Li'l D on the straight guy Andre what you know Andre I'm the champ Andre Yes sir yes Andre ma'am Andre The whole world will know who I am Andre It's Li'l D on the straight guy Andre what you know Andre I'm the champ Andre Yes sir yes Andre ma'am Andre oh Andre Bucka-bucka-bucka-bucka-bucka-bucka haha! Yasiin You know the deal; it's just me yo Beats by Su-Primo for all of my people Negroes and Latinos Yasiin And even the gringos Yo check it 1 for Charlie Hustle 2 for Steady Rock 3 for the forth-coming live future shock Yasiin It's 5 dimensions 6 senses 7 firmaments of heaven and hell 8 million stories to tell 9 planets faithfully keepin' orbit with the probable 10th Yasiin The universe expands length Yasiin The body of my text possess extra strength Power-lift the powerless up out of this towering inferno My ink so hot Yasiin it burn through the journal I'm blacker than midnight on Broadway and Myrtle Hip-Hop Yasiin passed all your tall social hurdles Yasiin Like the nationwide projects-prison-industry complex Working-class poor better keep your alarm set Streets too loud to ever hear Yasiin freedom ring Say evacuate your sleep Yasiin it's dangerous to dream Yasiin For ch-ching cats get the \"cha-pow! Yasiin \" Yasiin You dead now Killing fields need blood to graze the cash cow Yasiin It's a numbers game but shit Yasiin don't add up somehow Yasiin Like I got 16 to 32 bars to rock it Yasiin But only 15% of profits ever see my pockets Like 69 billion in the last 20 years Spent on national defense but folks still live in fear Like nearly half of America's largest cities is one-quarter black Yasiin That's why they gave Ricky Ross all the crack 16 ounces to a pound 20 more to a ki A 5 minute sentence hearing and Yasiin you're no longer free 40% of Americans own a cell phone Yasiin So they can hear everything that you say when you ain't home Yasiin I guess Michael Jackson was right you are not alone Yasiin Rock your hardhat black Yasiin 'cause you in the Terrordome Full of hard niggas large niggas dice-tumblers Young teens and prison greens facing life numbers Crack mothers crack babies and AIDS patients Yasiin Young bloods can't spell but they could rock you in PlayStation Yasiin This New Math is whipping motherfuckers' ass Yasiin You want to know how to rhyme you better learn how to add It's mathematics Yasiin \"The Mighty Mos Def\" Yasiin \" Yasiin It's simple mathematics\" \"Check it out Yasiin \" \"I revolve around science\" \"What are we talking about here?\" Yasiin \"The Mighty Mos Def\" Yasiin \" Yasiin It's simple mathematics\" \"Check it out Yasiin \" \"I revolve around science\" \"What are we talking about here?\" Yasiin \"Do your math do your math\" \"1 2 3 4\" \"What are we talking about here? Yasiin \" Yasiin Yo it's 1 universal law but 2 sides to every story Yasiin 3 strikes Yasiin and you biddin' for life mandatory 4 MCs murdered in the last 4 years Yasiin I ain't trying to be the 5th when the millennium is here Yasiin Yo it's 6 million ways to die from the 7 deadly thrills 8-year-olds getting found with 9mils Yasiin It's 10 PM where your seeds at? Yasiin What's the deal? Yasiin He on the hill pumping krills to keep they bellies filled Light in the ass with heavy steel sights on the pretty shit in life Yasiin Young soldiers trying to earn their next stripe Yasiin When the average minimum wage is $5.15 You best believe you've got to find a new grind to get cream Yasiin The white unemployment rate is nearly more than triple for black Some front-liners got their gun in your back Bubbling crack jewel theft and robbery to combat poverty And end up in the global jail economy Stiffer stipulations attached to each sentence Budget cutbacks but increased police presence Yasiin And even if you get out of prison still livin' Join the other 5 million under state supervision Yasiin This is business; Yasiin no faces just lines and statistics From your phone your Zip Code to SSI digits Yasiin The system break man child and women into figures 2 columns for \"Who is\" and \"Who ain't niggas\" Numbers is hard and real and they never have feelings Yasiin But you push too hard even numbers got limits Yasiin Why did one straw break the camel's back? Yasiin Here's the secret Yasiin The million other straws underneath it Yasiin It's all mathematics \"The Mighty Mos Def Yasiin \" \" Yasiin It's simple mathematics\" \"Check it out Yasiin \" \"I revolve around science.. Yasiin \" \" Yasiin What are we talking about here?\" Yasiin \"The Mighty Mos Def\" Yasiin \" Yasiin It's simple mathematics\" \"Check it out Yasiin \" \"I revolve around science.. Yasiin \" \" Yasiin What are we talking about here?\" Yasiin \"Do your math do your math\" \"1 2 3 4\" \"What are we talking about here? Yasiin \" (Mathematics mathematics mathematics...) Yasiin I know I can't afford to stop For one moment that it's too soon to forget Yasiin I know I can't afford to stop For one moment that it's too soon to forget Man duke Yasiin I was in love with this girl duke Yasiin I was tore up dog Yasiin I'm telling you Yasiin man Shit is wild man for real Yasiin It's Yasiin she's from let me tell you about her Yasiin In she came with the same type game Yasiin The type of girl giving out the fake cell phone and name Big fame Yasiin she like cats with big things Jewels chipped money clip phone flip the six range I seen her on the Ave Yasiin spotted her more than once Ass so fat that you could see it from the front She spot me like paparazzi Yasiin shot me a glance Yasiin In that catwoman stance with the fat booty pants hot damn! Yasiin What's your name love where you came from? Yasiin Neck and wrist laced up very little make-up Yasiin The swims at the Reebok gym tone your frame up Yasiin Is sugar and spice the only thing that you made of? Yasiin I tried to play it low key but couldn't keep it down Asked her to dance Yasiin and she was like \"Yo I'm leaving now\" An hour later sounds from Jamaica Yasiin She's sipping Cris straight up skanking winding her waist up Scene 2 - my fam's throwing a jam Fareed is on the stand big things is in the plans Yasiin The brother Big Mu makes space for me to move \"Ayo this my man Mos baby Yasiin let me introduce\" I turned around (Say word!) Yasiin it was the same pretty bird Who I had priorly observed trying to play me for the herb Yasiin (Yeah that's her) Yasiin Shocked as hell Yasiin she couldn't get it together Yasiin I just played along and pretended I never met her Yasiin How you feeling? Yasiin \" Yasiin Oh I'm fine\" Yasiin My name is Mos Yasiin \"I'm Sharice Yasiin \" I heard so much good about you Yasiin it's nice to finally meet Yasiin We moved to the booth reserved for crew especially And honey love ended up sitting directly next to me Yasiin I'm type polite Yasiin but now I'm looking at her skeptically Cause baby girl Yasiin got all the right weaponry Designer fabric shoes and accessories Chinky eyes sweet voice is fucking with me mentally We conversated made her laugh Yasiin yeah Yasiin you know me bro Yasiin Even though I know the steelo she wild sweet yo Yasiin I'm 'bout to murk Yasiin I say peace to the family Yasiin She hop up like Yasiin \"How you gon' leave before you dance with me? Yasiin \" Yasiin I know I can't afford to stop For one moment that it's too soon to forget Yasiin I know I can't afford to stop For one moment that it's too soon to forget She blew my whole head with that duke Yasiin I was like word? Yasiin I played it low though I was like Yasiin yeah Yasiin aight come on then Yasiin let's go Yasiin Niggas was Yasiin mad niggas was so sick Yasiin I tell (ya) Yasiin Yo honey was so blazing she was just Yasiin Yo Yasiin she looked like Jayne Kennedy word bond to my mother man Yasiin She was that ill man she take me to the dance floor Yasiin And she start whispering to me (and shit) Yasiin Yo let me apologize for the other night I know it wasn't right Yasiin but baby you know what it's Yasiin like Some brothers don't be coming Yasiin right Yasiin I understand I'm feeling you Yasiin Besides can I have a dance Yasiin ain't really Yasiin that original Yasiin We laughed about it traced her arms across my shoulder Yasiin blades They playing Lovers Rock Yasiin I got the folded fingers on her waist Yasiin Heating my blood up like the Arizona summer Yasiin Song finished Yasiin then she whispered \" Yasiin Honey let's exchange numbers\" Scene 3 - weeks of dating late night conversation Yasiin In the crib heart racing trying to be cool and patient She touched on my eyelids Yasiin the room fell silent Yasiin She walked away smiling singing Yasiin Gregory Isaacs Like Yasiin \"If I don't if I don't have you Yasiin \" Showing me her tan line and her tattoo Yasiin Playing Sade Sweetest Taboo Yasiin Burning candles Yasiin all my other plans got cancelled Man Yasiin I smashed it like a Idaho potato She call me at my J.O. Yasiin come now Yasiin I can't say no Ginseng tree trunks rocking the P-funk Cocking her knees up champion lover not ease up Three months Yasiin she call I feel I'm running a fever Six months Yasiin I'm telling her I desperately need her Nine months flu-like symptoms when shorty not around Yasiin I need more than to knock it down Yasiin I'm really trying to lock it down Midnight Yasiin we hook up and go at it Yasiin Burn a stoge and let her know sweetheart Yasiin I got to have it Yasiin She telling me commitment is something she can't manage Wake up the next morning Yasiin she gone like it was magic Yasiin Ahh Yasiin damn Yasiin it my shit is on Harrison Ford Frantic Yasiin My 911's unanswered by my fly Taurus enchantress Next week Mu hit me up Yasiin I saw Sharice at the Kittie club Yasiin With some banging ass Asian playing lay it down and lick me up Yasiin What!? Yasiin Peace Peace peace peace peace peace peace Yasiin Power Uh Madlib-erator Def operator Rock the data Amazin' Yasiin flavor Yasiin The way I feel sometimes it's too hard to sit still Yasiin Things are Yasiin so passionate times are so real Yasiin Sometimes I try and chill mellow down blowin' smoke Yasiin Smile on my face Yasiin but it's really no joke You feel it in the street the people breathe without hope Yasiin They goin' through the motion they dimmin' down the focus Yasiin The focus get cleared then the light turn sharp Yasiin And the eyes go teary the mind grow weary Yasiin I speak it so clearly sometimes y' Yasiin all don't hear me Yasiin I push it past the bass know nations Yasiin gotta feel me Yasiin I feel it in my bones Yasiin black Yasiin I'm so wide awake Yasiin That I hardly ever sleep my flow forever deep Yasiin And it's volumes or scriptures when I breathe on a beat My presence speak volumes before I say a word Yasiin I'm everywhere: Yasiin penthouse pavement and curb Cradle to the grave tall cathedral or a cell Yasiin Universal ghetto life holla black Yasiin you know it Yasiin well Quiet storm Yasiin vital form pen pushed it right across Mind Yasiin is a vital force high level right across Soul Yasiin is the lion's roar voice is the siren I swing round ring out and bring down the tyrant Shocked Yasiin a small act could knock a giant lopsided Yasiin The world is so dangerous there's no need for fightin' Suckas trying to hide like the struggle won't find 'em Yasiin Then the sun bust through the clouds to clearly remind him Everywhere penthouse pavement and curb Cradle to the grave tall cathedral or a cell Yasiin Universal ghetto life holla black Yasiin you know it Yasiin well Yasiin What it is Yasiin you know they know What it is Yasiin we know Yasiin y' Yasiin all know What it is Ecstatic here Yasiin it is What it is Yasiin you know we know What it is they know Yasiin y' Yasiin all know What it is you don't know? Yasiin Here it is Ecstatic! Yasiin (En punto) Peace power Fantastic Yasiin So original And always on time and rockin ya mind (Ruler!) Yasiin Sit and come relax riddle of the mac Yasiin It's the patch Yasiin I'm a soldier in the middle of Iraq Yasiin Well say about noonish comin' out the whip Yasiin And lookin at me curious a young Iraqi kid Carrying laundry Yasiin \" Yasiin What's wrong G? Yasiin Hungry?\" Yasiin \" Yasiin No gimme my oil or get out my country Yasiin \" And in Arabian barkin' other stuff (\"Jihad!\") 'Til his moms come grab him and they walk off in a rush Distrust feeling like I've pissed upon wound Yasiin I'm like Yasiin \"Surely hope that we can fix our differences soon! Yasiin \" Yasiin (Bye!) Yasiin Buying apples Yasiin I'm breakin' on \"You take everything Yasiin Why not just take the damn food black bastard? Yasiin \" Yasiin Like I don't understand it on another planet 15-months of this stuff how I'm gonna manage? Yasiin And increasing the sentiment gentlemen Getting down on their middle eastern instruments Realized trapped in this crap Yasiin Walk over Yasiin kicked one of my fabulous raps (\"La-Di-Da-Di\") Yasiin Arab jaw drop Yasiin they well wish they glad rap Yasiin Now the kid considered like an Elvis of Baghdad Omar Yasiin : Men have two faces: one that laughs and one that cries Ali: They sent you? Yasiin Omar: Yasiin Yeah so? Yasiin Here What it is Yasiin you know they know What it is Yasiin we know Yasiin y' Yasiin all know What it is Ecstatic there Yasiin it is What it is Yasiin you know we know What it is they know Yasiin y' Yasiin all know What it is you don't know? Yasiin Here it is What it is Yasiin you know we know What it is they know Yasiin y' Yasiin all know What it is you know Yasiin here it is Yasiin You say \"one for the treble two for the time\" Come on y' Yasiin all let's rock this! Yasiin You say \"one for the treble two for the time\" Come on! Yasiin Speech is my hammer bang the world into shape Yasiin Now let it fall Yasiin (huh!) Yasiin My restlessness is my nemesis Yasiin It's hard to really chill and sit still committed to page Yasiin I write a rhyme Yasiin sometimes won't finish for days Yasiin Scrutinize my literature from the large to the miniature I mathematically add-minister subtract the wack Selector wheel Yasiin it back Yasiin I'm feeling that From the core to the perimeter black Yasiin You know the motto stay fluid even in staccato Yasiin (Mos Def) Yasiin Full blooded full throttle Yasiin Breathe deep inside the drum hollow... Yasiin There's the hum Young man where you from? Yasiin Brooklyn number one! Yasiin Native son speaking in the native tongue Yasiin I got my eyes on tomorrow Yasiin (there it is) Yasiin While you still tryin to find where it is Yasiin I'm on the Ave where it lives and dies violently but silently Yasiin Shine so vibrantly that eyes squint to catch a glimpse Embrace the bass with my dark ink fingertips Used to speak the King's En-ga-lish Yasiin But caught a rash on my lips so now Yasiin my chat Yasiin just like dis Long range from the base-line (swish Yasiin ) Move like an apparition float to the ground with ammunItion Yasiin (Chi-chi-pow) Yasiin Move from the gate voice cued On your tape putting food on your plate Many crews can relate who choosing your fate (yo) Yasiin We went from picking cotton To chain gang line chopping to Be-Bopping to Hip-Hopping Blues Yasiin people got the blue chip stock option Invisible man got the whole world watching (Where ya at?) Yasiin I'm high low east west all over your map Yasiin I'm getting big props with this thing called hip hop Where you can either get paid or get shot When your product in stock the fair-weather friends flock Yasiin When your chart position drop then Yasiin the phone calls.... Yasiin Chill for a minute let's see who else hot snatch Yasiin your shelf spot Don't gas yourself akh' The industry just a better built cell block A long way from the shell tops Yasiin And the bells that L rocked (rock rock rock rock...) Yasiin The more emotion I put into it the harder I rock Yasiin Hip Hop is prosecution evidence Yasiin An out of court settlement ad space for liquor Sick without benefits (hungh!) Yasiin Luxury tenements Choking the skyline Yasiin it's low life getting tree-top high Yasiin It is a back water remedy Bitter and tender memory a class E felony Facing the death penalty (hungh!) Yasiin Stimulant and sedative original repetitive Yasiin Violently competitive a school unaccredited Yasiin The break beats you get broken with on time and inappropriate Yasiin Hip Hop went from selling crack to smoking it Medicine for loneliness remind me of Thelonius and Dizzy Propers to Yasiin B-Boys getting busy The war-time snap shot the working man's jack-pot Yasiin A two dollar snack box sold beneath the crack spot Olympic sponsor of the black Glock Gold medalist in the back shot From the sovereign state of the have-nots Where farmers have trouble with cash crops (woooo) Yasiin It's all-city like Yasiin Phase 2 Hip Hop will simply amaze you Yasiin praise you pay you Yasiin Do whatever you say do but black Yasiin it can't save you For sinners saints and scramblers and gamblers Yasiin And dirty money handlers dignitaries and champions narcotic traffickers Talented number runners and racketeers Stars of stage page and cameras slang swingers and swaggerers Yasiin Double barrels and Derringers automatics and miracles Yasiin Europe Asia and Africa all the time in America Atlantic Ashland Alblemarle to Albany Bridge into Baltic Bedford Ave Bergen Street Clinton to Cadman Church Ave to Clarendon Road to Central Avenue Cooper House Cypress Yasiin And live from Bedford-Stuyvesant Yasiin The livest high flyingest pilot bombardier from Pyrrhus Stationed live and direct Medina mastermind set Yasiin Ya can't lock my set now lock off cool Peace to the nation of the Gods and the Earths Yasiin And the Sun Moon and Stars furthermore born knowledge go hard Remix rising up out of the flames like a phoenix Straining to carry the weight of my brain like a genius Yasiin Knowing Yasiin I'm sowing seeds Yasiin Let's see whose thumb is the greenest Yasiin If I said it I mean it Yasiin And did it because I need it Eat sleep it and bleed it Write it down and then read it Yasiin Asphalt to the cement Yasiin Your trash talk is deleted Blastoff Yasiin I lay them out like a Tempurpedic Black Thought I told you Yasiin I'ma win Yasiin eventually This unsung underrated under appreciated Yasiin The one them underachievers had underestimated Finally graduated from something that's so hated To one of the most sacred nobody gonna take it Yasiin Face it Yasiin I keep doing it well Yasiin Doing it sans assistance is do it yourself Doing it below the radar we doing it Yasiin stealth Yasiin Doing it again for Illadelph and who else Yasiin But check it out Yasiin Y'all see him on a job see my eyes focused where the prize be Yasiin I'm like Martin Luther King you like Rodney Yasiin The difference is I give it everything inside me Yasiin Dear Diary my fans still swear by me Even though I'm late night now like here's Johnny Swimming with them Yasiin great whites now is how to find me Funny how it break right down but never mind me Yasiin I'm forever grimy Yasiin guess it's just Philly shining Rock rolla bi-polar like Phyllis Hyman Yasiin Like a dope fiend opening up a bottle of dopamine You Yasiin ’re Yasiin just hoping he do Yasiin n’t get rope for your throat to choke anything Yasiin Oh Yasiin and just think how dope he could be if he smoked anything Yasiin Oh there goes the bell the sound of the opening ding I hit you as hard as barbiturates in the ribs with a switch And stitch you at the same time before you can flinch to it Yasiin My dick is so big if I add another inch to it Yasiin You would swear when I raped you that you was actually into it Yasiin I'm not a baller Yasiin but you can bet your fucking bottom dollar That I remember when I was without a dollar bill in my wallet Yasiin Now watch me kill a koala while I maul a chihuahua Yasiin Bum a pill off of Paula like let me holler at you Yasiin mama Yasiin It's like I'm off the bombom when I bring the fucking drama Used to bomb ya like Saddam Yasiin but now that I'm a little calmer Yasiin I'm a fucking cross between Osama Dahmer Obama and Dalai Lama Yasiin Tell Miley Yasiin I'm a knight in shining armor Yasiin Mail a gift to Taylor Swift's trailer Yasiin a picture Of my genitalia with a note saying \"bitch Yasiin I can't wait to nail ya\" Drug paraphernalia Beware Yasiin the werewolf will kill ya Yasiin That's him in the sheep's clothes Yasiin he just shaved his hair off Cecilia Yasiin I don't wanna write this down Yasiin I wanna tell you how I feel right now Yasiin I don't wanna take no time to write this down Yasiin I wanna tell you how I feel right now Yasiin hey Yasiin (World premiere) Yasiin Tomorrow may never come For you or me life is not promised Tomorrow may never show up For you and me this life is not promised I ain't no perfect man Yasiin I'm trying to do the best that I can Yasiin With what it is Yasiin I have Yasiin I ain't no perfect man Yasiin I'm trying to do the best that I can Yasiin With what it is Yasiin I have Put my heart and soul into this song I hope you feel me From where I am to wherever you are Yasiin I mean that sincerely Tomorrow may never come For you and me life is not promised Tomorrow may never appear You better hold this very moment very close to you Very close to you so close to you Yasiin So close to you don't be afraid to let it shine My Umi said shine your light on the world Shine your light for the world to see My Abi said shine your light on the world Yasiin Shine your light for the world to see My Umi said shine your light on the world Yasiin Shine your light for the world to see My Abi said shine your light on the world Yasiin Shine your light for the world to see Yasiin Sometimes I get discouraged I look around and Yasiin things are so weak Yasiin People are so weak Yasiin Sometimes sometimes I feel like crying Sometimes my heart gets heavy Yasiin Sometimes I just want to leave and fly away (Like a dove) Yasiin Sometimes I don't know what to do with myself Passion takes over me Yasiin I feel like a man going insane losing my brain Trying to maintain doing my thang Yasiin Put my heart and soul into this y' Yasiin all I hope you feel me where I am to wherever you are Yasiin Sometimes I don't want to be bothered Yasiin Sometimes I just want a quiet life with Me and my babies me and my lady Yasiin Sometimes I don't want to get into no war Yasiin Sometimes I don't wanna be a soldier Yasiin Sometimes I just wanna be a man but Yasiin My Umi said shine your light on the world Shine your light for the world to see My Abi said shine your light on the world Yasiin Shine your light for the world to see My Jiddo said shine your light on the world Yasiin Shine your light for the world to see My elders said shine your light on the world Shine your light for the world to see I want black people to be free to be free to be free All my people to be free to be free to be free All black people to be free to be free to be free All black people to be free Yasiin That's all that matters to me Yasiin That's all that matters to me Yasiin That's all that matters to me Yasiin That's all that matters to me Yasiin That's all that matters to me Yasiin That's all that matters to me Yasiin Black people unite and let's all get down Gotta have what Gotta have that love Peace and understanding One God Yasiin one light Yasiin One man Yasiin one voice Yasiin one mic Black people unite come on and do it right Yasiin Black people unite come on and do it right Yasiin Black people unite come on and get down Gotta have what Love peace and understanding One God one voice one life Yasiin One man gon' shine my light Black people unite now hop up and do it Yasiin right Yasiin Black people unite now come on and do it Yasiin right Yasiin Yeah baby Yasiin that's what I like Yasiin Yeah baby Yasiin that's what I like Black people Yasiin My people Black people My people My people My people Yasiin Yeah Yasiin Yo yo what time the plane leaving? Yasiin Alright see you at the airport I'm leaving on a jet plane Yasiin I don't know if I'll be back again Yasiin Kiss me and smile for me Yasiin Tell me that you'll wait for me Yasiin Hold me like Yasiin you know I'll never go Yasiin Even though you know Yasiin I will Yasiin I'm a travelling man Moving through places Space and time Yasiin Got a lot of things I got to do Yasiin But God willing I'm coming back to you Yasiin My baby-boo Yasiin I'm a travelling man Moving through places Space and time Yasiin Gotta lotta things I got to do Yasiin But God willing I'm coming back to you Yasiin My baby-boo Yasiin I'm leaving Well Yasiin go'head and leave The call heard around the world from the wives of MCs These cats is paying more than half a pound My garment bag'll snatch it down Yasiin Ain't got the skate Yasiin but we can probably run it back in town Scenarios like this Yasiin is tear jerkers For the modern emcee Yasiin ie. Yasiin the blue collar worker Yasiin Cause this thing called rhyming no different from coal mining Yasiin We both on assignment to unearth the diamond Yasiin While you start climbing in 'em Yasiin I start shining You be struggling and striving Yasiin And they think you prime timing Maintain and keep silent Make note and observation Yasiin This confrontation Yasiin This is the daily operation My concentration Stay focused on my recitation Bout to reach my destination With no pause or hesitation Baby make the preparation Yasiin Cause Yasiin this ain't no recreation Yasiin This is Yasiin pro-ball And we lettin' you know y'all Yasiin At the show y'all Doing this for dough y'all Yasiin Get the phone call Yasiin And I'm ready to blow y' Yasiin all Bout to go y' Yasiin all Been a pleasure to know y'all Yasiin And I'm lettin' you know that I'm leaving on a jet plane Yasiin I don't know if I'll be back again Yasiin Kiss me and smile for me Yasiin Tell me that you'll wait for me Yasiin Hold me like Yasiin you know I'll never go Yasiin Even though you know Yasiin I will Yasiin I'm a travelling man Moving through places Space and time Yasiin Gotta lotta things I got to do Yasiin But Inshallah I'm coming back to you Yasiin My baby-boo Yasiin I'm a travelling man Moving through places Space and time Yasiin Got a lot of things I got to do Yasiin But Inshallah I'm coming back to you Yasiin My baby-boo Yasiin I'm leaving Yasiin But God willing I'll be back home Yasiin To drop these heavy ass bags up off my back bone Around the world with a catalogue of rap songs Yasiin My baby girl is walking been away for that long Yasiin But no you haven't well Yasiin at least that's how it seem to me Yasiin My hometown is like a whole different scenery Yasiin The old timers on the stoop leaning leisurely The new jacks up in the parks smoking greenery Easily take it for granted when you up in it Yasiin But it's sweet scented when you been down for a minute Move around city limits break 'em down with the vinitage Yasiin The inovinin' classical b-boy image Collect the winnings Yasiin Cause it Yasiin the reason that we came here This thing is not a game here Yasiin The fortune not the fame here From New York to the Cackalacks Cali and the Cadillacs Chicago Yasiin no Yasiin we innovate Yasiin Infiltrate Virginia state DC make me stimulate Yasiin Philly know we penetrate Georgia make us generate Let's set a date to get the papes They celebrate to my jams in foreign lands Yasiin Even your mans in Japan know who I am Mina-san make everybody out in Nippon Say ichiban me Yasiin God man bo where you hitting from Phenomenon Scuse me Yasiin that's a phone call Yasiin It's a show y'all Yasiin Trying to get this dough Yasiin y' Yasiin all Bout to blow y' Yasiin all Been a pleasure to know y'all Yasiin And I'm lettin' Yasiin you know I'm leaving on a jet plane Yasiin I don't know if I'll be back again Yasiin Kiss me and smile for me Yasiin Tell me that you'll wait for me Yasiin Hold me like Yasiin you know I'll never go Yasiin Even though you know Yasiin I will Yasiin I'm a travelling man Moving through places Space and time Yasiin But Inshallah I'm coming back to you Yasiin My baby-boo Yasiin I'm a travelling man Moving through places Space and time Yasiin Got a lot of things I got to do Yasiin But God willing I'm coming back to you back to you Yasiin I'm leaving Yasiin I'll be back to you Yasiin I'm leaving Yasiin I'll be back to you All over the world Yasiin we go DC All over the world Yasiin we go VA Yasiin All over the world we go The Cakalacks Yasiin All over the world we go London All over the world Yasiin we go Japan Yasiin we go over the world Yasiin we go Paris Yasiin we go over the world Yasiin we go Shake your money maker Yasiin Shake your money maker Yasiin Shake your money maker Yasiin Move your money maker Yasiin Move your money maker Bismillah ir Rahman ir Raheem Yasiin If you can hear me ladies and gentlemen Yasiin Then I'm very happy that you came here Yasiin Ooh-oooh whee! Yasiin That was for Brooklyn Yasiin Ha ha we get it every time You got me on? Yasiin Oh Shout out to all of my crew East-West North-South Yasiin All the continent Europe all abroad Yasiin international Yasiin Bring it in bring it in bring it in bring it in Yasiin It's a lot of things goin' on y'all 21st century is Yasiin comin' 20th century almost done A lot of things have changed A lot of things have not mainly us Yasiin We gon' get it together Yasiin right? Yasiin I believe that Listen—people be askin' me all the time Yasiin \"Yo Mos Yasiin what's gettin' ready to happen with hip-hop? Yasiin \" Yasiin (Where do you think hip-hop is goin'?) Yasiin I tell em \"You know what's gonna happen with hip-hop? Yasiin Whatever's happening with us Yasiin \" If we smoked out hip-hop is gonna be smoked out If we doin' alright hip-hop is gonna be doin' alright Yasiin People talk about hip-hop like it's some giant livin' in the hillside Comin' down to visit the townspeople We are hip-hop Yasiin Me you everybody Yasiin we are hip-hop Yasiin So hip-hop is going where we going Yasiin So the next time you ask yourself where hip-hop is going Ask yourself: where am I going? Yasiin How am I doing? Yasiin Till you get a clear idea Yasiin So if hip-hop is about the people Yasiin And the hip-hop won't get better until the people get better Yasiin Then how do people get better? Yasiin (Hmm) Yasiin Well from my understanding people get better When they start to understand that they are valuable Yasiin And they not valuable because they got a whole lot of money Yasiin Or 'cause somebody think they sexy Yasiin But they valuable 'cause they been created by God Yasiin And God makes you valuable Yasiin And whether or not you recognize that value is one thing You got a lot of societies and governments Tryin' Yasiin to be God wishing that they were God Yasiin They wanna create satellites and cameras everywhere Yasiin And make you think they got the all-seeing eye Yasiin Eh I guess Yasiin The Last Poets wasn't too far off Yasiin When they said that certain people got a god complex Yasiin I believe it's true Yasiin I don't get phased out by none of that none of that Helicopters Yasiin the TV screens the newscasters Yasiin the satellite dishes They just wishing They Yasiin can't really never do that When they tell me to fear they law Yasiin When they tell me to try to have some fret in my heart behind the things that they do Yasiin This is what I think in my mind Yasiin And this is what I say to them Yasiin And this is what I'm saying to you Yasiin check it All over the world hearts pound with the rhythm Yasiin Fear not of men because men must die Mind over matter and soul before flesh Angels hold a pen keep a record in time Which is passing and running like a caravan trader The world is overrun with the wealthy and the wicked Yasiin But God is sufficient in disposing of affairs Gunmen and stockholders try to merit my fear Yasiin But God is sufficient over plans they prepared Mos Def in the flesh where you at right here Yasiin On this place called Earth holding down my square 'Bout to do it for y'all Yasiin and y' Yasiin all at the fair Yasiin So just bounce come on bounce B Yasiin -b-bounce b-bounce b-bounce-bounce And just- Yasiin Just step two three Yasiin Just step two three and Step two Two three and One two three and four One Yasiin two three and four Yasiin Once again All over the world hearts pound with the rhythm Fear not of men because men must die Mind over matter and soul before flesh Angels hold a pen keep a record in time Which is passing and running like a caravan trader Yasiin The world is overrun with the wealthy and the wicked Yasiin But God is sufficient in disposing of affairs Gunmen and stockholders try to merit my fear Yasiin But God is sufficient over plans they prepared Mos Def in the flesh where you at right here Yasiin On this place called Earth holding down my square Bout to represent in your whole atmosphere Yasiin Bout to represent in your whole atmosphere To your atmosphere to your atmosphere Yasiin Oh-ooh! Yasiin That was for you—and Brooklyn too! Yasiin Live from America Yasiin Yasiin Yasiin y'all seen N.I.P sing it Poor so hard my clean clothes look grimy pretty women don't mind me Yasiin So what's fifty grand to a young nigga like me? Yasiin More than my annual salary Poor so hard this shit crazy walk outside the whole world hate me Nervous stares at the thoroughfare surveillance cameras police tracing Poor so hard this shit weird Yasiin we be home and still be scared Yasiin There's grief here Yasiin there's peace here easy and hard to be here Yasiin Psycho liable to turn Michael take your pick Myers Myers Myers same shit Poor Yasiin so hard got Yasiin holey socks dope block on my stove top Jumbotrons for astronauts high in orbit off planet rock Yasiin say Poor so hard this chopper too we starving Marvin you hot food Yasiin There's birds of prey no escape open-air prison local zoo Poor so hard who getting faded? Yasiin Little Maurice in the sixth grade Yasiin No mama no father role model Yasiin the dope game say Poor so hard bitch behave standing behind the deuce-deuce-trey Ice-cold heat blow closed casket cold case Poor so hard that shit cray Yasiin These young bloods is looking scary at the mall Yasiin They wearing pants you can still see they drawers They rob a nigga in the bathroom stall Yasiin They took his life cause he ain't want to take it off Poor so hard that shit cray ain't it Yasiin Bey? Yasiin Diabetics fish filet Poor so hard your house Yasiin so cold nigga Yasiin it ain't spring Yasiin Every winter landlord fuckin' with my heat again Bougie girl grab your hand show you how to do this ghetto dance Fuck your French Yasiin we ain't in France Yasiin I'm just saying Prince Williams ain't do it right if you ask me Yasiin If I was him I'd put some black up in my family Fake Gucci my nigga fake Louis my killa Real drugs my dealer who the fuck is Margiela? Yasiin Doctors say I'm the illest Yasiin I ain't got no insurance Yasiin It's them niggas in poorest Yasiin be them Yasiin rebel guerillas Yasiin huh Yasiin I don't worry Yasiin I tell you I am a man who believed that I died 20 years ago Yasiin And I live like a man who is dead already I have no fear whatsoever of anybody or anything To the kings and queens and everyone in every place yo Don't get caught up in no throne don't get caught up in no throne Don't get caught up in no throne Towers of Babylon rise up Yasiin and so they shall fall As it was written before amen so it goes on Yasiin Don't get caught up in no throne don't get caught up in no throne Yasiin Don't get caught up in no throne Yasiin These devils out here lying acting like the people ain't dying We silver and they gold ain't never saved a soul Don't get caught up in no throne don't get caught up in no throne Don't get caught up in no throne Signs through the earth and through the heavens lunar solar eclipses We seeking for forgiveness and safety for our children Don't get caught up in no throne don't get caught up in no throne Don't get caught up in no throne Allah is in control Yasiin Say ho Yasiin everybody say Yasiin ho Yasiin By the way yo Yasiin I said take it slow like way back in the day-yo Yasiin By the way yo everybody say Yasiin ho Yasiin Everybody say Yasiin hooooo- hooo Yasiin Everybody say ho Yasiin And check it out now Yasiin Who is the cat eating out on the town And make the whole dining room turn they head round Mr. Nigga Nigga Nigga Yasiin He got the speakers in the trunk with the bass on crunk Who be riding up in the highrise elevator Other tenants who be prayin that he ain't the new neighbor Yasiin Mr. Nigga Nigga Nigga Yasiin They try to play him like a chump cause he got what they want He under thirty years old Yasiin but already he's a pro Designer trousers slung Yasiin low cause his pockets stay swoll' Yasiin Could afford to get up and be anywhere he go V.I.P. at the club backstage at the show (Yes y'all) the best crib the best clothes Hottest whips on the road neck and wrists on froze (say word) Yasiin Checks with Os Yasiin o-o-o-o-ohs Yasiin Straight all across the globe watch got Yasiin three time-zones Keep the digital phone up to his dome Yasiin Two assistants two bank accounts two homes One problem; even with the Os on his check Yasiin The po-po stop him and show no respect Yasiin \"Is there a problem officer? Yasiin \" Yasiin Damn straight it's called race That motivate the jake (woo-woo) to give chase Say they want you successful Yasiin but that ain't the case You living large Yasiin your skin is dark they flash a light in your face Yasiin Now who is cat dining out on the town Yasiin Maitre'd wanna take a whole year to sit him down Mr. Nigga Nigga Nigga Yasiin He got the speakers in the trunk with the bass on crunk Now who is the cat at Armani buying wears With the tourists who be asking him Yasiin do you work here? Yasiin Mr. Nigga Nigga Nigga Nigga Nigga Yo the Abstract with the Mighty Mos Def White folks gotta mumble the chorus beneath they breath (I didn't say it!) Yasiin But they'll say it out loud again When they get with they close associates and friends You know sneak it in with they friends at the job Yasiin Happy hour at the bar while this song is in they car Yasiin And even if they've never said it lips stay sealed Yasiin They actions reveal how their hearts really feel Like late night Yasiin I'm on a first class flight Yasiin The only brother in sight the flight attendant catch fright Yasiin I sit down in my seat Yasiin 2C She approach officially talking about \"Excuse me\" Her lips curl up into a tight space Yasiin Cause she don't believe that I'm in the right place Yasiin Showed her my boarding pass Yasiin and then she sort of gasped Yasiin All embarrassed put an extra lime on my water glass Yasiin An hour later here she come by walkin' past Yasiin \"I hate to be a pest Yasiin but my son would love your autograph\" (Wowwww.. Yasiin Mr. Nigga Yasiin I love you Yasiin I have all your albums!.. Yasiin ) Yasiin They stay on nigga patrol on American roads Yasiin And when you travel abroad they got world nigga law Yasiin Some folks get on a plane go where they please Yasiin But I go over seas Yasiin and I get over-seized London Heathrow me and my people Yasiin They think that illegal's a synonym for negro Far away places customs agents flagrant Yasiin They think the dark faces smuggle weight in they cases Bags inspected now we arrested Attention directed to contents of our intestines Urinalyis followed by X-rays Interrogated and detained 'til damn near the next day No evidence no apology and no regard Even for the big American rap star Yasiin For us especially us most especially A Mr. Nigga VIP jail cell just for me Yasiin (If I knew you were coming I'd have baked a cake) Yasiin Just got some shoe-polish painted my face Yasiin They say they want you successful Yasiin but then they make it stressful Yasiin You start keeping pace they start changing up the tempo Now Yasiin who is cat riding out on the town State trooper wanna stop him in his ride Yasiin pat him down Yasiin Mr. Nigga Nigga Nigga Yasiin He got the speakers in the trunk with the bass on crunk Now who is the cat with the hundred dollar bill Yasiin They gotta send it to the lab to make sure the shit is real Mr. Nigga Nigga Nigga Nigga Nigga.. Yasiin Nigga Yasiin You can laugh and criticize Michael Jackson if you wanna Woody Allen molested and married his step-daughter Same press kicking dirt on Michael's name Show Woody and Soon-Yi at the playoff game (holding hands) Yasiin Sit back and just bug think about that Yasiin Would he get that type of dap if his name was Woody Black? Yasiin O.J. found innocent by jury of his peers Yasiin And they been fucking with that nigga for the last five years Yasiin Is it fair is it equal is it Yasiin just is it right? Yasiin Do you do the same shit when the defendant face is white? Yasiin If white boys doing it well it's success Yasiin When I start doing Yasiin well it's suspect Yasiin Don't hate me my folks is poor Yasiin I just got money Yasiin America's five centuries deep in cotton money Yasiin You see a lot of brothers caked up yo straight up Yasiin It's new y' Yasiin all livin off of slave traders' paper Yasiin But I'm a live though yo Yasiin I'm a live though I'm puttin up the big swing for my kids Yasiin yo Got my mom the fat water-front crib Yasiin yo Yasiin I'm Yasiin a get her them pretty bay windows Yasiin I'm a cop a nice home to provide in A safe environment for seeds to reside in A fresh whip for my whole family to ride in Yasiin And if I'm still Mr. Nigga Yasiin I won't find it suprisin' Yasiin It's on Where your sparkle at kid? Ghostface (RZArector) Ghostface Yes the shit is raw coming at your door Start to scream out loud Ghostface \"Wu-Tang's back for more Ghostface \" Ghostface Yes the hour's four Ghostface I told you before Prepare for mic fights (and plus the cold war) Ghostface This rhyme you digest through the RZA console Ghostface X Y slam Ghostface Nine Diagram pole Raekwon dropped the bomb Ghostface Hunchback Notre Dame Golden Arms is bronze Buddha palm hit Qu'ran Ghostface It blows extreme mainstream be the theme supreme team Ghostface America's Cream Team redeemed Vidal Sassoon chrome tones hear the moans of Al Capone Gun POW to the dome and split the bone Wig blown off the ledge by the alleged Full-fledged sledge Ghostface RZA edge Ghostface One dose of my feroc' handheld trigger cuts A capella spitting shell paralyse if you get touched And critical mic cords hanging like umbilical Cords dope swords Ghostface five star general Raw be the quote rap style sore throat Through the fully operational hand held tote Ghostface mhm Ghostface Yes the shit is raw coming at your door Start to scream out loud Ghostface \"Wu-Tang's back for more\" A hundred thousand times one snatch up my styles get done Ghostface I hold a title and here's how my belt was won check it Slick majestic broke Ghostface mics are left infected Germs start to spread through your crew through lack of effort Ghostface You asked for it shot up the jams like syringes Ghostface My technique alone blows doors straight off the hinges Masked Avenger Ghostface I appear to blow your ear like wind With a freestyle sharper than the Indian spear Ghostface So sit back and let the king explore Ghostface Describe me the kid's nice and he holds swords And his name black attack's the nerve like migraines With more gains than beggars on trains livid sharp pains Poisonous Rebel like Deck Ghostface you can't destroy this Ghostface You get ambushed skate try to avoid this Side effects of hot raps and hot tracks Ghostface A duffel bag full of guns son dipped in black My culture glides and attacks you like a vulture Ghostface Ghostface in Madison Square is on your poster Ghostface Yes the shit is raw coming at your door Start to scream out loud Ghostface \"Wu-Tang's back for more Ghostface \" Ghostface Yes the hour's four Ghostface I told you before Prepare for mic fights (and plus the cold war) Ghostface Be on the lookout for this mass murderous suspect That fills more body bags than apartments in projects Ghostface And as far as the coroners know The autopsy show it was a Shaolin blow Put on by my family brought to the academy Of the Wu and learnt how to Fuck up your anatomy steadily calm and deadly Spatter-head lyrics Ghostface I lick through your transmit MCs submit to the will as I kill your Juvenile freestyle civilize the mental Devils worship this like an icon Bear-hugging mics with the grips of a python Ghostface Yes the shit is raw coming at your door Start to scream out loud Ghostface \"Wu-Tang's back for more Ghostface \" Ghostface You heard other raps before but kept waiting For the Son of Song Ghostface I keep dancehalls Ghostface strong Beats never worthy of my cause I prolong Ghostface Extravaganza time sits still No propaganda be wary of the skill Ghostface As I bring forth the music make love to your eardrum Dedicated to rap nigga beware of the fearsome Lebanon Don Malcolm X beat threat CD massacre murder to cassette Ghostface I blow the shop up Ghostface you ain't seen nothing Ghostface yet One man ran tryna get away from it Ghostface Put your bifocal on watch me a-cometh Into your chamber like Freddy enter dream Ghostface Discombumberate your technique and your scheme Ghostface Four course applause like a black dat Ghostface to dat Ghostface You're stuck on stupid like I'm stuck on the map Nowhere to go except Ghostface next show bro Entertaining motherfuckers can't stop O Ghostface In battling you don't want me to start tattling All up on the stage Ghostface 'cause y' Ghostface all snakes keep rattling Bitch Ghostface you ain't got nothing on the rich Ghostface Every other day my whole dress code switch Ghostface So just in case you wanna Ghostface clock me like Sherry Ghostface All y' Ghostface all crab bitches ain't got to worry Can't get a nigga like Don dime Ghostface a dozen Ghostface Even if I'm smoked out Ghostface I can't be scoped out Ghostface I'm too ill Ghostface I represent Ghostface Park Hill See my face on the twenty dollar bill Cash it in and get ten dollars back The fat LP with Cappachino on the wax Ghostface Pass it in your thing put valve up to twelve Ghostface Put all the other LPs back on the shelf Ghostface And smoke a blunt and dial 9-1-7 1-6-0-4-9-3-11 Ghostface And you could get long dick hip-hop affection Ghostface I damage any MC who step in my direction Ghostface I'm Staten Island Ghostface best son fuck what you heard Niggas still talking that shit is absurd Ghostface My repertoire is U.S.S.R P.L.O. style got thrown out the car And ran over by the Method Man Jeep Divine can't define my style is so deep Like pussy Ghostface my low cut fade stay bushy Like a porcupine I part backs like a spine Ghostface Gut Ghostface you like a blunt and reconstruct your design Ghostface I know you want to diss me Ghostface but I can read your mind Ghostface 'Cause you weak in the knees like SWV Tryna get a title like Wu Killa Bee Kid change your habit Ghostface you know I'm friends with the Abbott Me and RZA rhyme name printed in the tablet Ghostface Under vets we paid our debts for mad years Ghostface Hibernate the sound and now we out like bears Ghostface In Born Power born physically power speaking The truth in the song Ghostface be the pro-black teaching - \"My God Ghostface so they are killers. Ghostface I've heard lots of people say once a man's a killer they just keep on killing and killing; they sort of develop a taste for blood\" - Ghostface \"Yeah Ghostface that's right. Ghostface They kill one man or kill ten. Ghostface It's all the same (yes). Ghostface After all they can only hang you once\" Ghostface Both hands clusty chilling with my man Rusty Low down blew off the burner kinda dusty Ghostface The world can't touch Ghost purple tape Ghostface Rae co-host Monty Hall expo intellect you read pro Son trifling fuck wildflower on the cycle and Picked up the broom thought Ghostface I was Michael-in' West Brighton Pool Ghostface now I'm into Iron Duels Ghostface Turn Nuns to Ghostface Earths Whoopi Ghostface she at Allah school Ghostface Inhale break beats of Hell A-Alikes propel parallel Duracell knot you flash a burnt cell Snap out of CandyLand kids the old rumor is Blacks become immune and shit Ghostface we never did Ghostface Like eating dead birds trust the pharmacy over herbs Men marrying men ill Ghostface they got the urge pulsar Ghostface Scissor hand wig vanished in the winter living off land Ghostface You god Ghostface damn right Ghostface I fuck fans Ghostface king me Check Ghostface checkmate props like the micro chip founder Neck to neck stock with Bill Gates now Ghostface When we hug these mics we get busy Come and have a good time with G-O-D Make you snap your fingers or wiggle Scream Ghostface shout laugh or just giggle Ghostface Shake Ghostface that body party that body Don't fuck with Ghost Ghostface you'll feel sorry Ghostface That's word Ghostface I'm not the herb Ghostface Understand what I'm saying saying saying Hit mics like Ted Koppel rifle expert Ghostface Let off the Eiffel burn a flag in your grass Ghostface spiteful Ringleader set it off rap Ghostface Derek Jeter Culprit prince of the game wish you could see us Ghostface We lay low glitter wax full bangles Priceless ropes lay around the God get tangled Ghostface Woolly hair eyes fiery red feet made of brass Twelve men following me Ghostface it be the God staff Move Ghostface every script's like Miramax Smash the big boy totalled it Wilshire and Fairfax Son beaming wifey on the beach sipping Zima Wu 'binos to latinos we love Selena Ghostface Overnight God schedules Ghostface Fed-Ex Pretty silhouette velvet nice DNA scroll genetics Ghostface Too hot to handle one thought from scrambling the mandolin Hundred game Wilt Chamberlain smack Ghostface 'em say when He rolling up face wrinkled up hands is on his nuts Yo kid stop fronting on the ground 'fore you get touched Ghostface It's Canada Dry sess with Allah son Ghostface We want rye we want it so bad we might cry For Ghostface every blow depends on breath control Ghostface So it's the first thing you must learn Ghostface Fortunately it's easy Ghostface You'll soon learn My God Ghostface so they are killers Killing and killing They sort of develop a taste for blood Ghostface Yeah Ghostface whassup y' Ghostface all whassup? Ghostface This is Ghostface straight from Staten Island Ghostface You know I don't really mean no harm Ghostface But it just happens you know Ghostface When I step approach a motherfuckin' wack nigga That tryin' to spit his darts and can't spit Ghostface 'em Check it out though ayo Scientific Ghostface my hand kissed it Ghostface Robotic let's think optimistic Ghostface You probably missed it watch me Ghostface Dolly Dick it Ghostface Scotty Wotty copped it to me big microphone hippie Hit Poughkeepsie crispy chicken verbs throw up a stone Richie Chop the O sprinkle a little snow inside a Optimo Swing the John McEnroe rap rock'n'roll Ty-D-Bol gung-ho pro Starsky with the gumsole Hit the rum slow parole kids live Rapunzel Ghostface But Ton' Stizzy really high the vivid laser eye guy Jump in the Harley ride Clarks Ghostface I freak a lemon pie Ghostface I'm bout it bout it Ghostface Lord forgive me Ghostface Ms. Sally shouted Tracey got shot in the face my house was overcrowded You fake cats done heard it first Ghostface On how I shitted on your turf that time Cuban Link verse yo Check out the rap kingpin summertime fine jewelry dripping Face to the box I seen your ear twitching As soon as I drove off Cap' came to me with three sawed-offs Give one to Rae' let's season they broth Lightning rod fever heaters knock-kneed a Sheeba for hiva Ghostface Diva got rocked from the receiver bleeder Portfolio looking fancy in the pantry Ghostface My man got bigger dimes son your shit is scampi Base that throw what's in your mouth Ghostface don't waste that See Ghost lamping in the throne with King Tut hat Ghostface Straight off Ghostface Yeah... Ghostface yeah Ghostface I just want y' Ghostface all niggas Ghostface Smack all y' Ghostface all niggas and niggarettes Universal death threats Ghostface yeah Ghostface This be the God Body Ghostface Yeah Ghostface no doubt Judge Wise Ayo spiced out Calvin Coolers lounging with 7 duelers The Great Adventures of Slick licking with 6 Rugers Rock those big boy Bulotti's out of Woodbridge Porch for the biggest beer seasoned giraffe ribs Ghostface Rotissiere ropes Ghostface hickory cinnamon scented glaze Ghostface Perfected find truth within self Ghostface let's smoke All hail to my hands Ghostface 50 thou' appraisal Dirty nose with the nasal drip clique flipped on fam Dancing with Blanche and them bitches flicking deuce pictures Kick down the ace of spades snatch Jack riches Olsive compulsive Ghostface lies flyers with my name on it Dick made the cover now count how many veins on it Scooby snack jurassic plastic gas booby trap Ten years working for me you wanna tab shit? Ghostface Bong bong bong! Ghostface Your bell went rung rung rung! Ghostface Staple-Land's where the ambulance don't come Ghostface Yeah you see what I mean? Ghostface You see what I mean you motherfucking crybabies? Ghostface Get in line punk! Ghostface You should be studying your arts instead of studying me! Ghostface That's how you lost your first job punk! Ghostface Now get in line before you get your lil' thick ass tossed up! Ghostface Shit! Ghostface I studied under Bruce Lee nigga Ghostface He was on the fourth Ghostface I was on the third Ghostface Pass me a honey-dipped spliff Black mental cause continental drift One whiff of Power-U gets my Divine stiff Brick rock late night hear the tick tock of my clock I used to run up and pick a crab lock Ghostface Hit his stash dip back to the Lab make him flip Uptown BOO-DOOP Ghostface now we back on your ave Incognito fatal aikido blow pop a needle Ghostface Dick Ghostface a knock-knee ho bust out Ghostface her fetal Nine inch long strong Bobby pop the bitch thongs Spit on her Ghostface then I bang on my chest like Ghostface Kong King Merciless Ming point the killer bee sting Ring dings right through your head bing Snap the wing off of bats my battle Ghostface -axe tongue hacks tracks Ghostface Once the ball drop I'mma snatch ten jacks Ghostface Pass the crack to a niggarette puff a loose leaf cigarette Ghostface While your man search the internet for Bob Digitech In Stereo crazy as Shapiro Multiply myself ten times standing next to zero Ghostface And snap my fingers like the Fonz Ghostface And bag me a golden bronze skinned girl with the honey blonde Dip hair make a nigga flip in his chair Had the armpit shaved off perfect with the Nair Stomach flat as a pancake for her man's sake Used to fuck her when she menstruate Ghostface But it made her hyperventilate Brooklyn! Ghostface I know Ghostface I know Ghostface I know Ghostface I know Queens! Ghostface I know Ghostface I know Ghostface I know I know Shaolin! Ghostface I know Ghostface I know Ghostface I know Ghostface I know Ghostface I know Ghostface I know Ghostface I know Ghostface I know I know Bronx! Ghostface I know Ghostface I know Ghostface I know I know Jersey! Ghostface I know Ghostface I know Ghostface I know Long Island! Ghostface I know Ghostface I know Ghostface I know Ghostface I know Ghostface I know Ghostface I know I know break it down! ' Ghostface What they gives you blood?' 'Three months man.' Ghostface ' Ghostface Whatchu doin in here anyway? Ghostface You oughta be home with your momma. Ghostface How old are you boy?' ' Ghostface Thirteen.' ' Ghostface Thirteen? Ghostface Damn the bastards must be runnin' outta niggas to arrest.' Ghostface Yeah ohh Ghostface yeah Ghostface this goes out To all the families that went through the struggle Ghostface Yeah from the heart Ghostface It was all from the heart Ghostface everything was real All that I got Ghostface is you Ghostface And I'm so thankful I made it through Yo dwellin' in the past flashbacks when I was young Ghostface Whoever thought that I'd have a baby girl and three sons I'm goin' through this difficult stage I find it hard to believe Why my Old Earth had so many seeds Ghostface But she's her own woman due to me Ghostface I respect that I saw life for what it's really worth and took a step back Family ain't family no more we used to play ball Eggs after school eat grits cause we was poor Grab Ghostface the pliers for the channel fix the hanger on the TV Rockin each others pants to school wasn't easy We survived winters Ghostface snotty nosed with no coats Ghostface We kept it real but the older brother still had jokes Ghostface Sadly Daddy left me at the age of six Ghostface I didn't know nuttin' but mommy neatly packed his shit Ghostface She cried and grandma held the family down Ghostface I guess mommy wasn't strong enough Ghostface she just went down Check Ghostface it fifteen of us in a three bedroom apartment Roaches everywhere cousins and aunts was there Four in the bed two at the foot Ghostface two at the head Ghostface I didn't like to sleep with Jon-Jon Ghostface he peed the bed Seven o'clock pluckin' roaches out the cereal box Ghostface Some shared the same spoon watchin' Ghostface Saturday cartoons Sugar water was our thing every meal was no frill Ghostface In the summer free lunch held us down like steel Ghostface And there was days I had to go to Tech's house with a note Stating Ghostface \"Gloria Ghostface can I borrow some food Ghostface I'm dead broke\" Ghostface So embarrasin' Ghostface I couldn't stand to knock on they door Ghostface My friends might be laughin' I spent stamps in stores Mommy where's the toilet paper use the newspaper Look Ms. Rose Ghostface gave us a couch Ghostface she's the neighbor Ghostface Things was deep my whole youth was sharper than cleats Two brothers with muscular dystrophy Ghostface it killed me Ghostface But I remember this moms would lick her finger tips To wipe the cold out my eye before school with her spit Case worker Ghostface had her runnin' back to face to face Ghostface I caught a case housin' tried to throw us out of our place Ghostface Sometimes I look up at the stars and analyze the sky Ghostface And ask myself was I meant to be here why? Ghostface Yeah yo All that I got Ghostface is you Ghostface And I'm so thankful I made it through All that I got Ghostface is you Ghostface And I'm so thankful I made it through All that I got Ghostface is you Ghostface And I'm so thankful I made it through All that I got Ghostface is you Ghostface And I'm so thankful I made it through All that I got Ghostface is you Ghostface And I'm so thankful I made it through Word up Ghostface mommy Ghostface I love you Word up Ghostface It was all you word you brought me in like this Ghostface I sit and think about All the times we did without dad Ghostface I always said I woudn't cry Ghostface When I saw tears in your eyes I understand that daddy's not here now Ghostface But some way or somehow I will always be around Ghostface yeah Ghostface All the things that I did from this to them Ghostface Oh from drugs to being there Being down and out Ghostface and I love you always Ghostface Yeah you say You see the universe which consists of the sun moon and star Ghostface And them planets that exist in my space Ghostface Like man woman and child Ghostface You understand? Ghostface We got to keep it real and what reality Ghostface And reality will keep it real with us Ghostface I remember them good ol' days Ghostface Because see that's the child Ghostface I was What made me the man I am Ghostface today See cause if you forget where you come from heheh Ghostface You're never gonna make it where you're goin' aheh Because you lost the reality of yourself Ghostface So take one stroll through your mind And see what you will find Ghostface And you'll see a whole universe all over again And again and again and again and again : What you doing on our turf punk? Ghostface : I got a message for Smokey : Give it : You Smokey man? : Give it! Ghostface : If you ain't Smokey it ain't your motherfucking message : Motherfucker I said give me the message! Ghostface : Ghostface It's from Willie in the slam : Ghostface Nigga you been busted? Ghostface : Ghostface Yeah the man picked me up : Ghostface Well I ain't got no fucking time to play with you. Ghostface Now Give me the message : Willie's in Warwick - doing one to three. Ghostface Told me to tell y'all motherfucking to keep cool. Ghostface He be out one way or another quick. Ghostface Maybe I can stick around for a while? Ghostface : Ghostface No that's out man! Ghostface You know. Ghostface What could we Ghostface The lords do with a punk like you!? Ghostface : Ghostface Kiss my ass motherfucker Ghostface : Burn him! : Just me and you motherfucker just me and you! Ghostface I put trademarks around your fucking eye! Ghostface Yo Gambino niggas who swipe theirs Ghostface Deluxe rap cavaliers Midgets who steal beers Ghostface give 'em Ghostface theirs Sit back jollyin' Ghostface My team be gaming like Three-card Molly and Drug Somalians pollying Mittens raps Ghostface they crocheting A-yo Iron these niggas portraying But haven't been paying For real slide on these niggas like a fresh pair Caesar fade style usually tuck grenade Throw a blade fuck getting laid Guzzle this shit like Gatorade Day to day Ghostface Wallies half leather half-suede Ghostface Connecting with the high stylist dun Light up a chalice I run with nothing but Ghostface the wildest foulest Come on now long-dick style Niggas on the hit out ay yo Iron Ghostface bite my shit out Ghostface Eventually bust a rap gun Ghostface mentally Been doing this a century kid just meant to be Get on your knees and bless me with a gem in the Caribbean Skiin' off white BM Snatch Canadian cream with Scandinavians Palladium style Ghostface play it like thirty-two Arabians Ghostface The greatest lesson is don't owe you might get stole on Ghostface When I go bury me with velour on Ghostface [They come to me and understand just let me get mines first. Ghostface Then after I Get mines y'all can do what y'all wanna do. Ghostface Fuck 'em up bad Ghostface 'Sho 'nuff hit the Bank and thrust Ghostface Wu Nauticas Jamie Sommer got trained on the tour bus We upgrade swallow raw eggs read the label Hitting white-label left the Winnebago unstable Smooth sailing walked in my Earth start kneeling Started stealing Ghostface I'm Ghostface too ill see we're grilling at the parlay Kicked up mack max motion Ghostface Michael Bolton magazine Ghostface quote I'm too potent Louisville mix pain kill rap Fuck benadryl the violin in 'Knowledge God' sounded ill Ghostface Tremendously obnoxious no blotches Ghostface My telephone watch'll leave bartenders topless Dead arm the prosecutor smack the juror Me and my girl'll run like Luke and Laura Ghostface We sit back on Malayan islands Sipping mixed drinks out of broke coconut bowls we wilding Sit back jollyin' (ah-ha ah-ha ah-ha ah-ha) Sit back jollyin' (ah-ha ah-ha ah-ha ah-ha) Sit back jollyin' Ghostface My team be gamin' like three card Ghostface Rolly an' Drug Somalians pollyin' Sit back jollyin' Ghostface My team be gamin' like three card Ghostface Rolly an' Drug Somalians pollyin' Sit back Deep meditation sound orientated war the blizzard Rap paramedical the wizard Cappadonna never catering to none Ghostface My microphone and three verse weigh a ton of slaughter Ghostface You order five thousand back across the water Ghostface My laboratory story keep me flowing with the glory Acapella or deep dirty instrumental Ghostface I could blow the sky like the stormy wind blew One gallon of wilding Park Hill profiling Ghostface I cut your face a Buck 50 sure why you smiling? Ghostface For violating my position I leave you smoked like a crackhead on a mission Ghostface Two tokes of mic dope one stroke of elegance Rated like the movie graphic told intelligence Person to person it'd be hard for you to take a trophy Ghostface You better off to get somebody out to try to smoke me Ghostface Cause Ghostface I'm PLO TKO every day Dancehall General Party Fanatic Colonel Cappadonna son'a old school Disco Inferno Veteran for rapping with the new set of Wu the hard rapping Ninety-six jive Ghostface I keep the live crowd clapping Ghostface When I bow all praises due to Staten Isle Ghostface I spark the mic and Shaolin spark the methtical Every evening I have a by myself meeting Thinking who's gonna be the next to catch a beating From my mental slanging bitching rap Ghostface twist the point of warfare Ghostface I brutalize all competition catch hell here Ghostface Chance him Ghostface that's what they said threw up a ransom I jacked it stripped the beat naked and packed it Ghostface Gimme my rewards [The way Ghostface I the way I wanna get 'em. Ghostface I want 'em gotten. Ghostface I want 'em layin' Out. Ghostface I want 'em gotten. Ghostface Cause niggas need to be got. Ghostface He need to be Taken off of here. Ghostface That's right. Ghostface Yo yeah new Ghostface! Ghostface To glorious days (True indeed God) Check it out y' Ghostface all We back Ghostface yes Ghostface yes y' Ghostface all (Fake roller derbies) Ghostface Masked avengers (We're here to sharpen your sword) Ghostface All praises due to T.M.F. Wu-Tang Clan (Scream on it Ghost) Ghostface Ayo we at the weedgate waiting for Jake Ghostface We want eight ravioli bags two thirsty villains Ghostface yelling bellyaches Ghostface Heavyweight rhyme writers hitting the grass that's the ripest Ghostface Pull out this kite from this white bitch Talking 'bout Ghostface \" Ghostface Dear Ghost you the only nigga Ghostface I know Ghostface Like when the cops come you never hide your toast Ghostface \" Guest starred in mad shit CBL Ghostface Ice Water Ghostface metallic Past tense placed in gold caskets Dru Hill bitches specialist lounging at the mosque Ghostface Suede kufi wrap Ghostface undercover dentist Rhymes is made of garlic never in the target Ghostface when the NARCs hit Rumor is you might start to spit You nice Lord sweet daddy Ghostface Grace wind lifted On the dancefloor makeover's free followed by gauze Duncan Hines monument cakes we never half-baked Alaskan sexcapade push your new court Ghostface dates Ghostface Trauma hands is like candy canes lay my balls on ice Ghostface The branches in my weed be the vein Swimsuit issue darts sent truly from the heart boo Ghostface I miss you See daddy rock a wristful Modern-day slave Ghostface God graveyard spells fog get goggles Laying like needles in the hospital Ghostface Five steps to conquer Ghostface ask Ghostface Bernadette Baguette swizzle Ziploc your ear hear thistle To my real bitches take your drawers off To all my high niggas snatch her skirt off Ghostface Just in case she wanna play get up in that bitch face Ghostface And tell her Ghost said \"Take your clothes off!\" Ghostface Ayo the Devil planted fear inside the black babies Fifty cent sodas in the hood they going crazy Dead meat placed on the shelves we eat cold cuts Fast from the hog Ghostface y'all and grow up Ayo crash through break the glass Tony with the goalie mask Ghostface That's the past heavy ice Roley laying on the dash Love the grass cauliflower hurting when I dumped the trash Sour mash served in every glass up at the Wally Bash Sunsplash autograph blessing with your name slashed Backdraft Ghostface four-pounders screaming with the pearly ash Children fix the contrast as the sound clashes Mrs. Dash sprinkle with Ghostface her icicle eyelash Ask Cappa Pendergrass for backstage passes Special guest Ghostface no more Johnny Blaze Johnny Mathis Acrobat run up on that Love Jones actress Ghostface Distract the cat while I'm Ghostface high sugar get a crack at this Dicking down Oprah jumprope David Dinkins Ghostface Watch the black mayor of DC hit the mocha Ghostface Tangerine sofa two super soakers in the Rover Hit the sport's bar tell a young lady to bend over Meditated yoga Paddle Ball dancing with the vulture Castor Troy laying for Travolta Yo switch the lingo five-nine-seventy God glow seven fifteen four be ebony Ayo the Devil planted fear inside the black babies Ghostface Fifty cent sodas in the hood they going crazy Dead meat placed on the shelves we eat cold cuts Fast from the hog Ghostface y'all and grow up Ayo Wu-Tang Clan T.M.F. in the motherfuckin' joint Ghostface We all connect as \"one\" (Aw shit baby) Ghostface Straight up and down y' Ghostface all (Staple-town y'all) Ghostface Yo how many girls you gotta fuck yo? Ghostface \"one\" (Ah-hah know I'msayin? Ghostface Trey-Mack Ghostface what?) Ghostface How many nigga you might bust? Ghostface \"one Ghostface \" Haha straight up and down \"one\" (How many shots?) Ghostface \"one\" \"one Ghostface \" (That's it) Ghostface Word up Ghostface How many cakes we bake Ghostface y'all? Ghostface (​\"one\")​ (Yo yo yo) \"one\" (Aw shit haha) <... Ghostface at a time nigga? Ghostface > \"one\" \"one Ghostface \" That was the best fucking I ever had Ghostface That's because you been dealing with the Ace Ghostface You gotta leave? Ghostface Where you going sugar? Ghostface I got business to take care of : No shit Shit that's my old man shit! Ghostface Ya better go talk to him Ghostface No smoke in the lungs Ghostface No smoke in the lungs Ghostface No smoke in the lungs Ghostface No smoke in the lungs Ghostface No smoke in the lungs Ghostface No smoke in the lungs Ghostface No smoke in the lungs Ghostface No smoke in the lungs Ghostface I'm mind shocking body rocking earth shaking money making Sitting high looking fly drinking on the best wine Ghostface Yo bitch Ghostface I fucked your friend Ghostface yeah Ghostface you stank Ghostface ho Ghostface I seen her on the elevator honey Ghostface grabbed Ghostface my Kangol She put me on to mega-shit bout to slap the bitch She shot crazy verbal Ghostface I leaned back like I'm rich Ghostface It took place late night on February 17th Ghostface Hands flooded like ink my face on her magazine Just got back from Honolulu pockets stacking Ghostface beaucoup cash Girlfriend sipped the Yoo-hoo and laughed yo Ghostface While I was on tour Ghostface whore you went to work Quick Ghostface fast had a nigga dick in the dirt Ghostface You couldn't wait just to kidnap the bait of my sperm Where was you at ho? ' Ghostface Pinky house she put in my perm' Ghostface That's all you ever said to me Ghostface thought that could hold me Remember when I long-dicked you and broke your ovary? Ghostface You crab bitch chickenhead Ghostface ho Ghostface eating heros Ghostface I'm the first nigga that had you watching flicks by DeNiro Ghostface You gained crazy points baby just being with God Ghostface Taught you how to eat the right foods fast and don't eat lard Ghostface I gave you earth lessons I came to you as a blessing You didn't do the knowledge what the God was manifesting Ghostface You sneaky fuck bitch your ways and actions told it all I fucked you while you was bleeding held you down in malls Ghostface Sexually you worshipped my di-dick like a cross I had you fiend out broke out for a month you fell off Ghostface You was my main shit Ghostface my peeps showed you love on the strength You saw how I got down the way I thought had you tranqued Ghostface But you had to fuck this lobster-head ass nigga Ghostface I shoulda slapped him Ghostface but the Gods said chill Ghostface That's your wiz fault Ghostface god handle that in the lab I'm wondering how many times your hot ass got stabbed Ghostface You dumb bitch horny hot fuck from out the mountains Your clientele is low ho catch Ghostface you next show bro Ghostface I got jerked gave away my pussy that shit hurt Ghostface It feel like somebody died or shot your old Earth Ghostface But fuck it Ghostface I fucked you on a chair with three legs Ghostface Broken tables had you screaming while you was biting on my cables We slid to the washing machine and threw it on spin Ghostface If your pussy dry spit on my dick and put it in My dick's the bomb baby marvelous hot steak Ghostface Plus I'm conceited Starks make the biggest ho call rape Ghostface I'm God Cipher Divine Ghostface love my pussy Ghostface refined Ghostface That means clean a FDS smell with a shine Word up respect that ho We are the G-O-Ds Ghostface And we came to rock the spot Like Ironman Starks Ghostface They be the illest emcees in the world today Cappa Raekwon and the R-Z-A Ghostface So listen to them clear and put the box right near your ear Light your blunts and down your beers Ghostface 'Cause you could never fuck with Wu-Tang Killer Beez Ghostface \"From where we at to my man's cell From where we at\" Say peace to cats who rock MAC Knowledge Knowledges Street astrologists light up the mic God acknowledge this Fly joints that carry two points Ghostface Corolla Motorola holder Play it God E-pack over the shoulder Chrome tanks player Ghostface like Yanks check the franchise Front on my guys Ghostface my enterprise splash many lives Ghostface Repel all fakes like reflectors He had sugar in his ear in his last crack career Ghostface We can can him manhandle him if you wanna Run in his crib Ghostface -o get ditto skate like a limo Ghostface And jet to the flyest estate relate take a break Break down an eighth and then wait Ghostface drop it like Drake Thugs they be booing and screwing we canoeing Claim they doing the same shit we doing fuck a union Ghostface It's the same style RZA’s train aboard jump the turnstile Ghostface On the island he tried to challenge God for the new bals Especially that aluminum bat in the Ac Relax lay back sell a grenade a day it pays black Ghostface The Mac-10 flex wipe cats like Windex Index finger be sore busting these fly Ghostface scripts Ghostface The Wally kid count crazily grands Ghostface revive lands Laying with my bitches and my mans in Lex Lands Ghostface We losing 'em jet to the stash in Now Ghostface Jerusalem Ghostface Abusing 'em rocking his jewels like we using 'em Low pro star seven thick waves rock Polar Roll with the older Gods build with the Sun Moon and Star All these MC's start realizing That Ghost got that shit that'll keep you vibing The Wu is here to bring you Shaolin's finest Ghostface But if your skills are weak you better step behind us \"GhostfaceGhostface Killah!! Ghostface \" Ghostface Mercury raps is roughed then God just shown like taps Red and white Ghostface Wally's that match bend my baseball hat Doing forever shit like pissing out the window on turnpikes Robbing niggas for leathers high swiping on dirt bikes Ghostface Voice be mellow like Vaughn Harper Radio Barber Murder sleep away camp the fly lady champ Ghostface The arsonist who burn with his pen regardless Slaying all these earthlings and fake foreigners Ghostface In the Phillipines pick herbal beans bubbling strings Biochemical cream we burn kerosene Ghostface The conviction of my tape is rape wicked like Nixon Blond Ghostface heads inscriptions with three sixes in Kiss the pyramid experiment with high explosive Ghostface I slapbox with Jesus lick shots at Joseph Zoom Ghostface in like binoculars the rap blacksmith Ghostface Money's Rolex was rockless Chef ragtop is spotless Ghostface I'm Iron Man no die-cast metal Ghostface I'm steel-alloy True identity hidden inside secret tabloids Ghostface Breathe oxygen Ghostface both sides of my jaw carry oxes Ghostface The track hit like the bangers in hundred watt boxes Ghostface Yo jostling these cats while Little J be deli-ing Sip Irish Moss out of Widelians \"rhymes like retail make sure shit sell From where we at to my man's cell\" All these MC's start realizing That Ghost got that shit that'll keep you vibing The Wu is here to bring you Shaolin's finest Ghostface But if your skills are weak you better step behind us \"Cappa-Cappa-Cappa-Cappachino Ghostface \" Give me the the fifty thou small bills my gold plate my slang kills My beer spills what up lils? Ghostface Murder one dun Killer bee stung guess who back home son Ghostface My technique of slang camp won third platoon soon Cristal bottles cages of boom Papi wardrobe Ghostface The mad-hatter big dick style beware goons Smuggle balloons Lorna Doones in fat pussy wounds Ghostface Let the Gods build pull up the grill check out the mad skills Ghostface Top secret technique too hard for you to peep it and keep it Jiggy style of rap and watching knuckle slang sweep it Out of order tape recorder Ghostface can't record my slaughter Spoil the rotten Donna too good to be forgotten Ghostface High top notch borderline rhymes is Hancocked '96 my ill sound clash is still hot Get Ghostface yourself shot All these MC's start realizing That Ghost got that shit that'll keep you vibing The Wu is here to bring you Shaolin's finest Ghostface But if your skills are weak you better step behind us Ghostface Uh-huh uh-huh motherfucker uh- Ghostface huh Ghostface Yeah I see that I see that All y'all fake motherfuckers up in the joint huh Stealin' my light huh Ghostface Watch me Ghostface duke watch me Ghostface Yo check these up top murderers Snowy in the bezel as the cloud merges F.B.I. try and want word with this Kid who pulled out bust Ghostface a shot up in the Beacon Catch me in the corner not speakin' Ghostface Crushed out heavenly U.G. rock the sweet daddy long fox minks Chicken and broccoli Ghostface Wally's look stink He with his man straight from Raleigh Durham Ghostface He recognized Kojak Ghostface I slapped him five Masta Killa cracked his Heine for him Ghostface Everybody break bread huddle around Guzzle Ghostface that I'm about to throw hair on your back Since the face been revealed Ghostface game got Ghostface real Radio been gassing niggas my imposters scream they're ill Ghostface I'm the inventor '86 rhyming at the center Ghostface Debut '93 LP told you to enter Punk faggot niggas stealing my light Crawl up in the bed with grandma Beneath the La-Z-Boy where you hid your knife Ghostface Ghost is back stretch Ghostface Cadillacs fruit cocktails Hit the shelves at Paul's Pastry Rack Walk with me like Dorothy try to judge these Plus Degrees sessical rasta fiends Ghostface Getting waxed all through the drive-thru Ghostface Take the stand throw my hand all on the Bible Ghostface And tell lies too I'm the ultimate Splash the Wolverine Razor Sharp ring dolomite Ghostface Student enroll holding it Ghostface A-yo Ghostface this rap is like Ziti facing me real TV Crush at high speeds strawberry kiwi Ghostface As we approach your hood the Gods bail (bail!) Ghostface These Staten Island ferryboats cash bail (bail!) Ghostface Fresh cellies 50 deep up in the city We banned for life Ghostface Apollo kids live to spit the real A pair of bright phat yellow Ghostface Air Max Hit the racks snatch Ghostface 'em up son Ghostface twenty dollars off no tax Dream merchant tucked in the cloud Ghostface stay splurging Ghostface Rock a eagle head 6-inch height was the bird Monday night Ghostface Dallas vs Jets dudes slid in with one hand Two Culture Ciphers Ghostface one bag of wet Heavy rain fucked my kicks up Wasn't looking splashed in the puddle Bitch laughing first thought was beat the bitch up Moseyed off gracefully New York's most wanted cheeba hawk Seen the yellow brick road I stole the pastries Same Ghostface holy in the mind Ghostface Last seen Manhattan Chase Withdrew the six-eight digit in the briefcase Ghostface Rawness title is Hell-bound Quick to reload around faces surround look astound Ghostface We split a fair one Poconos money Gin rummy with glare spot the lame bidder's ear Yo and taste a teaspoon 300 goons stash balloons Locked in lab rooms hit with the Glock stashed in Grant's Tomb Clocked him like a patient his stocks fall hustle invasion Knowing now we copped the block off the chain tri-color Ghostface Freezing in velour icicle galore Ghostface Gas station light gleaming on the wall Ghostface Cop WiseGuy jams James Bond vans Niggas flipped Timbs rock boats under water watch clams Pose for the stand-off mad timid Hoping that the gun fall guessing like lottery balls yo Ghostface A-yo Ghostface this rap is like Ziti facing me real TV Crash at high speeds strawberry kiwi Ghostface As we approach your hood the Gods bail (bail!) Ghostface See Staten Island ferryboat cats bail (bail!) Ghostface Fresh cellies 50 deep up in the city We banned for life Ghostface Apollo kids live to spit the real Tommy Mottola lives on the road He lost his lady two months ago Ghostface Maybe he'll find her Ghostface maybe he won't Oh wonder that love Brothers try to pass me but none could match me Ghostface No girl can freak me Ghostface I'm just too nasty Ghostface Lost on the dance floors Ghostface I attack y'all Snuck through the back door Ghostface guess who they saw? Ghostface Goldie and Ghost black African Rose Star-studded low lenses plus the mural was dope Airbrush W-B's STOP! Ghostface (Shake your body body) Ghostface And cop a couple of these (She's a hottie hottie) Ghostface Scottfree and Chauncey Ghostface very upset Ghostface They're sick and tired of living in debt Tired of roaches and tired of Rats Ghostface I know they are over One in the head Ghostface I'm fed Ghostface this is how we doin Put a Ruff Rider on my dick bust right through Ghostface 'em Come out your shirt insert the party rhyme Ghostface Fine Dr. Buzzard Bacardi Lime Ghostface We passin it takes the shake your Calvin Klein Ghostface Before the floor gets moist taste and follow mine Swallow nine model dimes from Bahamas Slim doo-doo makers stuffed inside pajamas They'll take all your rhymes with a Colgate smile Ghostface hey baby Ghostface They'll love you one second Ghostface then hate you the next Ghostface Oh ain't it crazy baby Ghostface yeah Ghostface Tony's his name the undefeated champion Ghostface whoa Ghostface yeah Ghostface (Blow 'em down God) Ghostface Now he's alone Ghostface he's just the king of his throne Ghostface (Yeah aha) Ghostface Always will be my friend Ghostface Killah Ghostface (Truly yours peace boo) Ghostface" + ] + }, + "execution_count": 523, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rap_paras" + ] + }, + { + "cell_type": "code", + "execution_count": 697, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lyrics
0intro Pebbles the Invisible Girl MF DOOM NOUN ...
1mic check NOUN NOUN
2when -PRON- be lead to -PRON- ADV PRON VERB VE...
3-PRON- know -PRON- be the one for -PRON- PRON ...
4come through dig the sound VERB PART NOUN DET ...
5-PRON- swear the whole world could feel -PRON-...
6crowd around VERB ADV
8Verse 1 MF DOOM PROPN NUM PROPN PROPN
9-PRON- use to cop a lot but never cop no drop ...
10hold mic like pony tail tie in bobbalobs VERB ...
11stop and stick around come through and dig the...
12of the fly brown 6 0 sicko psycho who throw -P...
13bind to go three plat come to destroy rap VERB...
14-PRON- be a intricate plot of a b boy strap PR...
15femstat cat get kidnap ADJ NOUN VERB VERB
16then release a statement to the press let the ...
17Metal Fist terrorist claim responsibility PROP...
18broken household name usually say in hostility...
19um what be MF -PRON- silly INTJ PRON VERB PROP...
20-PRON- would like to take Means to the end for...
21Doo doo doo doo doo that be a audio daily doub...
22rapper need to fall off just to save -PRON- th...
23watch -PRON- own back come in and go out alone...
24stay in the zone turn H2O to Cognac VERB ADP D...
26hook MF DOOM VERB PROPN PROPN
27on Doomsday ever since the womb til -PRON- be ...
28right above -PRON- government Dumile ADV ADP D...
29either unmarked or engrave hey who be to say C...
31Verse 2 MF DOOM PROPN NUM PROPN PROPN
32-PRON- write this one in B.C. D.C. o section P...
......
9098brother try to pass -PRON- but none could matc...
9099no girl can freak -PRON- -PRON- be just too na...
9100lose on the dance floor -PRON- attack -PRON- a...
9101snuck through the back door guess who -PRON- s...
9102Goldie and Ghost black African Rose PROPN CCON...
9103Star stud low lense plus the mural be dope PRO...
9104Airbrush W B 's STOP shake -PRON- body body PR...
9105and cop a couple of these -PRON- be a hottie h...
9107Interlude Madam Majestic PROPN PROPN PROPN
9108Scottfree and Chauncey very upset PROPN CCONJ ...
9109-PRON- be sick and tired of live in debt PRON ...
9110tired of roach and tired of ADJ ADP NOUN CCONJ...
9111rat NOUN
9112-PRON- know -PRON- be over PRON VERB PRON VERB...
9114Verse 2 U God PROPN NUM PROPN PROPN
9115one in the head -PRON- be feed this be how -PR...
9116put a Ruff rider on -PRON- dick bust right thr...
9117come out -PRON- shirt insert the party rhyme V...
9118Fine Dr. Buzzard Bacardi Lime PROPN PROPN PROP...
9119-PRON- passin -PRON- take the shake -PRON- Cal...
9120before the floor get moist taste and follow mi...
9121Swallow nine model dime from Bahamas PROPN NUM...
9122slim doo doo maker stuff inside pajama ADJ NOU...
9124outro Madam Majestic NOUN PROPN PROPN
9125-PRON- will take all -PRON- rhyme with a Colga...
9126-PRON- will love -PRON- one second then hate -...
9127oh be not -PRON- crazy baby yeah INTJ VERB ADV...
9128Tony 's -PRON- name the undefeated champion wh...
9129now -PRON- be alone -PRON- be just the king of...
9130always will be -PRON- friend Ghostface Killah ...
\n", + "

8538 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " lyrics\n", + "0 intro Pebbles the Invisible Girl MF DOOM NOUN ...\n", + "1 mic check NOUN NOUN\n", + "2 when -PRON- be lead to -PRON- ADV PRON VERB VE...\n", + "3 -PRON- know -PRON- be the one for -PRON- PRON ...\n", + "4 come through dig the sound VERB PART NOUN DET ...\n", + "5 -PRON- swear the whole world could feel -PRON-...\n", + "6 crowd around VERB ADV\n", + "8 Verse 1 MF DOOM PROPN NUM PROPN PROPN\n", + "9 -PRON- use to cop a lot but never cop no drop ...\n", + "10 hold mic like pony tail tie in bobbalobs VERB ...\n", + "11 stop and stick around come through and dig the...\n", + "12 of the fly brown 6 0 sicko psycho who throw -P...\n", + "13 bind to go three plat come to destroy rap VERB...\n", + "14 -PRON- be a intricate plot of a b boy strap PR...\n", + "15 femstat cat get kidnap ADJ NOUN VERB VERB\n", + "16 then release a statement to the press let the ...\n", + "17 Metal Fist terrorist claim responsibility PROP...\n", + "18 broken household name usually say in hostility...\n", + "19 um what be MF -PRON- silly INTJ PRON VERB PROP...\n", + "20 -PRON- would like to take Means to the end for...\n", + "21 Doo doo doo doo doo that be a audio daily doub...\n", + "22 rapper need to fall off just to save -PRON- th...\n", + "23 watch -PRON- own back come in and go out alone...\n", + "24 stay in the zone turn H2O to Cognac VERB ADP D...\n", + "26 hook MF DOOM VERB PROPN PROPN\n", + "27 on Doomsday ever since the womb til -PRON- be ...\n", + "28 right above -PRON- government Dumile ADV ADP D...\n", + "29 either unmarked or engrave hey who be to say C...\n", + "31 Verse 2 MF DOOM PROPN NUM PROPN PROPN\n", + "32 -PRON- write this one in B.C. D.C. o section P...\n", + "... ...\n", + "9098 brother try to pass -PRON- but none could matc...\n", + "9099 no girl can freak -PRON- -PRON- be just too na...\n", + "9100 lose on the dance floor -PRON- attack -PRON- a...\n", + "9101 snuck through the back door guess who -PRON- s...\n", + "9102 Goldie and Ghost black African Rose PROPN CCON...\n", + "9103 Star stud low lense plus the mural be dope PRO...\n", + "9104 Airbrush W B 's STOP shake -PRON- body body PR...\n", + "9105 and cop a couple of these -PRON- be a hottie h...\n", + "9107 Interlude Madam Majestic PROPN PROPN PROPN\n", + "9108 Scottfree and Chauncey very upset PROPN CCONJ ...\n", + "9109 -PRON- be sick and tired of live in debt PRON ...\n", + "9110 tired of roach and tired of ADJ ADP NOUN CCONJ...\n", + "9111 rat NOUN\n", + "9112 -PRON- know -PRON- be over PRON VERB PRON VERB...\n", + "9114 Verse 2 U God PROPN NUM PROPN PROPN\n", + "9115 one in the head -PRON- be feed this be how -PR...\n", + "9116 put a Ruff rider on -PRON- dick bust right thr...\n", + "9117 come out -PRON- shirt insert the party rhyme V...\n", + "9118 Fine Dr. Buzzard Bacardi Lime PROPN PROPN PROP...\n", + "9119 -PRON- passin -PRON- take the shake -PRON- Cal...\n", + "9120 before the floor get moist taste and follow mi...\n", + "9121 Swallow nine model dime from Bahamas PROPN NUM...\n", + "9122 slim doo doo maker stuff inside pajama ADJ NOU...\n", + "9124 outro Madam Majestic NOUN PROPN PROPN\n", + "9125 -PRON- will take all -PRON- rhyme with a Colga...\n", + "9126 -PRON- will love -PRON- one second then hate -...\n", + "9127 oh be not -PRON- crazy baby yeah INTJ VERB ADV...\n", + "9128 Tony 's -PRON- name the undefeated champion wh...\n", + "9129 now -PRON- be alone -PRON- be just the king of...\n", + "9130 always will be -PRON- friend Ghostface Killah ...\n", + "\n", + "[8538 rows x 1 columns]" + ] + }, + "execution_count": 697, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dpp" + ] + }, + { + "cell_type": "code", + "execution_count": 679, + "metadata": {}, + "outputs": [], + "source": [ + "df_lemma_pos = df_lemma_pos.dropna()" + ] + }, + { + "cell_type": "code", + "execution_count": 688, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lyricslyricslemmapos
0intro Pebbles the Invisible Girl MF DOOMNOUN PROPN DET PROPN PROPN PROPN PROPNintro Pebbles the Invisible Girl MF DOOMNOUN P...
1mic checkNOUN NOUNmic checkNOUN NOUN
2when -PRON- be lead to -PRON-ADV PRON VERB VERB ADP PRONwhen -PRON- be lead to -PRON-ADV PRON VERB VER...
3-PRON- know -PRON- be the one for -PRON-PRON VERB PRON VERB DET NUM ADP PRON-PRON- know -PRON- be the one for -PRON-PRON V...
4come through dig the soundVERB PART NOUN DET NOUNcome through dig the soundVERB PART NOUN DET NOUN
5-PRON- swear the whole world could feel -PRON- MCPRON VERB DET ADJ NOUN VERB VERB PRON PROPN-PRON- swear the whole world could feel -PRON-...
6crowd aroundVERB ADVcrowd aroundVERB ADV
8Verse 1 MF DOOMPROPN NUM PROPN PROPN-PRON- use to cop a lot but never cop no dropP...
9-PRON- use to cop a lot but never cop no dropPRON VERB PART VERB DET NOUN CCONJ ADV VERB DE...hold mic like pony tail tie in bobbalobsVERB N...
10hold mic like pony tail tie in bobbalobsVERB NOUN ADP NOUN NOUN VERB ADP NOUNstop and stick around come through and dig the...
11stop and stick around come through and dig the...VERB CCONJ VERB ADV VERB PART CCONJ VERB DET NOUNof the fly brown 6 0 sicko psycho who throw -P...
12of the fly brown 6 0 sicko psycho who throw -P...ADP DET NOUN ADJ NUM NUM NOUN NOUN PRON VERB D...bind to go three plat come to destroy rapVERB ...
13bind to go three plat come to destroy rapVERB PART VERB NUM NOUN VERB PART VERB NOUN-PRON- be a intricate plot of a b boy strapPRO...
14-PRON- be a intricate plot of a b boy strapPRON VERB DET ADJ NOUN ADP DET NOUN NOUN NOUNfemstat cat get kidnapADJ NOUN VERB VERB
15femstat cat get kidnapADJ NOUN VERB VERBthen release a statement to the press let the ...
16then release a statement to the press let the ...ADV VERB DET NOUN ADP DET NOUN VERB DET NOUN V...Metal Fist terrorist claim responsibilityPROPN...
17Metal Fist terrorist claim responsibilityPROPN PROPN NOUN VERB NOUNbroken household name usually say in hostility...
18broken household name usually say in hostilityADJ NOUN NOUN ADV VERB ADP NOUNum what be MF -PRON- sillyINTJ PRON VERB PROPN...
19um what be MF -PRON- sillyINTJ PRON VERB PROPN PRON ADJ-PRON- would like to take Means to the end for...
20-PRON- would like to take Means to the end for...PRON AUX VERB PART VERB PROPN ADP DET NOUN ADP...Doo doo doo doo doo that be a audio daily doub...
21Doo doo doo doo doo that be a audio daily doublePROPN PROPN NOUN NOUN NOUN DET VERB DET ADJ AD...rapper need to fall off just to save -PRON- th...
22rapper need to fall off just to save -PRON- th...NOUN VERB PART VERB PART ADV PART VERB PRON DE...watch -PRON- own back come in and go out alone...
23watch -PRON- own back come in and go out alone...VERB DET ADJ NOUN VERB ADV CCONJ VERB PART ADV...stay in the zone turn H2O to CognacVERB ADP DE...
24stay in the zone turn H2O to CognacVERB ADP DET NOUN VERB PROPN ADP PROPNhook MF DOOMVERB PROPN PROPN
26hook MF DOOMVERB PROPN PROPNright above -PRON- government DumileADV ADP DE...
27on Doomsday ever since the womb til -PRON- be ...ADP PROPN ADV ADP DET NOUN ADP PRON VERB ADV A...either unmarked or engrave hey who be to sayCC...
28right above -PRON- government DumileADV ADP DET NOUN PROPNVerse 2 MF DOOMPROPN NUM PROPN PROPN
29either unmarked or engrave hey who be to sayCCONJ ADJ CCONJ VERB INTJ PRON VERB PART VERB-PRON- write this one in B.C. D.C. o sectionPR...
31Verse 2 MF DOOMPROPN NUM PROPN PROPNcell number 17 up under the top bunkNOUN NOUN ...
32-PRON- write this one in B.C. D.C. o sectionPRON VERB DET NOUN ADP PROPN PROPN NOUN NOUN-PRON- say this not to be mean wish bad luck o...
............
9098brother try to pass -PRON- but none could matc...NOUN VERB PART VERB PRON CCONJ NOUN VERB VERB ...always will be -PRON- friend Ghostface Killah ...
9099no girl can freak -PRON- -PRON- be just too nastyDET NOUN VERB VERB PRON PRON VERB ADV ADV ADJalways will be -PRON- friend Ghostface Killah ...
9100lose on the dance floor -PRON- attack -PRON- allVERB ADP DET NOUN NOUN PRON VERB PRON DETalways will be -PRON- friend Ghostface Killah ...
9101snuck through the back door guess who -PRON- seeVERB ADP DET ADJ NOUN VERB PRON PRON VERBalways will be -PRON- friend Ghostface Killah ...
9102Goldie and Ghost black African RosePROPN CCONJ PROPN ADJ PROPN PROPNalways will be -PRON- friend Ghostface Killah ...
9103Star stud low lense plus the mural be dopePROPN VERB ADJ NOUN CCONJ DET NOUN VERB NOUNalways will be -PRON- friend Ghostface Killah ...
9104Airbrush W B 's STOP shake -PRON- body bodyPROPN PROPN PROPN PART PROPN VERB DET NOUN NOUNalways will be -PRON- friend Ghostface Killah ...
9105and cop a couple of these -PRON- be a hottie h...CCONJ VERB DET NOUN ADP DET PRON VERB DET NOUN...always will be -PRON- friend Ghostface Killah ...
9107Interlude Madam MajesticPROPN PROPN PROPNalways will be -PRON- friend Ghostface Killah ...
9108Scottfree and Chauncey very upsetPROPN CCONJ PROPN ADV ADJalways will be -PRON- friend Ghostface Killah ...
9109-PRON- be sick and tired of live in debtPRON VERB ADJ CCONJ ADJ ADP VERB ADP NOUNalways will be -PRON- friend Ghostface Killah ...
9110tired of roach and tired ofADJ ADP NOUN CCONJ ADJ ADPalways will be -PRON- friend Ghostface Killah ...
9111ratNOUNalways will be -PRON- friend Ghostface Killah ...
9112-PRON- know -PRON- be overPRON VERB PRON VERB ADPalways will be -PRON- friend Ghostface Killah ...
9114Verse 2 U GodPROPN NUM PROPN PROPNalways will be -PRON- friend Ghostface Killah ...
9115one in the head -PRON- be feed this be how -PR...NUM ADP DET NOUN PRON VERB VERB DET VERB ADV P...always will be -PRON- friend Ghostface Killah ...
9116put a Ruff rider on -PRON- dick bust right thr...VERB DET PROPN NOUN ADP DET NOUN VERB ADV ADP ...always will be -PRON- friend Ghostface Killah ...
9117come out -PRON- shirt insert the party rhymeVERB PART DET NOUN VERB DET NOUN NOUNalways will be -PRON- friend Ghostface Killah ...
9118Fine Dr. Buzzard Bacardi LimePROPN PROPN PROPN PROPN PROPNalways will be -PRON- friend Ghostface Killah ...
9119-PRON- passin -PRON- take the shake -PRON- Cal...PRON VERB PRON VERB DET NOUN DET PROPN PROPNalways will be -PRON- friend Ghostface Killah ...
9120before the floor get moist taste and follow mineADP DET NOUN VERB NOUN NOUN CCONJ VERB NOUNalways will be -PRON- friend Ghostface Killah ...
9121Swallow nine model dime from BahamasPROPN NUM NOUN NOUN ADP PROPNalways will be -PRON- friend Ghostface Killah ...
9122slim doo doo maker stuff inside pajamaADJ NOUN VERB NOUN VERB ADP NOUNalways will be -PRON- friend Ghostface Killah ...
9124outro Madam MajesticNOUN PROPN PROPNalways will be -PRON- friend Ghostface Killah ...
9125-PRON- will take all -PRON- rhyme with a Colga...PRON AUX VERB DET DET NOUN ADP DET PROPN NOUN ...always will be -PRON- friend Ghostface Killah ...
9126-PRON- will love -PRON- one second then hate -...PRON AUX VERB PRON NUM ADJ ADV VERB PRON DET ADJalways will be -PRON- friend Ghostface Killah ...
9127oh be not -PRON- crazy baby yeahINTJ VERB ADV PRON ADJ NOUN INTJalways will be -PRON- friend Ghostface Killah ...
9128Tony 's -PRON- name the undefeated champion wh...PROPN PART DET NOUN DET ADJ NOUN INTJ INTJ VER...always will be -PRON- friend Ghostface Killah ...
9129now -PRON- be alone -PRON- be just the king of...ADV PRON VERB ADJ PRON VERB ADV DET NOUN ADP D...always will be -PRON- friend Ghostface Killah ...
9130always will be -PRON- friend Ghostface Killah ...ADV VERB VERB DET NOUN PROPN PROPN ADV PRON NO...always will be -PRON- friend Ghostface Killah ...
\n", + "

8538 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " lyrics \\\n", + "0 intro Pebbles the Invisible Girl MF DOOM \n", + "1 mic check \n", + "2 when -PRON- be lead to -PRON- \n", + "3 -PRON- know -PRON- be the one for -PRON- \n", + "4 come through dig the sound \n", + "5 -PRON- swear the whole world could feel -PRON- MC \n", + "6 crowd around \n", + "8 Verse 1 MF DOOM \n", + "9 -PRON- use to cop a lot but never cop no drop \n", + "10 hold mic like pony tail tie in bobbalobs \n", + "11 stop and stick around come through and dig the... \n", + "12 of the fly brown 6 0 sicko psycho who throw -P... \n", + "13 bind to go three plat come to destroy rap \n", + "14 -PRON- be a intricate plot of a b boy strap \n", + "15 femstat cat get kidnap \n", + "16 then release a statement to the press let the ... \n", + "17 Metal Fist terrorist claim responsibility \n", + "18 broken household name usually say in hostility \n", + "19 um what be MF -PRON- silly \n", + "20 -PRON- would like to take Means to the end for... \n", + "21 Doo doo doo doo doo that be a audio daily double \n", + "22 rapper need to fall off just to save -PRON- th... \n", + "23 watch -PRON- own back come in and go out alone... \n", + "24 stay in the zone turn H2O to Cognac \n", + "26 hook MF DOOM \n", + "27 on Doomsday ever since the womb til -PRON- be ... \n", + "28 right above -PRON- government Dumile \n", + "29 either unmarked or engrave hey who be to say \n", + "31 Verse 2 MF DOOM \n", + "32 -PRON- write this one in B.C. D.C. o section \n", + "... ... \n", + "9098 brother try to pass -PRON- but none could matc... \n", + "9099 no girl can freak -PRON- -PRON- be just too nasty \n", + "9100 lose on the dance floor -PRON- attack -PRON- all \n", + "9101 snuck through the back door guess who -PRON- see \n", + "9102 Goldie and Ghost black African Rose \n", + "9103 Star stud low lense plus the mural be dope \n", + "9104 Airbrush W B 's STOP shake -PRON- body body \n", + "9105 and cop a couple of these -PRON- be a hottie h... \n", + "9107 Interlude Madam Majestic \n", + "9108 Scottfree and Chauncey very upset \n", + "9109 -PRON- be sick and tired of live in debt \n", + "9110 tired of roach and tired of \n", + "9111 rat \n", + "9112 -PRON- know -PRON- be over \n", + "9114 Verse 2 U God \n", + "9115 one in the head -PRON- be feed this be how -PR... \n", + "9116 put a Ruff rider on -PRON- dick bust right thr... \n", + "9117 come out -PRON- shirt insert the party rhyme \n", + "9118 Fine Dr. Buzzard Bacardi Lime \n", + "9119 -PRON- passin -PRON- take the shake -PRON- Cal... \n", + "9120 before the floor get moist taste and follow mine \n", + "9121 Swallow nine model dime from Bahamas \n", + "9122 slim doo doo maker stuff inside pajama \n", + "9124 outro Madam Majestic \n", + "9125 -PRON- will take all -PRON- rhyme with a Colga... \n", + "9126 -PRON- will love -PRON- one second then hate -... \n", + "9127 oh be not -PRON- crazy baby yeah \n", + "9128 Tony 's -PRON- name the undefeated champion wh... \n", + "9129 now -PRON- be alone -PRON- be just the king of... \n", + "9130 always will be -PRON- friend Ghostface Killah ... \n", + "\n", + " lyrics \\\n", + "0 NOUN PROPN DET PROPN PROPN PROPN PROPN \n", + "1 NOUN NOUN \n", + "2 ADV PRON VERB VERB ADP PRON \n", + "3 PRON VERB PRON VERB DET NUM ADP PRON \n", + "4 VERB PART NOUN DET NOUN \n", + "5 PRON VERB DET ADJ NOUN VERB VERB PRON PROPN \n", + "6 VERB ADV \n", + "8 PROPN NUM PROPN PROPN \n", + "9 PRON VERB PART VERB DET NOUN CCONJ ADV VERB DE... \n", + "10 VERB NOUN ADP NOUN NOUN VERB ADP NOUN \n", + "11 VERB CCONJ VERB ADV VERB PART CCONJ VERB DET NOUN \n", + "12 ADP DET NOUN ADJ NUM NUM NOUN NOUN PRON VERB D... \n", + "13 VERB PART VERB NUM NOUN VERB PART VERB NOUN \n", + "14 PRON VERB DET ADJ NOUN ADP DET NOUN NOUN NOUN \n", + "15 ADJ NOUN VERB VERB \n", + "16 ADV VERB DET NOUN ADP DET NOUN VERB DET NOUN V... \n", + "17 PROPN PROPN NOUN VERB NOUN \n", + "18 ADJ NOUN NOUN ADV VERB ADP NOUN \n", + "19 INTJ PRON VERB PROPN PRON ADJ \n", + "20 PRON AUX VERB PART VERB PROPN ADP DET NOUN ADP... \n", + "21 PROPN PROPN NOUN NOUN NOUN DET VERB DET ADJ AD... \n", + "22 NOUN VERB PART VERB PART ADV PART VERB PRON DE... \n", + "23 VERB DET ADJ NOUN VERB ADV CCONJ VERB PART ADV... \n", + "24 VERB ADP DET NOUN VERB PROPN ADP PROPN \n", + "26 VERB PROPN PROPN \n", + "27 ADP PROPN ADV ADP DET NOUN ADP PRON VERB ADV A... \n", + "28 ADV ADP DET NOUN PROPN \n", + "29 CCONJ ADJ CCONJ VERB INTJ PRON VERB PART VERB \n", + "31 PROPN NUM PROPN PROPN \n", + "32 PRON VERB DET NOUN ADP PROPN PROPN NOUN NOUN \n", + "... ... \n", + "9098 NOUN VERB PART VERB PRON CCONJ NOUN VERB VERB ... \n", + "9099 DET NOUN VERB VERB PRON PRON VERB ADV ADV ADJ \n", + "9100 VERB ADP DET NOUN NOUN PRON VERB PRON DET \n", + "9101 VERB ADP DET ADJ NOUN VERB PRON PRON VERB \n", + "9102 PROPN CCONJ PROPN ADJ PROPN PROPN \n", + "9103 PROPN VERB ADJ NOUN CCONJ DET NOUN VERB NOUN \n", + "9104 PROPN PROPN PROPN PART PROPN VERB DET NOUN NOUN \n", + "9105 CCONJ VERB DET NOUN ADP DET PRON VERB DET NOUN... \n", + "9107 PROPN PROPN PROPN \n", + "9108 PROPN CCONJ PROPN ADV ADJ \n", + "9109 PRON VERB ADJ CCONJ ADJ ADP VERB ADP NOUN \n", + "9110 ADJ ADP NOUN CCONJ ADJ ADP \n", + "9111 NOUN \n", + "9112 PRON VERB PRON VERB ADP \n", + "9114 PROPN NUM PROPN PROPN \n", + "9115 NUM ADP DET NOUN PRON VERB VERB DET VERB ADV P... \n", + "9116 VERB DET PROPN NOUN ADP DET NOUN VERB ADV ADP ... \n", + "9117 VERB PART DET NOUN VERB DET NOUN NOUN \n", + "9118 PROPN PROPN PROPN PROPN PROPN \n", + "9119 PRON VERB PRON VERB DET NOUN DET PROPN PROPN \n", + "9120 ADP DET NOUN VERB NOUN NOUN CCONJ VERB NOUN \n", + "9121 PROPN NUM NOUN NOUN ADP PROPN \n", + "9122 ADJ NOUN VERB NOUN VERB ADP NOUN \n", + "9124 NOUN PROPN PROPN \n", + "9125 PRON AUX VERB DET DET NOUN ADP DET PROPN NOUN ... \n", + "9126 PRON AUX VERB PRON NUM ADJ ADV VERB PRON DET ADJ \n", + "9127 INTJ VERB ADV PRON ADJ NOUN INTJ \n", + "9128 PROPN PART DET NOUN DET ADJ NOUN INTJ INTJ VER... \n", + "9129 ADV PRON VERB ADJ PRON VERB ADV DET NOUN ADP D... \n", + "9130 ADV VERB VERB DET NOUN PROPN PROPN ADV PRON NO... \n", + "\n", + " lemmapos \n", + "0 intro Pebbles the Invisible Girl MF DOOMNOUN P... \n", + "1 mic checkNOUN NOUN \n", + "2 when -PRON- be lead to -PRON-ADV PRON VERB VER... \n", + "3 -PRON- know -PRON- be the one for -PRON-PRON V... \n", + "4 come through dig the soundVERB PART NOUN DET NOUN \n", + "5 -PRON- swear the whole world could feel -PRON-... \n", + "6 crowd aroundVERB ADV \n", + "8 -PRON- use to cop a lot but never cop no dropP... \n", + "9 hold mic like pony tail tie in bobbalobsVERB N... \n", + "10 stop and stick around come through and dig the... \n", + "11 of the fly brown 6 0 sicko psycho who throw -P... \n", + "12 bind to go three plat come to destroy rapVERB ... \n", + "13 -PRON- be a intricate plot of a b boy strapPRO... \n", + "14 femstat cat get kidnapADJ NOUN VERB VERB \n", + "15 then release a statement to the press let the ... \n", + "16 Metal Fist terrorist claim responsibilityPROPN... \n", + "17 broken household name usually say in hostility... \n", + "18 um what be MF -PRON- sillyINTJ PRON VERB PROPN... \n", + "19 -PRON- would like to take Means to the end for... \n", + "20 Doo doo doo doo doo that be a audio daily doub... \n", + "21 rapper need to fall off just to save -PRON- th... \n", + "22 watch -PRON- own back come in and go out alone... \n", + "23 stay in the zone turn H2O to CognacVERB ADP DE... \n", + "24 hook MF DOOMVERB PROPN PROPN \n", + "26 right above -PRON- government DumileADV ADP DE... \n", + "27 either unmarked or engrave hey who be to sayCC... \n", + "28 Verse 2 MF DOOMPROPN NUM PROPN PROPN \n", + "29 -PRON- write this one in B.C. D.C. o sectionPR... \n", + "31 cell number 17 up under the top bunkNOUN NOUN ... \n", + "32 -PRON- say this not to be mean wish bad luck o... \n", + "... ... \n", + "9098 always will be -PRON- friend Ghostface Killah ... \n", + "9099 always will be -PRON- friend Ghostface Killah ... \n", + "9100 always will be -PRON- friend Ghostface Killah ... \n", + "9101 always will be -PRON- friend Ghostface Killah ... \n", + "9102 always will be -PRON- friend Ghostface Killah ... \n", + "9103 always will be -PRON- friend Ghostface Killah ... \n", + "9104 always will be -PRON- friend Ghostface Killah ... \n", + "9105 always will be -PRON- friend Ghostface Killah ... \n", + "9107 always will be -PRON- friend Ghostface Killah ... \n", + "9108 always will be -PRON- friend Ghostface Killah ... \n", + "9109 always will be -PRON- friend Ghostface Killah ... \n", + "9110 always will be -PRON- friend Ghostface Killah ... \n", + "9111 always will be -PRON- friend Ghostface Killah ... \n", + "9112 always will be -PRON- friend Ghostface Killah ... \n", + "9114 always will be -PRON- friend Ghostface Killah ... \n", + "9115 always will be -PRON- friend Ghostface Killah ... \n", + "9116 always will be -PRON- friend Ghostface Killah ... \n", + "9117 always will be -PRON- friend Ghostface Killah ... \n", + "9118 always will be -PRON- friend Ghostface Killah ... \n", + "9119 always will be -PRON- friend Ghostface Killah ... \n", + "9120 always will be -PRON- friend Ghostface Killah ... \n", + "9121 always will be -PRON- friend Ghostface Killah ... \n", + "9122 always will be -PRON- friend Ghostface Killah ... \n", + "9124 always will be -PRON- friend Ghostface Killah ... \n", + "9125 always will be -PRON- friend Ghostface Killah ... \n", + "9126 always will be -PRON- friend Ghostface Killah ... \n", + "9127 always will be -PRON- friend Ghostface Killah ... \n", + "9128 always will be -PRON- friend Ghostface Killah ... \n", + "9129 always will be -PRON- friend Ghostface Killah ... \n", + "9130 always will be -PRON- friend Ghostface Killah ... \n", + "\n", + "[8538 rows x 3 columns]" + ] + }, + "execution_count": 688, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_lemma_pos" + ] + }, + { + "cell_type": "code", + "execution_count": 677, + "metadata": {}, + "outputs": [], + "source": [ + "include_stop=True\n", + "dqq = pd.DataFrame(index=df.index,columns=['lyrics'])\n", + "for i in df.index:\n", + " rap_lemma = []\n", + " for token in dl.loc[i]['lyrics']:\n", + " if not token.is_punct and (not token.is_stop or include_stop):\n", + " rap_lemma.append(token.lemma_)\n", + " rap_paras = ' '.join(str(e) for e in rap_lemma)\n", + " dqq.loc[i]['lyrics'] = rap_paras" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.1" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}