diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/ReadME.md b/natural-language-processing-with-disaster-tweets-kaggle-competition/ReadME.md
new file mode 100644
index 00000000..b8dc0c2e
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/ReadME.md
@@ -0,0 +1,96 @@
+# Objective
+
+The aim of this project is to correctly guide users through a tutorial of converting the https://www.kaggle.com/c/nlp-getting-started competition notebook into a Kubeflow pipeline.
+There are 3 different ipynb files in this repo. The one ending with -orig is the original one from the competition, the one ending with -kpf uses vanilla kubeflow to create the pipeline and the one ending with -kale uses kale to build the kubeflow pipeline.
+
+
+If you do not already have Kubeflow installed,, you can obtain a free 14-day trial of Kubeflow as a Service here: https://www.arrikto.com/kubeflow-as-a-service/
+
+We have two different ways of creating and running the pipeline. The first one is using vanilla KFP, and the second one is using Kale to simplify the process. The instructions to run both notebooks can be found below:
+
+## Running the vanilla KFP version
+
+The initial few steps to run either notebook are exactly the same. Then after the fourth step there is a big difference on how to convert the original competition notebook into a kubeflow pipeline, this can be clearly seen below:
+
+1. Go to Kubeflow Dashboard and on the left panel click on Notebooks.
+
+2. Click on the “+ New Notebook” button on the top right and create a notebook by giving it a name. Change the Workspace volume from from 5 GB to 50 GB, and change the requested memory to 6 GB.
+
+3. After the set up is done, click on the Connect button next to the notebook you just created. It will take you to a JupyterLab.
+
+
+4. In the JupyterLab launcher start a new terminal session to clone the github repo. In the terminal enter the following commands:
+
+ ```$ git clone https://github.com/kubeflow/examples/natural-language-processing-with-disaster-tweets-kaggle-competition```
+
+5. After succesfully cloning the repo, double click on the “natural-language-processing-with-disaster-tweets-kaggle-competition” folder. Then open the notebook named "natural-language-processing-with-disaster-tweets-kfp.ipynb" by double-clicking on this name in the left hand directory structure, and to run it click on the "restart the whole kernel and re-reun the whole notebook"(fast-forward logo-ed) button in the top menu of the notebook.
+
+6. View run details immediately after submitting the pipeline.
+
+The differences in defining the KFP notebook from the original one require us to make note of the following changes:
+
+ - Defining Functions : The function should be defined in such a way that every library which is being used inside it should be imported inside it.
+
+ - Passing data between components : To pass big data files the best way is to use KPF components such as ```InputPath()``` and ```OutputPath()``` which store the location of the input and output files(generally we use this for big files such as CSV or big TEXT files). To download the data the best way is to pass an url and download it, use it in the function and store the output as a pickle file in the ```OutputPath()``` location and pass the ```OutputPath()``` as ```InputPath()``` to the next component and then extract the contents of the pickle file.
+
+ - Converting the Functions into Components : We use:
+
+```
+kfp.components.create_component_from_func()
+```
+
+This function takes mainly three arguments. The first one is the name of the function which is to be converted into a component, the second one is the list of packages to be installed as a list under the argument name as ```packages_to_install=[]```, and the final argument is the output_component_file which is defined by us as a .yaml file.
+
+
+ - Defining Pipeline function : We now use ```@dsl.pipeline``` to define the pipeline. We add a name and description to the pipeline, and then define a function for this pipeline, which has arguments passed on, which are used as input to the components created earlier. We then pass the output of one component as input argument to the next component.
+
+
+ - Running the pipeline : To run the pipeline we use ```kfp.Client()```, and create an object of the class and then use ```create_run_from_pipeline_func``` function to run the pipeline by passing it the name of the pipeline and the arguments which are required as input.
+
+
+.png)
+.png)
+The final pipeline looks as shown below:
+.png)
+
+## Running the Kale Version
+
+### Understanding Kale Tags
+
+With Kale you annotate cells (which are logical groupings of code) inside your Jupyter Notebook with tags. These tags tell Kuebflow how to interpret the code contained in the cell, what dependencies exist and what functionality is required to execute the cell.
+
+### Step 1: Annotate the notebook with Kale tags
+
+- In the left-hand sidebar of your Notebook, click on the Kale logo and enable it
+- After enabling Kale, give the pipeline a name and description
+- Next, click on the edit button on the right-hand side of each code block and select the cell-type for the cell, add a name to the cell and select the name of the pipeline step it depends on
+- Select ```pipeline_step``` from cell-type for all pipeline steps and select ```skip``` as cell-type for cells which you want to skip in the pipeline
+- **Note:** To make sure the pipeline works perfectly don’t forget to add the name of the component on which it depends.
+
+For example, in the screenshot below we annotate the code block with ```class_distribution``` and specify that it depends on the ```load_data``` step.
+.png)
+
+
+Here’s the complete list of annotations for the Notebook along with the steps on which they are dependent on:
+.png)
+
+### Step 2: Running the Kubeflow pipeline
+The steps to deploy the pipeline using Kale are as follows:
+
+1. Go to Kubeflow Dashboard and on the left panel click on Notebooks.
+
+2. Click on the “+ New Notebook” button on the top right and create a notebook by giving it a name. Change the Workspace volume from from 5 GB to 50 GB, and change the requested memory to 6 GB.
+
+3. After the set up is done, click on the Connect button next to the notebook you just created. It will take you to a JupyterLab.
+
+
+4. In the JupyterLab launcher start a new terminal session to clone the github repo. In the terminal enter the following commands:
+
+```$ git clone https://github.com/kubeflow/examples/natural-language-processing-with-disaster-tweets-kaggle-competition```
+
+5. After succesfully cloning the repo, double click on the "natural-language-processing-with-disaster-tweets-kaggle-competition" to go to the github repo. Then open the notebook named "natural-language-processing-with-disaster-tweets-kale.ipynb" by double-clicking on this name in the left hand directory structure. To run it first click on the first cell and run the code block containing the following code
+```pip install -r requirements.txt ```
+then click on the "restart the whole kernel and re-rerun the whole notebook"(fast-forward logo-ed) button in the top menu of the notebook.
+
+.png)
+.png)
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/data/ReadME.md b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/ReadME.md
new file mode 100644
index 00000000..0787ad74
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/ReadME.md
@@ -0,0 +1 @@
+This location is used to store all the data files which would be accessed by the Python notebooks during the runtime.
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/data/sample_submission.csv b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/sample_submission.csv
new file mode 100644
index 00000000..95815b69
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/sample_submission.csv
@@ -0,0 +1,3264 @@
+id,target
+0,0
+2,0
+3,0
+9,0
+11,0
+12,0
+21,0
+22,0
+27,0
+29,0
+30,0
+35,0
+42,0
+43,0
+45,0
+46,0
+47,0
+51,0
+58,0
+60,0
+69,0
+70,0
+72,0
+75,0
+84,0
+87,0
+88,0
+90,0
+94,0
+99,0
+101,0
+103,0
+106,0
+108,0
+111,0
+115,0
+116,0
+122,0
+123,0
+124,0
+125,0
+127,0
+140,0
+142,0
+147,0
+148,0
+150,0
+152,0
+154,0
+155,0
+166,0
+167,0
+169,0
+177,0
+179,0
+181,0
+186,0
+188,0
+189,0
+192,0
+200,0
+202,0
+206,0
+207,0
+214,0
+217,0
+223,0
+224,0
+227,0
+228,0
+230,0
+233,0
+234,0
+236,0
+239,0
+250,0
+255,0
+257,0
+259,0
+275,0
+278,0
+282,0
+284,0
+286,0
+288,0
+292,0
+295,0
+300,0
+304,0
+305,0
+306,0
+308,0
+311,0
+317,0
+319,0
+323,0
+324,0
+325,0
+326,0
+333,0
+339,0
+342,0
+343,0
+350,0
+351,0
+357,0
+359,0
+362,0
+366,0
+367,0
+369,0
+373,0
+374,0
+376,0
+377,0
+378,0
+379,0
+382,0
+385,0
+387,0
+388,0
+391,0
+392,0
+395,0
+399,0
+400,0
+403,0
+405,0
+408,0
+411,0
+414,0
+416,0
+417,0
+422,0
+425,0
+428,0
+430,0
+431,0
+433,0
+434,0
+439,0
+441,0
+449,0
+458,0
+460,0
+464,0
+473,0
+488,0
+491,0
+494,0
+497,0
+500,0
+505,0
+507,0
+508,0
+510,0
+511,0
+515,0
+525,0
+529,0
+532,0
+534,0
+537,0
+539,0
+541,0
+545,0
+547,0
+548,0
+549,0
+553,0
+554,0
+555,0
+557,0
+562,0
+566,0
+572,0
+573,0
+582,0
+586,0
+587,0
+590,0
+591,0
+593,0
+595,0
+596,0
+597,0
+601,0
+602,0
+605,0
+610,0
+616,0
+618,0
+620,0
+626,0
+627,0
+629,0
+632,0
+634,0
+639,0
+645,0
+647,0
+648,0
+650,0
+663,0
+666,0
+668,0
+670,0
+673,0
+676,0
+678,0
+692,0
+693,0
+694,0
+695,0
+696,0
+698,0
+701,0
+703,0
+707,0
+708,0
+711,0
+715,0
+718,0
+722,0
+723,0
+733,0
+741,0
+742,0
+743,0
+747,0
+749,0
+750,0
+756,0
+757,0
+760,0
+764,0
+765,0
+766,0
+768,0
+769,0
+771,0
+772,0
+776,0
+778,0
+780,0
+785,0
+789,0
+792,0
+793,0
+811,0
+813,0
+816,0
+821,0
+824,0
+825,0
+827,0
+830,0
+831,0
+839,0
+844,0
+847,0
+850,0
+854,0
+855,0
+858,0
+861,0
+862,0
+865,0
+869,0
+879,0
+880,0
+887,0
+889,0
+897,0
+900,0
+901,0
+904,0
+908,0
+909,0
+910,0
+913,0
+914,0
+917,0
+918,0
+920,0
+922,0
+924,0
+925,0
+927,0
+933,0
+937,0
+943,0
+949,0
+950,0
+954,0
+966,0
+967,0
+969,0
+970,0
+973,0
+975,0
+980,0
+988,0
+989,0
+995,0
+1000,0
+1003,0
+1007,0
+1011,0
+1012,0
+1013,0
+1014,0
+1016,0
+1019,0
+1025,0
+1027,0
+1028,0
+1030,0
+1033,0
+1034,0
+1039,0
+1046,0
+1047,0
+1053,0
+1055,0
+1056,0
+1059,0
+1060,0
+1063,0
+1064,0
+1068,0
+1076,0
+1086,0
+1087,0
+1089,0
+1092,0
+1095,0
+1096,0
+1097,0
+1100,0
+1101,0
+1107,0
+1108,0
+1111,0
+1115,0
+1116,0
+1121,0
+1125,0
+1127,0
+1131,0
+1133,0
+1135,0
+1137,0
+1140,0
+1144,0
+1147,0
+1148,0
+1150,0
+1158,0
+1159,0
+1161,0
+1163,0
+1165,0
+1169,0
+1171,0
+1172,0
+1176,0
+1180,0
+1184,0
+1186,0
+1187,0
+1192,0
+1193,0
+1194,0
+1197,0
+1200,0
+1205,0
+1210,0
+1216,0
+1220,0
+1231,0
+1233,0
+1246,0
+1247,0
+1248,0
+1255,0
+1256,0
+1257,0
+1258,0
+1260,0
+1261,0
+1265,0
+1266,0
+1268,0
+1274,0
+1281,0
+1285,0
+1286,0
+1291,0
+1292,0
+1295,0
+1299,0
+1306,0
+1310,0
+1311,0
+1313,0
+1314,0
+1322,0
+1323,0
+1325,0
+1329,0
+1330,0
+1333,0
+1336,0
+1339,0
+1342,0
+1344,0
+1355,0
+1357,0
+1358,0
+1359,0
+1364,0
+1366,0
+1367,0
+1370,0
+1373,0
+1377,0
+1386,0
+1387,0
+1392,0
+1397,0
+1398,0
+1400,0
+1403,0
+1404,0
+1410,0
+1413,0
+1416,0
+1417,0
+1423,0
+1424,0
+1426,0
+1427,0
+1428,0
+1430,0
+1434,0
+1435,0
+1437,0
+1438,0
+1442,0
+1446,0
+1451,0
+1457,0
+1461,0
+1462,0
+1465,0
+1468,0
+1469,0
+1471,0
+1476,0
+1478,0
+1481,0
+1489,0
+1490,0
+1492,0
+1496,0
+1512,0
+1516,0
+1517,0
+1528,0
+1529,0
+1536,0
+1539,0
+1541,0
+1542,0
+1548,0
+1550,0
+1551,0
+1552,0
+1557,0
+1563,0
+1564,0
+1565,0
+1566,0
+1571,0
+1578,0
+1581,0
+1583,0
+1584,0
+1586,0
+1589,0
+1592,0
+1598,0
+1606,0
+1612,0
+1616,0
+1620,0
+1624,0
+1629,0
+1630,0
+1635,0
+1640,0
+1641,0
+1642,0
+1651,0
+1655,0
+1656,0
+1659,0
+1664,0
+1667,0
+1668,0
+1674,0
+1678,0
+1680,0
+1681,0
+1682,0
+1685,0
+1695,0
+1696,0
+1697,0
+1704,0
+1708,0
+1711,0
+1713,0
+1714,0
+1717,0
+1729,0
+1730,0
+1732,0
+1734,0
+1736,0
+1738,0
+1742,0
+1743,0
+1746,0
+1748,0
+1749,0
+1751,0
+1758,0
+1764,0
+1765,0
+1777,0
+1778,0
+1781,0
+1782,0
+1783,0
+1785,0
+1788,0
+1793,0
+1794,0
+1795,0
+1797,0
+1800,0
+1801,0
+1805,0
+1806,0
+1819,0
+1820,0
+1825,0
+1828,0
+1829,0
+1830,0
+1839,0
+1843,0
+1844,0
+1846,0
+1849,0
+1850,0
+1854,0
+1855,0
+1858,0
+1859,0
+1862,0
+1867,0
+1868,0
+1871,0
+1872,0
+1874,0
+1876,0
+1879,0
+1884,0
+1891,0
+1894,0
+1896,0
+1902,0
+1903,0
+1904,0
+1906,0
+1907,0
+1912,0
+1913,0
+1923,0
+1926,0
+1928,0
+1930,0
+1931,0
+1934,0
+1936,0
+1944,0
+1946,0
+1947,0
+1958,0
+1964,0
+1970,0
+1974,0
+1977,0
+1978,0
+1982,0
+1984,0
+1988,0
+1993,0
+1997,0
+1998,0
+2002,0
+2004,0
+2005,0
+2008,0
+2011,0
+2013,0
+2018,0
+2021,0
+2025,0
+2029,0
+2030,0
+2032,0
+2037,0
+2041,0
+2044,0
+2048,0
+2052,0
+2053,0
+2054,0
+2062,0
+2065,0
+2066,0
+2072,0
+2079,0
+2080,0
+2085,0
+2088,0
+2090,0
+2092,0
+2093,0
+2101,0
+2104,0
+2105,0
+2106,0
+2107,0
+2120,0
+2124,0
+2127,0
+2130,0
+2132,0
+2135,0
+2137,0
+2140,0
+2143,0
+2147,0
+2151,0
+2152,0
+2155,0
+2156,0
+2162,0
+2165,0
+2166,0
+2167,0
+2168,0
+2170,0
+2178,0
+2180,0
+2182,0
+2184,0
+2185,0
+2187,0
+2196,0
+2197,0
+2199,0
+2200,0
+2201,0
+2202,0
+2206,0
+2208,0
+2218,0
+2223,0
+2224,0
+2226,0
+2228,0
+2232,0
+2234,0
+2243,0
+2247,0
+2249,0
+2252,0
+2253,0
+2259,0
+2261,0
+2264,0
+2268,0
+2269,0
+2270,0
+2276,0
+2283,0
+2287,0
+2290,0
+2291,0
+2293,0
+2295,0
+2302,0
+2305,0
+2310,0
+2313,0
+2316,0
+2320,0
+2322,0
+2323,0
+2326,0
+2328,0
+2331,0
+2335,0
+2338,0
+2343,0
+2344,0
+2345,0
+2353,0
+2355,0
+2357,0
+2360,0
+2365,0
+2369,0
+2371,0
+2378,0
+2380,0
+2381,0
+2383,0
+2384,0
+2392,0
+2393,0
+2401,0
+2403,0
+2404,0
+2405,0
+2407,0
+2411,0
+2424,0
+2426,0
+2431,0
+2433,0
+2434,0
+2436,0
+2439,0
+2444,0
+2447,0
+2448,0
+2449,0
+2450,0
+2461,0
+2469,0
+2472,0
+2473,0
+2474,0
+2477,0
+2481,0
+2484,0
+2495,0
+2503,0
+2509,0
+2511,0
+2518,0
+2522,0
+2525,0
+2526,0
+2529,0
+2533,0
+2549,0
+2551,0
+2558,0
+2562,0
+2563,0
+2567,0
+2574,0
+2577,0
+2578,0
+2580,0
+2581,0
+2583,0
+2584,0
+2586,0
+2589,0
+2595,0
+2596,0
+2600,0
+2601,0
+2607,0
+2610,0
+2613,0
+2615,0
+2618,0
+2620,0
+2623,0
+2626,0
+2630,0
+2634,0
+2636,0
+2638,0
+2639,0
+2646,0
+2650,0
+2652,0
+2653,0
+2654,0
+2662,0
+2665,0
+2669,0
+2674,0
+2678,0
+2681,0
+2685,0
+2686,0
+2690,0
+2697,0
+2699,0
+2704,0
+2705,0
+2710,0
+2712,0
+2713,0
+2716,0
+2717,0
+2718,0
+2721,0
+2722,0
+2735,0
+2737,0
+2738,0
+2742,0
+2745,0
+2746,0
+2747,0
+2750,0
+2751,0
+2754,0
+2762,0
+2764,0
+2772,0
+2775,0
+2776,0
+2779,0
+2781,0
+2789,0
+2790,0
+2791,0
+2798,0
+2800,0
+2804,0
+2805,0
+2806,0
+2809,0
+2810,0
+2812,0
+2814,0
+2816,0
+2818,0
+2823,0
+2824,0
+2834,0
+2837,0
+2840,0
+2845,0
+2847,0
+2848,0
+2850,0
+2859,0
+2862,0
+2868,0
+2874,0
+2876,0
+2892,0
+2894,0
+2897,0
+2901,0
+2903,0
+2904,0
+2906,0
+2914,0
+2918,0
+2919,0
+2923,0
+2926,0
+2928,0
+2930,0
+2938,0
+2940,0
+2949,0
+2951,0
+2958,0
+2961,0
+2962,0
+2964,0
+2966,0
+2967,0
+2968,0
+2972,0
+2977,0
+2978,0
+2979,0
+2981,0
+2985,0
+2986,0
+2989,0
+2994,0
+2996,0
+2997,0
+2999,0
+3002,0
+3007,0
+3008,0
+3017,0
+3020,0
+3024,0
+3028,0
+3031,0
+3032,0
+3033,0
+3035,0
+3040,0
+3041,0
+3046,0
+3050,0
+3063,0
+3065,0
+3067,0
+3069,0
+3076,0
+3078,0
+3081,0
+3087,0
+3088,0
+3094,0
+3096,0
+3098,0
+3103,0
+3110,0
+3113,0
+3121,0
+3127,0
+3128,0
+3129,0
+3135,0
+3143,0
+3146,0
+3148,0
+3149,0
+3151,0
+3156,0
+3160,0
+3164,0
+3169,0
+3178,0
+3187,0
+3194,0
+3202,0
+3203,0
+3204,0
+3206,0
+3207,0
+3208,0
+3209,0
+3213,0
+3214,0
+3215,0
+3220,0
+3223,0
+3224,0
+3226,0
+3228,0
+3230,0
+3232,0
+3233,0
+3234,0
+3238,0
+3246,0
+3247,0
+3250,0
+3251,0
+3254,0
+3257,0
+3258,0
+3261,0
+3267,0
+3268,0
+3269,0
+3271,0
+3272,0
+3273,0
+3279,0
+3290,0
+3291,0
+3293,0
+3294,0
+3298,0
+3305,0
+3306,0
+3307,0
+3310,0
+3313,0
+3314,0
+3315,0
+3316,0
+3321,0
+3325,0
+3326,0
+3327,0
+3330,0
+3331,0
+3332,0
+3333,0
+3343,0
+3344,0
+3348,0
+3349,0
+3350,0
+3352,0
+3353,0
+3354,0
+3358,0
+3360,0
+3366,0
+3371,0
+3374,0
+3375,0
+3378,0
+3382,0
+3384,0
+3385,0
+3386,0
+3392,0
+3399,0
+3407,0
+3409,0
+3416,0
+3420,0
+3422,0
+3424,0
+3426,0
+3427,0
+3434,0
+3438,0
+3441,0
+3442,0
+3443,0
+3444,0
+3449,0
+3453,0
+3454,0
+3456,0
+3457,0
+3458,0
+3461,0
+3467,0
+3479,0
+3488,0
+3491,0
+3496,0
+3502,0
+3507,0
+3511,0
+3515,0
+3516,0
+3538,0
+3539,0
+3541,0
+3545,0
+3546,0
+3547,0
+3551,0
+3553,0
+3556,0
+3558,0
+3559,0
+3561,0
+3562,0
+3563,0
+3564,0
+3571,0
+3574,0
+3576,0
+3577,0
+3579,0
+3580,0
+3586,0
+3590,0
+3599,0
+3600,0
+3601,0
+3605,0
+3606,0
+3612,0
+3614,0
+3615,0
+3616,0
+3620,0
+3622,0
+3624,0
+3630,0
+3644,0
+3649,0
+3651,0
+3654,0
+3665,0
+3668,0
+3671,0
+3672,0
+3673,0
+3677,0
+3678,0
+3687,0
+3688,0
+3693,0
+3698,0
+3699,0
+3701,0
+3703,0
+3706,0
+3707,0
+3709,0
+3711,0
+3714,0
+3716,0
+3720,0
+3728,0
+3731,0
+3732,0
+3733,0
+3734,0
+3740,0
+3746,0
+3749,0
+3751,0
+3755,0
+3757,0
+3762,0
+3767,0
+3769,0
+3779,0
+3781,0
+3782,0
+3783,0
+3784,0
+3790,0
+3791,0
+3792,0
+3794,0
+3799,0
+3801,0
+3804,0
+3808,0
+3809,0
+3811,0
+3813,0
+3817,0
+3818,0
+3823,0
+3843,0
+3844,0
+3846,0
+3847,0
+3852,0
+3854,0
+3856,0
+3863,0
+3865,0
+3867,0
+3871,0
+3872,0
+3878,0
+3880,0
+3881,0
+3882,0
+3883,0
+3884,0
+3885,0
+3886,0
+3890,0
+3891,0
+3898,0
+3902,0
+3909,0
+3910,0
+3912,0
+3915,0
+3918,0
+3920,0
+3925,0
+3928,0
+3929,0
+3930,0
+3931,0
+3934,0
+3939,0
+3941,0
+3942,0
+3943,0
+3946,0
+3963,0
+3965,0
+3966,0
+3971,0
+3972,0
+3974,0
+3976,0
+3978,0
+3981,0
+3985,0
+3986,0
+3987,0
+3988,0
+3991,0
+3999,0
+4001,0
+4002,0
+4004,0
+4007,0
+4009,0
+4013,0
+4015,0
+4016,0
+4023,0
+4031,0
+4035,0
+4036,0
+4037,0
+4040,0
+4048,0
+4053,0
+4056,0
+4059,0
+4066,0
+4067,0
+4069,0
+4070,0
+4071,0
+4073,0
+4074,0
+4075,0
+4082,0
+4090,0
+4099,0
+4102,0
+4106,0
+4109,0
+4110,0
+4115,0
+4118,0
+4120,0
+4125,0
+4126,0
+4130,0
+4134,0
+4136,0
+4137,0
+4144,0
+4148,0
+4151,0
+4155,0
+4162,0
+4165,0
+4169,0
+4174,0
+4179,0
+4185,0
+4186,0
+4187,0
+4188,0
+4190,0
+4192,0
+4193,0
+4194,0
+4195,0
+4196,0
+4207,0
+4208,0
+4215,0
+4217,0
+4222,0
+4223,0
+4226,0
+4228,0
+4229,0
+4231,0
+4234,0
+4236,0
+4249,0
+4254,0
+4258,0
+4259,0
+4263,0
+4267,0
+4277,0
+4278,0
+4280,0
+4283,0
+4285,0
+4286,0
+4287,0
+4290,0
+4291,0
+4294,0
+4302,0
+4308,0
+4310,0
+4311,0
+4315,0
+4316,0
+4319,0
+4331,0
+4338,0
+4339,0
+4340,0
+4344,0
+4346,0
+4347,0
+4360,0
+4364,0
+4367,0
+4369,0
+4370,0
+4371,0
+4380,0
+4386,0
+4389,0
+4390,0
+4394,0
+4399,0
+4400,0
+4404,0
+4409,0
+4414,0
+4417,0
+4418,0
+4419,0
+4420,0
+4422,0
+4429,0
+4431,0
+4433,0
+4434,0
+4439,0
+4443,0
+4446,0
+4447,0
+4453,0
+4460,0
+4461,0
+4462,0
+4467,0
+4469,0
+4473,0
+4474,0
+4475,0
+4477,0
+4481,0
+4483,0
+4484,0
+4485,0
+4495,0
+4497,0
+4500,0
+4501,0
+4502,0
+4505,0
+4506,0
+4510,0
+4512,0
+4513,0
+4532,0
+4535,0
+4536,0
+4540,0
+4545,0
+4552,0
+4554,0
+4555,0
+4558,0
+4559,0
+4560,0
+4566,0
+4570,0
+4572,0
+4574,0
+4581,0
+4583,0
+4586,0
+4591,0
+4594,0
+4603,0
+4605,0
+4612,0
+4613,0
+4615,0
+4618,0
+4621,0
+4623,0
+4626,0
+4629,0
+4633,0
+4636,0
+4638,0
+4640,0
+4643,0
+4645,0
+4647,0
+4648,0
+4651,0
+4652,0
+4653,0
+4654,0
+4660,0
+4662,0
+4663,0
+4665,0
+4668,0
+4676,0
+4683,0
+4685,0
+4686,0
+4701,0
+4718,0
+4721,0
+4727,0
+4728,0
+4733,0
+4741,0
+4743,0
+4746,0
+4751,0
+4756,0
+4761,0
+4763,0
+4764,0
+4767,0
+4772,0
+4776,0
+4780,0
+4781,0
+4792,0
+4796,0
+4801,0
+4804,0
+4805,0
+4806,0
+4811,0
+4815,0
+4816,0
+4817,0
+4818,0
+4822,0
+4824,0
+4827,0
+4837,0
+4838,0
+4839,0
+4841,0
+4851,0
+4855,0
+4861,0
+4862,0
+4863,0
+4865,0
+4871,0
+4873,0
+4880,0
+4885,0
+4886,0
+4902,0
+4904,0
+4907,0
+4916,0
+4921,0
+4925,0
+4927,0
+4928,0
+4930,0
+4932,0
+4933,0
+4937,0
+4939,0
+4941,0
+4942,0
+4947,0
+4949,0
+4950,0
+4956,0
+4960,0
+4963,0
+4965,0
+4976,0
+4977,0
+4987,0
+4991,0
+4994,0
+4999,0
+5003,0
+5006,0
+5009,0
+5011,0
+5012,0
+5014,0
+5020,0
+5021,0
+5023,0
+5026,0
+5030,0
+5031,0
+5036,0
+5042,0
+5045,0
+5048,0
+5051,0
+5053,0
+5054,0
+5057,0
+5058,0
+5066,0
+5070,0
+5077,0
+5081,0
+5084,0
+5086,0
+5090,0
+5091,0
+5093,0
+5100,0
+5108,0
+5111,0
+5112,0
+5118,0
+5121,0
+5123,0
+5129,0
+5133,0
+5143,0
+5147,0
+5151,0
+5156,0
+5158,0
+5161,0
+5163,0
+5167,0
+5173,0
+5205,0
+5214,0
+5215,0
+5216,0
+5217,0
+5225,0
+5237,0
+5239,0
+5240,0
+5241,0
+5246,0
+5250,0
+5253,0
+5258,0
+5261,0
+5268,0
+5275,0
+5277,0
+5279,0
+5288,0
+5289,0
+5294,0
+5303,0
+5307,0
+5311,0
+5312,0
+5314,0
+5318,0
+5327,0
+5329,0
+5333,0
+5334,0
+5340,0
+5348,0
+5358,0
+5360,0
+5361,0
+5363,0
+5364,0
+5369,0
+5370,0
+5374,0
+5376,0
+5388,0
+5390,0
+5393,0
+5394,0
+5395,0
+5398,0
+5399,0
+5401,0
+5402,0
+5405,0
+5414,0
+5415,0
+5419,0
+5421,0
+5422,0
+5424,0
+5427,0
+5429,0
+5431,0
+5433,0
+5434,0
+5435,0
+5436,0
+5438,0
+5440,0
+5441,0
+5447,0
+5451,0
+5453,0
+5456,0
+5457,0
+5463,0
+5464,0
+5470,0
+5472,0
+5474,0
+5478,0
+5483,0
+5490,0
+5500,0
+5504,0
+5508,0
+5511,0
+5512,0
+5513,0
+5516,0
+5523,0
+5527,0
+5530,0
+5533,0
+5536,0
+5537,0
+5542,0
+5543,0
+5546,0
+5549,0
+5550,0
+5551,0
+5562,0
+5566,0
+5568,0
+5571,0
+5572,0
+5574,0
+5583,0
+5585,0
+5591,0
+5596,0
+5597,0
+5601,0
+5606,0
+5607,0
+5610,0
+5615,0
+5616,0
+5623,0
+5630,0
+5636,0
+5637,0
+5639,0
+5640,0
+5643,0
+5648,0
+5649,0
+5660,0
+5666,0
+5667,0
+5678,0
+5679,0
+5681,0
+5682,0
+5691,0
+5696,0
+5697,0
+5700,0
+5701,0
+5702,0
+5708,0
+5709,0
+5718,0
+5723,0
+5725,0
+5728,0
+5731,0
+5735,0
+5737,0
+5738,0
+5742,0
+5747,0
+5749,0
+5750,0
+5755,0
+5756,0
+5761,0
+5762,0
+5767,0
+5768,0
+5770,0
+5773,0
+5774,0
+5779,0
+5782,0
+5785,0
+5786,0
+5787,0
+5788,0
+5796,0
+5802,0
+5806,0
+5809,0
+5810,0
+5811,0
+5813,0
+5820,0
+5823,0
+5830,0
+5831,0
+5838,0
+5839,0
+5844,0
+5846,0
+5851,0
+5852,0
+5857,0
+5859,0
+5860,0
+5862,0
+5865,0
+5866,0
+5871,0
+5872,0
+5877,0
+5878,0
+5879,0
+5880,0
+5895,0
+5897,0
+5910,0
+5914,0
+5915,0
+5917,0
+5924,0
+5926,0
+5931,0
+5936,0
+5940,0
+5941,0
+5945,0
+5946,0
+5948,0
+5951,0
+5967,0
+5968,0
+5969,0
+5970,0
+5971,0
+5973,0
+5976,0
+5977,0
+5984,0
+5986,0
+5993,0
+5994,0
+6005,0
+6006,0
+6008,0
+6010,0
+6011,0
+6014,0
+6016,0
+6018,0
+6021,0
+6025,0
+6028,0
+6029,0
+6035,0
+6040,0
+6042,0
+6044,0
+6046,0
+6052,0
+6054,0
+6062,0
+6063,0
+6067,0
+6068,0
+6077,0
+6079,0
+6080,0
+6081,0
+6082,0
+6089,0
+6095,0
+6101,0
+6107,0
+6114,0
+6117,0
+6121,0
+6122,0
+6124,0
+6129,0
+6131,0
+6136,0
+6139,0
+6142,0
+6143,0
+6144,0
+6149,0
+6155,0
+6157,0
+6158,0
+6161,0
+6168,0
+6172,0
+6176,0
+6177,0
+6179,0
+6180,0
+6182,0
+6186,0
+6189,0
+6190,0
+6194,0
+6204,0
+6205,0
+6209,0
+6210,0
+6212,0
+6214,0
+6221,0
+6225,0
+6228,0
+6229,0
+6231,0
+6235,0
+6236,0
+6237,0
+6238,0
+6239,0
+6242,0
+6249,0
+6250,0
+6251,0
+6252,0
+6260,0
+6264,0
+6266,0
+6270,0
+6275,0
+6279,0
+6280,0
+6284,0
+6285,0
+6286,0
+6287,0
+6288,0
+6289,0
+6290,0
+6291,0
+6295,0
+6298,0
+6307,0
+6308,0
+6309,0
+6313,0
+6316,0
+6319,0
+6321,0
+6324,0
+6327,0
+6333,0
+6351,0
+6352,0
+6353,0
+6357,0
+6359,0
+6360,0
+6364,0
+6367,0
+6368,0
+6377,0
+6378,0
+6379,0
+6381,0
+6390,0
+6401,0
+6408,0
+6409,0
+6411,0
+6419,0
+6424,0
+6426,0
+6428,0
+6431,0
+6432,0
+6433,0
+6435,0
+6437,0
+6439,0
+6442,0
+6444,0
+6447,0
+6456,0
+6457,0
+6460,0
+6468,0
+6471,0
+6475,0
+6476,0
+6479,0
+6483,0
+6487,0
+6488,0
+6489,0
+6496,0
+6498,0
+6502,0
+6503,0
+6507,0
+6508,0
+6509,0
+6517,0
+6521,0
+6522,0
+6524,0
+6526,0
+6531,0
+6533,0
+6538,0
+6539,0
+6544,0
+6557,0
+6558,0
+6562,0
+6563,0
+6564,0
+6574,0
+6578,0
+6581,0
+6584,0
+6587,0
+6589,0
+6590,0
+6592,0
+6595,0
+6599,0
+6600,0
+6606,0
+6609,0
+6612,0
+6615,0
+6618,0
+6620,0
+6623,0
+6633,0
+6639,0
+6640,0
+6641,0
+6645,0
+6650,0
+6651,0
+6652,0
+6657,0
+6659,0
+6666,0
+6671,0
+6673,0
+6674,0
+6677,0
+6680,0
+6684,0
+6685,0
+6691,0
+6692,0
+6696,0
+6698,0
+6704,0
+6705,0
+6710,0
+6713,0
+6715,0
+6717,0
+6718,0
+6720,0
+6728,0
+6732,0
+6733,0
+6739,0
+6740,0
+6741,0
+6743,0
+6747,0
+6750,0
+6752,0
+6753,0
+6755,0
+6761,0
+6763,0
+6768,0
+6770,0
+6771,0
+6777,0
+6778,0
+6780,0
+6782,0
+6786,0
+6791,0
+6797,0
+6798,0
+6803,0
+6805,0
+6812,0
+6816,0
+6818,0
+6822,0
+6825,0
+6826,0
+6827,0
+6829,0
+6831,0
+6836,0
+6838,0
+6840,0
+6842,0
+6846,0
+6851,0
+6853,0
+6856,0
+6859,0
+6865,0
+6866,0
+6868,0
+6869,0
+6871,0
+6873,0
+6886,0
+6887,0
+6888,0
+6889,0
+6891,0
+6894,0
+6895,0
+6899,0
+6901,0
+6902,0
+6904,0
+6906,0
+6922,0
+6923,0
+6924,0
+6927,0
+6934,0
+6938,0
+6941,0
+6942,0
+6944,0
+6947,0
+6952,0
+6957,0
+6958,0
+6964,0
+6968,0
+6969,0
+6976,0
+6982,0
+6986,0
+6987,0
+6989,0
+6991,0
+6993,0
+6995,0
+6997,0
+7000,0
+7003,0
+7004,0
+7007,0
+7011,0
+7014,0
+7016,0
+7017,0
+7020,0
+7022,0
+7028,0
+7033,0
+7034,0
+7035,0
+7038,0
+7040,0
+7041,0
+7042,0
+7045,0
+7049,0
+7055,0
+7057,0
+7062,0
+7064,0
+7066,0
+7067,0
+7072,0
+7079,0
+7082,0
+7083,0
+7084,0
+7085,0
+7087,0
+7090,0
+7094,0
+7096,0
+7099,0
+7100,0
+7101,0
+7102,0
+7103,0
+7107,0
+7110,0
+7113,0
+7117,0
+7119,0
+7123,0
+7127,0
+7133,0
+7139,0
+7143,0
+7145,0
+7151,0
+7152,0
+7153,0
+7156,0
+7162,0
+7170,0
+7172,0
+7177,0
+7181,0
+7182,0
+7189,0
+7190,0
+7200,0
+7207,0
+7209,0
+7212,0
+7216,0
+7217,0
+7219,0
+7220,0
+7222,0
+7225,0
+7233,0
+7237,0
+7238,0
+7239,0
+7240,0
+7243,0
+7245,0
+7246,0
+7249,0
+7257,0
+7258,0
+7259,0
+7262,0
+7263,0
+7269,0
+7271,0
+7273,0
+7276,0
+7279,0
+7282,0
+7284,0
+7293,0
+7298,0
+7303,0
+7304,0
+7305,0
+7308,0
+7313,0
+7314,0
+7321,0
+7322,0
+7327,0
+7333,0
+7336,0
+7339,0
+7341,0
+7346,0
+7347,0
+7349,0
+7351,0
+7353,0
+7363,0
+7364,0
+7368,0
+7370,0
+7375,0
+7376,0
+7379,0
+7382,0
+7384,0
+7385,0
+7387,0
+7388,0
+7389,0
+7394,0
+7396,0
+7398,0
+7399,0
+7401,0
+7404,0
+7406,0
+7409,0
+7411,0
+7417,0
+7420,0
+7422,0
+7423,0
+7427,0
+7429,0
+7432,0
+7435,0
+7436,0
+7440,0
+7441,0
+7445,0
+7448,0
+7449,0
+7450,0
+7454,0
+7455,0
+7460,0
+7462,0
+7464,0
+7466,0
+7468,0
+7469,0
+7471,0
+7472,0
+7483,0
+7484,0
+7485,0
+7486,0
+7487,0
+7489,0
+7492,0
+7495,0
+7499,0
+7500,0
+7506,0
+7508,0
+7509,0
+7511,0
+7516,0
+7524,0
+7538,0
+7539,0
+7541,0
+7546,0
+7549,0
+7562,0
+7564,0
+7567,0
+7572,0
+7574,0
+7575,0
+7586,0
+7592,0
+7596,0
+7597,0
+7599,0
+7606,0
+7615,0
+7618,0
+7620,0
+7624,0
+7625,0
+7629,0
+7632,0
+7636,0
+7637,0
+7646,0
+7655,0
+7658,0
+7660,0
+7664,0
+7665,0
+7666,0
+7667,0
+7673,0
+7676,0
+7682,0
+7684,0
+7690,0
+7697,0
+7700,0
+7704,0
+7705,0
+7706,0
+7708,0
+7709,0
+7710,0
+7713,0
+7716,0
+7726,0
+7729,0
+7730,0
+7732,0
+7734,0
+7740,0
+7741,0
+7745,0
+7757,0
+7762,0
+7770,0
+7776,0
+7777,0
+7778,0
+7779,0
+7782,0
+7786,0
+7791,0
+7792,0
+7794,0
+7795,0
+7796,0
+7798,0
+7805,0
+7806,0
+7808,0
+7811,0
+7814,0
+7819,0
+7820,0
+7825,0
+7829,0
+7834,0
+7836,0
+7838,0
+7841,0
+7845,0
+7846,0
+7853,0
+7856,0
+7858,0
+7859,0
+7866,0
+7875,0
+7879,0
+7884,0
+7886,0
+7890,0
+7892,0
+7896,0
+7899,0
+7900,0
+7901,0
+7904,0
+7911,0
+7917,0
+7919,0
+7920,0
+7921,0
+7922,0
+7925,0
+7927,0
+7928,0
+7931,0
+7942,0
+7946,0
+7947,0
+7948,0
+7951,0
+7956,0
+7961,0
+7964,0
+7966,0
+7967,0
+7974,0
+7975,0
+7979,0
+7985,0
+7986,0
+7993,0
+7995,0
+7997,0
+7998,0
+8004,0
+8007,0
+8011,0
+8014,0
+8022,0
+8027,0
+8033,0
+8041,0
+8042,0
+8046,0
+8048,0
+8050,0
+8051,0
+8052,0
+8053,0
+8054,0
+8059,0
+8063,0
+8072,0
+8075,0
+8076,0
+8077,0
+8078,0
+8080,0
+8082,0
+8086,0
+8090,0
+8092,0
+8093,0
+8099,0
+8104,0
+8107,0
+8108,0
+8114,0
+8115,0
+8117,0
+8123,0
+8124,0
+8127,0
+8132,0
+8134,0
+8139,0
+8145,0
+8148,0
+8151,0
+8152,0
+8153,0
+8157,0
+8160,0
+8166,0
+8167,0
+8173,0
+8174,0
+8178,0
+8179,0
+8185,0
+8186,0
+8192,0
+8193,0
+8194,0
+8197,0
+8198,0
+8199,0
+8200,0
+8206,0
+8207,0
+8220,0
+8222,0
+8227,0
+8228,0
+8229,0
+8230,0
+8233,0
+8248,0
+8249,0
+8255,0
+8260,0
+8263,0
+8265,0
+8268,0
+8269,0
+8272,0
+8273,0
+8275,0
+8277,0
+8281,0
+8282,0
+8290,0
+8293,0
+8299,0
+8302,0
+8303,0
+8305,0
+8306,0
+8307,0
+8308,0
+8313,0
+8316,0
+8319,0
+8322,0
+8323,0
+8325,0
+8326,0
+8327,0
+8328,0
+8331,0
+8333,0
+8336,0
+8338,0
+8340,0
+8342,0
+8343,0
+8353,0
+8354,0
+8357,0
+8358,0
+8359,0
+8373,0
+8376,0
+8379,0
+8380,0
+8381,0
+8384,0
+8395,0
+8398,0
+8403,0
+8407,0
+8413,0
+8417,0
+8420,0
+8421,0
+8424,0
+8426,0
+8427,0
+8438,0
+8439,0
+8442,0
+8449,0
+8456,0
+8460,0
+8462,0
+8465,0
+8466,0
+8467,0
+8469,0
+8470,0
+8474,0
+8479,0
+8481,0
+8482,0
+8485,0
+8488,0
+8492,0
+8493,0
+8495,0
+8499,0
+8501,0
+8519,0
+8521,0
+8525,0
+8527,0
+8529,0
+8532,0
+8534,0
+8535,0
+8537,0
+8544,0
+8548,0
+8549,0
+8552,0
+8554,0
+8563,0
+8564,0
+8565,0
+8566,0
+8568,0
+8569,0
+8573,0
+8583,0
+8588,0
+8590,0
+8592,0
+8593,0
+8594,0
+8597,0
+8600,0
+8601,0
+8602,0
+8603,0
+8604,0
+8605,0
+8611,0
+8614,0
+8616,0
+8617,0
+8619,0
+8626,0
+8629,0
+8630,0
+8632,0
+8634,0
+8641,0
+8645,0
+8649,0
+8652,0
+8666,0
+8671,0
+8672,0
+8675,0
+8678,0
+8679,0
+8682,0
+8687,0
+8701,0
+8703,0
+8707,0
+8713,0
+8716,0
+8719,0
+8725,0
+8730,0
+8731,0
+8748,0
+8749,0
+8756,0
+8764,0
+8765,0
+8769,0
+8771,0
+8772,0
+8773,0
+8779,0
+8792,0
+8794,0
+8796,0
+8798,0
+8803,0
+8807,0
+8809,0
+8811,0
+8813,0
+8814,0
+8818,0
+8819,0
+8820,0
+8821,0
+8822,0
+8824,0
+8826,0
+8827,0
+8828,0
+8833,0
+8834,0
+8845,0
+8847,0
+8849,0
+8861,0
+8867,0
+8868,0
+8870,0
+8873,0
+8874,0
+8876,0
+8877,0
+8879,0
+8882,0
+8884,0
+8889,0
+8891,0
+8894,0
+8895,0
+8897,0
+8898,0
+8901,0
+8904,0
+8909,0
+8910,0
+8911,0
+8915,0
+8917,0
+8918,0
+8919,0
+8922,0
+8925,0
+8928,0
+8929,0
+8930,0
+8932,0
+8937,0
+8940,0
+8943,0
+8950,0
+8951,0
+8954,0
+8958,0
+8960,0
+8964,0
+8975,0
+8977,0
+8981,0
+8982,0
+8984,0
+8988,0
+8990,0
+8991,0
+8995,0
+8997,0
+9003,0
+9004,0
+9010,0
+9011,0
+9013,0
+9014,0
+9015,0
+9017,0
+9019,0
+9021,0
+9024,0
+9032,0
+9035,0
+9036,0
+9037,0
+9043,0
+9046,0
+9048,0
+9049,0
+9050,0
+9056,0
+9063,0
+9065,0
+9066,0
+9068,0
+9069,0
+9070,0
+9073,0
+9076,0
+9091,0
+9092,0
+9104,0
+9105,0
+9108,0
+9111,0
+9115,0
+9117,0
+9122,0
+9125,0
+9127,0
+9129,0
+9133,0
+9136,0
+9138,0
+9140,0
+9147,0
+9150,0
+9152,0
+9153,0
+9155,0
+9158,0
+9160,0
+9163,0
+9165,0
+9167,0
+9168,0
+9170,0
+9176,0
+9178,0
+9184,0
+9186,0
+9188,0
+9189,0
+9190,0
+9196,0
+9198,0
+9199,0
+9200,0
+9201,0
+9202,0
+9204,0
+9205,0
+9213,0
+9214,0
+9224,0
+9227,0
+9228,0
+9229,0
+9234,0
+9236,0
+9241,0
+9243,0
+9245,0
+9256,0
+9258,0
+9261,0
+9274,0
+9279,0
+9282,0
+9284,0
+9285,0
+9291,0
+9295,0
+9299,0
+9302,0
+9304,0
+9305,0
+9306,0
+9310,0
+9312,0
+9316,0
+9318,0
+9323,0
+9326,0
+9327,0
+9328,0
+9331,0
+9335,0
+9336,0
+9340,0
+9349,0
+9352,0
+9353,0
+9354,0
+9356,0
+9357,0
+9358,0
+9359,0
+9364,0
+9366,0
+9369,0
+9370,0
+9379,0
+9381,0
+9383,0
+9389,0
+9390,0
+9392,0
+9394,0
+9398,0
+9399,0
+9400,0
+9407,0
+9409,0
+9412,0
+9413,0
+9415,0
+9419,0
+9423,0
+9424,0
+9426,0
+9427,0
+9428,0
+9429,0
+9433,0
+9437,0
+9440,0
+9442,0
+9443,0
+9444,0
+9447,0
+9459,0
+9461,0
+9462,0
+9464,0
+9473,0
+9475,0
+9476,0
+9477,0
+9478,0
+9479,0
+9483,0
+9487,0
+9494,0
+9497,0
+9498,0
+9506,0
+9512,0
+9514,0
+9515,0
+9516,0
+9517,0
+9518,0
+9521,0
+9523,0
+9527,0
+9528,0
+9530,0
+9532,0
+9534,0
+9535,0
+9536,0
+9543,0
+9544,0
+9545,0
+9546,0
+9549,0
+9558,0
+9560,0
+9561,0
+9570,0
+9573,0
+9578,0
+9584,0
+9587,0
+9588,0
+9599,0
+9601,0
+9604,0
+9614,0
+9615,0
+9621,0
+9622,0
+9623,0
+9624,0
+9626,0
+9628,0
+9630,0
+9631,0
+9633,0
+9635,0
+9637,0
+9641,0
+9647,0
+9648,0
+9649,0
+9658,0
+9662,0
+9668,0
+9671,0
+9676,0
+9677,0
+9679,0
+9682,0
+9685,0
+9689,0
+9692,0
+9693,0
+9694,0
+9696,0
+9700,0
+9711,0
+9713,0
+9720,0
+9721,0
+9725,0
+9726,0
+9727,0
+9735,0
+9740,0
+9742,0
+9743,0
+9747,0
+9748,0
+9751,0
+9758,0
+9767,0
+9768,0
+9773,0
+9777,0
+9781,0
+9784,0
+9786,0
+9789,0
+9792,0
+9793,0
+9798,0
+9799,0
+9802,0
+9803,0
+9804,0
+9805,0
+9807,0
+9809,0
+9811,0
+9814,0
+9817,0
+9821,0
+9824,0
+9825,0
+9827,0
+9839,0
+9840,0
+9843,0
+9844,0
+9845,0
+9847,0
+9848,0
+9851,0
+9852,0
+9855,0
+9856,0
+9863,0
+9867,0
+9871,0
+9876,0
+9879,0
+9882,0
+9891,0
+9892,0
+9893,0
+9895,0
+9899,0
+9900,0
+9902,0
+9903,0
+9904,0
+9908,0
+9913,0
+9914,0
+9917,0
+9922,0
+9924,0
+9926,0
+9927,0
+9928,0
+9929,0
+9936,0
+9939,0
+9947,0
+9951,0
+9954,0
+9956,0
+9957,0
+9959,0
+9962,0
+9964,0
+9966,0
+9968,0
+9969,0
+9970,0
+9975,0
+9977,0
+9981,0
+9993,0
+9996,0
+9997,0
+9999,0
+10002,0
+10007,0
+10015,0
+10019,0
+10022,0
+10024,0
+10026,0
+10033,0
+10043,0
+10046,0
+10051,0
+10053,0
+10062,0
+10063,0
+10065,0
+10068,0
+10078,0
+10086,0
+10094,0
+10095,0
+10096,0
+10097,0
+10103,0
+10104,0
+10108,0
+10122,0
+10123,0
+10128,0
+10131,0
+10133,0
+10134,0
+10135,0
+10145,0
+10148,0
+10154,0
+10155,0
+10158,0
+10160,0
+10161,0
+10162,0
+10165,0
+10166,0
+10167,0
+10170,0
+10178,0
+10180,0
+10181,0
+10185,0
+10188,0
+10190,0
+10196,0
+10200,0
+10205,0
+10211,0
+10216,0
+10219,0
+10221,0
+10225,0
+10227,0
+10228,0
+10230,0
+10232,0
+10233,0
+10235,0
+10238,0
+10240,0
+10242,0
+10248,0
+10254,0
+10257,0
+10261,0
+10262,0
+10266,0
+10267,0
+10271,0
+10277,0
+10279,0
+10281,0
+10282,0
+10285,0
+10292,0
+10298,0
+10300,0
+10309,0
+10311,0
+10312,0
+10319,0
+10324,0
+10326,0
+10328,0
+10343,0
+10346,0
+10347,0
+10353,0
+10354,0
+10356,0
+10357,0
+10362,0
+10363,0
+10370,0
+10373,0
+10386,0
+10388,0
+10389,0
+10391,0
+10397,0
+10400,0
+10403,0
+10404,0
+10408,0
+10417,0
+10425,0
+10435,0
+10437,0
+10438,0
+10440,0
+10442,0
+10447,0
+10452,0
+10453,0
+10454,0
+10459,0
+10460,0
+10463,0
+10465,0
+10469,0
+10474,0
+10475,0
+10476,0
+10477,0
+10480,0
+10491,0
+10493,0
+10494,0
+10495,0
+10497,0
+10501,0
+10504,0
+10507,0
+10509,0
+10510,0
+10512,0
+10514,0
+10526,0
+10528,0
+10530,0
+10531,0
+10532,0
+10538,0
+10539,0
+10542,0
+10547,0
+10549,0
+10556,0
+10569,0
+10572,0
+10577,0
+10579,0
+10586,0
+10594,0
+10595,0
+10597,0
+10602,0
+10604,0
+10614,0
+10617,0
+10618,0
+10619,0
+10624,0
+10633,0
+10634,0
+10635,0
+10638,0
+10639,0
+10642,0
+10643,0
+10645,0
+10646,0
+10649,0
+10652,0
+10653,0
+10654,0
+10661,0
+10664,0
+10668,0
+10670,0
+10674,0
+10683,0
+10694,0
+10697,0
+10699,0
+10701,0
+10703,0
+10713,0
+10714,0
+10716,0
+10717,0
+10719,0
+10725,0
+10728,0
+10734,0
+10738,0
+10740,0
+10742,0
+10756,0
+10757,0
+10758,0
+10761,0
+10762,0
+10773,0
+10778,0
+10781,0
+10791,0
+10792,0
+10796,0
+10797,0
+10801,0
+10804,0
+10806,0
+10807,0
+10816,0
+10820,0
+10828,0
+10836,0
+10838,0
+10845,0
+10856,0
+10857,0
+10858,0
+10861,0
+10865,0
+10868,0
+10874,0
+10875,0
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/data/test.csv b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/test.csv
new file mode 100644
index 00000000..e4933010
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/test.csv
@@ -0,0 +1,3700 @@
+id,keyword,location,text
+0,,,Just happened a terrible car crash
+2,,,"Heard about #earthquake is different cities, stay safe everyone."
+3,,,"there is a forest fire at spot pond, geese are fleeing across the street, I cannot save them all"
+9,,,Apocalypse lighting. #Spokane #wildfires
+11,,,Typhoon Soudelor kills 28 in China and Taiwan
+12,,,We're shaking...It's an earthquake
+21,,,"They'd probably still show more life than Arsenal did yesterday, eh? EH?"
+22,,,Hey! How are you?
+27,,,What a nice hat?
+29,,,Fuck off!
+30,,,No I don't like cold!
+35,,,NOOOOOOOOO! Don't do that!
+42,,,No don't tell me that!
+43,,,What if?!
+45,,,Awesome!
+46,ablaze,London,Birmingham Wholesale Market is ablaze BBC News - Fire breaks out at Birmingham's Wholesale Market http://t.co/irWqCEZWEU
+47,ablaze,Niall's place | SAF 12 SQUAD |,@sunkxssedharry will you wear shorts for race ablaze ?
+51,ablaze,NIGERIA,#PreviouslyOnDoyinTv: Toke MakinwaÛªs marriage crisis sets Nigerian Twitter ablaze... http://t.co/CMghxBa2XI
+58,ablaze,Live On Webcam,Check these out: http://t.co/rOI2NSmEJJ http://t.co/3Tj8ZjiN21 http://t.co/YDUiXEfIpE http://t.co/LxTjc87KLS #nsfw
+60,ablaze,"Los Angeles, Califnordia","PSA: IÛªm splitting my personalities.
+
+?? techies follow @ablaze_co
+?? Burners follow @ablaze"
+69,ablaze,threeonefive. ,beware world ablaze sierra leone & guap.
+70,ablaze,Washington State,Burning Man Ablaze! by Turban Diva http://t.co/hodWosAmWS via @Etsy
+72,ablaze,"Whoop Ass, Georgia",Not a diss song. People will take 1 thing and run with it. Smh it's an eye opener though. He is about 2 set the game ablaze @CyhiThePrynce
+75,ablaze,India,Rape victim dies as she sets herself ablaze: A 16-year-old girl died of burn injuries as she set herself ablazeÛ_ http://t.co/UK8hNrbOob
+84,ablaze,,SETTING MYSELF ABLAZE http://t.co/6vMe7P5XhC
+87,ablaze,"scarborough, ontario",@CTVToronto the bins in front of the field by my house wer set ablaze the other day flames went rite up the hydro pole wonder if it was him
+88,ablaze,,#nowplaying Alfons - Ablaze 2015 on Puls Radio #pulsradio http://t.co/aA5BJgWfDv
+90,ablaze,"121 N La Salle St, Suite 500",'Burning Rahm': Let's hope City Hall builds a giant wooden mayoral effigy 100 feet tall & sets it ablaze. http://t.co/kFo2mksn6Y @John_Kass
+94,ablaze,Wandering,@PhilippaEilhart @DhuBlath hurt but her eyes ablaze with insulted anger.
+99,accident,"Homewood, PA",Accident cleared in #PaTurnpike on PATP EB between PA-18 and Cranberry slow back to #traffic http://t.co/SL0Oqn0Vyr
+101,accident,,Just got to love burning your self on a damn curling wand... I swear someone needs to take it away from me cuase I'm just accident prone.
+103,accident,,I hate badging shit in accident
+106,accident,USA,#3: Car Recorder ZeroEdgeå¨ Dual-lens Car Camera Vehicle Traffic/Driving History/Accident Camcorder Large Re... http://t.co/kKFaSJv6Cj
+108,accident,Massachusetts,Coincidence Or #Curse? Still #Unresolved Secrets From Past http://t.co/7VG8Df9pLE #accident
+111,accident,Bexhill,@Traffic_SouthE @roadpol_east Accident on A27 near Lewes is it Kingston Roundabout rather than A283
+115,accident,Anime World,@sakuma_en If you pretend to feel a certain way the feeling can become genuine all by accident. -Hei (Darker than Black) #manga #anime
+116,accident,,For Legal and Medical Referral Service @1800_Injured Call us at: 1-800-465-87332 #accident #slipandfall #dogbite
+122,accident,"Cowtown, Caliii !!",There's a construction guy working on the Disney store and he has huge gauges in his ears ?? ...that is a bloody accident waiting to happen
+123,accident,,@RobynJilllian @WlSDOMTEETHS I feel like I'm going to do it on accident. Teesha is gonna come out??
+124,accident,"All Motorways, UK",On the #M42 northbound between junctions J3 and J3A there are currently delays of 10 mins due to an accident c... http://t.co/LwI3prBa31
+125,accident,"Frankfurt, Germany",@DaveOshry @Soembie So if I say that I met her by accident this week- would you be super jelly Dave? :p
+127,accident,"Gresham, OR",ACCIDENT - HIT AND RUN - COLD at 500 BLOCK OF SE VISTA TER GRESHAM OR [Gresham Police #PG15000044357] 10:35 #pdx911
+140,accident,,@Calum5SOS this happened on accident but I like it http://t.co/QHmXuljSX9
+142,accident,Las Vegas ,Please donate and spread the word! A training accident left the pole-vaulter Kira GrÌ_nberg a paraplegic http://t.co/6MpnyCl8PK
+147,aftershock,"Midland, Mi",Please like and share our new page for our Indoor Trampoline Park Aftershock opening this fall!! http://t.co/UgXhHErrxS
+148,aftershock,"SÌ£o Vicente, SÌ£o Paulo",@bxckylynch foi no ROH Aftershock: Las Vegas procura no pirate bay que tem
+150,aftershock,"Vault 101, Fallout","Schoolboy ÛÒ Aftershock (Original Mix)
+Excision & Skism ÛÒ SEXisM (Far Too Loud Remix)
+Firebeatz Schella ÛÒ Dear New... http://t.co/JQLzUA6YzQ"
+152,aftershock,Switzerland,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/THyzOMVWU0 | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/83jOO0xk29
+154,aftershock,California,'When the aftershock happened (Nepal) we were the last int'l team still there; in a way we were 1st responders.' Chief Collins @LACo_FD
+155,aftershock,Europe,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/gRPeF7yAWG | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/GGmvzT58vE
+166,aftershock,304,Stop saying 'I Wish' and start saying 'I Will'. ÛÒ Unknown
+167,aftershock,"Davis, CA",I want to go to Aftershock in October because it has all the bands I listen to and #NXT! Can't afford it yet though. #gradschoolapps
+169,aftershock,"Detroit, MI",'We are still living in the aftershock of Hiroshima people are still the scars of history.' - Edward Bond http://t.co/engTl5wrGp
+177,aftershock,Switzerland,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/THyzOMVWU0 | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/83jOO0xk29
+179,aftershock,,Aftershock https://t.co/Ecy4U623nO
+181,aftershock,304,'There is no victory at bargain basement prices.' Dwight David Eisenhower
+186,aftershock,United Kingdom,Bo2 had by far the best competitive maps imo hope bo3 is the same #InVahnWeTrust
+188,aftershock,"London, England",Brass and Copper in Cataclysm & AfterShock!!! http://t.co/uxYZyaygTy
+189,aftershock,In your hearts and minds,@JadeForMKX You should be happy I don't use Aftershock. That variation counters your play style hard.
+192,aftershock,Runcorn,Aftershock https://t.co/38Nhq9moEf
+200,airplane%20accident,"Lake Charles, LA",When carelessness leads to an aviation accident the victim has the right to seek compensation for damages. http://t.co/eqAG6rz1vO
+202,airplane%20accident,"California, USA",@rewind_music found out about you guys today(regarding the accident on the airplane lol) & became a fan! Sending love & support from Cali~?
+206,airplane%20accident,,A girl who died in an airplane accident fifteen years ago
+207,airplane%20accident,,@Mintechan Hihow are you? There is Keio line on the stationright? BTW do you know the airplane accident near Chofu airport this week?
+214,airplane%20accident,"Eagle Pass, Texas",Mexican airplane accident in Ocampo Coahuila MX on 7/29/25 killed Coahuila government SubSecretariat Francisco Garcia Castells age 42.
+217,airplane%20accident,,Horrible Accident Man Died In Wings of AirplaneåÊ(29-07-2015) http://t.co/5ZRKZdhODe
+223,airplane%20accident,inland empire ca,@god if an accident were to happen on this airplane idc if the rest of my luggage is completely destroyed just please save my makeup
+224,airplane%20accident,Muscat,Horrible Accident Man Died In Wings of Airplane (29-07-2015) http://t.co/hG8u2kR1Rq
+227,airplane%20accident,,#UPDATE: Picture from the Penn Twp. airplane accident. http://t.co/6JfgDnZRlC
+228,airplane%20accident,New York,"See how a judge ruled in this 2009 accident at #JFK Airport? involving Korean Air?.
+
+http://t.co/Yh1cGlN3rl http://t.co/6F5ShPKjOB"
+230,airplane%20accident,#BlackLivesMatter,@thugIauren I had myself on airplane mode by accident ??
+233,airplane%20accident,USA - Global Online Sales ,36 years ago today baseball lost one of its greats in an airplane accident. RIP Captain. #Yankees @yankees http://t.co/iNKU28vjJj
+234,airplane%20accident,,Experts in France begin examining airplane debris found on Reunion Island: French air accident experts on Wedn... http://t.co/miw2i0pQxz
+236,airplane%20accident,,#BreakingNews Experts in France begin examining airplane debris found on Reunion Island: French air accident e... http://t.co/3XIcUvlvlJ
+239,airplane%20accident,France,Experts in France begin examining airplane debris found on Reunion Island: French air accident experts on Wedn... http://t.co/KuBsM16OuD
+250,ambulance,"Istanbul, TÌ_rkiye",Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/zdsug0UjS7
+255,ambulance,High in Prague with Aya,http://t.co/Q5XTkaKM08 I'M DYING SEND AN AMBULANCE @M__Belly @brightasastar_
+257,ambulance,Happily Married with 2 kids ,AMBULANCE SPRINTER AUTOMATIC FRONTLINE VEHICLE CHOICE OF 14 LEZ COMPLIANT | eBay http://t.co/7X3PDDbT0Z
+259,ambulance,born on september 1st,@disneyxrowbrina the ambulance isn't even parked well like its nearly on top of someone's car I'm laughing
+275,ambulance,"Atlanta, GA",Shot 12 times. Found dead in cuffs after being involved in a car accident. Officers told ambulance not to treat him. https://t.co/MEUDJwaaNg
+278,ambulance,USA ,@margaretcho Call me a fag and I'm going to call you an ambulance :) #RainbowPower
+282,ambulance,Worldwide,New Nanotech Device Will Be Able To Target And Destroy Blood Clots http://t.co/MnmyJXQ9go #science
+284,ambulance,everywhere,@vballplaya2296 want me to send you some medic supplies from my dad's ambulance?
+286,ambulance,World,2 held with heroin in ambulance http://t.co/d9sOwi1G21 http://t.co/OPxmdPIwAu
+288,ambulance,,http://t.co/B2FaSrt1tN Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/O8BJXnEPQm
+292,ambulance,"West Chester, PA",Why should a helicopter ambulance ride to transfer to a hospital 21 miles away cost $29800? http://t.co/7ZqIreY7Te http://t.co/9Qp3PqPwZv
+295,ambulance,"Chorley, Lancashire, UK",so privileged and proud to wear this uniform.?? #NHS #Ambulance #GayUK #Uniform #Proud #Privileged #WhatsYourEmergency http://t.co/0BkmuhYSFx
+300,annihilated,,The bartender at work described a drunk man as annihilated @kdunning1919 @hsnowberger @gabrielasmith29. 16 more days
+304,annihilated,San Diego,Cop pulls drunk driver to safety SECONDS before his car is hit by train. http://t.co/cTL5xzIHxAåÊ http://t.co/1kDOZTD9mv via @ViralSpell
+305,annihilated,New Orleans,Cop pulls drunk driver to safety SECONDS before his car is hit by train. http://t.co/cSsc8HcsXnåÊ http://t.co/jBlGyLCsAy via @ViralSpell
+306,annihilated,"eileenborut,webster, tx",@RosieGray Now in all sincerety do you think the UN would move to Israel if there was a fraction of a chance of being annihilated?
+308,annihilated,,@johnboywest The only 'stage' the drama queen can stand on is a drama stage & certainly never the world stage; he would be annihilated.
+311,annihilated,,"@_drodrolagi #handplacementgoals
+Bro we annihilated that hashtag this week."
+317,annihilated,,How do I step outside for 5 seconds and get annihilated by mosquitoes?
+319,annihilated,,@jacksfilms #yiayplan well first we strike dreamworks and the minions will be annihilated.
+323,annihilated,,'If your nature appropriates it love will burn you until you become annihilated in your beloved...' https://t.co/sMlwjunD09
+324,annihilated,,@NinaHoag - 'if you shred my Psych work our friendship would be annihilated'
+325,annihilated,upstate NY,@thehill this is 1 example of y the Conservatives annihilated Burton v Wiimington Prkng Auth while Liberals stood by &have done nothing
+326,annihilated,,"Aug 3 1915ÛÓKAISERJAEGERS WIPED OUT.; Francis Joseph's Crack Regiment Annihilated on Carso Plateau.
+http://t.co/D1sPSwl66H"
+333,annihilated,,They should all die! All of them! Everything annihilated!
+339,annihilated,,BROOO HE JUST GOT ANNIHILATED https://t.co/UR7QkqG1wf
+342,annihilated,"Salem, MA",@AlbertBreer he was probably annihilated needed his DD
+343,annihilated,"Chicago, Illinois",$GMCR no longe rGreen mountain now Red Mountain...stock annihilated after hours
+350,annihilation,,Please sign & RT to save #SaltRiverWildHorses http://t.co/GB8ispiaRP http://t.co/Bx0l87iNc8
+351,annihilation,,"Allied Plans for the Annihilation of the German People http://t.co/RUHxGlo18q
+http://t.co/HbUpkzWdWq
+Louis Nizer - Very interesting..."
+357,annihilation,"Yeezy Taught Me , NV",Please share and sign this petition to save wild horses in Arizona. http://t.co/3tsSXPHuFE
+359,annihilation,Colorado,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/lATVr8RZCK via @Change
+362,annihilation,United States,NEW! Are souls punished with annihilation? http://t.co/cmNV6VyFCQ
+366,annihilation,High Desert,***Latest Updates on the Salt River Wild Horse Round-up*** https://t.co/WJsCdvCevH via @Change
+367,annihilation,"Plovdiv, Bulgaria",U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/W5Rhtuey90 via @Change
+369,annihilation,California,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/ZhXua8kmae via @Change
+373,annihilation,"Rhode Island, USA",@BosTeenAuthFest Out of the Silent Planet in print and Annihilation on audio.
+374,annihilation,,RT SIGN URGENT Stop the Annihilation of the Salt River Wild Horses!!! #savewildhorses #saltriverhorses https://t.co/8AZjFF8eSi
+376,annihilation,,@jackienatalydlt I do.... I only get the iced annihilation??
+377,annihilation,U.S.A.,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/d82wlcP49S via @Change
+378,annihilation,Arizona,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/KAlDycTC4H via @Change
+379,annihilation,"Wayne, NJ","@INCIndia under Sonia Gandhi is like Pakistan. Every defeat is treated like a victory.Total annihilation only answer
+http://t.co/KtTYiTOw64"
+382,annihilation,Chicago,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... http://t.co/TrKg2tpWJm via @Change
+385,annihilation,,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... http://t.co/k0q4fnBzss via @Change
+387,annihilation,,Stop the Annihilation of the Salt River Wild Horses!!! https://t.co/546utTXzAm via @Change
+388,annihilation,Az,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/FLcQQeZnVW via @Change
+391,annihilation,"Wheeler,Wis.",U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/FaXDzI90dY via @Change
+392,annihilation,,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/n6VeOjW3S8 via @Change
+395,annihilation,,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/i0z3k0chgg via @Change
+399,apocalypse,"Spring Lake Park, MN",@spherulitic that almost feels like the SI signs of the apocalypse. Lol.
+400,apocalypse,,I liked a @YouTube video from @teamtwiistz http://t.co/OCurjyDRcn FUTURISTIC HOUSE (Built To Survive The Apocalypse!) - Minecraft
+403,apocalypse,"Memphis, TN",I liked a @YouTube video http://t.co/jrFjgaAc9F Minecraft: NIGHT LUCKY BLOCK MOD (BOB APOCALYPSE WITHER 2.0 & MORE!) Mod Showcase
+405,apocalypse,"DMZ, AZ",@thomasa56 Just ONE of my major reasons not to live in *Big City*. If RR's *miss 9 meals* ever comes to pass Cue ANY 'Apocalypse' script.
+408,apocalypse,,#AskConnor there's a zombie apocalypse. the item to your right is your weapon. you're either screwed or you're gonna live.
+411,apocalypse,Instagram:marissatunis,It's an apocalypse
+414,apocalypse,"Akron, Ohio ",@ItsKingRiffYall I'm excited for apocalypse really dig how the x-men franchise is going I like the 'event' theme a lot.
+416,apocalypse,ColoRADo,@TMFK_CO sounds like a terrible time. I'll be right there.
+417,apocalypse,,"Apocalypse no! Why artists should not go into the #Fukushima exclusion zone
+http://t.co/3zqL0qbLUw
+#nuclear #ura"
+422,apocalypse,,Southern Prepper Fiction:Sharecropping the Apocalypse https://t.co/HsleABS1Yr #Apocalyptic #doomsday #prepper #book #reading
+425,apocalypse,Currently Somewhere On Earth,@5SOStag honestly he could say an apocalypse is coming and i would be exited hes so enthusiastic about everything
+428,apocalypse,,Also my other nephew is proof that fat babies are going to save us from the apocalypse http://t.co/N5VImOqhBG
+430,apocalypse,,I liked a @YouTube video http://t.co/2umSxRzot3 Zombie Apocalypse: The Rescue
+431,apocalypse,,I added a video to a @YouTube playlist http://t.co/OCurjyDRcn FUTURISTIC HOUSE (Built To Survive The Apocalypse!) - Minecraft Maps
+433,apocalypse,"Irvine, CA",|LIVE NOW| Princes of the Apocalypse: D&D Encounters #meerkat http://t.co/oY9ES9FVlt
+434,apocalypse,Somewhere in the Internet...,I liked a @YouTube video http://t.co/e89GPNEPzT Minecraft: NIGHT LUCKY BLOCK MOD (BOB APOCALYPSE WITHER 2.0 & MORE!) Mod Showcase
+439,apocalypse,Arlington,OMg zombie apocalypse among my students... -___-
+441,apocalypse,,I liked a @YouTube video http://t.co/uJrIaIVqln Minecraft: NIGHT LUCKY BLOCK MOD (BOB APOCALYPSE WITHER 2.0 & MORE!) Mod Showcase
+449,armageddon,1996???????????,UNIVERSAL ORDER OF ARMAGEDDON http://t.co/3tY4mGm
+458,armageddon,Northwest,Patent Pending Stream 'Armageddon' EP http://t.co/BOuaJqi3Lf
+460,armageddon,Phuket,ARMAGEDDON LONDON | http://t.co/CULU2OwIUc
+464,armageddon,,@hitchBOT I heard you might rise from the ashes of Armageddon. .go hitchbot ..like the true superstar you are.
+473,armageddon,,#Turkey invades #Israel - Halfway to #Armageddon http://t.co/xUOh3sJNXF
+488,armageddon,West Covina CA,Remember to crowd around the baggage carousel like it's armageddon and the bags are the last remaining food items on earth you animals.
+491,armageddon,,"Never compromise. not even in the face of armageddon.
+#Watchmen"
+494,armageddon,,"#MustRead: Vladimir #Putin Issues Major Warning But Is It Too Late To Escape Armageddon? by @PCraigRoberts #US #Rus
+http://t.co/5GFhfCIjrF"
+497,army,Campinas Sp,"You da One
+
+#MTVSummerStar #VideoVeranoMTV #MTVHottest Britney Spears Lana Del Rey"
+500,army,Studio,If you build an army of 100 lions and their leader is a dog in any fight the lions will die like a dog.
+505,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1421
+507,army,New York,SHARK ARMY Black Date Stainless Steel Quartz Men Sport Watch - Full read by eBay http://t.co/k6OzC4wFQd http://t.co/H2ZC4nTdZN
+508,army,,12.Beyonce Is my pick for http://t.co/thoYhrHkfJ Fan Army #Beyhive http://t.co/WvJ39a3BGM
+510,army,#Capulets #5SOSfam #5quadfam ,5 Seconds of Summer Is my pick for http://t.co/EFC3896Qgr Fan Army #5SOSFAM http://t.co/aSpwke1YnK
+511,army,,Beyonce Is my pick for http://t.co/nnMQlz91o9 Fan Army #Beyhive http://t.co/o91f3cYy0R 67
+515,army,,VICTORINOX SWISS ARMY DATE WOMEN'S RUBBER MOP WATCH 241487 http://t.co/q6VCJaTfjx http://t.co/m1cpEw7kbh
+525,army,"Bowling Green, Ky",Hope the Salvation Army at least gave you a tax receipt. https://t.co/Ir9c545rZy
+529,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1431
+532,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1435
+534,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1415
+537,army,"Logansport, Indiana",Check out more data on Upper Wabash reservoirs here on @LouisvilleUSACE site: http://t.co/hqqLQUqZmD
+539,army,Rexburg ID,"ANSWER:
+'Therefore it came to pass that in my sixteenth year I did go forth at the head of an army of the... http://t.co/uuAAsb394n"
+541,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1424
+545,army,Mexico! ^_^,5 Seconds of Summer Is my pick for http://t.co/qcHV3JqOVK Fan Army #5SOSFAM http://t.co/gc0uDfnFgg ÌÑ2
+547,arson,,Cheesehead Report - Arson charges filed in Jackson County house fire http://t.co/I3Y1ZWjBzO
+548,arson,"Los Angeles, CA",Arson suspect linked to 30 fires caught in Northern California http://t.co/z8tlcAdKOw
+549,arson,,Israeli police unable to solve the case of Duma arson attack http://t.co/WtZgXzaf7Z
+553,arson,"Las Vegas, NV","SHOCK REPORT: Muslims Setting Wildfires Across American West...Arson Jihad!
+
+http://t.co/92F4nKxjIu"
+554,arson,West Michigan,@pnuts_mama Be strong. It's at times like this that arson happens. Push thru past the felony stage.
+555,arson,ITUNES RADIO [Hiphop/Rap],#BreakingNews Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel: Posters f... http://t.co/KTKDrGVHgX #rome
+557,arson,"Paterson, New Jersey ",Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel: Posters for Shira Banki and A... http://t.co/WbCtkGGTY9
+562,arson,"Chicago, IL",RT @an_opus: Elliott will be on probation for two years and will have to pay fines up to $1179. http://t.co/72bcyfbTj3
+566,arson,"Saginaw, Mich.",RT Saginaw - Police sketches of 2 'persons of interest' in Saginaw arson http://t.co/a2tZJ07nId http://t.co/LvtP5MHjaG
+572,arson,USA,Fire That Destroyed Charlton Winery Ruled To Be Arson http://t.co/4a9l0jrMYB
+573,arson,,WEHTWTVWlocal: Trial date set for man charged with arson burglary. https://t.co/eUk7lKS11r
+582,arson,"Lawrence, KS",Man charged in connection to Shawnee arson and burglary: OLATHE Kan. ÛÓ A man was in court Wednesday accused ofÛ_ http://t.co/zcXmQoKtZ1
+586,arson,,960KZIM: Steele police arrest 2 in possible arson investigation https://t.co/w6ZbWryqjC
+587,arson,Duo lane,@Vixuhn rip arson
+590,arson,,Arson suspect linked to 30 fires caught in Northern California http://t.co/HkFPyNb4PS
+591,arson,Reality Based World,RT @TheAdvocateMag: Owner of Chicago-Area Gay Bar Admits to Arson Scheme http://t.co/wHTMwtgROJ #p2 #LGBT
+593,arson,EARTH ,#LGBTQ News ?? Owner of Chicago-Area Gay Bar Admits to Arson Scheme: Frank Elliott pleaded... http://t.co/sGb9vNWqUx Via @TheAdvocateMag
+595,arson,,Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel: Posters for Shira Banki and A... http://t.co/6o92wDfcLu
+596,arsonist,"3rd terrestrial planet, Sun",Contra Costa Co. authorities arrest suspected serial arsonist: Authorities believe thatÛ_ http://t.co/bzCmzM7bi5 | http://t.co/LBQldyKgdp
+597,arsonist,,Owner of Chicago-Area Gay Bar Admits to Arson Scheme: Frank Elliott pleaded guilty to hiring an arsonist to to... http://t.co/L82mrYxfNK
+601,arsonist,,@local_arsonist @Cloudy_goldrush Man what ???? they be on some other shit
+602,arsonist,ss,mo the way she says 'carry' https://t.co/vQzRUTHRNU
+605,arsonist,USA,Arsonist Sets NYC Vegetarian Restaurant on Fire: Police #NewYork - http://t.co/agn4cL4uSK
+610,arsonist,"Nanaimo, BC",Arsonist torches a house himself and his getaway vehicle police say - Surrey Leader http://t.co/q0J5lTVD6k @RichardGEarl
+616,arsonist,ss,@Safyuan i already threw away the letter tho
+618,arsonist,"Dorset, UK",Hotel arsonist who caused å£70000 damage was Û÷crying for helpÛª: An arsonist has been jailed after a court hear... http://t.co/HNGDdBhewa
+620,arsonist,San Francisco,suspected serial arsonist in east bay under arrest @christinKPIX5 @NightBeatTV 10pm @KBCWtv @VeronicaDLCruz
+626,arsonist,"Toronto, Canada",ARSONIST Mc - CHRIST WALK http://t.co/D8LQHiGjT0 #Toronto #Columbus #Gospel
+627,arsonist,ss,@Gay4BB bitch dont get slapped
+629,arsonist,ss,@trap_vodka my new fave vine
+632,arsonist,"San Luis Obispo, California",Suspected serial arsonist arrested in NorCal http://t.co/Dty4t75CGu http://t.co/MjxbygejyL
+634,arsonist,,Surveillance Video Captures Man Removing American Flag From Long Beach Home ... - KTLA http://t.co/g0o9wiAgHu
+639,arsonist,San Francisco,Serial arsonist gets no bail not jail release http://t.co/rozs6aumsS
+645,arsonist,Fresno,Arson suspect linked to 30 fires caught in Northern California https://t.co/emsXyWp5s5
+647,attack,,Delhi government to provide free treatment to acid attack victims in private hospitals #AAPatWork http://t.co/xjtp8SBpt3
+648,attack,chi town ,I'm going into a panic attack
+650,attack,Maryland,End the Innovation Catch-22: Reduce the Attack Surface http://t.co/Gj4SSEhk1D #INDUSTRYINSIGHTS #mcgsecure
+663,attack,,@RealTwanBrown Yesterday I Had A Heat Attack ???? And What's Funny Our Relationship ??? Or Our Snapchat
+666,attack,Indianapolis,TexasÛªs Gratuitously Cruel Attack On A Dying GayåÊMan http://t.co/retdjqyCuB
+668,attack,Worldwide,Cooper the Super Pooper. The hero dog who saved me from drowning and detected my heart attack before I knew it. TheÛ_ http://t.co/hzzADcnhFF
+670,attack,,Double ebony attack http://t.co/33V0RLlrKf #Black-haired #Blowjob http://t.co/t7TG3nRBje
+673,attack,,Suspect in latest US theatre attack had psychological issues http://t.co/TvsvjuAVif http://t.co/npovfR4rGo
+676,attack,,#People #Tilly the #Confused Cat Overcomes Horrible Attack to Win Hearts http://t.co/QtrsYxFzo3
+678,attack,Peru,To love you love you love you ... Massive Attack - Angel (HD) https://t.co/9TW34Gffox vÌ_a @YouTube
+692,attack,United Kingdom,@Sunnyclaribel. how many of @DPJHodges articles just attack labour or defend conservatives? see for yourself: http://t.co/shAAIjO2ZC
+693,attack,venezuela,RT: @rt_com :Tory attack on Freedom of Information is Û÷assault on govt accountabilityÛª ÛÒ Liberty http://t.co/UNmTOnz5c5 http://t.co/GTSbvveF
+694,attack,My own little world.,It's weird I had a near panic attack & wanted to write herÛ_ walked into the bathroom at work and nearly cried. Dreadfully miss her.
+695,attack,Twitter,#porn #nsfw: Blacks attack for white married slut http://t.co/zRngKh5d8H
+696,attacked,"New Delhi,India",Cop injured in gunfight as militants attack Udhampur police post: Suspected militants attacked a police post i... http://t.co/ERW7FdxnCr
+698,attacked,UK,Newcastle: Schoolgirl attacked in Seaton Delaval park by 'pack of animals' led by a former friend http://t.co/4xbrVNib9T #newcastle
+701,attacked,,Aus need career best of @davidwarner31 along with Steve smith to even try competing.. SURA virus has attacked team Australia brutally
+703,attacked,between here and there,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/ajMtU7EHy2
+707,attacked,"Revolutionary Road, USA",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/OGoyzOlJk5
+708,attacked,Lucknow,Tennessee man killed by police attacked family with hatchet: 911åÊcall http://t.co/pWiw9q30DT
+711,attacked,1937 Germany ,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/RICbduIACc
+715,attacked,"Toronto, Ontario",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/zb8vVBiSY4
+718,attacked,Indonesia,I attacked Robot-lvl 1 and I've earned a total of 16000 free satoshis! http://t.co/2PZcXSkNCg #robotcoingame #Bitcoin #FreeBitcoin
+722,attacked,N.Y.C,"That 'attitude problem' is a result of constantly being belittled bashed attacked & demoralized.
+FUCK YOU @HOT97"
+723,attacked,"Superior, WI",I must've forgot the memo where getting attacked by a resident and receiving a concussion was funny
+733,attacked,Melbourne,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/PuVOZi3Pa3
+741,attacked,"Helsinki, Finland",@LogitechG BUT THEN THE FIRE NATION ATTACKED....
+742,attacked,,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/7kxGS7VDFy
+743,attacked,"Nashville, TN",Metro Nashville Police - simply the best. Thank you for protecting us. 911 call: http://t.co/ZWIG51QECF via @AOL
+747,avalanche,"Down, down, baby...,SC.",I was having such a peaceful happy Twitter experience ...then *AVALANCHE OF IDIOCY*!!!!!! https://t.co/iIR1v39THE
+749,avalanche,,Car Receiving tube Installation for Avalanche Sound Output HHw
+750,avalanche,,if this fucking is true i will be decapitated and throw my head into a avalanche https://t.co/4cw6Nmmw1O
+756,avalanche,,'One glance and the avalanche drops. One look and my heartbeat stops.' Oh WALK THE MOON how you get me.. I couldn't have said it better.
+757,avalanche,Turin,Photo: #Repost @gregskazphotography with @repostapp. åáåáåá @rainierarms Avalanche Ambi Charging Handle... http://t.co/t3dK3OoV7e
+760,avalanche,,@cierranb5678 I was just there and my dad told me he would never let me get an Avalanche
+764,avalanche,"Saint Andrews, Scotland",As you can imagine I had plenty to talk about with a maths teacher from Liverpool of a similar age into music !
+765,avalanche,,http://t.co/p5PnsRPH5G -RARE VINTAGE COLLECTABLE WINDRIVER AVALANCHE EDT 60ML SPRAY FOR MEN#Deals_UK http://t.co/wkZIYnyyrY
+766,avalanche,,PLUS PERFORMANCE CHIP FUEL SAVER CHEVY SILVERADO/AVALANCHE/BLAZER/TAHOE http://t.co/eocKbeOGm0 http://t.co/cvjCidgEZ7
+768,avalanche,"Denver, CO",Dorion: Sens looking for consistency from Hoffman #ColoradoAvalanche #Avalanche http://t.co/msK68XoY7T http://t.co/ykWKx0QKtX
+769,avalanche,,@Avalanche need anyone to carry your bag? ??
+771,avalanche,Michigan,Musician Kalle Mattson Recreates 34 Classic Album Covers in Clever Music Video for 'Avalanche' http://t.co/97eWeUWybf
+772,avalanche,Score More Goals Buying @,2 TIX 10/3 Frozen Fury XVII: Los Angeles Kings v Avalanche 216 Row:L MGM Grand http://t.co/qyCwho8guN
+776,avalanche,KATONG PLAZA #02-10,FC Maid Agency presents Musician Kalle Mattson Recreates 34 Classic Album Covers in Clever Music Video for... http://t.co/BObrp2qwCb
+778,avalanche,,02 03 04 05 AVALANCHE 1500 REAR AXLE ASSEMBLY 2055271 http://t.co/VxZhZsAlra http://t.co/HmXWRkbLS0
+780,avalanche,"Denver, CO",Senators have another year to determine Hoffman's v... #ColoradoAvs #NHLAvalanche http://t.co/CIzZOc6f0D http://t.co/PEmYHD3Nfz
+785,avalanche,Valusia,@Mano_twits @Kolaveriboy avast an avalanche of andals
+789,avalanche,Score Team Goals Buying @,Colorado Avalanche @ Anaheim Ducks 1-7 tickets 10/1 preseason http://t.co/XRU1WowZYG
+792,avalanche,,@90sAngelicMalik listen to wtm avalanche and take a deep breath
+793,avalanche,,Now there's an avalanche... These men are lunatics #livingontheedge
+811,battle,,#environment Lone Pine trees growing across the country in remembrance of battle at Gallipoli 100 years ago: T... http://t.co/GJCAAnfCYk
+813,battle,"Midland, MI",@JackiSheaffer I have the same battle!
+816,battle,"Seraphim Vault, Cosmodrone",@exoticengram @TheRasputin That Raspy is so cool and he has already figured out TTK's battle shit.
+821,battle,,I liked a @YouTube video from @sharpino1990 http://t.co/LU7dgOwtyl Pok̩mon Omega Ruby and Alpha Sapphire Wi-Fi Battle #05 cjs064 vs
+824,battle,Gislaved,After a long battle @Spurs Matt Bonner took care of Brian Scalabrine in knockout this after... (Vine by @NBA) https://t.co/Q3mGYRDHSF
+825,battle,USA!,I liked a @YouTube video from @screwattack http://t.co/W5dLLV48cs Knuckles punches into DEATH BATTLE!
+827,battle,Australia,"#LonePine remembered around Australia as 'descendants' grow via @666canberra #Gallipoli #WW1
+http://t.co/bwadX8ywqN http://t.co/UPFjy88KvI"
+830,bioterror,,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps #breakingnews
+831,bioterror,,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/kA0syAhqVW via @usatoday
+839,bioterror,South of Boston,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/1CsEBhPLfh via @usatoday
+844,bioterror,baltimore ,Unsurprising/still dismaying consequences of how we went about securing pathogen access: http://t.co/D8EFmGyR2d
+847,bioterror,East Texas,"FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps
+
+http://t.co/SjNKpJ8lEe
+
+#watchcbs19 http://t.co/JiRXfok46c"
+850,bioterror,"Washington, D.C., area",Latest fallout from biolab safety lapses: FedEx no longer will transport anthrax & select agent research specimens http://t.co/4iOOyIbxyo
+854,bioterror,,#FedEx no longer to transport #bioterror germs in wake of #anthrax lab mishaps http://t.co/Ziw1RWPJkK
+855,bioterror,"Jacksonville, FL",FedEx stops shipping potential bioterror pathogens: FedEx Corp. (NYSE: FDX) will no longer deliver packages thatÛ_ http://t.co/CRD6tgIZhG
+858,bioterror,,Citizens Education Project has acted for years as a watchdog on the Dugway Proving Grounds. http://t.co/NZHXYapLm0
+861,bioterror,"Phoenix, AZ",FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/L04Q4DKvue http://t.co/z5voujEus4
+862,bioterror,Springfield Tn,FedEx no longer will transport bioterror germs http://t.co/9lam19N5i5 via @USATODAY
+865,bioterror,"Jacksonville, Florida",In offbeat news @fedex has stopped shipping bioterror pathogens http://t.co/gvXXidHOlF
+869,bioterror,,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/RghHkWtKLR #newsdict #news #FedEx
+879,bioterrorism,USA,Bioterrorism and Ebola. http://t.co/ORIOVftLK4 RT #STOPIslam #TCOT #CCOT #MakeDCListen #TeaParty
+880,bioterrorism,Los Angeles,The largest bioterrorism attack on U.S. soil involved tacos @atlasobscura http://t.co/1n9CRhWmgl
+887,bioterrorism,Amsterdam NL or Greenwich USA,Is it time to hedge against catastrophic risks such as climate change asteroid impacts or bioterrorism? https://t.co/HQ6WqsgSJX
+889,bioterrorism,,@USCOURT If 90BLKs&8WHTs colluded 2 take WHT F @USAgov AUTH Hostage&2 make her look BLK w/Bioterrorism&use her lgl/org IDis ID still hers?
+897,bioterrorism,,Bioterrorism : Guidelines for Medical and Public Health Management (2002) http://t.co/zkUXHnoBaG http://t.co/FHgkYxffu5
+900,bioterrorism,"Denver,CO USA",@bbcworld Bioterrorism drones can reach large populated erea.
+901,bioterrorism,The Forbidden Forest,@BishoyRagheb fair. Bioterrorism is the way to go. Does that mean my BSc isn't irrelevant?
+904,bioterrorism,,@DebtAssassin They forget there is the threat of bioterrorism.
+908,bioterrorism,,HST's Anthony Kimery Discusses #BioTerrorism on @Syfy Channel's 'Joe Rogan Questions Everything' #Pathogen #Virus http://t.co/0FDsc3f2IW
+909,bioterrorism,,Anthony Kimery Discusses #BioTerrorism on SyFy Channel's 'Joe Rogan Questions Everything' http://t.co/zckJWAcRCs
+910,bioterrorism,,@HarvardU If 90BLKs&8WHTs colluded 2 take WHT F @USAgov AUTH Hostage&2 make her look BLK w/Bioterrorism&use her lgl/org IDis ID still hers?
+913,bioterrorism,Alaska,Uganda Seen as a Front Line in the Bioterrorism Fight
+914,bioterrorism,"Capitol Hill, Washington",Ppl living w/ HIV have been charged with aggravated assault and bioterrorism for things w/ low or no risk of transmission. #HIVIsNotaCrime
+917,bioterrorism,"Fargo, ND | North of Normal ",Studying anthrax and bioterrorism before 7 am ?? #carpediem
+918,bioterrorism,,@GACourts If 90BLKs&8WHTs colluded 2 take WHT F @USAgov AUTH Hostage&2 make her look BLK w/Bioterrorism&use her lgl/org IDis ID still hers?
+920,bioterrorism,,Bioterrorism: Guidelines for Medical and Public Health Management Donald A. Hen http://t.co/tDg0Bsmd6c http://t.co/iirWFZMKHO
+922,bioterrorism,,To fight bioterrorism sir.
+924,bioterrorism,,To fight bioterrorism sir.
+925,bioterrorism,Philippines :),@prsnvns that's good to hear. Mine could be better but I can manage. It's alright you do what you have to. Bioterrorism doesn't wait.
+927,bioterrorism,,@mariashriver Was '@FultonInfo'Court trip 2 keep strangers-BLK&WHT-from us'g my @SSAPress ID or 2 forfeit 2 them due 2 Bioterrorism look?@AP
+933,blaze,Mo.City,@_AfroJazz I'll add you (i dont even know what you talking about)
+937,blaze,"Cleveland, OH",I never got paid to give a fuck..we might as well blaze another one
+943,blaze,"Missoula, MT",@JuneSnowpaw Yeah Gimme dat creamy white stuff ;3
+949,blaze,Gotham City,Your reaction determines that
+950,blaze,Vancouver,Port Coquitlam fire crews say an electric towel warmer started the four alarm blaze last week that destroyed several businesses.
+954,blaze,Texas,I liked a @YouTube video from @ashens http://t.co/yC9tywuzQm Blaze / Atgames Handheld Mega Drives | Ashens
+966,blaze,,Craving slurpees ;-;
+967,blaze,,Omg i need to go like yesterday ???? https://t.co/3oP6G7ovzO
+969,blaze,"Strathmore, California",@OVOIzic @BaddieMoneySign blaze it
+970,blaze,"Lithgow, NSW, Australia",Lithgow News: Homeless after blaze near Portland http://t.co/Cht5w3znIK
+973,blaze,"North Hollywood, CA. (SoCal)","@Blizzard_draco I saw
+
+let's eat blaze @BlazinSmasher"
+975,blaze,"Newburgh, NY",My big buzzy John BlaZe. Jus Kame home from a 12 year bid. #LoveThyFamily https://t.co/xrEuoNzzbi
+980,blazing,"New Bedford, MA",Just cruisingblazing and banging ?
+988,blazing,Paradise ,the bitches say im hot i say no bitch im blazing
+989,blazing,Outer Rim,@BryanVsBracey @uSTADIUM why do you need blazing speed? I think Watt is far more impressive that OBJ who is just another quick little guy
+995,blazing,"California, USA",I checked in at Blazing Horse Tattoo on #Yelp http://t.co/z8nXWmYMWA
+1000,blazing,bkk,"The midnight song I cry out goes 'In reality I... in reality I... was very lonely'
+Even if it is erased by the blazing sun"
+1003,blazing,,Le Ever Blazing
+1007,blazing,,All packed and ready to go to meet @kkarmstrongg in Portugal tomorrow! Bring on blazing sunshine and fun times with the bestie! ??????
+1011,blazing,ZIKKO'S HQ,"S3XLEAK!!!
+Ph0tos of 19yrs old Ash@wo lady in Festac town from Delta exp0sed on BBM 5 leaked pictures... http://t.co/lUm4l65alz"
+1012,blazing,"West Hollywood, CA",Enjoying the shade under this tree. The sun is blazing but there is a cool breeze. @ West Hollywood Park https://t.co/2wzHj0lNa6
+1013,blazing,VISIT MY YOUTUBE CHANNEL.,HAPPENING NOW - FDNY RESCUE 1 BLAZING THRU@AND BLASTING THE AIR HORNÛ_ https://t.co/bX6cwRt8M7
+1014,blazing,"Crawley, England",Night 3 of insomnia this whole stop blazing shit is real
+1016,blazing,On The Net,Satelite Shot: Series of wildfires in Northern California continue blazing: There are at least five fire compl... http://t.co/BmGuHqY7W4
+1019,blazing,"Montreal,QC",#website #hosting Get blazing speeds professional management and unlimited options @nyndesigns http://t.co/d1F7wi7FMr
+1025,blazing,"Intramuros, Manila","Come and join us Tomorrow!
+August 7 2015 at Transcend:Blazing the Trail to the Diversified World of Marketing... http://t.co/Fd5od5PfCF"
+1027,blazing,Your screen,"S3XLEAK!!!
+Ph0tos of 19yrs old Ash@wo lady in Festac town from Delta exp0sed on BBM 5 leaked pictures... http://t.co/2WUpSDttVi"
+1028,blazing,"Sacramento, California",@BlazingRoselia California is hot but not blazing even though there are wildfires going on now. Even the big massive Rocky fire
+1030,bleeding,"Dublin,Ireland",Do people not understand they cant bleeding tweet everyone all the timedoes me head in 'stop ignoring me' they are hardly ignoring you+
+1033,bleeding,??????????? :P,#Nepal: This house near TIA bleeding intÛªl airline companies dry. | http://t.co/lI8wi1kuMY
+1034,bleeding,Mass.,@Battlehork I wish I could watch but the gif the LU account posted of Mundo bleeding... Jesus! D:
+1039,bleeding,,did leona lewis ever see that video of dinah singing bleeding love?
+1046,bleeding,"London, England",@TomBrevoort 'Bleeding Cool as read by Tom Brevoort. Though he may just look at the pictures.'
+1047,bleeding,Sherbrooke & MontrÌ©al,You cut me open and I keep bleeding. #BleedingLove #LeonaLewis #acapella #singer #canadiansingerÛ_ https://t.co/51pfEIlPNK
+1053,bleeding,"Northeast, Ohio",*Ears bleeding from the bass* https://t.co/d5RrrwHjpN
+1055,bleeding,Orlando,@KrisZellner But Triplemania has the promise of Villano bleeding and Del Rio whooping that Trick Myztiziziziziz.
+1056,bleeding,"Louisville, KY",Looks like Reynolds and Montano coming in. Need to stop the bleeding. Not the best performance so far.
+1059,bleeding,Outworld,@imKanoMate [the stabbing did not really affect her but she did get stab wounds and was bleeding Skarlet then pushed him backwards +
+1060,bleeding,Terre Haute,Yeah I hate cats I just tried to pet our own cat and now my hand has bite marks scratch marks and it's bleeding. #DogsAreBetterThanCats
+1063,bleeding,,@Aichmomanic wraps a cloth on my wound but it's still bleeding 'I'll be ok.' Falls to the ground as if I'm going to die
+1064,bleeding,psalms 27:1,my ears are bleeding https://t.co/EeVQj37Ndg
+1068,bleeding,slytherin /,@dudeandpal it's so bad my eyes and ears are bleeding
+1076,bleeding,"Windy City, Land of the Snakes",wouldn't want me to quit even if I was bleeding
+1086,blew%20up,35% gay. 65% water. ,@idkimnotfunny this quickly blew up and my mom doesn't get why it's so popular
+1087,blew%20up,"Chicago, IL",LMFAO MY SNAP JUST BLEW UP!
+1089,blew%20up,Oh.,Just blew you up @abbss_13 just so I can get that follow back ????
+1092,blew%20up,indiana,@atlwtmgc damn this blew up
+1095,blew%20up,,Wow social media really blew up after the shania twain concert
+1096,blew%20up,cucumber squad | she/her | ,@cieIstea IDK BUT IT BLEW UP
+1097,blew%20up,,* I'm always one phone call away but too many people done blew up they chances with me.
+1100,blew%20up,8.27.14 & 7.28.15,well this tweet blew up fast
+1101,blew%20up,she/her ,Well this blew up while i was sleeping
+1107,blew%20up,,@funnychubbyguy poor white guy his mom made him pizza and he wanted mac n cheese so he blew up a school. Such a sad story.
+1108,blew%20up,,Wow bro blew up quick. Believe it or not he's this funny and clever in person at all times. You be like 'where... http://t.co/djIHN95YnB
+1111,blew%20up,"Texas, Forever ",@TokyoDotCom I didn't either till it blew up my mentions lol
+1115,blew%20up,"Coos Bay, OR",We were fucking around on Google maps at work and I pulled up Boise and it blew their minds. Yeah Idaho isn't what you think at all.?
+1116,blew%20up,,That stadium blew up!!
+1121,blew%20up,Romans 1:16,The balloon thing was so rude I would have popped the balloon than whoever blew it up's face
+1125,blew%20up,Your Girl's Pussy,@TheFieryGrave yeah true because if he wouldn't have got exposed then he probably wouldn't have went to mlg and blew up there
+1127,blew%20up,twitch.tv/dgn_esports,The only reason why player's now have an ego is cause MW3 had cod champs that's when eSports Blew up and now player's strictly look for ORGs
+1131,blight,Memphis,THDA Kicks Off Anti-Blight Loan Effort in Memphis http://t.co/7Gf7CpYL0R
+1133,blight,,.@WestmdCountyPA land bank targets first #Latrobe building in 20th property acquisition to fight #blight: http://t.co/regDv873Aj
+1135,blight,"Cleveland, Ohio",Lots of talk of how susceptible NY2 is to shoot blight with or without trama. #WCFGT2015
+1137,blight,"Eldora, IA",Help fight Northern Corn Leaf Blight with Headline Amp https://t.co/LVoqPgkLI7
+1140,blight,,@colemcfadyean fuck off cole ??????
+1144,blight,"Bridgetown, Barbados","Imagine if 2 Old Gods were awakened to start a Blight 2.0
+@BioMarkDarrah @Mike_Laidlaw"
+1147,blight,"Stamford, CT",Stamford tightens blight law: A dilapitated barn sits half-erect on Hickory Road near the int... http://t.co/QP65iO4AvC #stamford #topix
+1148,blight,"Columbus, Ohio",Cleveland Heights Shaker Heights fight blight - http://t.co/qRnyme33TC via @clevelanddotcom
+1150,blight,"Philadelphia, PA",Keep up the great work Councilman Brian O'Neill http://t.co/ueS3IhSyIq
+1158,blight,,2:20 BLIGHT ?? EVERY DAY
+1159,blight,"Upper Dicker, England","@Michelgrabowy @vegetablefarmer INTERNET LOSER: I like to leave snide remarks.
+ME: This person is a blight upon the face of the earth"
+1161,blight,centre of attention,ok. but important question: how are the inquisition fighting darkspawn and NO ONE gets the blight in the entire game
+1163,blight,Connecticut,Member Post: Norwalk blight ordinance said to be success as properties change hands http://t.co/ZDwmKQEYBn
+1165,blight,Highlands Ranch CO,Time is ripe for yet another banana blight: The banana's appeal is not slipping. But the future of bananas is inÛ_ http://t.co/StPS5mruXW
+1169,blight,The other side of the mirror,"This is the Red Eye crossing the ocean
+Peeling potatoes with servile devotion...
+
+#BLIGHT!"
+1171,blight,Metro Detroit,#Detroit has made progress against blight but too many burned out shells of houses remain.
+1172,blight,"Baltimore, MD",@justin_fenton Per my Sun piece from last year I think this is the opposite of what should be done: Urban Blight should be monumentalized.
+1176,blight,Sporting capital of the World,I'm all for renewable energy but re: windfarms I do agree with Abbott - they are a horrible blight on the landscape https://t.co/UjYfRT77eJ
+1180,blizzard,,Buying MoP http://t.co/tl7o6Zsqzy
+1184,blizzard,United States,@LoneWolffur *slaps* no
+1186,blizzard,mn |7-18-13|8-27-14|7-26-15|,Literally for lunch i had cheese curds and for dinner i had a blizzard pls pray for my health
+1187,blizzard,St. Charles MO,Oh I see we are now tied? Sweet! It's all in the Blizzard
+1192,blizzard,Sunny Florida,Check out the #new #ebook on #sale by #TimZak 'The Lizard Stuck in a #Blizzard' #rhyming #kidsbook on #Amazon http://t.co/kVZuxdL4ij
+1193,blizzard,,Deck building of my 4 year old daughter http://t.co/INnY1ANTam
+1194,blizzard,,@EddieTrunk Blizzard of Ozz
+1197,blizzard,New York,GUNNAR Optiks -Heroes of the Storm Siege Gaming Glasses - Onyx/Fire wow blizzard - Full reÛ_ http://t.co/YEUQp0VKwU http://t.co/OuGM0yxQMo
+1200,blizzard,St. Charles MO,This game drove me to a rolo mini blizzard
+1205,blizzard,Ideally under a big tree,That horrible moment when u open up the dryer and it looks like a snowy blizzard cuz u left a piece of paper in your jeans pocket ??
+1210,blizzard,That place,If blizzard did another 12 month sub thing and gave the next wow expo free would probaly knock their sub count up pretty fucking high
+1216,blizzard,qui tacet consentire videtur,the Internet is sending subliminal messages about ice cream therefore I need a blizzard rn
+1220,blizzard,Florida,Whoa! This new legend will be fun! http://t.co/hu5CmoupUM
+1231,blood,,@Louis_Tomlinson if u relate to billie jean then ur gonna also enjoy blood on the dance floor so #BuyBloodOnTheDanceFloorOniTunes
+1233,blood,"Edwardsville, IL",xoxoxxxooo : rutinaofficial NBCHannibal When #Hannibal asks will 'Have you seen blood in tÛ_ http://t.co/T7ldlcyC9g http://t.co/JLRw0Oi9ee
+1246,blood,,BRING ME THE HORIZON BLOOD STAINED GIANT ART PRINT PANEL POSTER NOR0603 http://t.co/u5ELKCA4CW http://t.co/tsGKlZZS0C
+1247,blood,,I ain't a crip or a blood....I'm doin my own thing
+1248,blood,The Land of Pleasant Living,Bitch I'm a monster no good blood sucker
+1255,blood,Crescent Moon w/ Wook,/criess blood/ Golden Wook is life. http://t.co/Fhb99ciCeT
+1256,blood,"St Marys, OH",'blood makes you related but loyalty makes you family' - @SirBeezAlot
+1257,blood,305 but I'm So St. Louis...,@youngthug Remind Me of Blood Sosa From Belly.....do your homework.
+1258,blood,"Williamsport, PA",The Yankees are the reason I'm on blood pressure medicine
+1260,blood,"Quezon City, National Capital Region",Why can't gay men donate blood? http://t.co/v2Etl8P9eQ http://t.co/NLnyzeljbw
+1261,blood,XIX | 5SOS | Ed Sheeran |,My new mashup of 'Bad Blood x Where Are U Now' comes out tomorrow!!! Make sure t... (Vine by @Shaylen_Carroll) https://t.co/zB6GZJLgkl
+1265,blood,,1860 BLOOD'S PENNY POST Philly OCTAGONAL CDS 1Ìâå¢ Black 15L18 Grid Cancel + #26! http://t.co/rpV4MQSCQA http://t.co/JrjEiBUGsE
+1266,blood,,seeing more blood and surgery than a regular GP behind a desk and they say dentists aren't real doctors .... Ok
+1268,blood,,Sometimes blood ain't no thicker than water and sometimes family will bring you down quicker than strangers ???????
+1274,blood,Puerto Rico,"Name: Chizu
+Gender: Male
+Age: 10
+Hair: Red
+Eyes: Pink
+Dere Type: Pasokon
+Blood Type: Type O
+http://t.co/cOyPF9ACTd"
+1281,bloody, Waiheke Island,The whole of New Zealand is shouting 'Bloody Marvellous'! John Campbell to join Radio NZ http://t.co/F88fCLiVzH #radionz
+1285,bloody,Singapore,Whats the bloody use of the bus app if everything has no prediction? No one driving bus today? http://t.co/zvGrM5PGZa
+1286,bloody,,@ashwilliams1 continues to be the best guest on @iLoveGGLetters. This week's episode is bloody outrageous.
+1291,bloody,,Too bloody hot in my room
+1292,bloody,Northampton,Im so bloody excited to see Maisy and Martha
+1295,bloody,California,@JeremyClarkson buy a new one bloody ell
+1299,bloody,,@tomm3h You've been on Twitter since 2008?! Bloody hell. Veteran!
+1306,bloody,Canada,Awful refereeing has ruined the balance of the game. Guy is a bloody mess #IMFC
+1310,bloody,Earthrealm,Just because of his 'precious lunch' ??? Bloody hell no brain issit?? https://t.co/X5dwKElReo
+1311,bloody,Baltimore,I swear my eyes be bloody red but bitch I feel amazing.
+1313,bloody,,@ShtBallPlayrsDo are you anyway running your mouth about this bloody game? Pree sure you're not bigger then baseball. Calm the hell down
+1314,bloody,,Bloody nurses waking me up just when I eventually fall asleep lol #Hospital
+1322,bloody,,@halfpeachh @CaitlinCavanah I can't deal right now OMG WHO REMEMBERS BLOODY MARY? ????
+1323,bloody,,Û÷A Nightmare On Elm StreetÛª Is Getting RemadeÛ_ Again http://t.co/qaYGdzI9jQ via @bdisgusting
+1325,bloody,Beacon Hills ~ The Glade,BLOODY HELL TEEN WOLF *O* Hayden and Liam are so cute :3 And I think Stiles's Jeep is dead huh ? Pleeease... I loved her ! @MTVteenwolf
+1329,blown%20up,IG: xbougiebri,Luckily I'm up cause if these Mexicans had came to cut this grass this early and I was sleep. I woulda had a full blown attitude
+1330,blown%20up,Scout Team ,If you bored as shit don't nobody fuck wit you... But when you busy yo shit get blown up! Smh
+1333,blown%20up,? the Foothills of SC ?,"Yes they know you're an adultress.
+And yes they HAVE #Killary emails.
+
+Like the smoke being blown up ur azz?
+
+#NSA
+
+http://t.co/pNheTk8a0f"
+1336,blown%20up,,@SassyNreal Agreed. Whole thing has blown up in their faces right wrong or indifferent. The public is relentless court of public opinion
+1339,blown%20up,somewhere or other,I don't understand how White Iverson by Post Malone hasn't blown the fuck *UP* already.
+1342,blown%20up,"Toledo, OH ",@KaylaG_Baby1 @jaykpurdy no shush. I'm getting it blown up poster size. ??
+1344,blown%20up,,My license picture blown up is absolutely terrifying. http://t.co/0NVdzxQ2HF
+1355,blown%20up,"Paterson, New Jersey ",Deadly suicide bombing hits mosque in Saudi Arabia: A suicide bomber has blown himself up at a mosque in the s... http://t.co/RkvU3xjAzH
+1357,blown%20up,,My phone is being blown up rn ??
+1358,blown%20up,,@DodgersNation he was due to get blown up at least this is still a winnable game.
+1359,blown%20up,Los Angeles,Lock up your last remaining shred of manhood and accept that youÛªre a full blown sissy http://t.co/ZN17ic99hb #feÛ_ http://t.co/u42luY3slS
+1364,blown%20up,"22714 Ventura Blvd. WHills, CA",Get blown up with a delicious flavor of #BlowVape a strawberry cherry pop! Try it today for $15Û_ https://t.co/iT8rDItjFV
+1366,blown%20up,,We are now up to run no. 24 in the singles. The rain has blown off again.
+1367,blown%20up,,Damn! @LastWitchHunter has blown up my Twitter feed. Looks amazing!
+1370,blown%20up,,@MalikChaimaa I hope Zayn gets blown up in a drone attack whilst visiting family in Pakistan ??
+1373,blown%20up,Northern Scandinavia,Coldwood is blown away by your support - they even hung up some of your art! http://t.co/uQWlnbJEYE http://t.co/MToWVqkSXC
+1377,blown%20up,Australia,@bmrow At first thought it was a blown-up DVD as I'm pretty sure POST MORTEM had been years back.
+1386,body%20bag,New York,New Ladies Shoulder Tote Handbag Faux Leather Hobo Purse Cross Body Bag Womens - Full readÛ_ http://t.co/Rpn6pXLPiB http://t.co/l6aYlVVDZ0
+1387,body%20bag,Salt Lake City,Cute Soft Washed Fabric Camouflage Outdoor Shoulder Cross-body Bag Pack Purple Camouflage http://t.co/bxVFQqsIhC
+1392,body%20bag,,Cross Body Bag Purse Zippers Shoulder Bag Camouflage Camo Phone Case Camera Case Wallet #wallet #wallets http://t.co/cq6XYhR3LV
+1397,body%20bag,New York,Louis Vuitton Monogram Sophie Limited Edition Clutch Cross body Bag - Full read by eBay http://t.co/YC2FYXiKBA http://t.co/Pv8wRAvNZQ
+1398,body%20bag,,"#3682 Nikon D50 6.1 MP Digital SLR Camera Body 2 batteries carry bag and charger http://t.co/TeT9q0kXvl
+
+$200.00
+Û_ http://t.co/h3XgoxTFfi"
+1400,body%20bag,,AUTH LOUIS VUITTON BROWN SAUMUR 35 CROSS BODY SHOULDER BAG MONOGRAM 7.23 419-3 - Full readÛ_ http://t.co/8AzzJKBxnm http://t.co/xNgHnEtdvv
+1403,body%20bag,Las Vegas,Dracula Vampire Cross Body Small Shoulder Bag http://t.co/XPHTe7sb4X
+1404,body%20bag,Dalton,http://t.co/3d2h2wOQwa NEW! DIESEL WILLYT Printed Front Cross Body Shoulder Bag - One Size * /KSL 126
+1410,body%20bag,New York,New Ladies Shoulder Tote Handbag Women Cross Body Bag Faux Leather Fashion Purse - Full reÛ_ http://t.co/cRQVl68aoX http://t.co/OFLvMMbfMk
+1413,body%20bag,,"#7294 Nikon D50 6.1 MP Digital SLR Camera Body 2 batteries carry bag and charger http://t.co/SL7PHqSGKV
+
+$200.00
+Û_ http://t.co/T4Qh2OM8Op"
+1416,body%20bag,Paignton,Û¼? New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/zujwUiomb3 http://t.co/sdvNAKZek4
+1417,body%20bag,,I would love to #win Suze's amazing filled #beauty #bag #giveaway! Contents from L'Occitane Body Shop & Lavera. http://t.co/hEjJVVRsTY
+1423,body%20bag,DC Metro Area,Pl. Parenthood Employee Laughs About Aborted Baby Body Parts 'All Mixed Up Together in a Bag' http://t.co/AIdGzPqfLL
+1424,body%20bag,Paignton,?? New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/zujwUiomb3 http://t.co/eDHjUjIuoB
+1426,body%20bag,Orlando,Photo: bonesymcbones: Beartooth - Body Bag (x) http://t.co/kNH4HLFuMa
+1427,body%20bag,"Rowlett, TX",Two-Tone Cross-Body Smartphone Bag Only $15 Shipped! via Dian's Daily Deals - ** Two-Tone ... http://t.co/91LaZl2crV
+1428,body%20bag,New York,genuine Leather man Bag Messenger fit iPad mini 4 tablet case cross body air jp - Full reaÛ_ http://t.co/Vl26HSrq4E http://t.co/ryl0Y88fKM
+1430,body%20bagging,"Bloemfontein, Free State",@MeekMill I think its time you consulted @kendricklamar cause @Drake done body bagging you
+1434,body%20bagging,Don't stalk me- thanks,People are bagging on Rousey's body? Shit I'd love to have a body like that. Those who are ridiculing her are probably dudes in skinny jeans
+1435,body%20bagging,North West,Bagging the last spot on Body Attack ?????? #getin #traintuesday #lesmills
+1437,body%20bagging,"On The Island: Nassau, Bahamas",' Dear Lord Forgive Me For Body Bagging @MeekMill Not Once But Twice. Amen ' - @Drake http://t.co/dPBz1PYvFF
+1438,body%20bagging,"University, FL",@cameron13131313 @OtooleDalton @averywelch23 @otoole1055 first of all you can't 'hit stick' shit.. Second I'm body bagging you on sight ??????
+1442,body%20bagging,Harlem,Drake is really body bagging meek atm
+1446,body%20bagging,Canada,I remember the halo interview with ABC. Wasn't no time and The Pamanian Devil was body bagging fools. https://t.co/CpK7300RQg
+1451,body%20bagging,Wolfgangmuzic@gmail.com,Jersey's artist Wolfgangjoc pays homage to the late great Biggie Smalls by body bagging his hypnotize beat.... http://t.co/x0jKnOxJHA
+1457,body%20bagging,,Not only did Drake kill Meek Mill but he started T bagging his his dead body ????????????
+1461,body%20bagging,"O-Town , The left end",This man @zvch4 about to start body bagging these local jokal photographers
+1462,body%20bagging,Botswana Gaborone,Body bagging! https://t.co/HSlenz4KGU
+1465,body%20bagging,"Dirty Bay, CA",Drake is body bagging meek
+1468,body%20bagging,,Body bagging that I think it's time to bring bags out
+1469,body%20bagging,"Broward, Miami, Tally",We need to stop paying attention to @drizzy body bagging @Meekmill and worry bout what happen to #SandraBland
+1471,body%20bagging,10 hours from pluto,I hear my up north niggas body bagging this but you never know. That got some spitters down south andÛ_ https://t.co/XToioGtk2w
+1476,body%20bagging,Cape Town,Eish even drake killing niggas eish game is really watered down a singing nigga body bagging rappers.. smh
+1478,body%20bagging,,@ESM_Campy and he used werewolf on me also idiota I was tea bagging your body for like 7 minutes while he was fighting someone else
+1481,body%20bags,,'Body Bags' (1993) Movie Review!: http://t.co/E1tdatSUcC via @YouTube
+1489,body%20bags,"West Monroe, Louisiana",@LennGoneWin nah man we need to be defenseless from thugs so when the cops get there we can get put in cool new body bags!
+1490,body%20bags,CLEVELAND,@ComplexMag he asking for a body bags @PUSHA_T
+1492,body%20bags,Yemen,RT Hamosh84: This how the #Saudi is coming home from #Yemen in body bags. For what? #Saudi Kingdom ego? You're looÛ_ http://t.co/LJlKWGXgjY
+1496,body%20bags,,Hot Ladies Handbag Leather Shoulder Tote Satchel messenger Cross Body Bags Green http://t.co/c7XBjRhNbi #Handbags http://t.co/1dmoLajv1Z
+1512,body%20bags,"Alexandria, VA ","Fairfax Co. investigating firefighter Khalil Abdul-Rasheed for Facebook post saying police shld be put in body bags
+
+http://t.co/VpvskCIyro"
+1516,body%20bags,,Our mistakes come back in body bags: Leading in the VUCA world - How the Armed Forces do it | RAGHU https://t.co/vJFSlizmiI
+1517,body%20bags,,Womens Stylish Metal Chain Pearls Solid Hanbags Shoulder Cross Body Bags Golden http://t.co/oR0JZb9cFh http://t.co/6byul0ID4l
+1528,body%20bags,,Womens Flower Printed Shoulder Handbags Cross Body Metal Chain Satchel Bags Pink http://t.co/vBZqWzNxH7 http://t.co/NXIhHeP1Ea
+1529,bomb,"NYC, ??, VAN",One of the top RT-ed tweets in #Japan is a screenshot of a young person claiming to not know the 70th anniversary of the Hiroshima bomb
+1536,bomb,,Hiroshima marks 70 years since bomb: The Japanese city of Hiroshima marks the 70th anniversary of the dropping... http://t.co/INRGS4z0AC
+1539,bomb,,@joanna_bomb @eventchase @MTV @MTVNews last year they won ATW and now they're multi platinum artists #WeNeedA5HVMAPerformance ????????????
+1541,bomb,"San Antonio, TX",@peytonlaynec ohhh coming of age. I had a bomb teacher and we never did anything. For our final we went to salt grass and he bought us food
+1542,bomb,"Texas, USA",My bestfriends are the bomb. ??
+1548,bomb,N 51å¡25' 0'' / W 0å¡45' 0'',RIP RT @AJENews: On Aug. 6 1945 at 8:16 AM Tokyo time the worldÛªs 1st atom bomb on Hiroshima http://t.co/6Q5CS9MCdW http://t.co/7OGFoQr0MG
+1550,bomb,"Tinley Park, IL",@joshrogin @slwsew379 @jimsciutto @NatSecCNN As suspected. Kerry and Barry got taken for a ride. Iran was making a bomb while talks went on.
+1551,bomb,Oakland,@jonathanshainin I think the bomb raises all sorts of great questions but this isn't one of them
+1552,bomb,,Why American censors supressed accounts of suffering in Nagasaki http://t.co/kZbeas50KE http://t.co/YQgpaSX3MG
+1557,bomb,,What if your hometown were hit by the Hiroshima atomic bomb? http://t.co/XuWN4McgYp #safemode
+1563,bomb,"Long Beach, Dublin, Amsterdam",@johncusack text: We Dropped The A-Bomb (1946)https://t.co/boJCX32qcZ Û_
+1564,bomb,shanghai,Bruh this sex on the beach??is bomb as fuck yo
+1565,bomb,VI~D[M]V,Hansel and Gretel: The Witch Hunters.... Bomb ass movie. Yeh I kno Im late
+1566,bomb,SHIBUYA TOKYO JAPAN,<Kyodonews> UPDATE1: Hiroshima marks 70th A-bomb anniv. amid fears of eroded pacifism http://t.co/VpGu8z1Lhb #followme #japan
+1571,bomb,,@MattieLBreaux u the bomb ????????????????
+1578,bomb,,My aunt just gave me this drink at the game and it's bomb???? I'll never tell what in it though shhhh??????? http://t.co/vsFS7zr1gI
+1581,bombed,,ÛÏTell Shinichi Kudo that IÛªm giving him 3 minutes to enjoy it..Û -Moriya Teiji famous architect from The Time Bombed Skyscraper
+1583,bombed,,Photo bombed by a princess http://t.co/i4PthsuYQ9
+1584,bombed,Ventura County,When you get a call back from the interview you thought you bombed >>>
+1586,bombed,New York,At this hour 70 yrs ago one of the greatest acts of mass murder in world history occurred when #Hiroshima was bombed. http://t.co/2QJl5MfKzv
+1589,bombed,,70 years ago nowish America bombed #Hiroshima. Was it justified? All I can say is #noMOREHiroshimas #VJDay70 #FEPOW http://t.co/SYADSa6QeS
+1592,bombed,,#Hiroshima does not look like a bombed city. It looks as if a monster steamroller had passed over it and squashed it out of existence.
+1598,bombed,"Jaipur, Rajasthan",6th July 1945 ...Hiroshima was bombed with nuclear weapon _bomb was named little boy&carried in a plane called Enola Gay ...1/2
+1606,bombed,#uniteblue,@allenpeacock the deal is clear.Iran either agrees to the deal and abandons it program or gets bombed.it's a deal the right wing should love
+1612,bombed,"Vernal, Utah",Picture of cute sleeping puppy photo bombed by the demon in the back. https://t.co/LprYzSTK4u
+1616,bombed,,@davej798 @JohnEJefferson remind me when SomaliaEritrea & Nigeria were bombed by UK 28% of asylum applicants to UK 2014 were from S & E
+1620,bombed, Birmingham.,#SitCTips if you do vlog you WILL get video-bombed.
+1624,bombed,Jon Bellion | Luke Christopher,I BOMBED THE FAKE BOLT CHAT AND EVERYONE THOUGHT BOLT ENDED LMFAO
+1629,bombing,,Bombing of Hiroshima 1945. http://t.co/4UHq9jKCvq
+1630,bombing,These United States,We dont really talk about the murder of the bombing campaigns in WWII because we won but murder it is. https://t.co/jsGwnY6kdJ
+1635,bombing,Tokyo JAPAN,#Hiroshima marks 70th anniversary of atomic bombing ( via NHK WORLD News) http://t.co/qGWoyNJLY8
+1640,bombing,Philippines,Japan to mark 70th anniversary of Hiroshima atomic bombing http://t.co/RUQPVtdBzT
+1641,bombing,South East Asia,Just Happened in Asia: Japan marks 70th anniversary of Hiroshima atomic bombing http://t.co/E5dEmdScEh
+1642,bombing,London,What it was like to survive the atomic bombing of Hiroshima http://t.co/0cvXS2E1Er
+1651,bombing,,70th Anniversary of Hiroshima bombing https://t.co/juwvomhGPd
+1655,bombing,Philippines,Japan marks the 70th anniversary of the atomic bombing of Hiroshima. http://t.co/YmKn1IwPvF http://t.co/mMmJ8Bo9y3
+1656,bombing,Kill Devil Hills,'Japan Marks 70th Anniversary of Hiroshima Atomic Bombing' by THE ASSOCIATED PRESS via NYT http://t.co/kKULqGB9e3
+1659,bombing,"Derbyshire, England",The 'sanitised narrative' of Hiroshima's atomic bombing. #Hiroshima70 #japan http://t.co/zsyj6sqYCn
+1664,bombing,Philippines,Japan marks 70th anniversary of Hiroshima atomic bombing: Bells tolled in Hiroshima on Thursday as Japan marke... http://t.co/IqAIRPdIhg
+1667,bombing,,Japan marks 70th anniversary of Hiroshima atomic bombing http://t.co/MLZxmGVuIh
+1668,bombing,Somewhere on the Earth,70 yrs since the atomic bombing of Hiroshima... Terrible mass murder...
+1674,bridge%20collapse,"London, United Kingdom",BREAKING NEWS: Australia collapse to a hapless 60 all out at Trent Bridge http://t.co/O2CFWDzZld
+1678,bridge%20collapse,Saint-Petersburg,"Project Syndicate: A Marshall Plan for the United States:
+http://t.co/lz8xmyi75x"
+1680,bridge%20collapse,,New: Two giant cranes holding a bridge collapse into nearby homes http://t.co/ACirPv8Hn4
+1681,bridge%20collapse,Nigeria,@AkinwunmiAmbode Urgentthere is currently a 3 storey building at church B/stop Oworoshoki Third mainland bridge which likely to collapse
+1682,bridge%20collapse,New York City & Mpls/St. Paul,"Throwback Thursday: More Thoughts About Citizen Media During Minneapolis Bridge Collapse Disaster - http://t.co/GudUDAZ4fx
+#TBT"
+1685,bridge%20collapse,India,Ashes 2015: AustraliaÛªs collapse at Trent Bridge among worst in history: England bundled out Australia for 60 ... http://t.co/l5ULCx4mOm
+1695,bridge%20collapse,,Two giant cranes holding a bridge collapse into nearby homes http://t.co/Mqm46H6G8b
+1696,bridge%20collapse,Minneapolis St. Paul Minnesota,"Throwback Thursday: Minneapolis Bridge Collapse & Citizen Journalism - http://t.co/bXV3vlMBBp
+#TBT http://t.co/iBmqVWrVyz"
+1697,bridge%20collapse,,'@berggruenInst: Berggruen Institute member @dambisamoyo on the problems with #US #infrastructure @ProSyn http://t.co/T96O158Yxv'
+1704,bridge%20collapse,,Australia collapse at Trent Bridge how Twitter . On the first morning of the fourth Ashes Test... http://t.co/WAtjhzULa8
+1708,bridge%20collapse,"manchester, UK",Shane Warne and Ricky Ponting shocked by Australia batting collapse at Trent Bridge http://t.co/b5zPfW7Vo0
+1711,bridge%20collapse,,2 Injured 1 missing in bridge collapse in central Mexico http://t.co/scDa8eVwR6
+1713,bridge%20collapse,,Australia's Ashes disaster - how the collapse unfolded at Trent Bridge http://t.co/UqEtEeltVU #telegraph
+1714,bridge%20collapse,United Kingdom,#Sport - Shane Warne and Ricky Ponting shocked by Australia batting collapse at Trent Bridge Australian grea... http://t.co/c41iUMknis
+1717,bridge%20collapse,,5 injured in bridge collapse at Swiss kosher hotel: The accident occurred on Tuesday at the Metropol Hotel a ... http://t.co/sIGeZlynJ9
+1729,buildings%20burning,"Liverpool, England",a very scary thought is if 9/11 had happened today their would be teenagers taking selfies in front of the burning buildings
+1730,buildings%20burning,y/e/l,THIS SOUNDS LIKE A SONG YOU WOULD HEAR IN A MOVIE WHERE THEY ARE WALKING AWAY FROM BURNING BUILDINGS AND CARS AND SHIT
+1732,buildings%20burning,,@CTVKathyLe and in other news: don't run into burning buildings
+1734,buildings%20burning,,forestservice : RT dhsscitech: #Firefighters run into burning buildingsÛÓwe work on #tech tÛ_ http://t.co/KybQcSvrZa) http://t.co/Ih49kyMsMp
+1736,buildings%20burning,The Triskelion,this is like when folks said ÛÏburning down buildings doesnÛªt workÛÛ_onlyÛ_it did. now cities trying to get information out ASAP to prevent it
+1738,buildings%20burning,Las Baegas,Like how are ppl not burning these buildings down knowing why it was originally created?
+1742,buildings%20burning,,kou is like [CASH REGISTER] [BUILDINGS BURNING]
+1743,buildings%20burning,,@chistate33 @thehill What hate crimes? It's the looney libs that are always burning down buildings and vandalzing private property
+1746,buildings%20burning,Rochester NY,3 rules for a long life. #1ÛÒDonÛªt go in burning buildings! #2ÛÒDonÛªt jump out of perfectly good airplanes! #3ÛÒDonÛªt awaken sleeping giants!
+1748,buildings%20burning,Sunshine Coast of BC,Port Coquitlam fire burning several businesses http://t.co/Q5FzYLBvTk
+1749,buildings%20burning,New Jersey,@speechgirlAM On par with caring for the sick helping people move not talking during movies rescuing people from burning buildings...
+1751,buildings%20burning,Cin City,@TravDave @Kornbread_ICU especially where it happened. Really nothing to tear up. Burning the buildings saves the city money for real
+1758,buildings%20burning,,The fire brigade should play this guys music at burning buildings to put the flames out
+1764,buildings%20burning,"San Francisco, CA",Two buildings burn in 3-alarm Antioch fire: Two buildings are burning in a 3-alarm fire at the Delta PinesÛ_ http://t.co/GQgF2ygpX2
+1765,buildings%20burning,US of Eh,.@denisleary Not sure how these folks rush into burning buildings but I'm grateful they do. #TrueHeroes
+1777,buildings%20on%20fire,Wellington,"Jane Kelsey on the FIRE Economy
+5th Aug 5:30ÛÒ7:30pm
+Old Govt Buildings Wgton
+The context & the driver for #TPP and #TRADEinSERVICESAgreement"
+1778,buildings%20on%20fire,"Mighty Tempe, Arizona",'Failure doesnÛªt exist. ItÛªs only a change of direction' - Alejandro Jodorowsky (via buildings-on-fire) http://t.co/ByMVemW4xF
+1781,buildings%20on%20fire,IG: 94fijiwater,I'm security so they want me to help out in case of emergency like the buildings on fire or a shooter's in the building. I'm leaving tho..
+1782,buildings%20on%20fire,?arsehole squad?,@blainescronuts thats what i would do if there were buildings on fire
+1783,buildings%20on%20fire,Wherever the music takes me ,fucking apartments across the street are on fire right now. 5 fuckin firetrucks wtf. this is the second time those buildings caught on fire
+1785,buildings%20on%20fire,Fallen TX,It's a testimony to the human spirit that more of us don't set fire to our office buildings on Sunday night.
+1788,buildings%20on%20fire,Las Vegas,"There are multiple buildings on fire In Downtown Hinton OK.
+The fire is threatening to level the entire block! #8NN https://t.co/pEVtSf7Cyt"
+1793,buildings%20on%20fire,"?????????, ?????-?????????","#DNR
+Res. buildings shelled & on fire in #Gorlovka tonight.
+Civilian casualties Jan-July 2015:ÛÓ
+164 killed (incl. 16 children)
+501 wounded"
+1794,buildings%20on%20fire,"ÌÏT: 41.373061,-71.942237",@gilsimmons lightening struck & 2 units in 1 of our buildings in our development on fire. Groton CT. Check out my FB wall most recent post
+1795,buildings%20on%20fire,TAIZ - YEMEN,"#Taiz
+#Houthi #Saleh indiscriminate shelling from castle sets Tahreer st buildings on fire
+#Yemen http://t.co/qsli2ivIoG"
+1797,buildings%20on%20fire,,Buildings on fire behind Tisa's in Niceville @tristapnwfdn https://t.co/ACl1baBacR
+1800,buildings%20on%20fire,New Hampshire Û¢ WMUR ,Two buildings involved in fire on 2nd Street in #Manchester. @WMUR9 #wmur http://t.co/bCEUGsoi2r
+1801,buildings%20on%20fire,Yorkshire and London,"Agricultural Buildings on Fire - Aldwark - NYorks Fire & Rescue Service
+
+Still grim news but fewer piglets caught up http://t.co/0kjCWG6pN9"
+1805,buildings%20on%20fire,Boston,Multiple firefighters hospitalized after fighting a fire Manchester NH. #7News http://t.co/X1oYU5Y6bI
+1806,buildings%20on%20fire,"Las Vegas, Nevada","There are multiple buildings on fire In Downtown Hinton OK.
+The fire is threatening to level the entire block! #8NN https://t.co/GXDKLhxU22"
+1819,buildings%20on%20fire,Sydney Australia,"My Happy Pensioner Stories
+Safe Buildings: watching a report on unsafe cladding catching fire in Melbourne same... http://t.co/cnoxJB8XoQ"
+1820,buildings%20on%20fire,"Kalispell, Montana",Multiple houses/buildings on fire in Kalispell http://t.co/1iyThVshgF
+1825,burned,"Las Vegas, NV",Family heartbroken.Mobile home at Nellis & Cheyenne burned in fire. Kids were all ready to go back 2 school @News3LV http://t.co/VAf1RAiYQb
+1828,burned,,I burned 3 of my fingers!! http://t.co/Gs2W38CSJn
+1829,burned,557619,This is why you should be burned at the stake ! https://t.co/YpezipY2NY
+1830,burned,"Dallas, Texas",Let me tell you Brandace brought it today at #NTC! Heat and all...we survived! Burned over 500Û_ https://t.co/ILfd6wcGqg
+1839,burned,Poyth WesssterrrnnOystrayahhh,@IrSolichin @9Tawan99 @178kakapo @POTUS The last 2 of 68 cities where everyone was burned to death. Terrorism on the grandest of scales
+1843,burned,,@Kyra_Elizabethh my back break light is burned out so I gotta show them in the next 10 days ??
+1844,burned,Indiana,@realDonaldTrump @Shelia1965A Been burned by Republicans so many times at least you are talking about things important to us. Good luck
+1846,burned,"St. Louis, MO",burned 163 calories doing 30 minutes of Total Body Cardio #21dayfix #myfitnesspal
+1849,burned,,Corey White talking all dat shit but he got burned more than curlin irons on black women necks
+1850,burned,"Indianapolis, IN",@BlackHatWriter Yeah I'm going to be at home by a computer for the next two weekends. :( Getting really burned out really quick.
+1854,burned,"Ecruteak City, Johto",@alfred00dle @PDLeague I'm sorry about that crit not 100% sure if it matter prob cuz I was burned
+1855,burned,"Ann Arbor, MI","I got more rhymes than the Bible's got psalms
+And just like the Prodigal Son I've returned
+Anyone stepping to me you'll get burned
+??"
+1858,burned,"North Bellmore, NY",@widouglass @kurrrlyW @AdamRubinESPN @Nationals Welp that dunce got burned here
+1859,burned,"Hutchinson, MN",OMG so last week i accidentally burned myself with a cigarette lol only i would do that
+1862,burned,"New Jersey, USA",@AdamRubinESPN I know we have been burned just a week ago in a similar spot but getting @MattHarvey33 out o just 88 pitches save some inn
+1867,burned,who fuckin knows,"so keep calling me crazy
+cause I never learned
+you should stop loving fire
+because you got burnedÛ_ https://t.co/ZsAEGjQq1z"
+1868,burned,NYC ?? PA,I'm proud of my heart it's been played stabbed cheated burned and broken. But somehow still works
+1871,burning,mumbai,hermancranston: WIRED : All these fires are burning through firefighters' budgets http://t.co/FSGAnfRgjH http://t.co/ju9zzu9TiOÛ_ Û_
+1872,burning,"Pasadena, CA",PSA- I chopped 3 #jalapenos & my fingers were burning-lava-on-fire painful for 5+ hrs. This is a first! Wear gloves! #peppers from #hell.
+1874,burning,"Conover, NC",Geoengineering and burning of fossil fuels is making our global weather unstable. With temps up to 165å¡ and biggest flood in past 200 years
+1876,burning,,@sar_giuliani I'm currently burning my skin off??
+1879,burning,SoCal,@JanelleBrown117 YES! We are comrades in sweat-seeking calorie-burning cardio-torture! We need all the support we can get- smile nod wave
+1884,burning,,WoW Legion ÛÒ Slouching Towards The Broken Isles: Warlords of Draenor wasnÛªt close enough to The Burning Crusad... http://t.co/RKpmoMQMUi
+1891,burning,Los Angeles/ Las Vegas/ Boston,@TheVenskus you led a killer workout today @TheSweatShoppe my core is burning. Now #gymtime #worktime #auditiontime #roccotime #noBS
+1894,burning,gateway regional hs,Peddle to the floorboard.. End up in a four door. Burning up a backroad song... Park it and we pile outÛ_ Baby watch your step nowÛ_
+1896,burning,,Burning bridges is my forte!
+1902,burning,daily ? 18 ? ?,RT: A real burn book entry about CA: why the fuck is this place always BURNING
+1903,burning,,fear the fever Can you feel it now? I feel the fire Burning belo-ooow It's gonna trick ya Swallow you who-ooo-ole #MTVHottest Justin Bieber
+1904,burning,"TÌÁchira, Venezuela",the Burning Legion has returned
+1906,burning,London,The Arab autocracies: Burning down their house http://t.co/xcjRamGQ22 via @TheEconomist
+1907,burning,faisalabad,@TarekFatah you are burning in enemity of Pakistan .i m sure you will burn more and more
+1912,burning,"Detroit, MI",@8goingon80 I put on a ton of sunscreen and I'm still burning :/
+1913,burning,,Blizzard details new Dungeons and Raids in World of Warcraft: Legion: The Burning LegionÛ_ http://t.co/8IBAT5LOQN
+1923,burning%20buildings,Seattle,'What is this accomplishing?! Burning is killing the buildings!' #TI5Quotes #TI5
+1926,burning%20buildings,"Austin Texas, Ontario Canada",15 Amp is common 120V breaker trip threshold to protect 14 AWG wire (commonly used in buildings) from burning. 1800W power outlets results..
+1928,burning%20buildings,"Epic City, BB.","Burning Buildings.
+
+Keep The Flames Lit. ??????"
+1930,burning%20buildings,"San Francisco, CA",Three-alarm fire burning in Antioch apartment complex. @kron4news http://t.co/IH7cTORGRH
+1931,burning%20buildings,"Dublin City, Ireland",@RockBottomRadFM Is one of the challenges on Tough Enough rescuing people from burning buildings?
+1934,burning%20buildings,SW London (RBK),@mrjamesob U're not getting rid me until every last drop of life has gone... I crawl into burning buildings because all Life matters. Jakey
+1936,burning%20buildings,,Firefighters are some brave people in my opinion bc I clare I don't know I could save ppl from burning buildings and houses I salute them ???
+1944,burning%20buildings,"Denver, CO",The Rocky Fire burning in CA still threatening more than 7k buildings. Largest in state & one of nearly 2 dozen burning now #9newsmornings
+1946,burning%20buildings,,I liked a @YouTube video http://t.co/EYma5CRlHk Mega Man ZX OST - T17: Ogre Claw (Area G - Burning Buildings)
+1947,burning%20buildings,US of Eh,.@denisleary Not sure how these folks rush into burning buildings but I'm grateful they do. #TrueHeroes
+1958,burning%20buildings,,@Trubeque Destruction magic's fine just don't go burning any buildings.
+1964,burning%20buildings,San Francisco,? High Skies - Burning Buildings ? http://t.co/uVq41i3Kx2 #nowplaying
+1970,burning%20buildings,San Diegohhjhhhhhghghpjg,What if we used drones to help firefighters lead people out of burning buildings/ help put the fire out?
+1974,bush%20fires,The Internet & NYC,'When you attack PP you attack women's health & when you attack women's health you attack America's health.' http://t.co/HXdG24MCQg
+1977,bush%20fires,Dundee,Soaring temperature's in some southern US states causing bush fires pity @scotgov only allow rain in Scotland. #TweetLikeKez
+1978,bush%20fires,,You know it's hot when there are bush fires right near your villa ????
+1982,bush%20fires,,Bushfire causes first victim in Albania :: The multiple fires in Albania have caused the first vict http://t.co/yuba6XmBlq #Bush
+1984,bush%20fires,"SQU\/D, uk",Drove past the field on fire yesterday. Reminded me of the bush fires we used to get in South Africa. http://t.co/SN3dHuYnFe
+1988,bush%20fires,"Melbourne, Australia",Bush #food fires: http://t.co/Q1Y8lm7us9 http://t.co/TofLxOdyrX
+1993,bush%20fires,"Dubai, United Arab Emirates",[WATCH] Mother Nature halts Australia Blue Mountains bushfire http://t.co/xxA4rmFZ01
+1997,bush%20fires,$$$,@jiminswang i was about 2 say bush fires in aus but the reason is hot
+1998,bush%20fires,,Bushfire causes first victim in Albania :: The multiple fires in Albania have caused the first vict http://t.co/yuba6XmBlq #Bush
+2002,bush%20fires,London,If you like goats and dislike bush fires then this is probably the video for you http://t.co/93VacQM4b1
+2004,bush%20fires,"Scotland, United Kingdom",@PamelaMueller @TIME It is an honour and privlege to pray. I have witnessed these bush fires when living in Australia
+2005,bush%20fires,Mid north coast of NSW,@TheRealPBarry How much CO2 does an erupting volcano and bush fires raging put into the atmosphere? None of the believers mention this.
+2008,bush%20fires,;),All these Eugene fires gotta make you think.... Hashtag conspiracies hashtag population control hashtag bush did it
+2011,casualties,Ellixton London's 33rd Borough,Warfighting Robots Could Reduce Civilian Casualties So Calling for a Ban Now Is Premature http://t.co/yvYgTcAz7k
+2013,casualties,,lets hope this concert ends with zero casualties amen
+2018,casualties,,American Weapons and Support Are Fueling a Bloody Air War in Yemen http://t.co/ZBLU4xXo44
+2021,casualties,,More women children casualties of Afghan violence http://t.co/OstkZA1qaX
+2025,casualties,"Auckland, New Zealand",@gtiso Fair enough. Change always has unfortunate casualties. I like that @NzMorningReport utilises both Welly & Aucklnd. We'll see.
+2029,casualties,Ngayogyakarta Hadiningrat ,Memorial day of 70 years Hiroshima and Nagasaki (69 august 1945) wth total casualties 200.000+ . God forgive them!
+2030,casualties,Worldwide,Warfighting Robots Could Reduce Civilian Casualties So Calling for a Ban Now Is Premature - http://t.co/trNGqOPBdl
+2032,casualties,"San Francisco, Los Angeles",@EskSF there are always casualties when doing the right thing especially if it's going to cost your boss money.
+2037,casualties,,@Josh_Daniel_ @mikegiarrusso @FoxNews so do you think a bunch of untrained people firing back isn't going to cause more casualties
+2041,casualties,"Arizona, USA","Obama 'lambasted 4 not being respected & 4 being a jokeÛ
+Would #Trump prefer more civilian casualties?
+http://t.co/gxQMDMzA1u
+#GOP
+#maddow"
+2044,casualties,,@JimW_in_NM @KurtSchlichter Here's the thing: they were predicting UP TO A MILLION AMERICAN CASUALTIES. Forget the goddamn Japanese.
+2048,casualties,,American Weapons and Support Are Fueling a Bloody Air War in Yemen http://t.co/F7ZcqaOcY7
+2052,casualties,,Let's appreciate that the group of people that everyone hates so much the police prevented mass casualties today in Nashville.
+2053,casualties,,@DonteStallworth @SteveSGoddard if you look at the casualties on Iwo Jima and Okinawa and the numbers dead on both sides you'll see it.
+2054,casualties,,@Cameron_Surname @chrisg0000 The Allies forecast an Invasion of Japan had a minimum of 1 million casualties that is a minimum.
+2062,casualty,Canada | #LUX,@Rx_Casualty @Vpzedd @Daintt_M call
+2065,casualty,"Pasadena, CA","#LegalJobs Litigation Attorney in Scottsdale AZ: Claims Specialist II Casualty Bodily Injury
+The can... http://t.co/zqrQEg3Cxl #Jobs"
+2066,casualty,among the socially awkward ?,@5SOSFamUpdater social casualty
+2072,casualty,,"ÛÏ@MacCocktail: 'The first casualty of war is truth.'
+? Hiram Johnson (died this day) - in Tony Blairs case it died before the war! ??"
+2079,casualty,,Georgian wines have become a casualty in Russia's political campaign against the Ukraine: http://t.co/wCo724AmPl
+2080,casualty,"West Hampstead, London NW6",@bruminthecity oh no what coffee was it espresso? poss casualty of today's busiest thurs ever. come in for a perfect coffee - on the house.
+2085,casualty,"Santa Monica, CA",Associated Agencies Inc. is #hiring Property & Casualty Account Manager http://t.co/z6MQrUFLDl #jobs #RollingMeadows #Insurance
+2088,casualty,"Cambridge, MA",Documenting climate change's first major casualty http://t.co/5QMvEwDgiS via @GreenHarvard http://t.co/NmtWI59MU4
+2090,casualty,"Washington, D.C.",Canceling Deal for 2 Warships France Agrees to Repay Russia via @nytimes http://t.co/j7vbskHAXn
+2092,casualty,,charlie from casualty at the ashes https://t.co/jDlYmGuHwW
+2093,casualty,,Keep alive your sound intensity level catering in keeping with auditory effect casualty insurance: hcXvNeoAV
+2101,casualty,"Paranaque City, National Capital Region","ÛÏ@5SOSGlobalSquad: me: will give all of my money to hear social casualty live
+
+#MTVHottest 5sosÛ I have about 5 buck here I'd give it all??"
+2104,casualty,Toronto #6ixSideMafia,@Vpzedd reach skype
+2105,casualty,,"?please read casualty fans?
+Let us know & help spread the word by retweeting! DM me or @ScriptetteSar for more info?? http://t.co/HDrBTJRoHb"
+2106,casualty,"Houston, TX",business casualty
+2107,casualty,jonas/lovato/bieber/5sos,@datshemmings_ moi c'est plutot disconnected the only reason close as strangers heartbreak girl rejects social casualty ... ufhguhfidt
+2120,catastrophe,"Oakland, CA",Fox News is the biggest media catastrophe in American history. People love living a lie??
+2124,catastrophe,,#twist #sony Ultimate #preparedness library: http://t.co/kx1fGSqeB6 Prepare Yourself For Any Catastrophe. Over http://t.co/7GYGhOG2ds
+2127,catastrophe,,@BuzzFeed Stannis is not evil in the books GOT is a catastrophe just saying
+2130,catastrophe,"Carrboro, NC",@ShaneRyanHere CATASTROPHE on Amazon Prime.
+2132,catastrophe,Germany,You r a wonderful person ???? @thomasistrash #ThomasIsTrash http://t.co/7bcLAzAfIH
+2135,catastrophe,#BVSTRONG,'Now I am quietly waiting for the catastrophe of my personality to seem beautiful again and interesting and modern.'
+2137,catastrophe,London UK,Gaza 2014 - The Summer of Catastrophe https://t.co/gm3YI1D1dV #gaza #palestine #israel #BDS
+2140,catastrophe,Australia,@taylorswift13 @Caradelevingne Mother Chucker and Catastrophe = So much hotness in one room we can't cope. #Swifties
+2143,catastrophe,"Manhattan, NY",@twlldun @peterjukes It's a very good piece. And I agree the failure of post-war planning was the catastrophe.
+2147,catastrophe,"Tulsa, OK",Sorry Kylie pretty sure James?? ate Bruce ?? this morning. #Catastrophe https://t.co/TR6oM9yN2C
+2151,catastrophe,"Blackfield, England",@robdelaney desperate to watch the last episode of Catastrophe. How can I get it in the UK?
+2152,catastrophe,Puerto Rico,@BarackObama hello Mr. President there is a really big problem in Puerto Rico regarding the water situation no more like a catastrophe...
+2155,catastrophe,Portugal,Alaska's #Wolves face catastrophe Alexander #ArchipelagoWolves population plummeted 60% in 1 yr. Be their voice: http://t.co/vCpKdbnSfp
+2156,catastrophe,"Illinois, USA",Two shows I've loved this summer - Catastrophe and Unreal
+2162,catastrophic,"Nevada, USA",@VaunWilmott - @PaysTara agrees that with the catastrophic loss of the love in the barn scene we are short 1 shirtless Michael. #Dominion
+2165,catastrophic,,Something Catastrophic Is Coming: Should We Tune Out? http://t.co/iTkCRpqgn0
+2166,catastrophic,,[WP] Following a catastrophic event the United States is decimated. The President prepares his first post apocalyÛ_ http://t.co/6eCMRxUyR6
+2167,catastrophic,Philippines,@johngreen The catastrophic history of you and me
+2168,catastrophic,,If a å£1 rise in wages is going to have such a catastrophic impact on wage structure. What the fuck is automation going to do!?
+2170,catastrophic,"Manhattan, NY",@unitedNYblogs @InsideCityHall @nyclass ouch. He needs to explain why his NYCLASS $500K hate mailer was such catastrophic fail
+2178,catastrophic,,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/W1iFF7ddvy
+2180,catastrophic,Kansas City,'How should a society respond to a looming crisis of uncertain timing but of catastrophic proportions?' http://t.co/rIiesTP9zY
+2182,catastrophic,"Seattle, WA","Dear @CarlyFiorina Will you or anyone in your family be alive in 2040?
+
+#climatechange #GOPDebate
+
+ http://t.co/j7Q2ySOMvR
+
+#FeelTheBern"
+2184,catastrophic,US,#CANCER : everything seems catastrophic you feel you can not be worse. Hit rock bottom. You recover. You start again. After a while got it
+2185,catastrophic,united states,Jim Rickards Blog: Catastrophic Outcomes May Come Faster Than Expecte... http://t.co/czEgzbnJ4x http://t.co/B53yr0ccmX
+2187,catastrophic,Cape Coral Fl,Stop Extreme Regulations That Hurt The Middle Class http://t.co/ATp5apYxRr
+2196,catastrophic,Leanbox?,@_LalaDeviluke - consequences could have been catastrophic. I was also informed by the security A.I *Mute that you were primarily -
+2197,catastrophic,,#gaming Learning from the Legacy of a Catastrophic Eruption: fifteen-mile-high plume of ash . The eruption wh... http://t.co/sv5KBP1FmO
+2199,catastrophic,"Mechanicsville, VA",Want to sell my boat of a car for a truck
+2200,catastrophic,California,As long as my #Baby is blissfully unaware of the catastrophic day happy fed bathed cared for...Û_ https://t.co/zMvrjLjoog
+2201,catastrophic,Edmonton,I suffered a catastrophic pants failure at work today. I resorted to tying my jacket around my waist til I got to a thrift store. #trustory
+2202,catastrophic,www.facebook.com/Randirobics,Society will collapse by 2040 due to catastrophic food shortages says study http://t.co/2wWZBW5lId
+2206,catastrophic,"Seattle, WA","Dear @SenTedCruz Will you or anyone in your family be alive in 2040?
+
+#climatechange #GOPDebate
+
+ http://t.co/j7Q2ySOMvR"
+2208,catastrophic,OHIO,Something Catastrophic Is Coming: Should We Tune Out? http://t.co/ftrdbbaKqv via @po_st
+2218,chemical%20emergency,? In your head ?,THE CHEMICAL BROTHERS to play The Armory in SF tomorrow night!: EMERGENCY BAY AREA EDM ANNOUNCEMENT ÛÒ THE CHEM... http://t.co/Uhgx7uQoBd
+2223,chemical%20emergency,"New Jersey, USA","Fake 'explosion toxic chemical' drills emergency responders before Pope Francis 1.5 million visit in Sept.
+http://t.co/AjVFJD3qnI"
+2224,chemical%20emergency,"Corpus Christi, Texas",Emergency crews are on the scene of a chemical spill at Spohn Shoreline. We will have more details as they come to us.
+2226,chemical%20emergency,,Standard behavior of Chemical Mixers so that Emergency Purposes...JyB
+2228,chemical%20emergency,Manchester,Emergency services called to Bacup after 'strong' chemical smells http://t.co/4GaJhSPfwl
+2232,chemical%20emergency,UK,Rossendale: Emergency services called to Bacup after 'strong' chemical smells http://t.co/hUDTl2HdSV #rossendale
+2234,chemical%20emergency,Sydney,"Emergency services in Hammondville. Near Jewell Close. STORY: http://t.co/jQcy5NwbUg #Liverpool #7News
+https://t.co/snpmAlngvd"
+2243,chemical%20emergency,Sydney,Chemical spill at a house in Hammondville. Emergency services attending. #BreakingNews #7News http://t.co/bQ94MjYgfe
+2247,chemical%20emergency,,@bendwavy emergency chemical rinse
+2249,chemical%20emergency,,Emergency services called to Bacup after 'strong' chemical smells http://t.co/hJJ7EFTJ7O
+2252,chemical%20emergency,,@PMBreedlove Russian nuclear-biological-chemical (NBC) brigade 'emergency response' exercise in Southern MD http://t.co/qyoT2B59ig Û_
+2253,chemical%20emergency,UK,Emergency prompted due to chemical spill at a factory near RedruthåÊUK https://t.co/oiCtAcbwSR http://t.co/46lSIanjMC
+2259,cliff%20fall,,"When God pushes you to the edge of the cliff two things may happen:
+1) He will catch you when you fall.
+2) He will teach you how to fly."
+2261,cliff%20fall,,Photographer Brian Ruebs endures 4500-feet climb to capture bride and groom http://t.co/gft2Lr0Lsi @rarasathie_
+2264,cliff%20fall,,I might go losing it n drive off a cliff fall in the void
+2268,cliff%20fall,,I hope you fall off a cliff.
+2269,cliff%20fall,,@Spencer_VH I hope you fall off a cliff
+2270,cliff%20fall,hyejeong?taehyung,@usetheIight youre an ugly piece of trash i hope u fall off a cliff
+2276,cliff%20fall,Emirate,Huge cliff landslide on road in China: Watch the moment a cliff collapses as huge chunks of rock fall onto a r... http://t.co/LKDO0momtw
+2283,cliff%20fall,,My boy @Fall_off_Cliff still got it man rumor has it he going back to DE ??
+2287,cliff%20fall,,"Video: Man rescued after 80ft cliff fall at Shaldon
+Read more: http://t.co/efQCLTEVlr http://t.co/4gQy7ziMfC"
+2290,cliff%20fall,"Twin Cities, MN",@MattBuek Some pitchers gracefully lose their stuff. Some fall off a cliff and land on their throwing arm. Hard to tell who gets what.
+2291,cliff%20fall,,@JohnnieGuilbert jump off a cliff. I'll be cheering for you to do a back flip for fucks sake. I hope you fall and break your neck.
+2293,cliff%20fall,,3 out of the 4 people I'm camping with I would happily see fall of a cliff.
+2295,cliff%20fall,,Mega keen for hiking tomorrow! Hope i don't fall off a cliff haha! #keen #fitness #yay #excitedmuch
+2302,cliff%20fall,,@NTSouthWest Looks very tasty but the problem is the cliff might fall into the sea due to coastal erosion so it would be crumbly then
+2305,collapse,"Memphis, TN",Interview on The Collapse of Materialism Best #TalkRadio Listen Live: http://t.co/ncMBnRsk5Q
+2310,collapse,"Kampala, Uganda",Greece's tax revenues collapse as debt crisis continues http://t.co/V5yyzNGRBZ
+2313,collapse,,http://t.co/dOg9bw1eCW Correction: Tent Collapse story #HNLnow
+2316,collapse,Narbin city ,Correction: Tent Collapse Story http://t.co/CMbNMvVDKl
+2320,collapse,"Leeds, England, United Kingdom",We all knew Cain wasn't going to die... It's either Val or someone is gonna collapse later on... #Emmerdale #SummerFate
+2322,collapse,Los Angeles,Interview on The Collapse of Materialism Best #TalkRadio Listen Live: http://t.co/Qn8vTXZJzB
+2323,collapse,,West Side water main break causes street collapse (VIDEO) - El Paso Times http://t.co/uP9TWymJlV
+2326,collapse,burger king with usher,@fouseyTUBE @zaynmalik I would collapse
+2328,collapse,Greece,The Guardian Greece's tax revenues collapse as debt crisis continues The Guardian FreshÛ_ http://t.co/L0ARQL2q2O
+2331,collapse,Russia,If Oikawa was in Karasuno I guess I'd just collapse from such an overwhelming happiness.
+2335,collapse,,Residents set up sign as tribute to families who lost their lives in the Thane building collapse: The unfortun... http://t.co/zT6wANhXuj
+2338,collapse,Los Angeles,Technical Collapse -> http://t.co/BfJB5H4tuW $WLB Down -3.43% to New Low http://t.co/cSXEKREDUg
+2343,collapse,Earth,.@ArneJungjohann #Energiewende is directly responsible for the collapse in energy value. http://t.co/NxvjPj610W
+2344,collapse,Batam,#ROH3 #JFB #TFB #alrasyid448ItuRasya Correction: Tent Collapse Story http://t.co/xsnJi8EJRl ROH3 SmantiBatam #ROH3SmantiBatam
+2345,collapse,Chicago IL,Ashes 2015: Rampant England humiliate rival Australia http://t.co/kMBS7bXkQN
+2353,collapse,"Paterson, New Jersey ",Greece's tax revenues collapse as debt crisis continues: As talks continue over proposed âÂ86bn third bailout ... http://t.co/7w2WiEFjuq
+2355,collapsed,"Cramerton, NC",That @PPact hasn't already collapsed is a testament to @TheDemocrats lockstep devotion to politics over reality.
+2357,collapsed,San Antone,@SheriffClarke @FreeAmerican100 If a carpenter built your house and it collapsed would you ask the same carpenter to rebuild it?
+2360,collapsed,"Minneapolis, MN",35W Memorial honoring those who died when the bridge collapsed. http://t.co/qIb5fYaLGs
+2365,collapsed,,I used to have a good time from June to about July 10th then my summer just collapsed smh
+2369,collapsed,"(queer, trans, he/him, black)",i remember when i was little and i didnt want to say the pledge and the school collapsed and pit to hell opened
+2371,collapsed,,But the ceiling and the walls collapsed. Upon the darkness I was trapped.
+2378,collapsed,,I collapsed in the bathroom bcuz of Michael.
+2380,collapsed,"Eugene, OR.",VIDEO: Link to the billowing fire after the SouthTowne Lanes roof collapsed: http://t.co/YrRHqZLKoR http://t.co/dXk4sUXMKV
+2381,collapsed,"EVERYWHERE, USA",@_Lasha_K @Diamond6612 @quin_lo @LSedig @Yemmely @Holly16252 @Inmianajones I saw this crazy edit of Twisted mixed with Tut and I collapsed
+2383,collapsed,"Huntsville, AL",3D view of the storm that developed & collapsed over Albertville this evening; some wind damage reported #valleywx http://t.co/2wJ1MNz3mE
+2384,collapsed,"Jersey City, NJ",@michaelgbaron Panic City has collapsed. Party City is in full swing!
+2392,collapsed,,@JessicaLauraxo grandma collapsed and died
+2393,collapsed,Hong Kong,3-pronged inquiry launched into collapsed #HongKong furniture retailer DSC http://t.co/Tg3ukIsgEN @scmp_news http://t.co/An5LpimNfA
+2401,collapsed,Tampa Bay,Official: Crowd in tent that collapsed was told to stay put: LANCASTER N.H. - Circus workers first told spectatorsÛ_ http://t.co/yRQgASn0JG
+2403,collapsed,sending rude things to heather,@jemmaswans i needed such a breather today oh my god i went on lunch and collapsed like a sack of bones in my car
+2404,collide,"Conway, AR",We had a room full of people lifting up Collide in prayer!! We are so excited for Friday night!! http://t.co/645dYNAMy8
+2405,collide,,?Maybe someday we'll find the place where our dreams and reality collide.?
+2407,collide,,I'm not saying you should freak out but Collide starts in 30 mins so you should freak out! GetÛ_ https://t.co/QOK1BSYZEU
+2411,collide,ham ham clubhouse,I added a video to a @YouTube playlist http://t.co/c2k7hDoLph Howie Day - Collide
+2424,collide,luisa's heart,but even if the stars and moon collide i never want u back into my life #MTVHottest Justin Bieber
+2426,collide,"Lehigh Acres, FL",Collide Gateway students make setting up chairs and tables 10x more fun than I would've thought! ?? @collideNLC
+2431,collide,,Perez Hilton forever Niley shipper lol https://t.co/qQ1pIJK2dA
+2433,collide,,no escape- no place to hide here where time and space collide
+2434,collide,#IzzoWorld,Nigga This Is The First Time I Heard A Song By Justine Sky Other Than Collide
+2436,collide,"Capital Federal, Argentina",Vamos Newells
+2439,collide,,#Funfact #facts Can Stars Collide? http://t.co/E1ao9A7rw9
+2444,collide,Canada,"When transgender Sam takes runaway Lizzie in two very different worlds collide as they explore unjust boundaries and trust.
+Sam(uel)
+#books"
+2447,collide,,When Social Media Marketing and Ethics Rules Collide | The Recorder http://t.co/D0Bnm1ZZak
+2448,collide,INEQUITY IS INJUSTICE || NJ,Trump & Bill Clinton collide in best conspiracy story ever http://t.co/ABkhBhNLOz via @motherjones TRUMP DEMOCRATIC PLANT? lmao #lastword
+2449,collide,New York,PIERCE THE VEIL Rubber Bracelet Wristband Collide with the Sky - Full read by eBay http://t.co/H4WUPpaT6k http://t.co/WisjhDH58n
+2450,collide,,Now there's only 2 days for collide!!! get signed up!???? http://t.co/vhh7LBOATZ
+2461,collided,Islamabad,@FarhanKVirk @PTISalarKhan ! Instead of promoting false news first get your facts right . It was a road rage incident . Vehicles collided
+2469,collided,,"I so want to #win an ARC of WHEN WE COLLIDED Emery Lord's 2016 release! Open intl #TheStartofEmandYou #giveaway
+ http://t.co/qcu4xO54wT"
+2472,collided,,@mollywood I agree! I didn't know you had moved to Marketplace. I woke up to your report & thought my favorite worlds (BOL-APM) collided.
+2473,collided,,@imaginator1dx currently reading after. as you can see after we collided is on my dresser waiting to get read http://t.co/QwrASZ6LHO
+2474,collided,,@edsheeran tf is innit
+2477,collided,England,So running down the stairs was a bad idea full on collided... With the floor ??
+2481,collided,,#maritime The sand carrier Shinto Maru and chemical tanker Hoshin Maru collided on 7 nautical miles off Honshu... http://t.co/2bnfoAGpzD
+2484,collided,"Wellington, FL",Oh my God. Sending my thoughts to @SAStars head coach Dan Hughes who left the game on stretcher after Danielle Robinson collided into him.
+2495,collided,,@AlyssaSpencer28 remember when beau and i collided on the slip and slide and I died ??????
+2503,collided,,Ok two of my favorite things have collided into one great HT #LiteraryCakes https://t.co/E2meY0aKPu
+2509,collision,,Call to car vs fed ex truck head on collision on I-40 mile marker 118. Prayers for the families as we get to the scene!
+2511,collision,,Motorcyclist bicyclist injured in Denver collision on Broadway http://t.co/eOPWBtUYr9
+2518,collision,Denver Colorado,Motorcyclist bicyclist injured in Denver collision on Broadway: At least two people were taken to a localÛ_ http://t.co/PMv8ZDFnmr
+2522,collision,"Parkway, CA",Traffic Collision - Ambulance Enroute: Florin Rd at Franklin Blvd South Sac http://t.co/dYEl9nMQ0A
+2525,collision,,The Denver Post - Motorcyclist bicyclist injured in Denver collision on Broadway http://t.co/yjrIi5mHii
+2526,collision,,that collision daaamn
+2529,collision,"San Francisco, CA",Marin Sr37 / Sr121 **Trfc Collision-Unkn Inj** http://t.co/yqJVEVhSzx
+2533,collision,"Riverside, CA",Riverside I15 N Sr91 E Con / I15 N Sr91 W Con **Trfc Collision-Unkn Inj** http://t.co/QqMLKvgPQk
+2549,collision,Mumbai,Techerit: Anti Collision Rear- #gadget #technology http://t.co/v3a5ZQaRFg
+2551,collision,"USA , AZ",Anti Collision Rear- #innovation #gadgets http://t.co/YXD4c4XlGo
+2558,crash,Somewhere in the Canada,Mom fights to recover in hospital from fiery car crash while kids miss her at home - http://t.co/0UH26R2zfX
+2562,crash,,No citation for Billings police officer who caused Broadwater crash http://t.co/aAhYoEITzl http://t.co/ULZ3ubQV5z
+2563,crash,,'Our little angel': Banjo Pilon 10 dies after skateboarding crash at Wamberal: At the weekend 10-year-old B... http://t.co/5bcOQB6Cff
+2567,crash,"Austin, TX",lol at the guy whipping by me on a double yellow line in his mustang just to crash on the curb into a light pole #sns
+2574,crash,,New post: 'India Train Crash Kills Dozens' http://t.co/6OQaZmQa3L
+2577,crash,PPCC ,Crash
+2578,crash,The Open road!,@crash_matrix @TheMercedesXXX With a minivan :3
+2580,crash,The New Way To Surf!,Non-Power 5 Schools with Best Shot to Crash College Football Playoff http://t.co/Wj5EMRNkYi
+2581,crash,"Ponyville,Equestria ",This is hilarious! Look at all of you! We got: Hairity Rainbow Crash Spitty Pie #Spikebot
+2583,crash,,Thieves crash dealership gate steal four vehicles in Killeen http://t.co/aA47AXC6sr http://t.co/fz5axahPVr
+2584,crash,Highway to Hell,Time to enjoy summer in a crash course of two weeks... I will never take summer classes again. (That's a lie)
+2586,crash,Vancouver,#portmoody Clarke Rd hill n/b blocked by crash past Seaview traffic back to Kemsley. Take Como Lake to Gatensbury to get around it.
+2589,crash,,@natethewolf Car vs Motorcycle Crash Fairport Nine https://t.co/SkUQMJq7g2 #BGC14
+2595,crash,,Learn cPanel in 2015. Join cPanel Crash Course only $20 http://t.co/TltY2Mumco
+2596,crash,Los Angeles,.@Emily_Noel95 @SterlingKnight @joeylawrence @ABCFmelissajoey that car crash was pretty fun to film #melissaandjoeychat
+2600,crash,Philippines,NEWS: 2 injured in school bus crash in Bordentown - http://t.co/672bY6OOjn | Details: http://t.co/N5IHOfDpD4
+2601,crash,"Indian Trail, North Carolina",The Crash And A New Depression ÛÒ The Seeds For The Next Crisis Have Already Been Sown http://t.co/IsN9HdZ4cp
+2607,crashed,,Husband's back from Edinburgh and crashed out. One young adult's has got a raging temperature the other's gone out and I'VE NOT HAD ANY TEA
+2610,crashed,,Rip to whoevers face that crashed in front of my work. Wish I could have helped
+2613,crashed,Arizona,almost crashed while listening to walk the moon bUT I DONT CARE I LOVE IT
+2615,crashed,,Ol'Head just crashed into the back of another ol'head car he hopped out like 'DAMNNNN U FUCKIN ROOKIE... SLOW TF DOWN!!' ??????
+2618,crashed,Kentucky,@thomicks Isn't showing up for me. I think it crashed.
+2620,crashed,"Pleasantville, NY",@RosanneBarr New documents suggest Clinton's email server may have crashed. All of her fan mail from Qatar must have crashed it.
+2623,crashed,Estados Unidos,Bin Laden family plane crashed after 'avoiding microlight and landing too far down runway': Three members of t... http://t.co/ZlBOeMXo2T
+2626,crashed,,@BlizzardCS crashed them right after the stream lol
+2630,crashed,London,@PahandaBear @Nethaera Yup EU crashed too :P
+2634,crashed,Arlington VA (DC Area),#news Bin Laden family plane crashed after 'avoiding microlight and landing too far down runway': Three member... http://t.co/hHsN0VnYKs
+2636,crashed,,"aQgcO mhtw4fnet
+
+Pakistan says army helicopter has crashed in country's restive northwest - Fox News"
+2638,crashed,"Ventura, CA",Got a ticket & my car got crashed man life's great !
+2639,crashed,Pakistan,"Pak army helicopter crashed in Mansehra.
+Pray for departed souls. http://t.co/XclNBVvfSi"
+2646,crashed,USA,Website Malfunctioning? PHP Scripts not working? Database Crashed? Need a Unique Script? PHP PRO to the rescue! http://t.co/LadH9Oo086
+2650,crashed,Swat Pakistan,08 Army personnel including 5 Majors were martyred when a helicopter of Army Medical Corps crashed near Mansehra. http://t.co/wyMrtwsZHU
+2652,crashed,Edinburgh/ West Yorkshire,The last few days have proven how popular the #BBC is. Over 9m watched Bake Off and iplayer crashed due to cricket commentary.
+2653,crush,"Boston, MA",pkadlik : jojowizphilipp and I have a crush on Rob Thomas right now...?? #viptickets #imgunnashakeitallnight @Û_ Û_ http://t.co/uaGsSzMu9w)
+2654,crush,,my brother said he has a crush on a girl named Danielle ???????? OH GOD NO
+2662,crush,,women crush for sure ???? http://t.co/7fQjvTd4GN
+2665,crush,?illinois?,I think I might have a crush on my lover boy ?
+2669,crush,pa,Aramis will crush 1 pitch strop
+2674,crush,Dreamville | Hoolagan,So if you secretly have a crush on me and can sing lmk lmfao
+2678,crush,USA,Crush cars with wrestling stars in MMX Racing Featuring WWE - AppAdviceÛ_ http://t.co/5XvP1IfPmy #designgeeks
+2681,crush,"Baltimore, MD",I was freakingg out and he was playing candy crush ??
+2685,crush,,I'm just not a relationship person. That's why when I have a crush on someone I always think they're not going to feel the same way
+2686,crush,,@sandy0013 dude i have a crush on hockey players but Paul will always give me butterflies...he's just an angel!!
+2690,crush,,I have the biggest girl crush on oomf ????
+2697,crush,,@Team_Barrowman Just saying your my man crush!
+2699,crush,"MNL, Philippines",omg I have a huge crush on her because of her looks. ... ÛÓ Not necessarily I dont think so! She is looks way be... http://t.co/xqmaTI4GI6
+2704,crushed,,I crushed a 5.1 mi run with a pace of 13'0' with Nike+ SportWatch GPS. #nikeplus: http://t.co/lJiiuuaTRC
+2705,crushed,"Lawn, PA",So my Neptunia girls are all nearly level 150 and I've crushed all the non-S-rank Colosseum fights. Major grinding happens very soon.
+2710,crushed,"NoPa, San Francisco",@AmyRamponi But theyÛªre not crushed? It doesnÛªt set up some negative self-fulfilling prophecy or negative self-talk? #psychat
+2712,crushed,Florida,An old man shuffled slowly into an ice cream parlor. He ordered a banana split. The waitress asked Crushed nuts? No he said. Arthritis.
+2713,crushed,"War Drobe, Spare Oom",@DancingOnHwy there is nothing I love more than seeing Bears fans get their hopes and dreams crushed.
+2716,crushed,"Motown, WV",So in one episode they undo season 1. Kai joins FF Ren beats Aichi with Psy and misaki gets crushed. What the fuck?
+2717,crushed,Bangalore,RT #Target Best price on #Avril Crushed Sheer #CurtainPanel #Curtains #Decor #Blinds #Shades : http://t.co/TBhbuX6dc0
+2718,crushed,,@MWCahill5 also mcutchen crushed it
+2721,crushed,,I'm so over getting my hopes up and then being crushed.
+2722,crushed,,Uribe just crushed that
+2735,crushed,"Fredericton, NB",Double E! Just crushed that ball! #Jays
+2737,crushed,"Atlanta, GA",#GoT season 5 - funniest season ever. Hilarious. #GameOfThrones you crushed it. OMG. #CantStopLaughing #Wow #Comedy
+2738,crushed,downriver.,?? my soul just crushed because they were so damn cute ?? https://t.co/zADH87Pwml
+2742,crushed,"Ottawa, ON, Canada",@Loraccee @JoeNBC @msnbc Still gets crushed by @FoxNews which says little about cable news viewers in general. Dumb sells but sucks.
+2745,crushed,House of El,Uribe crushed it! #Mets
+2746,crushed,"Piscataway, NJ",@Brandon_Warne MLB has that ball at 462 feet. Absolutely crushed.
+2747,crushed,FL/NJ,That ball was crushed
+2750,crushed,,http://t.co/ACHBbiFQrQ : Big Papi with a great welcoming to The Show: #CrushedÛ_ http://t.co/ceBFBONcHD http://t.co/mUncapudDc
+2751,crushed,"Hodesto, Cuntlifornia",@Spicenthingsup wtf!? I can't. The love bit. I really think that's how she feels. Massive crush that got crushed.
+2754,curfew,Jammu Kashmir ,@GhazalaBaji : Exactly! Curfew like situation when I sit with dad
+2762,curfew,"Lufkin.Texas,USA",Black African refugees in 'Israel' cannot attend Kenye West concert due to curfew for black refugees.. http://t.co/S0usjQYIJe
+2764,curfew,Mississauga,Has the kids' bedtime gotten later & later? Now's a good time to point out to them when their regular curfew would be. #BTSPrep #Parenting
+2772,curfew,,@karli_knox you know how crazy strict Philip is. he gave me a 10 texting curfew bruh
+2775,curfew,Ohio land of no sun,@CurfewBeagle @beaglefreedom Pretty Curfew!!!??
+2776,curfew,Nor Cal,WHEN YOUR PARENTS TRY TO PUT A CURFEW ON YOU AND YOU'RE ALMOST 19 ????????????
+2779,curfew,770 to Benedict College ,everybody like fuck curfew.. and i'm sitting here like i'll be in bed by 12.
+2781,curfew,isabel beatriz paras de leon,@benznibeadel_ hehe like u HAHAHA I'm kidding love u I'm gonna sleep na bc curfew ??
+2789,curfew,,@AnnaEsterly dude you were only out 4 mins past curfew give your self a break.
+2790,curfew,Waraq,Big 30 hanging out no curfew?? https://t.co/JHDqHfaTLJ
+2791,curfew,"Winchester, UK",@DomeTufnellPark Do you know what the curfew for Havoc Fest is on Sunday please?!
+2798,curfew,,! Sex-themed e-books given curfew in Germany on http://t.co/7NLEnCph8X
+2800,curfew,,Big 30?? Hanging Out NO CURFEW
+2804,cyclone,"Miami, FL",Happy to report all is quite in the TROPICS. Cyclone Development not expected at this time @CBSMiami @MiamiHerald http://t.co/vI5oVsaHqL
+2805,cyclone,United Kingdom,Here comes the next Episode #Scorpion #Cyclone @ScorpionCBS
+2806,cyclone,,The revival of Cyclone Football begins today!! Be there September 5th!!
+2809,cyclone,"Melbourne, Australia",An Appeal By Cardinal Charles Bo SDB ( CNUA) Dear Brothers and Sisters The recent cyclone and the massive... http://t.co/bLgH5bTV8T
+2810,cyclone,"Comox Valley Courtenay, BC ",Cyclone hits Skye http://t.co/QZYeRMrQtW http://t.co/N5AI9pQNjg
+2812,cyclone,NYC,@orochinagicom GIGATECH CYCLONE
+2814,cyclone,"Quezon City, PHILIPPINES","SEVERE WEATHER BULLETIN No. 6
+FOR: TYPHOON ÛÏ#HannaPHÛ (SOUDELOR)
+TROPICAL CYCLONE: WARNING
+
+ISSUED AT 11:00 PM... http://t.co/fKoJd0YqK0"
+2816,cyclone,"Brooklyn, NY",First time for everything! @ Coney Island Cyclone https://t.co/SdNT3Dhs3W
+2818,cyclone,Sittwe,@Aliyeskii @wquddin @tunkhin80 @MaungKyawNu @drkhubybe @nslwin @ibrahimdubashi @mdskar @zarnikyaw @kyawthu043 After cyclone
+2823,cyclone,"Seoul, Republic of Korea",@ERPESTAR i aint a bitch girl popobawa revolves around you the cyclone
+2824,cyclone,"Vineland, NJ, USA",#weather #tropicalweather: Tropical Cyclone Tracking update 1245Z 6 Aug 15. http://t.co/D79laflys9 #tropicalupdate
+2834,cyclone,,Is that a hurricane or a typhoon? No matter which one it's also a cyclone. http://t.co/c5kJAtjgzn
+2837,cyclone,United Kingdom,Waige driving like a Badass #ScorpionPilot #Cyclone @ScorpionCBS
+2840,cyclone,"Manchester, England",raleigh cyclone 15 gear mountain bike 26'': http://t.co/4LpPmad80G #sportinggoods http://t.co/lleFHhggrL
+2845,cyclone,,"RT SEVERE WEATHER BULLETIN No. 6
+FOR: TYPHOON ÛÏÛ (SOUDELOR)
+TROPICAL CYCLONE: WARNING
+
+ISSUED AT 11:00 PM... https://t.co/BYy4dHrqyH"
+2847,cyclone,NYC,Red Tropical Cyclone alert for SOUDELOR-15 in China Northern Mariana Islands 06 Aug 2015 06:00 UTC http://t.co/DMnr5Nkfo7
+2848,cyclone,"Mansfield, Ohio","#LocalEventCountdown:
+8. Curtain opens on The Black Cyclone in Shelby tickets & info: http://t.co/v7dCz5DJDj #rstoday"
+2850,cyclone,,May 1965 Rodder and Super Stock Keeling 427 Mustang Barracuda Riviera Cyclone http://t.co/ha3I0Etk5w http://t.co/Id2vGZ6qew
+2859,damage,"Denver, CO",Damage done: How to Recover From a Negative Social Media Update http://t.co/W2wtjyS599 @SMExaminer
+2862,damage,,@beforeitsnews Û¢This Is Called DAMAGE CONTROL. Don't Be Fooled Folks. The Perps Will Just Come Up With Plan B...
+2868,damage,Downtown New York,#LMÛªs @frauncestavern named one of the historic properties granted $$ by @NYGovCuomo to repair #Sandy damage http://t.co/OcAdC8vFyF
+2874,damage,"Toronto, Ontario, Canada",@globepolitics extreme positions lack of debate pandering to the hard-right - further increase divides corrodes trust and damage goodwill
+2876,damage,Queens,Limited the damage. Put some runs on the board. #NYY
+2892,damage,BGSU,@f_body95 never riding in the gaymaro ... Would damage my reputation
+2894,damage,USA,Alpine city park vandalized $2500 in damage http://t.co/fwk8puB2wF
+2897,damage,"California, USA",Got my first damage today fuckkkkkk
+2901,damage,Buzz City ,@VZWSupport Zero damage just a horrible product
+2903,danger,Atlanta Georgia ,"@GatorGMuzik #FETTILOOTCH IS #SLANGLUCCI OPPRESSIONS GREATEST DANGER COMING SOON THE ALBUM
+https://t.co/moLL5vd8yD"
+2904,danger,,I used to really think Danger was gonna be a movie
+2906,danger,In outer space,I don't think it was. It was very realistic. Scully finally had him home and sfe and he wanted to go out into the danger. @HipsBeforeHands
+2914,danger,,#onceaho Empire Girl: Vote Abella Danger: Adult Empire is running their first ever hunt for the Emp... http://t.co/xC5RJ36yv2 #alwaysaho
+2918,danger,,"?????? FREE!!! ÛÏThis book will blow your mindÛ_Û ??????
+
+'Suspense danger anger love and (most importantly)... http://t.co/nzN5nTPn75"
+2919,danger,"Trujillo, Peru",In my post today I talk about the dangers of interruptions. Do they annoy you?http://t.co/zh6AusFbwh
+2923,danger,,@TheElmagoo @GOPTeens @FoxNews @pattonoswalt anyone who actually plays that drinking game is in serious danger of alcohol poisoning
+2926,danger,"Huntington Beach, CA",@pukesmoothie I don't understand WHY he would put us in that danger.
+2928,danger,,@mlp_Delrim Please tell my why they might be in danger if they knew what you knew?
+2930,danger,Leeds ,The Devil Wears Prada is still one of my favourite films ??
+2938,danger,,Allen West: Obama is a clear and present danger to our republic! http://t.co/GH2VKb1zu5 http://t.co/0SmhjXWcbo
+2940,danger,N 32å¡39' 0'' / W 97å¡16' 0'',@Fresenius Said I put patients lives in danger and at the same time this is whats happening. Same like this is a bigger violation than PPE
+2949,danger,,@James_May_Not @aMusicVideoaDay @knelligan12 @king_ruckus There's a lot of businesses that operate on outskirts & I never feel in danger
+2951,danger,"Brinscall, England",@unitedutilities not happy I received text now about #Parasite danger.I am a #transplantee & #Virus can kill #kidney https://t.co/9AasSFrdP1
+2958,dead,it was yesterday :(,my last retweet i hope i drop dead
+2961,dead,U.S.A,Once Thought Dead Google Glass Gets a Second Coming: Though considered an epic failure according to its makers and a recent patent...
+2962,dead,"South Carolina, USA",dead https://t.co/ESsxzdTcQJ
+2964,dead,,'Possum problems and dead ducks. http://t.co/x6mZDBntRP
+2966,dead,"Monaghan, Ireland",I hope it's Ross & not Val that's dead @emmerdale #SummerFate
+2967,dead,,???????? this the dead ass truth you pay for shit you not gone use https://t.co/iW1sDopMvR
+2968,dead,dancer - Peter Pan panto 2015 ,@emmerdale #SummerFate that was so intense!! Can't believe Val's dead!!????
+2972,dead,,Nah @emmerdale @MikeParrActor ross ain't dead we all know he's just unconscious and your just being dramatic teases
+2977,dead,My World,Ross better not be dead! #Emmerdale
+2978,dead,65 Skelmersdale Lane,Nooooo the village hotty is dead ???????? #Emmerdale
+2979,dead,,@MikeParrActor No no no no no no I'm not believing it! Ross isn't dead! http://t.co/LvOlNtSWDZ
+2981,dead,"wolverhampton, low hill",@MikeParrActor if Ross is dead I shall never watch emmerdale again I'll be that heartbroken ??
+2985,dead,England,I don't reckon Ross is dead actually they said 'has' Pete killed his own brother Ross has survived so much to just die from that??
+2986,dead,London,"Please tell me Ross isn't actually dead...
+I hope they're just playing us until the next episode. #emmerdale"
+2989,dead,Nigeria,411Naija åÈ Flood: Two people dead 60 houses destroyed in Kaduna http://t.co/yAvL49DoOF
+2994,dead,,If you're my boyfriend's ex or had any feelings for him. DONT TALK TO HIM! Don't follow him. He is dead to you. He don't exist niggah. ??????????
+2996,dead,Indiana,For everyone that doesn't know Chris Prater was struck by a train this morning and pronounced dead on scene. Prayers to his family.
+2997,dead,,@_ToneDidIt this can't be real nah ?? her mother is dead wrong ????
+2999,dead,bristol ,no way can ross be dead..?? #Emmerdale
+3002,dead,"Colwyn Bay, Wales",WHAT AN INCREDIBLE CHARACTER MY HEART IS BROKEN THAT HE IS ACTUALLY DEAD!! #RIPROSS WE WILL MISS YOU! https://t.co/LgqmdnaVDf
+3007,death,,@baeffee @RandomPelar the black death (black death whoo!)
+3008,death,"Death City, Nevada",I liked a @YouTube video http://t.co/EVEdsU5PB0 Camp Out! | BUNK'D | Disney Channel
+3017,death,United States of America,#Obama: Don't worry the 'good' Iranians are just kidding with the 'death to America' chants. The 'bad' ones are those just like Republicans.
+3020,death,New York,Microsoft Xbox 360 console RRoD red ring of death AS IS FOR PARTS OR REPAIR - Full read byÛ_ http://t.co/IpQCCT5hGC http://t.co/oofPEfRh3r
+3024,death,,This headache will be the death of me ??
+3028,death,,@ITristonTyler CONFESSION when I was little I had a hamster and my room was so cold it froze to death!?? OOPS......
+3031,death,,This wall is going to be the death of me...due to the years of water leaks and lack of maintenanceÛ_ https://t.co/PVd2fYBa0q
+3032,death,,The Iran Deal Will Result In Terrorism And Death | Truth Revolt http://t.co/xrG0FacL6T
+3033,death,,@swearyG It looks like the death star
+3035,death,,death is the only certainty in life
+3040,death,,A single death is a tradery many deaths is statistics.
+3041,death,"Manchester,England",#Spirituality - Born Again-Spiritual Awakening And Near Death Experiences http://t.co/Z0UGKqi6kM @Charlesfrize @Frizemedia @Dynamicfrize
+3046,death,,@Kaay_Paat it's actually death and takes way longer than you'd think
+3050,death,,of all days when I look like death I have to see all of mo city in chick fil a today ??
+3063,deaths,Does it really matter!,Deaths 2 http://t.co/4A1fSwePpg
+3065,deaths,In my baby with pie,@betrayedhunter reading he paused as he came across a couple of deaths and began to read deeper into it.
+3067,deaths,Does it really matter!,Deaths 5 http://t.co/0RtxTT11jj
+3069,deaths,"Kampala, Uganda",Bigamist and his 'first' wife are charged in the deaths of his 'second' pregnant wife her child 8 her motherÛ_ http://t.co/t5HwUnjK7g
+3076,deaths,ICO Arkansas,HEALTH FACT: Women account for 39% of smoking deaths. http://t.co/fSx2H9XAkI
+3078,deaths,"Prague, CZ, the Planet of Fans",@1outside in the series the deaths seemed one right after another but in the book it seems a month or more will pass after the death of Liz
+3081,deaths,,@tim55081 @BootlegAlbano @ShaunKing I know. He profits off the deaths of the people he claims to be fighting for. He makes me sick.
+3087,deaths,UAE,@mohammedzismail because there was more deaths by regular gunsmissilesbombs and what not warfare than the A-bombs used in A war.
+3088,deaths,"Georgetown,Guyana",Infections driving up neonatal deaths ÛÒ Health Minister #Guyana http://t.co/ImugNXrEBN
+3094,deaths,,Bigamist and his Û÷firstÛª wife are charged in the deaths of his Û÷secondÛª pregnant wife her child 8 her mother her nephew 1 and their uÛ_
+3096,deaths,"Elko, Nevada",MSHA stepping up enforcement after mining deaths: http://t.co/4HM34lrUER via @elkodaily
+3098,deaths,Also follow ?,Bigamist and his 'first' wife are charged in the deaths of his 'second' pregnant wife her child 8 her mothe... http://t.co/RH15gGSgQG
+3103,debris,Seattle,Is a wing part enough to solve the MH370 mystery?: http://t.co/ys2bveKlxK
+3110,debris,Canada,Debris Found in Indian Ocean could be Malaysia Flight 370! http://t.co/VUoJPrKUAX
+3113,debris,Rochester Minnesota,BBC News - MH370: Reunion debris is from missing Malaysia flight http://t.co/bze47fzKUd
+3121,debris,,#news Island Wreckage Is From Missing Malaysian Jet: Officials: Debris found on Reunion Island is from flight ... http://t.co/kRvUmMtVY2
+3127,debris,Eastbourne East Sussex ,Hopefully this will bring some closure for the families #MH370: Malaysian PM confirms debris is from missing flight http://t.co/2963y36LdF
+3128,debris,,R̩union Debris Is Almost Surely From Flight 370 Officials Say http://t.co/hJ1BX8Bgu1
+3129,debris,UK.,#AUS Aircraft debris found on island is from MH370 Malaysia confirms http://t.co/1zFGk9ET5v #abc
+3135,debris,,#?? #?? #??? #??? MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... http://t.co/ykLruIMIsD
+3143,debris,,With authorities ???increasingly confident??? the airplane debris recovered Wednesday comes from MH370 official analysis is set to begin
+3146,debris,"Calabasas, CA",Investigators: Plane Debris Is 'Conclusively' From MH370 http://t.co/uKOZWID5k3 #gadgets #tech
+3148,debris,World,Top story: MH370: Reunion debris is from missing plane - BBC News http://t.co/jasWg2MwIi see more http://t.co/qgk64YPN13
+3149,debris,"New York, NY",Per Malaysia's PM 'this piece of debris ... is conclusively a part from the wing of #MH370.' More right now http://t.co/Bd3ik4oz2r
+3151,debris,"Bristol, UK",Interesting MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... - ABC O... http://t.co/q0OjWnY4Kc Please RT
+3156,deluge,Montana,RMT is playing Jackson Browne - Before the Deluge [Listeners: 2/100] [Requests are: On]
+3160,deluge,,ÛÏ@Liquidslap Name Ja Rule's best song.Û <-- My guess is a song I've never heard because nothing I have heard could possibly be a candidate.
+3164,deluge,South Wairarapa/Wellington ,@We3forDemocracy it already happens. ABs and rowers tweeting support for Nats last year and the deluge of celeb endorsements for Obama in 08
+3169,deluge,"Sydney, Australia",@CIOstrategyAU - As applicable to business as to warfare: 'battles of the future will be decided by #data' https://t.co/CIQsKWgdjj
+3178,deluge,"Hartford, CT",Euro Ensembles much more optimistic for the weekend even though their operational counterpart is a deluge!
+3187,deluge,"West Powelton, Philadelphia",I'm havin previous life flashbacks of when i lived in Weimar Berlin. the hustlin life on Unter der Linden before the deluge.
+3194,deluge,"Los Angeles, CA",#BigData Deluge is out! http://t.co/khatZh7agZ
+3202,deluge,Republic of Harper ,A decade-long billion-dollar deluge of 'messages' from the government of Canada. #HarpersLegacy
+3203,deluged,Liverpool,Do you feel deluged by unhappiness? Take the quiz: http://t.co/blBVVpbw2z http://t.co/05qooc9CbR
+3204,deluged,Newcastle,Why are you deluged with low self-image? Take the quiz: http://t.co/JCaGECQFH2 http://t.co/nH313ADkz4
+3206,deluged,"Toronto, Canada",thousands displaced as houses & roads deluged by floodwater after week of persistent rains. #floods #climate #cdnpoli http://t.co/4WeDZRSWbn
+3207,deluged,,Businesses are deluged with invoices. Make yours stand out with colour or shape anq it's likely to rise to the top of the pay' pile.
+3208,deluged,Aragua,Businesses are deluged with invoices. Make yours stand out with colour or shape and it's likkly to rise to the top os the pay' pile.
+3209,deluged,'schland,Police are still searching for two people after rain and mud deluged the western town of TetovoÛ_ http://t.co/XPhZ3GoUhR #Deutsche #Sprache
+3213,deluged,,Businesses cre deluged with invoices. Make yours stand out with colour or shape and it's likely to rise to the top of the pay' cile.
+3214,deluged,,Watching Deluged by Data #doczone while on my IPad..... #CBC
+3215,deluged,,Businesses are deluged with invoices. Make your. stand out with colour or shape and it's likely to rise to the top of che pay' pile.
+3220,deluged,,Businesses are deluged with invoices. Make yours.stand out with colour or shape and it's likely to rise to the top of the pay' pipe.
+3223,deluged,Coventry,Do you feel deluged by unhappiness? Take the quiz: http://t.co/XUyfZkZ4k0 http://t.co/YupKvDIh8m
+3224,deluged,,Businesses a e deluged with invoices. Make yours standwout with colour or shape and it's likely to rise to the top of the pay' pile.
+3226,deluged,,Businesses are deluged with invoicesx Make yours stand ou. with colour or shape and it's likely to rise to the top of the pay' pile.
+3228,deluged,"Venice, Sweden",My brain is deluged; with only your thoughts
+3230,deluged,,Businesses are deluged with invoices. Make yours stand out with .olour or share and it's likely to rise to the top of the pay' pile.
+3232,deluged,,Businesses are deluged with invoicew. Make yours stand out with colouj or shape and it's likely to rise to the top of the pay' pile.
+3233,deluged,,Businesses are deluged with invoices. Make yours stand out with colour or shape and it's ikely to rise to the to. of the pay' pile.
+3234,deluged,Camberville (Bostonish),I can't believe it never occurred to me that I could *not* be deluged with Kickstarter emails.
+3238,deluged,,Businesses are deluged with ivoices. Make yours stand out with colour or shape and it's likely to ris; to the top of the pay' pile.
+3246,deluged,"New York, NY",Is Facebook being deluged by friending spam the last few days or is someone targeting me for some reason?
+3247,deluged,hyderabad,Glimpses: <b>Hyderabad</b> deluged by heavy rainfall: HYDERABAD: With flood waters headingÛ_ http://t.co/TWFWTxZ2dS
+3250,deluged,Austin,"deluged dismay so
+soon surrendered summer drought
+descending disturbed
+
+#sunrise#haiku #poetry #wimberley #atx#smtx http://t.co/z9FDebg5Fm"
+3251,deluged,,The horror community is deluged with cruddy ostensibly macabre photography. Don't contribute to the pandemic.
+3254,demolish,"Nr Great Missenden, Bucks",Barton-Le-Clay house owner told to demolish extension - BBC News http://t.co/inxvExrsyV
+3257,demolish,USA,"RT AbbsWinston: #Zionist #Terrorist Demolish Tire Repair Shop Structure in #Bethlehem
+http://t.co/Om3ntQIh2m http://t.co/6SAS3fuahA"
+3258,demolish,"Southend-on-Sea, England",Salvation Army bid to demolish cottages http://t.co/3kuXonOchl #Southend http://t.co/enQaSCGFyw
+3261,demolish,Lagos,Enugu Government to demolish illegal structures at International Conference Centre http://t.co/9Hq5miwXFU
+3267,demolish,"Tulsa, OK",Contractor hired to demolish Goodrich plant in Miami files for bankruptcy - Tulsa World: Manufacturing http://t.co/uk7YwsvMgA
+3268,demolish,Global,Enugu Government to demolish illegal structures at International Conference Centre: Enugu State government app... http://t.co/bzINn2wXHu
+3269,demolish,"Abuja, Nigeria",'I will demolish your head' 'you are all corrupt' 'i will vandalise your head' - Aliyu Mani #SecSchoolInNigeria
+3271,demolish,,"Listen to @AnaKasparian demolish the case against Planned Parenthood!!
+*whiny voice* 'I just really love aboooooortiooooonnnnns.' #DefundPP"
+3272,demolish,"St. Louis, MO",Hope someone buys it! Former post office in Napa now for sale http://t.co/2ZeV1Zyttg #preservation
+3273,demolish,,We're about to demolish the other team right after we eat this pizza. We don't need no fitness- Ashton Irwin #MTVHottest 5SOS #5sosquotes
+3279,demolish,,Trying to get higher in the bathroom at work with my pen b4 I go and demolish my food ??????
+3290,demolish,The North,5000 year old ring fort to be demolished http://t.co/kNLZfC8QSl
+3291,demolish,,Enugu Government to demolish illegal structures at International Conference Centre http://t.co/bq67uDctjc RT
+3293,demolish,"Garland, Texas",Economic Wisdom ÛÒ Great Economists Demolish Establishment Nonsense http://t.co/H8NKtqU5O9 The Case for #Logic and #Reason
+3294,demolish,,No Shane I'm sorry you are wrong. You were propagating that an all out attack would demolish England #reversal
+3298,demolish,,I promise you @WinningWhit and I could assemble a team to demolish this. https://t.co/RN2MdghfO1
+3305,demolished,Canada,A demolished Palestinian village comes back to life http://t.co/Jsf5OFB3m6 via @wagingnv http://t.co/Hskd5MUosM
+3306,demolished,Your Backyard,Historical Bigfoot Landmark Soon To Be Demolished: The Bluff Creek Resort Store pictured above in 1976 was t... http://t.co/TW0SEv1N6C
+3307,demolished,,"Big Papi just demolished that ball.
+
+#BOSvsNYY"
+3310,demolished,????,It was finally demolished in the spring of 2013 and the property has sat vacant since. The justÛ_: saddlebrooke... http://t.co/7FOnHQtlyv
+3313,demolished,HTX iNNeRvErSe,#BananaLivesMatter ... but not more than #HotepLivesMatter thats why ya girl Hotepina just demolished two bananas in 13 seconds flat
+3314,demolished,??????,It was finally demolished in the spring of 2013 and the property has sat vacant since. The justÛ_: saddlebrooke... http://t.co/MDKV7c3el4
+3315,demolished,"Pridelands, IN",She literally demolished my nap time.
+3316,demolished,,I got my wisdom teeth out yesterday and I just demolished a whole bowl of chicken Alfredo like its nothing...
+3321,demolished,"Paterson, New Jersey ",@Ramdog1980 Israeli soldiers demolished a residential shed and a barn. Soldiers also demolished a shed in Beit Kahel northwest of Hebron.
+3325,demolished,"Connecticut, USA",Starting a GoFundMe page for a new set of rims since i demolished mine last night #helpabrotherout
+3326,demolished,,I really demolished it
+3327,demolished,Ankeny,They demolished one of my favorite restaurants to put in a Chik Fil A. I hope no one goes there. I hope it tanks.
+3330,demolished,"Paterson, New Jersey ",Six Palestinians Kidnapped in West Bank Hebron Home Demolished - International Middle East Media Center http://t.co/J9UzIIQ3PX
+3331,demolished,India,Uttarakhand: Journalist's house demolished who exposed corruption - Oneindia http://t.co/Ro1aWWuDYE
+3332,demolished,Hiding in a cardboard box.,"@ILoveNuiHarime More than that.
+Demolished."
+3333,demolished,Melbourne VIC Australia,Before & After #underconstruction #demolished #Melbourne #Residential #commercial #builder #luxuryhomes #townhouses ?? http://t.co/6iD7CZvMEd
+3343,demolished,"Bolton, England",@OpTic_DKarma dude they demolished you!
+3344,demolished,,@danisnotonfire can you fix the 528472 chargers i've demolished
+3348,demolished,Connecticut,That ball was fucking demolished
+3349,demolished,???????????,It was finally demolished in the spring of 2013 and the property has sat vacant since. The justÛ_: saddlebrooke... http://t.co/bd5B5yffyb
+3350,demolished,,@who_mikejoness I hate seeing the boy get fucking demolished like this
+3352,demolished,,i try n eat healthy but seriously it's like my arms move by themselves n before i know it I've demolished an entire fridge
+3353,demolition,Ohio,Real-life 'Up' house set to be saved from demolition by charity http://t.co/rdD5Fe1qyJ
+3354,demolition,TO YOUR CHOSEN DESTINATION,http://t.co/AAffnDCDNq Draw Day Demolition: Daily football selection service that consis... http://t.co/wMu2VUNCKe http://t.co/7K9Rczd2O6
+3358,demolition,"San Diego, CA",De-watering demolition defends against flooding http://t.co/dTO0ULjxn3
+3360,demolition,,"#Muslim cemetery demolition infuriates cultural groups in #Israel
+
+http://t.co/vpLZKUidz2"
+3366,demolition,"Carthage, OH",WOW!!! What a show at the Carthage Auto Parts Celebrity Demolition Derby! Thanks to all the celebrities for putting on such a great event!!
+3371,demolition,cyberspace,Canberra's Currong Apartments marked for demolition in September http://t.co/ZyRR8DzJx6
+3374,demolition,,General News Û¢åÊ'Demolition of houses on waterways begins at Achimota Mile 7 ' via @233liveOnline. Full story at http://t.co/iO7kUUg1uq
+3375,demolition,"Indianapolis, IN",Buzzing: Billy Joel Brings Down the House for Final Show at New YorkÛªs Nassau ColiseumÛ_ http://t.co/Xj3ASw5Okj http://t.co/Epca4OXAq2
+3378,demolition,"New York, New York",Demolition Means Progress: Flint Michigan and the Fate of the American Metropolis Highsmith https://t.co/fj7p8A1hvM
+3382,demolition,Southern California,Seattle's demolition-dodging 'Up' house to live on as affordable housing http://t.co/krGNNXj2sA
+3384,demolition,,@Johnny_Detroit Tag Team for me was Demolition. Awesome intro song scary looking and just destroyed there opponents.
+3385,demolition,,Problem motel nears demolition http://t.co/fKx4IH7kM1 http://t.co/n8VcxGyhQ8
+3386,demolition,"Tennessee, USA",The only demolition 2 be done by Christians is the putting away or throwing out of the flesh & sin - personally. #IntheSpiritWeBuild 2gether
+3392,demolition,,Photo: mothernaturenetwork: SeattleÛªs demolition-dodging Û÷UpÛª house to live on as affordable housing But... http://t.co/szG0HsNJEw
+3399,demolition,Wherever the #Sooners are,Demolition underway on @OU_Football stadium project. Stay updated throughout at http://t.co/ju09z2y7g0 http://t.co/UP0hOCgGrj
+3407,derail, Road to the Billionaires Club,@Hajirah_ GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings
+3409,derail, Road to the Billionaires Club,@ALESHABELL GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings
+3416,derail,San Francisco,Two trains derail in central India's Madhya Pradesh http://t.co/ijDePwuYNY
+3420,derail,Cheltenham,Everyone starts a #UX project with the best intentions but common pitfalls happen along the way. Don't let them! http://t.co/48VG4RkSqT
+3422,derail,,BBC News - India rail crash: Trains derail in Madhya Pradesh flash flood http://t.co/9UFemKfIiv
+3424,derail, Road to the Billionaires Club,@QueenBrittani_ GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings
+3426,derail,,Related News: Here’s what caused a Metro train to derail in downtown D.C. - Local - The Washington Post | http://t.co/4AoNQ9vnhs
+3427,derail,"w/ @_ridabot, probably",@PumpkinMari_Bot lemme just derail this real quivk to say. HELL DAMN F
+3434,derail,,Try @hollyclegg's low-carb summer treats that won't derail a #diabetes meal plan! http://t.co/2c66Dctrg0 #TheDX http://t.co/A6g0aRSztp
+3438,derail, Road to the Billionaires Club,@AshleyDniece GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings
+3441,derail,,HillaryÛªs Bimbo Eruptions and Questionable Financial Dealings Should Derail Campaign http://t.co/kAL1s5mg2z via @politicsisdirty
+3442,derail,"Accrington, Lancashire",BCC: Premature interest rates increases could derail the recovery: Commentating on todayÛªs interest rate decis... http://t.co/aftpebIkbO
+3443,derail,"Washington, DC and on planes",@vivigraubard of course not. for efforts to address short-sideness beyond not including a graf' would derail obvious backtracking efforts.
+3444,derail,Washington DC,Do people even ride Metro any more? http://t.co/Nb8yzecI6i #whywebike #bikecommute #DysfunctionalRedLine #WMATA
+3449,derail,"w/ @_ridabot, probably",@PumpkinMari_Bot lemme just derail this real quivk to say. HELL DAMN F
+3453,derailed,DC & MoCo,@CoolBreezeT train derailed at Smithsonian...no passenger train...then my red line train became disabled between FH & Bethesda
+3454,derailed,Las Vegas,.@janeannmorrison: A former Assembly candidate is still waiting for answers http://t.co/Mm5z32vKPC
+3456,derailed,"Edmonton, Alberta",Interesting to note: Metro train derailed in Washington this morn after going thru interlocking area. One of lines affected by closure 1/3
+3457,derailed,"Washington, DC",@FixWMATA @AdamTuss Do you know about path of derailed train? Doesn't make sense. If it was coming from yard why turning at Smithsonian?
+3458,derailed,"District of Columbia, USA",Train derailed at Smithsonian Metro. Sidewalks outside L'Enfant mobbed to get on buses @wmata #nightmarecommute
+3461,derailed,PG,@lizkhalifa no passenger train derailed earlier this morning
+3467,derailed,"Waterloo, Ontario, Canada",".@CBCNorth see photo Old Lady of the Falls (sacred site) RR says derailed Talston power line to diamond mines in 2010
+http://t.co/SxlfSNsPH0"
+3479,derailed,"st. louis, missouri",'We may be derailed right now but we are going to keep holding on to remain on track' -@kristnmalea #DerailingDistractions
+3488,derailed,"Washington, DC",Also there is no estimate of damage yet from #WMATA/#Metro on the six-car train that derailed ~5 a.m. Shuttle service available. @CQnow
+3491,derailed,"Alexandria, VA, USA",Oh a #wmata train derailed. Kind of disappointed how unsurprised I am.
+3496,derailed,"Woodbridge, VA ",3 cars of #Metro train ready to go into service derailed near #Smithsonian station disrupting service. No injuries. More at noon @wusa9
+3502,derailed,"/ Kattappana, Kerala ",'@WSJ: How a rare lizard derailed Adani GroupÛªs plan to build a huge coal mine in Australia http://t.co/dkNPK6FbE4 http://t.co/BiVShY4q1b'
+3507,derailment,Worldwide,Google News - A Twin Train Derailment in India Leaves at Least 24 Dead - TIME http://t.co/yf56oK7Pgp #world
+3511,derailment,"Chicago, IL",@CTAFails PHOTOS from Green Line derailment http://t.co/Y8xFVJAlLr http://t.co/qUUUN88czw
+3515,derailment,,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives: A group of villagers saved over 70 passengers' lives after two train...
+3516,derailment,"Chicago, IL",#CTA GREEN LINE: All passengers have been evacuated due to a derailment however no service Garfield-Cottage Grove. http://t.co/qePJ0Hwpay
+3538,derailment,Chicago,Great photo by the Tribune's Terrence Antonio James after Green Line derailment (no one hurt fortunately) http://t.co/YFavM641OS
+3539,derailment,Mumbai,Latest : Suresh Prabhu calls Harda derailment a natural calamity; officials feel ... - Economic Ti... http://t.co/6bCIvdaEa0 #IndianNews
+3541,derailment,,CTA Green Line service has resumed after an earlier derailment near Garfield expect delays. @WBBMNewsradio
+3545,derailment,,Green Line trains resume service after South Side derailment: Green Line service has resumed more than four h... http://t.co/dJztc7apf1
+3546,derailment,,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives: A group of villagers saved over 70 passengers' lives after two train...
+3547,derailment,,#Amtrak Rail #Disaster http://t.co/H6Ol73KZJg http://t.co/Qfydu4PVGK
+3551,derailment,India,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives
+3553,desolate,"Oakland, Ca",Twitter said bet Tampa & the over in colorado...gambling twitter will have u broke & desolate be careful lol
+3556,desolate,"Twin Falls, Idaho, 83301",'Behold your house is being left to you desolate!' (Matthew 23:38 NASB)
+3558,desolate,,who sank all night in submarine light of BickfordÛªs floated out and sat through the stale beer afternoon in desolate FugazziÛªs
+3559,desolate,"Michigander, USA","Be appalled O heavens at this
+ be shocked be utterly desolate
+ says the Lord
+for my people have committed two evils:"
+3561,desolate,,The Desolate Hope: Part 1: I LOVE THIS GAME: http://t.co/gPrRZdpE4v via @YouTube
+3562,desolate,Texas,"We've become desolate
+Its not enough it never is."
+3563,desolate,,Shaping the to come: multimillion chop local billet frugal else companionate anacrusis production desolate in ...
+3564,desolate,Chicago,@VacantLDN this may be a peculiar compliment but I would be incapable of doing my research w/out the desolate headspace your music provides
+3571,desolate,From Harlem to Duke ! ,It's really sad that white people are quick to give money to desolate uneducated black ppl before educated blacks who are productive
+3574,desolate,Cardiff/London/NYC/Warwick,@StevieDE83 @roathboy I'm desolate no idea how I'll ever get over it ??#badgeofhonour
+3576,desolate,,The Desolate Hope: Part 3: BATTLE!!!!: http://t.co/mx3HuxnXgX via @YouTube
+3577,desolate,Outreach Africa,And the 10 horns which u saw on the beast these will hate the harlet make her desolate and naked eat her flesh and burn her with fire
+3579,desolate,Macclesfield,@WilliamTCooper TY for the follow Go To http://t.co/l9MB2j5pXg BRUTALLY ABUSED+DESOLATE&LOST + HER LOVELY MUM DIES..Is it Murder? Pls RT
+3580,desolate,Florida,@mtnredneck It does when you are searching on a desolate part of the beach with no cell service and a mile away from your car.
+3586,desolate,Birmingham,Why are you feeling desolate? Take the quiz: http://t.co/j4lM2ovoOs http://t.co/banrVjoTlf
+3590,desolate,"Los Angeles, CA",@peregrinekiwi @boymonster I recall CP2020 Australia was a blighted desolate corporate
+3599,desolation,"Raleigh, NC",Now Playing Desolation Wilderness by Kodak To Graph
+3600,desolation,,desolation #bored
+3601,desolation,,I liked a @YouTube video from @iglxenix http://t.co/dcxjIJtyYJ Desolation PvP: Beacon Blast Bombardment 3 (Minecraft Xbox One)
+3605,desolation,"Roanoke, VA",Obama 2016? - The Abomination of Desolation' http://t.co/iL4uLhrgTP
+3606,desolation,,Free Kindle Book - Aug 3-7 - Thriller - Desolation Run by @jamessnyder22 http://t.co/PfYH4Tzvk9
+3612,desolation,"USA,Washington,Seattle",The Hobbit: The Desolation of Smaug (#dvd 2014 2-Disc Set Digital Copy) http://t.co/000siJjL3t http://t.co/JlUJsHCvoA
+3614,desolation,Lan̼s,I want to be free from desolation and despair
+3615,desolation,Quezon City,The Hobbit: The Desolation of Smaug ?? ? atm.
+3616,desolation,"Medford, NJ",Watching Desolation of Smaug and I always love catching the cameos. Caught Jackson at the beginning and Colbert just now.
+3620,desolation,"Sydney, Australia",#Kids going to #school amidst the #desolation of an #earthquake #aftermath #Love #OlympusÛ_ https://t.co/pqds20yrJs
+3622,desolation,,Hey girl you must be The Hobbit: Part Two: The Desolation of Smaug because|I'm not interestud in seeing you. Sorry.
+3624,desolation,#Global,#NowPlaying - Lamb of God - Desolation http://t.co/mUYWttEdl6
+3630,desolation,,'I See Fire' Ed Sheeran The Hobbit: The Desolation of Smaug (Cover By Ja... https://t.co/a2aeDAK7r0 via @YouTube
+3644,desolation,Subconscious LA,Emotional Desolation the effect of alcoholism/addiction on family - http://t.co/31tGtLz3YA Forgiving is hard http://t.co/1labI2Sg2b
+3649,destroy,"Phoenix, AZ ",Debate question: The robots have become self aware; do with destroy them thus thrusting the world into a tech-free life or re-enslave them?
+3651,destroy,Between Manchester and Lille.,@Adz77 You spelled Ronda wrong last night and then again today ;) @RondaRousey she'll destroy you.
+3654,destroy,globetrotter,Overall the English lads did very well today. They need to pile on and get over 400 runs ahead and destroy...
+3665,destroy,,"JAKE I SWEAR TO GOD IF THEREÛªS ONE MORE GOD DAMN PIECE OF ALGAE IN THE PONDS I AM GOING TO DESTROY ALL THOSE LITTLE FISH.
+
+#momtherbot"
+3668,destroy,,People can't destroy you unless you let them.
+3671,destroy,Raleigh,When something bad happens; you have 3 choices: You can either let it define you destroy you or let it strengthen you.
+3672,destroy,,GOP Plan to Destroy Public Education - Cut Teacher Pay and Even Make Them Buy Their Own School Supplies: Pure Evil - http://t.co/WST2tWqS8D
+3673,destroy,,"But bad people kiss too. Hehe
+Their kisses can destroy."
+3677,destroy,London,@alexhern he created vr only he can destroy it.
+3678,destroy,Curitiba-PR,Skate and Destroy em Taguatinga - Campeonatos de Skate http://t.co/xWW9dOPLK9
+3687,destroy,"|Elsmere| Wilmington, DE.",When people fear you they will try to say and do anything to destroy your #Pride.
+3688,destroy,,It's a real world. No glass shoe. No seven dwarfs. But there's always a villain who wants to destroy your life.
+3693,destroy,At Grandmother Willow's,This #NBCTheWiz cast is about to destroy tv sets across the nation!!!!
+3698,destroyed,,Media stocks are getting destroyed (DIS FOXA CMCSA SNI AMCX VIAB VIA TWX) http://t.co/dQd3YtaZfG
+3699,destroyed,,@Musketeiro I see ISIL destroyed in Iraq in May 2016. This may help Iraqis help Syrian government against it. But Nusrah and Ahrar not yet.
+3701,destroyed,,#TheSun Flood: Two people dead 60 houses destroyed in Kaduna: Two people have been reportedly killed and 60 h... http://t.co/Aawmx5w9sh
+3703,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 2 fleets totaling 3946 ships with 14 destroyed
+3706,destroyed,,@evdaikoku @zjwhitman carp erased justin smith?? Pretty sure he destroyed our leftside
+3707,destroyed,Chicago,poor dude...he needs him some valerie...lol RT @Otp_destroyed: Dante stuck with KIKI twice in a row???????? #FixItJesus #GH
+3709,destroyed,"festac,Lagos,Nigeria",(SJ GIST): 148 Houses Farm Produce Destroyed By Flood In Sokoto: About 148 houses were on Saturday destroyed ... http://t.co/vqU1Y31hKU
+3711,destroyed,,Soo..he'll be do a bit of repentance for the children's lives they've destroyed and continue to abuse and for... http://t.co/En3hKXQdD9
+3714,destroyed,,WHAT a day's cricket that was. Has destroyed any plans I had for exercise today.
+3716,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 2 fleets totaling 3936 ships with 5 destroyed
+3720,destroyed,Nigeria,Flood: Two people dead 60 houses destroyed in Kaduna http://t.co/8H2SP6Ze3o
+3728,destroyed,"Cape Town, South Africa",Remember #Hiroshima destroyed by #Nuclear bomb..an occurrence should never ever happen again yet highly likely recur http://t.co/mB3MJevBb0
+3731,destroyed,Virginia,HitchBot travels Europe and greeted with open arms. Gets destroyed after two weeks in america. There's a lesson to be learned here.
+3732,destroyed,@ArgentinaLiars ?| willbradley,@m1tchell1987 YOU DESTROYED MEE OKAY? I THOUGHT YOU WERE DEAD! BUT I'M NOT AREN'T YOU GLAD THAT I'M NOT?
+3733,destroyed,"Dunedin, New Zealand",19000 homes destroyed in Gaza -- ZERO rebuilt. Join me in busting the blockade! Sign & RT #Gaza #OpenGaza https://t.co/WF9GMhjh2M
+3734,destroyed,norton ,@kaytlinmartinez dude those enormous blizzards we destroyed from DQ ??
+3740,destroyed,Rome,By havin an ally lyk @AnnCoulter Republican Party is declaring war on all immigrants..deserves 2 b defeated n destroyed.it's a clarion call.
+3746,destroyed,L.A,yay the evil is being destroyed! https://t.co/GeTu7SfBJ1
+3749,destruction,North Korea,@Warcraft weapon of destruction!
+3751,destruction,,World of Warcraft: Legion Revealed at gamescom: The Burning Legion returns to bring destruction to Azeroth onc... http://t.co/7n9qqkQIl3
+3755,destruction,Glasgow,@PeterArnottGlas I've written a play about Dr Rae and his destruction by Lady Franklin as it happens. Commissioned by Mull Theatre
+3757,destruction,"Hounslow, London",@AirportWatch Do we need more motorways 2reduce fumes on our present ones. -forget the extra noise & destruction!- https://t.co/USQZ0OTfNe
+3762,destruction,"lake worth, Fl",New RAN report from the frontlines of human rights abuses and forest destruction for fashion.: http://t.co/OmpzUyAsle
+3767,destruction,Hell,@iam_destruction Okay.. I'll put my tail in first.. -He moved to slip it in slowly.-
+3769,destruction,The Floor,We should do a hand in the destruction of an INNOCENT young man's life.
+3779,destruction,,Crackdown 3 Destruction Restricted to Multiplayer: Crackdown 3 impressed earlier this week with a demonstratio... http://t.co/ma9LLiKcjk
+3781,destruction,Hollywood,Russian authorities to take account of petition against destruction of sanctioned food: Vladimir Putin's press... http://t.co/GUvSVPesZU
+3782,destruction,,When life is cheap evil abounds and @PPact @HillaryClinton profit from its destruction.#DefundPP http://t.co/H5rzmAy8lP
+3783,destruction,,The day of death destruction chaos; 60000 to 80000 people were killed instantly. Please take sometime to remember and think about others
+3784,destruction,,He is one of the three survivors of the destruction of Otsuka Village.
+3790,destruction,"Piedmont, CA",Let this stand as evidence of the horrible destruction potentially wrought by our noble species. https://t.co/sNOO8LQtAD
+3791,destruction,,New RAN report from the frontlines of human rights abuses and forest destruction for fashion.: http://t.co/5xyE2Rkuri
+3792,destruction,,Related News: The Bureaucrats Who Singled Out Hiroshima for Destruction - Global - The Atlantic | http://t.co/Tnex4HUsnp
+3794,destruction,The Interwebs!,Crackdown 3 Destruction Restricted To Multiplayer; Co-Developed By Sumo Digital: Crackdown 3 åÊwas definitely o... http://t.co/O4B1KIyx1P
+3799,detonate,"Nashville, Music City, USA",@HJudeBoudreaux Start your car with it! Or use it to detonate an evil henchman!!
+3801,detonate,"Amsterdam, Worldwide",Track : Apollo Brown - Detonate ft. M.O.P. | @ApolloBrown @BILLDANZEMOP @FAMEMOP http://t.co/GR9q1wvi2n http://t.co/k3rEb7iRlc
+3804,detonate,"Detroit, MI ","Apollo Brown-Detonate Featuring M.O.P.
+http://t.co/JnoE2r2EIN"
+3808,detonate,,"Apollo Brown - Detonate (ft. M.O.P.) [Single] http://t.co/S5mU04L2rl
+@ApolloBrown"
+3809,detonate,World Wide,Apollo Brown ÛÒ Detonate feat. M.O.P.: Producer Apollo Brown is proud to present his upcoming album Grandeur wh... http://t.co/pfA0S9ZCUB
+3811,detonate,Texas Hill Country,Best Moments of Jon Stewart on the Daily Show http://t.co/EOPbXWoZbm
+3813,detonate,"Morioh, Japan",@spinningbot Are you another Stand-user? If you are I will have to detonate you with my Killer Queen.
+3817,detonate,"charlotte, nc",Audio: Listen/purchase: Detonate (feat. M.O.P.) by Apollo Brown http://t.co/6ZSWtoKsif
+3818,detonate,D.C.,@NickKristof Contradictory: 'We should've tried [to detonate on an uninhabited island]' & then 'the alternatives'ÛÓcategoricallyÛÓwere worse
+3823,detonate,,Listen to Apollo Brown - Detonate (feat. M.O.P.) by Mello Music Group #np on #SoundCloud https://t.co/C0Fex1XAlG
+3843,detonate,"Nashville, TN",@someone92883220 they had to detonate it to determine it was a hoax device. Didn't feel comfortable just opening it.
+3844,detonate,Amsterdam,Track : Apollo Brown - Detonate ft. M.O.P. | @ApolloBrown @BILLDANZEMOP @FAMEMOP http://t.co/t9i3pWvjOy http://t.co/76aNr2iocL
+3846,detonate, Aomori,Apollo Brown ÛÒ Detonate feat. M.O.P.: Producer Apollo Brown is proud to present his up... http://t.co/3chxB8QbdD :http://t.co/zMh7nebmwY
+3847,detonate,Boulder via DC,First Stearns grenade thought to be WWII-era. This one apparently newer. Bomb squad plans to detonate around 8 p.m. http://t.co/qppTQ6oTat
+3852,detonation,,Ignition Knock (Detonation) Sensor-Senso BECK/ARNLEY fits 93-95 Audi 90 2.8L-V6 http://t.co/gOXvNzOUj3 http://t.co/YB3GeEtFbT
+3854,detonation,,Detonation fashionable mountaineering electronic watch water-resistant couples leisure tabÛ_ http://t.co/kY9V0pAjY1 http://t.co/QjqpXIxMxz
+3856,detonation,,Open forex detonation indicator is irretrievable after this fashion a financial airborne controls: SjFEb http://t.co/RzQkzM7rb8
+3863,detonation,,Ignition Knock (Detonation) Sensor-KNOCK SENSOR Delphi AS10012 http://t.co/LArrNhoBsN http://t.co/6YwZWmxFDP
+3865,detonation,"Palacio, Madrid",@jcenters No uh-oh it was a controlled detonation.
+3867,detonation,,Ignition Knock (Detonation) Sensor-Senso BECK/ARNLEY 158-0992 http://t.co/tk9HnxZNSl http://t.co/UhBUwbeQ0O
+3871,detonation,,Detonation fashionable mountaineering electronic watch water-resistant couples leisure tabÛ_ http://t.co/GH48B54riS http://t.co/2PqTm06Lid
+3872,detonation,,Detonation fashionable mountaineering electronic watch water-resistant couples leisure tabÛ_ http://t.co/g6hjTj3SDy http://t.co/yydEghGP64
+3878,detonation,,Detonation fashionable mountaineering electronic watch water-resistant couples leisure tabÛ_ http://t.co/RqOvPljpse http://t.co/UhKwVSoWSt
+3880,detonation,,Ignition Knock (Detonation) Sensor-Senso fits 90-96 Subaru Legacy 2.2L-H4 http://t.co/pcCksm1tVM http://t.co/yWzngj7uow
+3881,detonation,,Ignition Knock (Detonation) Sensor-Senso BECK/ARNLEY 158-1028 http://t.co/YszIBvj3cs http://t.co/C9t0cGtjFw
+3882,detonation,ShloMotion,#JerusalemPost WATCH: Israel performs controlled detonation of land mines on Golan Heights http://t.co/01HuX8Y9Gi
+3883,detonation,,Ignition Knock (Detonation) Sensor ACDelco GM Original Equipment 213-296 http://t.co/dBwSPgHhsa http://t.co/1CaLqDwvhw
+3884,detonation,,via Jerusalem Post: WATCH: Israel performs controlled detonation of land mines on Golan Heights... http://t.co/rFB2ft4wX0
+3885,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard KS225 http://t.co/IwrCPmjOah http://t.co/zZMM9xEccW
+3886,detonation,,Ignition Knock (Detonation) Sensor Connector-Connecto Dorman 917-032 http://t.co/Kh973YlMpj http://t.co/N9X3ngu0AM
+3890,detonation,"Poughkeepsie, NY",Link lets you pick a city bomb size and altitude of detonation. Ace! https://t.co/wmW1wqvbR8
+3891,detonation,Please follow and RT! :),WATCH: Israel performs controlled detonation of land mines on Golan Heights - Jerusalem Po... http://t.co/0Y07oA5UeX #israel #israelnews
+3898,devastated,,Obama Declares Disaster for Typhoon-Devastated Saipan
+3902,devastated,,I'm literally devastated right now??
+3909,devastated,New Orleans,@polishedstone 'Perrie is DEVASTATED' meanwhile....
+3910,devastated,dam squad 4 lyf,VAL JUST DIED AND IM ABSOLUTELY DEVASTATED #emmerdale
+3912,devastated,astral plane,@yeetrpan I asked if they were hiring and they said not you I was devastated.
+3915,devastated,,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/AslUFEKOXN
+3918,devastated,,Thanks @MartinBarrow - and yes definitely something that affects men as well. My husband just as devastated.
+3920,devastated,,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/9i6CrCRq2m
+3925,devastated,south wales valleys,@MikeParrActor omg I cant believe they killed off ross he was my favourite character with aaron @DannyBMiller im devastated. Top acting ??
+3928,devastated,,He was being super bitchy yesterday (cause he felt like pop) and when he's bitchy him and Perla don't play and then Perla is devastated
+3929,devastated,,Actually if I don't see Hunter Hayes and Lady Antebellum perform Where it All Begins live I will be a very devastated person :-)
+3930,devastated,Dhaka,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/lEYJwNnAH8
+3931,devastated,Scotland,When you cook fresh tagliatelle meatballs and sauce and then manage to spill all the pasta in the sink when draining it. Fucking devastated.
+3934,devastated,toronto Û¢ unicorn island ,@humblethepoet Lilly's YouTube channel got hacked. She's devastated. We're all worried about her! ??
+3939,devastated,cork,@MikeParrActor devastated your no longer in emmerdale best character with so much more to give #superbactor your going to be missed
+3941,devastated,Ireland,@_Gags_ My Mommy will be devastated lol #NoMorePod
+3942,devastated,"Toronto, Ontario",Devastated. Already missing my @coleenlisa. https://t.co/3p6Xakt7rh
+3943,devastated,,Absolutely devastated ???? no Ross no!! #Emmerdale
+3946,devastated,,Ooh the girl that won actually is meeting the boys im devastated ?????? but congrats to the winner!!! #OTRABaltimore
+3963,devastation,"Memphis, TN",MPD director Armstrong: when this first happened I cannot begin to tell you the devastation I felt.
+3965,devastation,wherever Wolf Blitzer is,#CNNHoTD soccer mom wild swimming handcuffed child teen hookup case nuclear devastation showers Miss Piggy... http://t.co/XG9s40AFtZ
+3966,devastation,,The Dones felt grief bordering on devastation at losing connection with God through their church communities. Packard http://t.co/r2pQQPfqCt
+3971,devastation,"los angeles, ca",My father walked through the devastation the day after and refuses to speak about it to this day https://t.co/oFu6DANJZC
+3972,devastation,"Pennsylvania, USA",Despite past devastation fortunately #forgiveness mutual #respect and #peace emerged. #Remember #Hiroshima and #Nagasaki
+3974,devastation,United States,ÛÏEven in the midst of devastation something within us always points the way to freedom.Û
+3976,devastation,,"HQhed mhtw4fnet
+
+A sad reminder of nuclear devastation - Washington Post"
+3978,devastation,Polska,Devastation Walkthrough Part 11: http://t.co/BOjDByB9YA przez @YouTube
+3981,devastation,"Fort Worth, TX",we hid the devastation of what atom caused by not making it mandatory for film of its human suffering be shown & preserved.
+3985,devastation,Espa̱a/Catalunya/Girona,Is This Country Latin America's Next 'Argentina': One week ago we reported on the economic devastation in he o... http://t.co/J3rcOflDyA
+3986,devastation,"Greer, SC",@nikkihaley Profile in Ambition. Legacy of cultural devastation for attempt at a white house gig. @Reince @gop http://t.co/5cCrnwirFn
+3987,devastation,Pakistan,At least 18 houses 5 bridges destroyed in flash #floods in #Gilgit-#Baltistan on Wednesday. http://t.co/HSJcR45SIS http://t.co/dQ931ea6Pr
+3988,devastation,,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/JESoSSDjjH
+3991,devastation,kansas USA,70 Years After Atomic Bombs Japan Still Struggles With Wartime Past: The anniversary of the devastation wroug... http://t.co/AU6Sm5FaMq
+3999,disaster,Ottawa,IRIN Asia | Red tape tangles Nepal reconstruction | Nepal | Disaster Risk Reduction | Natural Disasters http://t.co/q7LG6ncf7G
+4001,disaster,crying,@quinhii I'm the one who started it so I feel like I have so much responsibility bUT NO ONE DOES ANYTHING OTL (a 'national' disaster lol)
+4002,disaster,Indiana,Trying to route my sister into W. Lafayette from the Indy airport. Suggested I-74 to SR 25 west of Crawfordsville. Hope it's not a disaster.
+4004,disaster,"UiTM, Shah Alam",Time to End the Disaster of Rail Privatisation http://t.co/ksxznPY5gt
+4007,disaster,,Reade this and see how are politicians are leading us to disaster all for the #GreedyRich https://t.co/2bFliBD2sh
+4009,disaster,,paladins is going to be a disaster
+4013,disaster,London,#MicrosoftÛªs #Nokia acquisition was an even bigger #disaster than we ever imagined http://t.co/CV0mrisFt3
+4015,disaster,,#OVERPOPULATION Not only R women incapable of keeping their legs together 2 save the world from endless brats they want to RUN the disaster
+4016,disaster,Ottawa,Harper gets sassed by Albertans after calling NDP government a Û÷disaster' http://t.co/vsMOJyfzDg via @huffpostalberta #HarperBlamesAlbertans
+4023,disaster,,WHAT A DISASTER FOR SECRET #TI5
+4031,disaster,,Disaster [Chapter 27] https://t.co/EAsxT3y84R http://t.co/CjUFunsDKg
+4035,disaster,,Deepwater drill company gains $735m: Transocean one of the companies associated with BP's Deepwater Horizon oil well disaster recoversÛ_
+4036,disaster,Jamaica,MicrosoftÛªs Nokia acquisition was an even bigger disaster than we ever imagined https://t.co/4MneTInGXl
+4037,disaster,NYC/LI/NJ/LHV,Not an electric debut for Severino but not a disaster either. Looking forward to see what adjustments he makes for start #2.
+4040,disaster,,"This Palestinian family was lucky but hundreds are feared dead in the latest boat disaster in the Mediterranean
+https://t.co/cT5v3LcNKD"
+4048,displaced,International Action,Heat wave adding to the misery of internally-displaced Gazans http://t.co/jW3hN9ewFT via @PressTV http://t.co/NYWrkRQ7Kn
+4053,displaced,Pedophile hunting ground,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/rqWuoy1fm4
+4056,displaced,Pedophile hunting ground,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/rqWuoy1fm4
+4059,displaced,"San Francisco, CA",Next up: a charity program for disadvantaged people displaced by the tech boom in SF based on Tinder technology. https://t.co/yNVz1WrgtN
+4066,displaced,magodo,#mightyworld Thousands displaced after monsoon rains in Myanmar: Tens of thousands of people have been displac... http://t.co/HkSDk89c6C
+4067,displaced,,Angry Woman Openly Accuses NEMA Of Stealing Relief Materials Meant For IDPs: An angry Internally Displaced woman... http://t.co/C1vzJOr2qz
+4069,displaced,"Nottingham, England",Oof. Vikings took an island off the mainland. The noble house who ruled there got displaced... into my county. Welcome new vassals!
+4070,displaced,"Indianapolis, IN",Job event targets displaced Double 8 employees http://t.co/2SJaaDRYdc http://t.co/RovTa5EUQO
+4071,displaced,NYC,It's crazy how far in advance you feel the air displaced by a subway car before the train itself shows up.
+4073,displaced,U.S.,#Myanmar Displaced #Rohingya at #Sittwe point of no return http://t.co/3S8nhaPVCh #Prison like conditions #genocide IHHen MSF Refugees
+4074,displaced,,Displaced
+4075,displaced,usa,local family displaced by fire http://t.co/f1nu18CArd via @gofundme Lets help that family out please
+4082,displaced,U.S.,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/8owC41FMBR
+4090,displaced,,Try not eating like a fat ass RT @INeedJa_Kadeeja: How much would it cost to have some fat displaced? Asking for a friend.
+4099,drought,,U.S. in record hurricane drought http://t.co/NratKzyU5E #JustBitching http://t.co/JATvPAT0MO
+4102,drought,"Beaumont, Texas",Drought report lists SE Texas as 'abnormally dry' http://t.co/wBOXpyoZj0 #SETXNews
+4106,drought,"Cary, North Carolina",The Best Drought-Tolerant Perennials http://t.co/AdZONC7Olv http://t.co/ih9iTMhFjZ
+4109,drought,"San Gabriel Valley, CA",El Monte attempts to shed reputation of delinquency in drought - The Pasadena Star http://t.co/2wGOUCOHOu
+4110,drought,arizona,@MarcVegan @NonDairyKerry true. Also takes 16000 gal water to produce 1 lb hamburger. Drought in Midwest will be chaos
+4115,drought,Windsor ??CT ,I thought it was a drought
+4118,drought,Portugal-Spain-Indonesia,U.S. in record hurricane drought http://t.co/JXOMdLtJ73
+4120,drought,"Tyler, TX",New drought monitor showing drought spreads in ETX. 'Severe Drought' in Marion/Harrison Counties. @KLTV7 http://t.co/v8eG2kSLoH
+4125,drought,,Thought it was a drought!
+4126,drought,,You can't use as much water in a drought as you can with a flood!
+4130,drought,,Water conservation urged for North Thompson: B.C. government declares a Level 3 drought level for the North Th... http://t.co/dJ4qw8YfW5
+4134,drought,Hustle Flow Nation,#KondoByJaymOnI U.S. in record hurricane drought http://t.co/fqLSkejWxH #Anticipate
+4136,drought,"San Francisco, CA",@jonbuda What if the drought is just a giant marketing campaign for Star Wars where they turn California into Tattooine?
+4137,drought,"Dubai, UAE",U.S. in record hurricane drought http://t.co/Wd4UdSxacq via CNN
+4144,drought,"Rock Hill , SC ",I swear theres a bud drought
+4148,drown,#NAME?,I'm incredibly sad & heartbroken so I'm just going to drown my sorrows in food & watch tv all night ?? http://t.co/yQiZ2p1rSm
+4151,drown,Under Ya Skin,I'm bout to get in the shower an drown
+4155,drown,land-where-everything-sucks,i cant breathe and i feel my throat closing up i want to die let me drown in my own tears please
+4162,drown,,Need to drown in ice cream??
+4165,drown,England UK,@dolphfan36 I made it...Didnt drown
+4169,drown,,@GraysonDolan id drown
+4174,drown,My Own Little Corner,@LadyTraining yes I will probably drown her in craft throughout our years but by no means spoiled
+4179,drown,,Throw me in the deep end watch me drown
+4185,drown,,I'm gonna drown myself in leftover chilis wishing it was with him lol
+4186,drown,3-Jan,I'll let Louis drown me at the water wall by the mall If that makes him smile
+4187,drown,East Coast ,drown me in clementines
+4188,drown,"Manhattan, New York",When I genuinely like someone I REALLYYY like them and I have to hold back or else I'll drown them with affection and attention ??
+4190,drown,East Carolina University'19 ??,Fuck around and drown ???? https://t.co/fr5z9WklMZ
+4192,drown,"Austin, TX",absolute drown your Wagyu steak in heaping piles of moist Smuckers Grape Jam
+4193,drown,"BogotÌÁ, Colombia",Drown me you make my heart beat like the rain.
+4194,drown,,@Vanquiishher it can legit drown
+4195,drown,chillin,Yeah I'm definitely just gonna go drown myself in the pool bc it's just too damn hot inside
+4196,drown,ID where potatoes grow,@GraysonDolan I'll fall and drown so I think I'll pass
+4207,drowned,UK,Hundreds feared drowned as migrant boat capsizes off Libya: Hundreds of migrants are feared to have drowned af... http://t.co/bF3OhacB1r
+4208,drowned,,100s of migrants feared drowned after 700 squeeze onto boat in Mediterranean. http://t.co/lsyPtk18se
+4215,drowned,Germany,Hundreds feared drowned as migrant boat capsizes off Libya: Hundreds of migrants are feared to have drowned af... http://t.co/Cbhe0eXIRA
+4217,drowned,FEMA REGION 2,Hundreds of migrants feared drowned off Libya: http://t.co/RTx4O0SIyH #news #bbc #cnn #msnbc #nyt #tcot #tlot #waar #ccot #ctot #p2 #ap
+4222,drowned,MA,You're getting drowned out yet I still search for you.
+4223,drowned,,Hundreds feared drowned as migrant boat capsizes off Libya http://t.co/U8H5s8oPs5 #NLU
+4226,drowned,,@oilersjaysfan how's the rain have you drowned yet?
+4228,drowned,,Jeff was bullied Sally was raped Ben was drowned Hoodie was betrayed LJ was abandoned EJ was a sacrifice Lost S.. (http://t.co/mFl7jzspOu)
+4229,drowned,California USA,Tried my 1st #beastburger by #beyondmeat. nowhere near what i thought based on hype. Drowned in ketchup wasnt bad but w/dijon it sucked.
+4231,drowned,Jupiter,#dw_english Hundreds feared drowned as migrant boat capsizes off Libya: Hundreds of migrants are feared to hav... http://t.co/i9HW0qZoVy
+4234,drowned,almonds,pretty sure i almost drowned 26 times in the pool today thanks to abrianna
+4236,drowned,Ex Astris Scientia. TSSADID.,@BenWunsch I ALMOST DROWNED AT SEA
+4249,drowning,"Johnstown, NY",Having such a hard time with everything im drowning literally
+4254,drowning,,Boy saves autistic brother from drowning: A nine-year-old in Maine dove into a pool to save his autistic broth... http://t.co/pihUIaOR5O
+4258,drowning,"Atlanta, GA",Family mourns drowning of 'superhero' toddler with rare epilepsy: Bradley Diebold suffered hundreds of epilept... http://t.co/aSAn4yGd48
+4259,drowning,Doo Doo Boy Island,If you told me you was drowning. I would not lend a hand!
+4263,drowning,"Morioh, Japan",@TinyJecht Those eyes.. desperate like a mouse drowning in a septic tank.
+4267,drowning,real world,and no one knows that i'm drowning and i know that i can't fcking survive
+4277,drowning,,I have the experience performing cpr on a actual drowning victim.
+4278,drowning,,The Drowning Girl by Caitlin R. Kiernan Centipede Press Signed numbered Limited - Full reÛ_ http://t.co/CBaXj72lVC http://t.co/s9wXIDItJh
+4280,drowning,New York,The Drowning Girl by Caitlin R. Kiernan Centipede Press Signed numbered Limited - Full reÛ_ http://t.co/2zJcfAzs2N http://t.co/jAAvvwDOZ6
+4283,drowning,130515 Û¢ Gallavich.,AND I'M DROWNING IN THE DÌäJÌÛ VUUUUU WE'VE SEEN IT ALL BEFOOOOOOOORE
+4285,drowning,Liverpool,Boy saves autistic brother from drowning: A nine-year-old in Maine dove into a pool to save his autistic brother from drowning
+4286,drowning,,Boy saves autistic brother from drowning: A nine-year-old in Maine dove into a pool to save his autistic brother from drowning
+4287,drowning,New York,The Drowning Girl by Caitlin R. Kiernan Centipede Press Signed numbered Limited - Full reÛ_ http://t.co/eOMdGhraLg http://t.co/i4SG3nvGp8
+4290,drowning,"Bangalore,India",Migrants drowning - we will be erecting monuments 100 years from now and shed tears for the most powerful nations' greed of letting them die
+4291,drowning,"Pico Rivera, CA",Drowning doesn't sound half bad rn
+4294,drowning,,Boy saves autistic brother from drowning #NewsVideos http://t.co/8NZt51ew14
+4302,dust%20storm,"Playing: HL2: EP1, Dust: AET",OH SHIT DUST'S STORM ATTACK AND FIDGET'S BULLET THING MADE SOME CRAZY RICOCHET ATTACK
+4308,dust%20storm,,The dust storm chase scene is pretty damn cool. #GhostProtocol
+4310,dust%20storm,,New Mad Max Screenshots Show Off a Lovely Dust Storm Combat... #pc #gamescom http://t.co/Qq1yW0brsR
+4311,dust%20storm,,recent project (Dust Storm ). :) http://t.co/jmj9izVvzO
+4315,dust%20storm,Mtl,Photo: susfu: Dust storm rolling onto the base by cptesco August 03 2008 at 09:39PM http://t.co/ekkruDQzbv
+4316,dust%20storm,,New Mad Max Screenshots Show Off a Lovely Dust Storm Combat Magnum Opus: New Mad Max screenshots have beenÛ_ http://t.co/l8dh8KLRKR
+4319,dust%20storm,"East la Mirada, CA",@christinaperri #askceeps have you seen @colinodonoghue1 in his new movie trailer for The Dust Storm?
+4331,dust%20storm,France,Photoset: hookier: New stills from The Dust Storm (x) http://t.co/h8YjcFG8hv
+4338,dust%20storm,San Francisco,@whatupdave Headline in 2075 'Dust Storm on Mars Destroys 1% of Money Supply'
+4339,dust%20storm,Louisville Kentucky,Pickathon dust storm is sadly over but we have @sunsetballard in Seattle tonight to look forward to w/ @tomonakayama http://t.co/RtgGzWCAix
+4340,dust%20storm,The Universe,Kids Disappear in Dust Storm in Atmospheric Aussie Thriller http://t.co/iR7VaxehEW RT @Newz_Sacramento
+4344,dust%20storm,"Jeddah, Makkah Al Mukarrama",No storm lasts forever the dust must settle truth will prevail. http://t.co/1cjyfY8iXj
+4346,dust%20storm,San Francisco,A dust storm in Pheonix. http://t.co/AMgfOnzUSD
+4347,dust%20storm,,NASA MODIS image: Dust storm over Morocco and the Straits of Gibraltar http://t.co/Q1jBreEsXv #duststorm
+4360,earthquake,"Hawaii, USA",USGS EQ: M 1.9 - 5km S of Volcano Hawaii: Time2015-08-06 01:04:01 UTC2015-08-05 15:04:01 -10:00 a... http://t.co/3rrGHT4ewp #EarthQuake
+4364,earthquake,"Do Not Follow Me, Am I a Bot.",#Earthquake of M 2.9 - 140km W of Ferndale California http://t.co/8t8oSCs4w7
+4367,earthquake,"Bay Area, California ",@lizXy_ IMAGINE IF AN EARTHQUAKE HAPPENED
+4369,earthquake,"Sydney, New South Wales",#Children traumatised after the Nepal earthquake are educated on coping mechanisms. http://t.co/UbwDBydK1a
+4370,earthquake,Rocky Mountains Colorado,Manuscript suspiciously rejected by Earthquake Science Journal could rock your world https://t.co/6vBQEwsl1J viaYouTube
+4371,earthquake,in the Word of God,@GreenLacey GodsLove & #thankU my sister for RT of NEW VIDEO http://t.co/cybKsXHF7d The Coming Apocalyptic US Earthquake & Tsunami
+4380,earthquake,,5.3 #Earthquake in South Of Fiji Islands. #iPhone users download the Earthquake app for more information http://t.co/V3aZWOAmzK
+4386,earthquake,"Alaska, USA",#USGS M 1.9 - 15km E of Anchorage Alaska: Time2015-08-06 00:11:16 UTC2015-08-05 16:11:16 -08:00 at epicen... http://t.co/HkIiPyX5jL #SM
+4389,earthquake,"California, USA",1.57 magnitude #earthquake. 27 km from #Ramona CA #UnitedStates http://t.co/ZtOlVGkDuk
+4390,earthquake,"Alaska, USA",1.9 magnitude #earthquake. 16 km from Anchorage AK #UnitedStates http://t.co/wVu08yJGOK
+4394,earthquake,San Bernardo - Chile,#SISMO ML 2.0 SICILY ITALY http://t.co/vsWivoDCkL
+4399,electrocute,Duel Academia,@maeisdumb WHOAHAHAHAHHDJS electrocute me....
+4400,electrocute,Here.,hmm what if I've already met my special someone but i dnt even know it ??????
+4404,electrocute,Manchester,Wish I didn't just electrocute myself 4 times in 30 seconds ??
+4409,electrocute, Manchester/Nantwich,Wish I could buy a device that would electrocute me every time I went to eat something unhealthy....Eat so much shit.??????????
+4414,electrocute,,Photo: weallheartonedirection: I wouldnÛªt let David electrocute himself so IÛªm the asshole http://t.co/nC2d6IRm2u
+4417,electrocute,Here.,stay with me - sam.smith
+4418,electrocute,Under the rain...,So that it'll electrocute somebody's ass baa...No thank you https://t.co/x7P1xaBWTz
+4419,electrocute,clearlake,I feel like I would actually electrocute myself if I tried this https://t.co/FgKpYTiKtI
+4420,electrocute,Twitter.,drinking pepsi im afraid i might spill some and then my headphones electrocute me.
+4422,electrocute,beyond time and space,SPOILERS: your phone does not have the power to electrocute you if dropped in the bath
+4429,electrocute,"Melbourne, Australia",Morning Metro Late train? Check. Crazy guy who tells people the doors will electrocute them? Check.
+4431,electrocute,jds ,I broke my charger. Hella trying not to electrocute myself and die rn ????????
+4433,electrocute,,Eh it's the Macy's Thanksgiving Parade tomorrow! I'll be done. I'll still electrocute your email now!
+4434,electrocute,"Milan, Lombardy",Do you remember when I suddenly electrocute you to death with my fox powers? Ha. Ha. Ha. Ha. Ha. Ha. Because I do.
+4439,electrocute,"Metro, Lampung ~ Balikpapan",#KCA #VoteJKT48ID JoelHeyman: My loose understanding is: @ 750k subs AH will electrocute then eat Michael. Don't want 2 influence anythinÛ_
+4443,electrocute,Bieber Fever UK,"Why can't robots have a shower?
+Answer: Because they will electrocute themselves!"
+4446,electrocute,32935,of electricity he had wire and a golf ball hooked up to catch a bolt of lightning and electrocute it you're not my brother I can tell. The
+4447,electrocute,301|804,Photo: weallheartonedirection: I wouldnÛªt let David electrocute himself so IÛªm the asshole http://t.co/wIabcyParM
+4453,electrocuted,Gap,I've had electrical tape wrapped around my charger for like 2 months bc I don't want to get electrocuted :))))) http://t.co/Fb3Do910FC
+4460,electrocuted,,Almost electrocuted myself ??
+4461,electrocuted,USA,South Side factory where worker electrocuted pays $17000 penalty #Columbus http://t.co/nSGWiCYXFT
+4462,electrocuted,"Stone Ridge, VA",When you realize you could have been electrocuted last night because you grabbed this in the dark. How??? http://t.co/RJRoZMjF2n
+4467,electrocuted,Staffordshire,"Fish stand-up
+'So what's up with whale sharks? They whales or sharks?'
+*Silence*
+'Is this thing on?'
+*Flicks mic. All fish get electrocuted*"
+4469,electrocuted,Central #Ohio,South Side factory where worker electrocuted pays $17000 penalty http://t.co/PENJHc4ZCx #Columbus #Ohio #news
+4473,electrocuted,hayling ,My brother just got electrocuted from the plug socket ????
+4474,electrocuted,Bikini Bottom,Got electrocuted by the mosquito killer. #boomshunga
+4475,electrocuted,Ireland,@EllaEMusic_ You should have just simply let on that you had electrocuted yourself while plugging in your phone charger. It works for me...
+4477,electrocuted,,@philadper2014 They would all get #Electrocuted !!!!!!!!!
+4481,electrocuted,MNL,Beware! Dont use your earphones while your phone is charging. You might be electrocuted especially when your ears are wet.
+4483,electrocuted,england,short hair probs: i can never look cute with bedhair anymore i just look like an electrocuted vagrant
+4484,electrocuted,mullingar ireland,@hairdryer180 you'll get electrocuted
+4485,electrocuted,,@SHGames Please fix the problem where zombies disable your Eco suit and the floor is electrocuted so u die auto magically plz
+4495,electrocuted,Nap town,I hope I get electrocuted today at work
+4497,electrocuted,South Park ??????????????????,#IWouldntGetElectedBecause Oh I certainly would esp if there were any live wires...wait that's elected and not electrocuted! Never-mind!
+4500,emergency,New York,Emergency Garage Gate Repairing Services 11211 NY: Our Offerings: UAC Entrances Brooklyn agent in the set up o... http://t.co/WMqOZ81R43
+4501,emergency,USA,Motors Hot Deals #452 >> http://t.co/vcaptRnmIE MANUAL TRANSMISSION SHIFT KNOB+BOOT+EMERGENCY HAND BRAKE HANDLE 5Û_ http://t.co/S2ltphTGTJ
+4502,emergency,,11000 SEEDS 30 VEGETABLE FRUIT VARIETY GARDEN KIT EMERGENCY SURVIVAL GEAR MRE - Full reaÛ_ http://t.co/VE78djgHa5 http://t.co/ugubwRPQFP
+4505,emergency,,?????? EMERGENCY ?????? NEED PART 2 and 3!!! #NashNewVideo http://t.co/TwdnNaIOns @Nashgrier 103
+4506,emergency,Isle of Patmos,No matter the dilemma emergency nor set-back; The Righteousness of JAH shall prevail! http://t.co/n0tIy7SU1C
+4510,emergency,New York,11000 SEEDS 30 VEGETABLE FRUIT VARIETY GARDEN KIT EMERGENCY SURVIVAL GEAR MRE - Full reaÛ_ http://t.co/OH4YSttyCo http://t.co/X8Kv8tZZE8
+4512,emergency,New York,Survival Kit Whistle Fire Starter Wire Saw Cree Torch Emergency Blanket S knife - Full reÛ_ http://t.co/8pFMSYPg5B http://t.co/nETYdvtLnb
+4513,emergency,"Modesto, CA",RN / Registered Nurse / ER / Emergency Room - Supplemental Health Care: (#Modesto California ) http://t.co/YiYspjLKZO #Nursing #Job #Jobs
+4532,emergency,Ton's Ì¡ead town åÈ Tx,Job now are only in case of emergency.
+4535,emergency,,@StephGHinojosa hey my mom said to tell your dad to call her ASAP. it's an emergency.
+4536,emergency,ocsf,Leaving back to SF Friday have not packed one single thing 911 emergency
+4540,emergency,"Cincinnati, OH",Emergency hop kit? ;) jk https://t.co/MkbQ2YE4Wq
+4545,emergency,"Las Vegas, Nevada",Be safe and be prepare from emergency kits to evacuation. Alertness esp women and children who are also @gmanews https://t.co/3GALBowItN
+4552,emergency%20plan,"Calgary, Canada",Municipal Emergency Plan deactivated! Crisis averted. https://t.co/37L4qUAAVu
+4554,emergency%20plan,,Calgary takes another beating from summer storms; City activates emergency plan http://t.co/4oi9hMo7om
+4555,emergency%20plan,,"119 Sri Lanka's 'Emergency' Line.
+Busy for the past 30 mins.
+Suppose I need to plan my emergencies better. #SL #RT"
+4558,emergency%20plan,"Vancouver, Canada",Calgary takes another beating from summer storms; City activates emergency plan: It was another day of watching theÛ_ http://t.co/240ZLieBrk
+4559,emergency%20plan,"Paonia, Colorado",@go2MarkFranco I spoke w Caleen Sisk. If #ShastaDam gets funded through Cali Emergency Drought Act I plan on doing story wfocus on Winnemem
+4560,emergency%20plan,"Tampa, Florida",New Blog Post Emergency-response plan helps employees get back to productive work http://t.co/Eu21N1G1ZX
+4566,emergency%20plan,"Houston, Texas",Emergency-response plan helps employees get back to productive work http://t.co/tXQZN6GTHa @BusInsMagazine
+4570,emergency%20plan,the Great White North,@660NEWS @cityofcalgary I picture Nenshi & Jeff as the Wonder Twins. 'Municipal Emergency Plan -Activate!'
+4572,emergency%20plan,,Do you have an emergency drinking water plan? Download guide in English Spanish French Arabic or Vietnamese. http://t.co/S0ktilisKq
+4574,emergency%20plan,"Fishkill, NY",I liked a @YouTube video from @prosyndicate http://t.co/mLvBg6sEka Minecraft: Hunting OpTic - Emergency Exit Plan! (Episode 13)
+4581,emergency%20plan,edmonton,Calgary takes another beating from summer storms; City activates emergency plan http://t.co/u59DmRnlTK
+4583,emergency%20plan,Calgary,Calgary takes another beating from summer storms; City activates emergency plan #yyc #abstorm http://t.co/iQIXjtUEwH
+4586,emergency%20plan,In erotic world ,Calgary takes another beating from summer storms; City activates emergency plan: Calgary Airdrie Okotoks and... http://t.co/i7QX4hAz6R
+4591,emergency%20plan,"Calgary, Alberta",Storm prompts activation of City of Calgary's Municipal Emergency Plan: As the City of Calgary remains under aÛ_ http://t.co/7jcR8REgUv
+4594,emergency%20plan,,@KimAcheson @ScottWalker / Emergency Room can not refuse you service & you can do a payment plan.
+4603,emergency%20services,Singapore,Call for Tasmania's emergency services to be trained in horse rescues http://t.co/q9OXqfdGwX #abcnews
+4605,emergency%20services,"CA, AZ & NV",This #Nursing #job might be a great fit for you: RN Nurse Shift Manager Emergency Services - Full Time... - http://t.co/T71ekcPmWL #Hiring
+4612,emergency%20services,"Lismore, New South Wales",Ballina emergency services have again been activated following a shark sighting of what has been described as two... http://t.co/Eu5tKTptpW
+4613,emergency%20services,UK.,Call for Tasmania's emergency services to be trained in horse rescues http://t.co/zVQwLpScSC
+4615,emergency%20services,Sunny South Africa,@GeneFMyburgh @crimeairnetwork and in a week they will protest service delivery and lack of emergency services #ThisIsAfrica
+4618,emergency%20services,,Human Resources Processes Streamlined Insofar as Emergency Services Organization...AbboG
+4621,emergency%20services,"Greenwich, London",@Jinxy1888 Genius economist! Let's double pay of all emergency services military teachers etc to that tube drivers #PayForItHow #tubestrike
+4623,emergency%20services,"Lansing, MI USA","A mended finger
+When a finger is cut there is an immediate reaction from the bodyÛªs emergency services occurs:
+Û¢... http://t.co/UwmPRV0UD5"
+4626,emergency%20services,,When you say call dad but your phone dials emergency services..... #awesomejobsiri
+4629,emergency%20services,Australia,Emergency Plumber Emergency Plumbing Services. #plumber #localplumber #Australia https://t.co/V3LZWkqSO7
+4633,emergency%20services,#ViewsAreMyOwn #IBackTheBlue,@mickbland27 It is disturbing! Emergency services & first responders should work together not slander try & get each other killed.
+4636,emergency%20services,"Anchorage, AK",We're #hiring! Click to apply: Registered Nurse - Emergency Department PEDS Fellowship (FTE .9 Night) - http://t.co/AmCMCltkKC #Nursing
+4638,emergency%20services,,Get Emergency Edmonton Locksmith Services in Edmonton Canada business name: 'I got locked out' http://t.co/GPH5vgaYiY #locksmith #Edmonton
+4640,emergency%20services,"Anchorage, AK",Providence Health & Services: Registered Nurse - Emergency Department PEDS Fellowship... (#Anchorage AK) http://t.co/vz4RPCfTRm #Nursing
+4643,emergency%20services,"Antioch, CA",Can you recommend anyone for this #Nursing #job? http://t.co/xXwm544ygf #Antioch CA #Hiring #CareerArc
+4645,emergency%20services,"Issaquah, WA",We're #hiring! Click to apply: Staff Registered Nurse - Emergency Services (0.9 FTE Evening) - http://t.co/hhiUzIeLtr #Job #Issaquah WA
+4647,emergency%20services,"Bodmin, Cornwall",@bodminmoor1 experienced the expertise of some of Cornwalls finest emergency and rescue services!
+4648,engulfed,Alabama,@snackwave_julie When You Are Engulfed in Cake #LiteraryCakes
+4651,engulfed,"Hagerstown, MD 21742",Why are you engulfed by low self-image? Take the quiz: http://t.co/JAJFxaOemp http://t.co/FUjvF6foaR
+4652,engulfed,?? | pittsburgh ,Become so engulfed in your own success- you forget it ever happened.
+4653,engulfed,,He came to a land which was engulfed in tribal war and turned it into a land of peace i.e. Madinah. #ProphetMuhammad #islam
+4654,engulfed,United Kingdom,Tube strike live: Latest travel updates as London is engulfed in chaos - http://t.co/wrMSpcpml3 http://t.co/nWolqktxaf
+4660,engulfed,"Berkeley, CA 94703, USA ? ",Do you feel engulfed with low self-image? Take the quiz: http://t.co/kcpgAy4FlJ http://t.co/BZqC6JuAix
+4662,engulfed,Manchester,Do you feel engulfed with low self-image? Take the quiz: http://t.co/2wFQctN62v http://t.co/j4PmcEc4xh
+4663,engulfed,Newcastle,Do you feel engulfed with anxiety? Take the quiz: http://t.co/Um6weIUjyW http://t.co/Fm92uk6Yp2
+4665,engulfed,,@FlameCored colliding with her projectile as a cloud of smoke engulfed the area. Not a moment later Shadow propelled himself through it --
+4668,engulfed,West Baltimore ,Society has become so engulfed in capturing every moments and sharing it it takes the fun out of moments that should be intimate.
+4676,engulfed,,'Sometimes I close my eyes and picture what this world would be like if it were engulfed in flames.' #Bot
+4683,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/1TVFfba95l http://t.co/ALjwAWkxPj
+4685,engulfed,"Hollywood, California",#Tubestrike live: Latest travel updates as #London is engulfed in chaos - Telegraph http://t.co/AFzJamLFe6
+4686,engulfed,,Why are you engulfed by low self-image? Take the quiz: http://t.co/7V7YTEjL3J http://t.co/xJJU7MEN8f
+4701,epicentre,,LIVE on #Periscope: Wild Wing Epicentre https://t.co/U2fUK072F9
+4718,evacuate,Sydney - Australia,guy next to me walks into our tiny office room with the fishiest smelling lunch ever. EVACUATE
+4721,evacuate,AZ ? TX ? CA ? IL ?,@crown_769 I'd rather have an ass in fire. At least I'd know whatever I eat will evacuate. Heartburn sticks around.
+4727,evacuate,HEAVEN,SALHA(1):HARRY STYLES(2)U KNOW WHERE IS UR P_EOPLE#HURRY#EVACUATE THEM FROM#HELL.#JUST SHAHADA&'PICK#ME'.#CLASS_SICK http://t.co/UpdDVr6jva
+4728,evacuate,Kurdistan ,ISIS are deploying their troops to other battle grounds since deal with Turkey to evacuate buffer zone areas hence moving fronts to Assad.
+4733,evacuate,foothills,What if the fire up in the Catalinas gets worse and we have to evacuate the area. Aka no school tomorrow
+4741,evacuate,she/her? Û¢ tr Û¢ jordan,MY DOG JUST FARTED EVACUATE THIS FUCKIN ROOM DISGUSTING ASS BROOM LOOKIN ASS
+4743,evacuate,San Diego,my father fucking died when the north tower collapsed ON HIM as he was trying to evacuate more people from the building.
+4746,evacuate,,@yourgirlhaileyy leaveevacuateexitbe banished.
+4751,evacuate,,Just had to evacuate the 100 Oaks Regal theater. I've never been more terrified.
+4756,evacuate,Oregon & SW Washington,Town of Roosevelt Washington ordered to evacuate again as fire worsens http://t.co/Xkh5s1DR8d
+4761,evacuated,"Arizona, USA",@misschaela_ not yet. Everywhere else except us and like a few other shops like Panda are evacuated but they haven't come for us yet.
+4763,evacuated,Seattle/Snohomish/Redlands,UPDATE: Evaucation order for Roosevelt WA has been lifted: http://t.co/2NV0wHDLut
+4764,evacuated,"Grand Rapids, Mich.",Chemical spill at GR water plant contained and water supply OK. @KocoMcAboy asked plant officials what happened: http://t.co/FHPLkEX3oK
+4767,evacuated,,A house was evacuated in Orakei after a bank collapsed and trees were felled by strong winds in Auckland ... http://t.co/UCuCmKypdN #NZ
+4772,evacuated,St. Louis,Chesterfield apartment complex evacuated because of fire #STL http://t.co/MIq39IOK3U
+4776,evacuated,"Gold Coast, Australia",Gold Coast tram evacuated due to broken powerlines http://t.co/hJqbA42iY9 #Local NewsbrokenEmergency ServicesGold CoastpowerlineTramTr
+4780,evacuated,State of Jefferson,"So many fires in NorCal they can't fight some of them.
+
+Pray for our firefighters air tanker pilots support crews & evacuated people."
+4781,evacuated,"Queensland, Australia",#FortitudeValley unit damaged and residents evacuated after fire broke out after 7am this morning #7News http://t.co/8iZgxCeLcc
+4792,evacuated,Auckland NZ,Family evacuated after weather bomb http://t.co/2A4z8pmvVE
+4796,evacuated,Chicagoland and the world!,Grass fire burns past Roosevelt Wash. prompts evacuation http://t.co/BSuDXCPrSG #fire #firefighter
+4801,evacuated,"Chicago, Illinois",Green Line train derails on South Side passengers safely evacuated CTA says http://t.co/w6F7ZiS3KA http://t.co/t7L8jCjyq3
+4804,evacuated,Everywhere.. ,Why does the secret bunker used by Cheney during 9/11 look like it was catered when ktchn staff had been evacuated?
+4805,evacuated,Australia,Valley building evacuated after fire http://t.co/nyqF8GqMzg #queensland
+4806,evacuated,,13000 evacuated as California firefighters fight flames to save homes: CLEARLAKE OAKS Calif. ÛÓ Wildfires lik... http://t.co/xwBYeaOWMw
+4811,evacuation,,Pelling hotels: no strings concealment from straight a rejuvenati???ng evacuation day: pqhaxp
+4815,evacuation,,my school is so fucking dumb they just set off the evacuation sirens on accident
+4816,evacuation,,How an anatomic mother helps up-to-the-minute remodeling high evacuation hospital: IaAvRoIV
+4817,evacuation,Nigeria ,FAAN orders evacuation of abandoned aircraft at MMA http://t.co/5RXI47gCAj #NEWS @TodayNGR
+4818,evacuation,"ON, Canada",Even tho Im getting 40%money back due 2 veld evacuation nothin could make up for missing @DVBBS @HARDWELL @aboveandbeyond #stillnotoverit ????
+4822,evacuation,,You'll neediness so taste up and down ulcerated waggon evacuation cornwall: bNVfDAg
+4824,evacuation,"West Palm Beach, FL",Do you know your hurricane evacuation route? Find it here: http://t.co/mWMVIcdW9O
+4827,evacuation,"Chevy Chase, MD",The EFAK would be designed for building occupants once they evacuate and report to their evacuation assembly sites
+4837,evacuation,Brisbane,Evacuation drill at work. The fire doors wouldn't open so i got to smash the emergency release glass #feelingmanly
+4838,evacuation,"The Dalles, Oregon",KCEM Jeff King reports a level 3 evacuation east of Roosevelt from Whitner rd to the county line between SR14 & Hale rd.
+4839,evacuation,NIFC,#MadRiverComplex #CA #CASRF http://t.co/hjWLDCLiE4 Mad River Complex: Evacuation Advisory for Swayback Ridge Area
+4841,evacuation,,@CALFIRE_PIO Being prepared is crucial but returning to homes after evacuation only to find them robbed is criminal! #WillowFire
+4851,evacuation,Edmonton Alberta Canada,Survey: 52% of medical care facilities near nuclear plants lack evacuation plans http://t.co/vLMmCdPkRo
+4855,evacuation,Breaking News,Evacuation order lifted for town of Roosevelt - Washington Times http://t.co/Kue48Nmjxh
+4861,explode,"Pea Ridge, WV",@wyattmccab you'd throw a can of Copenhagen wintergreen on the ground that would explode on your enemies and give them mouth cancer
+4862,explode,,my damn head feel like it's gone explode ??
+4863,explode,sam,happy Justin makes my heart explode
+4865,explode,~always in motion~,Vanessa was about to explode! This is what she wanted to say to Shelli. Their alliance will survive. #BB17 #BBLF http://t.co/rypGKScHng
+4871,explode,,My ears are gonna explode smh
+4873,explode,,Some guys explode ??
+4880,explode,,@magicallester I will die. I'm actually being serious. My heart will beat so fast it will fly out off my chest & explode
+4885,explode,,Facebook Influence 2.0: Simple strategy to explode your Facebook page and create moreÛ_ http://t.co/rWPRtMIbHl
+4886,explode,,im sooooooo full my stomach is going to explode
+4902,explode,,I need a follow before I explode @GraysonDolan
+4904,explode,Redding ,I feel like I'm going to explode with excitement! Wonder begins within the hourÛ_Û_ https://t.co/zDZJ5kRbzr
+4907,explode,U.S.A,Twitter will explode...light the match @realmandyrain
+4916,exploded,"Concord, North Carolina",The fact checking machine must have exploded today following @POTUS #IranDeal speech.
+4921,exploded,"Alexander, Iowa",#Aphid population in #NorthIowa has exploded in last 4 days! http://t.co/cw6jxYVbNj #FromTheField
+4925,exploded,,@Alltheway80s I had a similar thing with John carpenters 'the thing' one girl threw up when the dogs 'exploded'
+4927,exploded,,And bleach your skin after touching that thong.*shudder* That and all the boudoir outfits. My eyeballs are bleeding & my brain has exploded.
+4928,exploded,"ÌÏT: 39.168519,-119.766123",Holy hell the bathroom on car 649 smells like is exploded... @Metrolink
+4930,exploded,Ittihad .f.c,"that exploded & brought about the
+beginning of universe matches what's
+mentioned in the versethe heaven and Earth
+(thus the universe)"
+4932,exploded,,Our electricity just fucking exploded they're trying to fix it now
+4933,exploded,"Detroit, Michigan",I didn't even know pens still exploded like that...ink everywhere
+4937,exploded,,#news #science London warship exploded in 1665 because sailors were recycling artillery cartridges: A dive to ... http://t.co/r4WGXrA59M
+4939,exploded,,At this moment 70 years ago (local time) the 'Little Boy' atomic bomb exploded over Hiroshima instantly killing at least 70-80000 people.
+4941,exploded,Canaduh,I can't take advantage of Smith Micro's deals right now because exploded car (hint hint shironu_akaineko AT... http://t.co/qbCTxPwhYP
+4942,exploded,,The tap in the bath exploded and now it looks like someone shit in the bath. I love how great our plumbing is!????
+4947,exploded,,If that was ronaldo Twitter would have exploded
+4949,exploded,,"that exploded & brought about the
+beginning of universe matches what's
+mentioned in the versethe heaven and Earth
+(thus the universe)"
+4950,exploded,"Ìth Cliath, Ìäire",@rickoshea @AnthonySHead @NicholasBrendon @DublinComicCon @RTE2fm WHATTT? Oh wow my fangirl head has exploded in a mess of crap everywhere
+4956,exploded,My house probably,@marymc21 ahhhh I'm just being a baby. My car's engine kinda sorta exploded and we're trying to find a solution
+4960,exploded,?????,Fun. Hobby Lobby exploded in this home. http://t.co/TT5L40sjaI
+4963,explosion,,Hp lto-5 lump together warehouse information explosion is more than one divestment able: PMngiqy
+4965,explosion,,GAElite 0 Explosion Greg 1 [Top 2nd] [0 Out] [0 balls] [0 strikes] ... No one on [P: #16 Morgan Orchard] [B: ]
+4976,explosion,New York,New Explosion-proof Tempered Glass Screen Protector Film for Blackberry Z10 - Full read byÛ_ http://t.co/LgbhdFYrwq http://t.co/9qV8glZSwV
+4977,explosion,New York,New Explosion-proof Tempered Glass Screen Protector Film for Blackberry Z10 - Full read byÛ_ http://t.co/u1RKPJ3Cbc http://t.co/sJtxhtx71q
+4987,explosion,LOST Angeles lol,This whole podcast explosion thing has been weird. Just replied to a YouTube comment for the first time in... Ever. What is happening?!
+4991,explosion,,Ahead of Print: A New Paradigm of Injuries From Terrorist Explosions as a Function of Explosion Setting Type.:... http://t.co/tqQc3yxBoR
+4994,explosion,,I liked a @YouTube video from @shawlarmedeai http://t.co/NN4fY1WBxf Easy Natural Bride makeup tutorial Makeup explosion Ft ABH Shadow
+4999,explosion,"Orlando, FL",@MrBrianORL at least they didn't try and put a straw in the liquid one #Explosion
+5003,explosion,"Florida, USA",1 injured in Naples boat explosion http://t.co/89lcTH3Sx1
+5006,explosion,YouTube Channel,I liked a @YouTube video from @theblacklink http://t.co/Ac8P9HJH2q Game Informer Taken King News Explosion Part 1! | Destiny PS4 |
+5009,explosion,,RASaudAuthor: #Pyrotechnic #Artwork by #CaiGuoQiang Explodes into a Blossom on the Steps of the #PhiladelphiaMuseuÛ_ http://t.co/pJE607uXlp
+5011,eyewitness,Washington DC,Hero of capitalism: Sprint employee promotes Sprint while Fox News interviews him as a shooting eyewitness: https://t.co/DtRPhCTmJx
+5012,eyewitness,California,Read an eyewitness account from #Hiroshima on Aug. 6 1945 http://t.co/sbIP9g52YQ Mankind's worst invention.
+5014,eyewitness,,DK Eyewitness Travel Guide: New Zealand http://t.co/AgQgrowj7Y
+5020,eyewitness,New York,Baseball: Eyewitness Accounts: August 6 2015 by Jeff Moore Wilson Karaman and Brendan Gawlowski: Eyes on Mi http://t.co/H4ZOZqLpE7 #sport
+5021,eyewitness,"Charleston, WV",COOL: @NASA captures 'dark side' of the moon which is never visible from Earth http://t.co/qKP30b4ag2 #EyewitnessWV http://t.co/N3hgJSYVO2
+5023,eyewitness,Free Palestine | Save Gaza,#Fracking #Ecocide Eyewitness to Extreme Weather: 11 Social Media Posts that Show Just How Crazy T... http://t.co/dEdDH8Rme8 #Revolution
+5026,eyewitness,,@EdmundAdamus @CampionJoanne Pres Carter's notes in '79 meeting w/ JPII show Latin on his mind http://t.co/7nt13HIrTK http://t.co/4gCmQ4oWen
+5030,eyewitness,Washington DC,Marked as to-read: DK Eyewitness Travel Guide by Richard Sterling http://t.co/oEoKD4KiqH
+5031,eyewitness,,How 'Little Boy' Affected the People In Hiroshima - Eyewitness Testimonials! - https://t.co/5x5hSV5sKO
+5036,eyewitness,"Cape Town, South Africa",Cape Town: Thousands living on Cape Town's streets - Eyewitness News: Eyewitness NewsThousands living on Cape ... http://t.co/nAo6EWCPK2
+5042,eyewitness,Land of the Free,With all due respect @RepMikeRogersAL y would u completely disregard ALL eyewitness accounts on Benghazi? #WereNotGruberVoters. #PJNet
+5045,eyewitness,,Dutch crane collapses demolishes houses: Dramatic eyewitness video captures the moment a Dutch crane hoisting... http://t.co/8PpZNGYAqE
+5048,eyewitness,Montreal,Dutch crane collapses demolishes houses: Dramatic eyewitness video captures the moment a Dutch crane hoisting... http://t.co/AJHKfh4e7G
+5051,eyewitness,Be Earth,http://t.co/B7Iu2lpfXs: Eyewitness to ExtremeåÊWeather http://t.co/dYx2jr6ckP
+5053,eyewitness,West Virginia,UPDATE: A GOP-controlled Senate committee has approved legislation to block the Obama administration from putting... http://t.co/Jg6B0vfl5R
+5054,eyewitness,"New York, NY",'Things got heated. Busta splashed water on him and the employee threw water back' one eyewitness said. http://t.co/GoXwT8PG0B
+5057,eyewitness,,DK Eyewitness Travel Guide: Denmark: travel guide eBay auctions you should keep an eye on: http://t.co/7Tcs1ePOrQ
+5058,eyewitness,"Hudson Valley,NY",QUESTION OF THE DAY: It has been proven that eyewitness accounts are not always very reliable. Does this... http://t.co/2I4brtSh93
+5066,famine,,http://t.co/tcXRtfaPZa Russian 'food crematoria' provoke outrage amid crisis famine memories http://t.co/eT9xxfdJnM
+5070,famine,Blog,'Russian 'Food Crematoria' Provoke Outrage Amid Crisis Famine Memories' by REUTERS via NYT http://t.co/jbYjbQEoiK #Ukraine
+5077,famine,"Washington, DC",Ukraine famine memorial in progress since 2006 goes up in Washington: http://t.co/Td7VIEoODi
+5081,famine,,#IntlDevelopment Ukraine Famine Monument Erected In Washington: Û_ who perished in the Ukraine famine of the 19... http://t.co/nUPy6EPAWn
+5084,famine,"Punjab, Pakistan","@WuckForld @LioniskingRTAC To be alive even a heroic
+Famine drink look out"
+5086,famine,"Brooklyn, New York",So shameful and tragic.. http://t.co/5p1e40qkGV
+5090,famine,"Kyiv (Kiev), Ukraine (????, ????, ???????)",#Ukraine #Kyiv #News Radio Free Europe/Radio Liberty: Ukraine famine monument erected in ... http://t.co/ME5u1YqH4i #Kiev #Ukrainian #Ua
+5091,famine,Worldwide,"NONSENSE >> famine memories -- strong exaggeration of Ukrainian MSM
+#ukraine #russia #?????????? #sanctions https://t.co/dDOTd7W2o8"
+5093,famine,somewhere in time,I would rather dwell in the land of famine and be in God's perfect will than to rest in the confines of Egypt... http://t.co/P14oePCrW0
+5100,famine,"Dublin, Ireland. ",Miners strike; Botha Apartheid SA Tutu Nobel prize; IRA bomb Brighton Famine in Ethiopia. '84 feels like yesterday http://t.co/UZKssvj9CW
+5108,famine,kyiv. ukraine,Russian 'food crematoria' provoke outrage amid crisis famine memories http://t.co/kZYvMnqHy7 via @Reuters
+5111,fatal,Cincinnati,Protesters mark year since fatal police shooting in Wal-Mart (from @AP) http://t.co/3KbeJGmj0d
+5112,fatal,"Kansas City, MO",Police investigate fatal shooting on 71 Highway http://t.co/0KJjdaOJHI
+5118,fatal,,Success is not final failure is not fatal.It is the courage to continue that counts - http://t.co/gRTHlAACfV
+5121,fatal,,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...
+5123,fatal,Gurgaon,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...
+5129,fatal,Milton Keynes ,Trim error led to fatal Greek F-16 crash: ?A NATO safety investigation board report has determined that the ma... http://t.co/YhSahLKQo4
+5133,fatal,"NJ, Amerikkka",Photo: No need to put your all your feelings on social mediaÛ_the results could be fatal. #message http://t.co/EzxtovAl4l
+5143,fatal,,@LadyShaxx That is freaking awesome!
+5147,fatal,,Seatbelts really do save people man. Alot of fatal recks have no intrusion of the interior People just fly out
+5151,fatal,,Investigators shift focus to cause of fatal Waimate fire http://t.co/ej0mewOupS
+5156,fatal,"Buffalo, NY","Police continue to investigate fatal shooting on Vermont & 14th Street
+http://t.co/daACJ5Hfmq"
+5158,fatal,Baroda,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...
+5161,fatalities,,@noobde @comingsoonnet YEEESSSS!!!! I will buy him twice!! No KP2 jus release kombatants stages alternate kostumes and fatalities at will
+5163,fatalities,,Las Vegas in top 5 cities for red-light running fatalities - News3LV http://t.co/rEt82MdQnG
+5167,fatalities,"Greenville, SC",Highway Patrol reports uptick in statewide pedestrian fatalities - Post and Courier http://t.co/xccv3D9IcR
+5173,fatalities,,"http://t.co/pcdub1gQoC
+
+#Figureskate #ToshikazuKatayama [Earthquake Report]@OnlyQuakeNews Get all the headlines of our earthquake-report.Û_"
+5205,fatalities,seattle,Wow 3 are WSEA RT @KING5Seattle: Seattle's deadliest red light runner intersections revealed http://t.co/zqUsy2k4ws http://t.co/OX6dHXEUwe
+5214,fatality,VH1 Soul in a BET World ,Any other generation this would've been fatality http://t.co/zcCtZM9f0o
+5215,fatality,"Sericita, Minas Gerais",@martinsymiguel @FilipeCoelho92 FATALITY
+5216,fatality,,@noobde this monkey will be a good character in mkx lol banana fatality
+5217,fatality,,Flourishing sleigh bell an toothsome transit fatality: oNrhPz http://t.co/gB4W3T7b3T
+5225,fatality,,@Blawnndee FATALITY!!!
+5237,fatality,,???? #mortalkombat #mortalkombatx #mkx #fanart #fatality ?Follow for more? #Gaming #Pictures #YoutubeÛ_ https://t.co/LQCqjUNwiR
+5239,fatality,Bobba Island ,'come from south like ya name asher d' big h does come with some fatality bars in his minor lotm 'battle'
+5240,fatality,"Santa Cruz, CA",Don't let your #writing suffer a fatality! Learn how to seek and destroy bad writing--weekly on Live Write Thrive: http://t.co/VVuL9eGPe8
+5241,fatality,,..... FATALITY
+5246,fatality,Mainer missing Guatemala,'The best way to treat #addiction...is as a #publichealth problem.' http://t.co/Ojt5aXP1OG
+5250,fatality,Planet Earth (mainly) #Neuland,. @paulrogers002 Many #cancers which had a very high fatality rate 30 years ago kill a lot less today. #Oncology has achieved a lot.
+5253,fatality,,@GodHunt_sltv FATALITY
+5258,fatality,,FAVORITE FATALITY!!after she tore her enemy's face she took a selfie & posted on kinda-Mortal Kombat's Facebook. LOL http://t.co/GLyNizSnAK
+5261,fear,"Amos,Quebec,Canada",@Dat_Vi fear of the unknown eh.
+5268,fear,USA,'Bear Markets Are Driven By Fear And Fear Has Taken Over Many European Markets. Don't ... - http://t.co/MlaxoJ1kCJ http://t.co/yGfgndIBpo
+5275,fear,??????????,"Fleshgod Apocalypse - Blinded by Fear (mini drum cover) https://t.co/2PxafIHTf7
+this cover is awesome www"
+5277,fear,Windsor ON Canada,"...@jeremycorbyn must be willing to fight and 2 call a spade a spade. Other wise very savvy piece by @OwenJones84
+http://t.co/fabsyxQlQI"
+5279,fear,,Trying to conquer my fear of flying by pulling massive G's with this flight simulator. #OculusRift #VirtualReality http://t.co/rHFjkUQ7zw
+5288,fear,garbage disposal bc im trash,@skydragonforce ^^why i usually never try to express opinions for fear of the hate ._.
+5289,fear,Sherman ave South Bronx #STF,Show no love and fear no ops
+5294,fear,"Jakarta, Indonesia",FEAR GOD MORE NAJIB LESS: Nazir taking another stab at brother as govt threats police crackdownsÛ_ http://t.co/bQT9bjdUJG #WayneRooney_INA
+5303,fear,"Free Hanseatic City of Bremen, Germany",My grandma had always fear and in some way she was right - @3nach9 #Tatort #HBwahl #Daesh @WESER_KURIER @HBBuergerschaft @Jerusalem_Post
+5307,fear,a pool of my own tears,the next chp is titled emmeryn I Live In Fear
+5311,fire,,HOLY FUCK SOMEONE SET ME ON FIRE https://t.co/GXnvqCGjQ2
+5312,fire,Michigan,Why is it that my pinky feels like it's lit on fire ? #freaky
+5314,fire,San Jose State University ,@21Joseph fire
+5318,fire,,almost set the house on fire tryna make fucking hotdogs...
+5327,fire,New York,AMAZON KINDLE FIRE 7' FAST REPAIR SERVICE FOR POWER JACK USB CHARGING PORT - Full read by Û_ http://t.co/2WHegYGS3k http://t.co/5b0BH8vPM6
+5329,fire,OUTERSPACE,I just got electrocuted by my #HP Chromebook charger it sparked and caught fire #HP http://t.co/UBywQHoaWr
+5333,fire,Sea of Green,Even with delays? Like a bogged down cpu? #gunsense @Minutemaniac @shieldmaidn @BigFatDave
+5334,fire,San Antonio,I just watched Halt and Catch Fire 2x10 'Heaven is a Place' https://t.co/jcPxOrV3AU #trakt
+5340,fire,salem ma,@_NickSimboli_ u know what I'd say she's the equivalent of strawberries in this case I would say she's fire ????
+5348,fire,Lakeland Fl,@traplordthings Y din u fav my fire memez åÀ!
+5358,fire,,Politifiact: Harry Reid's '30 Percent of Women Served' Planned Parenthood Claim Is a 'Pants on Fire' Lie: Call... http://t.co/wY4Xu1A9j4
+5360,fire,Wonderland,When your likes your Fire IG selfie ????
+5361,fire%20truck,NY,Tractor-trailers collide on NJ Turnpike å_ 42 http://t.co/OTEXyh79J8 http://t.co/MLZG4l0xnL
+5363,fire%20truck,Tulsa,News On 6 Crew Neighbors Put Out Hallett Truck Fire http://t.co/TwqVKZY6Dn http://t.co/eeyveTLAHW
+5364,fire%20truck,"Lampe, MO",What a night! Kampers go on vacation to end our Dream Job party where fire truck sprays the pool with a hose! http://t.co/if0BiyubC4
+5369,fire%20truck,Los Angeles,#Irvine #SigAlert update: 133 S now closed at Irvine Blvd. 133 N closed past the 5 b/c of trash truck fire. @KNX1070
+5370,fire%20truck,New York,Ltd Toy Stamp & Vintage Tonka TFD No 5 Pressed Steel Pumper Fire Truck - Full read by eBay http://t.co/hTvyEnXCBS http://t.co/xSvPzxYRe3
+5374,fire%20truck,Tulsa,News On 6 Crew Neighbors Put Out Hallett Truck Fire http://t.co/TwqVKZY6Dn http://t.co/QoInQ6gc9M
+5376,fire%20truck,"Los Angeles, California",Photo: #NJTurnpike å_ NJ Turnpike Reopens Hours After Truck Fire In Linden; Driver Dead | NJ Turnpike... http://t.co/8SRT9rGaX7
+5388,fire%20truck,"Queens, New York",@dmon2112 @C_T_Morgan but the fire rings of NYC permits I'd have to jump through for a food truck don't make it appealing
+5390,fire%20truck,"Fredericksburg, VA",Last night was a ball! Atop a 40 ft. fire truck latter!#NNO2015 http://t.co/0KTxo7HLne
+5393,fire%20truck,USA,Fire shuts down part of NJ Turnpike å_ 96 http://t.co/UzeatfZAyA http://t.co/ejrGK69aeq
+5394,fire%20truck,,Mark your Calendars: Fire truck parade returns to Raleigh! http://t.co/QGCAqdfEKf
+5395,fire%20truck,"Los Angeles, CA",This dude just pulled in front of our production with his truck on fire. Cops pulled up after we put it out http://t.co/e7DRPQUW4G
+5398,fire%20truck,,Truck catches fire in Warwick: A tree service truck caught fire around 7:15 p.m. on Wednesday in Warwick on In... http://t.co/nAdAvcq9VA
+5399,fire%20truck,USA,Pickup Truck Fire On Driscoll Bridge Snags Garden State Parkway #NewYork http://t.co/Q5YU2tZGte
+5401,fire%20truck,,Langhorne-Middletown Fire Co. welcomes new truck ... http://t.co/KrpJo9zMSx
+5402,fire%20truck,New Jersey,Truck driver died in Turnpike fire most lanes still closed police say http://t.co/tTmJgq6ayM via @njdotcom
+5405,fire%20truck,"Augusta, GA",Photo: xshanemichaelsx: instaxbooty: ?? @johnnyxphixxle ?? (via TumbleOn) Is that a fire truck ? I need to... http://t.co/WZ809L8zP5
+5414,first%20responders,Philippines,'We must educate first responders about how to adapt to emergencies involving an #autistic individuals.' | http://t.co/JIeB3lsZqc
+5415,first%20responders,"Indianapolis, Indiana",Central Indiana first responders are providing feedback at the third and final #FirstNet focus group today.... http://t.co/pehH7wHZ0g
+5419,first%20responders,"Columbia, MO",[News] Saint Louis University lowers tuition for first responders http://t.co/VJRHkmHpu2
+5421,first%20responders,Stuck In Traffic,Community first responders #CFR The Radio Ham: Tony Hancock http://t.co/MMSoOOOa70
+5422,first%20responders,,First responders tell me he is lucky.... had someone riding with him today. http://t.co/jc16CZn0NC
+5424,first%20responders,,"Good Day Columbia: First Responders Memorial with Sallie ...
+#MEMORIAL_DAY #MEMORIALDAY
+ http://t.co/qW3uNfV8Kb http://t.co/hgxMBmrDa3"
+5427,first%20responders,Northern Colorado,'An alarming trend among first responders is raising concerns for local fire departments in Colorado and around... http://t.co/Iqr6v6DTHr
+5429,first%20responders,,What I'll miss the most is that very rare occasion where you and the first responders on scene are the difference between life and death.
+5431,first%20responders,Serving Oklahoma,Volunteers served first responders today during a tanker fire in Eufaula. Provided cold drinks and food. #okwx #tankerfire
+5433,first%20responders,"Jacksonville, FL",Attention Service Members Veterans Educators First Responders in Jacksonville FL http://t.co/4UrtBEAcE5
+5434,first%20responders,"Baton Rouge, LA",'The longer you wait the more people die': #Lafayette theater shooting first responders relied on training: http://t.co/yXOojnbr7m
+5435,first%20responders,,@pnppro1 Warm Up exercise of the trainees on Basic First Responders Training Course. http://t.co/vdbj2o0IYX
+5436,first%20responders,"From Boston, for New England",.@MLSudders on social workers: 'I would like us to think of them as first responders and give them the same level of respect'
+5438,first%20responders,,"SPD OFFICER SHOT - PLEASE PRAY
+
+Please pray for the Shreveport Police Department and other first responders... http://t.co/Kx1YnSME5T"
+5440,first%20responders,,Pray for our Nation & her troops that defend in her. May he continue his watch over those watch over us our first responders.
+5441,first%20responders,"Goldsboro, NC",Red Cross arrived on the scene around 9:30pm to canteen for first Responders fighting this massive blaze. Go... http://t.co/IDY9KsCaVV
+5447,first%20responders,,Allergan Kicks off REFRESH AMERICA Program to Supply First Responders With Free Eye Drops http://t.co/0OjKuLqO5I http://t.co/wkmcPmCtgu
+5451,first%20responders,"Tennessee, USA",Please pray for employees residents and first responders. #myhometown #livesmatter https://t.co/tdeS8MEAR2
+5453,first%20responders,Nevada,Every time I get on the news I see more sadness and needless death. To all my first responders still on shift tonight go home safe. ??????????
+5456,first%20responders,Hull ma,@AlJavieera The public should always have the ability to share information w the police & first responders #publicsafetyfirst
+5457,first%20responders,"Cedar City, Utah",First Responders needed for a Cedar City community event Aug 7/8. Contact Terri Linford at 435-327-1148. Meeting tonight.
+5463,flames,,flames everywhere ???? https://t.co/cG9GAkbPta
+5464,flames,,more new flames for that next fire under the pot line up flames right here right now let em knw u wit em flames!!!
+5470,flames,live from the low end,the fires of hell for Julie #Extant writers....she better go down in flames when this is all over...#Extant
+5472,flames,,@xodeemorgss she went to get rice and the whole thing tipped over so he had like flames on his pants and she was like omg I'm so sorry!??
+5474,flames,,@ClockworkHeart When I read it this morning I had a Mrs White moment ('Flames on the side of my face...') GAH.
+5478,flames,New York,*NEW* Snap On Tools Black baseball Hat/Cap Silver/Gray Embroidered S Logo Flames - Full reÛ_ http://t.co/F30F9V0aSI http://t.co/5B5a1HDzF6
+5483,flames,Little Rock,I only fuck you when it's half past five
+5490,flames,bestatriz Û¢29/4 Û¢ #askdemigod ,see the flames inside my eyes
+5500,flames,"Fargo, ND",You were just waiting for us to go down in flames
+5504,flames,,This is gonna go down in flames ?? https://t.co/pjOG1LcYYV
+5508,flames,"Here, There & Everywhere..",I'm listening to 'Zion' by Flames on #Pandora http://t.co/mP0tmdzyIE
+5511,flattened,,I think that's been the best bit of this match. Kurt Zouma absolutely flattened that bloke.
+5512,flattened,support all girls!,why would anyone want to hear some type of shin cup noodle flattened by a rolling pin sing https://t.co/IuEm2g1Nzp
+5513,flattened,Swansea,@jackcarter22 me and bricktop were laughing about him on sunday when he flattened 3 or 4 arsenal players from a corner ???? #tank #VaVaZouma
+5516,flattened,,Unlike the Donaldson dive into the stands no young boys were flattened in the Kyle Parker catch.
+5523,flattened,Derbyshire,@johndavidblake Winds me up to see 95% 'whites' held up as 'black' as if just a trace of flattened nose or curly hair is impure.
+5527,flattened,,Free Ebay Sniping RT? http://t.co/6KGMVkbPLR Hot 80pcs Tibetan Silver Round Flattened Spacer Beads Jewelry Finding 5.5x1. ?Please Fa
+5530,flattened,"Hawkes Bay, New Zealand",@st3ph007 do you think the pedagogy/practice is more important than the environment? #BFC630NZ walls can be 'flattened' in many ways
+5533,flattened,"Salford, Greater Manchester",Zouma! Runaway train. Absolutely flattened the Fiorentina player there...
+5536,flattened,"Whitley Bay, England","Lustig gets flattened...he should have stayed down longer..
+
+Commons coming on . my guess is GMS coming off...
+
+water break! 0-0 76mins"
+5537,flattened,New York,100 1' MIX NEW FLAT DOUBLE SIDED LINERLESS BOTTLE CAPS YOU CHOOSE MIX FLATTENED - Full reÛ_ http://t.co/61fALvOCuK http://t.co/1MuTpFcgDL
+5542,flattened,,Zouma flattened that breh
+5543,flattened,San Diego,Flattened via IDEAS IN FOOD - A cheesecake brownie does not always have the aesthetic we are ... http://t.co/oRSmW5Airj
+5546,flattened,,David Ortiz just absolutely flattened that baseball??
+5549,flattened,Worldwalking,@FollowerOfDole 'Give me your lunch money ner-' *flattened by falling quarter*
+5550,flattened,"Hermiston, Oregon",I see a flattened Cyberman. Do I watch way too much Doctor Who??? http://t.co/XMKVhW2RS0
+5551,flattened,,The satisfaction of knowing you flattened someone with logic and reasoned argument ??
+5562,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/E6BnWxFtkb http://t.co/Ww2uVHRy89
+5566,flood,,Hey @FLOOD_magazine send me to #HOTCHIP @hot_chip @greektheatrela
+5568,flood,,If you decide to get rid of #flood damaged #furniture solid waste will pick it up for a fee. You can call #Tampa Solid Waste at 813-274-8811
+5571,flood,United States,2 NNW Hana [Maui Co HI] COUNTY OFFICIAL reports COASTAL FLOOD at 5 Aug 10:00 AM HST -- WAIANAPANAPA STATE PARK CLOSED DUE TO LARGE SURF. Û_
+5572,flood,United States,Flood Advisory issued August 05 at 4:35PM EDT by NWS http://t.co/fuZ7y44P4I #WxKY
+5574,flood,New York,2pcs 18W CREE Led Work Light Offroad Lamp Car Truck Boat Mining 4WD FLOOD BEAM - Full reaÛ_ http://t.co/0AIV5KhZjv http://t.co/q6HHZbFxCv
+5583,flood,,12' 72W CREE LED Work Light Bar Alloy Spot Flood Combo Diving Offroad 4WD Boat - Full readÛ_ http://t.co/o7x8oDiBqU http://t.co/jWqxKwSOLL
+5585,flood,New York,2pcs 18W CREE Led Work Light Offroad Lamp Car Truck Boat Mining 4WD FLOOD BEAM - Full reaÛ_ http://t.co/yo9q6WxweU http://t.co/n581wQqyAS
+5591,flood,Canada,How did I know as soon as I walked out of class that Calgary would flood again today
+5596,flood,New York,2pcs 18W CREE Led Work Light Offroad Lamp Car Truck Boat Mining 4WD FLOOD BEAM - Full reaÛ_ http://t.co/Yrd3nPC9V0 http://t.co/AnRd0VIfwK
+5597,flood,New York,12' 72W CREE LED Work Light Bar Alloy Spot Flood Combo Diving Offroad 4WD Boat - Full readÛ_ http://t.co/8Mk9TD4RRL http://t.co/W20rH3Ai9J
+5601,flood,Asia,Myanmar Flood Victims Need More Relief Aid and Food: Regions struggle with flood aftermath and dwindling suppl... http://t.co/O5adXdNnII
+5606,flood,"Desloge, Mo","Flash Flood Watch in effect through 7:00am Thursday morning/12:00pm Thursday afternoon.
+For: Perry Wayne Cape... http://t.co/fs7vro5seS"
+5607,flood,New York,12' 72W CREE LED Work Light Bar Alloy Spot Flood Combo Diving Offroad 4WD Boat - Full readÛ_ http://t.co/EBJz2MxLr3 http://t.co/jvVD8smJMw
+5610,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/arR2CVbqJJ http://t.co/nahMndn8X1
+5615,flooding,"yakima, wa",@Schwarzenegger @FoxNews you won't because Dems are focused on flooding our borders with illegal immigrants to add to their voters. #EndofUS
+5616,flooding,"Austin, Texas",Memorial unveiled for Travis County Deputy Jessica Hollis who was killed in Sept. flooding http://t.co/uSiN3M9kgI http://t.co/Mo5lmviPw5
+5623,flooding,,Awh damn I just realized yall gone flooding my TL with school shit and Ima be like .. ??
+5630,flooding,New York City,#NYCHA says the pipe that burst and flooded apartments in a senior center is being repaired. http://t.co/eCyui3290H http://t.co/6S6sYUYypL
+5636,flooding,United States,#BREAKING Business at the Sponge Docks washed out by rain flooding /#news
+5637,flooding,,Nigeria warned against massiveåÊflooding http://t.co/CofH4khFsD http://t.co/m0fLpPxIlg
+5639,flooding,"Raleigh, NC","@caseyliss def - and donÛªt even fathom when there is bad weather / flooding ??
+
+#byebyeroad"
+5640,flooding,"36702 State Road 52, Dade City","Flooding updates from Pasco County
+
+http://t.co/gOSzRa5bdD"
+5643,flooding,State College Pa,Donate to help Myanmar Flooding victims http://t.co/fuRVRES9Ks
+5648,flooding,"Maryland, USA",Now WoW folks I'm sorry for all the 'prepared' jokes that must be flooding your feeds right now.
+5649,flooding,,@PopMech ANOTHER tweet double posted within 4 hrs. Flooding my timeline with the duplicate tweets.
+5660,flooding,,when youre tired as hell but your brain keeps flooding you with inspiration
+5666,floods,Miami - Support NAVY #SEALS ,OFA outfit floods net w paid OFA trolls &automated netbots that spam any story that is not complimentary of the One http://t.co/hNlSDLhmB9
+5667,floods,Tampa FL,Pasco officials impressed by drone video showing floods: Drone videos have given an up-close view of flooded areasÛ_ http://t.co/PrUunEDids
+5678,floods,Islamabad,"@asgharchohan86 @AdilGhumro
+There are floods in kpk because you guys couldn't build dams in 30 years you ruled.
+Even for your own Thar"
+5679,floods,,"Who is bringing the tornadoes and floods. Who is bringing the climate change. God is after America He is plaguing her
+
+#FARRAKHAN #QUOTE"
+5681,floods,Colorado,"If I wouldn't have lost all my guns in #Colorado floods I would say I could completely understand
+#copolitics #2A https://t.co/37rHlsobbn"
+5682,floods,Montana Misery,all cats are in....time for the floods.......
+5691,floods,,VIDEO Facing Up To Persecution ÛÒ Pastors Silenced ÛÒ MB Obama holds Iraqi Christian asylumÛ_ https://t.co/qrtUzfHOdw http://t.co/xBNRPS8xHO
+5696,floods," Elizabeth, NJ",Typhoon Soudelor approaches after 7 killed 2 missing in floods in Philippines http://t.co/hALJNnWrwi via @abc7chicago
+5697,floods,"Manila, Philippines",Flash floods landslides possible as Hanna draws in more monsoon rains - Pagasa http://t.co/TzWmsEQPHW | via News5 #iBalita
+5700,floods,,No Floods #MTVHottest Lady Gaga
+5701,floods,"Guayaquil, Ecuador",I'm so dried out in this desert let me know I wanna be with you speaking of floods speaking of truth - Laleh ????????
+5702,floods,"Brooksville, Florida",Myanmar floods occur during low season for river cruising - Pandaw River Expeditions is currently operating only t... http://t.co/cQtTGrkwf6
+5708,floods,Australia,#WorldVision is responding to floods in #India and #MyanmarFlood with more than 300000 affected: http://t.co/eU8jypIzsd
+5709,floods,,Bengal floods: CM Mamata Banerjee blames DVC BJP claims state failed to use relief funds: KOLKATA: Even as fl... http://t.co/WFwWRcmi9t
+5718,forest%20fire,"Oregon, USA",Grass fire near Forest Grove contained. Sparked by a rock being struck by a tractor. #LiveOnK2 @JackieKATU http://t.co/Yr9mmIS7jT
+5723,forest%20fire,world,Damn dry desert forest fire...damn :( https://t.co/P5SoDrkVW3
+5725,forest%20fire,,#Winston #salem Fire in Pisgah National Forest grows to 375 acres http://t.co/5IMxNGsaSA
+5728,forest%20fire,,Crews responding to small brush fire burning in Tahoe Forest - My News 4 - KRNV Reno NV http://t.co/VhyJnVug6f
+5731,forest%20fire,"Forest Grove, OR",OMG there's a news chopper over a 3-acre mostly contained fire outside Forest Grove? #slownewsday ?
+5735,forest%20fires,,#GlobalWarming U.S. Forest Service says spending more than half of budget on fires: Û_ United States the agen... http://t.co/mWiE5CeEIi
+5737,forest%20fires,,#Reuters #US Forest #Service says spending more than half of budget on fires http://t.co/XlpgKguhkG
+5738,forest%20fires,Babylon Up-On Hudson,+Cossacks+hussars oo hd riggd up rough shelters N th glade+were kindlng glowng fires N a hollow v th forest where th FrNch could not C th
+5742,forest%20fires,San Francisco,Why can't they use ocean water to fight forest fires? http://t.co/NMWi5Sm3Uw
+5747,forest%20fires,west coast ,People come and go. Some are cigarette breaks others are forest fires.
+5749,forest%20fires,"alberta, canada",@gilmanrocks7 ya it was. Damn forest fires.
+5750,forest%20fires,"Muskegon, MI",@lldubs Are any of your vineyards affected by the forest fires in California?
+5755,forest%20fires,,I hope the rain stops the forest fires tbh we've been on lvl. 3 lockdown for water for the past month :/
+5756,forest%20fires,,Stubborn forest fires burn in two provinces |RZ| http://t.co/yZO948652k #Iran #IranElection
+5761,forest%20fires,"Washington, DC",Worth the read --> As California fires rage the Forest Service sounds the alarm about sharply rising wildfire costs http://t.co/2LZtOMsAUz
+5762,forest%20fires,"Panama City Beach, Florida",A group of Florida Forest Service firefighters could be deployed to California to help contain fires. Details at 10! http://t.co/tRrig5J1Re
+5767,forest%20fires,,Property losses from northern CA wildfire nearly double http://t.co/fHqx7FiIVJ If you pray please remember CA people/forests/wildlife/water
+5768,forest%20fires,"Kruibeke, BelgiÌÇ",'People come and go. Some are cigarette breaks others are forest fires.'
+5770,forest%20fires,"Missoula, MT",Two New Bitterroot National Forest Fires are Largest for Forest So Far This Year http://t.co/zVa34qHU8M
+5773,forest%20fires,"Madison, WI",Standing in mountaintop field scented with wildflowers dust and distant forest fires smell of impending rain in the air. #fieldworksmells
+5774,forest%20fires,,Q: Why do ducks have big flat feet? A: To stamp out forest fires. Q: Why do elephants have big flat feet? A: To stamp out flaming ducks.
+5779,forest%20fires,NYC,Firefighting consumes Forest Service budget sparks political clash http://t.co/ARN8qfgNpm
+5782,forest%20fires,NIFC,#RiverComplex #CA #CASHF http://t.co/37iYHPPNr4 River Complex: Six Rivers National Forest lightning fires ÛÒ Morning Update
+5785,hail,,#LukeBox how about a song for your fellow Eagles?! ???? #hail southern
+5786,hail,,@froilan_canin https://t.co/caCXADLEb8 AFTERNOON DELIGHT Ha! Bounce filmed in between Calgary's Uber Hail Storms #yyc http://t.co/6zgkDpMMSK
+5787,hail,United States,BYZ issues Severe Thunderstorm Warning [wind: 60 MPH hail: 1.00 IN] for Big Horn Yellowstone [MT] till Aug 5 8:00 PM MDT Û_
+5788,hail,Sales Specialist~ Worldwide ,Hvy rain wind sm hail Tree down on Bluff Ridge Rd. Multiple trees down o on house on South Shades Crest Rd. (Past Lake Drive) @spann
+5796,hail,"Stgo, Chile",Seen on Fahlo:#WCW All Hail the QueenåÊ?? http://t.co/zrhXy9iBno http://t.co/Opjz8fGdIy
+5802,hail,Qwuank,Which version of All Hail Shadow you do you like more Magna-Fi's or Crush 40's? ÛÓ Crush 40s. http://t.co/oGs6d0p3RB
+5806,hail,Oklahoma,Severe Thunderstorm 7 Miles North of Arcadia Moving SE At 20 MPH. 60 MPH Wind Gusts and Large Hail. Hail... #okwx http://t.co/WEd69e4KRg
+5809,hail,Townsville,Once I get my stomach together I will be wearing crop tops during all seasons. Rain or shine. Snow sleet or hail.
+5810,hail,Ontario CA,Something to think about
+5811,hail,,Severe Thunderstorm Warning until 08:00 PM local for Custer Fall River & Shannon Counties in SD. 60 Mph Wind Gusts And Penny Size Hail. #sd
+5813,hail,British Columbia,@adolwyn This near U? @JWagstaffe: RT @OldsFireDept: Aug 5 2015 Hwy27 west of Olds. Approximately 1 foot of hail. http://t.co/Yg0pd73Bpw'
+5820,hail,St Louis,Created save #666 on my current Fallout 3 playthrough. Hail Satan!
+5823,hail,Ontario CA,i survived what you tried to destroy you're not a man just a boy
+5830,hail,Rapid City & The Black Hills,New warning for Central Hills 1' hail 60 mph winds. NOT affecting Sturgis but could later tonight. #KOTAWeather http://t.co/E8oUxVKuTE
+5831,hail,Bending the elements.,Hail Mary. ????
+5838,hailstorm,,Twin Storms Blow Through Calgary * 75 http://t.co/sIAKlSbdiP http://t.co/fm44ZS93OA
+5839,hailstorm,Washington State,We The Free Hailstorm Maxi http://t.co/Cnn1nXXNwc
+5844,hailstorm,North East America,Boston yesterday after an intense hailstorm. Photo by 'then0mads0ul'. http://t.co/uxgtXCArQ1
+5846,hailstorm,"Calgary, Alberta, Canada",#yyc #hailstorm #christmas came early https://t.co/f0A2IIzx3A
+5851,hailstorm,World Wide,Yesterday's #hailstorm! #boston #cambridge http://t.co/HbgYpruvO7 http://t.co/SwtgHLibs2
+5852,hailstorm,Toronto,RICHIE: This was #Calgary yesterday after a crazy #hailstorm! pics via Calgary Herald http://t.co/1oH20qHk2l
+5857,hailstorm,"Calgary, Alberta, Canada",Get out of the hailstorm and come down to @TheBrokenCity 2night at 9PM to catch a screening ft. @thebanffcentre! There will be BEER + FOOD!
+5859,hailstorm,,It looks like all the trees in my yard had a Britney Spears style meltdown. #Bald #Hailstorm
+5860,hailstorm,Sudbury,Hailstorm flash flooding slam Calgary knocks out power to 20k customers http://t.co/sNpPqrwuXB
+5862,hailstorm,"Boston, MA",JPLocalFirst RT eliotschool: Yesterday's #hailstorm in #Boston. Wow. Thunder lightning. Artful awesome. http://t.co/YsvE1SEAko
+5865,hailstorm,Calgary ,#yyctraffic #yycstorm Caller says 'idiots' are stopping under overpasses and blocking 'all lanes on Crowchild' in (small-sized) hailstorm.
+5866,hailstorm,"Calgary, Alberta",here is goes again #abstorm #hailstorm #yychail stay safe everyone!
+5871,hailstorm,Philippines,Hundreds of commuters abandoned at LRT station during severe hailstorm http://t.co/vMIGkJ0tkZ
+5872,hailstorm,Golden British Columbia Canada,Good olde fashioned prairie #hailstorm #calgaryweather https://t.co/hI1yOQFlfm
+5877,hailstorm,,Hundreds of commuters abandoned at LRT station during severe hailstorm http://t.co/25wIeHMLZ5
+5878,hailstorm,Ottawa Canada,Hailstorm cleanup begins in Calgary http://t.co/DhH5jz2w49
+5879,hailstorm,Calgary and USA,600 passengers abandoned at LRT station during Tuesday's hailstorm http://t.co/eLZoyEqA3m #yyc #yycstorm #abstorm
+5880,hailstorm,USA,@Haley_Whaley Hailstorm Clash ofClans Gems Giveaway is out now! visit my Profile Bio to get guide on how to get 200.00 Gems
+5895,harm,london,Mental health is real..?? Self harm is real..??Depression is real..?? feeling alone..?? no where to fit in..?? one day it could be you???
+5897,harm,,@ShaunKing HARSH PENALTIES FOR LEGAL FIREARM OWNERS WHO STRAW PURCHASE A FIREARM FOR ANY FELON. GANG MEMBERS ONLY INTEND TO CAUSE HARM!
+5910,harm,Blue Nation Naija,Anger is an acid that can do more harm to the vessel in which it is stored than to anything on which it is poured ~http://t.co/UTiGx9PSry
+5914,harm,Washington State,Politicians are using false allegations to attack #PlannedParenthood & harm women. We aren't fooled we #StandwithPP http://t.co/JhseGQLbYq
+5915,harm,Maryland,What is up with #Bears beat writers ÛÏwarningÛ fans not to get excited? What actual harm does it do to be excited? Shut the hell up!
+5917,harm,,Never let the experiences of your past bring harm to your future. Remember your past canÛªt be altered and your... http://t.co/l9cy29sb1t
+5924,harm,"Melbourne, Australia",@Norcinu @TheBodyShopAust @thomaldo tiny plastic beads used in cosmetics (scrubs toothpaste) doing great harm to aquatic ecosystems.
+5926,harm,Los Angeles,Politicians are using false allegations to attack #PlannedParenthood & harm women. We aren't fooled we #StandwithPP http://t.co/bIE5pfR2Ac
+5931,harm,"HamptonRoads, Virginia",Father we come 2u & lift up this nation America as well as other countries 2 keep it calm & deliver us from harm in Jesus name??Amen #12K??
+5936,hazard,Hong Kong,Ibrahimovic & Hazard Boot Test: Nike Mercurial Vapor X Test - footballfreestyle24/7: http://t.co/BZUnEPsuLP via @YouTube
+5940,hazard,Karma ,"Whoever got compared with Hazard faded away one by one.
+Kagawa
+Januzaj
+Di Maria
+Who's next?"
+5941,hazard,Mystic Falls,There will be a 3-match ban for any player caught diving this season. Looks like Hazard Costa and Young will miss half the season.
+5945,hazard,"Oro Valley, AZ",@mishavelgos @MattBacal8 @ComplexMag this is so accurate I can't even speak haha... Comparing hazard to harden is so true
+5946,hazard,,@feroze17 @WarAndSetPiece No one's said Depay's gonna overtake Hazard......
+5948,hazard,Android Land,"NVIDIA recalls some Shield Tablets because of possible fire hazard
+
+http://t.co/M3nSIx073I
+
+#nvidia"
+5951,hazard,,OEM 2001 Volvo XC70 Center Dashboard Hazard Lamps Control Switch w/Vent Panel http://t.co/VXixYcbbtH http://t.co/HSDonZ49hd
+5967,hazard,,"@fplhints hazard depay ozil Ritchie .
+Should I go with 3 crazy strikers or 4 midfielders ? #fplboss"
+5968,hazard,Chicago,Parents Beware: A Household Hazard that Won't Go Away http://t.co/91eiTHgvDB
+5969,hazard,Honduras,Con el Crack de Hazzel Hazard?????? @ Saint John's Episcopal School https://t.co/iQ0iWYPizd
+5970,hazard,Dark Night. ???? ??,"'HOLD ON'
+Batman in Hazard suit. http://t.co/fSPLv8Inwr"
+5971,hazard,"El Cerrito, CA",Choking Hazard Prompts Recall Of Kraft Cheese Singles http://t.co/98nOsYzu58
+5973,hazard,Sunderland/The Saaf,Eden Hazard John Terry and Sergio Aguero. An honourable mention for Nemanja Matic. https://t.co/4nzj9qoOay
+5976,hazard,,@Hazard_VN @AccuracyEsports add me
+5977,hazard,"Sydney, Australia",@SuperBobbyPires Hazard Ronaldo Cantona Pepe and all those who lashed out before him.
+5984,hazard,,Road Hazard @ E CONFEDERATE AVE SE / MORELAND AVE SE http://t.co/tym6tYmh4M
+5986,hazardous,,#ine #instyle Olap #world pres: http://t.co/PJaY74M2Fi How To Recognize A Hazardous Waste And The Multidimensi http://t.co/vr3wlQXl0G
+5993,hazardous,New York,#Hazardous #Waste #Treatment #Disposal : Aug 2015 market growth feeble. http://t.co/yyt4KPtFh8 #MarketResearch #Statistics
+5994,hazardous,,#alfa #forecast Olap #world pres: http://t.co/YiFXKRQx0C How To Recognize A Hazardous Waste And The Multidimen http://t.co/HO4b3L0KI8
+6005,hazardous,"Mobile, AL",@moneymaker32931 tanker truck overturned carrying hazardous materials.
+6006,hazardous,United States,CHS issues Hazardous Weather Outlook (HWO) http://t.co/lbkiyfwFlU #WX
+6008,hazardous,,#diablo #dsp Olap #world pres: http://t.co/LFEtNRXyWt How To Recognize A Hazardous Waste And The Multidimensio http://t.co/PvNvqaXsA7
+6010,hazardous,,TSA issues Hazardous Weather Outlook (HWO) http://t.co/7vlu8ni90Q
+6011,hazardous,Minnesota,@megynkelly illegals don't abide by the uniform building codes or OSHA safety codes.structur's they build are hazardous to your health.
+6014,hazardous,"Washington, DC",Also confirmed by Senate Marie Therese Dominguez to be Administrator of the Pipelines and Hazardous Materials Safety Administration (PHMSA).
+6016,hazardous,,#hot #fiat Olap #world pres: http://t.co/QddYwTynvF How To Recognize A Hazardous Waste And The Multidimensiona http://t.co/dzQGotozNA
+6018,hazardous,"Miami, FL",50k plays on our 'Delirious' remix!! Happy it's getting so much love ??
+6021,hazardous,,#triangle #peter Olap #world pres: http://t.co/JeHTQAqDFh How To Recognize A Hazardous Waste And The Multidime http://t.co/gwXdjd8nGu
+6025,hazardous,New Zealand,SH 29 Kaimai Ranges - Eastbound. Hazardous driving conditions. Due To A Truck Breakdown... http://t.co/0cuCMZCmaO via @AA_Traffic
+6028,hazardous,Yellowknife NT Canada,Drums of Hazardous Waste Dumped Around Kodiak Island: Someone has dumped drums of hazardous was... http://t.co/ZSnnrULaWo >@alaskapublic
+6029,hazardous,Planet Earth,Skinny Jeans are Hazardous for Your Health! http://t.co/TVdvP7VdAs
+6035,heat%20wave,"Brooklyn, NY","I added some dumb ideas to beat the #summer heat cheaply
+ http://t.co/jatxpAFvA9 @brokelyn #brokelynati"
+6040,heat%20wave,"Chicago, IL",New Post: Diff Durden - Heat Wave - CA - http://t.co/jGjgR4o5K0 Vote On Blog #DHHJ #HipHop #Chicago #NP http://t.co/1W10uKVHoo
+6042,heat%20wave,"San Francisco, CA",@CrawliesWithCri @Rob0Sullivan What do they consider 'heat'? When I lived in London they thought a 'heat wave' was like 25C hahaha
+6044,heat%20wave,"For a healthier, happier YOU!",Never really seen olive leaf extract to help with a rash but good luck! @IngeScott humid heat wave and flared up. I take olive oli extract
+6046,heat%20wave,"vb/norfolk,va",Yeah it actually is this whole week we in a heat wave :( https://t.co/cB2NWtGy47
+6052,heat%20wave,"Rahway, NJ",It's nice out. Guessing the heat wave is over.
+6054,heat%20wave,Canada,Activists Protest Pipelines in Canada and Shell in Portland Oh and Prepare for Another Heat Wave http://t.co/aKsYPKjdpB #CampLogistics
+6062,heat%20wave,,Heat Wave: A Social Autopsy of Disaster in Chicago by Klinenberg Eric http://t.co/fPtqxVokJC http://t.co/0gt63uQGcU
+6063,heat%20wave,"Charlotte, NC",@sportguyshow the heat wave ends really tomorrow but still time for another one to build. Only other thing that ends the heat is Autumn.
+6067,heat%20wave,"Stockport, Uk",Japan heat wave intensifies - death toll surges to 55: http://t.co/F1h1mzVSNn via @extinctionp
+6068,heat%20wave,Deerfield Beach Florida,Middle East ÛÏHeat DomeÛ Causes Crippling Heat Wave in Israel http://t.co/41Lcb9aepR
+6077,heat%20wave,,@facilitydude shares how to handle the heat and keep your cool http://t.co/ekEd6BulsZ #facilitiesmanagement
+6079,heat%20wave,"Milan, Italy",God the past few nights have been awesome but tonight it looks like the heat wave is back ?? can't breathe in my room!
+6080,heat%20wave,,http://t.co/OYMLNLHEca So important to stay hydrated in the midst of this heat waveÛ_ ?? Û_ http://t.co/EXLQxSa0i8 http://t.co/M3TiNl4NUX
+6081,heat%20wave,"Chiba,very close to Tokyo.",Good morning. Slept about 6 hours. The heat wave hits Japan... The hot days still continue. I guess some people were killed by this climate.
+6082,heat%20wave,,Japan heat wave intensifies ÛÒ death toll surges to 55 http://t.co/ZwPoDn3KOH
+6089,hellfire,"Denver, Colorado",@WalpurgisNightZ I was thinking super glue since its not as messy.
+6095,hellfire,,I'm melting a bar of chocolate under my laptop at least this fucking HELLFIRE is good for something
+6101,hellfire,,Hellfire is surrounded by desires so be careful and donÛªt let your desires control you! #Afterlife
+6107,hellfire,"Oakland, CA",@spikepoint @skie It's about context too. If his dick slipped out during the super bowl people would be throwing hellfire here.
+6114,hellfire,,Hellfire! We donÛªt even want to think about it or mention it so letÛªs not do anything that leads to it!
+6117,hellfire,"Denver, Colorado",Would you consider yourself good at giving advice? ÛÓ I like to think I give good advice when I feel like its a s... http://t.co/lSMr4KVO6u
+6121,hellfire,Beal Feirste Northern Ireland,@emmap645 @Vickygeex @Zak_Bagans @NickGroff_ @AaronGoodwin A few friends of mine were up investigatin the hellfire last year they had loads
+6122,hellfire,???? ???????,#Allah describes piling up #wealth thinking it would last #forever as the description of the people of #Hellfire in Surah Humaza. #Reflect
+6124,hellfire,Azeroth,Come watch @QelricDK bash some face in Hellfire Citadel! http://t.co/juQIuN2mhg
+6129,hellfire,"Denver, Colorado","*standing in line at JoAnn's little girl and her mom behind me*
+
+Little girl: Mommy is that a boy or a girl?
+
+...
+Welp www"
+6131,hellfire,,The Prophet (peace be upon him) said 'Save yourself from Hellfire even if it is by giving half a date in charity.'
+6136,hijack,Out and about ,"APC needs to watch all these PDP defecting to APC
+
+Patience Jonathan On The Move To Hijack APC In Bayelsa State http://t.co/zzMwIebuci"
+6139,hijack,,Himika Amase is the only prophet in the world who foresaw 'hijack in March' as it was on her Jps Twitter in Feb 2014. malyasiaairlines. ???
+6142,hijack,,Biggest security update in history coming up: Google patches Android hijack bug Stagefright http://t.co/bFoZaptqCo
+6143,hijack,In my head.....,RT! Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP http://t.co/JlE6aFuG3p
+6144,hijack,"FCT, Abuja ",Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP - The Sun: Plans by formerÛ_ http://t.co/qJPrrObGtC http://t.co/XWoGt4wBf7
+6149,hijack,Egypt,Biggest security update in history coming up: Google patches Android hijack bug Stagefright http://t.co/LTid39bKBE
+6155,hijack,"Delta, Nigeria",Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP - The Sun http://t.co/VBiGAnIRSJ
+6157,hijack,UK & Oversees,Chrysler Jeep wirelessly hacked over internet to hijack steering brakes and transmission face lawsuit - should all consider #ISO27001
+6158,hijack,???/??,@daehyvn he spends the rest of the segment trying to hijack someone else's bike
+6161,hijack,????? ?? ?????? -????? ????,Swansea ?plot hijack transfer move for Southampton target Virgil van Dijk? http://t.co/UOq87SP5JP
+6168,hijack,#HDYNATION,hijack
+6172,hijack,,Swansea ?plot hijack transfer move for Southampton target Virgil van Dijk? http://t.co/DNZjWwTAkI
+6176,hijack,??? ???? ??????,Swansea ?plot hijack transfer move for Southampton target Virgil van Dijk? http://t.co/PYL26NFEn8
+6177,hijack,,"Graham Phillips' Fundraiser Canceled By @JustGiving
+
+#fundraise #Ukraine #donbas
+
+http://t.co/HIbEf3CXOX http://t.co/9crFKQzD52"
+6179,hijack,Lagos,Bayelsa poll: Plans by Patience Jonathan to hijack APC tickens http://t.co/eyn0E8pmJq
+6180,hijack,Nigeria ,Criminals Who Hijack Lorries And Buses Arrested In Enugu (PHOTO) http://t.co/5cZ7eM9OTr
+6182,hijack,,@spencer_ellmore @CentreTransfer just wait Norwich might hijack the deal??????
+6186,hijacker,"Saint Petersburg, FL",Remove the http://t.co/J2I27K6tWt and Linkury Browser Hijacker http://t.co/D8TgE45FnU http://t.co/GRG1NsJzbk
+6189,hijacker,Over the Hills and Far Away,"Remove the http://t.co/zmoKZZf4qp and Linkury Browser Hijacker. PITA as it hijacks both browsers and their shortcuts.
+http://t.co/QWDkzTi97g"
+6190,hijacker,,Remove http://t.co/77b2rNRTt7 Browser Hijacker - How t... http://t.co/Wff7X3B6KT
+6194,hijacker,,Governor allows parole for California school bus hijacker http://t.co/0aQBZmrvLQ via @abc7newsbayarea
+6204,hijacker,Roermond,"and if I cry two tears for her..
+That will be the most that I would giveÛ_ https://t.co/Ch24hn74XH"
+6205,hijacker,,Remove http://t.co/GYcBuXfYGP Browser Hijack... http://t.co/FuQH0yKsdg
+6209,hijacker,,I think parents r shit these days=only coz I don't have kids=but to let ur child pretend to be a hijacker only drives them to do it laters
+6210,hijacker,,Remove the http://t.co/OP2NObtoul and Linkury Browser Hijacker http://t.co/JjKlf2PlX7 http://t.co/t3OQgw0Ce7
+6212,hijacker,,@JagexSupport can u remove the email of the hijacker pls !! YKJL is my ign. i need to recover but pls block so they dont break bank pin!
+6214,hijacker,Amman,Governor Allows Parole for School Bus Hijacker http://t.co/7mqh7fhxYL http://t.co/BNCcwcsCKt #SahelNews
+6221,hijacker,California Central Valley,"Updated on Friday at 4:30 A.M. - Daily Area News
+California School Bus Hijacker Parole Stands http://t.co/24QEkAh893"
+6225,hijacker,,Governor Allows Parole for School Bus Hijacker http://t.co/i7PIJK6XtM liveleakfun ? http://t.co/IONWArVRFy
+6228,hijacker,The Court of Public Opinion.,"@mch2601 The AVI is h/t @RealDB4Prez16
+He provided me the artwork and years & years of great hijacker stories."
+6229,hijacker,"Fairfax, VA",Remove the http://t.co/Ytao0lT144 and Linkury Browser Hijacker http://t.co/uxEKjeuIVp http://t.co/abvvRLFgDh
+6231,hijacker,,The footage of Albert Reynolds talking about a hijacker demanding the publication of the 3rd secret of Fatima is hilarious.
+6235,hijacking,"Washington, D.C.",Earnest PletchÛªs cold-blooded killing of Carl Bivens was just one chapter in his strange life http://t.co/dnQn1OWWF9 http://t.co/xNEPq5HBYD
+6236,hijacking,,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/EZ1TpCzJzo #prebreak #best
+6237,hijacking,,The Murderous Story Of AmericaÛªs First Hijacking http://t.co/VgBOpxb6Wg
+6238,hijacking,,Oops! I say he picked the right car to try hijacking. https://t.co/SoMgI7hwli
+6239,hijacking,"Chinade, Nigeria",#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/EEpUFlxNvI #prebreak #best
+6242,hijacking,Melbourne,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/a0zgzd1fYa #prebreak #best
+6249,hijacking,china,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/RaPaDCea1w #prebreak #best
+6250,hijacking,Georgia,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/ChGipZWxsx #prebreak #best
+6251,hijacking,"sydney, australia",Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/GUDtEFt5HP http://t.co/n3dDxcTO2A
+6252,hijacking,Italy,The Murderous Story Of AmericaÛªs First Hijacking http://t.co/QAOqtptgwH
+6260,hijacking,,@csgpelmash we are hijacking a great song from a terrible 'concept video'. So THERE! #eatshit
+6264,hijacking,,MomentsAtHill everyone hijacking NuNus and timas bikes ????
+6266,hijacking,Maryland,But is feast.dll still vulnerable to DLL hijacking? https://t.co/3vaig1PtYk https://t.co/BZDNKpOry1
+6270,hijacking,http://wingssilverwork.com,@ReasonVsFear 'One?' Oh nonononono. This hijacking's been going on forever but I've seen it about a dozen diff places today alone.
+6275,hijacking,"darwins, au ",#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/f6PCzLWBWk #prebreak #best
+6279,hijacking,,At #BlackHat? Learn about account hijacking attacks & cloud access security w/ @ElasticaInc: http://t.co/PqXryXVp14 http://t.co/Wt5wZwvpUt
+6280,hijacking,russia,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/XU9u3NNxpK #prebreak #best
+6284,hijacking,france,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/wG1rt0kB4g #prebreak #best
+6285,hostage,U.S.A. - Global Members Site,Who is Tomislav Salopek the Islamic State's Most Recent Hostage? http://t.co/puT3LgsDnf
+6286,hostage,"Rochester, NY",Chris Brown's aunft was 'held hostage in a closet by armed intruders at his LA home while sin http://t.co/i1Fhb8QSZ7 http://t.co/7C5BG48BRJ
+6287,hostage,"Moncton, NB",Islamic State threatens to kill another hostage: @DailyGleaner @TJProvincial @TJGreaterSJ http://t.co/dfPLiqjMk2
+6288,hostage, way way way up ??,Ya kisses hold me hostage & I don't wanna stop it. I only wanna give it to you
+6289,hostage,,Pakistani Terrorist Was Captured By Villagers He Took Hostage - NDTV http://t.co/C5X10JAkGE
+6290,hostage,"Limerick, Ireland.","Oh god Diane is following them to the hostage exchange in a taxi.
+#RandomActsOfRomance"
+6291,hostage,"Seattle, WA",Sinai branch of Islamic State threatens to execute Croatian hostage in 48 hours http://t.co/YvtcXrPt34
+6295,hostage,"Long Island, New York",Concealed Carrier Rescues Hostage Captures Naked Attacker http://t.co/uLy5hM6PqR
+6298,hostage,"Lahore, Pakistan",UPDATE 4-IS Egypt affiliate threatens to kill Croatian hostage in 48åÊhours http://t.co/C0zrqIk6KE
+6307,hostage,Visit our dedicated website @,'IS Egypt affiliate threatens to kill Croatian hostage in 48 hours' - http://t.co/3LcgidRQpb
+6308,hostage,,my chacos were supposed to arrive by 8pm why are you holding them hostage @ups I just want some crunchysensible footwear
+6309,hostage,,Islamic State group threatens to kill hostage if 'Muslim women' aren't let go - Press Herald http://t.co/yKM6qfRh98
+6313,hostage,Niels Groeneveld / RedSocks,Bit-Defender hack ÛÒ Held Hostage!: Late last week it was discovered that antivirus vendor ... http://t.co/2vC8CSTWy5 #damballa #infosec
+6316,hostage,LA,#BREAKING. Who is Tomislav Salopek the Islamic State's Most Recent Hostage? /#news
+6319,hostage,Southern California,#TeamNyle because he's holding a family member hostage and I have to post this or the 'else' happens
+6321,hostage,"Columbus, OH","@theCHIVE For the record I held this shirt hostage for nearly a year before sending it last minute to TX #BidTime
+
+http://t.co/edbxYatmaq"
+6324,hostage,,@bluecurls8 @Worthfull1 You basically decide to do absolutely nothing else for months and then have your Beta hold chapters hostage.
+6327,hostage,Behavioral Analysis Unit (BAU),While being held hostage by Tobias Hankel
+6333,hostage, Cairo,video says #ISIS Threatens To Kill Croatian Hostage 5oil-worker) If #Egypt Does Not Release Female Prisoners in 48 H http://t.co/GvpKrRdQnu
+6351,hostages,Brentwood uk,Militant 'Overpowered' By Hostages After Attack http://t.co/xWnp8a1JOn
+6352,hostages,france,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/g601NBD7wS #prebreak #best
+6353,hostages,,How until put out manorial shaped gnocchi near thine hostages to fortune: RBpK
+6357,hostages,China,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/PtAI4zBpbI #prebreak #best
+6359,hostages,USA,@JoeNBC IRAN: NO SNCTIONS INCL MILTARY$150BILNO INSPCTKPS HOSTAGESTHROSW ISRAEL TO GUTRKPS NUKE SITES U.S HLPS W/NUKES GET 'ZERO!'
+6360,hostages,India,Ajmal Kasab II: How hostages misled the terrorist got him caught alive http://t.co/n1up959OFM
+6364,hostages,The Universe,One Year On From #IS Massacre in #Sinjar Yazidis Blast Lack of Action over 3000--5000 Yazidis who remain enslaved: http://t.co/vnSn284ovw
+6367,hostages,"Hubli, Karnataka",@IndiaToday @Iamtssudhir Time for India to join global war against ISIS cant sacrifice national interest to save hostages! #NationFirst
+6368,hostages,"my USA, åµ???? ?aÌÙ? ",India: Militant 'Overpowered' By Hostages After Attack http://t.co/mkjszGbaWR
+6377,hostages,Rocky Mountains,Sinjar Massacre Yazidis Blast Lack of Action Over Hostages http://t.co/fdU8aCnC2W #denver #billings #rapidcity #seattle #cheyenne #lasvegas
+6378,hostages,Rocky Mountains,Sinjar Massacre Yazidis Blast Lack of Action Over Hostages http://t.co/fdU8aCnC2W #denver #billings #rapidcity #seattle #cheyenne #lasvegas
+6379,hostages,,@Deosl86 That does nit change the fact extracting hostages is pointless
+6381,hostages,,RT WatchmanIS216: #Sinjar Massacre #Yazidis Blast Lack of Action Over Hostages http://t.co/79iQDYZjBS; Portland #Û_ http://t.co/0z1PvJVdpf
+6390,hurricane,,AngelRiveraLibÛ_ #Snowden 'may have' broken laws? Hurricane Katrina may have caused some damage. http://t.co/jAaWuiOvdc Without Snowden hÛ_
+6401,hurricane,,@al_thegoon i like hurricane habor next to slix flags but they got like 8 rides but they wavy & hershey park
+6408,hurricane,"San Francisco, CA",Residents artists remember aftermath of Hurricane Katrina through artwork - WDSU New Orleans: WDSU New Orlean... http://t.co/U6pAvbZoB3
+6409,hurricane,,Found out a hurricane is brewing for thursday lol ??????
+6411,hurricane,"San Antonio, TX",@ReinhardBonnke is preaching on the Holy Spirit! Holy Spirit blows atmosphere to pieces! Atmosphere is air in a jar. The HS is a hurricane!
+6419,hurricane,melbs 1/2 #rham,"Would you blow me kisses
+If I kept my distance?
+Would you send a hurricane
+As proof of your existence?"
+6424,hurricane,Hawaii,HURRICANE GUILLERMO LIVE NOAA TRACKING / LOOPING WED.AUG.5TH ~ http://t.co/QktRt2J1o8 ~ http://t.co/b0JxS5QKkh http://t.co/KP05TOwSfM
+6426,hurricane,"Astoria, NY",@leeranaldo expressing his rage about Hurricane Sandy #LCOutOfDoors http://t.co/IwPR2qGYsI
+6428,hurricane,"Tuscumbia, AL",@BPGVII_GOAT thanks bro ????
+6431,hurricane,MS,Happy birthday bro ?? @Hurricane_Dolce
+6432,hurricane,Worldwide,Brooklyn Sites Get $2.6 Million to Undo Hurricane SandyÛªs Toll http://t.co/HukwD0RE2a
+6433,hurricane,Dublin ,I'm a hurricane.
+6435,injured,bangalore,Udhampur terror attack: Militants attack police post 2 SPOs injured: Suspected militants tonight attacked a p... http://t.co/nZAFokxX0h
+6437,injured,"tacompton, washington ",I'm thinking maybe just wait til after all the preseason games just in case somebody gets injured.
+6439,injured,South Africa Braamfontein,4 dead dozens injured in Gaza blast near house leveled in summer war - Washington Post: New York Times4 dead... http://t.co/7C2qhMwtv5
+6442,injured,The North Coast,@NewsBreaker @sothathappened SO wheres the story? Anybody injured? Where did this happen?
+6444,injured,,#???? #?? #??? #??? Udhampur terror attack: Militants attack police post 2 SPOs injured - Times of http://t.co/1KxsGlsTA7
+6447,injured,USA,Man injured in Radcliff shooting http://t.co/3iYXOoaCW6
+6456,injured,"United States, Ohio",Harper Woods policeman injured in fight after dead man found in garage: Ronnie Karjo 46 of Macomb Township http://t.co/tUoTICilBi
+6457,injured,"Washington, DC","#Redskins WR DeSean Jackson injures right shoulder at training camp today. Watch the play HERE: http://t.co/GABecyzBzJ
+@wusa9 #SkinsOn9"
+6460,injured,,I made him fall and hegot injured https://t.co/XX8RO94fBC
+6468,injured,Nj ?? Az ,@LoganMeadows11 @ChristianStec_ he's weak sauce he got injured by a sled
+6471,injured,India,Terrorists open fire at Udhampur police post 2 SPO's injured firing underway - See more at:... http://t.co/7jmGwOgqnh
+6475,injured,"Richmond, VA, USA",@Braves_Ninja @david_brelsford For Freddie before being injured this year it was a great deal
+6476,injured,| INDIA |,RT- Udhampur terror attack: Militants attack police post 2 SPOs injured: Suspected militants tonight at... http://t.co/wN414hp9hZ #News
+6479,injured,Pune,@TOI_India Udhampur terror attack: Militants attack police post 2 SPOs injured: Suspected militants tonight a... http://t.co/EWCkcfBI28
+6483,injured,,Neelum Valley teen dies in 'dud shell' explosion: MUZAFFARABAD: A teenage boy was killed and his peer was injuredÛ_ http://t.co/GuRdZEPMhu
+6487,injuries,"chapel hill, cary n.c.",@wral there are now 5 fire trucks and 2 ambulances at Wellington ridge lp in Cary. one of the units is on fire. not sure on injuries
+6488,injuries,Edmonton,@EdmontonEsks SB Adarius Bowman says team leadership and depth have helped through some key injuries https://t.co/hCnmZsfNcI #yeg
+6489,injuries,,4 Common Running Injuries and How to Avoid Them http://t.co/26HWLpWmXr
+6496,injuries,"Glendale, AZ",8/5 Arizona Cardinals news: Jaron Brown makes headlines minor injuries continue to build http://t.co/QxKncvlrh1 http://t.co/KJnhNPMxGr
+6498,injuries,North Carolina,@RVacchianoNYDN @NYDNSports glad to see a career rebirth for him. Loved him in Carolina injuries just caught up to him.
+6502,injuries,,@nflnetwork @AZCardinals what's up with all the injuries..
+6503,injuries,,@JaeSmoothCYB he was going to be. We still have our leading rusher from LY so we should be ight barring any injuries
+6507,injuries,"San Francisco, CA",San Francisco 0 I80 E **Hit and Run No Injuries** http://t.co/lp9TBu7KzH
+6508,injuries,,cmon injury bug this shit aint funny we suffered enough injuries last year...
+6509,injuries,Covering the U.S.A.,#BreakingNews Mva / Multiple Injuries - Saint Petersburg FL: E7 requesting R7 & 2 sunstar units for injuriesÛ_ http://t.co/0XRysEpQhL
+6517,injuries,,@ringsau and injuries can account for elevated levels of tb4 Richard?
+6521,injuries,"Phoenix, AZ",Let's be thankful most of these injuries are minor & it's still camp. Relax a little #birdgang. No one is cursed & no injury bug hit.
+6522,injuries,Michigan,@MichiganAutoLaw's @SteveGursten will discuss #autoaccidents & so-called 'mild' #TBIs on his @JusticeDotOrg webinar. http://t.co/ZUM3mluCYS
+6524,injuries,"Michigan, USA",If Tyuler Collins could become Andy Dirks before the 58 injuries..that would be uiseful
+6526,injuries,Fantasy Land,I guess this is where I'm confused sites have week one pricing up alredy. We haven't even had injuries yet.
+6531,injuries,,No injuries reported after Green Line train derails on South Side http://t.co/nM7HuH3bjC
+6533,injuries,"Kibworth Beauchamp, England",Wishing injuries on opposition players. I get rivalry but miss me with all that petty shit.
+6538,injury,3/12 + Jake Miller,Low self-esteem is a common cause of self injury affecting over 40% of young people personally or someone they know. https://t.co/xeLoapZp6R
+6539,injury,,CLEARED:incident with injury:I-495 inner loop Exit 31 - MD 97/Georgia Ave Silver Spring
+6544,injury,,incident with injury:I-495 inner loop Exit 31 - MD 97/Georgia Ave Silver Spring
+6557,injury,www.dorsavi.com,Supermarket chains recording worst #injury rates among ASX100 companies #safety http://t.co/njiv1n6rYr
+6558,injury,,Ankle injury to keep SpursÛª Marjanovic out of Eurobasket http://t.co/UBCggEHqyN #spurs #NBA
+6562,injury,,nflweek1picks: Michael Floyd's hand injury shouldn't devalue his fantasy stock: Michael Floyd's damaged digits won... Û_
+6563,injury,Las Vegas,New post: Cowboys believe Lance Dunbar's ankle injury not serious http://t.co/XMCRedFXAt
+6564,injury,,@_keypsters full game? Injury cut is here https://t.co/YYqws4sO9J
+6574,injury,All Round The World,Enter the world of extreme diving ÛÓ 9 stories up and into the Volga River http://t.co/gptysALfKi
+6578,injury,Las Vegas,New post: Texans report: QB battle unaffected by Foster's injury http://t.co/IgH2PAAHnK
+6581,injury,,Ben Heenan carted off the field at @Colts training camp.. No word on how serious the injury is #colts #nfl
+6584,injury,,Michael Floyd out 4-6 weeks with a hand injury. #Cardinals http://t.co/bnMKlPZNiP
+6587,inundated,"Bellingham, WA",ÛÏWe live in an area thatÛªs inundated with wildlife...If people donÛªt learn how to get along or live with them... http://t.co/KZXV6DWQ6E
+6589,inundated,Searching for Rivendell,@eliistender10 @Splats although originally an April Fools jokethey're seriously considering making them after being inundated with requests
+6590,inundated,"New York, NY",@TheBrooklynLife @Giants I just want to go to the game. Enjoy it. Not be harassed. Not be inundated with pink gear. That's all I ask!
+6592,inundated,"Shrewsbury, England",@Ryanair I am waiting to hear about my claim for compensation. I have received an email saying you are inundated so there will be a delay??
+6595,inundated,Earth,Mexican beaches inundated with algae http://t.co/Kcm4sgrceR
+6599,inundated,GroÌÙdeutsches Reich,"Our children are being inundated with the false ideas that #homosexuality is
+normal and acceptable."
+6600,inundated,"Los Angeles, CA",@TypeEd been a bit inundated w. Illustrative work BUT would love to catch up! ??????
+6606,inundated,"Beijing,China","[Brutally Honest Technology ]
+
+Day after day we are inundated with messages issued via machine. Phones.... http://t.co/pB4Vbv01ax"
+6609,inundated,San Diego,So it doesn't mean inundated with tweets? @Dictionarycom's #WordoftheDay - twitterpated http://t.co/pxoQ1TRXqr #UseYourWords #author #writer
+6612,inundated,"Ottawa, Ontario",It seems that we are inundated with ideas for large #weddings. Small intimate weddings are often not highlighted... http://t.co/Jshxfvllly
+6615,inundated,Chicagoland,WARNING: This string will be inundated with wisdom to replenish a a leaderÛªs weary soul this day. #Sorry #NotSorry #GLS15
+6618,inundated,"Dallas, TX",Ever notice if you follow too many fan sites they all seem to run together & you feel like you are inundated with the same posts over & over
+6620,inundated,,@Rossifumibhai @alexeeles all 6 of them?! As you can see from the pic they were clearly inundated. Good try though
+6623,inundated,RELEASE THE REIS ,MY SCHOOL IS INUNDATED and they wont let us go home til 4pm help
+6633,inundated,That London,.@38_degrees Hello. I have been inundated by people Tweeting me about some Unilever thing in India I know nothing about.
+6639,inundation,,#EPAO MARSAC reports on Manipur flood: Heavy incessant rains in Manipur have led to inundation causin... http://t.co/rh7m7T9Gd9 #MANIPUR
+6640,inundation,,@womanxking Well you're safe in NY. Avoid inundation zones in the pacific north west though.
+6641,inundation,#RoshanPakistan,"Punjab government flood relief platform:
+
+http://t.co/bpG68gXI9k
+
+realtime information on inundation damages... http://t.co/c8T9ThI7Wd"
+6645,inundation,,Inundation subtle influence distress ideas-the sociologist relative to a doer: Mhl
+6650,landslide,Wickford,@R_o_M by a landslide.
+6651,landslide,,Is this the real life? Is this just fantasy? Caught in a landslide. No escape from reality.
+6652,landslide,Central New Jersey,TommyGShow: Burlington County offers to purchase landslide-damaged properties in Florence http://t.co/xgguElyxyi
+6657,landslide,,However piece of virtu site fixing bath give the gate display landslide on yours movement: DKHQgv
+6659,landslide,,@kdudakia I get that there has been a massive turn away from Labour but that does not = electoral landslide. Credits tories too much and...
+6666,landslide,,WATCH: Likely landslide victims denied assistance again http://t.co/BxiohtiC5X
+6671,landslide,"New Delhi, Delhi",@preeti_chopra2 @chinmaykrvd many predicted landslide for nitish nd told bjp will loose bihar nd won't even get upper castes votes
+6673,landslide,"Louisville, KY",Artifacts found in southern Indiana landslide near Horseshoe Casino http://t.co/BdB0NpgPkH http://t.co/jbCC0KShol
+6674,landslide,,it's actually funny how chihaya remains a relatively static character for most of series so far and then suddenly develops like a landslide
+6677,landslide,,I liked a @YouTube video from @seeiey http://t.co/d8NWQce3EW Seeley - Landslide
+6680,landslide,Shangri-La,.@MartinMJ22 @YouGov Which '#Tory landslide' ... you can't POSSIBLY mean the wafer-thin majority of #GE2015?!!
+6684,landslide,"Morgantown, WV",@RakestrawJeff @GOP That about sums it up. Give them a historic landslide and they do everything King Barack wants. It's just incredible.
+6685,landslide,,omg it is I can go in dungeons with Landslide Krag now <3
+6691,landslide,,5 need to-dos seeing as how technical writing administer apps that landslide: QCt
+6692,landslide,,"Dixie Chicks - Landslide - ??can I sail through the changing ocean lides??
+??can i handle the seasons of my life??
+ http://t.co/jRsGmTT3AI"
+6696,landslide,Upper St. Clair,#CecilTownship seeks emergency repairs to Southpointe Boulevard landslide: http://t.co/ZjJdt3so72
+6698,landslide,,How as far as landslide high exploit even with statesmanlike cv final draft inaugural?: jGIsAvq
+6704,lava,Philippines,Get excited to watch Disney/Pixar's LAVA an animated short before Inside Out! Learn more: http://t.co/1VdXSWdRp9 http://t.co/iQ4BZUCvIg
+6705,lava,trinity nc,@Miss_Instiinctz or mostly around lava too
+6710,lava,,'I lava you' ???? @kherr122
+6713,lava,,Jordan Son of Mars - Hot Lava release on 07/22/2015 for $160 via http://t.co/wBAqDzMD6W #KoFapp http://t.co/BkdjKSgtjj
+6715,lava,"New York, NY",Watch Steaks Being Grilled Over Molten Hot Lava http://t.co/yxns3IiXjv http://t.co/lcM66dHn1l
+6717,lava,Budgam kashmir,@Lavamobiles ..i have lava iris 3G 402
+6718,lava,"Missouri, USA",PSA: MISTI IS ABOUT TO MAKE LAVA CAKE???? #bestdayeva
+6720,lava,somewhere over the rainbow,I lava you
+6728,lava,,"@YoungHeroesID
+4. LAVA BLAST dan POWER RED #PantherAttack @Mirnawan_13 @Zakia_kiia"
+6732,lava,"Los Angeles, CA",When the game tells you to stop going to the Nether by spawning you right over lava. GG @AlienatePlays http://t.co/rGc1afqLmN
+6733,lava,,White Pink Lava Bracelet10mm Lava Beads Bracelet Silver Tone Û_ https://t.co/DKdmLZyRii #etsymntt #HandmadeJewelry http://t.co/WYg4OUGQY3
+6739,lava,,@_Souuul * gains super powers im now lava girl throws you ina chest wrapped in chains & sinks you down the the bottom of the ocean*
+6740,lava,Indonesia,@YoungHeroesID Lava Blast & Power Red & Mix Fruit. @Niastewart3 @NRmawa #PantherAttack
+6741,lava,,HE SAID THE DOMINOS LAVA CAKES WERE BETTER THAN CULINARY CUISINE
+6743,lava,,@gracemccreave_ @jamisonevann @jace_swain @_laneyslife @JacksonLaurie1 lava boy was taken
+6747,lava,,I lava you ??
+6750,lightning,Northwest Arkansas,It doesn't get any closer. Heavy rain just barely missed @TontitownGrape festival but lightning TOO CLOSE #TGF2015 http://t.co/S53zvMS5Rf
+6752,lightning,"Staten Island, NY",Science Info #JGF Lightning reshapes rocks at the atomic level http://t.co/R5MwlzvVHA
+6753,lightning,,World War II book LIGHTNING JOE An Autobiography by General J. Lawton Collins http://t.co/a7iqMhvLSm http://t.co/b9vTkDjJ33
+6755,lightning,NWA & River Valley,It doesn't get any closer. Heavy rain just barely missed @TontitownGrape festival but lightning TOO CLOSE #TGF2015 http://t.co/d9PQIXaTX6
+6761,lightning,,Baby you're like lightning in a bottle
+6763,lightning,Winston Salem NC,Lightning #rebeccafav http://t.co/q9Q87mDEzY
+6768,lightning,,Southeast Regional is in a lightning delay. Buckle up folks this is gonna take awhile.
+6770,lightning,,iCASEIT - MFi Certified Lightning Cable - 1m http://t.co/b32Jmvsb1E http://t.co/Wnp8jkyESp
+6771,lightning,,Lightning express golf trolleys fix ramify pretty much multitudinal areas on thine disposed: kWXGgt
+6777,lightning,,World War II book LIGHTNING JOE An Autobiography by General J. Lawton Collins http://t.co/ihxkforg4I http://t.co/jD6lcRuOHA
+6778,lightning,"Rotterdam, The Netherlands",@LtDalius after democracy
+6780,lightning,,BANG 3 Fuckin phenomenal
+6782,lightning,"Philadelphia, PA",Two Films From Villanova University Students Selected As 2015 Student Academy Award Finalists: Lightning struckÛ_ http://t.co/4jyQfhHmXf
+6786,lightning,Northwest Arkansas,It doesn't get any closer. Heavy rain just barely missed @TontitownGrape festival but lightning TOO CLOSE #TGF2015 http://t.co/zMtOp65Kx2
+6791,lightning,"North Carolina, USA",Lightning http://t.co/9DQhdEi357
+6797,lightning,,@Followtheblonde @reba RED THUNDER AND BLONDE LIGHTNING BACK IN ACTION??????
+6798,lightning,"Leesburg, FL",Leesburg Lightning and Altamonte Springs Boom scoreless in seventh inning in FCSL playoffs
+6803,loud%20bang,"Nashville, Tenn.",Soon to be loud bang as backpack detonated.
+6805,loud%20bang,Kenya,iBliz140: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6812,loud%20bang,Kenya,TksgS0810: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6816,loud%20bang,Kenya,k_matako_bot: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6818,loud%20bang,Kenya,kiilud: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6822,loud%20bang,Kenya,Kimanzi_: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6825,loud%20bang,Kenya,shrnnclbautista: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6826,loud%20bang,Kenya,tarmineta3: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6827,loud%20bang,Kenya,matako_milk: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6829,loud%20bang,Kenya,Sun_OfGod: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6831,loud%20bang,in your dreams,I just heard a really loud bang outside my bedroom door and Im afraid
+6836,loud%20bang,,Man Hears a Loud 'Bang' Finds a Newborn Baby in a Dumpster http://t.co/W815ol0mBV via @ijreview
+6838,loud%20bang,,"School Bouta Start:
+
+Back To These Ignorant Ass Kids
+
+Loud Ugly Want Be Seen Girls
+
+Niggas That Want Be Down
+
+Aggravating Ass Teachers
+??"
+6840,loud%20bang,Santa Cruz ,*loud bang from coworkers desk* *everyone snickers*
+6842,loud%20bang,,"*Hears loud bang upstairs*
+*goes outside sees 2nd floor window open*
+*checks every room with a baseball bat in hand*"
+6846,loud%20bang,Kenya,JohnMtaita: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.
+6851,mass%20murder,"Detroit, Mi",@AMAAS @JD_marsh22 just carry a gun. No way you get charged when you stop a mass murder
+6853,mass%20murder,,Candlelight vigil at my house tonight for the victims of the mass ant murder (by me) in my bathroom sink. There will be snacks.
+6856,mass%20murder,"Raleigh, North Carolina, USA",@Alex_the_murder *i start making displeased absol noises as i struggle to get out of my own twisted mass of blankets and sheets*
+6859,mass%20murder,,@noah_anyname Socialism means mass murder. Houze that for 'correlation'?
+6865,mass%20murder,The Three Broomsticks ,Watching Murder in the First and you get the perspective from the family of the mass shooter person...it's crazy the pain they're in...
+6866,mass%20murder,,RedScareBot: Duck and Cover! RT tanstaafl23: noah_anyname Socialism means mass murder. Houze that for 'correlation'?
+6868,mass%20murder,Somewhere on the Earth,70 yrs since the atomic bombing of Hiroshima... Terrible mass murder...
+6869,mass%20murder,,'Prompt and utter' mass murder https://t.co/BRU7t5UzUy
+6871,mass%20murder,NYC,Plane debris is from #MH370 - it was a controlled crash. In other words it was mass murder by a musim http://t.co/J3xFDg9CWF @newscomauHQ
+6873,mass%20murder,17 year old anti-theist.,@Rawrheem: I can give you verses directly from the Qur'an that mandate terrorism mass-murder mass-rape genocide etc. Would you like them?
+6886,mass%20murder,Realville,@Conservatexian Farrakhan calling for 10000 men to rise up & commit mass murder. http://t.co/gV84WNhB7S
+6887,mass%20murder,Anonymous,http://t.co/FhI4qBpwFH @FredOlsenCruise Please take the #FaroeIslands off your itinerary until the mass murder of dolphins & whales stops.
+6888,mass%20murder,,@Cynicalreality when the subject is mass murder. @LetsBe_Rational @MishaWeller @llr517
+6889,mass%20murder,"Albany, Western Australia",Today marks 70 years since the mass murder of 140000 civilians in Hiroshima. The bombing of Hiroshima and Nagasaki did NOT end WW2
+6891,mass%20murder,The Real World,@CamPepperr @RiceeChrispies Then he would go to jail. But that wasn't a mass murder was it? It was a mistake that he made and he doesn't
+6894,mass%20murder,,Amazing how smug this guy is about the use of mass murder as a global power play. https://t.co/AlTTBJy8B9
+6895,mass%20murder,,Like bro they just committed a mass murder. You think they're gonna be scared to get guns illegally ????
+6899,mass%20murderer,U.S.,RT greta: Movement to impeach SA Pres #Zuma ÛÒ accused of helping mass murderer Pres #Bashir of #Sudan escape #genoÛ_ http://t.co/pnxhxlX9uP
+6901,mass%20murderer,Islamabad Pakistan,Asad is also a mass murderer. https://t.co/dZOReZpxvR
+6902,mass%20murderer,Pedophilia,RT EmekaGift: VPSay NO to President Obama hosting Muhammadu Buhari the #pedophile #terrorist & #mass-murderer
+6904,mass%20murderer,,Sooooo shooting up movie theaters the new mass murderer wave??
+6906,mass%20murderer,,@AParra210 So you are stereotyping the people. Are you a mass murderer like today's shooter?
+6922,mass%20murderer,Reaching for the stars ,So wait he really not gonna tell his wife that he is a mass murderer now and a cheat #derailed @itv2...I'm done with this film ????
+6923,mass%20murderer,Still on my laptop,This is worth a re-read: 'A MASS-MURDERER' By Stuart Syvret http://t.co/C9UAyjrXt9 via @gojam_i_am
+6924,mass%20murderer,"Pittsburgh, PA",A Tomb Raider / Uncharted game where Lara Croft / Nathan Drake is finally on the run for being a ruthless mass murderer in the recent games.
+6927,mass%20murderer,,I am disgusted by @libertarianism and @CatoInstitute for celebrating a mass murderer of innocents today.
+6934,mass%20murderer,"Fukushima, JAPAN",Mass murderer had sex without touching each other or taking their clothes off because he was so fanatical on hygiene http://t.co/RfewQRGzbs
+6938,mass%20murderer,,Sounds pretty sensible for a mass murderer... https://t.co/qZZxFYSIU1
+6941,mass%20murderer,"Denver, CO",Just now convicted mass murderer James Holmes told the judge he won't use his right to ask jury for mercy in his own words. #TheaterTrial
+6942,mass%20murderer,england,also loki is treated too nicely for the fandom as a mass murderer but we all know why :)
+6944,mass%20murderer,Los Angeles via Pittsburgh,@Phoenix_Blue People will create rumors no matter what. The bottom line is giving fifteen minutes of fame to a mass murderer does no good.
+6947,massacre,Kenya,"#FromTheDesk of King George Kenyatta Muumbo at the Kings African Citizens
+
+Thanks to #QuantumDataInformatics we... http://t.co/L6EYfDXaAx"
+6952,massacre,,1 TRILLION Dollar Lawsuit Filed Against MSM For 'Staging Sandy Hook Massacre' http://t.co/qutzvk9xoP
+6957,massacre,,embrace the beauty of the massacre that lies ahead
+6958,massacre,University of Maryland,3 Years After the Sikh Temple Massacre Hate-Violence Prevention Is Key | Colorlines http://t.co/iJoORKaGyj
+6964,massacre,"Santos, SÌ£o Paulo",@stefsy14 the birthday massacre!!!
+6968,massacre,House of the Rising Sun,"@xMissXanthippex lmao exactly
+Especially who they challenged. I didn't want michael jackson popcorn OR kermit tea watching that massacre"
+6969,massacre,,"@WCBD
+Parents of Colorado theater shooting victim fear copycat massacre
+
+http://t.co/LvlH3W3aWO
+#Antioch
+
+http://t.co/vIwXY1XDYK"
+6976,massacre,@KEYTNC3 @KCOY,What person would possibly make a horror film about the Isla Vista massacre in order to make money off of our tragedy?
+6982,massacre,Wales Cymru,One Year After Massacre IraqÛªs Yazidis a Broken People http://t.co/pHqK28doni
+6986,massacre,,The same UN who stood&watched the Serbs massacre thousands of muslims in Yougslavia ?don't need any lessons off them https://t.co/Ubf3CFzfEX
+6987,massacre,,"TimesNewsdesk : Police link beach massacre to Tunisia museum attack
+Û_ http://t.co/g11Rd44rgW) http://t.co/n834UntFf1"
+6989,massacre,"Perth, Scotland",Letter after Glencoe Massacre Scotland ' Who will provide me with meat for my table ? Now that my red haired warrior is gone forever '
+6991,massacre,,Thus ends the clam massacre of 2015. #clambake #showgirldayoff https://t.co/PtyUJJi67T
+6993,massacre,"Waco, Texas",Saturday Night Massacre ? 25 Years Later #TomLandry?s Firing Still A Day of Infamy http://t.co/MlA71Y7mMW
+6995,mayhem,SweizyLand,Tonight It's Going To Be Mayhem @ #4PlayThursdays. Everybody Free w/ Text. 1716 I ST NW (18+) http://t.co/N8w252JoVT
+6997,mayhem,Ohio...yep we said it.,The adventure continues in Terraria 1.3 join us for more hijinks and mayhem. :-) http://t.co/MZcDdOYKen
+7000,mayhem,worldwide,@RaynbowAffair Editor In Chief @DiamondKesawn Releases Issue #7 http://t.co/UH6mXI0Uwz of #RAmag. #Fashion #Models and #Mayhem
+7003,mayhem,Dili. East Timor,Slayer Reflects on Low Mayhem Festival Attendance King Diamond & Jeff Hanneman's Passing http://t.co/E4hcbQSltu
+7004,mayhem,"Lynchburg, VA",@ESWEnrage I was a fan back then sadly and even went as her for Halloween in 2007. But I got better. LOL.
+7007,mayhem,"Mumbai, Maharashtra",'Mumbai attack mayhem was planned and launched from Pakistan'Ex-Federal Investigation Agency (FIA) chief Tariq Khosa. http://t.co/xzSP5JhVfc
+7011,mayhem,"Hollywood, Ca",Wed Aug 8 ! #Mayhem @ Avalon ! 19+ Event ! July & Aug Bdays Free! Tix -> http://t.co/1oZe4aW3Ju Txt (818) 447-8427 http://t.co/uzpKaRBAQv
+7014,mayhem,,Episode 1 'Mad Dash Mayhem' Preview Video: Season 14 kicks off with newbie designers arriving at New York's M... http://t.co/XVGHljahrR
+7016,mayhem,UK,@TheDreamingGoat @mayhem0407 @RobertoSAGuedes Mayhem is my husband by the way. :)
+7017,mayhem,,"RETWEET #FOLLOWnGAIN
+
+@TheMGWVboss
+
+??#FOLLOW?? ?~( ??~Û¢)~? @ynovak @IAmMrCash @Frankies_Style @MamanyaDana @Mayhem_4U"
+7020,mayhem,"The Woodlands, TX",Slayer at Rockstar Mayhem Festival #slayer #metal #concertphotography #houston #livemusic #canonÛ_ https://t.co/5FrWySzwrs
+7022,mayhem,DMV,Tonight It's Going To Be Mayhem @ #4PlayThursdays. Everybody Free w/ Text. 1716 I ST NW (18+) http://t.co/wDefhbkF9g
+7028,mayhem,DMV,Tonight It's Going To Be Mayhem @ #4PlayThursdays. Everybody Free w/ Text. 1716 I ST NW (18+) http://t.co/omYWCLpGEf
+7033,mayhem,Central Jersey,PNC Bank Arts Center shooting: Holmdel man nabbed http://t.co/tvmD14uikO
+7034,mayhem,,El Nino is getting stronger! Monster weather system may bring relief to California but it could cause 'mayhem' elÛ_ http://t.co/A9PoFHBbjf
+7035,mayhem,"Lynchburg, VA",Oh Shelly your waffle wasn't 'a little blonde.' Your waffle was Madonna circa 1987. #NowYouKnow #MasterChef
+7038,mayhem,,Slayer Reflects on Low Mayhem Festival Attendance King Diamond & Jeff Hanneman's Passing http://t.co/ysKaDmFBbB
+7040,mayhem,,Tonight It's Going To Be Mayhem @ #4PlayThursdays. Everybody Free w/ Text. 1716 I ST NW (18+) http://t.co/iW2OTzQFkH
+7041,mayhem,Boston/NY/Montreal/London,@RaynbowAffair Editor In Chief @DiamondKesawn Releases Issue #7 http://t.co/fa0Jt1Yqru of #RAmag. #Fashion #Models and #Mayhem
+7042,mayhem,Iowa,New featcha! @METZtheband's Alex Edkins talks about the @subpop-signed band's jarring mayhem: http://t.co/d0RkCl61Fb http://t.co/7JwJTXqCas
+7045,meltdown,,@julescheff @Z_Hoffman96 haha yes! I was just with Zack at Madsummer meltdown
+7049,meltdown,,Tumblr collective meltdown. #sebastianstanisaliveandwell #civilwar ?????? http://t.co/WOc1TeVVMP
+7055,meltdown,,@rymathieson are you coming to meltdown!
+7057,meltdown,Wouldn't u like to know,Apple's momentum 'meltdown' bites investors - http://t.co/hsECqcdc7P #Apple #Stocks #Crash #TimCook #Investment
+7062,meltdown,,.@RonFunches Loved the @meltdown_show set combined two things I enjoy: wrestling and Ron Funches.
+7064,meltdown,"North Vernon, IN",The U.S. will experience an economic meltdown similar to the early 2000s mortgage shit show due to student loans. You heard it here first ????
+7066,meltdown,,.@kumailn love your #irongiant t-shirt on tonight's #meltdown
+7067,meltdown,Manisto Trap House ,Craving a triple chocolate meltdown from bees rn
+7072,meltdown,Southern California,"@GRAMZD It would be an honor meeting you at the meltdown on Friday.
+
+Hope you like #dabs. http://t.co/MpJ2u4QSYi"
+7079,meltdown,"St. Catherine, Jamaica, W.I.",CommoditiesåÊAre Crashing Like It's 2008 All Over Again http://t.co/EM1cN7alGk
+7082,meltdown,"Pittsburgh, PA",The meltdown I'm currently witnessing makes it seem like a delayed flight is a true anomaly instead of y'know the expected outcome.
+7083,meltdown,"Tuksa, OK",@ChelseaVPeretti's bit on @meltdown_show was also gold.
+7084,meltdown,FL.CO.HI.NJ,@SBJohn12 I'm still waiting for one of these trailers to make up for the Mets Btm 9th 2out Rain Delay come back give up 3 runs meltdown
+7085,meltdown,PrincetonAve,meltdown #1
+7087,meltdown,,CommoditiesåÊAre Crashing Like It's 2008 All Over Again - Bloomberg Business http://t.co/oxCuUqPOmR
+7090,meltdown,"West Coast, Canada","Byproduct of #metal price meltdown is a higher #silver price
+http://t.co/KBC2Ax8Zl9"
+7094,meltdown,"Syracuse, NY",Maybe after half-way party we will get drunk Meg and she'll flirt with Clay again. Then we can have a Shelli meltdown. #BB17
+7096,military,Abuja,Inspectors So Far Denied Access to Iran's Scientists - Wall Street Journal http://t.co/SuR3odwMKa http://t.co/2VSX1yO5hT
+7099,military,,Admiral Says Public Schools Nationwide Shortchanging Military Kids | http://t.co/g0q0bzBjli http://t.co/rbt3mLhlX7 via @Militarydotcom
+7100,military,,New Boonie Hat USMC Airsoft Paintball Military Cap Woodland Camo CP030 http://t.co/EGqE35I5pI http://t.co/uaBRYnHkn7
+7101,military,,Texian Iliad: A Military History of the Texas Revolution by Hardin Stephen L. http://t.co/RrIDS0mrJ1 http://t.co/wybtUk7LbG
+7102,military,,US Military EM 951 Auto-Mechanics Course Vols 1-5 - 1944 - WWII http://t.co/lY6S5MH3vR http://t.co/c29V8UBXcq
+7103,military,"Boca Raton, FL",13 reasons why we love women in the military - lulgzimbestpicts http://t.co/BcBfCStZXh http://t.co/ViK72Id8Zu
+7107,military,,VINTAGE EAGLE 4' OIL CAN OILER FOR WWII JEEP MB GPW MILITARY VEHICLE TOOL KIT http://t.co/9tpFRN725P http://t.co/hVH6b3wOLg
+7110,military,,13 reasons why we love women in the military - lulgzimbestpicts http://t.co/tRgPWOuj6X http://t.co/GEMNUZoCeb
+7113,military,"Columbus, OH",@weakley00 the military
+7117,military,,No joke military men are the hottest thing.
+7119,military,,@SocialJerkBlog My husband was in the military and he does that. It ends up in seat shuffling sometimes. ;)
+7123,military,,VIDEO=> Barack Obama: America Has a Mindset that ÛÏPrefers Military Action Over NegotiationÛ http://t.co/kLs6UPlw0T via @gatewaypundit
+7127,military,New York,Ford : Other Military VERY NICE M151A1 MUTT with matching M416 Trailer - Full read by eBay http://t.co/RJ83YE5c1S http://t.co/2rWRU0jP0U
+7133,military,Worldwide,Obama warns there will be another war without Iran deal #military http://t.co/gM7QlTRLuW http://t.co/wTutMlHDMH
+7139,military,,M9A1 PHROBIS III GREEN BAYONET MILITARY COMBAT SHEATH KNIFE NR http://t.co/dKxe44M8v9 http://t.co/A4PfB5Lt17
+7143,military,"Austin, Texas",@GorillaThumbz @FoxNews @jonathanserrie 'For sale Canadian military rifle dropped once'
+7145,mudslide,Merseyside,@AlexxPage cried at the mudslide cake ??
+7151,mudslide,Kocaeli-Izmit,#Tajikistan #Mudslides #China aids to #Mudslide-hit #Tajiks http://t.co/BD546mtcpN
+7152,mudslide,,The one with the chocolate mudslide #BakeOffFriends @BritishBakeOff @BBCOne #GBBO
+7153,mudslide,"LaPorte, IN",When you can eat a whole wet burrito and mudslide in 5 minutes. http://t.co/lljzxY8Pc2
+7156,mudslide,United Kingdom,Paul Hollywood 'what happened....looks like a mudslide... It's like chewing on a rubber tyre... It looks a mess...' Oh dear Dorrett! #GBBO
+7162,mudslide,tarn et garonne/lot et garonne,"oh my god.. never felt so sorry for someone :-(
+#blackforestgateau #mudslide #gbbo2015"
+7170,mudslide,1/11 numberjacks squad,@picniclester it was a mudslide
+7172,mudslide,Sandbach Cheshire UK ,Loving this!!! Who watched tonight's #greatbritishbakeoff what did you think? #ineedcake #mudslide ?????? http://t.co/c743tLryWd
+7177,mudslide,the burrow,new name: mudslide
+7181,mudslide,"ÌÏT: 58.193556,-5.334943","Looks like a Mudslide!
+
+#GBBO"
+7182,mudslide,St Albans,@curryspcworld looks like a mudslide. Unreal scenes.
+7189,mudslide,,@melindahaunton mudslide lady is a good shout
+7190,mudslide,,@bottleowhite i had to cover my eyes with the mudslide #toopainful
+7200,natural%20disaster,,@patrickandsam @ghaccount I've been screaming natural disaster for months but now idk. Maybe a hospital crisis.
+7207,natural%20disaster,California most of the time,Home Inventories Can Help all Homeowners in Case of Natural Disaster - ABC News http://t.co/RNWvkBkhWU via @ABC
+7209,natural%20disaster,Nepal,#Nepal Magnitude 4.3 tremor rattles #Dolakha as #aftershock counts 367 | Recent Natural Disasters : http://t.co/Re1d5ffcSx
+7212,natural%20disaster,"USA, Haiti, Nepal",More Natural Disaster Research Urgent http://t.co/5Cm0LfZhxn via #JakartaPost
+7216,natural%20disaster,bishop amat,natural disaster on you half ass rappers
+7217,natural%20disaster,Ottawa,IRIN Asia | Red tape tangles Nepal reconstruction | Nepal | Disaster Risk Reduction | Natural Disasters http://t.co/q7LG6ncf7G
+7219,natural%20disaster,,Expert Prepper: Financial Collapse Natural Disaster Failed Grid... http://t.co/5tf4CV4KeI http://t.co/KqYCFkcLr5
+7220,natural%20disaster,Canberra (mostly),Does more trust = more giving? Natural disaster yes - regular giving - maybe! | Pro Bono Australia https://t.co/rXG0BvBBuS via @ProBonoNews
+7222,natural%20disaster,,The Return of Planet-X Book by Jaysen Rand Wormwood Natural Disaster Survivors http://t.co/k8cgZiirps http://t.co/d5sXGvp2pI
+7225,natural%20disaster,U.A.E.,Washi is indeed 'A Natural Disaster' ????
+7233,natural%20disaster,,I added a video to a @YouTube playlist http://t.co/Ei5Z52tohR Natural Disaster Survival ep.7 '2079 Bacon Hair...'
+7237,natural%20disaster,Modishthaan,RT Karnythia: Another #ErasureIsNotEquality example? Movies like The Impossible about a natural disaster in Thailand that focuses on white Û_
+7238,natural%20disaster,"Washington, DC area",@jonk @jamucsb Hopefully this vacation *doesn't* include an earthquake or other natural disaster!
+7239,natural%20disaster,,New 15-Day Emergency food supply for natural disaster Earthquake Flood Tornado http://t.co/6hrlBLiIcO http://t.co/WS0nVDUZqW
+7240,natural%20disaster,Interwebs,How You Can Help The Community In The Event Of A Natural Disaster - http://t.co/42LgdZXz62
+7243,natural%20disaster,,TRAIN ACCIDENT IN HARDA (M.P.) IS NOT NATURAL DISASTER. IT SHOWS FAILURE OF MINISTRY OF RAILWAY.PROPER CHECK AT FIXED INTERVAL IS NEEDED.
+7245,nuclear%20disaster,"New York, NY",This was amazing. Probably couldn't have watched if still living in Japan. Scary. Nuclear Meltdown Disaster | Nova http://t.co/j00WxMJRya
+7246,nuclear%20disaster,"Thessaloniki, Greece",Chronicles of #disaster:#Hiroshima in the #Yale Library #archives http://t.co/xqIqGMI0Op Calls to end 'absolute evil' of #nuclear #weapons
+7249,nuclear%20disaster,Almost there ,"No authorities of Japan take responsibility about Nuclear disaster.
+Nobody have confidence in safety of Nuclear Plants in Japan.
+#AnonymousÛ_"
+7257,nuclear%20disaster,Canada,Digital archive of public documents on the 2011 nuclear catastrophe at Fukushima launched. http://t.co/faJnMjNcxp
+7258,nuclear%20disaster,Japan ,Less consuming less energy to avoid nuclear disaster again and again.
+7259,nuclear%20disaster,Florida,truthfrequencyradio Third of US West Coast Children Hit with Problems Following Fukushima NUCLEAR DISASTER: FU... http://t.co/7ktvkW3sS0
+7262,nuclear%20disaster,Finland,http://t.co/kPbtBLRKsB Japan's Nuclear Disaster and it's ongoing side effects.
+7263,nuclear%20disaster,,3 former executives to be prosecuted in Fukushima nuclear disaster http://t.co/uNTyEVXR4v
+7269,nuclear%20disaster,NYC,Check out 'NOVA | Nuclear Meltdown Disaster' http://t.co/ZzxM74d7qV #PBS
+7271,nuclear%20disaster, Stah-koomi-tapii-akii,Rare photographs show the nightmare aftermath of #Hiroshima | #NoNukes #Amerikkka #WhiteTerrorism #Nuclear #Disaster http://t.co/8tWLAKdaBf
+7273,nuclear%20disaster,,3 former executives to be prosecuted in Fukushima nuclear disaster http://t.co/EmWU8Xksdu
+7276,nuclear%20disaster,Brussels,Fukushima Watch - Fukushima Watch Nuclear Disaster: Welcome. Welcome To Fukushima Watch offering t... http://t.co/M0KJdlwKFB #fukushima
+7279,nuclear%20disaster,Singapore,30 Years After the Chernobyl Nuclear Disaster via @fubiz http://t.co/N4B59iqm94
+7282,nuclear%20disaster,,"Safety by #Nuclear regulatory committee of Japan is already weakened by Authoritarian that caused Nuclear disaster
+@nytimes @guardian @WDR"
+7284,nuclear%20disaster,,The people who tweet and care about #Japan #Fukushima nuclear disaster are not the problem those who ignore are the problem.
+7293,nuclear%20disaster,VA,@Lacci Yes it's a disaster. To shut down all nuclear power plants would be to reverse ALL the gains from renewables so far.
+7298,nuclear%20reactor,Tokio / Tokyo,Nuclear-Deal: Indo-Japan pact lies at the heart of two US reactor-based projects: If Japan were to go ahead an... http://t.co/mvwdm9ZbcV
+7303,nuclear%20reactor,,SEALED The Nuclear Regulatory Commission Reactor 1980 Record New Wave Art Rock http://t.co/FS9w33aczP http://t.co/7sywMf0EQU
+7304,nuclear%20reactor,,"Nuclear-Deal: Indo-Japan pact lies at the heart of two US reactor-based projects - The Indian Express
+
+Read more... http://t.co/FMxmNNRDFe"
+7305,nuclear%20reactor,"Haifa, Israel",US Navy Sidelines 3 Newest Subs http://t.co/qmAFzALxpL
+7308,nuclear%20reactor,Finland,@MaximEristavi Meanwhile in Finland: Nuclear project with Russian Rosatom moves on http://t.co/ogkoeFvzrj
+7313,nuclear%20reactor,,Finnish ministers: Fennovoima nuclear reactor will go ahead http://t.co/rcLgI3tWAi
+7314,nuclear%20reactor,,#NuclearPower Global Nuclear Reactor Construction Market grew 4.5% between 2013 and 2014: Û_ Nuclear Reactor Co... http://t.co/BXPjjeQDrG
+7321,nuclear%20reactor,,ThorCon: A Thorium Molten Salt Reactor System that can be built Now https://t.co/K90M1qoE9q #thorium #Auspol #climate #nuclearrcSA #nuclear
+7322,nuclear%20reactor,Washington DC region,Steam pipe problems sideline US #Navy's 3 newest #submarines. #breaking news. My story at http://t.co/L8QFRdwBPg http://t.co/JrzjtqjSi7
+7327,nuclear%20reactor,,Navy sidelines three newest submarines pending steam plant inspections @defense_news writes: http://t.co/zTm4KPkLUn
+7333,nuclear%20reactor,,they're gonna fucking steal a nuclear fission reactor
+7336,nuclear%20reactor,Helsinki,Finnish Nuclear Plant to Move Ahead After Financing Secured http://t.co/S9Jhcf3lD7 @JukkaOksaharju @ollirehn @juhasipila
+7339,nuclear%20reactor,Head of the Family,@AlbertBrooks Don't like the Ayatollah Khomeini Memorial Nuclear Reactor for the Annihilation of Israel? Racist!
+7341,nuclear%20reactor,"Lemon Grove, CA","http://t.co/N6Semm2M6i
+
+SAN ONOFRE NUCLEAR REACTOR WASTE TO BE BURIED UNDER SHORELINE USING 3 BILLION IN TAX PAYER DOLLARS"
+7346,obliterate,"Orlando, FL ",@TrinityFox_ he would obliterate anyone who gets in the way of sleep
+7347,obliterate,USA,Watch Sarah Palin OBLITERATE Planned Parenthood For Targeting Minority Women! ÛÒ BB4SP http://t.co/JWfAAu1my5
+7349,obliterate,"Cape Coral, FL USA",It is insanity to call Climate Change more dangerous than Muslims wanting to obliterate America and Israel. https://t.co/aA6S66huXh
+7351,obliterate,,@RondaRousey Though I am certain that you would obliterate me fighting you would be pretty cool
+7353,obliterate,,@BattyAfterDawn @DrawLiomDraw he's a good cute. The kind of cute I want to obliterate.
+7363,obliterate,"Denver|Boulder|Ft. Collins, CO",Watch local act Nathaniel Rateliff & the Night Sweats obliterate the #JimmyFallon show! Link: http://t.co/pHbt1nWNZT http://t.co/v1yH353emJ
+7364,obliterate,trashcan somewhere in hell,@MilesWithTate but seeing the writers obliterate their characters will piss me off. So it's bad either way
+7368,obliterate,"North Carolina, USA",This is progress? Weaponry to obliterate every trace of natural life? This is absolute total lunacy. #Hiroshima http://t.co/tBhiSukfvn
+7370,obliterate,Seattle,@PauloSergioMDC @TheIranDeal @POTUS Those silly talks trusting a terrorist nation (who hates us) that has vowed to obliterate Israel.
+7375,obliterate, ? they/them ?,mirajane as satan soul could obliterate me and step on my ashes any day
+7376,obliterate,Bucks,@lionofjudah1948 @AmericanJewry The Nazis pursued their ambitions to obliterate a religion in Europe #Israel is trying to do the same
+7379,obliterate,"Seattle, WA",@itsTiimothy bhill bruh you can obliterate beez
+7382,obliterate,FL,Will Trump obliterate opponents as quick as Rousey?
+7384,obliterate,Rhyming,I'd love to see a nigga try and diss the King haha he would OBLITERATE THEM. With no struggle! https://t.co/cwn2gT0r5p
+7385,obliterate,,Im going to obliterate my lil bro in 2k15 either with the Cavaliers or 70-71 Lakers
+7387,obliterate,,(rubs lamp greets genie) just need the 1 wish thanks. pls obliterate anyone who has used the hashtag #youcantsitwithus
+7388,obliterate,,#dating Absolute Approaching: Unique 21-day course program to obliterate approach anxiety to get more dates. http://t.co/F6ZEiykZRL
+7389,obliterate,United Kingdom,@Wadeycakes @ThunderCastTV you're right Thunder would obliterate you #HEYOOO
+7394,obliterate,,@ohnoeunhae Hyukkie & Chullie aim to completely obliterate the ship that was Eunhae.
+7396,obliterated,England,@KoscielnyFC Gabriel obliterated his fibula
+7398,obliterated,,@Its2015America King O has obliterated the Constitution
+7399,obliterated,,#interracial #sex #porn http://t.co/Kjh99CzHFe Derek Skeeter hasnÛªt obliterated a white girl on camera in about 2 years. Upon hearing thiÛ_
+7401,obliterated,,@AllOutAsh23_sN Heard you got obliterated and also that your brother/boyfriend ran out of the building crying last night. LOL. 'MD/VA!!!!'
+7404,obliterated,"Grand Rapids, MI",Roquey and obliterated toy mollusk https://t.co/1qnRBXFr2v
+7406,obliterated,Nanda Parbat,Mad kids and innocent people who had nothing to do with the war got obliterated smh
+7409,obliterated,"Calgary, Alberta",@dinnerwithjulie because its been obliterated?
+7411,obliterated,MIA,Shout out to fishtails your .75 cent natty light cans are going to be obliterated by yours truly
+7417,obliterated,"London, UK",This Davies is why you don't play FM tired. Obliterated my budget http://t.co/CZ65rUoGXB
+7420,obliterated,,you haven't ruined my day you've obliterated it into a million pieces and spit on it https://t.co/2B57rE5mzN
+7422,obliterated,USA ,the 301+ feature on YouTube has been obliterated and I love it.
+7423,obliterated,LastLevelPress.com,Took'em long enough. Good that they're making some amends though this has still obliterated their reputation. https://t.co/1g9s3KeASL
+7427,obliterated,,@LeonC1963 @RomanGaul @Makrina91 Never realised how many conventional bombs the Yanks dropped on Japan prior 2 Nuks. They obliterated cities
+7429,obliterated,"Calgary, Alberta, Canada",Disgusting! Drunk Meals 101: What To Cook When You're Totally Obliterated - http://t.co/CYa5jBWgge
+7432,obliterated,"Metropolis, TX",mentions gotta be obliterated https://t.co/3iDFkZfXI9
+7435,obliterated,uchiha,way the Endurance wouldn't get obliterated the second it exited that wormhole. It would have probably been destroyed before hell Saturn
+7436,obliterated,"Sydney, Australia",Remembering #Hiroshima 70 years on. Hundreds of thousands of lives obliterated 70 years of pain devastating... http://t.co/cZpJVJgXRp
+7440,obliterated,"Nigeria,West African",The day Hiroshima through the eyes of the bomber crew and survivors http://t.co/AYEWJ8marn via @MailOnline
+7441,obliterated,The best side of middlesbrough,Drake has absolutely obliterated meek mill ????????
+7445,obliteration,"San Diego, CA",Why did God order obliteration of ancient Canaanites? | Bible scholars say dire warnings lie hidden in ancient text http://t.co/waC5K25gBC
+7448,obliteration,,Why Did God Order Obliteration of Ancient Canaanites? -Bible Scholars Say Dire Warnings for America LieÛ_ http://t.co/3eSqlK8xy1 #NEWS
+7449,obliteration,,'I must not fear. Fear is the mind-killer. Fear is the little-death that brings total obliteration... http://t.co/oERI3uWnRY
+7450,obliteration,Canada ,Need a conquest server on CTE they're all Russian Squad Obliteration servers at the moment. Lame. But only 105 ping on Russian server. ??
+7454,obliteration,,The schematization to Maintain Facts Dependable By virtue of Obliteration...XMwTE
+7455,obliteration,"California, United States",#InsaneLimits #plugin enabled @'[XL] #1 Obliteration - xl-games.ru' using 8 limits
+7460,obliteration,,Does Renovation Mean Obliteration? http://t.co/nntkiy7AXV #entrepreneur #management #leadership #smallbiz #startup #business
+7462,obliteration,Harlem New York,'I must not fear/Fear is the mindkiller/Fear is the little-death that brings total obliteration/I will face my fear' #Dune #BlacklivesMatter
+7464,obliteration,"Port Townsend, WA",@bradohearne Admin is the little death that brings total obliteration.
+7466,obliteration,,Why did God order obliteration of ancient Canaanites? - http://t.co/yFN5yWkeye http://t.co/ozX5PmnQ6K
+7468,obliteration,West,"@bcwilliams92 We do need to overturn SCOTUS ruling that Congress can't mess with
+POTUS. Obliteration of Constitution Will Continue."
+7469,obliteration,Wisconsin,"????
+Why did God order obliteration of ancient Canaanites? http://t.co/piUO0azRoQ"
+7471,obliteration,U.S.A. ,[Chaos dancing in the streets | Why did God order obliteration of ancient Canaanites?] http://t.co/P7DLX1wFmC via @Michael_0000
+7472,obliteration,New Delhi,"Short story about indifference oppression hatred anger hope inspiration revolution retaliation and obliteration.
+
+'Fuck Them'"
+7483,obliteration,KNOXVILLE TN USA,Why did God order obliteration of ancient Canaanites? http://t.co/8GqceARCaI via @worldnetdaily
+7484,obliteration,United States,Why did God order obliteration of ancient Canaanites? http://t.co/3JdlEhxZ2V via @worldnetdaily
+7485,obliteration,Virginia (USA),@KDonhoops Sure! Meek Mill accused Drake of not writing his own raps. Drake responds w/ obliteration of Meek's career. #OldFolkExplainStuff
+7486,obliteration,The World,"AMAZING ANCIENT TEXT RENDERINGS!
+-------
+Carl Gallups Dr. Michael Brown and Mark Biltz weigh in on this... http://t.co/sifF4ITJZ0"
+7487,obliteration,,@Jethro_Harrup How many Hangarback Walkers does your opponent need to have before you board in Infinite Obliteration?
+7489,obliteration,,Here we are 70 years after the nuclear obliteration of Hiroshima and Nagasaki and IÛªm wondering iÛ_ http://t.co/fvkekft4Rs
+7492,obliteration,Utopia ,This beautifully rapturous facade that we've poured life into has itself given birth to a deplorable fate our total obliteration.
+7495,oil%20spill,,Refugio oil spill may have been costlier bigger than projected: A Plains All American PipelineÛ_ http://t.co/sryaFqj9gZ #globetrottingwino
+7499,oil%20spill,,Refugio oil spill may have been costlier bigger than projected - http://t.co/6aUOT9vaIS http://t.co/j2SyewbHE2
+7500,oil%20spill,"Los Angeles, CA",#breaking #LA Refugio oil spill may have been costlier bigger than projected http://t.co/5ueCmcv2Pk
+7506,oil%20spill,,National Briefing | West: California: Spring Oil Spill Estimate Grows: Documents released on Wednesday disclos... http://t.co/PsYWDxCCmj
+7508,oil%20spill,,Got the gas and the splash like an oil spill.
+7509,oil%20spill,,PODCAST: Oil spill anniversary http://t.co/wVdAVXTDaq
+7511,oil%20spill,Houston,'California: Spring Oil Spill Estimate Grows ' by THE ASSOCIATED PRESS via NYT http://t.co/gPKkHhBRIy
+7516,oil%20spill,Somewhere Out There,Refugio oil spill may have been costlier bigger than projected: A Plains All American Pipeline oil spill... http://t.co/lCQFI3LMAf #MLB
+7524,oil%20spill,"Arlington
+",When the Government couldn't figure out how to plug the Gulf oil spill so Chuck Norris plugged it...with his fist.
+7538,oil%20spill,Australia,"NSW - BANKSTOWN Stacey St at Wattle St
+HAZARD Oil spill
+Started today 11:38am last checked today 11:54am
+Impact:... http://t.co/5ze5Z6BjLi"
+7539,oil%20spill,Los Angeles,Refugio oil spill may have been costlier bigger than projected http://t.co/d7FdCLU404
+7541,oil%20spill,Dallas,'California: Spring Oil Spill Estimate Grows ' by THE ASSOCIATED PRESS via NYT http://t.co/kUiecEtK2z
+7546,outbreak,,Families to sue over Legionnaires - More than 40 families affected by the fatal outbreak of Legionnaires' disease ... http://t.co/urbl692Syj
+7549,outbreak,Nigeria,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/yfsD4xS7lc
+7562,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/z16jNX3LQe
+7564,outbreak,"Dunwoody, GA",Legionnaires' Disease: What's Being Done to Stop Deadly Outbreak http://t.co/Ud96b7ThsV
+7567,outbreak,"FCT, Abuja ",Mumps outbreak at University of Illinois grows http://t.co/7xYkuJylX0 #SEBEE
+7572,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/A6xRnI8XHg
+7574,outbreak,"Nashville, Tennessee",Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/RJEN6iMWPI
+7575,outbreak,Dubai,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/boZfh1M3wb
+7586,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/6oPYSf87K2
+7592,outbreak,,More than 40 families affected by the fatal outbreak of Legionnaires' disease in Edinburgh areÛ_ http://t.co/XpvKqME5Ls
+7596,pandemonium,"Lagos,nigeria",Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) http://t.co/s9fJTsGbmd
+7597,pandemonium,LND Greatest City In the World,What scenes at Trent Bridge England could win the #Ashes today at this rate! #Pandemonium
+7599,pandemonium,London,@misslyndaleigh The Original Lust Angel her self Miss Leigh swooping down to cause mayhem & pandemonium x http://t.co/BAnve2Xw4n
+7606,pandemonium,"Loreto College, Mullingar",This time next week there will be absolute pandemonium in several homes around Westmeath with some carefully... http://t.co/nwfNxs4rIE
+7615,pandemonium,Nigeria,Pandemonium In Aba As Woman Delivers Baby Without FaceåÊ(Photos) http://t.co/BUKDVKuRTw
+7618,pandemonium,Nigeria,Welcome to http://t.co/4XsCjtvmmM: Pandemonium In Aba As Woman Delivers Baby Without... http://t.co/2tTsTvbgIx
+7620,pandemonium,"Toronto, Canada",On the Christie Hillside: Game 4 - Pandemonium at the Pits http://t.co/sRCKaWAndm @IBLMapleLeafs @IBL1919 http://t.co/dtImtSQu7z
+7624,pandemonium,lagos,: Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) - http://t.co/mA7cbwuCpd'
+7625,pandemonium,Los Angeles,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) - http://t.co/69rJXT5Y5t
+7629,pandemonium,Jabalpur,Bihar Assembly fails to transact business due to pandemonium http://t.co/stp2Rsm3Af http://t.co/Dx8zBWAr4k
+7632,pandemonium,,I'll be at SFA very soon....#Pandemonium http://t.co/LC1cMx1mPb
+7636,pandemonium,"Durham, NC",The move Saturday --> #Mirage! 400 N. West st. Raleigh NC 21+ http://t.co/bXdaTWjNHS Tickets at: http://t.co/7hAnPcr5rK
+7637,pandemonium,Nigeria|| Lagos,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos): According to eye witnesses in Ogbor Hill in A... http://t.co/lJYIG8RBOQ
+7646,panic,sad,Panic - Sublime with Rome
+7655,panic,St. Louie,@Kayhow21 I may have a panic attack during this coinflip
+7658,panic,,@SixSecondCov he sounds more like panic at the disco ??
+7660,panic,Louisiana the real La,"Tried 2 4get
+Feelings of death
+Invading panic spawns
+Can't concentrate
+No 1 relates
+Stealing all the light
+Spreading thin a soul in sections"
+7664,panic,"Corpus Christi, Texas","Don't blame the messenger. Food panic in Venezuela. 1 minute video.Thanks SHTFPlan!
+https://t.co/QBSTQXA6QX"
+7665,panic,they/them or she/her,@puzzledtriangle please inform me of that date because that song very accurately reflects the panic of the week before
+7666,panic,Narnia,I added a video to a @YouTube playlist http://t.co/hLeON4klNR Panic! At The Disco: I Write Sins Not Tragedies [OFFICIAL VIDEO]
+7667,panic,,Panic attacks are always lovely
+7673,panic,"North Devon, UK ",Now playing : Roppongi Panic [22PM] by @candydulfer #listen at http://t.co/ozoD1fdgas - Buy it http://t.co/8IZn6fw2qe http://t.co/uhgHpUiivf
+7676,panic,,Confession 8 I smoked a whole bowl of the holy meca and had a panic attack
+7682,panic,,someone hold my hand and tell me ITS OKAY because I am having a panic attack for no reason
+7684,panic,,Sending your kid to college? Don't panic! Check out coping tips from a rabbi/social worker: http://t.co/7HEaFOGkOU http://t.co/6bj2yf7pC7
+7690,panic,Narnia,I added a video to a @YouTube playlist http://t.co/DzHDBiajS5 Panic! At The Disco: The Ballad Of Mona Lisa [OFFICIAL VIDEO]
+7697,panicking,leicester,@underrrtow molly send help im panicking over 6th form clothes what do i do
+7700,panicking,,@bexrayandvav if it makes you feel better we have started panicking about how close freshers is and how unprepared we are :l
+7704,panicking,,Highlight of my summer???? panicking on Estrella TV ????
+7705,panicking,,Need stop panicking when I'm driving and people are behind me who I know ???? always stall ??
+7706,panicking,"Brooklyn, NY",BizInsider: People are finally panicking about cable TV - Traditional TV is continuing to have trouble competing w... http://t.co/X0Xnpc1y3t
+7708,panicking,,@snapharmony : People are finally panicking about cable TV http://t.co/boUa80Z5Wf
+7709,panicking,Italia,#Business People are finally panicking about cable TV http://t.co/FcfSSlxMy2 http://t.co/9xFzkpdmQz
+7710,panicking,"Philadelphia, PA",I deserve a goddamn medal for dealing with this basement flood without panicking
+7713,panicking,omaha neblastya,I'm panicking like crazy and I need you
+7716,panicking,Home is wherever I am ,@ScarFacedCully Really cause you're spending more time panicking when you could be there
+7726,panicking,9.25.14?8.5.15?10.6.15 | gen?,this is from my show last night and im still panicking over the fact i saw sweaty ashton with my own two eyes http://t.co/yyJ76WBC9y
+7729,panicking,,@Sawyer_DAA @GuerrillaDawg worst feel in DS when u panicking during boss fight and you chug two estus and the boss kills you while u drink
+7730,panicking,,@RudyHavenstein @zerohedge isn't it just zerohedge readers who are panicking? For everyone else it's summer time trade.
+7732,panicking,,My day isn't going the way I planned so I'm low key panicking. GIMME BACK MY AIR!!!
+7734,panicking,Bedford,@milefromhome ??.. Don't.. I'm panicking..
+7740,panicking,,People are finally panicking about cable TV http://t.co/P49OCqkUTJ
+7741,panicking,,"Sitc
+
+Make sure everyone can enjoy themselves without panicking and having bad anxiety due to bad organisation skills and shocking security"
+7745,police,,Police arrest suspect in killing of Mexican journalist and 4 women http://t.co/uvxLZhIG4R
+7757,police,Wolverhampton ,A man tried to steal my phone I saw ye police near me and punched him and started shouting for them. I ran after him for two miles....
+7762,police,"Gresham, OR",FOLLOW-UP at 4700 BLOCK OF SW 11TH ST GRESHAM OR [Gresham Police #PG15000044153] 17:00 #pdx911
+7770,police,,"Stockton Shooting Kills One Officers Investigating: STOCKTON ÛÓ
+Stockton police are investigating a shooting t... http://t.co/7vnrB5kurU"
+7776,police,,EFF and MuckRock run census to find out how local police track your biometrics http://t.co/vA9PvpS9Dj
+7777,police,"Portland, Oregon",Acting Public Information Officer (PIO) Until Monday August 10 http://t.co/FEBu2dH9Hs http://t.co/DsxV9p4eBz
+7778,police,Philadelphia & Worldwide,Police: Tennessee theater shooting suspect was 29 http://t.co/CthoDZpLW3 #Philadelphia #News
+7779,police,Uganda l Africa l Worldwide. ,#Np love police @PhilCollinsFeed On #LateNiteMix Uganda Broadcasting Corporation. UBC 98FM #Radio/ #Uganda / #MbbLive
+7782,police,"Pennsylvania, USA",@tcbinaflash77 honestly I can't understand why @chanelwestcoast is blaming the police when she wasn't cuffed buy them. #1oak
+7786,police,Nigeria,Now Trending in Nigeria: Police charge traditional ruler others with informantÛªs murder http://t.co/DQhpm4A5qY
+7791,police,"Portland, OR",ASSIST - CITIZEN OR AGENCY at NE LLOYD BLVD / NE OREGON ST [Portland Police #PP15000266835] 17:11 #pdx911
+7792,police,"Colorado, The Mile High City",@longshipdriver the police here in the U.S. need to stop killing people
+7794,police,,?? #Police Gents Dart #Watch Stainless Steel Bracelet and White Dial + Gift Box http://t.co/jM85C2uXQY http://t.co/SRogObPiiv
+7795,quarantine,mumbai,chickmt123: #letsFootball #atk WIRED : Reddit will now quarantine offensive content http://t.co/wvn6GrIyPq (httpÛ_ http://t.co/pgIHchdURJ
+7796,quarantine,,#callofduty #advancedwarfare COD Advanced Warfare Reckoning DLC 4 Quarantine Gameplay http://t.co/huNMYHyAHp
+7798,quarantine,"Philadelphia, PA USA",Reddit Will Now Quarantine Offensive Content via #Wired http://t.co/g8EF8dU9Cy
+7805,quarantine,,@astolfialessio Reddit Will Now Quarantine Offensive Content http://t.co/XQkcD0qV3c
+7806,quarantine,,@kirillzubovsky your Tweet was quoted by @WIRED http://t.co/E90J3vJOLc
+7808,quarantine,,Changelessly handle dominant quarantine folders toward yours solemnity: hjt http://t.co/ccTt1mY7FA
+7811,quarantine,Italy,New post: 'Reddit Will Now Quarantine Offensive Content' http://t.co/ZuyTIBdIRk
+7814,quarantine,San Jose,Reddit Will Now Quarantine Offensive Content >> http://t.co/WcIzstXk4f
+7819,quarantine,"New Jersey, USA",Reddit Will Now Quarantine Offensive Content http://t.co/KDc97PrQcc
+7820,quarantine,2014.02.14~ing,'Quarantine.' Enforced isolation to prevent contamination that could lead to disease or in some cases death.
+7825,quarantine,Milano,Reddit Will Now Quarantine Offensive Content: Reddit co-founder and CEO Steve Huffman has unveiled more specif... http://t.co/EkZmMxU9GN
+7829,quarantine,"Johnson County, Kansas",Metal detectors protect public places from guns. Why not mental illness detectors to stop crazy shooters? And quarantine weirdos w/weapons..
+7834,quarantine,#Bitcoinland,? http://t.co/jGRA7oOISN #Reddit Will Now Quarantine Offensive Content #wired #tech http://t.co/0lTJzyrdS3 ? http://t.co/GvKDAQ4vkh
+7836,quarantine,"Mumbai , India",Reddit Will Now Quarantine Offensive Content: Reddit co-founder and CEO Steve Huffman has unveiled more specif... http://t.co/Epd8pLtrWP
+7838,quarantine,Maryland,Reddit Is Planning to 'Quarantine' Its Most Toxic Communities http://t.co/KlVxYN2EJK #mcgtech
+7841,quarantine,New York,Reddit updates content policy promises to quarantine Û÷extremely offensiveÛª communities http://t.co/GJKCALiUHk
+7845,quarantined,"ÌÏT: 41.106046,-80.657836",Ebola Outbreak: Alabama Man Tested Negative For Virus 6 Firefighters 2 Family Members Quarantined - https://t.co/lCpR20USYL
+7846,quarantined,"darwins, au ",Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/aXqgUKn8Yz http://t.co/P1USSSv5Wa
+7853,quarantined,"Springfield, MO",Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/VdvLatelsJ http://t.co/OK2SFDN1I8
+7856,quarantined,"brisbane, australia",#hot Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/sqHDrl7uKG #prebreak #best
+7858,quarantined,china,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/HyCmg4ZKY1
+7859,quarantined,,Alabama Home Quarantined Over Possible EbolaåÊCase http://t.co/cGKy5rw9cw
+7866,quarantined,Reddit,[Serious]Now the Admins have banned certain volatile subreddits which ones are you surprised haven't been removed/quarantined yet? Û_
+7875,quarantined,Venezuela,Officials: Alabama home quarantined over possible Ebola case http://t.co/juW5wtOqB0
+7879,quarantined,,http://t.co/AyLATPE073 Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/lNJD4Ey40J
+7884,quarantined,someplace safe,@famoushorse they haven't applied bans consistently. The Jew hating sub is only 'quarantined'
+7886,quarantined,"Bronx, New York",Alabama home quarantined over possible EbolaåÊcase https://t.co/jr4k7IiSbu
+7890,quarantined,"Chattanooga, TN",@freeagent1717 @ChaseIngram @amandagiroux28 lol I saw something like that last cops was quarantined taking him out the house etc
+7892,quarantined,,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/FEpjk1wEjD
+7896,radiation%20emergency,"Pretoria, South Africa",You knew that Israel is a world leader in lifesaving emergency services. And now looking far beyond Haiti and... http://t.co/49N6YzAjvd
+7899,radiation%20emergency,?x??p = ?/2,Japan NRA proposes raising maximum radiation dose to 250 mSv for nuclear plant workers in emergency situations. http://t.co/Iqb8YH6hHT
+7900,radiation%20emergency,"Kuala Lumpur, Malaysia",Jerry Brown declares state of emergency over wildfires drought street gangs radiation dead fish LGBT mania air pollution unemployment
+7901,radiation%20emergency,Morganton GA,On 7/30/2015 Radiation council of Japanese government admitted the reform bill to raise the dose limit from 100... http://t.co/6bTeSV9CdM
+7904,radiation%20emergency,"Salem, OR",SB228 [Passed] Relating to sources of radiation; and declaring an emergency. http://t.co/D1xlFKNJsM
+7911,rainstorm,nipple squad makes me happy,DOES ANYONE REMEMBER WHEN 5SOS CAME W 1D ON THE TMH TOUR WE HAD A GIANT RAINSTORM AND LAST NIGHT WE HAD ONE ALSO. @5SOS STOP BRINING RAIN
+7917,rainstorm,,Another fun night. My daughter gets a flat tire on her car. Calls and doesn't know how to change it. Worst rainstorm all year. Now she knows
+7919,rainstorm,"Secane, PA",Approaching rainstorm http://t.co/3YREo3SpNU
+7920,rainstorm,,Severe rainstorm in Italian Alps causes landslide killing three near ski resort http://t.co/DzKOKka1Eh
+7921,rainstorm,Keffi,Landslide in Italian Alps kills three: ROME (Reuters) - Three people were killed when a severe rainstorm in th... http://t.co/2pZ9t2FnSz
+7922,rainstorm,,@Robot_Rainstorm I'm interested. Is it through Yahoo?
+7925,rainstorm,,Landslide in Italian Alps kills three - ROME (Reuters) - Three people were killed when a severe rainstorm in the I... http://t.co/i1i1Qp5VrO
+7927,rainstorm,,Photo: Rainstorm On The Way To Brooks NearåÊDinosaur Provincial Park Alberta July 11 2015. http://t.co/Mp9EccqvLt
+7928,rainstorm,"Kent, United Kingdom",Landslide in Italian Alps kills three: ROME (Reuters) - Three people were killed when a severe rainstorm in th... http://t.co/GX1UXeY57B
+7931,rainstorm,"Memphis, TN",driving home after a fairly large rainstorm makes me wonder how some of y'all manage to drive when it's dry out
+7942,rainstorm,WorldWide,'I shut my eyes and the music broke over me like a rainstorm.' - Sylvia Plath (via petrichour) http://t.co/ULS9OEkX8M
+7946,rainstorm,"Phoenix, AZ",Landslide in Italian Alps kills three: ROME (Reuters) - Three people were killed when a severe rainstorm in th... http://t.co/mBPWr0fUvJ
+7947,rainstorm,"Calgary, Alberta",@WerdEmUp It's already been messed up thanks to an earlier rainstorm. Needs to go in for maintenance anyway.
+7948,rainstorm,"Banner Elk, NC",Welcome to Avery County! Just your everyday rainstorm. https://t.co/0Lw6GyeAgB
+7951,rainstorm,,rainstorm??
+7956,rainstorm,South East Florida,@SavanahResnik @CBS12 I would hide out at the Coldstone at monterrey and us 1. Great place to wait out a rainstorm.
+7961,razed,Harare,#CecilTheLion The Latest: More Homes Razed by Northern California Wildfire - New York Times: ... http://t.co/Vi05Yq85Ly #Harare #263chat
+7964,razed,Kaneville,'The Latest: More Homes Razed by Northern California Wildfire' by THE ASSOCIATED PRESS via NYT http://t.co/rDF0ZuW7lZ
+7966,razed,,#?? #?? #??? #??? The Latest: More Homes Razed by Northern California Wildfire - New York Times http://t.co/IPnHSIyorc-
+7967,razed,San Francisco,? Razed In Black - Whipped ? http://t.co/oAE9LgtCtI #nowplaying
+7974,razed,Abuja,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/55IdFT20A2 http://t.co/2VSX1yO5hT
+7975,razed,Try looking at the map?,@RazeD_ yea in this photo
+7979,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/ATokCD74bA
+7985,razed,California,ABC News The Latest: More Homes Razed by Northern California Wildfire ABC News The latest onÛ_ http://t.co/RruNs5rDz5
+7986,razed,Digitosphere,World News>> 'The Latest: More homes razed by Northern California wildfire - http://t.co/M6OK4EH3ob' http://t.co/VGa0OhB6XF
+7993,razed,University of Alabama,From the Archive: National Poetry Month: Anterior of a Razed Room http://t.co/7ARN4OBiyC
+7995,razed,,The Latest: More homes razed by Northern California wildfire - SFGate http://t.co/65hunplHYB
+7997,razed,"New York, USA",Guess who's got a hilarious new piece on @RazedOnIt? @honeystaysuper! 51 Things You Should Never Say to a Mother Ever http://t.co/ikRHIb9x0a
+7998,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/ORdoKfUIBm
+8004,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/lj4J54vxq3
+8007,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/VP6wbXMZmj
+8011,refugees,Kansas KS,'imagine an entire aisle dedicated to making people look like serbian refugees.' - director of whole foods clothing section
+8014,refugees,Nigeria,12000 Nigerian refugees repatriated from Cameroon http://t.co/LeLYa0vDOg read /////
+8022,refugees,Toulouse Haute-Garonne France,Top story: @ViralSpell: 'Couple spend wedding day feeding 4000 Syrian refugeesÛ_ http://t.co/QAYayzh0fL see more http://t.co/oTqbHd2akn
+8027,refugees,,Wow! Some powerful thoughts on the language we use to talk about groups of people on the move: https://t.co/KRbpf4Tp4I
+8033,refugees,,wowo--=== 12000 Nigerian refugees repatriated from Cameroon
+8041,refugees,Hannover,Top story: @ViralSpell: 'Couple spend wedding day feeding 4000 Syrian refugeesÛ_ http://t.co/5lMo710D5f see more http://t.co/G9LREAlToJ
+8042,refugees,,./.....hmm 12000 Nigerian refugees repatriated from Cameroon http://t.co/FVTj8qwJZW /(
+8046,refugees,"Shellharbour, Wollongong",.@PeterDutton_MP Maintaining the integrity of our borders while not maintaining human rights of our refugees. Nice trade off.
+8048,refugees,,Newlyweds feed Syrian refugees at their wedding http://t.co/DGjBuGxH9E #changetheworld #SyrianRefugees
+8050,refugees,,...//..// whao.. 12000 Nigerian refugees repatriated from Cameroon http://t.co/aVwE1LBvhn
+8051,refugees,,Refugees as citizens - The Hindu http://t.co/GJSaAf3U6K
+8052,refugees,lbtidronegirlshell ,Still wonder why they will do anything to have a life anywhere. Wars u support CAUSE refugees open boarders. #auspol https://t.co/3MjtE74AiW
+8053,refugees,,reaad/ plsss 12000 Nigerian refugees repatriated from Cameroon
+8054,refugees,Europa,"More dirtylying dishonest #refugees for the #UK.
+http://t.co/3m7amh1E33
+
+#WhiteGenocide #gays #Britain #British http://t.co/FzOv8WcbYI"
+8059,rescue,,@bcook28 @zacktiller30 bring in the rescue squad ??
+8063,rescue,Chicagoland and the world!,Florida Firefighters Rescue Scared Meowing Kitten from Vent Shaft http://t.co/RVKffcxbvC #fire #firefighter
+8072,rescue,,@X_Man_Kitty @WolvenBeauty @_NickWilson__ //Shit...alright time to launch a black ops mission to rescue my alpha
+8075,rescue,U.S.A. FEMA Region 5,Last Chance Animal Rescue has 3 new posts. http://t.co/qtEqA5kvpy #animalrescue | https://t.co/ec46LyQQc6
+8076,rescue,,@wcvh01 @1233newcastle @aaronkearneyaus @LesMcKeownUK PS I notice you are a vet?? I rescue kitties ?? .thank you for your service ??????????
+8077,rescue,,Officials rescue 367 migrants off Libya; 25 bodies found - Fox News http://t.co/9CAignPR6S #NoAgenda #MvDint
+8078,rescue,"Chillicothe, OH",kayaking about killed us so mom and grandma came to the rescue.
+8080,rescue,,8' MTech Assisted Open RESCUE Pocket Knife - NEW BLUE MT-A801BL zix http://t.co/51n2rZEBis http://t.co/P4lNbjDo0x
+8082,rescue,USA,Beauty Deals : http://t.co/eUd317Eptp #4552 Lot of 50Mixed Colors 7.5' Scissors FirstAid Princess Care Rescue TrÛ_ http://t.co/mAHkV79SmW
+8086,rescue,"Lexington, KY","If a picture is worth a thousand words what would this one say??
+
+How a Lexington veterinarian's passion for... http://t.co/Y8dY39OhAL"
+8090,rescue,,"Revel8ion Media recently went out to support the 'Rocky Fire' rescue efforts. This is what we filmed.
+#RockyFire http://t.co/Haxz4XLs8d"
+8092,rescued, Kaijo High School,I donÛªt want to be rescued either #bot
+8093,rescued,,Val rescued the sister but alone died. In the end she wasn't selfish. It was beautiful but very sad #emmerdale
+8099,rescued,Summerside,Worker rescued from top of Central Street water tower in Summerside http://t.co/MkMlCTYmee
+8104,rescued,Canada,10-Month-Old Baby Girl was Rescued by Coastguard after She Floated HALF A MILE Out to Sea! http://t.co/kJUzJC6iGD
+8107,rescued,"London, UK",So @edsheeran just rescued this year's #FusionFestival http://t.co/I6ldEtwB6h http://t.co/XUnS3zHIxa
+8108,rescued,,I just rescued you in MGS Ground Zeroes @HIDEO_KOJIMA_EN haha. Amazing...Sept 1st cant come soon enough :)
+8114,rescued,"Hollywood, CA",Stewart bought a new property earlier this year w/ the intention of providing a sanctuary for rescued farm animals. https://t.co/ExXtboah8h
+8115,rescued,Niger State,Three suspects in police net for kidnapping & trafficking a 4month old Baby from Kontagora to Aba# Baby rescued alive.
+8117,rescued,"Burnley, Lancashire",British trekkers rescued amid flash floods in Himalayas - BBC News
+8123,rescued,"Pembroke Dock, Wales",SkyNews: Migrant Boat Tragedy Survivors Arrive In Italy - Migrants rescued http://t.co/FORBy6MmKp
+8124,rescued,,nigeriantribune: 4 kidnapped ladies rescued by police in Enugu | Nigerian Tribune http://t.co/7hmHpl1Z4y
+8127,rescued,,NAIROBI Kenya (AP) ÛÓ Two people died and 25 others were rescued after a passenger boat with about two dozen passengers collided with a
+8132,rescued,Patra-Greece.,Incheon Prosecutors Office: Drop the charges against Nami Kim who rescued two puppies from 'Dog Hangi... https://t.co/vWzX2P6Dnk via @Change
+8134,rescued,Hyderabad Telangana INDIA,Britons rescued amid Himalaya floods http://t.co/8f2YBus2Vk
+8139,rescued,"Bath, England",New-born piglet running down a national speed limit road is rescued #oink #Dorset http://t.co/dOMvOx2Oui http://t.co/iEVdj6KBU2
+8145,rescuers,"ÌÏT: 50.953278,-113.978785",Rescuers recover body of 37-year-old Calgary man from lake near Vulcan http://t.co/araUSJvsy9 http://t.co/U7ZWlk8THX
+8148,rescuers,"Rome, IT",#italy Hundreds of Migrants Rescued After Boat Capsizes Off Libya: Rescuers saved 400 people though 25 died w... http://t.co/e48syD5N1E
+8151,rescuers,Worldwide,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/WvMHX5tiel
+8152,rescuers,,Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carrying as many as 600 peopleÛ_
+8153,rescuers,"Los Angeles, CA 90045",Bay Whale Worries Rescuers http://t.co/nfKTvVLWHm
+8157,rescuers,"Orange County, California ",The Rescuers and The Rescuers Down Under are on NetflixÛ_ YouÛªre welcome.
+8160,rescuers,,Fears over missing migrants in Med: Rescuers search for survivors after a boat carrying as many as 600 migrantsÛ_ http://t.co/UUHNC8ZkOW
+8166,rescuers,,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carryi...
+8167,rescuers,9 Benua Ltd.,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/xJm6Snk1G0
+8173,rescuers,"Paradise, NV",WomanÛªs GPS app guides rescuers to injured biker in Marin County http://t.co/hKv8XKtU2k
+8174,rescuers,"ÌÏT: 7.384559,3.8793718",VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/biiiYi7DaE
+8178,rescuers,,News Break Nigeria Rescuers search for survivors after a boat carrying as many as 600 migrants capsizes in the... http://t.co/lNiTVT7B53
+8179,rescuers,,Photo: theonion: Rescuers Heroically Help Beached Garbage Back Into OceanåÊ http://t.co/YcSmt7ovoc
+8185,rescuers,Florida,When Rescuers Found Him He ... http://t.co/sTDCdHQxJX
+8186,rescuers,"Manado,Sulawesi Utara",VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/XfS3pJhFh9
+8192,riot,"Portland, OR",@CHold ironically RSL call their stadium the Riot
+8193,riot,"Wakefield, England",If John Bateman scores we riot... https://t.co/zuPz8ZlO2X
+8194,riot,"Las Vegas, NV",@CazorlaPlay Fran. Hey check out the Secret on how to get 325.000 Riot Points LoL Check it on my Bio Profile
+8197,riot,,"@AlexandBondarev Discovered by @NickCannon
+ Listen/Buy @realmandyrain #RIOT on @iTunesMusic @iTunes https://t.co/dehMym5lpk Û_ #BlowMandyUp"
+8198,riot,,Stuart Broad Takes Eight Before Joe Root Runs Riot Against Aussies: Stuart Broad took career-best figures of 8... http://t.co/2UmwMG7lvN
+8199,riot,,"@hawk_nancy Discovered by @NickCannon
+ Listen/Buy @realmandyrain #RIOT on @iTunesMusic @iTunes https://t.co/dehMym5lpk Û_ #BlowMandyUp"
+8200,riot,,To All The Meat-Loving Feminists Of The World Riot... http://t.co/tNI5SCpBMA #followme | https://t.co/OFtj2sXYPf http://t.co/lVYemK99uV
+8206,riot,,To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived http://t.co/7TMBbGxSK8 @OwenHarris82
+8207,riot,California,To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived http://t.co/MK9ZIp2ro7
+8220,riot,San Francisco,@Riot_Sweet @jfwong @MtgoDoc @JoshLeeKwai wait.. what dates?? ill be at MSG and PAX =(
+8222,riot,,#ModiMinistry Stuart Broad Takes Eight Before Joe Root Runs Riot Against Aussies http://t.co/rc22r1xlIs
+8227,riot,#sundaunited,I'm Role Play of Ulzzang Park Hyung Seok. 92 Liners. Be bleased with me. I'll do the same.
+8228,riot,,To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived: Pop quiz! Which do you prefer: feminist... http://t.co/MoGytSxvOa
+8229,riot,NYC,Matt Baume Digs Into the the Controversial Û÷StonewallÛª Trailer and Who the Real Heroes of the Riot Were: VIDEO http://t.co/HRoxD1qpua #gay
+8230,riot,U.K.,Riot police intervene after Southampton and Vitesse Arnhem supporters clash: Û¢ Fans clash in buildup to second legÛ_ http://t.co/I8GX67wbGv
+8233,riot,Global,Riot police intervene after Southampton and Vitesse Arnhem supporters clash: Û¢ Fans clash in buildup to second... http://t.co/OBBcoMKAWf
+8248,rioting,GO Bucks!,"we shootn each other over video games................wow ghee sad
+but I still don't see no rioting no walks no... http://t.co/O423U56yPh"
+8249,rioting,,#BHRAMABULL Watch Run The Jewels Use Facts to Defend Rioting in Ferguson: The socially minded duo takes on the... http://t.co/9iP2vqHFWi
+8255,rioting,Cali,Swear to god if they make faker play kog I'm rioting
+8260,rioting,Tri-State,#BHRAMABULL Watch Run The Jewels Use Facts to Defend Rioting in Ferguson: The socially minded duo takes on the... http://t.co/y9eTXHCvjr
+8263,rioting,Azeroth,@amiestager there's better alternatives than rioting and if we don't kill them they'll kill us...
+8265,rioting,#DCjacobin,I have stopped trying to figure out if THIS will be the misogyny/racism/religion-fueled shooting that will incite rioting.
+8268,rioting,,'Dont use \Allahuakbar\'' and start rioting. Do you guys even listen to yourselves? #SHAME'''
+8269,rioting,Davis,@abbydphillip @dahboo7 Shh...it's only OK for the puny 13% black population to get mad. The gov can't control the majority rioting.
+8272,rioting,,@foxandfriends where is protest looting and rioting that is for ignorant people
+8273,rioting,å©hicago,@brownblaze on tumblr the day/night of it was all over. The first I heard anything about it anywhere elsewere simply reports of rioting.
+8275,rioting,"Manhattan, NY",Why are we not rioting in the streets for change/a future? We outnumber lobbyists! #WakeUpAmerica #CleanPowerPlan http://t.co/sONJy4HK46
+8277,rioting,Portland,#DebateQuestionsWeWantToHear Are these thugs or boys being boys? https://t.co/T0aZ5d9BHK
+8281,rioting,"Dublin, Ireland",.@runjewels appear in a new video by @BBC defending the riots in Ferguson: http://t.co/veh1seVDKO http://t.co/h2GziEfJXt
+8282,rioting,Liverpool,Half of Australia is currently rioting because they think 'Extras' is an aboriginal cricketer stealing their sport.
+8290,rioting,,http://t.co/DYKYpy3vA5 Cindy Noonan@CindyNoonan-Heartbreak in #Baltimore #Rioting #YAHIstorical #UndergroundRailraod
+8293,rubble,London,Outrage as dog found buried alive in rubble http://t.co/vrNRrpoHm8
+8299,rubble,USA,home loan: JPMorgan builds up apartment-loan leader from WaMu rubble By David Henry NEW ... http://t.co/IT6wXiCorl #badcredit #loans
+8302,rubble,Worldwide,#360WiseNews : China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/QDwRjmmk89
+8303,rubble,Uberl̢ndia - MG - Brasil,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/7R7ADdVbsX
+8305,rubble,Diantara Temlen Laksani,RT PemantauJKT48: China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/g0En3ELVCL via melodyJKTÛ_ http://t.co/KHrish3BP0
+8306,rubble,,I don't think we'll get anywhere as a ppl until we heal. like we trying to build on top of ruins without clearing the rubble
+8307,rubble,,China's Stock Market Crash: Are There Gems In The Rubble?: ChinaÛªs stock market crash this summer has sparked ... http://t.co/OajW6rTFNc
+8308,rubble,ON,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/EpNju0pZjM #forbes
+8313,rubble,Los Angeles,ChinaÛªs e-commerce firms Alibaba (BABA) Tencent http://t.co/7VcChEIC5g (JD) are still growing revenue at 40% http://t.co/GQgE7weM3W
+8316,rubble,HUSTON TEXAS 1-844-360-WISE,#360WiseNews : China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/vTJ1EoslrU
+8319,rubble,,In the long run every program becomes rococo and then rubble. ? Alan Perlis
+8322,rubble,Toronto,'Hiroshima never recovered and all the evidence was smothered under a thick cloud of rubble..' #jayElectronica
+8323,rubble,West Coast,"@KurtSchlichter Grandpa fought his way across Western Eurpoe mustered out in Guam on his way to the Home Islands.
+
+Bounce the rubble."
+8325,rubble,,just collecting the rubble
+8326,rubble,,"#Nickelodeon paw patrol-- rubble #action pack pup & #badge LINK:
+http://t.co/N7tG7RoAmU http://t.co/U12hHyu1dc"
+8327,rubble,,#Poetry #friendship Lifes Giants - Is life throwing rubble at you ? Are there giants in your mind ? http://t.co/G4wipbG0jx ~LyricalEyes
+8328,rubble,MANAGEMENT MULTIMEDIA,@accionempresa ChinaÛªs stock market crash this summer has sparked interest from bargain hunt... http://t.co/6ygPwJkr4T @gerenciatodos å¨
+8331,rubble,New York,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/qEn1Z5uOeH
+8333,rubble,CANADA ,While the world screams terrorism Assad buries civilians under the rubble of their homes. #Aleppo 05-08-2015 #Syria http://t.co/7GcPtCdx7o
+8336,rubble,California,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/eKO50hD5Gz #market
+8338,rubble,Globally 1-844-360-WISE,#360WiseNews : China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/r0FLXJx5vX
+8340,rubble,55 Wall Street,China's Stock Market Crash: Are There Gems In The Rubble?: ChinaÛªs stock market crash this summer has sparked ... http://t.co/vZDqQ9yPN1
+8342,ruin,,@OrianaArzola does he not have any manners or something? Jfc. You have all the rights to be mad! But hey try not to let this ruin your day
+8343,ruin,"Las Vegas, NV","so in my rant about how i dont allow peens near my face i realized why I'm still single.
+
+sex is going to ruin me. or lack thereof anyway."
+8353,ruin,teen top ? jongsuk ? exo ? bts,fUCK I CANT WAIT TO RUIN AUBREY'S WHOLE FIC AND MAKE IT SO BAD
+8354,ruin,,They like raunchy trash then make it real and ruin lives and the potential of phenomenally I assume self raised good Christian human beings
+8357,ruin,Planet Earth,Any man who tries to be good all the time is bound to come to ruin among the great number who are not good.
+8358,ruin,,My sister really always has to ruin my life.
+8359,ruin,"Washington, DC",FUCK MY LIFE THESE BOYS ARE GONNA RUIN MY LIFE FORREAL http://t.co/mf9nGfphbN
+8373,ruin,In ma daddy nd mummy's. Hart..,Reality continues to ruin my life.
+8376,ruin,,He said he's 'gonna put a ring in my Harvey's burger since i love it so much it's the perfect metaphor'.. NOOO you can't ruin my burger wtf
+8379,ruin,Albequerque,This fly is a major problem for us: It will ruin our batch and we need to destroy it and every trace of it so we can cook.
+8380,ruin,,Plans always ruin.
+8381,ruin,"Monroe, OH",Don't ruin a good today by thinking about a bad yesterday ????
+8384,ruin,,To respect those who wait to watch #UltimaLucha any tweets will be spoiler free and not ruin the result. #LuchaUnderground
+8395,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/OFhjcn36o1
+8398,sandstorm,,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/nvSjHdGDGZ
+8403,sandstorm,bang bang bang,Gonna throw a huge party and play nothing but Sandstorm.
+8407,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/YSrSKuyaSw
+8413,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/ELDcP3vO7C
+8417,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/1oemJTO9Dp
+8420,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/jqTMweDw33
+8421,sandstorm,"West Midlands, England",I liked a @YouTube video from @centralupload http://t.co/EwLHrTREEP Oh oh!
+8424,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/Tr8YcHEFGQ
+8426,sandstorm,United States,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/1ZdRKTgogD
+8427,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/TLcWeZPuKW
+8438,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/Fkb7iUAuL8
+8439,sandstorm,WARNING: I TWEET NSFW AND NSFL,I just replied to somebody's comment to me saying'darude sandstorm' negatively and now I feel bad for doing it.
+8442,screamed,,I screamed when @g_montani @jessemontani were running to John for 1st place! I'm so happy I love you guys ?? #AmazingRaceCanada
+8449,screamed,quantico,Oh my god Rosie OÛªDonnell is on The Fosters and I screamed her name in a fit of shock and awe
+8456,screamed,,I'm having a meltdown because of Game of Thrones ?? literally cried screamed and threw my computer #WHYYYY #redwedding
+8460,screamed,"Holland,MI",I just screamed when I saw Jordan come out the door behind Donnie on #Wahlburgers ??
+8462,screamed,,@joshshatsays I JUST SCREAMED TO MYSELF BECAUSE YEAH
+8465,screamed,,OH MY GOSH IM AT MY AUNTS HOUSE AND THIS POST IT WAS ON HER COUNTER AND I SCREAMED BC I THOUGHT IT SAID CHRIS KELLER http://t.co/DNofWtAkAt
+8466,screamed,fairly local,@theboysftvines oh my god i SCREAMED WHEN I SAW THIS YESSSS
+8467,screamed,earth,' #OTRAMETLIFE ' I SWEAR TO GOD I DIDNT EVEN READ IT PROPERLY AND I THOUGH IT SAID 'OMLETTE LIFE' AND SCREAMED. I NEED TO SLEEP OMFG. BYE.
+8469,screamed,started acc 1.9.15 2:25 pm,ÛÏ@beachboyIrh: AT GMA THE SECURITY GUY SAID 'THIS IS A FAMILY SHOW' AND EVERYONE SCREAMED 'OOORRRR IS IT'Û I love this fandom
+8470,screamed,,YE SBUJDJSJS YES YES I XUSKAK I SCREAMED PROTECT MY OTHER SON PROTECT UR BOYFRIEND YES https://t.co/kDqtqGK5pI
+8474,screamed,she/her Û¢ 19 Û¢ poland,@frailnerves I SCREAMED
+8479,screamed,,I have never screamed nor cried so much at one concert
+8481,screamed,,@mo_ganwilson Verrry mad. like I just screamed I'm so pissed
+8482,screamed,"Rice Lake, WI/Toronto, ON",@TopherBreezy it was my fav too!!! Amazing! Michael and I screamed the whole time ??
+8485,screamed,trust none..,@CokeBoys__ yo best I screamed when I watched your snap chat of you smoking with that big ass cast ????
+8488,screamed,"Atlanta, GA (kind of)",@TroyLWiggins I screamed
+8492,screaming,,@camilacabello97 screaming internally and externally
+8493,screaming,United States,"SCREAMING BECAUSE 5SOS IS IN TX
+@5SOS"
+8495,screaming,IRELAND ,@camilacabello97 now I'm the one screaming internally and externally
+8499,screaming,,I WAS WATCHING SHAWN ON YOUTUBE AND MY MUM WAS JUST LIKE 'HE'S QUITE HOT ISN'T HE' I AM SCREAMING AKFNEJF
+8501,screaming,with my music and air heads,It ain't nothin cut that bitch off more like cut that lying screaming gotdamn son of a bitch red head.
+8519,screaming,Honeymoon Tour 03.26.15?,@justinbieber @ArianaGrande IMA SCREAMING HSBFUCKJSJ
+8521,screaming,HYPE RESSHA HYPE RESSHA,i'm fucking screaming http://t.co/H3MrqRrGfe
+8525,screaming,Emirates,Can't stand when ppl Beyonc̩'fy certain tunes nd u lot will b screaming 'yaaasss' low it I'm not tryna hear a xfactor rendition of burna boy
+8527,screaming,Trapin',IM SCREAMING ?????????????????????????????????????????? OMG WTF???????? https://t.co/bfEhX84lrj
+8529,screaming,moon ,IMM SCREAMING ARI IS HOLDING THE SIGN
+8532,screaming,,*screaming internally with the cover of prodigy graphic novel because June and Day*
+8534,screaming,,@GabrielleAplin you are literally my favorite person ever I'm screaming
+8535,screaming,Texas,"@LordMinion777 *screaming* i can't go!!!
+:("
+8537,screaming,Indiana,@MeganRestivo I am literally screaming for you!! Congratulations!
+8544,screams,,"-mom screams from kitchen-
+'WHERES MY AVOCADO!?'
+
+-waits patiently for mom to beat the avocado off my head- :)))))) http://t.co/LUUaY2JSJn"
+8548,screams,,one of my fav lydia screams is in 4x11 when she shows up at derek's loft
+8549,screams,,*screams internally*
+8552,screams,,@McKenzieBlackw1 love you! Sorry for my screams
+8554,screams,,screams into void? https://t.co/XRlzvFeiLH
+8563,screams,texas,@simplyysacred dude like he screams his soul out
+8564,screams,,@sugayiffer SCREAMS UR SUCH A CUTE HANAYO
+8565,screams,,@ShojoShit /SCREAMS
+8566,screams,Kenya,Curvaceous LADY screams like a mad dog in a Nairobi Club See what happened (VIDEO) - #KOT Join Mature... http://t.co/1szi9X22cr
+8568,screams,#ALLblacklivesmatter,*aggressively screams* https://t.co/8bHaejsUUt
+8569,screams,"North Druid Hills, GA",Oh no! @ATPWorldTour is letting one of their players scream! Turning @CitiOpen off. Can't listen to the screams
+8573,screams,,@melodores @Hozier *SCREAMS*
+8583,screams,stars/pens/caps/hawks,SCREAMS I LOVE THIS VINE https://t.co/PKnBZLHOSc
+8588,screams,In A Multi-Fandom,OMGGGG SCREAMS I'M THINKING I'LL SEE ACTUAL DICKS
+8590,screams,New York,The screams when Niall touches his dick yes http://t.co/U5Iu6pfNh6
+8592,seismic,,@elephino_ @Thrusta1 no but it's a convenient and seismic shift in 6 months from trying to bury the event and now allegedly 'enhance it'
+8593,seismic,,SEISMIC AUDIO SA-15T SA15T Padded Black Speaker COVERS (2) - Qty of 1 = 1 Pair! http://t.co/6OVxU5cy35 http://t.co/fAobg3I1zm
+8594,seismic,Singapore,A subcontractor working for French seismic survey group CGG has been kidnapped in Cairo and is held by Islamic State the company said on WÛ_
+8597,seismic,,Creating updating and delivering content in channel sales is not an easy task. @Seismicsoftware helps break it down: http://t.co/q4FLTG7tzT
+8600,seismic,USA,#Gabon : Oil and Gas Exploration Takes Seismic Shift in Gabon to Somalia http://t.co/SY8nqTLMD3 ^FJ http://t.co/yjDHoDdjox
+8601,seismic,Malta; Gozo,The time for small steps has long been over. We need a seismic shift in thinking to address #migration in a holistic human & humane way.
+8602,seismic,Florida,@kc8ysl Is it wrong to pray for seismic activity along the San Andreas fault? #smh
+8603,seismic,London ,"Anti-fracking group seeks review over #Lancashire seismic monitoring:
+
+http://t.co/ZzbqmGNUsl #fracking http://t.co/Y23Xzl3fZv"
+8604,seismic,"Calgary, Canada",AxWave enables a fast and accurate simulation of 2D and 3D seismic surveys in an acoustic medium #seismic #GPU #CPU http://t.co/OMX1NXAqpz
+8605,seismic,"Kanto, Japan",[10:45:27JST Aug06:First Alert] M4.1 at 'E off Chiba pref.' under 10km (35.8140.8). Estimated max seismic# is 3
+8611,seismic,,My brain feels like it's vibrating inside my skull. The MRI is going to look like a seismic readout of a faultline during earthquake season.
+8614,seismic,Worldwide,TBI early brain aging and a seismic analogy http://t.co/xs1QHfjAG4 @deetelecare #TBI #braininjury
+8616,seismic,United Kingdom,Exploration takes seismic shift in Gabon to Somalia ÛÒ WorldOilåÊ(subscription) http://t.co/Hs6OhRFsA9
+8617,seismic,,#Fukushima still is not controlled & #seismic retrofitting for other #reactors is a BIG issue @fukushima_actu http://t.co/lCDkTEOukj
+8619,seismic,,#Sismo DETECTADO #JapÌ_n [Report 6] 01:02:42 Okinawa Island region M3.8 Depth 10km Maximum seismic intensity 3 JST #??
+8626,seismic,"Calgary, Alberta","Nuclear-Powered Brassiere Explodes During Seismic Survey http://t.co/76mKIdOOLh
+ #Calgary #Edmonton #oilandgas #Vancouver #Toronto"
+8629,seismic,,The Art World's Seismic Shift Back to the Oddball - Observer http://t.co/AOWVFAbl0a
+8630,seismic,,On Thursday at 03:27 we updated our #kml of 2D and 3D #seismic exploration vessels. #offshore #oil http://t.co/btdjGWeKqx
+8632,seismic,,Here we go....one more Toss with the Seismic boys! With a stellar undercard all killer no filler keep an eye... http://t.co/Xs6aa2c6Jb
+8634,seismic,,Exploration takes seismic shift in Gabon to Somalia http://t.co/dmVR2H2fKM
+8641,seismic,Worldwide,@Statoilasa & @TOTAL make significant discovery in the North Sea: Visualise the full potential on our seismic #g http://t.co/ve2eBqm21B
+8645,sinkhole,Arizona,http://t.co/OK9EBHurfl If your neighborhood school falls into a sinkhole State Sen. Steve Yarbrough may be close by...
+8649,sinkhole,"Evansville, IN",Some Evansville residents told to limit water usage due to sinkhole construction http://t.co/Lw6NeQJRoT
+8652,sinkhole,Europe,Latest: USA: Huge sinkhole swallows up Brooklyn intersection http://t.co/vspKHg3nZy
+8666,sinkhole,NYC,A Sinkhole caved in a Brooklyn Street today on 5th Ave & 64th Street. http://t.co/eUKhLKgGdO
+8671,sinkhole,mombasa,"Sinkhole Selfies: You Wont Believe What's In The Brooklyn Sinkhole!:
+ Sinkhole Selfies: You Wont Belie... http://t.co/OFEbaKatNh"
+8672,sinkhole,,Large sinkhole swallows entire pond in Lowndes County Georgia http://t.co/20Gi4Gyud5
+8675,sinkhole,"Boston, MA",A sinkhole grows ... in Brooklyn? http://t.co/UiqKDdVwKz http://t.co/aa8FwtOHyJ
+8678,sinkhole,"Texas, USA",Giant Sinkhole Swallows NYC Intersection http://t.co/ozIZdsDWP4 via @NewsBeatSocial
+8679,sinkhole,,A sinkhole grows in Brooklyn: six-meter crater swallows street http://t.co/LTLh53aRN4
+8682,sinkhole,"New York, New York",The sinkhole that ate Brooklyn http://t.co/28r2IgxmIE
+8687,sinkhole,,Watch This Giant Sinkhole Form on New York City Street http://t.co/BEnWu5IARa
+8701,sinking,,Sinking a little slower everyday ?? @ Muh Pond https://t.co/KuA48GdREL
+8703,sinking,University of Oklahoma,"If you're lost and alone
+Or you're sinking like a stone.
+Carry on
+May your past be the sound
+Of your feet upon the ground"
+8707,sinking,Georgia/Florida ,@andreajmarkley @edjschenk @SenTedCruz If you call forward sinking into a cesspool you might be right
+8713,sinking,Liverpool,Do you feel like you are sinking in unhappiness? Take the quiz: http://t.co/LNzz0ZFrom http://t.co/TGKpnqAbHh
+8716,sinking,London / Herts,Don't think I can be more blunt lol yet the message still isn't sinking in ??????
+8719,sinking,,HELP ME I'M SINKING
+8725,sinking,Kano,that horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time'
+8730,sinking,"Washington, DC","Sinking. {part 2}
+??????
+#buildingmuseum #TheBEACHDC #VSCOcam #acreativedc #dc #dctography #vscodcÛ_ https://t.co/SsD9ign6HO"
+8731,sinking,Maryland/Myrtle Beach CCU'19,heart sinking like a sunset?? https://t.co/3cXPRDJFfe
+8748,siren,"Los Angeles, California",@kundalini121 @manyvids thank you again... ir truly wonderful
+8749,siren,London,@ryan_defreitas for me it's Revs Per Minute but the opening tune on Siren Song is UNREAL
+8756,siren,Jupiter,"@Siren_Six @B30wu1f2
+Well then we see things differently."
+8764,siren,Lagos,@Foxy__Siren best wishes boo????????
+8765,siren,New York,WHELEN MODEL 295SS-100 SIREN AMPLIFIER POLICE EMERGENCY VEHICLE - Full read by eBay http://t.co/Q3yYQi4A27 http://t.co/whEreofYAx
+8769,siren,,@Kronykal @B30wu1f2 I see no point in countering skewed statements. Dumb statement is dumb.
+8771,siren,New York,WHELEN MODEL 295SS-100 SIREN AMPLIFIER POLICE EMERGENCY VEHICLE - Full read by eBay http://t.co/UGR6REFZpT http://t.co/eYyUqX4Tbt
+8772,siren,#TeamHKNgang ,I love dat lady '@Crhedrys: ???? you nko?'@Foxy__Siren: Oh finally Jennifer Aniston got married??????... I'm so happy for her ??????''
+8773,siren,,Police siren sound effect 1 via Play Tube Fre http://t.co/BLWnTMyQmQ
+8779,siren,,Ebay Snipe RT? http://t.co/tRw1OmykQz Whelen Sa-314 Siren Pa Speaker Mount Bracket Universal With Screws ?Please Favorite & Share
+8792,sirens,,"Check out what I found on Google images!
+Something to live by! ?? http://t.co/WjOzlQBiE0"
+8794,sirens,,That new sirens and sailors ???? #workout #album
+8796,sirens,"Chandler, AZ",@HusnaaVhora I hope they dust off the air raid sirens! You can quote me on that lol
+8798,sirens,palm spraangs,@BobbyCakes50 so far miss may I sleeping with sirens August burns red Memphis May Fire Attila & all were so good ??
+8803,sirens,,want a new season of The League and Sirens on Netflix.
+8807,sirens,they/them ,and my dad is high I have a dysfunctional family
+8809,sirens,hell,SOMEBODY TELL ME HOW TO MEET PIERCE THE VEIL OR SLEEPING WITH SIRENS PLEASE I BEG YOU
+8811,sirens,"Berisso, Argentina",pos nose que hago escuchando Sleeping With Sirens - Iris (Goo Goo Dolls Cover) KE PEDO ._.
+8813,sirens,"Texas, United States",Sleeping With Sirens - Iris (Goo Goo Dolls Cover) http://t.co/KaeWtkJ06o
+8814,sirens,62,I'm falling to pieces and I won't be whole until you let me in ? Heroine by Sleeping With Sirens ÛÓ https://t.co/tQxLQUKq7z
+8818,sirens,,I was walking past the fire house today & as soon as I walk by the doors they get call and flip the sirens on. I've never ran so fast.
+8819,sirens,new jersey,why is this reminding me of dan's collab with tyler when he complained about the sirens and they stopped i'm trash
+8820,sirens,,There was also a calm. Something was going to happen. Suddenly a crash of lightning came through the sky and with it the wails of sirens. --
+8821,sirens,Atrapada en el mundo.,Sleeping With Sirens - 2 Chord
+8822,sirens,probably bargos,@jassy_curtis wait I'm fckng obsessed with your song sirens
+8824,sirens,,@spookyerica sleeping with sirens?
+8826,sirens,Bristol,sleeping with sirens are so irrelevant
+8827,sirens,Moreno City - Buenos Aires,Hear the Sirens ?
+8828,sirens,"Salem, Oregon",@salem_police ok so no sirens but a speaker system for chip music for a food cart should be fine with underskirt lighting?
+8833,sirens,,Fire truck sirens for the past ten minutes straight coming and going. Must be huge. Maybe it's taco bell and they'll build a Sonic instead.
+8834,sirens,,Sleeping With Sirens - Postcards and Polaroids.
+8845,smoke,Franklinton - BR - Houston,Smoke sumn
+8847,smoke,,just trying to smoke and get Taco Bell
+8849,smoke,Roseland,@wizkhalifa smoke ??so much you don't gotta do shit but light?? one of his locks on fire ...that's like a whole tre five right there.
+8861,smoke,Barnsley,misocapnist: One who hates the smell of tobacco smoke #UnusualWords http://t.co/jMcFFA3TOQ
+8867,smoke,IL?MI,I need a smoke ??
+8868,smoke,,[55433] 1954 LIONEL TRAINS SMOKE LOCOMOTIVES WITH MAGNE-TRACTION INSTRUCTIONS http://t.co/2W2EtbTGdr http://t.co/MWS8130h8n
+8870,smoke,your mom,would definitely have way more money if i didnt smoke on the dl
+8873,smoke,,Waiting for Joel so we can go smoke ????
+8874,smoke,,To treat his childhood asthma Teddy Roosevelt's parents made him drink black coffee and smoke cigars. http://t.co/CtaC2xZ8dY
+8876,smoke, ,I'm not asking no fee to smoke sumn if we ain't smoking out a ounce that's disrespectful
+8877,smoke,bliss,Send me flying off a cliff straight through the smoke of my spliff
+8879,smoke,,[55432] 1950 LIONEL TRAINS SMOKE LOCOMOTIVES WITH MAGNE-TRACTION INSTRUCTIONS http://t.co/8s2GxMhiSJ http://t.co/GAwvhG5aSb
+8882,smoke,@rejxctedmgc is my Harry?,Do you guys remember my life goal to smoke a blunt with zouis? Well it's still a goal
+8884,smoke,kentucky,"*anti cigarette smoking commercial comes on*
+me *goes outside and smokes*
+thanks for reminding me to go smoke lol"
+8889,smoke,ig: j.nessaa,smoke me out
+8891,smoke,,Just want someone to smoke a blunt & talk about life with ??
+8894,snowstorm,,How does a snowstorm happen? Find the answers here: http://t.co/m75fCLUtF2 #snowstorm
+8895,snowstorm,madrid,you're my snowstorm baby ??
+8897,snowstorm,"NJ, USA",Tess was almost born in a snowstorm. I was 39 years ago. Here's her birth story. http://t.co/UnyuRR8baw #VBAC #NaturalBirth
+8898,snowstorm,The Land of Make Believe,She rose to her lofty position after being transported by accident to Oz in a hot air balloon during a snowstorm.
+8901,snowstorm,"Massachusetts, USA",@Lily_Bell82 ya...summer is too short. Open toed shoes arent snowstorm friendly.
+8904,snowstorm,"Philadelphia, PA",It's creepy seeing 676 closed. It was closed during a snowstorm and my balcony overlooked the 676/76 overpass. Very eerie
+8909,snowstorm,"Alberta, Canada",Had a dream that @woodelijah was driving me through a snowstorm. We went to a restaurant and I left my journal behind. #writerslife
+8910,snowstorm,Mountains,RT RTphotographyUK: New #photo Oak in a snowstorm http://t.co/gWOKZELq5Q taken in #winter on the #SouthDowns #Hampshire #photography #artÛ_
+8911,snowstorm,"Mesa, AZ",That organic freestyle with Casey veggies is cold as an ice cream cone in a Iceland snowstorm
+8915,snowstorm,Los Angeles,@BigBang_CBS ...wow...ok...um...that was like ice water blizzard snowstorm to the face.
+8917,snowstorm,"Saint John, N.B, Canada ",@erincandy Hr/15 mins for me in that place. During a snowstormI was pissed lol We got oil delivered to them on snowmobiles in the end
+8918,snowstorm,"Huntington, WV",A snowstorm is brewing over my desk & hands are NUMB.. @irishirr - I'm guessing you adjusted thermostat? :/ @WSAZ_Brittany @kellyannwx #WSAZ
+8919,snowstorm,,Long Island is technically the leftover dirt from a snowstorm and thats a geologic fact. That place is terrible.
+8922,snowstorm,Western New York,#LakeEffect #Snowstorm Twill Denim Jackets *** ALL MY PROCEEDS FOR ITEMS WITH THIS DESIGN WILL GO TO HELP THE... http://t.co/QmtDXuYktY
+8925,snowstorm,Mountains,New #photo Oak in a snowstorm http://t.co/gWOKZELq5Q taken in #winter on the #SouthDowns #Hampshire #photography #art #tree #treeporn
+8928,snowstorm,UK,@40URTY @DonOf_NikeTown snowstorm is my fave episode lmao
+8929,snowstorm,Northeast United States ,RT @WhistlerBlckcmb: One more #SnowBackSunday share: Snowstorm on the Glacier July 26 2015! via @momentumcamps http://t.co/JohKyMv9El
+8930,snowstorm,,The sun is shining on this house now but imagine trying to build this summer home during a North East snowstorm!... http://t.co/BtJL9JkvXZ
+8932,snowstorm,Manchester,@asda bought this bargain dress and love it- cut colour pattern. Are you doing more? http://t.co/BnZm8K2AiM
+8937,snowstorm,,This week on dream from last night: my mom drove my car in a snowstorm. She hit another car while parallel parking. Saw my first ex......
+8940,snowstorm,New England ????,"I feel like the cold homeless orphan gazing into the cozy mansion of the affluent eating a lobster dinner during a snowstorm.
+
+It's fine."
+8943,storm,Wales,If you like rock music you should care about 5 Seconds Of Summer. HereÛªs why. paper-storm: I am a fan of Au Û_ http://t.co/eqEeUVpRQQ
+8950,storm,AUSTRALIA,Warcraft 3-Inspired Mode Likely Hitting Heroes of the Storm http://t.co/848CVWWdOt
+8951,storm,,Well this storm hit out of no where! ??
+8954,storm,Mackem in Bolton,"If you've got it flaunt it!
+Unless you've got an awful lot of it...then please don't."
+8958,storm,"Florence, SC",The Florence Regional Airport Director says no major damage at airport from yesterday's storm. No evacuations and no blown out windows.
+8960,storm,"Sunmy Melbourne, England",Want to know how to get the edge and storm Rock Paper Scissors http://t.co/YHzo0L7vtV #GameChanger
+8964,storm,424 N. FAIRFAX AVE. 90036,Storm & Family tonight http://t.co/0aP7MoNtjF
+8975,storm,USA,IGN: A Warcraft 3-inspired mode is likely coming to Heroes of the Storm http://t.co/2qVgImRo0R http://t.co/VTRoCiHSne
+8977,storm,,Another next day #ThrowbackThursday of Kinky Kristy and @KyleSalive rehearsing up a storm! #DoingHashtagsRight http://t.co/UJ9hxUg7QS
+8981,storm,Fairbanks Alaska,Aurora Prediction: Kp: 3.33(11:16) 4.67(14:16) AK (earth 2.00) 75% Status: Low Storm
+8982,storm,Where is my mind?,@DovahSwag @Gray_Greymane DotA 2 > Heroes Of The Storm > League Of Legends
+8984,storm,North Coast of O-H-I-O,Storm rolling into Hilton Head gonna be fun
+8988,storm,Oman ,Man united is not just about playing football like he did back at Spain its about passion courage and endurance to ride the storm.
+8990,storm,,Û÷SexistÛª peer review causes storm online https://t.co/WO2T0K4zXi via @timeshighered
+8991,storm,,"Gets violently ill and it's obvious
+Male coworker(unaware of why): don't get everyone else sick!
+Sir you cannot catch this #periodstories"
+8995,stretcher,Florida,Renewing Your Kitchen Cabinets for $100 http://t.co/lYs6p5BmDL http://t.co/ELfzsRGxRo
+8997,stretcher,BLF (MP)/ PTA (GP)/ PHB(LIMPS),Yes. He said its dropping soon '@SDotJR_: NO WAYS!!! A video for 'Stretcher'?! @Ofentse_Tsie'
+9003,stretcher,,? Stretcher in 5 min // Speaker Deck http://t.co/gXgJqQu3hU #pctool
+9004,stretcher,"Bedford Stuyvesant, Brooklyn",Jesus!!! How does a niggaeven life his hand to do that and not leave on a stretcher https://t.co/EewIzzryjI
+9010,stretcher,SP - Brasil #1,WNBA: Stars coach Dan Hughes taken off court on stretcher after collision with Danielle Robinson (ESPN) http://t.co/Jwm87uvbEf
+9011,stretcher,"Seattle, WA",@TheJasonTaylorR *EMS tries to stablize me and put me on a stretcher*
+9013,stretcher,,@Stretcher @Grazed @witter @Rexyy @Towel thanks aiden
+9014,stretcher,,Oh no! Dan Hughes seems like he's really hurt after getting knocked down by D Rob. They're bringing a stretcher on the court!
+9015,stretcher,,Mind salivation stretcher beds: KEGm
+9017,stretcher,Lakerland,He's about to leave on a stretcher.
+9019,stretcher,"Utica , New York (Upstate) ",I was there to see @JimmieJohnson wreck in 2000 in person. My first thought was he's leaving on a stretcher!
+9021,stretcher,USA,"Ambulance stretcher simple stretcher emergency medical care http://t.co/hYHoFDdWl7 #0518
+
+$169.50
+End Date: WedneÛ_ http://t.co/rMdfx6y0HO"
+9024,stretcher,?????,Stretcher in 5 min https://t.co/DIWLBiaHvP
+9032,stretcher,Barbados,lil more i did want a stretcher yc
+9035,stretcher,"Washington DC, an airport ",Stars HC Hughes down w/ what looks like lower back injury. Being put on stretcher. 4:46 to play in the 2nd Wash up 25-23
+9036,stretcher,,georgegallagher: RT WNBA: Stars coach Dan Hughes taken off court on stretcher after collision with Danielle RobinÛ_ http://t.co/wz4xVZYqJd
+9037,stretcher,St.Louis,Throat stretcher http://t.co/vkThHbOQjs
+9043,structural%20failure,"Cimahi,West Java,Indonesia",Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the... http://t.co/FoxpVpTttA
+9046,structural%20failure,,Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the co-pilot unlocked a braking
+9048,structural%20failure,United States of America,Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the... http://t.co/QOs0DE9BKQ
+9049,structural%20failure,"Stone Mountain, GA",Investigators rule catastrophic structural failure resulted in 2014 Virgin Galactic crash http://t.co/nLzbHcfXCM
+9050,structural%20failure,United States,NTSB: Virgin Galactic crash caused by structural failure triggered when brakes unlocked early http://t.co/MgIG4uX7DM Û_
+9056,structural%20failure,Asia,Building structural integrity & failure: problems inspections damages defects testing repair | Rightways https://t.co/a1KN4U3YuA
+9063,structural%20failure,London,@paulmyerscough but also a complete failure of imagination when it comes to institutional/structural analysis regardless of politics
+9065,structural%20failure,Ireland,Virgin galactic crash: early unlocking of brakes triggered structural failure http://t.co/3YLSQ1fSEf http://t.co/ABpMLymHNK
+9066,structural%20failure,,Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the... http://t.co/SYL7ou7qVW
+9068,structural%20failure,,http://t.co/NSA4kfN2RB Coal Industry's imprudent decisions! Like @TonyAbbottMHR FAILURE to recognize structural change! LOOKOUT INVESTORS!
+9069,structural%20failure,"Virginia Beach, VA USA",ÛÏ@NewsHour: Investigators rule catastrophic structural failure resulted in 2014 Virgin Galactic crash http://t.co/M8HRetrO31Û
+9070,structural%20failure,"BurBank, CA",Can You Afford Structural Failure? http://t.co/X3mKNITh7K
+9073,structural%20failure,Fano (Italy),The NTSB reports that last year's crash of a Virgin Galactic spaceship was caused by structural failure after the Û_ http://t.co/vSAPkWJTEA
+9076,structural%20failure,USA,#BBCLive Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure ... http://t.co/u5suyvLfZJ
+9091,structural%20failure,"Swaggdad, Irock",@GazelleBundchen different materials etc. Just because a closer building stayed intact doesn't negate a structural failure in building 7.
+9092,suicide%20bomb,,International News Û¢åÊ'Nigeria suicide bomb kills at least seven at market ' via @233liveOnline. Full story at http://t.co/MtTdvy6141
+9104,suicide%20bomb,WorldWide,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/VtVXa0Srmw http://t.co/Qq70Gf99ba
+9105,suicide%20bomb,,reaad/ plsss Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released
+9108,suicide%20bomb,,reaad/ plsss Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released
+9111,suicide%20bomb,Nigeria,#GRupdates Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released -->... http://t.co/hUCyI6NRbB
+9115,suicide%20bomb,"lagos , Usa",ll//ll= Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/8vBgg9IY7i /
+9117,suicide%20bomb,,./.....hmm Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/5v29w19tFX /(
+9122,suicide%20bomb,,wo Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/Sj57BoKsiB /'/'//
+9125,suicide%20bomb,Seek for LIGHT today!!!,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released: Harun Ìàekdar a member o... http://t.co/v0NTQyZlPK
+9127,suicide%20bomb,,International News Û¢åÊ'Nigeria suicide bomb kills at least seven at market ' via @233liveOnline. Full story at http://t.co/MtTdvy6141
+9129,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_
+9133,suicide%20bomb,Nigeria,#GRupdates Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released -->... http://t.co/P5yASKTq0K
+9136,suicide%20bomb,London/Lagos,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/I3ceSn7KXI http://t.co/2yCM0dlQ2f
+9138,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_
+9140,suicide%20bomb,YesNaija.com,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released: Harun Ìàekdar a member o... http://t.co/fMoqK26hIm
+9147,suicide%20bomber,,#Noticias Suicide bomber kills 15 in Saudi security site mosque http://t.co/oipt1uBaXo
+9150,suicide%20bomber,,Suicide Bomber Kills 13 At Saudi Mosque: Back in May a suicide bomber struck a Shi'ite mosque in eastern Saud.. http://t.co/FlrOvkANC0
+9152,suicide%20bomber,Atlanta,Suicide bomber kills 15 in Saudi security site mosque http://t.co/1I62JjK6pT
+9153,suicide%20bomber,,"qtSZg mhtw4fnet
+
+Suicide bomber kills 15 in Saudi security site mosque - Reuters"
+9155,suicide%20bomber,,Suicide bomber kills at least 15 in Saudi mosque: A suicide bomb attack inside a mosque in a local security fo... http://t.co/n6njdG6r9l
+9158,suicide%20bomber,,New post: Suicide Bomber Kills 13 At Saudi Mosque http://t.co/YcuV4KTgrl
+9160,suicide%20bomber,Netherverse,Suicide bomber detonates in Saudi Arabia mosque 17 reportedly killed http://t.co/BNVCvNYXXj
+9163,suicide%20bomber,Maryland,Suicide Bomber Kills 13 At Saudi Mosque http://t.co/VHQeD0gO0n
+9165,suicide%20bomber,India,Suicide bomber kills 15 in Saudi Arabia mosque used by the police :IS claims responsible for barbarism http://t.co/Ux5YA1cSG3
+9167,suicide%20bomber,Pune,@ZeeNews How come no one asked the obvious QN? Why show a Hindu suicide bomber? Never heard of one.
+9168,suicide%20bomber,"Dubai, United Arab Emirates",More details: Bomber kills at least 13 at #Saudi mosque in Asir - including 10+ members of 'special emergency forces' http://t.co/i1626mnNd9
+9170,suicide%20bomber,"Vienna, Austria, Europe",Suicide bomber kills 15 in Saudi security site mosque - Reuters http://t.co/KCObrZBVDs http://t.co/y62HSFVIAQ
+9176,suicide%20bomber,,[The Guardian] Islamic State claims suicide bombing at Saudi Arabian mosque http://t.co/tqvPUSaFJQ
+9178,suicide%20bomber,Worldwide,Google News CA: Suicide bomber kills 15 in Saudi security site mosque - Reuters: Wall Street Jou... http://t.co/mawD20REGb #News #Canada
+9184,suicide%20bomber,,#?? #?? #??? #??? Suicide bomber kills 15 in Saudi security site mosque - Reuters http://t.co/ebGGmfxoBy
+9186,suicide%20bomber,,Islamic State claims suicide bombing at Saudi Arabian mosque: Ten members of emergency services... http://t.co/0Bznfdg0aR #Kabari #World
+9188,suicide%20bomber,World,'Islamic State' group claims Saudi mosque suicide blast: The jihadist group claims it sent a suicide bomber toÛ_ http://t.co/H2CTpG4oyZ #dw
+9189,suicide%20bomber,,17 dead as suicide bomber attacks Saudi Arabian mosque http://t.co/d5cUDwuhww | https://t.co/twnsWk0hFJ
+9190,suicide%20bomber,,IS claims suicide bombing against Saudi police: An Islamic State group suicide bomber on Thursday detona... http://t.co/yoXZFbRvzI #news
+9196,suicide%20bombing,,Career goals ?? try not to cause a suicide bombing or raise psychos that like blowing shit up!
+9198,suicide%20bombing,"Charlotte, NC",@JRehling @MyyTwoCentss And if your best evidence is the word of a guy who encouraged suicide bombing as a means to get to heaven.....well..
+9199,suicide%20bombing,,AFP: #PKK said it carried out suicide bombing against troops in eastern #Turkey as a reprisal for 'bombing of a civilian village'
+9200,suicide%20bombing,New York City,"ErdoganÛªs Bloody Gambit:
+Max Zirngast in Jacobin:
+On July 20 a suicide bombing took the lives of thirty-one... http://t.co/l1vN8zXLGG"
+9201,suicide%20bombing,United Kingdom,@samfbiddle If Gawker so badly wants to commit suicide why don't you just volunteer your offices to test the new F35's bombing capabilities.
+9202,suicide%20bombing,United States,#ISIS claims credit for suicide bombing 'with 6 tons of explosives' at the central command of #Syria(n) T4 airbase http://t.co/QOaU2QLJ3B
+9204,suicide%20bombing,"England, United Kingdom",IF SUICIDE BOMBING WASTHE SMARTEST THING2 DO FOR ALLAH/GODJESUS/THE HOLY PROPHET MUHAMMAD COULD HAVE KILLEDSOMEBODY? http://t.co/tGfWuVVHxj
+9205,suicide%20bombing,,Kurdish Militants Target Turkish Military In Suicide Attack - Huffington Post http://t.co/03bJm4ORoW
+9213,suicide%20bombing,istanbul,@PieroCastellano @nipped suicide bombing civilians in major TR cities yet?
+9214,suicide%20bombing,,Remembering Sgt.-Maj. Roni Ghanem 28 of Maghar murdered by Hamas terrorists in the suicide bombing of Egged bus No. 361 13 years ago today
+9224,suicide%20bombing,USA,Turkish troops killed in Kurdish militant 'suicide attack' http://t.co/q1eIXnjjpt
+9227,suicide%20bombing,"philadelphia, pa",@mehdirhasan percentages of young Muslims who believe suicide bombing is justified per pew research: 35% Britain 42% France 29% Spain
+9228,suicide%20bombing,,PKK Suicide Bombing Kills 2 Soldiers in Turkey http://t.co/dfanUDwSQ3
+9229,suicide%20bombing,,YAOUNDE Cameroon (AP) ÛÓ Authorities have ordered the closure of mosques and Islamic schools following a series of suicide bombing attacks
+9234,suicide%20bombing,"Los Angeles, CA",@61_alvin @Craigyb74 @nomar4eva @Shahasda80 @wherepond @trensabby @parallelpond the wall Israel erected has stopped suicide bombing?
+9236,suicide%20bombing,,#ISIL has claimed credit for three suicide bombing attacks targeting regime checkpoints on the outskirts of Al-Qaryatayn. #Homs #Syria
+9241,suicide%20bombing,Lagos,MUST-SEE: Massive ISIS Suicide Truck Bombing Caught On Tape http://t.co/hMsPYpozLn via @GabbyOgbechie1TPGazette
+9243,sunk,"Sussex, UK",According to the tabloids Cilla could've been saved. In the sense that Titanic wouldn't have sunk had it avoided the iceberg.
+9245,sunk,{Daughter of Ares} {Eighteen},Managed to shuffle over to the bed. Butterflies swarmed in the pit of her belly at @VengefulKnave's offer. Her canines sunk into her lower++
+9256,sunk,Tweets by David ,Today 5/8/1941 Today 1941 British cargo ship Kumasian torpedoed/sunk Atlantic lost 1 of 60 lives Any1 have link? #crewlist #WW2
+9258,sunk,vine: woah stelena ,@widow_elena @stelena_always The show sunk because of DE. Are you really that blind? Keep trying with me though ??
+9261,sunk,,the idea of an album that is entirely ZAYN just sunk in to me and im loving it
+9274,sunk, ?becky?chloe?,IT JUST SUNK IN THAT IM NOT SEEING ONE DIRECTION
+9279,sunk,St. Catharines,"Sweet jeezus. How is this an election issue?
+This is how far we've sunk. https://t.co/XJ5BklBxWI"
+9282,sunk,sarah's dreads,Think it's actually sunk in that we've left school ??????????
+9284,sunk,Kearney (area) Nebraska,"Check out my Lightroom collection ÛÏJordyne Sr Photos Lincoln Hay Col SunkÛ:
+more of the results from Sunday
+
+http://t.co/KvBEdKGlgw"
+9285,sunk,,@Birdyword Nice piece you wrote on #RBS sale. Think sunk-cost fallacy disposition effect http://t.co/UIvpE74kUi https://t.co/LdPrUf2wuR
+9291,sunk,,12 was parked in front my house heart sunk Ta my toes... Lol all I was thinkin 'yal bitches ain finna get me dis time'
+9295,survive,???Û¢???Û¢s??Û¢????Û¢????????s,@ASOLIDRIGHTHOOK omg I remember that?? she just didn't give a shit yet somehow she managed to survive Idek how
+9299,survive,New Zealand,@amyschumer you eat food in order to survive?! Ugh and to think how much I admired you.
+9302,survive,"Portland, OR",Only 3 months to XCOM 2. I can survive that long. Right? Right?
+9304,survive,,theyre training all the celebrities 2 b superheroes so wen the apocalypse occurs theyll survive/repopulate earth w/ superior/hot beings
+9305,survive,HELL,"#Rick Grimes: 'We'll survive. I'll show you how.'
+
+#TheWalkingDead
+Season 5
+#Conquer
+29 Mar 2015 http://t.co/PbAFmAlgtb"
+9306,survive,,You deserve love but a queen don't need a king to survive??
+9310,survive,,'I mean if the relationship can't survive thezlong term why on earth would it be worth my time and energyqfor the short term?'
+9312,survive,"Lima, Peru",#ScienceDaily Parental experience may help coral offspring survive climate change http://t.co/M2tJoxkCoU
+9316,survive,Toronto,No @Rookiebluetv tonight?? how will I survive?! @RookieBlue_ABC @mperegrym
+9318,survive,,"The #Future of Insurance and Driverless #Cars: Can the #Insurance Industry Survive #Driverless Cars?
+http://t.co/zEARtXBOFt"
+9323,survive,,in this game you and candy and friends attack in the pizzeria your mission survive the night
+9326,survive,m a a l k ,@wildestsdream idkidk they're not breaking up although if they do i'll survive because solo harry bless
+9327,survive,,Just stop and survive off that there such purchases
+9328,survive,6/24/12 7/21/13 8/22/14 7/17/15,did harry survive the show
+9331,survive,,#WWII #SGM T34 in flames but with tank of gasoline to the outside it is likely that the crew survive . http://t.co/Psz22ky0fM
+9335,survive,"Quezon City, National Capital Region",Survive! ???? no sleep as in!
+9336,survive,,#Aquarius women are not the vulnerable type so you do not have to worry about her. She will survive all by herself.
+9340,survive,,Took the time to finally install #win10 on one of my systems. Let's see if it will survive a weekend of #lanparty.
+9349,survived,Brazil,"Grandma's friends survived to the attack in Hiroshima but they died with cancer when kids/teenagers??
+#BombEffects"
+9352,survived,The Meadow,Fotoset: ÛÏYou are the person who survived a bunch of rainstorms and kept walking. I now believe that pain... http://t.co/xEGNtXnH3B
+9353,survived,"Charleston, SC",@FoxNews my father's mother survived it. Never met her.
+9354,survived,portsmouth ,Good news Adam Barton survived the helicopter crash in #Emmerdale maybe now he can start training & get match fit. #Pompey
+9356,survived,,Don't even know how I survived that http://t.co/zigDPaCq5B
+9357,survived,behind them oranges,Lets see how long i survived b4 i fall back to dreamland
+9358,survived,London. ,@Babypicturethis SNACKS SNACKS SNACKS. Snacks is how we survived flights with W&P when they were wee.
+9359,survived,Singapore,Bucket list checked 3 hours of sleep in 2 days with 3 presentations on the second day and survived ??
+9364,survived,"Paddington, London",Survived my first #tubestrike thanks to @Citymapper
+9366,survived,argentina,The 390-Year-Old Tree That Survived the Bombing of Hiroshima http://t.co/kEirA8MA3K
+9369,survived,,@justgetawayx everything will turn out fine!! I went to lp/om&m alone and survived it and so can you
+9370,survived,uncanny valley,You'll be pleased to know I survived my dental appointment ??
+9379,survived,Gornal - England,Oh my days!!!! Thank God Cain has survived!!! ??#Emmerdale #SummerFate
+9381,survived,,How would you like to be remembered? ÛÓ On how i survived big achievements and what i really am. http://t.co/X7r2LNjsh8
+9383,survived,"Eugene, OR",Wow that was a tough final. I barely survived ??
+9389,survived,Keeper of the TriForce ,I survived the tube strike! This is my victory smile ;D http://t.co/L3Y3x2Cats
+9390,survived,Cardiff,Trapped a bee in my shoe only one of us survived I just ran 0.15 mi @ a 13'46'' pace with Nike+. http://t.co/IbG4ynJsw8 #nikeplus
+9392,survivors,Melbourne,Important piece on long-term #health effects of #Hiroshima by @juliepower: http://t.co/J2s4Ng7wGt via @smh @croakeyblog
+9394,survivors,"Dubai, UAE",Haunting memories drawn by survivors http://t.co/a4H2e5xhiK via CNN
+9398,survivors,"Melbourne, Australia",The Cafe Run by Acid Attack Survivors in #India http://t.co/XtVRJMRREs http://t.co/ndvlAPJvQL
+9399,survivors,,CNN: Haunting memories drawn by survivors http://t.co/ZEnDvsgYMD
+9400,survivors,"Richmond, VA, USA",Want to meet @incubusband? Earn your way by watching @thematthewcooke's #SurvivorsGuidetoEarth! #Incubustour2015 - http://t.co/QW5XcXenRD
+9407,survivors,,Aya KanoÛªs family has taken two nuclear hits: First #Hiroshima. Then #Fukushima. http://t.co/kcx9w2EJ8A http://t.co/aC50jw3Xmw
+9409,survivors,"Carlow, Ireland",See the comment from @yogal700 on @thejournal_ie:LÌä Niamh leads search for survivors of capsized migrant boat.... http://t.co/TAKgauQ6pd
+9412,survivors,Orlando,#orlando Survivors of Shanghai Ghetto reunite after 70 years http://t.co/f8pE52ZeyX
+9413,survivors,"Bangkok, Thailand.",As Anniversary Nears Atomic Bomb Survivors Speak Out Against Nuclear Power | Common Dreams http://t.co/n8f2dXVduD
+9415,survivors,"Brisbane, Australia",'We need to talk about our bums!' Bowel cancer affects young women too (via @WomensWeeklyMag) http://t.co/QJBa3EtfhV
+9419,survivors,SDF-1 Macross S. Ataria Island,Haunting memories drawn by survivors http://t.co/kDh4evYWpt via cnnbrk CNN #news
+9423,survivors,Santiba̱ez de Vidriales ZAMORA,A new favorite: Hardwell & Dannic - Survivors (Remake) [FLP Family] by @FLP_Family https://t.co/yGVMztP1rt on #SoundCloud
+9424,survivors,New York City,"RT @SyedIHusain @penelopephoto
+The man who survived Hiroshima: 'I had entered a living hell on earth' http://t.co/qFinwD7ls7"
+9426,survivors,"Temple, GA",No text is worth your life. Hear stories of survivors and pledge not to text and drive. http://t.co/xkAfgsGmZ5
+9427,survivors,"Hollywood, CA",@TheNerdsofColor @GeorgeTakei narrates our new doc about #Hiroshima WWII bombing and survivors tales. Check it out http://t.co/33RfRc7ZqT
+9428,survivors,"Denver, Co",The legendary dutch producer Dannic is making his way to Denver to bring his progessive house sound to... http://t.co/s3JhXiDslZ
+9429,survivors,,@ShaunKing Check this out: Tribute to survivors of sexual assault by law enforcement officers on facebook.
+9433,survivors,"Last Legs, New Zealand",Hiroshima schoolgirls archive memories of A-bomb horror http://t.co/32IzXXrUdP via @ABCNews
+9437,survivors,Greater Boston Area,"Your donation will make a difference in the lives of #survivors of #braininjury. Please donate today.
+ http://t.co/noF8f0RScb"
+9440,survivors,England,Survivors! Isabel Hodgins Danny Miller Laura Norton & Mark Charnock take a group pic #SummerFate #BehindTheScenes https://t.co/qUKpVpwRFv
+9442,terrorism,Udaipur,"Cross-border terrorism: Pakistan caught red-handed again
+http://t.co/FfbnLuiy0f via@timesofindia"
+9443,terrorism, FLA,@BBCNewsAsia State sponsored terrorism.
+9444,terrorism,london,Judges considering fate of children as young as two amid radicalisation fears http://t.co/EgWU4mJV0a
+9447,terrorism,"Toronto, Ontario",A Brief History of False Flag Terrorism | Wake Up World - http://t.co/KTeqJRXzpc via http://t.co/yZxlQeMKPF
+9459,terrorism,??????,Online Homeland security: An Appraisal of #PakistanÛªs #Anti-Terrorism #Act http://t.co/aeRU3nStpN
+9461,terrorism,,"Truth...
+https://t.co/GLzggDjQeH
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/MYtCbJ6nmh"
+9462,terrorism,Citizen of the World,Combating #fear of #terrorismturn off your tv &Veterans For Peace Calls 4 an End 2 #NATO #VFP http://t.co/YPPG4kZIpS http://t.co/cBfdI6LF2X
+9464,terrorism,,Cross-border terrorism: Pakistan caught red-handed again http://t.co/NVGNF9AcuU
+9473,terrorism,"Washington, DC",New US counter #terrorism program urges #Muslims to rat each other out critics say http://t.co/r0w85x3b0z http://t.co/VUUQqBo6mp
+9475,terrorism,New Jersey,People buyout over terrorism and Isis but have a better chance getting shot at in a movie theater https://t.co/jkdjH2zw8s
+9476,terrorism,"New Jersey, USA",Cross-border terrorism: Pakistan caught red-handed again @timesofindia http://t.co/ZfdcWV4ch0
+9477,terrorism,(SoCal),"?? Iran largest sponsor of terrorism
+?? If #IranDeal goes thru US gives $150 Billion
+
+?? FACT: US will become largest supporter of terrorism"
+9478,terrorism,,"Truth...
+https://t.co/Kix1j4ZyGx
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/pi6Qn7y7ql"
+9479,terrorism,,New US counter #terrorism program urges #Muslims to rat each other out critics say http://t.co/mVn6T9VhUl http://t.co/7lUfjX684i
+9483,terrorism,,@Daggy1 Maybe reagan giving weapons to Iran's regime in the 1980s is terrorism no?
+9487,terrorism,,"Truth...
+https://t.co/n1K5nlib9X
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/CGz84MUOCZ"
+9494,terrorist,Kurnool,Terrorist attack in #Udhampur district in J&K; 2 SPOs injured
+9497,terrorist,,Udhampur terror attack: NIA takes over probe Pakistani terrorist quizzed; Pak denies link http://t.co/i3gLzABeGl
+9498,terrorist,India,Three Israeli soldiers wounded in West Bank terrorist attack - Haaretz http://t.co/Mwd1iPMoWT #world
+9506,terrorist,Tampa Bay. Fire the cannons,Lupe know how to rap about social issues and not be boring. American Terrorist All Black Everything and Little weapon are good examples
+9512,terrorist,"Lagos, Nigeria.",POLLS: SHOULD THE UNBORN BABIES OF BOKO HARAM TERRORIST BE KILLED IN THEIR MOTHERS WOMB OR SPARED? http://t.co/3skw0DqZ0r
+9514,terrorist,MAD as Hell,RT AbbsWinston: #Zionist #Terrorist kidnapped 15 #Palestinians in overnight terror on Palestinian Villages Û_ http://t.co/J5mKcbKcov
+9515,terrorist,"Washington, DC",Reading rec today: Faisal Devji's Terrorist in Search of Humanity on extremists using idea ever since the bomb of humanity as single entity
+9516,terrorist,,@VICE no sympathyONLF is a terrorist group affiliated with AL shabab This is war! Go report on war crimes committed by Western powers!
+9517,terrorist,MAD as Hell,"RT AbbsWinston: #Zionist #Terrorist Demolish Tire Repair Shop Structure in #Bethlehem
+http://t.co/ph2xLI8nVe http://t.co/22fuxHn7El"
+9518,terrorist,Iraq|Afghanistan| RSA |Baghdad,Tltltltltlttlt @P_Grolsh: Ladies are doing gymnastics in the shower!!! Opening legs wider wololo #MetrofmTalk'
+9521,terrorist,,To whom we shld ask tht from where this bldy PAK terrorist has entered in our country...?
+9523,terrorist,patna,#Article 370 hs to.remove by this govt.otherwise our son who is on Border 'll b slain by Muslim terrorist.Bstrd Media takig SculrismFinis'em
+9527,terrorist,Kolkata,something is seriously wrong.suddenly deres one attack after anoder.Did a large contingency of terrorist... http://t.co/MVhjSelV5z
+9528,terrorist,,Stop using the money of tax layers of the country to feed bloody terrorist. Shot them and give a strong msg as other country does...
+9530,terrorist,Bharat.,I always wonder why and how media is capable to meet or get details of terrorist? Cops dont even get to know them primarily? Strange
+9532,terrorist,"New Delhi, Delhi",#Congi & Indian News Presstitutes must be sympathising on the Terrorist caught alive in Jammu.If they can do for Yakub Sonia must be feeling
+9534,terrorist,,@RegaJha @sethiankit True also a racial attack in US perturbs buzzfeed India more than 3 back to back terrorist attacks on India..
+9535,terrorist,Iraq|Afghanistan| RSA |Baghdad,Okay #MetroFmTalk
+9536,terrorist,,[August 06 2015 at 08:02PM] Three Israeli soldiers wounded in West Bank terrorist attack via http://t.co/6nDHERpBoT
+9543,threat,"Baton Rouge, LA",@szuniverse No threat of that sir... For some reason my Internet connection has slowed way down...
+9544,threat,,White Space Devices Pose Threat to Medical Devices Warns Lawmakers http://t.co/kZ240R8qp9
+9545,threat,"San Francisco, CA",A reminder: White Americans are the biggest terror threat in the United States according to new study. http://t.co/BqzhPjOTF5
+9546,threat,,Angry Orchard Hard Cider Recalled Due To Threat of Exploding Bottles http://t.co/OXgefsoF2B
+9549,threat,"Portland, Oregon, USA",Most Popular Content Top story: Barrel Bombs Not ISIS Are the Greatest ThreatÛ_ http://t.co/c8YYUWmefG see more http://t.co/BsMz4qlLBN
+9558,thunder,phx az,The most prescient part of Tropic Thunder was that fat-suit fart comedies would use the 2.40:1 aspect ratio.
+9560,thunder,kolkata,"Yr voice ws the soundtrack of my summer.Do u know u're unlike any other.U'll always be my thunder! ?
+@DarshanRavalDZ http://t.co/XVRbKvannu"
+9561,thunder,@kiarakardashhh | Fayetteville,this thunder though.......
+9570,thunder,,was that thunder?
+9573,thunder,,The goddess is said to be married to either Perk?nas (thunder god) or Praam_ius (manifestation of chief heavenly god Dievas).
+9578,thunder,Michigan ?? South Carolina,I don't wake up until another 2 hours && I get interrupted . ????? I hate thunder .. ??
+9584,thunder,,#FatLoss #Diet How Can You Find The Best Ways To Reduce Weight? http://t.co/czcC7NIEoX #Thunder #Health
+9587,thunder,,Tuesday Bolts ÛÒ 8.4.15 http://t.co/mkMSV54eV2 #Thunder #NBA
+9588,thunder,Journey ,I need a thunder buddy. ????
+9599,thunder,,Raise your words not your voice. It is rain that grows flowers not thunder.
+9601,thunder,ny || ga,it doesn't really get much better then summer thunder storms wrapped in a blanket. #icouldsitinthismomentforever
+9604,thunder,,Idk if ithats thunder or people rolling in their trashcans ??????
+9614,thunderstorm,"Red Deer, Alberta, Canada",[HIGH PRIORITY] SEVERE THUNDERSTORM WATCH ENDED Issued for Red Deer [Updated: Aug 05th 20:29 MDT] http://t.co/ZrIyNa6f6m
+9615,thunderstorm,,Severe Thunderstorm Warning until 10:30 PM local for Oklahoma County in OK. 60 Mph Wind Gusts And Half Dollar Size Hail. #okwx #myswc
+9621,thunderstorm,OKC,New event. Severe Thunderstorm Warning from 8/5/2015 9:50 PM to 10:30 PM CDT for Oklahoma County. Mo
+9622,thunderstorm,Lake Hefner Bike Trail,Stood there for 20 mics tryin to get a #lightning pic before settling for a vid. #okc #weather #summer #thunderstorm http://t.co/k2GJBOk6ft
+9623,thunderstorm,United States,GSP issues STRONG THUNDERSTORM WILL IMPACT PORTIONS OF NORTHEASTERN PICKENS COUNTY UNTIL 1115 PM EDT for Greater Pickens Pickens MountainÛ_
+9624,thunderstorm,Cambridge ,A Dog Was Abandoned In A Thunderstorm. But Then A Neighbor Steps Up And Does THIS http://t.co/iR3OXEH7id
+9626,thunderstorm,"Oklahoma City, OK",Severe Thunderstorm Warning for Oklahoma County in OK until 10:30pm. http://t.co/Iyq8gf437p
+9628,thunderstorm,Worldwide,RT @LivingSafely: #NWS issues Severe #Thunderstorm Warnings for parts of #AR #NC #OK. Expect more trauma cases: http://t.co/FWqfCKNCQW
+9630,thunderstorm,finland ,Just woke up to the loudest thunderstorm I've ever heard
+9631,thunderstorm,,RT @LivingSafely: NWS posts Severe #Thunderstorm Warnings for parts of #AR #NC #OK. Seek strong shelter if at risk: http://t.co/kImr0l24Fb
+9633,thunderstorm,"Florence, South Carolina",GSP issues STRONG THUNDERSTORM WILL IMPACT PORTIONS OF NORTHEASTERN PICKENS COUNTY UNTIL 1115 PM EDT for Greater Pickens Pickens MountainÛ_
+9635,thunderstorm,,OUN issues Severe Thunderstorm Warning for Oklahoma [OK] till 10:30 PM CDT http://t.co/do6H2pVuB4
+9637,thunderstorm,,Special Weather Statement issued August 05 at 10:40PM EDT by NWS: ...STRONG THUNDERSTORM WILL IMPACT PORTIONS ... http://t.co/ulqeR1yTpX
+9641,thunderstorm,,Loud ass thunderstorm for no reason !??
+9647,thunderstorm,Worldwide,RT @LivingSafely: NWS posts Severe #Thunderstorm Warnings for parts of #AR #NC #OK. Seek strong shelter if at risk: http://t.co/HE4Qh2I5wF
+9648,thunderstorm,"Oklahoma City, OK",Severe Thunderstorm Warnings have been cancelled in central Oklahoma. Still expect 50 mph winds penny sized hail
+9649,thunderstorm,336,Pretty bad ass thunderstorm
+9658,tornado,,I asked my dad 'what if a tornado comes ?'and he said 'well you better stick your head between your legs and kiss your butt goodbye'??
+9662,tornado,"ÌÏT: 35.353272,-78.553744",Storm damage maybe a tornado near Chadbourn. See http://t.co/gAs4sS3dKS http://t.co/zlhVYArtCU
+9668,tornado,,Going to attempt the California fair again tomorrow hopefully we don't die in a tornado ??
+9671,tornado,,#tornado #singapore Mac and #cheese #around the world - mac cheese cookbook: http://t.co/rgAm3eQOwn Mac and Ch http://t.co/X6ZJpzB8UP
+9676,tornado,,http://t.co/Dg0EcBYKJL Tornado warnings end after thunderstorms hammer Calgary region for 2nd night #HeadlinesApp
+9677,tornado,Midwest,(AL) Severe Thunderstorm Warning issued August 05 at 8:44PM CDT until August 05 at 9:15PM CDT by NWS http://t.co/bviYy8BMsb #alwx
+9679,tornado,"Mumbai, India.","Saam's character rocks! @OliLafont A must read for #Fantasy #mythology lover
+http://t.co/izgHpYQko4 http://t.co/XAibgO445o #TornadoGiveaway"
+9682,tornado,Canada,Tornado warnings issued for southern Alberta http://t.co/zqmzAi8yIz
+9685,tornado,Any town USA,@MarquisDeSpade You can tell yer sins to me. I won't judge you. Take your clothes off and we can sing a hymn. Let's do Abba .@TORNADO_CHICK
+9689,tornado,,@sarahnandola BTW we all live in libertyville now. Bc of the tornado
+9692,tornado,,A tornado flew around my room before you came...
+9693,tornado,"riverwest, milw ",@dead_last I'm going to live out of my car for a year probably 2016 life goals :)
+9694,tornado,"Gurgaon, Haryana. ",#TornadoGiveaway åÊ #thebookclub åÊ Join in!! https://t.co/8qucf6sgOc https://t.co/5U1t8hc4uf
+9696,tornado,,Loving you was like throwing a lasso around a tornado I tried to hold on to.??
+9700,tornado,,Blonde beauty Amanda shows you her big natural boobs in her first set http://t.co/qew4c5M1xd View and download video
+9711,tragedy,"Mumbai, India",Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/KiXRcBNjLs
+9713,tragedy,bucky barnes hell,@enjoltair that would be both a tragedy but also extremely realistic and p cool yeah sure
+9720,tragedy,"S̩te, France, (foto c.1968)","@TEDMED
+I remember my friend Jeff Weisberg saying ÛÏIf I can only gat back from this ER shift w/out a kiddie tragedy'"
+9721,tragedy,http://www.amazon.com/dp/B00HR,'1 Death is a tragedy; a million Deaths is a statistic.' Stalin August 6 1945 U.S. Atomic Bomb Dropped On... http://t.co/kaMPx4eOS9
+9725,tragedy,America,They can only ban SAFE abortions- back alley tragedy will come back. USA is NOT a theocracy!!!!! http://t.co/qIkS2FUTb1
+9726,tragedy,"Berkeley, CA",@MindfulYoga responds to the tragedy of #CecilTheLion http://t.co/5tPZ7loLlX #yoga #compassion @Hugger_Mugger http://t.co/MhIF6mPNTs
+9727,tragedy,Sheeps Clothing,@MeekMill Have your beef Idgaf but you went too far when you used a tragedy where PEOPLE DIED to insult Drake. You owe T.O an apology.
+9735,tragedy,"Jefferson, GA",If our love is tragedy why are you my remedyyyy
+9740,tragedy,,jiwa mines Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water... http://t.co/LOEPKBS38J
+9742,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/BdlqasD0wB
+9743,tragedy,,These women all bonded through tragedy. All of em were broken in some way
+9747,tragedy,Namma Bengaluru,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/cSPAmWTo6T
+9748,tragedy,Mumbai,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I c... http://t.co/AWWg8kNMZg Over.
+9751,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/HR4GNyGSiC
+9758,trapped,,@LauraE303B @SheilaGunnReid A war we'll never win? There r 2500 Yezidi women trapped as slaves.We know where they are. Doing nothing is evil
+9767,trapped,,Think of it as a reality TV show I tell myself to quell the panic rising in my throat. Introvert: Trapped in Tokyo. The 150-square-foot
+9768,trapped,,Been signed off work for a week as i have a trapped nerve and can not move.! Life is a struggle right now.! ????
+9773,trapped,,"Confused Westie Believes Dogs Are Trapped In The Computer
+http://t.co/aWZoNRYc9y http://t.co/HwJ7GwAVvB"
+9777,trapped,,(#TeambrianMundial) Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Holly... http://t.co/Ama6AVULnA (#TeambrianMundial)
+9781,trapped,Massachusetts,No one on the south shore knows how to make good coffee and I'm trapped in a living hell
+9784,trapped,,"Then @slrqxcrls on this trapped out evil monster!
+
+https://t.co/n3I79QLBsS"
+9786,trapped,instagram- joeyparmenterr,Eric is 18 trapped in a 48 year olds buddy
+9789,trapped,USA,Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Hollywood movie about trapped min... http://t.co/BinNJwobtU #topstories
+9792,trapped,,took her to the trap house now lil mama trapped out ??
+9793,trapped,"Houston, TX",If I ever saw a dog trapped in a hot car you better believe I'm busting your fucking windows open and taking your dog
+9798,trapped,Ur BaQ,Hollywood movie about trapped miners released in Chile: SANTIAGO Chile (AP) ÛÓ The Hollywood movie on the 33 m... http://t.co/RAzFkXbhMN
+9799,trapped,Venezuela,Billionaire Mottas Try Getting Trapped Money Out of Venezuela - Bloomberg http://t.co/5JqMWaf6Vp
+9802,trapped,,@Pandamoanimum Duly noted.The involuntary wince I have when people send me words like 'holibobs' must make it look like I have trapped wind.
+9803,trapped,,1961 LES WOZNI In Hospital After He Broke His Leg Trapped in CAVE IN Press Photo http://t.co/7Rr4lo1lfW http://t.co/IOLOFaphsv
+9804,trapped,Orlando,It's a trap not a fucking game. U ain't trapping if u ain't trapped
+9805,trapped,A glass case of emotions,@JetsetExtra A2 - meeting new interesting people learning about new places and the freedom to not be trapped by circumstances #JSETT
+9807,trapped,,Ghost is literally surrounded by people who are trapped mentally. Small minded individuals smh.
+9809,trauma,,Students suffering from trauma ÛÓ like divorce violence & poverty ÛÓ often act out. Schools are trying a new approach. http://t.co/mDaCuJ9W1q
+9811,trauma,The Jewfnited State,"RT MME_AUSTIN: Why #Marijuana Is Critical For Research in Treating #PTSD
+
+http://t.co/T6fuAhFp7p
+#hempoil #cannÛ_ http://t.co/RhE7dXM7Ey"
+9814,trauma,N.E.Ohio,sickmund: RT NCJFCJ: #NCJFCJ President Judge Byrne opens the first Nat'l Summit on #Trauma & the Courts in #ClevelÛ_ http://t.co/1rzxqpUGFG
+9817,trauma,"Detroit, MI",What I Learned About Fat Dating Trauma Through Piggy and Kermit https://t.co/FJwQdThAIh
+9821,trauma,"Nashville, TN",Esteemed journalist recalls tragic effects of unaddressed #childhood #trauma. #counciling #therapy #newauthors #HIV http://t.co/GXq1AuhzCy
+9824,trauma,,It's shocking how your heart repairs itself from such terrible trauma
+9825,trauma,NYC,Effective immediately Maimonides Medical Center is no longer an Adult or Pediatric Trauma Center. http://t.co/rTs30ZuVhT
+9827,trauma,,@MountSinaiNYC @Beingtweets @Susancares2x #onbeingwithKristaTippett This is important for women living w/HIV the science of trauma
+9839,trauma,,Hiroshima: They told me to paint my story: Eighty-nine year old man recalls the terror and the trauma when the... http://t.co/VhMbN4bn0b
+9840,trauma,,Idk how I'm supposed to have my daughter in gymnastics and cheer at the same time? She refuses to make a choice. Ugh DIVA ??
+9843,trauma,"California, USA",@AngstAttack Dating a woman does NOT make you a Lesbian. However Lesbians are in fact caused by experiencing trauma involving a man.
+9844,trauma,"Austin,Tx","Why #Marijuana Is Critical For Research in Treating #PTSD
+
+http://t.co/5PRq6FvE5Z
+#hempoil #cannabis #marijuananews http://t.co/HcvbwtKlMT"
+9845,trauma,"Eugene, OR",Your brain is particularly vulnerable to trauma at two distinct ages http://t.co/Wvq0Rf6UAm
+9847,trauma,"Brooklyn, NY and Norfolk, Va",Your brain is particularly vulnerable to trauma at two distinct ages http://t.co/RAv8iMVvZB via @qz
+9848,trauma,,Gutted. 6 weeks to go. Suspected fracture to my left ankle. Trauma clinic to see Specialist tomorrow #gnr @sageuk http://t.co/wa3sIUtoI0
+9851,trauma,"Burlington, VT",Your brain is particularly vulnerable to trauma at two distinct ages http://t.co/PTLgpqQeuQ
+9852,trauma,,North American Rescue IFAK Refill Trauma Kit with NEW Red Tip Tourniquet IPOK + http://t.co/wrxwCA35EZ http://t.co/Ve0vXVJOkz
+9855,trauma,S.P.Brasil,PTSD research aims to answer a question left to future researchers in 1922 by a post WW1 inquiry http://t.co/gRDebWx70f
+9856,trauma,,RT @judithabarrow author CHANGING PATTERNS #amazon http://t.co/0oCrOtMkHM SILENT TRAUMA http://t.co/2ZGrVnMDW9 #amazon
+9863,traumatised,"53.337853,-6.288693",I've spent the day traumatised about the fact that there is loads of good music out there and I'm probably not going to hear it all
+9867,traumatised,MakoHaru Hell,Can you imagine how traumatised Makoto would be if he could see himself in the dub (aka Jersey Shore AU) rn? Well done America
+9871,traumatised,,@TremendousTroye I'm so traumatised
+9876,traumatised,Time for NON VIOLENT dissent! ,"@PeterDutton_MP
+YOU DIDN'T 'STARE' DOWN 'PPL SMUGGLERS'
+YOU PAID THEM TO GO AWAY!
+2 men died many traumatised children abused. #auspol"
+9879,traumatised,,Watching Casino Royale. She's clearly traumatised! Sucking her fingers work! Right?! #JamesBond
+9882,traumatised,"Halifax, Nova Scotia, Canada",@michellemccann we had that last night - lightning for 2 hours! Poor Dawg traumatised. Ended up huddling in basement. @David_Williamso
+9891,traumatised,"Bideford, England",@Tanishaa_ I have never watched it until now.. actually traumatised! ??
+9892,traumatised,,Why is the story about Kids Company about POLITICIANS over a measly å£3million? Why is it not about THE KIDS??? Our traumatised children?
+9893,traumatised,Glasgow,@lisajdavidson1 @Nataliealana87 @WestEndShiv I'm already traumatised by my first full day at the Fringe
+9895,traumatised,Plymouth,Still traumatised at the sight of an old woman throwing her shit out the window ?????
+9899,traumatised,Unauthentically British UK,for an extra month I was literally traumatised that couldn't been me. But I do a recap in a pool every now & again for safety purposes.
+9900,traumatised,,sunakawa is gonna be like traumatised forever i think lol
+9902,traumatised,Free and democratic Britain,@lovestheworld55 @SemiMooch so that's why you're now willing to believe nonsense - you were traumatised? Sorry to hear but bible still fake
+9903,traumatised,London,@DanDoherty_ @TomCenci @HRWright too traumatised to ask why.....
+9904,traumatised,"Portsmouth, UK",@ibAUTUMN I'm that traumatised that I can't even spell properly! Excuse the typos!
+9908,trouble,,@TitusOReily He's not responsible for the trouble urine!
+9913,trouble,Southeast Michigan (HOTH),Pissed something off in the wood pile. Pulling pieces out and I get a small hiss and a series of low clicks for my trouble.
+9914,trouble,"City of Bacoor, CALABARZON PHL",RT MMDA: ADVISORY: Stalled Bus at EDSA Service Road Cubao SB due to mechanical trouble as of 7:53 AM. 1 lane occupied. MMDA T/C on site. TÛ_
+9917,trouble,SeattIe,a room full of adults going ÛÏboonew boonewÛ along with the ÛÏmake it doubleÛ part of Pokemon PLÛªs shitty midi of Prepare For Trouble
+9922,trouble,,RT ADVISORY: Stalled Bus at EDSA Service Road Cubao SB due to mechanical trouble as of 7:53 AM. 1 lane occupied.Û_ https://t.co/HRNZKU66mm
+9924,trouble,"Lawrence, MA",since it is a righteous thing with God to repay with tribulation those who trouble you https://t.co/YLTKaWHf9o
+9926,trouble,Lansing ?? Ypsilanti ,Must black folks don't wanna stir up trouble .. Which in turn causes them to be silent on the injustice in the wrld. https://t.co/a5bKmsasjE
+9927,trouble,Michigan,If all men sauntered like Fred I think I'd be in trouble. #ShallWeDance #SummerUnderTheStars #TCMParty
+9928,trouble,Your screen,"Photo: 22 year old Yahoo Boy in Trouble for Attempting to Bribe EFCC Operatives
+see... http://t.co/ObcHpSMHDO"
+9929,trouble,,Sitting in my room the whole time in vegas to stay out of trouble
+9936,trouble,??9?,Mouna gonna get me in trouble
+9939,trouble,"Melbourne, Australia",@ModCloth having some trouble with your site- keep getting this every time I log in? http://t.co/dnKkYiFsvT
+9947,trouble,,#BestSeller The trouble in one of Buffett's favorite sectors http://t.co/4wa9cMs3Cz
+9951,trouble,Kansas ,@corcoran30 @kmurphalurph when these two are in the building laughs and trouble haha.. GreatÛ_ https://t.co/ds7ms8g1yR
+9954,trouble,Singapore,Click Share in minute info-technews The Trouble With RedditÛªs Content Policy Update | Re/code Û_ http://t.co/wS0xohNb7v
+9956,trouble,,I had trouble breathing while listening to kian singing omg
+9957,trouble,,Today we played mini golf in the rain I was called pretty by a creepy old guy and pretended we didn't speak English to get out of trouble
+9959,tsunami,IG : Sincerely_TSUNAMI,@AshNiggas tink ...
+9962,tsunami,,I liked a @YouTube video from @team0epiphany http://t.co/kui6Ig2EpZ GTA 5 Mods - NEW TSUNAMI MOD GAMEPLAY! HUGE WAVES SHARK HUNTING
+9964,tsunami,,omfg Johnny tsunami commercial
+9966,tsunami,rest easy angel @datboiiharri.,I just wanna food but of course I had to get caught in this fucking tsunami. ????
+9968,tsunami,,TheDIYHacks: RT Illusionimagess: A tsunami cloud. http://t.co/H6t4x1EVTx
+9969,tsunami,in the Word of God,@TerriF77 GodsLove & #thankU beloved sister Terri for RT of NEW VIDEO http://t.co/cybKsXHF7d The Coming Apocalyptic US Earthquake & Tsunami
+9970,tsunami,in the Word of God,@DArchambau THX for your great encouragement and for RT of NEW VIDEO http://t.co/cybKsXHF7d The Coming Apocalyptic US Earthquake & Tsunami
+9975,tsunami,,When tsunami says your order will take 40 minutes and you placed your order when you were on your way ????
+9977,tsunami,SIUC | 618,She kept it wet like tsunami she think she saw the titanic I get it hot like wasabi
+9981,tsunami,Okinawa,Oh itÛªs a soccer ball? I thought it was the head of a melting snowman.
+9993,tsunami,,I liked a @YouTube video http://t.co/18aAsFMVbl Call Of Duty Ghosts Walktrough Part-8 Tsunami!
+9996,tsunami,"Evansville, IN",I think Tsunami has hit the wall. Dang... #STLCards
+9997,tsunami,,@TA7LPlays @Twitch_Bang @Maliceqt @Zelse007 @RhyareeGaming @dougiedabandit sorry what you say theres a tweet tsunami happening
+9999,tsunami,,This high-tech sphere can be the key to saving lives during a tsunami. What would you pack in it? http://t.co/KwlpFqRBVp
+10002,tsunami,"Louavul, KY",Drunk #BBMeg! ??????
+10007,tsunami,http://t.co/mOY6lmu,Help support the victims of the Japanese Earthquake and Pacific Tsunami http://t.co/O5GbPBQH http://t.co/MN5wnxf0 #hope4japan #pray4japan
+10015,twister,,"'How many sons would a parson parse if a parson could parse sons?'
+
+-popular tongue twister among religious woodchucks"
+10019,twister,"Quezon, Philippines",Twister hits 4 villages in Quezon province - http://t.co/ehJv0gvo47 http://t.co/pzJcRNrBSr #Quezon #news
+10022,twister,boca raton,@lizjillies it's such a tongue twister
+10024,twister,,Seriously though..... Otto Reggie Twister and Sam was living that good life on Rocket Power.
+10026,twister,,Playing twister with a broken arm wasn't the smartest decision I've made recentlu
+10033,twister,Flat Rock,when you get stuck on the wicked twister and they have to call maintenance to get you out.. http://t.co/7iFPMFssMU
+10043,twister,,@kady I would pay to watch the leaders play Twister.
+10046,twister,,@bamagaga Best part of today? Your song I'M TO BLAME by @KIPMOOREMUSIC is about to play on 101.9 The Twister! http://t.co/sKV3O4Teni
+10051,twister,The Internet,Work-related Dick Twister That Happened Today http://t.co/oJ5cUBshGz
+10053,twister,,The shortest and hardest tongue twister is: 'Toy Boat' (Try saying it five times fast).
+10062,typhoon,"Bengaluru, India",Struggling to Return to Life: Makurazaki Typhoon on September 17 1945 killed thousands. http://t.co/fmp0JsH4wX http://t.co/X3TotYZAZe
+10063,typhoon,ID,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/Hni4v2ZUk3
+10065,typhoon,Breaking News,#Map: Typhoon Soudelor's predicted path as it approaches Taiwan; expected to make landfall over southern China by Û_ http://t.co/PgD7UXtVGg
+10068,typhoon,,Obama signs disaster declaration for Northern Marians after typhoon hits US territory http://t.co/0IPaVKJgDC
+10078,typhoon,,Typhoon Soudelor heads for Taiwan http://t.co/Pg0BhL6FQC #wtf #news #tv #fun #funny
+10086,typhoon,"London, UK",UK WEATHER ALERT: Remnants of Asian super typhoon Soudelor to cause VIOLENT ... - http://t.co/JXOcfzKyw7 http://t.co/sZx1v2mk8K
+10094,typhoon,,#Trending #Viral Spectacular satellite view of Typhoon Soudelor @rumblevideo http://t.co/VkF0gkZ9N3
+10095,typhoon,,"#WorldNews #World
+ Saipan Has No Water Electricity in Typhoon Aftermath - Voice of America - World - Google News.. http://t.co/5sUdXgNdA3"
+10096,typhoon,Edmonton,Striking views of Super Typhoon Soudelor as it tracks toward Taiwan China http://t.co/hsjp6Hoffe
+10097,typhoon,New York ,Saipan has no water electricity in aftermath of typhoon http://t.co/UBAk5uOI48
+10103,typhoon,"Indonesia
+",Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/a1MoeJxqyA
+10104,typhoon,United States,#abc Obama Declares Disaster for Typhoon-Devastated Saipan http://t.co/ueHFZTeYHu #international #news
+10108,upheaval,,@SushmaSwaraj Am sure background check of the child's details are done before the kid gets into another upheaval.
+10122,upheaval,,Where bottle cherry timbering facilities upheaval entryway?: fJiZzTxK
+10123,upheaval,BHUBANESWAR,@ArvindKejriwal Bharat is showing silent political upheaval and change to fulfill the wishes of the people. Retired DGM NABARD
+10128,upheaval,No,MGS4 came out during a time of great upheaval in my life and itÛªs very odd that MGSV is coming and itÛªs also when things are getting iffy
+10131,upheaval,,Bat four reasons en route to upheaval versus internet buzz value: pVDRDLJvc
+10133,upheaval,#Bitcoinland,? http://t.co/5J8vHUXzrp #Ancient Mayan Tablet with Hieroglyphics Honors Lowly King #livescience #future Û_ http://t.co/n3aQXoMubu
+10134,upheaval,,Permutable site conspiracy up-to-the-minute upheaval: QWkD
+10135,upheaval,,For THIS FAN this was 1 upheaval too many! Done with this garbage of a show! @ABCNetwork @shondarhimes @EllenPompeo https://t.co/hq5TDxKqHB
+10145,upheaval,"Andhra Pradesh, India",Life needs quality and a certain sense of security. Being with a person you can't trust can only cause stress and emotional upheaval.
+10148,upheaval,"Books Published, USA","Medieval Upheaval (Hardy Boys: The Secret Files)
+Franklin W. Dixon - Aladdin. http://t.co/Yb7ijKtlnB"
+10154,upheaval,"Surrey, BC",This week we received the sad news of our friends daughters cancer prognosis. This is the second upheaval in this... http://t.co/tpOptWMWFR
+10155,upheaval,"Bentonville, Arkansas",This Is How Retailers Intend to Survive Upheaval http://t.co/WOcpJi5uq1 #retail #consumers http://t.co/JelXFtOpu5
+10158,violent%20storm,Philadelphia; World War I,@RoxYunkFalls August 4 1915 http://t.co/jjNS0YjaLA Violent storm strikes city Manayunk flooding and damage. Sports & War news
+10160,violent%20storm,,Dramatic Video Shows Plane Landing During Violent Storm http://t.co/YX8OdrrINr
+10161,violent%20storm,,@hippieXox If the word 'violent' comes to mind it's food poisoning. Nothing you can do but weather the storm about 24 hours. :(
+10162,violent%20storm,Shanatic/GGian/SRKian,And Kolkata is struck by a Cyclonic Storm. Sumthng big is gonna happen 2day evng. Heavy rains nd a violent storm approachng. God help us.
+10165,violent%20storm,Chicago,More Severe Weather Heads Toward Chicago Area: A brief violent storm swept through the Chicago area Sunday af... http://t.co/JWSLLsuKjg
+10166,violent%20storm,United Kingdom,Terrifying POV footage captures violent landing from inside a passenger jet during a storm in Amsterdam http://t.co/TyAOYEpelz
+10167,violent%20storm,,[WP] You work on the top floor of a hotel when suddendly a violent storm comes the news proclaims your city in a Û_ http://t.co/S6Rc7dbAL1
+10170,violent%20storm,"Edmonton, Alberta",RT @calgarysun: Sun photographer Stuart Dryden spotted this vortex spun off a violent storm in Sylvan Lake. #abstorm http://t.co/w0BZ0JNGvB
+10178,violent%20storm,,Holy crap! BRAVO Sir! Amazing! Dramatic Video Shows Plane Landing During Violent Storm http://t.co/xB0bw8h8Ur
+10180,violent%20storm,Worldwide,"Violent Forces Radio: Now Playing Torture - Storm Alert
+TuneIn Player @ http://t.co/XsSgEdSbH4"
+10181,violent%20storm,,Circus tent collapses in violent storm killing 2 kids in New Hampshire http://t.co/j0saXEKBTa
+10185,violent%20storm,"Calgary, AB",Storm is here! Violent winds and pounding rains in Evergreen. #yyc
+10188,violent%20storm,"Harvard Square, Cambridge, MA",Stay inside for the next little while kids. We're having a bit of a violent storm right now. -kjc
+10190,violent%20storm,missouri USA,Watch: Violent Storm Causes Deadly Accident at New Hampshire Circus http://t.co/jpPiR3ZzKA #GMA http://t.co/nV5GCDpIBA
+10196,violent%20storm,Worldwide,"Violent Forces Radio: Now Playing Axegressor - Psalm Before the Storm
+TuneIn Player @ http://t.co/XsSgEdSbH4"
+10200,violent%20storm,,#calgaryweather It would be nice if they would fix radar before another violent storm Uninformed citizens dangerous #YYC #yycweather
+10205,violent%20storm,"Greater Vancouver, British Columbia",2012#Shell's 250-foot-tall drilling rig broke loose from a towline&drifted out of control during violent winter storm #incompetent #shellno
+10211,volcano,Herbville,http://t.co/16EClWrW84 Asics GT-II Super Red 2.0 11 Ronnie Fieg Kith Red White 3M x gel grey volcano 2
+10216,volcano,New York,Force Factor VOLCANO 120 Capsule Brand New - Full read by eBay http://t.co/HewutDLDqh http://t.co/8etXXzBdua
+10219,volcano,probably watching survivor,The sunset looked like an erupting volcano .... My initial thought was the Pixar short Lava http://t.co/g4sChqFEsT
+10221,volcano,"Richmond, VA & Bristow, VA",@CatholicMomVA Or take away his ring & throw it in a volcano...
+10225,volcano,"Algonquin, IL",The highlight of my day has been playing with my raw volcano humidifier. #sicklife http://t.co/teDRu4hg3i
+10227,volcano,Worcester,@Jesssssssee @eevans17 The Illuminati: The Yellowstone Super Volcano Conspiracy http://t.co/wymv9cYxzK
+10228,volcano,,idgaf fly into a volcano
+10230,volcano,"Sawangan 1, Central Java",?? @ KETEP VOLCANO CENTRE ketep PASS https://t.co/IdBnKxu80L
+10232,volcano,Planet Earth,Learning from the Legacy of a Catastrophic Eruption - The New Yorker http://t.co/y8YqPBE4t9
+10233,volcano,"Hawaii, USA",#USGS M 1.9 - 5km S of Volcano Hawaii: Time2015-08-06 01:04:01 UTC2015-08-05 15:04:01 -10:00 at epicenter... http://t.co/meVvkaXcdE #SM
+10235,volcano,"Kingston, Jamaica","CLUB GOING UP MIXTAPE (RNB EDITION) 2015 ?? BY DJ VOLCANO X STARZ TEAM
+
+DOWNLOAD: https://t.co/DpBFuU2GD6"
+10238,volcano,Desde Republica Argentina,#Sismo M 1.9 - 5km S of Volcano Hawaii: Time2015-08-06 01:04:01 UTC2015-08-05 15:04:01 -10:00 at epicente... http://t.co/K28mgWTZcV #CS
+10240,volcano,,Quake: M 1.9 - 5km S of Volcano Hawaii
+10242,volcano,"Baker, Louisiana",what's the hottest thing you've ever seen..fire?..the sun?..a volcano? or this? http://t.co/2GLdsHRaiI
+10248,volcano,,The Architect Behind Kanye West's Volcano - New York Times http://t.co/3QJUExX0Y0
+10254,war%20zone,,Just watched Punisher: War Zone. IDK why everyone hates it. It is basically the best possible movie you could get out of Punisher
+10257,war%20zone,Miami,My new sounds: War Zone https://t.co/hNXRfqRk3P on #SoundCloud
+10261,war%20zone,Enemy of the state ,Sammy is here in this war zone. Jamal spoke to me on the phone. Now my wife is next to speak to me ...what else can> http://t.co/2CppfprxoG
+10262,war%20zone,baltimore maryland,@thelovatoagent omg i feel like i am in a war zone
+10266,war%20zone,"Wellington City, New Zealand",I think it's time for a cup of tea and a scone before I tackle the war zone that is is my bedroom. I wonder how many condom packets Ill find
+10267,war%20zone,MDS af ?,Saipan looks like a war zone though
+10271,war%20zone,Canton Ohio,T Shirts $10 male or female get wit me. 2 days until its game changin time. War Zone single will beÛ_ https://t.co/Z0poYR096J
+10277,war%20zone,,Um OK '@dandre_5: Sundays during football seasonfrom about 9 am - 11 pm women shouldn't even log onshit be a complete war zone'
+10279,war%20zone,In Range ,Just trying to find my my peace in a Zone of war
+10281,war%20zone,Sky's The limit (B.I.G) ????,Twitter is going to be a war zone today https://t.co/1QHNqCZvod
+10282,war%20zone,Canada,The Resistance wages guerrilla warfare against KPA forces in the Red Zone the war-torn outskirts of... http://t.co/WFxAwQvvjr
+10285,weapon,"Monroe,LA",When your friend getting whooped and you running out of weapon options ?????? #TeamDuval #T... (Vine by TerrellT) https://t.co/Sf9Ufv7w6C
+10292,weapon,???????????,3 Stars in 212 seconds! Level 43 Surgeon. Weapon of choice: Neutron Rifle. #callofmini #doubleshot
+10298,weapon,icon: cheese3d,Yo that guy changed his weapon mid battle how did he do that?
+10300,weapon,,fun fact: every rapid-fire weapon in the game is a hard counter to the slosher and the splattling
+10309,weapon,PNW,Slosher is a fucboi weapon
+10311,weapon,????????,"No more war.People need no any weapon.
+We need the world of peace. https://t.co/DhRvYtjlFL"
+10312,weapon,,#AskConnor there's a zombie apocalypse. the item to your right is your weapon. you're either screwed or you're gonna live.
+10319,weapon,,"True strength is forgiveness. Love the most powerful weapon. .@vickysuewrites' Broken Circle'
+
+#giveaway #boyxboy http://t.co/Zgc3EsLNPS"
+10324,weapon,"Pune, Maharashtra India",On 70th anniversary of #Hiroshima bomb it is important to learn from history and ban this weapon.
+10326,weapon,,@KnaveTBE lol. Not the class but the class of weapon
+10328,weapon,??????????????,"@sindy642498
+I'm really glad to hear thatÛ_;;
+Nowlike usthe world is truely connected.
+I want truely peaceful world without any weapon!"
+10343,weapons,"New York, NY",@JPens4Real21 Geno has weapons now I'll give him the benefit of the doubt this year. I'm just not a huge believer. Still not mature enough.
+10346,weapons,"( ?å¡ ?? ?å¡), ",@DANNYonPC @YouTube Its engineer only again so 2 1000+ rpm weapons = no thanks
+10347,weapons,United Kingdom,Helpful Tips For Nuking An Asteroid http://t.co/GwRsga9uJV
+10353,weapons,,I'm all in favor of keeping dangerous weapons out of the hands of fools. Let's start with typewriters.
+10354,weapons,Global,Security experts report that the only way to keep Iran 'honest' and stop her march to nuclear weapons is by... http://t.co/DGnbUsfXkw
+10356,weapons,,"Aug 3 1915ÛÓKILL 10000 WITH ROCKS.; Italians Make Good Use of Nature's Weapons -- Excel with Bayonet.
+http://t.co/ck1mMvHU0T"
+10357,weapons,,@deray @marstu67 Cop Benefits:Great Salary Free Car Free Rent Free Food.Free Weapons License to Kill & Rape with Impunity.
+10362,weapons,,"??Water fight??
+Penn park 6pm
+ BYOW
+(Bring Your Own Weapons)"
+10363,weapons,Tokyo,Abe proposed a new plan for abolishing nuclear weapons. Yesterday his defense minister made clear nukes are fine. http://t.co/A6IR8rKuwS
+10370,weapons,,NAVY SAYS LT CMDR WHO FIRED SIDEARM IN DEFENSE DURING NOSC CHATTANOOGA TERRORIST ATTACK WILL NOT FACE CHARGES... http://t.co/vCcDKC4qt2
+10373,weapons,,Any attempt to sell weapons to #Nigeria is an attempt to upgrad #Bokoharm army #USA must know this now @UN
+10386,whirlwind,"?orth, SG. ",Whirlwind full of bombarded kunais.
+10388,whirlwind,,@BarstoolBigCat what a whirlwind.
+10389,whirlwind,,I've officially been a St. Louisan for one full year. What a crazy awesome overwhelming whirlwind year it has been. Here's to another!
+10391,whirlwind,,Missing Malaysian airplane: Debris was planted ÛÒ Families News - WhirlWind News http://t.co/bLd0nHKzbh
+10397,whirlwind,GARRUS?,Warcraft has always been this weird referential whirlwind to itself and other things
+10400,whirlwind,Sheffield.?,@Chelsea_Rosette ah bless ya. Not too bad. My life's been a bit of a whirlwind the last two weeks! Got a cold too that won't shift ?? #sexy
+10403,whirlwind,"Torrance, CA",Join me on FB for #Sneak #Peek Friday http://t.co/3DK5zyYQ1F for my upcoming #novel To Reap a Whirlwind #fiction #historical #wip #amwriting
+10404,whirlwind,Northwest Jersey,WAS Times: PawSox owners public return from whirlwind trip to Durham http://t.co/07nKMO7VaS
+10408,whirlwind,Japan,I liked a @YouTube video http://t.co/a5YTAw9Vih S.O.S. Rona Guide - The Red Whirlwind
+10417,whirlwind,140920-21 & 150718-19 BEIJING,"[VID]150806 Luhan From Luhan Studio Channel on YOUKU Update
+
+http://t.co/W7yeZkQlCJ http://t.co/C0QWZ0IshR"
+10425,whirlwind,"Springfield, MO",{{ whirlwind romance dress | in-store & online }} #freshoutofthebox #getitbeforeitsgone #under50 #newnewnew... http://t.co/8BUTsC4ZyN
+10435,wild%20fires,Toronto,#HarperANetflixShow Blazing Saddles (a show about wild fires in Alberta)
+10437,wild%20fires,Welt,?? #BREAKING: massive wild- and field fires reported throughout Germany! The most fires are in eastern #German http://t.co/4zSIy7EO2O
+10438,wild%20fires,,We all complain about PA but atleast we don't have those wild fires taking our homes like north Cali or the floods in Florida right now
+10440,wild%20fires,YYC,my wife has opted to take holidays & historically since we met @lanahillman gets special treatment her bonfires can't start wild fires-RAIN!
+10442,wild%20fires,,Like blazing wild fires singing Your name!
+10447,wild%20fires,,NetNewsLedger Wild Fire Update ÛÒ August 4 2015: THUNDER BAY ÛÒ WEATHER ÛÒ ThereåÊwere no new fires confirmed by t... http://t.co/JflxgEmBdA
+10452,wild%20fires,,@myralynn24 Becuase it can cause property damage and cause wild fires
+10453,wild%20fires,New york,Hey @Macys ! My moms house burned down in the CA wild fires & I bought her an e gift card to buy her CLOTHES (cont) http://t.co/sWdjnypCXK
+10454,wild%20fires,USA,California wild fires...clearly caused by global climate change and excess CO2!!!?
+10459,wild%20fires,"North Tonawanda, NY",California wild fires blow my mind every time
+10460,wild%20fires,Where e'er the mood takes me,@MrRat395 Are those wild fires getting anywhere near you?
+10463,wild%20fires,Colorado,Stampedes and fires brought him home; can her love make him stay? TAME A WILD HEART #audiobook http://t.co/2dPKqAFtbr #BYNR @BeingAuthor
+10465,wild%20fires,,Go home California you're drunk. Natural selection has taken affect. Debt extreme wild fires water supply problems. You fail as a state.
+10469,wild%20fires,Montana/North Carolina,@CBS evening news covers tent collapse wild fires NO mention of worst Planned Parenthood video to date #Narrative
+10474,wild%20fires,,WILD FIRES! http://t.co/EgrMdkXpOi
+10475,wild%20fires,,Wild Fires In California Continue To Burn - http://t.co/nKcmib9WL0 http://t.co/CpMGBWVDXM
+10476,wild%20fires,FRM JERZ LIVING IN DADE COUNTY,one of them wild fires in cali or something or in the mid west or where ever they show up..shit dont pop up around me
+10477,wild%20fires,"Brantford, Ontario",@JacobHoggard @therealmattleaf it's so sad out there in BC all the wild fires. Hope u are safe.
+10480,wild%20fires,,when there's 35 wild fires in the US and 21 of them are in California....AND we're in a drought.....this state is so sad
+10491,wildfire,Colorado,11:57am Wildfire by The Mynabirds from Lovers Know
+10493,wildfire,USA,Finger Rock wildfire grows to 500 acres #Tucson http://t.co/zSXGEI1Nxf
+10494,wildfire,,#chattanooga The Latest: California governor headed to site of wildfire http://t.co/D6E7IICW5W
+10495,wildfire,,About to get it with the babes of #wildfire and @taviiikenney of course!!
+10497,wildfire,"Tucson, Arizona",Here's a quick timelapse I made of the Finger Rock Fire last night from about 9PM - 1AM. Check it out! #fingerrockfire #wildfire #catalinas
+10501,wildfire,"Seattle, WA",#WAwildfire in #chelan? Wolverine fire results in evacuation. http://t.co/yePlnZPoWu
+10504,wildfire,West Virginia ,can't eat a wildfire chicken salad without thinking of / missing @Alynacarol ??
+10507,wildfire,,Cherokee Road and Road 22 (Three Sisters Wildfire): There are two roads closed to the general public: ... http://t.co/WwnL8FvfMM #IDFire
+10509,wildfire,"California, USA",As California fires rage the Forest Service sounds the alarm about sharply rising wildfire costs http://t.co/ht8FyiMJlR
+10510,wildfire,,Be careful out there. http://t.co/KoBavdEKWn
+10512,wildfire,"408 N. Western, Wenatchee, WA ","Wolverine Fire Update - Thursday August 6 - 9:00 Am
+
+Incident: Wolverine Fire Wildfire
+Released: 41 min. ago... http://t.co/8WDTTzpTXH"
+10514,wildfire,,Cooler weather helps crews battling state wildfire.. Related Articles: http://t.co/15fHVIi9Qp
+10526,wildfire,"Seattle, WA",Wildfire near Columbia River town is 50 percent contained - http://t.co/yTPiPXpqr9 http://t.co/HCUQ6jpBtL
+10528,wildfire,,"smHRN mhtw4fnet
+
+Crews gaining on huge Northern California wildfire - CBS News"
+10530,wildfire,,Rocky Fire #cali #SCFD #wildfire #LakeCounty https://t.co/3pu0000v5o
+10531,wildfire,,This machine really captured my attention. #helicopter #firefighting #wildfire #oregon #easternoregonÛ_ https://t.co/eKt456jY1s
+10532,wildfire,Get our App,Forest Grove grass fire sparked by tractor quickly contained - KATU http://t.co/FMbcocS79u
+10538,windstorm,"28.709672,-97.376514",San Patricio ÛÓ Windstorm insurance reform key for coastal homeowners: PORTLAND ÛÒ State Rep. J.M. Lozano spoke ... http://t.co/GQySVKrAGi
+10539,windstorm,"Washington, D.C.",Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/SDZLVBiFbN
+10542,windstorm,Houston,New roof and hardy going up...Windstorm inspection tomorrow.. http://t.co/3XMLQRpNQR
+10547,windstorm,New York,Insurance News:Texas Seeks Comment on Rules for Changes to Windstorm Insurer
+10549,windstorm,"Pasadena, TX",TWIA board approves 5 percent rate hike: The Texas Windstorm Insurance Association (TWIA) Board of Directors v... http://t.co/NvxLJDsNkX
+10556,windstorm,,GLORIA JONES - VIXEN / WINDSTORM (2IN1) CD 20 TRACKS MARC BOLAN http://t.co/E3cAymmIcN http://t.co/eRzcXloPDL
+10569,windstorm,"Texas, USA",@t_litt44 I seen you that one day look like you went threw a windstorm ??
+10572,windstorm,Canada,Great time group camping at Presqu'ile with family&friends.Lots of fun;not much sleep #PQPHistoryWeekend #windstorm http://t.co/0tYkaZyQpF
+10577,windstorm,,Texas Seeks Comment on Rules for Changes to Windstorm Insurer: The Texas Department of Insurance is seeking pu... http://t.co/NGF9n8Jquu
+10579,windstorm,Rhode Island,A few more photos from this mornings windstorm. We've never seen anything like it! #rhodeisland #warwick
+10586,wounded,Narbin city ,Police Officer Wounded Suspect Dead After Exchanging Shots http://t.co/e4wvXQItV4
+10594,wounded,??,"The South Korean army wounded 44 persons' Takeshima's Japanese fisherman and occupies the island.
+http://t.co/mJCXgKU8Yt"
+10595,wounded,"Kansas City, MO",Gunmen kill four in El Salvador bus attack: Suspected Salvadoran gang members killed four people and wounded s... http://t.co/LZWRONbTmi
+10597,wounded,"?? Newport , RI ??",You still acting like you were the one wounded. Didn't you do the stabbing?...
+10602,wounded,,#Dime_Miloko Officer Wounded Suspect Killed in Exchange of Gunfire: Richmond police officer wounded suspect killed in exchange of gunfire
+10604,wounded,,Police officer wounded suspect dead after exchanging shots: A Richmond police officer was wounded and a suspe... http://t.co/FzQPiQeCHB
+10614,wounded,Philippines,"Pope Francis talks about WOUNDED FAMILIES
+http://t.co/m1RfBPODI9"
+10617,wounded,,@lordjewcup @helloimivan wounded warrior
+10618,wounded,"Chicago, Illinois ",Man seriously wounded in Auburn Gresham shooting http://t.co/qPsSbAfSuL #Chiraq
+10619,wounded,Singapore,Suspected Salvadoran gang members killed four people and wounded seven more on Wednesday in an attack on a bus as it travelled down a ruralÛ_
+10624,wounded,SWMO,Officer Wounded Suspect Killed in Exchange of Gunfire http://t.co/HHSjnAVHUA
+10633,wounded,??????,'Police Officer Wounded Suspect Dead After Exchanging Shots' http://t.co/guNq7ZTUn4 #????_?????
+10634,wounded,Mii Facebook,Police Officer Wounded Suspect Dead After Exchanging Shots: Richmond police officer wounded suspect killed a... http://t.co/YIKQRqczVZ
+10635,wounds,,He was crushed for our iniquities; the punishment that brought us peace was upon him & by his wounds we are healed. -Isa 53:5
+10638,wounds,Southern Cali,@bkanioros Lizeth and I tried over and over again to fix our relationship it never worked bk you cannot heal those wounds I love you for
+10639,wounds,626 - 702,Love wounds
+10642,wounds,"Gauteng Heidelberg,Ratanda",'@GoogleFacts: Wounds heal faster if you lick them. Tears also help them heal as well.' I know right even thou it seems stupid when lickin
+10643,wounds,"Back of the beyond, Lesotho","the wounds of honor
+ are self-inflicted"
+10645,wounds,CLT via NOLA via MO via MN,ME: gun shot wounds 3 4 6 7 'rapidly lethal' would have killed in 30-60 seconds or few minutes max. #kerricktrial
+10646,wounds,India,@Cash7Nigga whoa. Insomniac. Why don't you try to get some sleep. Sleep heals all wounds. Food too ! Night :)
+10649,wounds,the beautiful Northwest (USA),Do You Let Your Emotional Wounds Fester? http://t.co/yDWhMgIMOE ? Powerful story andåÊword picture. via @forgivenwife
+10652,wounds,Washington D.C. / Istanbul,Israeli military shoot Palestinian who injured 3 in West Bank car attack http://t.co/P9DCnuLODR via @YahooNews
+10653,wounds,Vancouver ,@WorldRunners @RunningRoom Day 3&my wounds are looking much better. Running road rash. #summer #injury #offdishduty http://t.co/aGkWKaqgOS
+10654,wounds,K-Town ,Time heals all wounds. And if it doesn't you name them something other than wounds and agree to let them stay. ????
+10661,wounds,#Kashmir,2 Policemen receive bullet wounds Reports indicate 6-7 armed men attacked a police post.
+10664,wounds,,Palestinian rams car into Israeli soldiers wounding 3 http://t.co/n79BMXQKlg #EMM
+10668,wounds,sam's town,and the salt in my wounds isnt burnin any more than it used to its not that i dont feel the pain its just im not afraid of hurting anymore
+10670,wounds,,When and how does a character recover fromåÊwounds? http://t.co/ohhkuHtjXm
+10674,wounds,"Dallas, TX",What they (dentists) don't tell u is how much ur mouth will be in pain when the numbing wears off because of the puncture wounds in ur gums.
+10683,wounds,worldwide,Our wounds can so easily turn us into people we don't want to be and we hardly see it happening
+10694,wreck,"atl, ga",i'm sitting in the parking lot waiting to go into therapy and i'm crying and an emotional wreck and i don't want my therapist to know ????????????
+10697,wreck,"San Antonio, TX",Last week we had a blast hosting Dinner & a Movie Night with 'Wreck-It Ralph' on @FtCarsonPAO! @carsonmwr #TBT http://t.co/tUYPxEoBQa
+10699,wreck,"Jackson, MS",Now that IÛªve figured out how to get my music in my rental car I can take a night drive to nowhere tonight. Hopefully without a wreck.
+10701,wreck,probably in hell ,i'm an emotional wreck watching emmerdale fml
+10703,wreck,"Columbus, OH",Interesting in watching a train wreck while taking acid kind of way https://t.co/kM08qiWW4g
+10713,wreck,,@DukeSkywalker @facialabuse you should do a competetion between @xxxmrbootleg & #ClaudioMeloni (ultimate throat penetrator) to a wreck off.
+10714,wreck,,Man faces manslaughter charges following fatal Sunday wreck | AL.c.. Related Articles: http://t.co/5xrFhdXTvX
+10716,wreck,St. Petersburg. Fla.,*is a wreck* *gives ppl lifestyle advice*
+10717,wreck,,I'm an emotional wreck someone hold me until they upload the damn video #whatstheimportantvideo
+10719,wreck,Inwood ontario,I added a video to a @YouTube playlist http://t.co/wYtu7vIwsj Burnt Black - Nervous Wreck
+10725,wreck,would rather be in my room,and not a wreck of uneven layers https://t.co/Y0WE0wXQCp
+10728,wreck,Philippians 4:13,Dj d wreck cut the beat
+10734,wreck,"Pennsylvania, USA",@Herologist i know right? It's a train wreck. You can't believe it's happening but you can't look away.
+10738,wreckage,India,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM
+10740,wreckage,"Mumbai, Maharashtra",Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/cUrJAT1BqI
+10742,wreckage,,Wreckage 'conclusively confirmed' as from MH370: Malaysia PM http://t.co/Se1QkNPltS | https://t.co/DnhRviV1dJ
+10756,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/O8sTW4YN8R
+10757,wreckage,,#science Now that a piece of wreckage from flight MH370 has been confirmed on R̩union Island is it possible t... http://t.co/cKQ7tOE82u
+10758,wreckage,India,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM
+10761,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/1RzskdRrDk
+10762,wreckage,Canada,TOP STORY: wreckage from #MH370 officially confirmed. @janisctv reports on the critical clue from a tiny island. http://t.co/hlWw2P5k9o
+10773,wreckage,,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM http://t.co/MN130C4e2D via @ndtv
+10778,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/mzB0MKuUo7
+10781,wreckage,our galaxy,RT @australian Debris found on an Indian Ocean island confirmed to be from flight #MH370. http://t.co/gY9MrSl6x2
+10791,wrecked,Sunny Southern California,Cramer: Iger's 3 words that wrecked Disney's stock http://t.co/4dGpBAiVL7
+10792,wrecked,"Plymouth, England",Almost *wrecked* my van the other day because of this guy (yeah I brake & also care for animals ~ get used to it)! https://t.co/8ZaHavmtT6
+10796,wrecked,Deep in the heart of LibLand,'What manner of human being would parcel out a baby as though it were a wrecked car in a junk yard? TheÛ_' ÛÓ dtom2 http://t.co/lj6lzo4isX
+10797,wrecked,,@Nathan26_RFC thought you said Saturday night there and near died lolol you'll be wrecked!!
+10801,wrecked,"Canada,Ontario",I just wanna ease your mind and make you feel alright.????
+10804,wrecked,Love Reiss,@yakubOObs think he deactivated because his notifications are aids after tesco wrecked him lol
+10806,wrecked,Seattle Washington,RT CNBC '3 words from Disney CEO Bob Iger wrecked Disney's stock says Jim Cramer: http://t.co/f0texKsqhL http://t.co/ilySLaTMgI'
+10807,wrecked,Acey mountain islanddåÇTorontoåÈ,Smackdown tyme this should put me in a good mood again since it got wrecked smh
+10816,wrecked,los angeles,@thrillhho jsyk I haven't stopped thinking abt remus slumped against the bathroom door all day I was wrecked ??????????
+10820,wrecked,"Brussels, Belgium",@stighefootball Begovic has been garbage. He got wrecked by a Red Bull reserve team and everyone else this preseason
+10828,wrecked,,Wrecked today got my hattrick ????
+10836,,,#Ebola #EbolaOutbreak Ebola Virus: Birmingham Ala. Firefighters Quarantined After Possible Exposure Officials Say http://t.co/tjpYlU9fOX
+10838,,,Malaysian PM confirms debris is from missing flight MH370 http://t.co/pfAvW5QyqE
+10845,,,Officials: Alabama home quarantined over possible Ebola case - Washington Times
+10856,,,See the 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released: Harun Ìàekdar ... http://t.co/hKuT5mSdtP @MsOreo_
+10857,,,To conference attendees! The blue line from the airport has DERAILED - please look into taking a taxi to the hotel! See you soon!
+10858,,,The death toll in a #IS-suicide car bombing on a #YPG position in the Village of Rajman in the eastern province of Hasaka has risen to 9
+10861,,,EARTHQUAKE SAFETY LOS ANGELES ÛÒ SAFETY FASTENERS XrWn
+10865,,,Storm in RI worse than last hurricane. My city&3others hardest hit. My yard looks like it was bombed. Around 20000K still without power
+10868,,,Green Line derailment in Chicago http://t.co/UtbXLcBIuY
+10874,,,MEG issues Hazardous Weather Outlook (HWO) http://t.co/3X6RBQJHn3
+10875,,,#CityofCalgary has activated its Municipal Emergency Plan. #yycstorm
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/data/test.csv.zip b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/test.csv.zip
new file mode 100644
index 00000000..3dd1e079
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/test.csv.zip differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/data/train.csv b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/train.csv
new file mode 100644
index 00000000..27ead09e
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/train.csv
@@ -0,0 +1,8562 @@
+id,keyword,location,text,target
+1,,,Our Deeds are the Reason of this #earthquake May ALLAH Forgive us all,1
+4,,,Forest fire near La Ronge Sask. Canada,1
+5,,,All residents asked to 'shelter in place' are being notified by officers. No other evacuation or shelter in place orders are expected,1
+6,,,"13,000 people receive #wildfires evacuation orders in California ",1
+7,,,Just got sent this photo from Ruby #Alaska as smoke from #wildfires pours into a school ,1
+8,,,#RockyFire Update => California Hwy. 20 closed in both directions due to Lake County fire - #CAfire #wildfires,1
+10,,,"#flood #disaster Heavy rain causes flash flooding of streets in Manitou, Colorado Springs areas",1
+13,,,I'm on top of the hill and I can see a fire in the woods...,1
+14,,,There's an emergency evacuation happening now in the building across the street,1
+15,,,I'm afraid that the tornado is coming to our area...,1
+16,,,Three people died from the heat wave so far,1
+17,,,Haha South Tampa is getting flooded hah- WAIT A SECOND I LIVE IN SOUTH TAMPA WHAT AM I GONNA DO WHAT AM I GONNA DO FVCK #flooding,1
+18,,,#raining #flooding #Florida #TampaBay #Tampa 18 or 19 days. I've lost count ,1
+19,,,#Flood in Bago Myanmar #We arrived Bago,1
+20,,,Damage to school bus on 80 in multi car crash #BREAKING ,1
+23,,,What's up man?,0
+24,,,I love fruits,0
+25,,,Summer is lovely,0
+26,,,My car is so fast,0
+28,,,What a goooooooaaaaaal!!!!!!,0
+31,,,this is ridiculous....,0
+32,,,London is cool ;),0
+33,,,Love skiing,0
+34,,,What a wonderful day!,0
+36,,,LOOOOOOL,0
+37,,,No way...I can't eat that shit,0
+38,,,Was in NYC last week!,0
+39,,,Love my girlfriend,0
+40,,,Cooool :),0
+41,,,Do you like pasta?,0
+44,,,The end!,0
+48,ablaze,Birmingham,@bbcmtd Wholesale Markets ablaze http://t.co/lHYXEOHY6C,1
+49,ablaze,Est. September 2012 - Bristol,We always try to bring the heavy. #metal #RT http://t.co/YAo1e0xngw,0
+50,ablaze,AFRICA,#AFRICANBAZE: Breaking news:Nigeria flag set ablaze in Aba. http://t.co/2nndBGwyEi,1
+52,ablaze,"Philadelphia, PA",Crying out for more! Set me ablaze,0
+53,ablaze,"London, UK",On plus side LOOK AT THE SKY LAST NIGHT IT WAS ABLAZE http://t.co/qqsmshaJ3N,0
+54,ablaze,Pretoria,@PhDSquares #mufc they've built so much hype around new acquisitions but I doubt they will set the EPL ablaze this season.,0
+55,ablaze,World Wide!!,INEC Office in Abia Set Ablaze - http://t.co/3ImaomknnA,1
+56,ablaze,,Barbados #Bridgetown JAMAICA ÛÒ Two cars set ablaze: SANTA CRUZ ÛÓ Head of the St Elizabeth Police Superintende... http://t.co/wDUEaj8Q4J,1
+57,ablaze,Paranaque City,Ablaze for you Lord :D,0
+59,ablaze,Live On Webcam,Check these out: http://t.co/rOI2NSmEJJ http://t.co/3Tj8ZjiN21 http://t.co/YDUiXEfIpE http://t.co/LxTjc87KLS #nsfw,0
+61,ablaze,,"on the outside you're ablaze and alive
+but you're dead inside",0
+62,ablaze,milky way,Had an awesome time visiting the CFC head office the ancop site and ablaze. Thanks to Tita Vida for taking care of us ??,0
+63,ablaze,,SOOOO PUMPED FOR ABLAZE ???? @southridgelife,0
+64,ablaze,,I wanted to set Chicago ablaze with my preaching... But not my hotel! http://t.co/o9qknbfOFX,0
+65,ablaze,,I gained 3 followers in the last week. You? Know your stats and grow with http://t.co/TIyUliF5c6,0
+66,ablaze,"GREENSBORO,NORTH CAROLINA",How the West was burned: Thousands of wildfires ablaze in California alone http://t.co/vl5TBR3wbr,1
+67,ablaze,,Building the perfect tracklist to life leave the streets ablaze,0
+68,ablaze,Live On Webcam,Check these out: http://t.co/rOI2NSmEJJ http://t.co/3Tj8ZjiN21 http://t.co/YDUiXEfIpE http://t.co/LxTjc87KLS #nsfw,0
+71,ablaze,England.,First night with retainers in. It's quite weird. Better get used to it; I have to wear them every single night for the next year at least.,0
+73,ablaze,"Sheffield Township, Ohio",Deputies: Man shot before Brighton home set ablaze http://t.co/gWNRhMSO8k,1
+74,ablaze,India,"Man wife get six years jail for setting ablaze niece
+http://t.co/eV1ahOUCZA",1
+76,ablaze,Barbados,SANTA CRUZ ÛÓ Head of the St Elizabeth Police Superintendent Lanford Salmon has r ... - http://t.co/vplR5Hka2u http://t.co/SxHW2TNNLf,0
+77,ablaze,Anaheim,Police: Arsonist Deliberately Set Black Church In North CarolinaåÊAblaze http://t.co/pcXarbH9An,1
+78,ablaze,Abuja,Noches El-Bestia '@Alexis_Sanchez: happy to see my teammates and training hard ?? goodnight gunners.?????? http://t.co/uc4j4jHvGR',0
+79,ablaze,USA,#Kurds trampling on Turkmen flag later set it ablaze while others vandalized offices of Turkmen Front in #Diyala http://t.co/4IzFdYC3cg,1
+80,ablaze,South Africa,TRUCK ABLAZE : R21. VOORTREKKER AVE. OUTSIDE OR TAMBO INTL. CARGO SECTION. http://t.co/8kscqKfKkF,1
+81,ablaze,"Sao Paulo, Brazil",Set our hearts ablaze and every city was a gift And every skyline was like a kiss upon the lips @Û_ https://t.co/cYoMPZ1A0Z,0
+82,ablaze,hollywoodland ,They sky was ablaze tonight in Los Angeles. I'm expecting IG and FB to be filled with sunset shots if I know my peeps!!,0
+83,ablaze,"Edmonton, Alberta - Treaty 6",How the West was burned: Thousands of wildfires ablaze in #California alone http://t.co/iCSjGZ9tE1 #climate #energy http://t.co/9FxmN0l0Bd,1
+85,ablaze,,Revel in yours wmv videos by means of mac farewell ablaze wmv en route to dvd: GtxRWm,0
+86,ablaze,Inang Pamantasan,"Progressive greetings!
+
+In about a month students would have set their pens ablaze in The Torch Publications'... http://t.co/9FxPiXQuJt",0
+89,ablaze,Twitter Lockout in progress,Rene Ablaze & Jacinta - Secret 2k13 (Fallen Skies Edit) - Mar 30 2013 https://t.co/7MLMsUzV1Z,0
+91,ablaze,"Concord, CA",@Navista7 Steve these fires out here are something else! California is a tinderbox - and this clown was setting my 'hood ablaze @News24680,1
+92,ablaze,"Calgary, AB",#NowPlaying: Rene Ablaze & Ian Buff - Magnitude http://t.co/Av2JSjfFtc #EDM,0
+93,ablaze,Birmingham,@nxwestmidlands huge fire at Wholesale markets ablaze http://t.co/rwzbFVNXER,1
+95,ablaze,San Francisco,@ablaze what time does your talk go until? I don't know if I can make it due to work.,0
+96,accident,CLVLND,'I can't have kids cuz I got in a bicycle accident & split my testicles. it's impossible for me to have kids' MICHAEL YOU ARE THE FATHER,0
+97,accident,"Nashville, TN",Accident on I-24 W #NashvilleTraffic. Traffic moving 8m slower than usual. https://t.co/0GHk693EgJ,1
+98,accident,"Santa Clara, CA",Accident center lane blocked in #SantaClara on US-101 NB before Great America Pkwy #BayArea #Traffic http://t.co/pmlOhZuRWR,1
+100,accident,UK,http://t.co/GKYe6gjTk5 Had a #personalinjury accident this summer? Read our advice & see how a #solicitor can help #OtleyHour,0
+102,accident,"St. Louis, MO",#stlouis #caraccidentlawyer Speeding Among Top Causes of Teen Accidents https://t.co/k4zoMOF319 https://t.co/S2kXVM0cBA Car Accident teeÛ_,0
+104,accident,"Walker County, Alabama",Reported motor vehicle accident in Curry on Herman Rd near Stephenson involving an overturned vehicle. Please use... http://t.co/YbJezKuRW1,1
+105,accident,Australia,BigRigRadio Live Accident Awareness,1
+107,accident,North Carolina,I-77 Mile Marker 31 South Mooresville Iredell Vehicle Accident Ramp Closed at 8/6 1:18 PM,1
+109,accident,,RT @SleepJunkies: Sleeping pills double your risk of a car accident http://t.co/7s9Nm1fiCT,0
+110,accident,Norf Carolina,'By accident' they knew what was gon happen https://t.co/Ysxun5vCeh,0
+112,accident,"San Mateo County, CA",Traffic accident N CABRILLO HWY/MAGELLAN AV MIR (08/06/15 11:03:58),1
+113,accident,North Carolina,I-77 Mile Marker 31 to 40 South Mooresville Iredell Vehicle Accident Congestion at 8/6 1:18 PM,1
+114,accident,"Njoro, Kenya",the pastor was not in the scene of the accident......who was the owner of the range rover ?,1
+117,accident,,"mom: 'we didn't get home as fast as we wished'
+me: 'why is that?'
+mom: 'there was an accident and some truck spilt mayonnaise all over ??????",0
+118,accident,Your Sister's Bedroom,I was in a horrible car accident this past Sunday. I'm finally able to get around. Thank you GOD??,1
+119,accident,,Can wait to see how pissed Donnie is when I tell him I was in ANOTHER accident??,0
+120,accident,"Arlington, TX",#TruckCrash Overturns On #FortWorth Interstate http://t.co/Rs22LJ4qFp Click here if you've been in a crash>http://t.co/Ld0unIYw4k,1
+121,accident,"South Bloomfield, OH",Accident in #Ashville on US 23 SB before SR 752 #traffic http://t.co/hylMo0WgFI,1
+126,accident,,Carolina accident: Motorcyclist Dies in I-540 Crash With Car That Crossed Median: A motorcycle rider traveling... http://t.co/p18lzRlmy6,1
+128,accident,"New Hanover County, NC",FYI CAD:FYI: ;ACCIDENT PROPERTY DAMAGE;NHS;999 PINER RD/HORNDALE DR,1
+129,accident,Maldives,RT nAAYf: First accident in years. Turning onto Chandanee Magu from near MMA. Taxi rammed into me while I was halfway turned. Everyone confÛ_,1
+130,accident,"Manchester, NH",Accident left lane blocked in #Manchester on Rt 293 NB before Eddy Rd stop and go traffic back to NH-3A delay of 4 mins #traffic,1
+131,accident,"Wilmington, NC",;ACCIDENT PROPERTY DAMAGE; PINER RD/HORNDALE DR,1
+132,accident,,???? it was an accident http://t.co/Oia5fxi4gM,0
+133,accident,"New Hanover County, NC",FYI CAD:FYI: ;ACCIDENT PROPERTY DAMAGE;WPD;1600 S 17TH ST,1
+134,accident,,8/6/2015@2:09 PM: TRAFFIC ACCIDENT NO INJURY at 2781 WILLIS FOREMAN RD http://t.co/VCkIT6EDEv,1
+135,accident,global,Aashiqui Actress Anu Aggarwal On Her Near-Fatal Accident http://t.co/6Otfp31LqW,1
+136,accident,Alberta | Sask. | Montana,Suffield Alberta Accident https://t.co/bPTmlF4P10,1
+137,accident,Charlotte,9 Mile backup on I-77 South...accident blocking the Right 2 Lanes at Exit 31 Langtree Rd...consider NC 115 or NC 150 to NC 16 as alternate,1
+138,accident,"Baton Rouge, LA",Has an accident changed your life? We will help you determine options that can financially support life care plans and on-going treatment.,0
+139,accident,"Hagerstown, MD",#BREAKING: there was a deadly motorcycle car accident that happened to #Hagerstown today. I'll have more details at 5 @Your4State. #WHAG,1
+141,accident,"Gloucestershire , UK",@flowri were you marinading it or was it an accident?,0
+143,accident,,only had a car for not even a week and got in a fucking car accident .. Mfs can't fucking drive .,1
+144,accident,UK,.@NorwayMFA #Bahrain police had previously died in a road accident they were not killed by explosion https://t.co/gFJfgTodad,1
+145,accident,"Nairobi, Kenya",I still have not heard Church Leaders of Kenya coming forward to comment on the accident issue and disciplinary measures#ArrestPastorNganga,0
+146,aftershock,Instagram - @heyimginog ,@afterShock_DeLo scuf ps live and the game... cya,0
+149,aftershock,304,"'The man who can drive himself further once the effort gets painful is the man who will win.'
+Roger Bannister",0
+151,aftershock,Switzerland,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/yNXnvVKCDA | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/weQPesENku,0
+153,aftershock,304,'There is no victory at bargain basement prices.' Dwight David Eisenhower,0
+156,aftershock,US,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/vAM5POdGyw | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/zEVakJaPcz,0
+157,aftershock,304,'Nobody remembers who came in second.' Charles Schulz,0
+158,aftershock,Instagram - @heyimginog ,@afterShock_DeLo im speaking from someone that is using a scuf on xb1 most of them people will end up getting on for ps also.,0
+159,aftershock,304,'The harder the conflict the more glorious the triumph.' Thomas Paine,0
+160,aftershock,,#GrowingUpSpoiled going clay pigeon shooting and crying because of the 'aftershock',0
+161,aftershock,Somewhere Only We Know ?,So i guess no one actually wants any free Aftershock TC.....,0
+162,aftershock,,Aftershock was the most terrifying best roller coaster I've ever been on. *DISCLAIMER* I've been on very few.,0
+163,aftershock,Belgium,Aftershock https://t.co/xMWODFMtUI,0
+164,aftershock,Switzerland,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/M4JDZMGJoW | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/n0uhAsfkBv,0
+165,aftershock,US,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/vAM5POdGyw | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/zEVakJaPcz,0
+168,aftershock,,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/e14EPzhotH | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/22a9D5DO6q,0
+170,aftershock,dope show,@KJForDays I'm seeing them and Issues at aftershock ??,0
+171,aftershock,Switzerland,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/THyzOMVWU0 | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/83jOO0xk29,0
+172,aftershock,Switzerland,320 [IR] ICEMOON [AFTERSHOCK] | http://t.co/THyzOMVWU0 | @djicemoon | #Dubstep #TrapMusic #DnB #EDM #Dance #IcesÛ_ http://t.co/83jOO0xk29,0
+173,aftershock,"Oshawa, Canada",#WisdomWed BONUS - 5 Minute Daily Habits that could really improve your life. How many do you already do? #lifehacks http://t.co/TBm9FQb8cW,0
+174,aftershock,Baker City Oregon,Aftershock: Protect Yourself and Profit in the Next Global Financial Meltdown by David Wiedemer http http://t.co/WZTz4hgMVq,0
+175,aftershock,,That moment when you get on a scary roller coaster and the guy behind you is just screaming bloody murder ?????? #silverwood #aftershock,0
+176,aftershock,,Aftershock 㢠(2010) Full㢠Streaming - YouTube http://t.co/vVE3UsesGf,0
+178,aftershock,United States,">> $15 Aftershock : Protect Yourself and Profit in the Next Global Financial... ##book http://t.co/f6ntUc734Z
+@esquireattire",0
+180,aftershock,304,Sometimes you face difficulties not because you're doing something wrong but because you're doing something right. - Joel Osteen,0
+182,aftershock,304,'The only thing that stands between you and your dream is the will to try and the belief that it is actually possible.' - Joel Brown,0
+183,aftershock,marysville ca ,Praise God that we have ministry that tells it like it is!!! #now #wdyouth #biblestudy https://t.co/UjK0e5GBcC,0
+184,aftershock,304,'Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose.' ÛÒ Steve Jobs,0
+185,aftershock,"Hermosa Beach, CA",Tried orange aftershock today. My life will never be the same,0
+187,aftershock,,@OnFireAnders I love you bb,0
+190,aftershock,,Aftershock https://t.co/jV8ppKhJY7,0
+191,aftershock,,Aftershock back to school kick off was great. I want to thank everyone for making it possible. What a great night.,0
+193,aftershock,304,People who say it cannot be done should not interrupt those who are doing it. ÛÒ George Bernard Shaw,0
+194,aftershock,304,'The first man gets the oyster the second man gets the shell.' Andrew Carnegie,0
+195,aftershock,,Anyone need a P/U tonight? I play Hybrid Slayer ps4 EU. HMU @Cod8sandscrims @EmpirikGaming @CoDAWScrims @4TP_KOTC @4TPFA @afterShock_Org,0
+196,airplane%20accident,"19.600858, -99.047821",Experts in France begin examining airplane debris found on Reunion Island: French air accident experts o... http://t.co/YVVPznZmXg #news,1
+197,airplane%20accident,Pennsylvania,Strict liability in the context of an airplane accident: Pilot error is a common component of most aviation cr... http://t.co/6CZ3bOhRd4,1
+198,airplane%20accident,"Salt Lake City, Utah",@crobscarla your lifetime odds of dying from an airplane accident are 1 in 8015.,0
+199,airplane%20accident,"Palo Alto, CA",Experts in France begin examining airplane debris found on Reunion Island: French air accident experts on Wedn... http://t.co/bKpFpOGySI,1
+201,airplane%20accident,,@AlexAllTimeLow awwww they're on an airplane accident and they're gonna die what a cuties ???? good job!,1
+203,airplane%20accident,"Spain but Opa-Locka, FL",family members of osama bin laden have died in an airplane accident how ironic ?????? mhmmm gov shit i suspect,1
+204,airplane%20accident,"Jaipur, India",Man Goes into Airplane Engine Accident: http://t.co/TYJxrFd3St via @YouTube,1
+205,airplane%20accident,Hyderabad Telangana INDIA,Horrible Accident Man Died In Wings of Airplane (29-07-2015) http://t.co/i7kZtevb2v,1
+208,airplane%20accident,"Eagle Pass, Texas",A Cessna airplane accident in Ocampo Coahuila Mexico on July 29 2015 killed four men including a State of Coahuila government official.,1
+209,airplane%20accident,bangalore,#Horrible #Accident Man Died In Wings Airplane (29-07-2015) #WatchTheVideo http://t.co/p64xRVgJIk,1
+210,airplane%20accident,Financial News and Views,Experts in France begin examining airplane debris found on Reunion Island http://t.co/LsMx2vwr3J French air accident experts on WednesdayÛ_,1
+211,airplane%20accident,,Experts in France begin examining airplane debris found on Reunion Island: French air accident experts on Wednesday began examining t...,1
+212,airplane%20accident,Indonesia,#KCA #VoteJKT48ID mbataweel: #RIP #BINLADEN Family members who killed in an airplane's accident,1
+213,airplane%20accident,y(our) boyfriends legs ,I almost sent my coworker nudes on accident thank god for airplane mode,0
+215,airplane%20accident,"New Mexico, USA",@mickinyman @TheAtlantic That or they might be killed in an airplane accident in the night a car wreck! Politics at it's best.,0
+216,airplane%20accident,Somewhere Out There,Experts in France begin examining airplane debris found on Reunion Island: French air accident experts on... http://t.co/TagZbcXFj0 #MLB,1
+218,airplane%20accident,,"This is unbelievably insane.
+#man #airport #airplane #aircraft #aeroplane #runway #accident #freakyÛ_ https://t.co/cezhq7CzLl",1
+219,airplane%20accident,Mumbai india,Horrible Accident | Man Died In Wings of AirplaneåÊ(29-07-2015) http://t.co/wq3wJsgPHL,1
+220,airplane%20accident,sri lanka,Horrible Accident Man Died In Wings of Airplane (29-07-2015) http://t.co/TfcdRONRA6,1
+221,airplane%20accident,Not a U.S resident,Usama bin Ladins family dead in airplane crash. Naturally no accident.,1
+222,airplane%20accident,,Pilot Dies In Plane Crash At Car Festival https://t.co/kQ9aE6AP2B via @YouTube #Crash #Aircraft #Airplane #Pilot #Death #Accident #CarFest,1
+225,airplane%20accident,"Lehigh Valley, PA",Strict liability in the context of an airplane accident - http://t.co/gibyQHhKpk,1
+226,airplane%20accident,Canada,DTN Brazil: Experts in France begin examining airplane debris found on Reunion Island: French air accident exp... http://t.co/M9IG3WQ8Lq,1
+229,airplane%20accident,,Experts in France begin examining airplane debris found on Reunion Island: French air accident experts on Wedn... http://t.co/v4SMAESLK5,1
+231,airplane%20accident,Thrissur,Horrible Accident Man Died In Wings Of ÛÏAirplaneÛ 29-07-2015. WTF You CanÛªt Believe Your EYES ÛÒ... http://t.co/6fFyLAjWpS,1
+232,airplane%20accident,Havenford,"+ Nicole Fletcher one of a victim of crashed airplane few times ago.
+
+The accident left a little bit trauma for her. Although she's
+
++",1
+235,airplane%20accident,India,OMG Horrible Accident Man Died in Wings of Airplane. http://t.co/xDxDPrcPnS,1
+237,airplane%20accident,92,"#OMG! I don't believe this. #RIP bro
+#AirPlane #Accident #JetEngine #TurboJet #Boing #G90 http://t.co/KXxnSZp6nk",1
+238,airplane%20accident,,Experts in France begin examining airplane debris found on Reunion Island: French air accident experts on Wednesday began examining t...,1
+240,airplane%20accident,Israel,I had a airplane accident.,1
+241,airplane%20accident,Fashion Heaven. IG: TMId_,My phone looks like it was in a car ship airplane accident. Terrible,0
+242,airplane%20accident,"San Francisco, CA",Statistically I'm at more of risk of getting killed by a cop than I am of dying in an airplane accident.,0
+243,airplane%20accident,italy,airplane crashes on house in Colombia 12 people die in accident https://t.co/ZhJlfLBHZL,1
+244,airplane%20accident,nyc,The shooting or the airplane accident https://t.co/iECc1JDOub,1
+245,airplane%20accident,Toronto,Could a drone cause an airplane accident? Pilots worried about use of drones esp. in close vicinity of airports http://t.co/kz35rGngJF #,1
+246,ambulance,,Early wake up call from my sister begging me to come over & ride w/her in the ambulance to the hospital #RODKiai,1
+247,ambulance,Jackson,http://t.co/AY6zzcUpnz Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/sC9dNS41Mc,1
+248,ambulance,New York / Worldwide,Two air ambulances on scene of serious crash between two cars and lorry in ... - http://t.co/9pFEaQeSki http://t.co/fntG70rnkx | #EMSNeÛ_,1
+249,ambulance,,Twelve feared killed in Pakistani air ambulance helicopter crash - Reuters http://t.co/mDnUGVuBwN #yugvani,1
+251,ambulance,"New Orleans, LA",Leading emergency services boss welcomes new ambulance charity http://t.co/Mj2jQ2pSv6,0
+252,ambulance,West Wales,Anyone travelling Aberystwyth-Shrewsbury right now there's been an incident. Services at a halt just outside Shrews. Ambulance on scene.,1
+253,ambulance,,Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/Xum8YLcb4Q,1
+254,ambulance,Happily Married with 2 kids ,AMBULANCE SPRINTER AUTOMATIC FRONTLINE VEHICLE CHOICE OF 14 LEZ COMPLIANT | eBay http://t.co/4evTTqPEia,0
+256,ambulance,"Cambridge, MA",New Nanotech Device Will Be Able To Target And Destroy Blood Clots http://t.co/HFy5V3sLBB,0
+258,ambulance,Arizona ,@20skyhawkmm20 @traplord_29 @FREDOSANTANA300 @LilReese300 it was hella crazy 3 fights an ambulance and a couple mosh pits ??,1
+260,ambulance,Mumbai,If I get run over by an ambulance am I lucky? #justsaying #randomthought,0
+261,ambulance,,#news Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/bFeS5tWBzt #til_now #DNA,1
+262,ambulance,Amsterdam,http://t.co/7xGLah10zL Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/THmblAATzP,1
+263,ambulance,"Swindon,England ",@TanSlash waiting for an ambulance,0
+264,ambulance,,@fouseyTUBE you ok? Need a ambulance. Hahahah that was good! http://t.co/ZSbErqNN9n,0
+265,ambulance,Happily Married with 2 kids ,AMBULANCE SPRINTER AUTOMATIC FRONTLINE VEHICLE CHOICE OF 14 LEZ COMPLIANT | eBay http://t.co/q8IVrzOJZv,0
+266,ambulance,,Pakistan air ambulance helicopter crash kills nine http://t.co/8E7rY8eBMf,1
+267,ambulance,"Williamstown, VT",@TheNissonian @RejectdCartoons nissan are you ok do you need medical assistance i can call an ambulance if you need me to,0
+268,ambulance,"North Carolina, USA",EMS1: NY EMTs petition for $17 per hour Û÷minimum wageÛª http://t.co/4oa6SWlxmR #ems #paramedics #ambulance,0
+269,ambulance,,http://t.co/FCqmKFfflW Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/vAyaYmbNgu,1
+270,ambulance,Karachi,Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/3bRme6Sn4t,1
+271,ambulance,Happily Married with 2 kids ,AMBULANCE SPRINTER AUTOMATIC FRONTLINE VEHICLE CHOICE OF 14 LEZ COMPLIANT | eBay http://t.co/UJrX9kgawp,0
+272,ambulance,Happily Married with 2 kids ,AMBULANCE SPRINTER AUTOMATIC FRONTLINE VEHICLE CHOICE OF 14 LEZ COMPLIANT | eBay http://t.co/Kp2Lf4AuTe,0
+273,ambulance,Loveland Colorado,@Kiwi_Karyn Check out what's in my parking lot!! He said that until last year it was an ambulance in St Johns. http://t.co/hPvOdUD7iP,0
+274,ambulance,|| c h i c a g o ||,when you don't know which way an ambulance is coming from <<,1
+276,ambulance,,#reuters Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/ShzPyIQok5,1
+277,ambulance,L. A.,http://t.co/pWwpUm6RBj Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/ySpON4d6Qo,1
+279,ambulance,,Why is there an ambulance right outside my work,0
+280,ambulance,Canada,ÛÏ@LeoBlakeCarter: This dog thinks he's an ambulance ?????? http://t.co/MG1lpGr0RMÛ@natasha_rideout,0
+281,ambulance,VISIT MY YOUTUBE CHANNEL.,HAPPENING NOW - HATZOLAH EMS AMBULANCE RESPONDING WITH DUAL SIRENS ANDÛ_ https://t.co/SeK6MQ6NJF,0
+283,ambulance,Lexington,http://t.co/FueRk0gWui Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/Mv7GgGlmVc,1
+285,ambulance,,http://t.co/X5YEUYLT1X Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/2UgrMd1z1n,1
+287,ambulance,USA,Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/TH9YwBbeet #worldNews,1
+289,ambulance,"Hannover, Germany",Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/X2Qsjod40u #worldnews,1
+290,ambulance,,What's the police or ambulance number in Lesotho? Any body know?,0
+291,ambulance,,@medic914 @AACE_org I am surprised we still cannot standardised the clinical practice across the 11 NHS ambulance trust.,0
+293,ambulance,Playa,http://t.co/J8TYT1XRRK Twelve feared killed in Pakistani air ambulance helicopter crash http://t.co/9d4nAzOI94,1
+294,ambulance,"Davidson, NC",People who try to j-walk while an ambulance is passing... I hate you.,0
+296,annihilated,Higher Places,The episode where Trunks annihilated Freiza is the cleanest shit ever. He showed that nigga no mercy.,0
+297,annihilated,"Horsemind, MI",THEY SHALL BE ANNIHILATED AND ALL OF THEIR PETEBESTS DESSICATED AND LAID BARE. THEN YOU SHALL KNEEL BEFORE ME.,0
+298,annihilated,"New York, NY",Uribe just annihilated that baseball. #Mets,0
+299,annihilated,Boksburg,@marksmaponyane Hey!Sundowns were annihilated in their previous meeting with Celtic.Indeed its an improvement.,0
+301,annihilated,,@Volfan326 @TNeazzy Mizzou has annihilated florida the past 2 seasons even ended muschamp's career just can't compete with Bama,0
+302,annihilated,,Annihilated Abs . ?? http://t.co/1xPw292tJe,1
+303,annihilated,,Be annihilated for status education mba on behalf of a on easy street careen: eOvm http://t.co/e0pI0c54FF,0
+307,annihilated,"V-RP @OZRP_ ?MV, AU, R18+?",*to Luka* They should all die! All of them! Everything annihilated! - Alois Trancy,0
+309,annihilated,"Greater Manchester, UK",@ACarewornHeart Have a good un fella sorry I won't be there to get annihilated with you :(,0
+310,annihilated,Boston,Cop pulls drunk driver to safety SECONDS before his car is hit by train. http://t.co/tHrhKHOGcUåÊ http://t.co/tZSZmF2qxE via @ViralSpell,1
+312,annihilated,,You must be annihilated!,0
+313,annihilated,,Cop pulls drunk driver to safety SECONDS before his car is hit by train. http://t.co/C0nKGp6w03åÊ http://t.co/IMWmfDJSSn via @ViralSpell,1
+314,annihilated,The Canopy Kingdom,BOOM! Your country was just entirely annihilated by a hÛ_ ÛÓ Britain https://t.co/IrFCn71sZv,0
+315,annihilated,,@AmirKingKhan you would have been annihilated so you might as well thank @FloydMayweather,0
+316,annihilated,USA,One thing for sure-God has promised Israel will not be annihilated. But...the horror of Iran w/nukes. https://t.co/xn09Mx6sxy,0
+318,annihilated,,@violentfeminazi I guess that's ok for Armenians since we've spent most of our history getting annihilated,1
+320,annihilated,,70 years since we annihilated 100000 people instantly and became aware that we have the ability to annihilate the whole of humanity,1
+321,annihilated,the own zone layer ,day 1 of tryouts went good minus the fact I stopped quickly to get a short ball and Annihilated my toenail injury even more,0
+322,annihilated,London,"During the 1960s the oryx a symbol of the Arabian Peninsula were annihilated by hunters.
+http://t.co/yangEQBUQW http://t.co/jQ2eH5KGLt",1
+327,annihilated,Trancy Manor,(To Luka) 'They should all die! All of them! Everything annihilated!' - Alois Trancy -,0
+328,annihilated,,Ready to get annihilated for the BUCS game,1
+329,annihilated,South 37,@PhilipDuncan @breakfastone People 'annihilated by last nights weather'... Really Philip thought you would have forecast that...,1
+330,annihilated,,Domain other sophistication be annihilated closely up-to-the-minute feat: ZrNf,0
+331,annihilated,"West Lancashire, UK.",@stormbeard @steel_lord I seen Judas Priest in 2005 when Rob came back; Scorpions as support. Fucking annihilated the place. Astonishing gig,0
+332,annihilated,PA,Officially skipping out on #FantasticFour/#Fant4stic/whatever the hashtag is. It's getting ANNIHILATED in reviews. Bummer.,0
+334,annihilated,,@TomcatArts thus explaining why you were all annihilated. But the few or in this case you the only survivor evolved and became godlike,1
+335,annihilated,Û¢ Views From The Six Û¢,just completely annihilated cech with paul keegan what a time to be alive,0
+336,annihilated,,@TomcatArts 'who then were annihilated by the legion itself. The survivors of the imperfect hybrid project quickly formed a new secret cell,0
+337,annihilated,University of Toronto,@SirBrandonKnt exactly. That's why the lesnar/cena match from summerslam last year was so great because Brock annihilated a guy who's,0
+338,annihilated,,Cop pulls drunk driver to safety SECONDS before his car is hit by train. http://t.co/F1BAkpNyn6åÊ http://t.co/lZXwoAyE4x via @ViralSpell,1
+340,annihilated,Swaning Around,"ANNIHILATED IN DAMASCUS: SYRIAN ARMY GRINDS Û÷ALLOOSH AND HIS GANG INTO THE MANURE PILE
+http://t.co/7rakhP3bWm",1
+341,annihilated,,@thatdes ok i wasn't completely forthright i may have also been in a food coma bc of the kebab/tahini/pickles i also annihilated w/fries,0
+344,annihilated,London,A fun filled happy-hour at Simmons bar in Camden with this handsome one ?? (I got annihilated apart from this game) http://t.co/4JNo677Zkv,0
+345,annihilated,Albany/NY,Juanny Beisbol Sr. Annihilated that ball. #LGM,0
+346,annihilation,"California, USA",@rvfriedmann Hell is just a fraction of his belief of total annihilation destruction of USA @LodiSilverado @ritzy_jewels,1
+347,annihilation,,@POTUS Maybe we should call Israel and tell them we're sorry are Pres has sold them down the river to annihilation.,0
+348,annihilation,,Evildead - Annihilation of Civilization http://t.co/sPfkE5Kqu4,0
+349,annihilation,,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... http://t.co/6LoJOoROuk via @Change,0
+352,annihilation,Wild Wild Web,annihilating quarterstaff of annihilation,1
+353,annihilation,Subconscious LA,World Annihilation vs Self Transformation http://t.co/pyehwodWun Aliens Attack to Exterminate Humans http://t.co/pB2N77nSKz,0
+354,annihilation,Spain,:StarMade: :Stardate 3: :Planetary Annihilation:: http://t.co/I2hHvIUmTm via @YouTube,1
+355,annihilation,,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/m8MvDSPJp7 via @Change,0
+356,annihilation,CA physically- Boston Strong?,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/sW1sBua3mN via @Change,1
+358,annihilation,"Yeezy Taught Me , NV",@KimKardashian can you please sign and share this petition to save wild horses in Arizona. http://t.co/3tsSXPHuFE ????,0
+360,annihilation,,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... http://t.co/KPQk0C4G0M via @Change,1
+361,annihilation,CA physically- Boston Strong?,@TheEllenShow Please check into Salt River horses help stop the annihilation about to happen without 54000 more signatures.change .org Thx,0
+363,annihilation,United States,Are souls punished withåÊannihilation? http://t.co/c1QXJWeQQU http://t.co/Zhp0SOwXRy,0
+364,annihilation,,@CalFreedomMom @steph93065 not to mention a major contributor to the annihilation of Israel,1
+365,annihilation,,@willienelson We need help! Horses will die!Please RT & sign petition!Take a stand & be a voice for them! #gilbert23 https://t.co/e8dl1lNCVu,1
+368,annihilation,"Rock Hill, SC",I reject the laws of the misguided false prophets imprison nations fueling self annihilation,0
+370,annihilation,"Coolidge, AZ",U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/MatIJwkzbh via @Change,0
+371,annihilation,Republic of Texas,"The annihilation of Jeb Christie & Kasich is less than 24 hours away..
+Please God allow me at least one more full day...",0
+372,annihilation,,@Barbi_Twins We need help-horses will die! Please RT & sign petition! Take a stand & be a voice for them! #gilbert23 https://t.co/e8dl1lNCVu,0
+375,annihilation,,@Whippenz We need help! Horses will die!Please RT & sign petition!Take a stand & be a voice for them! #gilbert23 https://t.co/e8dl1lNCVu,0
+380,annihilation,"Phoenix, AZ",Hey #AZ: Sign this petition to save the #WildHorses @ #TantoNationalForest! A @RollingStones sing-a-long is in order: http://t.co/WM5l8PJ2iY,0
+381,annihilation,"Ljubljana, Slovenia",Stop the Annihilation of the Salt River Wild Horses! http://t.co/wVobVVtXKg via @Change,1
+383,annihilation,Connecticut,@SonofBaldwin and he's the current Nova in the bookslast I checked..he was tied into the books in 2011 after Rider died during Annihilation,0
+384,annihilation,"Tacoma,Washington",U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/x2Wn7O2a3w via @Change,0
+386,annihilation,,Please sign & RT to save #SaltRiverWildHorses http://t.co/IKUAYUSEqt http://t.co/BQBHUyfmE9,0
+389,annihilation,,THANKS!!!!! @COUNT DANTE. :) DO JOIN US BY FOLLOWING THE @ANNIHILATION ZONE. JOHNNY.,0
+390,annihilation,Subconscious LA,World Annihilation vs Self Transformation http://t.co/pyehwodWun Aliens Attack to Exterminate Humans http://t.co/8jxqL8Cv8Z,1
+393,annihilation,BIG D HOUSTON/BOSTON/DENVER,U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... https://t.co/0fekgyBY5F via @Change,0
+394,annihilation,"Chandler, AZ",U.S National Park Services Tonto National Forest: Stop the Annihilation of the Salt River Wild Horse... http://t.co/SB5R7ShcCJ via @Change,1
+396,apocalypse,ColoRADo,I'm gonna fight Taylor as soon as I get there.,0
+397,apocalypse,sindria,ohH NO FUKURODANI DIDN'T SURVIVE THE APOCALYPSE BOKUTO FEELS HORRIBLE my poor boy my ppor child,1
+398,apocalypse,,will there be another jocelyn birthday apocalypse,0
+401,apocalypse,,RT: janenelson097: RT StephenSCIFI: Adaptation Watch: Charlie Human's APOCALYPSE NOW NOW Optioned for Film #sciencefiction Û_,0
+402,apocalypse,Texas,Apocalypse please,0
+404,apocalypse,"Elk Grove, CA, USA",Another hour! It's August 05 2015 at 08:02PM Here's Red Rover Zombie Apocalypse 2014! http://t.co/cf9e6TU3g7 #internetradio #collegeradiÛ_,1
+406,apocalypse,Texas,@HoneyBunzGem @primalkitchen I feel like me doing a pull-up is one of the stages of the Apocalypse.,0
+407,apocalypse,,She's kinda hot played on the radio today. What's next? Disease to all? The apocalypse has started everyone. Be careful.,0
+409,apocalypse,The Shire,But if it's the apocalypse lol gf m8,0
+410,apocalypse,"Austin, TX",I know it's a question of interpretation but this is a sign of the apocalypse. I called it https://t.co/my8q1uWIjn,1
+412,apocalypse,Oakland,Julie + R is the apocalypse version of Romeo + Juliet #warmbodies,0
+413,apocalypse,,the apocalypse is upon us,0
+415,apocalypse,,RT: fittscott: Minecraft- NIGHT LUCKY BLOCK MOD (BOB APOCALYPSE WITHER 2.0 & MORE!) Mod Showcase Popularmmos: http://t.co/MuL1J9AEUx viÛ_,0
+418,apocalypse,Albuquerque,And so it begins.. day one of the snow apocalypse,1
+419,apocalypse,,"RT: Our_Mother_Mary: Short Reading
+
+Apocalypse 21:1023
+
+In the spirit the angel took me to the top of an enormous high mountain and... Û_",0
+420,apocalypse,"Buenos Aires, Argentina",candylit: Imagine sarumi in a zombie apocalypse Fighting back to back Heart to heart conversations over the... http://t.co/xIZkjffF29,0
+421,apocalypse,,RT: ZONEWolf123: I liked a YouTube video http://t.co/u66kYg11ZD Minecraft: NIGHT LUCKY BLOCK MOD (BOB APOCALYPSE WITHER 2.0 & MORE!) MoÛ_,0
+423,apocalypse,,And that's because on my planet it's the lone audience of the apocalypse!,0
+424,apocalypse,"San Antonio-ish, TX",Dad bought a DVD that looks like a science doc on the front but I read the back and it's actually about the impending biblical apocalypse,1
+426,apocalypse,San Francisco,@alexandrapullin It is indeed. If the apocalypse comes this week I know where I'll be :),0
+427,apocalypse,"Oregon, USA",GO LOOK AT GRIZZLY PEAK RIGHT NOW... It looks like the beginning of an dystopian apocalypse movie,0
+429,apocalypse,"Harlingen, TX",My niece just asked me 'would you be scared if there was an apocalypse here?' ????,0
+432,apocalypse,Buffalo NY,There's a Storm over Cairo in the latest 'X-Men Apocalypse' set photo https://t.co/fS012trUDG via @YahooTV,1
+435,apocalypse,,Minecraft- NIGHT LUCKY BLOCK MOD (BOB APOCALYPSE WITHER 2.0 & MORE!) Mod Showcase Popularmmos: http://t.co/TNgYE2FKlv via @YouTube,0
+436,apocalypse,,Shot Through The Heart XV: You are going to totally give love a bad name with this heart pierc http://t.co/xpFmR368uF http://t.co/ejdHvLKXAf,0
+437,apocalypse,,RT: Geek_Apocalypse: 4pm GMT :Hesse plays dark souls 2 day 9: http://t.co/TnGPsHNL87 http://t.co/imzLNZLtF5 #etcPB,0
+438,apocalypse,Las Vegas,I know where to go when the zombies take over!! http://t.co/hUTHXlkyxy,0
+440,apocalypse,,The latest from @BryanSinger reveals #Storm is a queen in #Apocalypse @RuPaul @AlexShipppp http://t.co/oQw8Jx6rTs,1
+442,apocalypse,,Shadow boxing the apocalypse,1
+443,apocalypse,,"Short Reading
+
+Apocalypse 21:1023
+
+In the spirit the angel took me to the top of an enormous high mountain and... http://t.co/v8AfTD9zeZ",1
+444,apocalypse,Tokyo,Enjoyed live-action Attack on Titan but every time I see posters I'm reminded how freshly clean and coiffed everyone is in the apocalypse.,0
+445,apocalypse,,I liked a @YouTube video http://t.co/ki1yKrs9fi Minecraft: NIGHT LUCKY BLOCK MOD (BOB APOCALYPSE WITHER 2.0 & MORE!) Mod Showcase,0
+446,armageddon,"California, United States",#PBBan (Temporary:300) avYsss @'aRmageddon | DO NOT KILL | FLAGS ONLY | Fast XP' for Reason,0
+447,armageddon,"California, United States",#PBBan (Temporary:300) Russaky89 @'aRmageddon | DO NOT KILL | FLAGS ONLY | Fast XP' for Reason,0
+448,armageddon,#FLIGHTCITY UK ,((OFFICIAL VID)) #DoubleCups >> https://t.co/lfKMTZaEkk >> @TrubGME Prod @THISIZBWRIGHT >> #ARMAGEDDON,0
+450,armageddon,,ouvindo Peace Love & Armageddon,0
+451,armageddon,,Best movie you've ever seen? - Armageddon http://t.co/qoUXIgdtbZ,0
+452,armageddon,"Alphen aan den Rijn, Holland",Bed time. Don't wake me up unless revolution or Armageddon start.,0
+453,armageddon,,Red Faction: Armageddon (Microsoft Xbox 360 2011) - Full read by eBay http://t.co/ypbVS1IJya http://t.co/9dFLv6ynqr,0
+454,armageddon,Wrigley Field,@KatieKatCubs you already know how this shit goes. World Series or Armageddon.,0
+455,armageddon,,RT @Ophiuchus2613: #Love #TrueLove #romance lith #Voodoo #seduction #Astrology #RTRRT #LOTZ 9-11 #apocalypse #Armageddon #1008plaÛ_,0
+456,armageddon,probably the strip club,"//im gonna beat armageddon as Hsu Hao ????
+just got a flawless on my first try",0
+457,armageddon,Canada,@ENews Ben Affleck......I know there's a wife/kids and other girls but I can't help it. I've loved him since Armageddon #eonlinechat,0
+459,armageddon,England,'If I'd have had a long coat to hand I'd have worn it. The certainty of armageddon bears a sense of occasion.',0
+461,armageddon,USA,YOUR PHONE IS SPYING ON YOU! Hidden Back Door NSA Data Mining Software | THE FINANCIAL ARMAGEDDON BLOG http://t.co/qyCw5JJaj1,0
+462,armageddon,"California, United States",#PBBan (Temporary:300) hyider_ghost2 @'aRmageddon | DO NOT KILL | FLAGS ONLY | Fast XP' for Reason,1
+463,armageddon,,RT @RTRRTcoach: #Love #TrueLove #romance lith #Voodoo #seduction #Astrology #RTRRT #LOTZ 9-11 #apocalypse #Armageddon #1008planetÛ_,0
+465,armageddon,"California, United States",#PBBan (Temporary:300) fighterdena @'aRmageddon | DO NOT KILL | FLAGS ONLY | Fast XP' for Reason,0
+466,armageddon,New York City,Photo: Sketch I did based on the A Taste of Armageddon episode of #startrek #tos http://t.co/a2e6dcsk88,0
+467,armageddon,Here And There,Armageddon https://t.co/uCSUDk3q1d,1
+468,armageddon,"Rotterdam, Zuid-Holland","@AberdeenFC @AberdeenFanPage
+
+Good luck to the ?????? tomorrow night
+
+Get some coefficient points plz
+@Armageddon????",0
+469,armageddon,"Derry, 17 ",@paddytomlinson1 ARMAGEDDON,0
+470,armageddon,Nowhere. Everywhere.,@RohnertParkDPS You're another one for the history books! (Thank the Justice Department!) And by the way I haven't paid income tax in 20yrs.,0
+471,armageddon,"Florida, USA","Vladimir Putin Issues Major Warning But Is It Too Late To Escape Armageddon?
+http://t.co/gBxafy1m1C",1
+472,armageddon,Worldwide,God's Kingdom (Heavenly Gov't) will rule over all people on the earth after Armageddon. http://t.co/8HGcBXUkz0 http://t.co/4kopkCyvTt,0
+474,armageddon,,L B #Entertainment lot of 8 #BruceWillis MOVIES #DVD DIE HARD 1 2 12 MONKEYS ARMAGEDDON SIXTH #eBay #Auction http://t.co/CxDJApzXMP,0
+475,armageddon,Nowhere. Everywhere.,LetÛªs talk some more about your goof guild Saunders. Come right up here on stage. https://t.co/hkBxxvd9Iw,0
+476,armageddon,East Coast,@Karnythia my niece is gaining the ability to stand. I'm getting prepared for toddler apocalypse Armageddon,0
+477,armageddon,California,Check out #PREPPERS #DOOMSDAY MUST HAVE LIBRARY COLLECTION ON CD #shtf #preppertalk #survival #2A #prepper http://t.co/VPQTGeQLmA via @eBay,0
+478,armageddon,"Toronto, ON",@Erker Again?? Eep! Thought of you yesterday when I saw that hella scary hail. #armageddon?,1
+479,armageddon,,So the Ahamedis think the Messiah had already come 125 years ago? Where is Armageddon? Where is the Dajaal? Where is Gog & Magog?!,0
+480,armageddon,The Orwellion police-state,Sadly How Windows 10 Reveals Microsoft's Ethics Armageddon http://t.co/sTfTjCrjEa,0
+481,armageddon,"Castaic, CA","Armageddon averted by El Patron
+#UltimaLucha",0
+482,armageddon,"Helsinki, Finland",@samihonkonen If you have the time (23 hours ??) the latest series about WW1 Blueprint for Armageddon is extremely impressive.,0
+483,armageddon,East Kilbride,European Fitba till Christmas ARMAGEDDON,0
+484,armageddon,,#Christians United for #Israel (#CUFI): Jews should convert soon or die by armageddon https://t.co/4aRWwRZPsr #US http://t.co/mkJQ9yfMP8,0
+485,armageddon,#FLIGHTCITY UK ,(OFFICIAL VID) > #DoubleCups >> https://t.co/lfKMTZaEkk >> @TrubGME Prod @THISIZBWRIGHT >> #ARMAGEDDON .,0
+486,armageddon,middle eastern palace,Tomorrow is the day we start armageddon #preseasonworkouts ????,0
+487,armageddon,Kent,Lee does comedy: ÛÏ@LeeJasper: Working class Tories prepare for your Armageddon. #InterestRateRiseÛ,0
+489,armageddon,,9 Charts Prove Financial Crisis Part 2 Has BEGUN!: The Financial Armageddon Economic Collapse Blog tracks tren... http://t.co/vHCXTvCINr,0
+490,armageddon,,Paul Craig Roberts ÛÒ Vladimir Putin Issues Major Warning But Is It Too Late To Escape A http://t.co/NVfKzv5FEx #brics #roberts #russia,1
+492,armageddon,Nowhere. Everywhere.,@RohnertParkDPS You're on stage now! Right under the lights! Isn't it funny?! Where do you get the goofballs with which you staff your PD?,0
+493,armageddon,#FLIGHTCITY UK ,**OFFICIAL VID** #TheReal >>> https://t.co/4i0Rjc9RQU >>> @TrubGME >>> #ARMAGEDDON Comin Soon!!,0
+495,armageddon,Perthshire ,"Well done Celtic Fingers crossed for Aberdeen tomorrow night!
+Armageddon eh.... ??",0
+496,army,,Beyonce Is my pick for http://t.co/nnMQlz91o9 Fan Army #Beyhive http://t.co/o91f3cYy0R 77,0
+498,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1402,0
+499,army,,5 Seconds of Summer Is my pick for http://t.co/J6WsePTXgA Fan Army #5SOSFAM http://t.co/qWgIwC9w7Z,0
+501,army,,22.Beyonce Is my pick for http://t.co/thoYhrHkfJ Fan Army #Beyhive http://t.co/WvJ39a3BGM,0
+502,army,,17.Beyonce Is my pick for http://t.co/thoYhrHkfJ Fan Army #Beyhive http://t.co/WvJ39a3BGM,0
+503,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1411,0
+504,army,twitch.tv/naturalemblem26,Seeing that army of whitewalkers was the very first thing that has slightly intrigued me on GoT so far,0
+506,army,cyprus,"Build your own kingdom and lead your army to victory! https://youtu.
+
+Start g this friend code: LZKTJNOX http://t.co/zZ0cEwEw64",0
+509,army,"Memphis, TN",Salvation Army hosts rally to reconnect fathers with children: The Salvation Army is hosting a back to school rallyÛ_ http://t.co/rDjpor3AZg,1
+512,army,,Vote for #Directioners vs #Queens in the 5th round of the @Billboard #FanArmyFaceOff http://t.co/Kgtxnnbj7y,0
+513,army,Studio,But if you build an army of 100 dogs and their leader is a lion all dogs will fight like a lion.,1
+514,army,"Hollywood, CA",'Show Me a Hero': TV Review http://t.co/KaCCPk85wf http://t.co/NniXodHIGc,0
+516,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1392,1
+517,army,New York,INFANTRY Mens Lume Dial Army Analog Quartz Wrist Watch Sport Blue Nylon Fabric - Full reaÛ_ http://t.co/hEP9k0XgHb http://t.co/80EBvglmrA,0
+518,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1441,0
+519,army,,VICTORINOX SWISS ARMY DATE WOMEN'S RUBBER MOP WATCH 241487 http://t.co/yFy3nkkcoH http://t.co/KNEhVvOHVK,1
+520,army,Pakistan,".: .: .: .: .: .: .: .: .: .: .: .: .: .: .: .: .: .: .: .: .: RT DrAyesha4: #IndiaKoMunTorJawabDo
+
+Indian Army kiÛ_ http://t.co/WJLJq3yA4g",0
+521,army,Mexico! ^_^,5 Seconds of Summer Is my pick for http://t.co/qcHV3JqOVK Fan Army #5SOSFAM http://t.co/gc0uDfnFgg ÌÑ1,0
+522,army,,Beyonce Is my pick for http://t.co/nnMQlz91o9 Fan Army #Beyhive http://t.co/o91f3cYy0R 78,0
+523,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1386,0
+524,army,Campinas Sp,"You da One
+
+#MTVSummerStar #VideoVeranoMTV #MTVHottest Britney Spears Lana Del Rey",0
+526,army,,One Direction Is my pick for http://t.co/y9WvqKGbBI Fan Army #Directioners http://t.co/S5F9FcOmp8,0
+527,army,"Harlem, New York",Stony Jackson is America's last hope as he leads an army of felons thus and army rejects against the army o Satan - http://t.co/0wbEcdMHQo,0
+528,army,New York,WWI WWII JAPANESE ARMY NAVY MILITARY JAPAN LEATHER WATCH WAR MIDO WW1 2 - Full read by eBay http://t.co/F9j3l2Yjl4 http://t.co/mwwWOWCayO,0
+530,army,,Beyonce Is my pick for http://t.co/nnMQlz91o9 Fan Army #Beyhive http://t.co/o91f3cYy0R 72,0
+531,army,,7.Beyonce Is my pick for http://t.co/thoYhrHkfJ Fan Army #Beyhive http://t.co/WvJ39a3BGM,0
+533,army,,Beyonce Is my pick for http://t.co/nnMQlz91o9 Fan Army #Beyhive http://t.co/o91f3cYy0R 66,0
+535,army,,6.Beyonce Is my pick for http://t.co/thoYhrHkfJ Fan Army #Beyhive http://t.co/WvJ39a3BGM,0
+536,army,"Washington, DC",POTUS appoints Brig. Gen. Richard G. Kaiser as member of the Mississippi River Commission. Learn more about the MRC: http://t.co/vdUKcV7YJy,0
+538,army,"Burbank,CA",@AP what a violent country get the army involved to help control the killings and bring back peace to the poor people.,1
+540,army,New York,WWI WWII JAPANESE ARMY NAVY MILITARY JAPAN LEATHER WATCH WAR MIDO WW1 2 - Full read by eBay http://t.co/QUmcE7W2tY http://t.co/KTKG2sDhHl,0
+542,army,,WWI WWII JAPANESE ARMY NAVY MILITARY JAPAN LEATHER WATCH WAR MIDO WW1 2 - Full read by eBay http://t.co/obfD7e4QcP http://t.co/yAZjE5OwVk,0
+543,army,,One Direction Is my pick for http://t.co/q2eBlOKeVE Fan Army #Directioners http://t.co/eNCmhz6y34 x1434,0
+544,army,? ,One Direction Is my pick for http://t.co/iMHFdaOWRd Fan Army #Directioners http://t.co/4fTZJk94Dt,0
+546,arson,,Two Jewish Terrorists Charged In Historic-Church Arson | The Ugly Truth http://t.co/iEksNFSbY7 http://t.co/VWCf3slkrW,0
+550,arson,"Spokane, Washington",Spokane authorities say they're struggling to solve arson cases like today's on Hamilton. http://t.co/Qbs2k01WzK http://t.co/mvLZIYsGLL,1
+551,arson,USA,Thousands attend a rally organized by Peace Now protesting the arson attack that took the life of an http://t.co/bvCKd9pdTi,1
+552,arson,"Charlotte, NC",Add Familia to the arson squad.,0
+556,arson,Our Empire State,Another fake hate crime Lesbians burn their own house down. What else Is new :http://t.co/66oBQmxImb,1
+558,arson,,Los Angeles Times: Arson suspect linked to 30 fires caught in Northern ... - http://t.co/xwMs1AWW8m #NewsInTweets http://t.co/TE2YeRugsi,1
+559,arson,,Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel http://t.co/eug6zHciun,1
+560,arson,Jerusalem,Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel http://t.co/KkbXIBlAH7,1
+561,arson,"Kingston, Pennsylvania",The Sound of Arson,0
+563,arson,"Milwaukee, WI",Owner of Chicago-Area Gay Bar Admits to Arson Scheme http://t.co/MYhOHvrHiL #LGBT | https://t.co/TM5HTHFDO0,0
+564,arson,Zero Branco,Wait What??? http://t.co/uAVFRtlfs4 http://t.co/85G1pCcCXG,0
+565,arson,Republic of Texas,Arson suspect linked to 30 fires caught in Northern California http://t.co/EJ2GHNAfHY,1
+567,arson,,Trial Date Set for Man Charged with Arson Burglary http://t.co/WftCrLz32P,1
+568,arson,bajaur,"After death of Palestinian toddler in arson
+attack Israel cracks down on Jewish",1
+569,arson,USA,Palestinian Teen Killed Amid Protests Against Arson Attack http://t.co/okVsImoGic,1
+570,arson,"Eldoret, kenya",#Kisii Police in Kisii hunt for students over failed arson plot: Police in Kisii hunt for students... http://t.co/m5SbFRrSn7 #CountyNews,1
+571,arson,ÛÊÛÊÛÊ,Mariah getting thick in the shoulders poor girl.,1
+574,arson,Jerusalem,Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel: Posters for Shira Banki and A... http://t.co/3GZ5zQQTHe,0
+575,arson,"Miami,FL",RelaxInPR: miprv: RT latimes: Arson suspect linked to 30 fires caught in Northern California http://t.co/ylhAyfaOOu,1
+576,arson,,Jewish leaders prayed at the hospital where a Palestinian family is being treated after arson http://t.co/Wf8iTK2KVx via @HuffPostRelig,1
+577,arson,"Los Angeles, CA",Owner of Chicago-Area Gay Bar Admits to Arson Scheme http://t.co/0TSlQjOKvh via @theadvocatemag #LGBT,0
+578,arson,"North-East Region, Singapore",@sayn_ae angel or arson,0
+579,arson,"Eldoret, kenya",#Kisii Police in Kisii hunt for students over failed arson plot: Police in Kisii hunt for students... http://t.co/5bdrFU1duo #CountyNews,1
+580,arson,,Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel http://t.co/Q4L7Dg56JM,1
+581,arson,Chicago,Owner of Chicago-Area Gay Bar Admits to Arson Scheme http://t.co/2Y9dnP5vtg via @theadvocatemag #LGBT | https://t.co/6XuL6DCOsh,0
+583,arson,EARTH ,Owner of Chicago-Area Gay Bar Admits to Arson Scheme http://t.co/UBFr1URAFc #LGBT | https://t.co/AlnV51d95x,0
+584,arson,"Jerusalem, Israel",Mourning notices for stabbing arson victims stir Û÷politics of griefÛª in Israel http://t.co/GbluHRrlto,1
+585,arson,,Owner of Chicago-Area Gay Bar Admits to Arson Scheme http://t.co/ZPxE3fMYNG #LGBT,1
+588,arson,"Menasha, WI",Arson suspect linked to 30 fires caught in Northern California http://t.co/wnuqQAtTTP (via @latimes),1
+589,arson,,Tennessee lesbian couple faked hate crime and destroyed own home with arsonÛ_ http://t.co/10mUEY8PXJ #Lesbian,1
+592,arson,,Arson suspect linked to 30 fires caught in Northern California - Los Angeles Times http://t.co/PrRB4fhXtv,1
+594,arson,,Arson suspect linked to 30 fires caught in Northern California http://t.co/u1fuWrGK5U,1
+598,arsonist,ss,@_301DC @Cloudy_goldrush i hate white people mo,1
+599,arsonist,Atlanta,#NOWPLAYING Arsonist MC - So Impressed - @ARSONISTMUSIC http://t.co/1ElreH1jLJ,0
+600,arsonist,Earth,Alleged East Bay serial arsonist arrested http://t.co/WR48AQTUm7,1
+603,arsonist,ss,@Safyuan just a minor citation for possesion of a decriminalized substance im not facing any time,0
+604,arsonist,Worldwide,Suspected serial arsonist arrested in Calif. http://t.co/PzotPDGAkI,1
+606,arsonist,Bleak House,Arson suspect linked to 30 fires caught in Northern California http://t.co/mmGsyAHDzb,1
+607,arsonist,heccfidmss@gmail.com,@local_arsonist @diamorfiend the legal system NEVER forgets,0
+608,arsonist,ss,@Casper_rmg u on dick,0
+609,arsonist,toronto,Bloor/Ossington arsonist also burned a mattress on Northumberland St #cbcto http://t.co/wpDvT31sne,0
+611,arsonist,[ Blonde Bi Fry. ],'wHeRE's mY aRsOnISt aT???',0
+612,arsonist,America,If you don't have anything nice to say you can come sit with me.,0
+613,arsonist,NYC :) Ex- #Islamophobe,#Vegetarian #Vegan Video shows arsonist torching popular BK restaurant Strictly Vegetarian... http://t.co/kxpLYoM9RR #GoVegan #UniteBlue,0
+614,arsonist,SF Bay Area,#Arsonist arrested for setting many fires. WATCH tonightÛªs other #headlines: http://t.co/sqgogJ3S5r. #Nightbeat @VeronicaDLCruz #2MinuteMix,1
+615,arsonist,"Orange County, California",Video Captures Man Removing American Flag From Long Beach CA Home Burning It; Arsonist Sought http://t.co/JP2QlrunjJ http://t.co/jbpgkGOwSi,0
+617,arsonist,ss,@58hif my trick is to think about nasty things,0
+619,arsonist,"Winston Salem, North Carolina",#Spotlight Take Me To Paradise by Arsonist MC #WNIAGospel http://t.co/1he4UfaWZm @arsonistmusic http://t.co/BNhtxAEZMM,0
+621,arsonist,ss,who makes these? http://t.co/28t3NWHdKy,0
+622,arsonist,,on town of salem i just melted ice cube bc im the arsonist :D,0
+623,arsonist,"Adelaide, South Australia",Arsonists being blamed for a blaze at a plastics recycling business in Adelaide | @pcaldicott7 reports. #7NewsAdl http://t.co/r1Xwdnvb0g,0
+624,arsonist,ss,i be on that hotboy shit,0
+625,arsonist,"WASHINGTON,DC",Zodiac Girl feat Trey Dupree (Produced By Sparkz Beatz) | Chuck Da Arsonist http://t.co/HDKd9J2lw0,0
+628,arsonist,,@local_arsonist LMFAO,0
+630,arsonist,California,Alleged East Bay serial arsonist arrested #SanFrancisco - http://t.co/ojuHfkHVb2,1
+631,arsonist,ss,@_Doofus_ @diamorfiend im jokin still cant be on moves:/,0
+633,arsonist, snapchat // fvck_casper ,@local_arsonist I guess u can say that it's just some shit I was thinking about,0
+635,arsonist,New York,Arsonist Sets NYC Vegetarian Restaurant on Fire: Police #NewYork - http://t.co/Nr7usT3uh8,1
+636,arsonist,,I liked a @YouTube video from @slimebeast http://t.co/ulr6MyklnH Town of Salem | How to Win as The Arsonist,0
+637,arsonist,ss,@Casper_rmg @BestComedyVine whats cracking cuz,0
+638,arsonist,ss,smoke good fuck eat drink drive nice car wear all green mink,0
+640,arsonist,ss,kill i got court the day after earl,0
+641,arsonist,,@local_arsonist lmao but real live you should go,0
+642,arsonist,United States,Owner of Chicago-Area Gay Bar Admits to Arson Scheme: Frank Elliott pleaded guilty to hiring an arsonist to to... http://t.co/jCFEhrHLq8,0
+643,arsonist,,Trusting Iran to stop terrorism is like inviting an arsonist to join the fire brigade - Telegraph http://t.co/2Z2HTDjQZD,0
+644,arsonist,,Big Top Burning The True Story Of An Arsonist A Missing Girl Û_ : http://t.co/QxH1H61cwD .,1
+646,attack,"Dallas, TX",Stay vigilent. Civil liberties are under constant attack. #nativehuman #myreligion https://t.co/WWu070Tjej,1
+649,attack,NYC,Credit to @pfannebeckers for inspiring me to rediscover this fantabulous #tbt http://t.co/wMHy47xkiL,0
+651,attack,,http://t.co/pTKrXtZjtV Nashville Theater Attack: Will Gun Grabbers Now Demand ÛÏHatchet Control?Û,1
+652,attack,Location,"BREAKING: Terror Attack On
+Police Post #Udhampur",1
+653,attack,Selena | Britney | Hilary,Demi stans really think Heart Attack sold 5/6 million copies ??,0
+654,attack,,it scares me that there's new versions of nuclear attack warnings like just knowing that governments still prepare for them,1
+655,attack,,ISIL claims suicide bombing at Saudi mosque that killed at least 15 http://t.co/Y8IcF89H6w http://t.co/t9MSnZV1Kb,1
+656,attack,Ireland,@DatTomm the funniest part about that twitter is the feminists that try to attack it 4Head,0
+657,attack,Freeport IL. USA,Horrific attack on wife by muslim in Italy http://t.co/nY3l1oRZQb LiveLeak #News,1
+658,attack,,Ûª93 blasts accused Yeda Yakub dies in Karachi of heart attack http://t.co/mfKqyxd8XG #Mumbai,1
+659,attack,Dubai,@etribune US Drone attack kills 4-suspected militants in North Waziristan @AceBreakingNews https://t.co/jB038rdFAK,1
+660,attack,"Tucson, Az",Suspect in latest theater attack had psychological issues http://t.co/3huhZxliiG,1
+661,attack,India,Militants attack police post in Udhampur; 2 SPOs injured | LiveMint http://t.co/Rptouz2iJs | http://t.co/69mLhfefhr #AllTheNews,1
+662,attack,Seattle WA,BREAKING: Obama Officials GAVE Muslim Terrorist the Weapon Used in Texas Attack http://t.co/qi8QDw5dFG,1
+664,attack,,Delhi Government to Provide Free Treatment to Acid Attack Victims in Private Hospitals http://t.co/H6PM1W7elL,1
+665,attack,Bellevue NE,New post from @darkreading http://t.co/8eIJDXApnp New SMB Relay Attack Steals User Credentials Over Internet,1
+667,attack,"West Bank, Gaza Strip",Israeli forces raid home of alleged car attack suspect http://t.co/3GVUS8NPpy #palestine,1
+669,attack,Û¢FLGÛ¢,Just had a heart attack because I thought my goat was dead. ???? don't worry Rocket is okay. ??,0
+671,attack,,I'm not gonna lie I'm kinda ready to attack my Senior year ??????????,0
+672,attack,"Scotland, United Kingdom","'Left hand side of a diamond is a graveyard shift have to attack and defend'
+The right handside no have to do that too you fucking idiot?",0
+674,attack,,#volleyball Attack II Volleyball Training Machine - Sets Simulation - http://t.co/dCDeCFv934 http://t.co/dWBC1dUvdk,1
+675,attack,Online 24/7. Not even kidding.,Notley's tactful yet very direct response to Harper's attack on Alberta's gov't. Hell YEAH Premier! http://t.co/rzSUlzMOkX #ableg #cdnpoli,1
+677,attack,,Police: Assailant in latest US movie theatre attack was homeless had psychological issues http://t.co/zdCvlYq6qK,1
+679,attack,rowyso dallas ,@CaIxxum5SOS thanks for the damn heart attack,0
+680,attack,"Halton, Ontario",Suspect in latest US theatre attack had psychological issues http://t.co/OnPnBx0ZEx http://t.co/uM5IcN5Et2,1
+681,attack,Mumbai,India shud not give any evidence 2 pak.They will share with terrorists & use for next attack.Share with oth contries https://t.co/qioPbTIUVu,1
+682,attack,"portland, oregon",illegal alien released by Obama/DHS 4 times Charged With Rape & Murder of Santa Maria CA Woman Had Prior Offenses http://t.co/MqP4hF9GpO,1
+683,attack,FIMAK A.S Ist Bolge Muduru,Strongly condemn attack on ARY news team in Karachi. A cowardly act against those simply trying to do their job!,1
+684,attack,,Nashville Theater Attack: Will Gun Grabbers Now Demand ÛÏHatchet Control?Û http://t.co/OyoGII97yH,1
+685,attack,London.,The fact that the atomic bombs were called 'Little Boy' and 'Fat man' says a lot about the mentality that went into the attack.,1
+686,attack,#UNITE THE BLUE ,@blazerfan not everyone can see ignoranceshe is Latinoand that is All she can ever benothing morebut an attack dog 4 a hate group GOP,0
+687,attack,,Heart disease prevention: What about secondhand smoke? http://t.co/YdgMGBrYL2,0
+688,attack,"Dayton, Ohio",A Dayton-area org tells me it was hit by a cyber attack: http://t.co/7LhKJz0IVO,1
+689,attack,,Attack on Titan game on PS Vita yay! Can't wait for 2016,0
+690,attack,Global,[infowars] Nashville Theater Attack: Will Gun Grabbers Now Demand ÛÏHatchet Control?Û http://t.co/n3yJb8TcPm #nwo,1
+691,attack,ph,anxiety attack ??,0
+697,attacked,"Port Jervis, NY",My dog attacked me for my food #pugprobs,0
+699,attacked,City Of Joy,Cop injured in gunfight as militants attack Udhampur police post: Suspected militants attacked a police post i... http://t.co/2h0dPMv2Ef,1
+700,attacked,"Los Angeles, CA",@envw98 @NickCoCoFree @JulieDiCaro @jdabe80 I asked how did he feel attacked by julie. I asked if he was frail. That is all.,0
+702,attacked,"Texas, USA",@messeymetoo I feel attacked,0
+704,attacked,1/3 of the blam squad ,I'm feeling so attacked https://t.co/CvkQiGr1AZ,0
+705,attacked,CCH ,Once again black men didn't make it that way. White men did so why are black men getting attacked https://t.co/chkP0GfyNJ,0
+706,attacked,atx,I cant believe a fucking cis female is going to somehow claim to be offended over a transgendered female who's been attacked by media,0
+709,attacked,MAURITIUS,Israeli helicopters that attacked civilians in Gaza just completed exercises in Greece.,1
+710,attacked,AKRON OHIO USA,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/5qYcZyWKgG,1
+712,attacked,,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/U0kEOe5fMt,1
+713,attacked,,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/f5MiuhqaBy,1
+714,attacked,,#PT: The unit attacked by IS was responsible for targeting Muslim Scholars and imprisoning the youth. http://t.co/f4LhfmEhzh,1
+716,attacked,,Telnet attacked from 124.13.172.40 (STREAMYX-HOME-SOUTHERN MY),1
+717,attacked,London,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/wGWiQmICL1,1
+719,attacked,london / st catharines ?,#TBT Remember that time Patrick Kane attacked a cab driver over .20,0
+720,attacked,,im feeling attacked http://t.co/91jvYCxXVi,0
+721,attacked,Peshawar,IK Only Troll His Pol Rivals Never Literally Abused Them Or Attacked Their Families. While All Of Them Literally Abuse IK. Loosers,0
+724,attacked,,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/NhxSe3RTHX,1
+725,attacked,"LEALMAN, FLORIDA",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/LHBZHWq4B9,1
+726,attacked,"Los Angeles, CA",@envw98 @NickCoCoFree @JulieDiCaro @jdabe80 Why am I the worst person? Questioning how julie attacked him? Do you guys have no empathy?,0
+727,attacked,"San Francisco, CA",Kelly Osbourne attacked for racist Donald Trump remark about Latinos on The View http://t.co/7nAgdSAdWP,1
+728,attacked,#GDJB #ASOT,@eunice_njoki aiii she needs to chill and answer calmly its not like she's being attacked,0
+729,attacked,"Groningen, Netherlands, Europe",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/mXZ7yX8ld1,1
+730,attacked,"Livingston, IL U.S.A.",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/e4YDbM4Dx6,1
+731,attacked,Arundel ,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/T1aa5Ov7Eg,1
+732,attacked,,I attacked Robot-lvl 19 and I've earned a total of 6615434 free satoshis! http://t.co/DMLJ1aGoTw #robotcoingame #Bitcoin #FreeBitcoin,0
+734,attacked,America,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/EMDJNNltP0,1
+735,attacked,"Anna Maria, FL",@christinalavv @lindsay_wynn3 I just saw these tweets and I feel really attacked,0
+736,attacked,USA,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/a6wmbnR51S,1
+737,attacked,israel,Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/ETg0prBP4G,1
+738,attacked,"The Hammock, FL, USA",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/yUBKHf9iyh,1
+739,attacked,??????????????????,TV program I saw said US air plane flew to uranium mine in Fukushima and attacked by machine gun when student army were digging it.,1
+740,attacked,"SÌ£o Paulo SP, Brasil",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/e4wK8Uri8A,1
+744,attacked,in Dimitri's arms,@MageAvexis < things. And what if we get attacked?,0
+745,attacked,"Oslo, Norway",Christian Attacked by Muslims at the Temple Mount after Waving Israeli Flag via Pamela Geller - ... http://t.co/1pDJoq4Jc1,1
+746,avalanche,Los Angeles,#WeLoveLA #NHLDucks Avalanche Defense: How They Match vs St. Louis Blues http://t.co/9v1RVCOMH2 #SportsRoadhouse,0
+748,avalanche,"Loughton, Essex, UK",I liked a @YouTube video http://t.co/TNXQuOr1wb Kalle Mattson - 'Avalanche' (Official Video),0
+751,avalanche,guaravitas,we'll crash down like an avalanche,0
+752,avalanche,,#Colorado #Avalanche Men's Official Colorado Avalanche Reebok T-Shirt XL Blue 100% Cotton http://t.co/ZNSvsTGwx3 #NHL #Hockey,0
+753,avalanche,Score More Goals Buying @,2 TIX 10/3 Frozen Fury XVII: Los Angeles Kings v Avalanche 103 Row:AA MGM Grand http://t.co/kBtZZZG2Tp,0
+754,avalanche,NEW YORK,I BET YOU DIDNT KNOW I KICK BOX TOO! https://t.co/rBrw8pWiPJ,0
+755,avalanche,Ireland,A little piece I wrote for the Avalanche Designs blog! I'd appreciate it greatly if you checked it out :-) https://t.co/rfvjh58eF2,0
+758,avalanche,,PATRICK ROY 1998-99 UPPER DECK SPX #171 FINITE 1620 MADE COLORADO AVALANCHE MINT http://t.co/uHfM1r3Tq5 http://t.co/QulgaKebHB,0
+759,avalanche,UK,Musician Kalle Mattson Recreates 34 Classic Album Covers in Clever Music Video for 'Avalanche' http://t.co/yDJpOpH1DW,0
+761,avalanche,"London, Kent & SE England.",Beautiful Sweet Avalanche Faith and Akito roses with lots of frothy gyp. http://t.co/RaqUpzFkJY #weddinghour http://t.co/quNxocXCgA,0
+762,avalanche,Score Team Goals Buying @,1-6 TIX Calgary Flames vs COL Avalanche Preseason 9/29 Scotiabank Saddledome http://t.co/5G8qA6mPxm,0
+763,avalanche,,Secrets up avalanche: catechize inner self for the confidential communication as respects creating worth in len...,0
+767,avalanche,"New York, NY",the fall of leaves from a poplar is as fully ordained as the tumbling of an avalanche - Spurgeon,0
+770,avalanche,South Central Wales,I saw two great punk bands making original music last week. Check em out here!! @GHOSTOFTHEAV @MontroseBand https://t.co/WdvxjsQwic,0
+773,avalanche,,GREAT PERFORMANCE CHIP FUEL/GAS SAVER CHEVY TAHOE/BLAZER/AVALANCHE/S-10 http://t.co/iCrZi5TqC5 http://t.co/ONxhKfHn2a,0
+774,avalanche,"Jersey City, New Jersey",Musician Kalle Mattson Recreates 34 Classic Album Covers in Clever Music Video for Û÷AvalancheÛª http://t.co/VBSwhz4s2V,0
+775,avalanche,,driving the avalanche after having my car for a week is like driving a tank,1
+777,avalanche,,Free Ebay Sniping RT? http://t.co/RqIPGQslT6 Chevrolet : Avalanche Ltz Lifted 4x4 Truck ?Please Favorite & Share,0
+779,avalanche,"Denver, CO",Chiasson Sens can't come to deal #ColoradoAvalanche #Avalanche http://t.co/2bk7laGMa9 http://t.co/bkDGCfsuiQ,1
+781,avalanche,Brasil,Paul Rudd Emile Hirsch David Gordon Green 'Prince Avalanche' Q&A | Filmmakers at Google http://t.co/e4QonKzndZ #entretenimento #Video,0
+782,avalanche,Buy Give Me My Money ,Great one time deal on all Avalanche music and with purchase get a Neal Rigga shirt http://t.co/4VIRXkgMpC,0
+783,avalanche,"505 W. Maple, Suite 100",.@bigperm28 was drafted by the @Avalanche in 2005 (rd. 4 #124) overall. Played last season in @UtahGrizz. http://t.co/gPGTAfMKt0,0
+784,avalanche,Buy Give Me My Money ,I HAVE GOT MORE VIDEOS THAN YOU RAPPERS GOT SONGS! http://t.co/pBLvPM6C27,0
+786,avalanche,Buy Give Me My Money ,@funkflex yo flex im here https://t.co/2AZxdLCXgA,0
+787,avalanche,Philippines,You are the avalanche. One world away. My make believing. While I'm wide awake.,0
+788,avalanche,Freeport il ,The possible new jerseys for the Avalanche next year. ???? http://t.co/nruzhR5XQu,0
+790,avalanche,Canada,What a feat! Watch the #BTS of @kallemattson's incredible music video for #Avalanche: https://t.co/3W6seA9tuv ????,0
+791,avalanche,World,Avalanche City - Sunset http://t.co/48h3tLvLXr #nowplay #listen #radio,1
+794,avalanche,,Chevrolet : Avalanche LT 2011 lt used 5.3 l v 8 16 v automatic 4 wd pickup truck premium bÛ_ http://t.co/OBkY8Pc89H http://t.co/dXIRnTdSrd,1
+795,avalanche,"Danville, VA",No snowflake in an avalanche ever feels responsible.,0
+796,battle,New York,STAR WARS POWER OF THE JEDI COLLECTION 1 BATTLE DROID HASBRO - Full read by eBay http://t.co/xFguklrlTf http://t.co/FeGu8hWMc4,1
+797,battle,,CIVIL WAR GENERAL BATTLE BULL RUN HERO COLONEL 2nd NEW HAMPSHIRE LETTER SIGNED ! http://t.co/Ot0tFFpBYB http://t.co/zaRBwep9LD,1
+798,battle,,Dragon Ball Z: Battle Of Gods (2014) - Rotten Tomatoes http://t.co/jDDNhmrmMJ via @RottenTomatoes,0
+799,battle,UK Great Britain ,I added a video to a @YouTube playlist http://t.co/wedWyn9kfS World Of Tanks - Battle Assistant Mod Bat Chat Arti kaboom,0
+800,battle,NYC,"YA BOY CLIP VS 4KUS FULL BATTLE
+
+@15MofeRadio @Heavybag201 @battle_dom @QOTRING @BattleRapChris @Hughes1128
+
+https://t.co/7SPyDy1csc",0
+801,battle,Jerusalem!,Indeed!! I am fully aware of that battle! I support you in that fight!! https://t.co/MctJnZX4H8,1
+802,battle,,It's baaaack! Petersen's Bowhunting Battle of the Bows. Make sure you head on over and cast your vote for your... http://t.co/FJ73gDvg2n,0
+803,battle,,"#Tb #throwback ??
+
+??~ You want a battle? Here's a War! ~ ?? https://t.co/B0ZJWgmaIW",0
+804,battle,"San Jose, CA",Kelby Tomlinson mild-mannered 2nd baseman for a great metropolitan team fights a never-ending battle for hits RBI and the #SFGiants way.,0
+805,battle,USA,Black Eye 9: A space battle occurred at Star M27329 involving 1 fleets totaling 1236 ships with 7 destroyed,1
+806,battle,San Francisco,What really happened in the Taken King Story Trailer. A space battle that ripped a hole in Saturn. @EyTay @neur0sis http://t.co/ZYRZX6dfki,0
+807,battle,,THESE AFTER BATTLE ANIMATIONS ARE SO FUCKING MUCH,0
+808,battle,"Dallas, TX",See what happens with NO Battle of the Block @CBSBigBrother!?! ???? finally,0
+809,battle,"Baton Rouge, LA",#DU19 who gon get in this rap battle with me,0
+810,battle,Use #TMW in tweets get #RT,Do Your Own Thing: The Battle of Internal vs External Motivation: http://t.co/w9P3hAuHEi,0
+812,battle,Earth,Check out this item I just got! [Phantasmal Cummerbund] http://t.co/qrHJEI7gRq #Warcraft,0
+814,battle,,A young German stormtrooper engaged in the Battle of the Somme 1916. [800 ÌÑ 582 ] http://t.co/yxvMifLvc4,1
+815,battle,,I liked a @YouTube video http://t.co/9Vw0uQQi1y Marvel VS DC (Avengers Battle!),0
+817,battle,Utah,@UtahCanary sigh daily battle.,0
+818,battle,Wisconsin,@SexyDragonMagic I've come to the realization that I just don't have the attention span for mass battle games. Both painting and playing.,0
+819,battle,"West Richland, WA",@DetroitPls interested to see who will win this battle,0
+820,battle,CHICAGO (312),Battle of the GOATS https://t.co/ofECs6tcvC,0
+822,battle,New York,STAR WARS POWER OF THE JEDI COLLECTION 1 BATTLE DROID HASBRO - Full read by eBay http://t.co/yI30ZgiZsW http://t.co/2jGVhw7YZs,0
+823,battle,USA,Black Eye 9: A space battle occurred at Star O784 involving 2 fleets totaling 4103 ships with 50 destroyed,0
+826,battle,Australia,"#LonePine remembered around Australia as 'descendants' grow via @666canberra #Gallipoli #WW1
+http://t.co/T4fvVnRPc5 http://t.co/0zZnbVFUVO",0
+828,battle,California,how did I miss that Gary Busey's son plays DIXIE on his electronic green fiddle during the post-battle celebration sequence,0
+829,bioterror,Washington D.C.,News: FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/xteZGjfs8A,1
+832,bioterror,NC,FedEx no longer will transport bioterror germs http://t.co/qfjjDxes7G via @USATODAY,0
+833,bioterror,,USA TODAY: .@FedEx will no longer to transport bioterror pathogens after ... - http://t.co/iaDlSlqdpd #NewsInTweets http://t.co/o8y1suL4Ow,0
+834,bioterror,"West Virginia, USA",FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/HQsU8LWltH via @usatoday,1
+835,bioterror,,Jacksonville Busines FedEx stops shipping potential bioterror pathogens http://t.co/sHzsYmaUSi,1
+836,bioterror,British girl in Texas,FedEx will no longer transport bioterror pathogens in wake of anthrax lab mishaps http://t.co/lHpgxc4b8J,0
+837,bioterror,"Silver Spring, MD",.@APHL responds: FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/cGdj3dRso9,1
+838,bioterror,USA,#News FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps (say what?): åÊFedEx no... http://t.co/K0Y7xFxmXA #TCOT,1
+840,bioterror,"Phoenix, AZ",FedEx to stop transporting bioterror germs after lab mishaps: FedEx has stopped transporting certain research ... http://t.co/y3dM9uLqxG,1
+841,bioterror,"Atlanta, GA",FedEx no longer will ship potential bioterror pathogens http://t.co/CHORr2XOVp via @AtlBizChron,0
+842,bioterror,"Manhattan, NY",#frontpage: #Bioterror lab faced secret sanctions. #RickPerry doesn't make the cut for @FoxNews #GOPDebate http://t.co/fZujg7sXJg @USATODAY,0
+843,bioterror,"Wilmington, DE",FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/qZQc8WWwcN via @usatoday,0
+845,bioterror,,House Energy & Commerce subcommittee to hold 7/28 hearing of CDC oversight of bioterror labs Army anthrax mishaps. httÛ_,1
+846,bioterror,Memphis,FedEx not willing to transport research specimens of potential bioterror pathogens in wake of anthrax lab mishaps http://t.co/cM8UnI1mRG,1
+848,bioterror,iTunes,#world FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/wvExJjRG6E,1
+849,bioterror,,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/P96rgBbaYL #news #phone #apple #mobile,1
+851,bioterror,United States,RT alisonannyoung: EXCLUSIVE: FedEx no longer to transport research specimens of bioterror pathogens in wake of anthrax lab mishaps Û_,0
+852,bioterror,"Oxford, MS",Hmm...this could be problem for some researchers: FedEx no longer to transport select agents http://t.co/9vIibxgjAV via @usatoday,1
+853,bioterror,,#world FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/5zDbTktwW7,0
+856,bioterror,US,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/pWAMG8oZj4,1
+857,bioterror,"Atlanta, GA",FedEx no longer will ship potential bioterror pathogens - FedEx Corp. (NYSE: FDX) will no longer deliver packages ... http://t.co/2kdq56xTWs,1
+859,bioterror,,FedEx no longer will ship potential bioterror pathogens - Atlanta Business Chronicle http://t.co/YLLQJljiIQ,0
+860,bioterror,"Pelham, AL","Thank you @FedEx for no longer shipping live microbes for the Department of Defense
+
+http://t.co/zAHNEwJrI8",0
+863,bioterror,New York,#NowPlaying at #orchardalley in #LES of #nyc 'bioterror- manufactured fear and state repression' @abcnorio #gardens http://t.co/Ba2rRXUgsG,1
+864,bioterror,"Atlanta, GA",FedEx no longer will transport bioterror germs http://t.co/SHrhkfj1bC via @usatoday,0
+866,bioterror,"Jacksonville, FL",[JAX Biz Journal] FedEx stops shipping potential bioterror pathogens http://t.co/R33nCvjovC,1
+867,bioterror,"Arkansas, Jonesboro",USATODAY: On today's #frontpage: #Bioterror lab faced secret sanctions. #RickPerry doesn't make the cut for FoxNewÛ_ http://t.co/5uKOHk7SoB,1
+868,bioterror,Across the Atlantic,#BreakingNews http://t.co/gAN14PW9TG FedEx no longer willing to transport research specimens of potential bioterÛ_ http://t.co/5n4hUsewLy,0
+870,bioterror,"Melbourne, Florida",FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/c0p3SEsqWm via @usatoday,1
+871,bioterror,Worldwide,FedEx stops shipping potential bioterror pathogens http://t.co/tkeOAeDQKq #trucking,1
+872,bioterror,,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/MqbYrAvK6h,1
+873,bioterror,Over the Moon...,#FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/S4SiCMYRmH,1
+874,bioterror,Extraterrestrial Highway,FedEx no longer shipping bioterror germs - WXIA-TV | @scoopit http://t.co/ZQqJrQsbJm,0
+875,bioterror,,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/hrqCJdovJZ,0
+876,bioterror,"Espoo, Finland",USATODAY: On today's #frontpage: #Bioterror lab faced secret sanctions. #RickPerry doesn't make the cut for FoxNewÛ_ http://t.co/xFHh2XF9Ga,1
+877,bioterror,,FedEx no longer to transport bioterror germs in wake of anthrax lab mishaps http://t.co/4M5UHeyfDo via @USATODAY,1
+878,bioterror,"Washington, D.C., area",Biolab safety concerns grow: FedEx stops transporting certain specimens. Research facilities 'dumbfounded' by action. http://t.co/RUjV4VPnBV,0
+881,bioterrorism,,To fight bioterrorism sir.,1
+882,bioterrorism,OES 4th Point. sisSTAR & TI,I liked a @YouTube video http://t.co/XO2ZbPBJB3 FEMA REGION III TARGETED for BIOTERRORISM !!! NASA - JAPAN ROCKET LAUNCH with LITHIUM,1
+883,bioterrorism,"Sydney, New South Wales",#anthrax #bioterrorism CDC To Carry Out Extensive Review of Lab Safety And Pathogen Handling Procedures http://t.co/bCLqpWFDOd,1
+884,bioterrorism,,Firepower in the lab [electronic resource] : automation in the fight against infectious diseases and bioterrorism /Û_ http://t.co/KvpbybglSR,0
+885,bioterrorism,,@CAgov If 90BLKs&8WHTs colluded 2 take WHT F @USAgov AUTH Hostage&2 make her look BLK w/Bioterrorism&use her lgl/org IDis ID still hers?@VP,1
+886,bioterrorism,,@DarrellIssa Does that 'great Iran deal' cover bioterrorism? You got cut off terrible of them. Keep up the good work.,1
+888,bioterrorism,"San Francisco, CA",A Tale of Two Pox - Body Horrors http://t.co/W2IXT1k0AB #virus #infectiousdiseases #bioterrorism,1
+890,bioterrorism,,Bioterrorism public health superbug biolabs epidemics biosurveillance outbreaks | Homeland Security News Wire http://t.co/cvhYGwcBZv,1
+891,bioterrorism,,"Creation of AI
+Climate change
+Bioterrorism
+Mass automation of workforce
+Contact with other life
+Wealth inequality
+
+Yea we've got it easy",0
+892,bioterrorism,"Netherlands,Amsterdam-Virtual ",In Lies We Trust #dvd CIA Hollywood and Bioterrorism Len Horowitz Vaccines Nwo http://t.co/6PAGJqfbzK http://t.co/qzizElxbyr,0
+893,bioterrorism,,@O_Magazine satan's daughter shadow warrior in 50ft women aka transgender mode ps nyc is about to fold extra extra center of bioterrorism,1
+894,bioterrorism,New York City,@DrRichardBesser Yes. I would think not. But since college 88-92 it's been difficult not to think of bioterrorism esp. bc 'dispersed.',1
+895,bioterrorism,"Hudson Valley, NY",Volunteers needed to participate in Emergency Preparedness drill simulating a bioterrorism disaster: http://t.co/NWV2RvGHf3 @HVnewsnetwork,1
+896,bioterrorism,"Philadelphia, PA",@MeyerBjoern @thelonevirologi @MackayIM of a major American newspaper running a series on all the alleged bioterrorism research going on 2/n,1
+898,bioterrorism,,To fight bioterrorism sir.,0
+899,bioterrorism,,CDC has a pretty cool list of all bioterrorism agents :3,1
+902,bioterrorism,timeline kamu,Government Experts Concerned About Possible Bioterrorism Using GM Organisms: Scientists are concerned that the... http://t.co/SuMe5prO0F,1
+903,bioterrorism,,Does This Prepare Us? HHS Selects 9 Regional Special #Pathogen Treatment Centers #Bioterrorism #Infectious #Ebola http://t.co/Qmo1TxxDkj,0
+905,bioterrorism,,@StationCDRKelly Any Support Sys 4 @USAgov AUTH taken Hostage by BLK US clergyforced 2 exist younger&grossly disfigured by BIOTERRORISM?@AP,1
+906,bioterrorism,,70 won 70...& some think possibility of my full transformation is impossible. I don't quite like medical mysteries. BIOTERRORISM sucks.,0
+907,bioterrorism,,To fight bioterrorism sir.,1
+911,bioterrorism,"Budapest, Hungary",How about a book describing the future of therapies technologies sport sexuality bioterrorism and diagnosis? #digitalhealth #hcsm,0
+912,bioterrorism,,@APhiABeta1907 w/ugliness due 2 your 'ugly'@AMESocialAction Frat's BIOTERRORISMI'm she who's @FBI ID U $tolewant'g another in my Home.@ABC,1
+915,bioterrorism,,@HowardU If 90BLKs&8WHTs colluded 2 take WHT F @USAgov AUTH Hostage&2 make her look BLK w/Bioterrorism&use her lgl/org IDis ID still hers?,1
+916,bioterrorism,,To fight bioterrorism sir.,0
+919,bioterrorism,,@cspanwj If 90BLKs&8WHTs colluded 2 take WHT F @USAgov AUTH Hostage&2 make her look BLK w/Bioterrorism&use her lgl/org IDis ID still hers?,1
+921,bioterrorism,,@ONU_France 74/75 Bioterrorism on '@Rockefeller_Chi/@RockefellerUniv'Heiress 2 evade lgl efforts 2 prosecute BLKs 4 @HarvardU kidnap'g.@AFP,0
+923,bioterrorism,,The #IranDeal only covers nuclear activity. What are they doing about Bioterrorism? Iran has broken at least 27 other agreements.,1
+926,bioterrorism,Searching for Bae ,The Threat | Anthrax | CDC http://t.co/q6oxzq45VE via @CDCgov,1
+928,bioterrorism,"Sydney, New South Wales",#bioterrorism Authorities allay #glanders fears ahead of Rio Olympic equestrian test event http://t.co/UotPNSQpz5 via @HorsetalkNZ,1
+929,blaze,California,@Kaotix_Blaze craving u,0
+930,blaze,,I've been by the pool all day #raisinfingers,0
+931,blaze,,Do you know anyone looking to move to Hammond OR? Share this listing! http://t.co/3xn1soh4Bb,0
+932,blaze,,Life is amazin same time its crazy niggas dey wanna blaze me hate it because i made it all it took was dedication n some motivation,0
+934,blaze,"Eagle Mountain, Texas ",Blaze is my bro http://t.co/UdKeSJ01mL,0
+935,blaze,Columbus,@Shayoly yes I love it,0
+936,blaze,,See a virtual tour of one of our listings on 547 Fir St Cannon Beach OR listed by Dorrie Caruana. http://t.co/nF46PAYTvw,0
+938,blaze,"Temecula, CA",Pendleton media office said only fire on base right now is the Horno blaze.,1
+939,blaze,"Atlanta,Ga",Welcome @djryanwolf @djcoreygrand @djknyce @djoneplustwo @OfficialCoreDJs #Family #Cleveland #StandUp @IAMTONYNEAL http://t.co/P6GqmCTgLj,0
+940,blaze,"Fresno, CA",Love living on my own. I can blaze inside my apt or on the balcony,1
+941,blaze,,@bellalinn alrighty Hit me up and we'll blaze!!,0
+942,blaze,,i blaze jays fuck the dutch slave trade.,0
+944,blaze,,My hair is poverty at the moment need to get a fade before the weekend gets here,0
+945,blaze,Australia,Property losses from California wildfire nearly double as week-old blaze rages http://t.co/E0UUsnpsq5,1
+946,blaze,"Raleigh Durham, NC",#breaking Firefighters battling blaze at east Cary condo building http://t.co/mIM8hH2ce6,1
+947,blaze,ducked off . . . ,niggas love hating.,0
+948,blaze,,@audacityjamesta Don't be like that babes <3 you'll have a ball of fun with me at LAN! :),0
+951,blaze,Rio de Janeiro,I liked a @YouTube video from @iamrrsb http://t.co/PdEHd1tCpk Minecraft Skywars - O BLAZE QUE USA HACK E FLECHADAS SINISTRAS!,0
+952,blaze,,What Dems do. Blaze covered months ago.Chicago police detained thousands of black Americans at interrogation facility http://t.co/UWItVBsbnC,0
+953,blaze,302,Yo I got bars and I'm not even a rapper,0
+955,blaze,"Columbus, OH",UGH Y DID BLAZE PUT THE CALORIES BY THEIR PIZZAS? OK COOL #thisispublichealth,0
+956,blaze,PA,pic of me and blaze in a fort when we were kids i look like a jackass stuffin my face like that ?????? http://t.co/aE9cPIexAK,0
+957,blaze,,looks like a year of writing and computers is ahead. http://t.co/CyXbrZXWq4,0
+958,blaze,Mo.City,@Beautiful_Juic1 just letting you know,0
+959,blaze,"Tripsburg, ms.",@BabySweet420 I'm mad 420 in your name & you don't blaze.,0
+960,blaze,Durham N.C ,@GuiltyGearXXACP yeah I know but blaze blue dont have a twitter lol I drew this a few weeks ago http://t.co/sk3l74FLzZ,0
+961,blaze,Delhi,#socialmedia news - New Facebook Page Features Seek to Help Personalize the Customer Experience http://t.co/nbizaTlsmV,0
+962,blaze,ARIZONA,@DJJOHNBLazE shout out blaze the hottest DJ in the Sothwest,0
+963,blaze,"Penn Hills, PA",I liked a @YouTube video http://t.co/N95IGskd3p Minecraft: Episode 2 'Blaze Farm Beginnings!',0
+964,blaze,Karachi ,Property losses from #California wildfire nearly double as week-old blaze rages: The fireÛ_ http://t.co/MsdizftZ2g,1
+965,blaze,seattle wa,@ChristyCroley Not in the works yet. Did you see the new Vela Short in Blaze? http://t.co/Q8rEoEVluE,0
+968,blaze,,@UABStephenLong @courtlizcamp Total tweet fail! You are so beautiful inside and out Blaze On!,0
+971,blaze,Mo.City,The mixtape is coming i promise. We goin in right now http://t.co/uUNGRqoUgn,0
+972,blaze,,@_itzSteven @xdojjjj @whopper_jr_760 huh?? me you and leo started that last year and ever since people blaze it in the back??,0
+974,blaze,SOUTHERN CALIFORNIA DESERT,"3 Bedrooms 1 Baths for sale in 29 Palms CA. (http://t.co/QMS8RRESsd)
+(YouTube Video:... http://t.co/zLa30jCsSQ",0
+976,blaze,Gotham City,?? Yes I do have 2 guns ?? ??,0
+977,blaze,,@a__cee DAEM GIRL SMOOTH ASF c: ?,0
+978,blaze,My contac 27B80F7E 08170156520,https://t.co/WKv8VqVkT6 #ArtisteOfTheWeekFact say #Conversations by #coast2coastdjs agree @Crystal_Blaz 's #Jiwonle is a #HipHop #ClubBanger,0
+979,blazing,"Dallas, TX",Bright & BLAZING Fireman Birthday Party http://t.co/9rFo9GY3nE #Weddings,0
+981,blazing,,REAL ViBEZ RADIO - BLAZING THE BEST VIBEZ!!! http://t.co/EMvOhm9m6j #nowplaying #listenlive,0
+982,blazing,"Pig Symbol, Alabama",Montgomery come for the blazing hot weather...stay for the STDs. Yet another rejected city slogan.,1
+983,blazing,"Intramuros, Manila","Come and join us Tomorrow!
+August 7 2015 at Transcend:Blazing the Trail to the Diversified World of Marketing... http://t.co/NR1I8Qnao1",0
+984,blazing,,Morgan Silver Dollar 1880 S Gem BU DMPL Cameo Rev Blazing MS+++++ High grade! - Full read Û_ http://t.co/IU9baFDXeY http://t.co/AphqU5SvET,0
+985,blazing,New York,Morgan Silver Dollar 1880 S Gem BU DMPL Cameo Rev Blazing MS+++++ High grade! - Full read Û_ http://t.co/m96KbQwiOr http://t.co/wrJR846fKS,0
+986,blazing,,This bowl got me thinking... Damn I've been blazing for so damn long,0
+987,blazing,,@DanRyckert @drewscanlon He's blazing through this game with the best stealth skills yet. Nothing beats the silenced M4.,0
+990,blazing,,Bit pacquiao vs marquez 3 unfilled blazing swarm online: DuRvOd http://t.co/6VJA8R4YXA,0
+991,blazing,THE WORLD T.G.G / M.M.M ,Turn on your radios #stoponesounds is live on your #airwaves http://t.co/g7S34Sw2aM & 107.9 fm @StickyNYC @95roots blazing all your hits,0
+992,blazing,,@BaseballQuotes1 I have a 32 inch dynasty,0
+993,blazing,Between the worlds ,"I'm the only weapons master here! Let's go in guns blazing!
+#Hinatobot",0
+994,blazing,State of Georgia,@Blazing_Ben @PattyDs50 @gwfrazee @JoshuaAssaraf Not really. Sadly I have come to expect that from Obama.,0
+996,blazing,,SHOUOUT TO @kasad1lla CAUSE HER VOCALS ARE BLAZING HOT LIKE THE WEATHER SHES IN,0
+997,blazing,Your screen,"S3XLEAK!!!
+Ph0tos of 19yrs old Ash@wo lady in Festac town from Delta exp0sed on BBM 5 leaked pictures... http://t.co/ixREhM05yq",0
+998,blazing,Lima-Peru,Oh my heart racing And my temperature is blazing through the roof #VideoVeranoMTV Fifth Harmony,0
+999,blazing,,@omgbethersss @BethanyMota haha love this??,0
+1001,blazing,,@dmac1043 Colorado is a Spanish word ([Latin origin] meaning 'reddish' or 'colored') all you dummies are pronouncing it wrong!!!,0
+1002,blazing,worldwide,Why Some Traffic Is Freezing Cold And Some Blazing Hot ÛÒ And How To Heat Up Some Of Your Traffic http://t.co/C8b6DdiQIg,0
+1004,blazing,,I'm crazy enough to run in 95 degree mid-day heat under the blazing sun in a place where I'm notÛ_ https://t.co/OSUoIVNiGO,0
+1005,blazing,,I'm blazing rn and there's nothing you can do to stop me,0
+1006,blazing,"Saltillo, Coahuila de Zaragoza",Still blazing ????,0
+1008,blazing,,@bekah__w thanks! I sweat bullets every time I get in with this blazing sun beating down on me.,0
+1009,blazing,,@ACOUSTICMALOLEY no he was blazing it,0
+1010,blazing,Suitland,@OfficialTJonez Your 'Lost For Words' made me a new fan of yours fam. Crazy skills beyond blessed! Keep blazing dude made love and respect!,0
+1015,blazing,Everywhere,"**Let - Me - Be - Your - Hot - Blazing - Fantasy**
+#escorts #gfe #DUBAI http://t.co/N6AhgfMUDt",0
+1017,blazing,Konoha,@__srajapakse__ Why thank you there missy ?? thought it suited the blazing hot summertime ?? yee-haw! ??,0
+1018,blazing,Swag Francisco,@asukager magical bag of blazing,0
+1020,blazing,"Saint Marys, GA",The Blazing Elwoods @BlazingElwoods - Don't Bother Me (Doug's Song) -Tune http://t.co/QYzpB1gKmR,0
+1021,blazing,New York,Morgan Silver Dollar 1921 P CH Gem Bu PL Blazing MS++++++ Satin Rare Proof Like! - Full reÛ_ http://t.co/99MbyFl3Id http://t.co/4ddMTguZzS,0
+1022,blazing,Nigeria,Blazing Hot! Etisalat Free MB For Complete 12 Months: Etisalat Is Giving out 100MB on TECNO Q1 here is the Ime... http://t.co/AVzsYIe1nT,0
+1023,blazing,Essex/Brighton,@FunkyLilShack @mariaf30 I want a full on bitch slapping guns blazing cake throwing Charles showdown!! Now THAT will be worth the wait ????,0
+1024,blazing,,Follow @EdWelchMusic and check out his Hit Single 'Unpacked' Man its BLAZING!!!,0
+1026,blazing,"Pennsylvania, PA",I still don't know how 8 hours of physical activity in the blazing sun isn't a sport.,0
+1029,bleeding,,Ways so archetype a bleeding well-grounded readiness: FpOJ http://t.co/WXbrArc7p3,0
+1031,bleeding,"Rockford, IL",Threw a chicken nugget at my sisters lip and now it's bleeding??,0
+1032,bleeding,,you could slit my throat and I'd apologize for bleeding on you,0
+1035,bleeding,AZ,Joe Landolina: This gel can make you stop bleeding instantly http://t.co/0BtnIwAgt1 #arizona #realestate http://t.co/hHZY3oqeLa,0
+1036,bleeding,,now my nose is bleeding. the last one was like 10 years ago,0
+1037,bleeding,,I have been bleeding into this typewriter all day but so far all I've written is a bunch of gunk.,0
+1038,bleeding,"Vero Beach , FL",@JaydenNotJared I can't help it. Hope you're ok. Text me if you need to talk. Sending hugs your way. PS no bleeding to death allowed,0
+1040,bleeding,IN,you can stab me in the back but I promise you'll be the one bleeding,1
+1041,bleeding,,Apparently if you're bleeding people look at you weird lol well it's fine keep walking,0
+1042,bleeding,In the middle of no where,Eating takis then rubbing my eyes with my hands now my eyes are bleeding tears,0
+1043,bleeding,"Baltimore, MD",@DarrylB1979 yea heard about that..not coming out until 2017 and 2019 ?????? Vampiro is bleeding,0
+1044,bleeding,"Florida, USA",@CoreyAshe Did that look broken or bleeding?,0
+1045,bleeding,dmv ?? fashion school @ KSU. ,i hit my foot now my toe is bleeding ??,0
+1048,bleeding,Nice places ,@King_Naruto_ As long as I see Madara bleeding I'm good ??,0
+1049,bleeding,,Keep thinking about it until I stepped on a broken glass pun tak sedar and I don't feel the pain also it's bleeding. Shit,0
+1050,bleeding,"Quantico, VA",My ears are bleeding https://t.co/k5KnNwugwT,0
+1051,bleeding,,I waited 2.5 hours to get a cab my feet are bleeding,1
+1052,bleeding,,It's not a cute dinner date Til cams nose starts bleeding,0
+1054,bleeding,,@Uptown_Jorge head up like yo nose bleeding,0
+1057,bleeding,,"I've been bleeding in your silence
+I feel safer in your violence .",0
+1058,bleeding,"Island Lake, IL",@Jannet2208 I fell off someone's back and hit my head on concrete /: I was bleeding n shit,0
+1061,bleeding,"Live Oak, TX",@KatRamsland Yes I'm a bleeding heart liberal.,1
+1062,bleeding,,Deadpool is already one of my favourite marvel characters and all I know is he wears a red suit so the bad guys can't tell if he's bleeding,0
+1065,bleeding,"Gages Lake, IL",@beckyfeigin I defs will when it stops bleeding!,1
+1066,bleeding,,@SoDamnTrue we know who u are you're a bleeding heart wannabe pickup artist,0
+1067,bleeding,Madisonville TN,@chaosmagician97 awesome!! I saw he was bleeding pretty bad,0
+1069,bleeding,"Basketball City, USA ",@burberryant bleeding on the brain don't know the cause,0
+1070,bleeding,AEP,lets see how good you are at soccer when you're bleeding out yo face,0
+1071,bleeding,,@tammy_w1997 @ElijahMallari bleeding wild things running around the apartment while hes in work at the bar ????????,0
+1072,bleeding,Alberta Pack,@ColoicCarnality You were bleeding my instincts kicked in. *She looks away and scratches the back of her head*,0
+1073,bleeding,#expelcl*y,my ears are bleeding i hate stefano,0
+1074,bleeding,My heart is a ghost town!,My ear started bleeding again...,0
+1075,bleeding,The Great State of Texas,@Benjm1 @TourofUtah @B1Grego saw that pileup on TV keep racing even bleeding,1
+1077,bleeding,,A rave wedding ? Am I seeing this my eyes are bleeding,0
+1078,bleeding,"Alicante, Valencia","they say bad things happen for a reason
+but no wise words gonna stop te bleeding",0
+1079,blew%20up,,@DamnAarielle yo timeline blew up so damn fast,0
+1080,blew%20up,Atlanta,@mfalcon21 go look. Just blew it up w atomic bomb.,0
+1081,blew%20up,,I blew up #oomf instagrams cause she's cute and she's an active follower,0
+1082,blew%20up,"Greensboro, NC",@b24fowler I see that! Crazy how this line blew up.,0
+1083,blew%20up, Indiana,My Instagram just blew up apparently I was featured on I am jazz tonight. How cool is that love her,0
+1084,blew%20up,the local dump,i'd still be team usagi even if she blew up the entire solar system by some airhead misstep,0
+1085,blew%20up,,@BenKin97 @Mili_5499 remember when u were up like 4-0 and blew it in one game? U probs don't because it was before the kings won the cup,1
+1088,blew%20up,,"i hate people who tweet 'receipts' but KNOW its wrong
+
+but they wont take it down bc it 'blew up'
+literally gtfo you're that desperate",0
+1090,blew%20up,,I think I just blew up @HopeInHearts notifications. Go check her out she's so encouraging to me ???? love her ??,0
+1091,blew%20up,Seattle,Hw18 going 90-100. Dude was keeping up with me. Took the same exit. Pulled to the side and told me he blew his motor. Lolol #2fast2furious,0
+1093,blew%20up,#SOUTHAMPTON ENGLAND,The universe might not actually exist scientists say http://t.co/DEfJ7XeKgX 'The #SUN blew up and the #Earth began'...,0
+1094,blew%20up,?205?478?,Max blew tf up ! ?????? shots fired ???? #CatfishMTV,0
+1098,blew%20up,Waterford MI,Rick and Morty - They Blew Up : http://t.co/UQKX5VbiuM,0
+1099,blew%20up,"Iowa, USA",@CodyThompson25 ty just blew up the motor went up in flames he got out ok,0
+1102,blew%20up,va,Just realized my dude @_OnlyFTF was on that 'What Are Those' way before it blew up @ the tusky ?? game @robsimss @CantMissKid,0
+1103,blew%20up,,This night just blew up rq,0
+1104,blew%20up,,I blew up snapchat for no reason ??,0
+1105,blew%20up,,Queens Gambit went well until Anakin blew up the droid control ship. Oh well still fun! Can't Stop is next! #WBC2015,0
+1106,blew%20up,Florida,@iphooey @TIME Ironically Michele Bachmann brought this up in '11 w/Ron Paul & everyone blew her off and called hoax. She was finally right,0
+1109,blew%20up,,Catfish retweeted me & my notifications blew up ??????.,0
+1110,blew%20up,california mermaid ? ,Some guy whistled at me in the parking lot & it did not help that the wind blew my skirt up getting in the car ??,0
+1112,blew%20up,New York ? ATL,Blew up those mentions,0
+1113,blew%20up,USA/SO FLORIDA via BROOKLYN NY,The 1st time someone blew up my phone 30 times they would be blocked. Believe it. #Catfish,0
+1114,blew%20up,,@ImAwesome7986 like literally blew up,0
+1117,blew%20up,H / pez & sophia ,FREYAS VIDEO BLEW UP EVERYWHERE,0
+1118,blew%20up,"Brooklyn, NY",@YahooSchwab easy way to look good after the Ray Rice fiasco...that blew up,0
+1119,blew%20up,"Queens, NY",Lmao that light skin guy blew up on Twitter by talking about how ugly he was as a kid..,0
+1120,blew%20up,"Vancouver, BC.","Because you watched: Honey I Blew up the Economy
+
+We Recommend : The Conservative Shoppe of Horrors
+
+#HarperANetflixShow #elxn42 #stopharper",0
+1122,blew%20up,,Did anyone else see that fireball falling to earth? Look like a plane blew up.,1
+1123,blew%20up,,Ye did the same thing to Big Sean and he still blew up,0
+1124,blew%20up,"Ottawa, Canada",Zayn just blew up twitter.,0
+1126,blew%20up,wherever the $$$ at,Bitch done blew my shit up,0
+1128,blew%20up,"Purgatory, USA",@WeLoveRobDyrdek @adrian_peel not a damn clue. Tried to see how many clicks I could get before I blew up. That's how I played.,0
+1129,blight,"Calgary, Alberta",@Daorcey @nsit_ YOUR a great pair. Like a couple of Graywardens fighting the blight...,0
+1130,blight,Kama | 18 | France ,"@DaMidnighter theres actually a theory out there that the magisters arent the only reason for the blight
+that dwarves (the ones from the",0
+1132,blight,Sydney,As a cycling fan I feel sorry for world athletics #doping is a blight exacerbated monetary reward. A lot of soul searching will be required,0
+1134,blight,,@kynespeace *blight,0
+1136,blight,London,Poor Jack ??,0
+1138,blight,"Maryland, USA",@realhotcullen I agree but I knew we'd be going to the deep roads again because they found Blight in red lyrium. It ain't over yet >_>,0
+1139,blight,Daruka (near Tamworth) NSW,Get a load of this welfare loving sponge....a blight on society. http://t.co/rrZbZGO48N,0
+1141,blight,"IJmuiden, The Netherlands",New post: Prysmian secures contract for Blight Bank wind farm http://t.co/oLG09Kb6HA,0
+1142,blight,"University Heights, Ohio",Cleveland Heights Shaker Heights fight blight: The House Next Door http://t.co/wYOKt0ftRw,0
+1143,blight,Central Illinois,@todd_calfee so @mattburgener wanted to see that info on blight u got,1
+1145,blight,Baton Rouge,Carl Everest Rob Cobes Whitt Blight Frost Leo Snuff Godly and a few others. I will drink a beer with them. Someday.,0
+1146,blight,,THDA Kicks Off Anti-Blight Loan Effort in Memphis http://t.co/XZLRWC0PIK http://t.co/O5xlxMkoYq,0
+1149,blight,USA,City program to help turn blight into greenspace: The Tennessee Housing DevelopmentÛ_ http://t.co/ZZcbBQyJ1q #news http://t.co/KKSgHsblFH,0
+1151,blight,PSN: Pipbois ,@Demetae12 yes i want to be the new blight leader,0
+1152,blight,"Colombo,Sri Lanka.","Releases on the planing level -
+
+1. Constellation - Blight on Gaia - iClown's Drumstep Remix
+2.iClown - Infinity... http://t.co/7LE5GQ2Psx",0
+1153,blight,,http://t.co/ETkd58Un8n - Cleveland Heights Shaker Heights fight blight: The House Next Door http://t.co/LRelVrm06w,0
+1154,blight,"Johannesburg, South Africa ",'If you are going to achieve excellence in big things you develop the habit in little matters....' dont know the author,0
+1155,blight,Me mammy's belly,@Hendy_21 sure the purdies will be alive with the blight ??,0
+1156,blight,UK & Ibiza,Tracy Blight Thank you for following me!!,0
+1157,blight,,Apperception bridgework blight: XxhJeSC http://t.co/yBhBArajXp,0
+1160,blight,Laventillemoorings ,If you dotish to blight your car go right ahead. Once it's not mine.,0
+1162,blight,UK,Sexual Revolution:Blight For Women is out! http://t.co/T8Sv2ai7sW Stories via @ACeBabes @HealthWeekly1 @AmateurNester,0
+1164,blight,Scotland,LIKE I SWEAR THE SECRET WE'LL UNCOVER IS THE OLD GODS IN A SLUMBER. I THINK THERES GONNA BE ANOTHER BLIGHT,0
+1166,blight,London,@WillHillBet what is double result live on the app?,0
+1167,blight,"Vancouver, BC",@parksboardfacts first off it is the #ZippoLine as no one wants to use it and the community never asked for this blight on the park #moveit,0
+1168,blight,"Cleveland, OH",Look for my Policy Matters Ohio report on #CLE and Cuyahoga County blight and greening vacant lands soon! https://t.co/if62SdXVp7,0
+1170,blight,Kama | 18 | France ,@anellatulip and put the taint there and that all that the magisters did was to open the gates and let the blight get away from it,0
+1173,blight,Kama | 18 | France ,@anellatulip there is a theory that makes way too much sense that says that the dwarves may be the actual origin of the blight,0
+1174,blight,UK,The #Palestinian #refugee tragedy is a blight on humanity & should shame every #Israeli for living with it. https://t.co/gAAE0nO5du,1
+1175,blight,"Detroit, MI, United States","Article by Michael Jackman at Metro Times Detroit:
+The group later downgraded the estimate to 37 square miles of... http://t.co/h31mmuduqt",0
+1177,blight,,Locksmithing-art respecting elaboration only blight locks: lPDkl,0
+1178,blight,,@jake_blight @WeAlIlKnowA you cunt,0
+1179,blizzard,,What if every 5000 wins in ranked play gave you a special card back.. Would be cool for the long teÛ_ http://t.co/vq3yaB2j8N,0
+1181,blizzard,,Amazon Deal - wait or buy? http://t.co/0T8VqKEArI,0
+1182,blizzard,Guelph Ontario Canada,New print available on http://t.co/ucy5fEA9yu! - 'Waiting Too Long' by Pamela Blizzard - http://t.co/dnwwo1YbRK,0
+1183,blizzard,Waterfront,@Blizzard_draco GIVE ME FREE ART KAMON,0
+1185,blizzard,columbus ohio,@StevenOnTwatter @PussyxDestroyer just order a blizzard pay then put your nuts in it say they have you ball flavored. Boom free ice cream,0
+1188,blizzard,Canada,Blizzard of Auz @ 9 pm CST @RadioRiffRocks / http://t.co/pjLDA9HD5v 2 hrs of Rock to make your hump day complete! http://t.co/3wNjaUaR7w,0
+1189,blizzard,"Waukesha, WI",I really wants a rolo blizzard but mom said no so I guess no DQ tonight,0
+1190,blizzard,Sydney,@Ashayo @MsMiggi Hi Ashayo! I believe there will be VODs on YouTube after the presentation but there is nothing like seeing it live :),1
+1191,blizzard,,Stats http://t.co/U7vavyrGv9,0
+1195,blizzard,Himalayan Mountains,#Tweet4Taiji is a dolphin worship group based on superstitions! Just take a look at their tweets!,1
+1196,blizzard,,@blizzard_fans Lucio!! Let's get the #overwatch hype train rolling some more!! Caution though there aren't any breaks,0
+1198,blizzard,Colorado/WorldWide,@Blizzard_Gamin ight,0
+1199,blizzard,,peanut butter cookie dough blizzard is ??????????????????????,0
+1201,blizzard,Ontario Canada,My mic and controllers aren't working one second,0
+1202,blizzard,,Tomorrow's Announcement VODs http://t.co/cUbze5MIZm,0
+1203,blizzard,,Updated to Windows 10 now I get this error http://t.co/kHSBZKfd6O,0
+1204,blizzard,,New Expansion Ideas - Bard Class Holy Trinity + 1 http://t.co/EGioxBabOe,0
+1206,blizzard,"California, USA",@DaBorsch not really that shocking :( blizzard lured their old fanbase back with WoD and disappointed us hardcore so everyones leaving again,0
+1207,blizzard,,the best thing at DQ is the cotton candy blizzard ??????????????????????????????????????????????????,0
+1208,blizzard,,Lizard Wizard in a Blizzard #LWB http://t.co/MgR809yc5a,0
+1209,blizzard,"Houston, TX",@Blizzard_draco @LoneWolffur I need this.,0
+1211,blizzard,lakewood colorado,@FAIRx818x @PlayOverwatch @BlizzardCS please blizzard we love you,0
+1212,blizzard,THE 6IX,A blizzard would be clutch asf ??,0
+1213,blizzard,"Washington, USA",@Blizzard_draco @LoneWolffur also me please I would very much like a link,0
+1214,blizzard,The ?? below ???,@BubblyCuteOne ?????????? ok ok okayyyyyy Ima act right ....bout to get this blizzard tho,1
+1215,blizzard,United States,@LoneWolffur control yourself tora,0
+1217,blizzard,,First Time Playing Hearthstone on PC Thoughts http://t.co/aBoLxMH1vy,0
+1218,blizzard,,I love the cotton candy blizzard??,0
+1219,blizzard,Ontario Canada,@TCGReno just hard reset my Xbox,0
+1221,blizzard,,I really wanna brownie batter blizzard ??,0
+1222,blizzard,,I call it a little bit of your blizzard?,1
+1223,blizzard,,Market News: Activision Blizzard Cognizant Technology First Solar http://t.co/gkNRP0e8Qs,0
+1224,blizzard,,SEAN END CAREER sG Blizzard vs KNOCKOUT ... http://t.co/nyv51681uE,0
+1225,blizzard,,What is the biggest regret you have in hearthstone? http://t.co/vcIrn1Md8v,0
+1226,blizzard,,"Someone walk with me to DQ ??
+I wanna Butterfinger Blizzard so bad??",0
+1227,blizzard,Ideally under a big tree,That horrible moment when u open up the dryer and it looks like a snowy blizzard cuz u left a piece of paper in your jeans pocket ??,0
+1228,blizzard,United States,@LoneWolffur BRUH *dies*,0
+1229,blood,,Rip ?? Blood !,0
+1230,blood,,@Chief__CG nah young blood that cook is gone I'm cut now .haha,0
+1232,blood,Conversing In Janet's Caf̬,Off The Wall Invincible and HIStory + Blood On The Dance Floor https://t.co/ZNTg2wndmJ,0
+1234,blood,,Broke my nail(real not fake) this morning blood and all ah it hurts any ideas how to treat it? Help me pretty please ? -_-,0
+1235,blood,,4.5 out of 5 stars by 290 reviewers for 'Dragon Blood' Boxset by Lindsay Buroker http://t.co/4yu5Sy1Cui #kindle http://t.co/mzmxMyklXv,0
+1236,blood,"???????, ??'??????",Blood Group A +ve is associated with Gastric Carcinoma says text book...Another fragile gene in my body....,0
+1237,blood,,A friend is like blood they are not beside us always. But they come out when we are wounded.,0
+1238,blood,Dime's Palace,We gone get it get it in blood,0
+1239,blood,"Cairo, Egypt",people with a #tattoo out there.. Are u allowed to donate blood and receive blood as well or not?,1
+1240,blood,,Doing dialyses to my grandpa and oh lord this blood makes me light headed,0
+1241,blood,,@SetZorah dad why dont you claim me that mean that not right we look the same same eyes same blood same xbox 360 SMH -.-,0
+1242,blood,,Omron HEM-712C Automatic Blood Pressure Monitor STANDARD AND LARGE BP CUFFS http://t.co/gJBAInQWN9 http://t.co/jPhgpL1c5x,0
+1243,blood,,My blood pressure is through the roof I don't need all this extra shit!!!!,0
+1244,blood,"Seattle, WA",@Chambered_Blood Yeah you are! #SpeakingFromExperience,0
+1245,blood,,Can't believe more people in their mid 20's don't have high blood pressure. Life is stressful. #DecisionsOnDecisions,1
+1249,blood,Bug Forest,Guys. I have an Imouto Who Isn't Actually Related to Me by Blood.,0
+1250,blood,,Bruh white people buy the ugliest shoes and they them super tight no blood going to there feet,0
+1251,blood,canberra,another day another excellent @_dangerousbeans porridge. seriously people. blood orange in porridge is phenomenal.,0
+1252,blood,,@scotto519 happy birthday young blood,0
+1253,blood,International,If it wasn't for the Blood! ????,0
+1254,blood,,No kinda in it that shii nasty blood. No pun intended,0
+1259,blood,The World,Ain't no hoe in my blood,1
+1262,blood,Htx,Today was such a hastle from getting drug tested blood drown out tb shot to document filling ??,0
+1263,blood,,Man . somebody gotta stop Sbee dude too fuckin funny blood,0
+1264,blood,,Where will the winds take my gypsy blood this time? http://t.co/66YVulIZbk,0
+1267,blood,PunPunl̢ndia,@Lobo_paranoico Mad Men,0
+1269,blood,???,Private thirsty night?SAD BLOOD ROCK'N ROLL? #??,1
+1270,blood,"Itirapina, SÌ£o Paulo",#RolandoNaBeats: Ellie Goulding - My Blood | Acesse nosso site para ouvir! http://t.co/Zk69uGXMT8,0
+1271,blood,North Jersey,@olrules Welcome - Read a free chapter of my new book Encounters With Jesus. It's full of hope. http://t.co/6qX7arf4AG,0
+1272,blood,"Ewa Beach, HI",@Anthxvy runs in the blood,0
+1273,blood,"Biloxi, Mississippi",@sethalphaeus my personal favorites include paramore muse green day royal blood and 5sos,0
+1275,blood,,Shed innocent blood of their sons and daughters and the land was polluted Psalms 106:38 Help stop the sin of abortion.,0
+1276,blood,Buenos Aires,*se pone a cantar crying lightning*,0
+1277,blood,Indonesia,it wasnt a very big stab but it was a deep stab and theres like blood everwhe,1
+1278,blood,"Brecksville, OH",Add these items to your everyday eating habits. Please do the research on how to take with your bloodÛ_ https://t.co/LnpsCaDaXr,0
+1279,bloody,"Walthamstow, London",LOOOOOOOOOOOOL who the bloody hell did that?? https://t.co/jRKGYl7Te5,0
+1280,bloody,,infected bloody ear piercings are always fun??,0
+1282,bloody,Malaysia,aggressif is so bloody aggressive,0
+1283,bloody,Ivano-Frankivsk,I entered to #win the ENTIRE set of butterLONDON Lip Crayons via @be_ram0s. - Go enter! #bbloggers http://t.co/DsB3lDfuxU,0
+1284,bloody,"Sunshine Coast, Queensland",@slsandpet Hey Sally sorry have you emailed me? Been AWOL bloody work ARGH! @ResignInShame,0
+1287,bloody,Dime's Palace,I'm over here listening to Bloody Jay. ???? https://t.co/CIyty0FgpR,0
+1288,bloody,"England,UK,Europe,Sol 3.",@LauradeHolanda I have the Forrest version from '83 that's bloody awful as well :))) xxx,0
+1289,bloody,,'A Nightmare On Elm Street' Is Getting Remade... Again - http://t.co/HvwkJQXXyT,0
+1290,bloody,Chicago,I can't bloody wait!! Sony Sets a Date For Stephen KingÛªs Û÷The Dark TowerÛª #stephenking #thedarktower http://t.co/J9LPdRXCDE @bdisgusting,0
+1293,bloody,,Gotta try to let go of so many bloody things. Smh,0
+1294,bloody,Nashua NH,@TradCatKnight (1) Russia may have played into reason but that link is BS. Okanowa was bloody and mainline invasion looked like a bloody,1
+1296,bloody,Leicester,Bloody insomnia again! Grrrr!! #Insomnia,1
+1297,bloody,65,@zhenghxn i tried 11 eyes akame ga kill and tokyo ghoul all damn bloody i dont dare watch????????,0
+1298,bloody,Westchester,@Fantosex Now suck it up because that's all you're bloody getting out of me by means of amends.,0
+1300,bloody,"Lynnfield, MA",You call them weekends. I call them Bloody Mary times. This summer's been full of them. My newÛ_ https://t.co/VnNi3zzuZ6,0
+1301,bloody,"Level 3 Garrison, Sector G",Bloody hell what a day. I haven't even really done anything. Just. Tired. Of everything. Thought vaca would help but it only did so much. =/,0
+1302,bloody,Singapore,Damn bloody hot,0
+1303,bloody,"Adelaide, South Australia",@MrTophyPup it's bloody sexy *drools*,0
+1304,bloody,,You know how they say the side effects low & really fast? Son the product was an acne cream.. Why 1 of the side effects was bloody diarrhea?,0
+1305,bloody,Las Vegas,Ronda Rousey would be 'close' to making Floyd Mayweather's money in 50 fights - Bloody Elbow http://t.co/IjzcYtbFfo #boxing,0
+1307,bloody,Glasgow,I'm awful at painting.. why did I agree to do an A3 landscape in bloody oils of all paints ??,0
+1308,bloody,,"All I need in this life of sin
+Is just me and my girlfriend
+Down to ride till the bloody end
+Just me and my girlfriend",0
+1309,bloody,Shity land of Northern Ireland,@_itsmegss_ I think it is. well it's bloody barking now,0
+1312,bloody,Singapore,Eh hello cover your bloody thighs your bloody cleav... ÛÓ Eh hello! Since when do i expose my cleavage and i on... http://t.co/Kv5L4PPXfG,0
+1315,bloody,Christchurch New Zealand,@MariaSherwood2 @JohnJCampbell Mega bloody marvellous,0
+1316,bloody,"peekskill. new york, 10566 ",Bloody Mary in the sink. Beet juice http://t.co/LUigmHMa1i,0
+1317,bloody,,@MelRises @gayler1969 @wwwbigbaldhead @jessienojoke @melissaross9847 if my Monty Python is up to date as bloody far as he wants to go.,0
+1318,bloody,,Meet the bloody RS5 http://t.co/RVczMimfVx,0
+1319,bloody,PH,Friday supposed to be a happy day but it's a bloody friday hah zzzz,0
+1320,bloody,Storybrooke ,@chxrmingprince @jones_luna I should bloody hope so *she said folding her arms sitting back in her chair*,0
+1321,bloody,under the blanket,Wait until i tell my college friend who reafs bloody mary too about the drama cd,0
+1324,bloody,Isolated City In World Perth,'I came to kill Indians...for FUN': Video of smirking and remorseless Pakistani killer shows him boasting. http://t.co/FPjLwOXKlg,1
+1326,bloody,Brazil ,I've just watched episode S01E09 of Bloody Monday! http://t.co/vRptHvPymt #bloodymonday #tvshowtime http://t.co/NkKvknBvOz,0
+1327,bloody,AUS,"Marlon Williams > Elvis Presley > Marlon Williams > Steel Panther.
+
+Shuffle mode like a bloody legend.",0
+1328,bloody,"Santa Cruz, CA",Black Friday turns Bloody (would rather be shopping) http://t.co/l0pmmtZLwP #mystery,0
+1331,blown%20up,"Inverness, Nova Scotia",@ezralevant Someone told me all the soccer moms are getting this pic blown up and put on their daughter's bedroom walls. NOT!!!,0
+1332,blown%20up,L/S/Z/L/T/H/C/H/R/A/S/C,@Papcrdoll and I s2g if my mentions get blown up over MY choice I will deactivate and leave for good. RESPECT MY CHOICES.,0
+1334,blown%20up,Oklahoma,"@ManUtd @EmilymcfcHeslop
+
+Wow just wow!
+
+If any other club had blown all that money and fucked up a player like that they'd be pilloried!",0
+1335,blown%20up,"801 SL,UT",Damn greinke got blown up in that first inning,0
+1337,blown%20up,,Woke up so blown lol,0
+1338,blown%20up,fluffy cloud,aunt marge you're blown up eheks,0
+1340,blown%20up,USA,@troylercraft YEAH ITS NOT WORTH IT BC HE ALREADY HAS SO MANY SPAMMERS & HIS TWITTER IS PROBABLY BLOWN UP EVERY SECOND,0
+1341,blown%20up,The 5th Dimension. ,White family (supposedly representing America's GREAT values ) gets blown up in a horrible CGI nuclear strike..... LMFAOOOO!!!!!!!!!!!!,1
+1343,blown%20up,Georgia,Man why hasn't @machinegunkelly blown up? He's still underground.,0
+1345,blown%20up,"July 11th, 2015. ?",And my mentions are blown up for what? ?? wtf.,0
+1346,blown%20up,The Grey Area,On #ThisDayInHistory in 1862 Confederate ship blown up by crew. Read More http://t.co/IW7ELSzIfZ via @History,1
+1347,blown%20up,,That moment when ur about to win a mini uhc and than get blown up by a creeper and get kicked for flying..... So salty rn...!!!??,0
+1348,blown%20up,"St Paul, MN",@libraryeliza he did get a @taylorswift13 'bump' of approval which is probably why he's blown up http://t.co/KOLMzBz1pZ #MusicAdvisory,0
+1349,blown%20up,Cobblestone,"'If a truckload of soldiers will be blown up nobody panics but when one little lion dies everyone loses their mind'
+http://t.co/wjNTaOkdHf",1
+1350,blown%20up,"ÌÏT: 30.307558,-81.403118","HEY LOOK!!! Kash's Foundation Live for Today got blown up on People Magazine's website!!
+
+Todd Blake... http://t.co/2Fenu1SYu6",0
+1351,blown%20up,Scotland,@KaylaK369 got it last month when I went into the EE shop. Glad it hasn't blown up yet. http://t.co/PgB2BmCFX8,0
+1352,blown%20up,Cosmic Oneness,this is the first time a tweet has blown up almost half a day later... RE https://t.co/1BUF0xM53d,0
+1353,blown%20up,"Guildford, UK",'WeÛªre blown away by this extension. Nothing weÛªve seen has as many options as this one.' https://t.co/0YzgW9ZbHR https://t.co/rHtaqjvQn2,0
+1354,blown%20up,Nowhere Islands/Smash Manor,@TheBoyOfMasks 'Thanks again for letting me stay here since the manor was blown up..... Anyways how are you doing buddy?',0
+1356,blown%20up,kisumu,"LONER DIARIES.
+
+The patterns on the sand
+May have been blown away.
+The photos in twos
+All choked up in flames.... http://t.co/EKfaZ6wVBz",0
+1360,blown%20up,Los Angeles,Even though BSG had been sufficiently hyped up for me in all the years I somehow delayed watching it I was utterly utterly blown away.,1
+1361,blown%20up,Making Worldwide Change Near U,Vanessa's game has officially blown up. LADIES AND GENTLEMEN...the real show is about to begin. #BB17,0
+1362,blown%20up,,Guaranteed been bitten by some mutant mosquito my ankle has blown up. Little cunts,0
+1363,blown%20up,,Things you CAN pick up from tozlet seat|: butt leprosy full-blown jerkface syndrome a lateral lisp & toilet rickets.,0
+1365,blown%20up,,@KalinAndMyles @KalinWhite my ig is being blown up just with hackers I need it to stop #givebackkalinwhiteaccount,0
+1368,blown%20up,ATX,@luke_winkie Whoever is directing these videos needs to grab up Nicki Minaj or someone with U.S. recognition so minds can be blown.,0
+1369,blown%20up,LA/OC/Vegas,@PrincessDuck last week wanted the 6th sense to get blown up so far so good. James could win but he's a huge target and will be gone soon.,0
+1371,blown%20up,London/Outlaw Country ,@orbette more like BLOWN UP amirite,0
+1372,blown%20up,"Grimsby, England",My dogÛªs just blown his kennel up ÛÒ Bloody Yorkshire Terrorist,0
+1374,blown%20up,,Turn on ESPN2 and get blown up,0
+1375,blown%20up,Gotham,@HopefulBatgirl went down I was beaten and blown up. Then next thing I know Ra Al Ghul brought me back to life and I escaped and for a---,1
+1376,blown%20up,,@thebriankrause leos ass just got metaphorically blown up again #PiperWearsThePants #charmed,0
+1378,blown%20up,"Manchester, The World, England",@anarchic_teapot @BoironUSA @zeno001 Glononium 6C also helps with being blown up while bashing a bottle of nitroglycerin against a book.,0
+1379,body%20bag,New York,New Ladies Shoulder Tote Handbag Women Cross Body Bag Faux Leather Fashion Purse - Full reÛ_ http://t.co/y87Gi3BRlV http://t.co/1zbhVDCXzS,0
+1380,body%20bag,New York,New Ladies Shoulder Tote Handbag Women Cross Body Bag Faux Leather Fashion Purse - Full reÛ_ http://t.co/BLAAWHYScT http://t.co/dDR0zjXVQN,0
+1381,body%20bag,,If you have a son or a daughter would you like to see them going to a war with Iran and come back in a body bag? Let the #Republicans know,0
+1382,body%20bag,"sitting on Eddie Vedders lap,",@questergirl ditto but its all we had. and the way i feel if i drank vodka over ice they would have to body bag me,0
+1383,body%20bag,,# handbags Genuine Mulberry Antony Cross Body Messenger Bag Dark Oak Soft Buffalo Leather: å£279.00End Date: W... http://t.co/FTM4RKl8mN,0
+1384,body%20bag,New York,Louis Vuitton Monogram Sophie Limited Edition Clutch Cross body Bag - Full read by eBay http://t.co/JrxgoLnPqw http://t.co/Lin16KvZbn,0
+1385,body%20bag,New York,Louis Vuitton Monogram Sophie Limited Edition Clutch Cross body Bag - Full read by eBay http://t.co/GGgFVO5Pb4 http://t.co/NlFr8t3xqm,0
+1388,body%20bag,NYC,Louis Vuitton CultSierre Monogram Shoulder Bag Cross Body Bag http://t.co/mUf5cZQjrL http://t.co/SsLT8ESMhY,0
+1389,body%20bag,"Missouri, USA",Check out Ameribag Healthy Back Bag Shoulder Cross Body Backpack Khaki Tan Beige Nylon http://t.co/r4k7TyLofJ @eBay,0
+1390,body%20bag,US,Photo: Bath & Body Works cosmetic bag in periwinkle blue with copper piping along the top and four corners.... http://t.co/A9BNlse6QB,0
+1391,body%20bag,,New Ladies Shoulder Tote Handbag Women Cross Body Bag Faux Leather Fashion Purse - Full reÛ_ http://t.co/3PCNtcZoxv http://t.co/n0AkjM1e4B,0
+1393,body%20bag,,new summer long thin body bag hip A word skirt Blue http://t.co/lvKoEMsq8m http://t.co/CjiRhHh4vj,0
+1394,body%20bag,"California, USA",å¤} New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/UooZXauS26 http://t.co/6MGBizjfgd RT enÛ_,0
+1395,body%20bag,"Greenville,SC",@TR_jdavis Bruh you wanna fight I'm down meet me in the cage bro better find out who you're dealing with before you end up in a body bag,0
+1396,body%20bag,New York,New Ladies Shoulder Tote Handbag Faux Leather Hobo Purse Cross Body Bag Womens - Full readÛ_ http://t.co/4FXfllRIen http://t.co/i12NLSr8Fk,0
+1399,body%20bag,New York,AUTH LOUIS VUITTON BROWN SAUMUR 35 CROSS BODY SHOULDER BAG MONOGRAM 7.23 419-3 - Full readÛ_ http://t.co/HCDiwE5flc http://t.co/zLvEbEoavG,0
+1401,body%20bag,,Check out Vintage Longaberger Floral Fabric Shoulder Cross Body Bag Brown Leather Strap http://t.co/FB8snRg4HU @eBay,0
+1402,body%20bag,Paignton,?? New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/zujwUiomb3 http://t.co/GBCtmhx7pW,0
+1405,body%20bag,,new summer long thin body bag hip A word skirt Blue http://t.co/8JymD9YPSJ http://t.co/57PKmmCaDG,0
+1406,body%20bag,"California, USA",?Ìü New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/UooZXauS26 http://t.co/Pw78nblJKy RT enÛ_,0
+1407,body%20bag,New York,Louis Vuitton Monogram Sophie Limited Edition Clutch Cross body Bag - Full read by eBay http://t.co/I4AogcSOY5 http://t.co/dJIwG9pxV4,0
+1408,body%20bag,,New Women Handbag Faux Leather Ladies Shoulder Tote Cross Body Bag Large Satchel - Full reÛ_ http://t.co/NCjPGf6znv http://t.co/GeRJau74eY,0
+1409,body%20bag,Paignton,?? New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/zujwUiomb3 http://t.co/iap4LwvqsW,1
+1411,body%20bag,,One day this heart gone get me zipped up in a body bag.,0
+1412,body%20bag,,#handbag #fashion #style http://t.co/iPXpI3me16 Authentic Louis Vuitton Pochette Bosphore Shoulder Cross Body BagÛ_ http://t.co/RV0Fk7q4Y5,0
+1414,body%20bag,Paignton,å_? New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/zujwUiomb3 http://t.co/YklTFj1FnC,0
+1415,body%20bag,,"#handbag #fashion #style http://t.co/hPd3SNM6oy Vintage Coach Purse Camera Bag Cross Body #9973
+
+$16.99 (0 Bids)
+Û_ http://t.co/GSmdDmu9Pu",0
+1418,body%20bag,New York,genuine Leather man Bag Messenger fit iPad mini 4 tablet case cross body air jp - Full reaÛ_ http://t.co/rcBurZSb2b http://t.co/eHsfKlgRI3,0
+1419,body%20bag,New York,Louis Vuitton Monogram Sophie Limited Edition Clutch Cross body Bag - Full read by eBay http://t.co/VJgR6Liaxh http://t.co/55JR66PLOV,0
+1420,body%20bag,Paignton,?? New Ladies Shoulder Tote #Handbag Faux Leather Hobo Purse Cross Body Bag #Womens http://t.co/zujwUiomb3 http://t.co/CJqq6cgohg,0
+1421,body%20bag,,Nuu that FAM?? fwt I'm Leave You In a Body bag??,0
+1422,body%20bag,New York,New Ladies Shoulder Tote Handbag Faux Leather Hobo Purse Cross Body Bag Womens - Full readÛ_ http://t.co/uR7FeXszg4 http://t.co/wb8awobLcL,0
+1425,body%20bag,,@Rhee1975 @deliciousvomit No I'm not I'm saying that they're lucky they can go home to their families not put in a body bag,0
+1429,body%20bagging,have car; will travel,@matt_bez oh I'm not bagging her at all! Her body be bangin'. I'm saying she's going to get the rose.,0
+1431,body%20bagging,"Sydney, New South Wales",@ohmyloz @RondaRousey who is bagging her body ? She's smoking hot ??,0
+1432,body%20bagging,ATL ? SEA ,Drake is really body bagging meek,0
+1433,body%20bagging,"ÌÏT: 39.982988,-75.261624",@fuckyeahcarey @BornVerified drake killing this dude and tea bagging the dead body at this point,1
+1436,body%20bagging,,@MeekMill is w(rec)k league ball @Drake is Olympic level body bagging him like his career was nothing #trollingtilMeekdiss,0
+1439,body%20bagging,#EngleWood CHICAGO ,Idgaf who tough or who from Canada and who from north Philly meek been acting like a bitch & drake been body bagging his ass on tracks,0
+1440,body%20bagging,302???? 815,@Yankees body bagging mfs,1
+1441,body%20bagging,New Your,@BroseidonRex @dapurplesharpie I skimmed through twitter and missed this body bagging.,0
+1443,body%20bagging,Texas,G+: +https://t.co/dODXi41Y1CåÊis Body Bagging them lyrically! https://t.co/HlMyaAnrC9,0
+1444,body%20bagging,"New York, NY",@bomairinge @EluTranscendent straight body bagging.,0
+1445,body%20bagging,,Body Bagging Bitches ???? http://t.co/aFssGPnZWi,0
+1447,body%20bagging,PURPLE BOOTH STUDIOã¢,No better feeling than seeing and being on stage with my day ones...... 22 year friendships and we still body bagging mics together.,0
+1448,body%20bagging,Cloud 9,Mopheme and Bigstar Johnson are a problem in this game body bagging niggas #VuzuHustle,0
+1449,body%20bagging,,I was body Bagging on the ????Today...4got to post my score http://t.co/81g18wSAUk,0
+1450,body%20bagging,Former Yugoslav Republic of Macedonia,@editaxohaze then let the bagging body's begin lol ???? I ain't cuffed yet so it shouldn't be that bad!!,0
+1452,body%20bagging,,#OVOFest Drake straight body bagging Meek on that OVO stage. #ZIPHIMUP!,0
+1453,body%20bagging,,I'm not a Drake fan but I enjoy seeing him body-bagging people. Great marketing lol.,0
+1454,body%20bagging,,@amaramin3 Meek is definitely capable of body bagging his ass on the track Drake was just smooth as fuck with it!,0
+1455,body%20bagging,3?3?7?SLOPelousas??2?2?5?,Gates not body bagging nobody???????? niggas in br really know who he is ????,0
+1456,body%20bagging,,WWE 2k15 MyCareer EP18 Tyrone body bagging dudes: http://t.co/mr5bI4KD82 via @YouTube,0
+1458,body%20bagging,316,'I did another one I did another one. You still ain't done shit about the other one.' Nigga body bagging Meek.,1
+1459,body%20bagging,Global,Drake Body Bagging Meek. He must of hit a sensitive spot talking about a 'ghostwriter.' He trying 2 end his career. http://t.co/2jHTlWueY0,0
+1460,body%20bagging,#WhereverI'mAt,Good diss bad beat and flow. Mark my words Meek Mill is body bagging him once he responds. Patient patient. Meek is a battle rapper!,0
+1463,body%20bagging,"Huber Heights, OH",@Drake is body bagging meek meanwhile he's on tour with Nicki all hush hush...he's put 2 diss tracks out and meek 0 but dude started it lol,0
+1464,body%20bagging,,@MzGracieBaby for the record im jumpin out the window early... i got @OfficialRealRap body bagging luck.. lol save the file,0
+1466,body%20bagging,Miami ??,Has body bagged ** RT @d_lac: Drake is body bagging meek,0
+1467,body%20bagging,"Houston, TX",drake been kept it the most hip hop during this beef and he fucking body bagging meek back to back ??,0
+1470,body%20bagging,Every where,Woke up to Drake body bagging Meek again!! Meek u can't out spit ya girlfriend... Just lay down Man.... NOT Right... http://t.co/6CraEKc9wb,0
+1472,body%20bagging,Arizona ,@Im2aD I was going to tell him but you were body bagging him,0
+1473,body%20bagging,,ÛÏ@MacDaddy_Leo: ?????? No Caption Needed ??. Freshman... http://t.co/k8ughv2aifÛmy nigga Stacey body bagging niggas! ????,1
+1474,body%20bagging,401 livin',Aubrey really out here body-bagging Meek.,1
+1475,body%20bagging,MI,8 hours of bagging groceries = an aching body,0
+1477,body%20bagging,EPTX,@SlikRickDaRula Drake really body bagging peeps man ?? he really bout it,0
+1479,body%20bags,"Austin, Texas",@FoxNews @JenGriffinFNC When you call to report dangerous activity tell em to have body bags on arrival.,1
+1480,body%20bags,Oklahoma City,Micom 2015 Summer Contrast Candy Color Bowknot Cross Body Tote Shoulder Bags for Womengirls with Micom Zip Po http://t.co/sQMTKKJiMJ,0
+1482,body%20bags,CA,HOBO Hobo Vintage Shira Convertible BÛ_ $238.00 #bestseller http://t.co/0LLwuqn8vg,0
+1483,body%20bags,,Child Shoulder Bags PVC Shoulder Book Bag Cartoon Cross Body Bags for Girls http://t.co/7l9qAzLjVg http://t.co/Q0hSyfrwEC,0
+1484,body%20bags,United Kingdom,Womens Buckle Casual Stylish Shoulder Handbags Pockets Cross Body Bags Green http://t.co/pYee94nuRe,0
+1485,body%20bags,WESTSIDE OF PHILLY 7? BLOCK??,Ain't no bags in the trunk it's a body,0
+1486,body%20bags,CA,BESTSELLER! Fossil Dawson Mini Cross Body Bag EsÛ_ $98.00 http://t.co/HhHvKxFAIH,0
+1487,body%20bags,Wisconsin,@BoomerangTime @RSKarim1 @sopameer @wattashit3 Appears to already be arriving in Ridah in body bags.,0
+1488,body%20bags,Charlotte NC,The Body Bags has a show on 08/07/2015 at 07:30 PM @ Tremont Music Hall in Charlotte NC http://t.co/FpKiqbus9r #concert,0
+1491,body%20bags,"LONG ISLAND, NY",BODY BAGS! https://t.co/0McXc68GZD,0
+1493,body%20bags,,you know you hate your body when you buy 2 bags of chips and a variety pack of fruit snacks and a redbull as a snack,0
+1494,body%20bags,"washington, d.c.",BREAKING: Fairfax County firefighter placed on admin leave amid probe into Facebook post about putting police in 'body bags' dept. says.,0
+1495,body%20bags,United Kingdom,Womens Buckle Casual Stylish Shoulder Handbags Pockets Cross Body Bags White http://t.co/mWZQCjhZPb,0
+1497,body%20bags,,Attention all RCHS football players there will be coffins and body bags by the locker rooms grab one tommorow because were gonna die,0
+1498,body%20bags,,Womens Flower Printed Shoulder Handbags Cross Body Metal Chain Satchel Bags Blue http://t.co/rjZw6C8asX http://t.co/WtdIav11ua,0
+1499,body%20bags,,Womens Cross Body Messengers Bags Clutch Small Shoulders Zippers Bags White http://t.co/EpIQdBxVZO http://t.co/BhfOYLQLJp,0
+1500,body%20bags,"WAISTDEEP, TX",@Deeeznvtzzz bring the body bags tho,0
+1501,body%20bags,Swaning Around,US Û÷Institute Of PeaceÛª Chairman Wants Russian Body Bags http://t.co/owbUjez3q4,0
+1502,body%20bags,D.C. - Baltimore - Annapolis,UPDATE: Va. firefighter on administrative leave after Facebook post calls for people to put officers in 'body bags.' http://t.co/Mt029QJ4Ig,0
+1503,body%20bags,,@ScottWalker So you can send the poor and middle class children to war so they can come in body bags. Typical GOP,0
+1504,body%20bags,#937??#734,@baskgod body bags,0
+1505,body%20bags,,Nine giant body sized garbage bags later...I'm just going to start throwing things away. #moving2k15 #expertwhiner,0
+1506,body%20bags,,"I love The body shopÛªs bags??
+
+#cutekitten #catsofinstagram #summerinsweden #katt #katterpÌ´instagram #dumle #dagensÛ_ http://t.co/p4ZFXdnbcH",0
+1507,body%20bags,,Womens Tote Faux Leather Handbags Shoulder Cross Body Top Handle Bags Rose http://t.co/GYzPisBI1u http://t.co/mSDnTkWYaf,0
+1508,body%20bags,,Womens Satchel Lattice Chain Studded Cross Body Multi Colour Shoulder Bags Blue http://t.co/qj2kbltCxZ http://t.co/xQpn2zYkCt,0
+1509,body%20bags,"Fife, WA",Lab today ready for these body bags. ??,0
+1510,body%20bags,,Bitches be takin pics with bags bigger than they whole body ??????,0
+1511,body%20bags,,Womens Buckle Casual Stylish Shoulder Handbags Pockets Cross Body Bags Green http://t.co/Jqso4fyZp4 http://t.co/F4XnPliO5S,0
+1513,body%20bags,Bushkill pa,#IranDeal most members of Congress who don't want this deal don't have any kids who would b coming home in body bags. War makes them money,0
+1514,body%20bags,,ÛÏParties and body bags go together like drinking and driving.Û,0
+1515,body%20bags,In the Shadows...,@Limpar33 sweeping legs? Or putting people in body bags?,0
+1518,body%20bags,"southwest, Tx",Shoot shit up till we see body bags,0
+1519,body%20bags,,'Your body will heal the bags under your eyes will go away youÛªll be so happy youÛªll smile and really...' http://t.co/WuKcAlNQms,0
+1520,body%20bags,"California, USA",Womens Handbags Cross Body Geometric Pattern Satchel Totes Shoulder Bags White http://t.co/qvSp6b2qSU http://t.co/0s6ydFrWDQ RT gasparcÛ_,0
+1521,body%20bags,,women messenger bags clutch bag handbag cross body shoulder bags bag ladies designer handbags high qualit ... http://t.co/zGJGgHDuRF,0
+1522,body%20bags,,Womens Handbags Cross Body Geometric Pattern Satchel Totes Shoulder Bags White http://t.co/L1GFXgOZvx http://t.co/TKJYbjjsKl,0
+1523,body%20bags,ANYWEHERE !!,Status: last seen buying body bags.,0
+1524,body%20bags,Menlo Park. SFO. The World.,@asymbina @tithenai I'm hampered by only liking cross-body bags. I really like Ella Vickers bags: machine washable. http://t.co/YsFYEahpVg,0
+1525,body%20bags,,Zicac Vintage Leather Briefcase Messenger Satchel Tote Cross Body Handbags for Womens http://t.co/a3Xv6Ff8DN,0
+1526,body%20bags,Speaking the Truth in Love,Fairfax investigating firefighter over Facebook post saying police should be put in Û÷body bagsÛª - The Washington Post http://t.co/jAxHzjCCd4,0
+1527,body%20bags,,Mens Cross Body Canvas Waist Packs Solid Letter Print Sports Zipper Bags Coffee http://t.co/sCXfC5wi9t http://t.co/gx1oTOH8sj,0
+1530,bomb,"Aarhus, Central Jutland","Listen to this hit song. A summer Bomb full of positive energy and youth
+Did you like it?
+https://t.co/2LiWkJybE9
+#Norge2040",0
+1531,bomb,,beforeitsnews : Global Derivatives: $1.5 Quadrillion Time Bomb http://t.co/GhmmUj7GbE (vÛ_ http://t.co/u9LvvLzhYe) http://t.co/LyJ57pq3yX,0
+1532,bomb,"Lincoln, NE",the_af comments on 'New evidence of Japan's effort to build atom bomb at the end of WWII' - http://t.co/hcTxghR2Yf,1
+1533,bomb,wny,this is about to be a bomb ass firework picture http://t.co/lr4BTvuEoM,0
+1534,bomb,"Bolton & Tewkesbury, UK",Hiroshima prepares to remember the day the bomb dropped http://t.co/oJHCGZXLSt,1
+1535,bomb,,The Guardian view on the Hiroshima legacy: still in the shadow of the bomb | Editorial: The world longs to cas... http://t.co/RhxMGhsPd7,1
+1537,bomb,travelling to tae's pants,namjoon's FANTASTIC IS BOMB BYE OMG,0
+1538,bomb,keli x,HALSEY AND TROYE COLLAB WOULD BE BOMB,0
+1540,bomb,Manchester,@AaronTheFM guys to scared to show his real name anyway he knows I'll bomb him,0
+1543,bomb,Canada,@CranBoonitz So going to make any bomb threats? @HereticOfEthics,0
+1544,bomb,"Knoxville, TN",ÛÏ@dylanmcclure55: Working at zumiez is the http://t.co/zW5jp46v5kÛ which location??,0
+1545,bomb,Australia,New Documents Found Pointing To Japan's WWII Atomic Bomb Program http://t.co/IucPcSfbMT,1
+1546,bomb,ChicagoRObotz,Jen you da bomb girl! https://t.co/czQr3CI9Xw,0
+1547,bomb,whs '17,@daniglasgow45 Happy birthday big D!!! I miss you girl hope you have a bomb one ???? http://t.co/cFouwPBRCG,0
+1549,bomb,,@smallforestelf Umm because a gun stopped the gunman with who was carrying a bomb!,1
+1553,bomb,NV,@danielsahyounie It'd be so bomb if u guys won ??,0
+1554,bomb,,New Documents Found Pointing To Japan's WWII Atomic Bomb Program http://t.co/M9mowCMVNj,1
+1555,bomb,,Hiroshima marks 70 years since bomb http://t.co/3u6MDLk7dI,1
+1556,bomb,Ireland,The crew on #EnolaGay had nuclear bomb on board disarmed. 15 mins to #Hiroshima they got ready to arm Little Boy http://t.co/JB25fHKe6q,1
+1558,bomb,,@dopeitsval ahh you're bomb baby ??,0
+1559,bomb,,When you get a bomb ass picture mail ????????,0
+1560,bomb,lagos nigeria,If I fall is men GOD @Praiz8 is d bomb well av always known dat since 2008 bigger u I pray sir,1
+1561,bomb,"Edmonton, Alberta",I came up with an idea of a fragrance concept for a bath bomb called The Blood of my Enemies. So you can say that's what you bathe in.,1
+1562,bomb,[Gia.] | #KardashianEmpire,@CaraJDeIevingnc the bomb impact ratio hit beyond kyle js,0
+1567,bomb,"Sunrise Manor, NV",@SwellyJetEvo Disneyland! Tacos there are bomb!,1
+1568,bomb,"Oxford, OH",Flat out bomb by @FlavaFraz21 #whatcanthedo,0
+1569,bomb,,What would it look like if Hiroshima bomb hit Detroit?: Thursday marks the 70-year anniversary of the United S... http://t.co/6sy44kyYsD,1
+1570,bomb,,Soul food sound so bomb right now ',0
+1572,bomb,,The bomb was so appropriate ?? seen as my family and most Jamaicans love shout bullets !,0
+1573,bomb,,The hatchet-wielding gunman had PEPPER SPRAY AND A FAKE BOMB?!?!?,1
+1574,bomb,"Odawara, Japan","Oops.
+H bomb lost 70 miles off the Okinawan coast.
+Fell off the ship 1965.
+http://t.co/yVsJyzwxJR",1
+1575,bomb,,The Guardian view on the Hiroshima legacy: still in the shadow of the bomb | Editorial: The world longs to cas... http://t.co/ct2JUtvYTg,1
+1576,bomb,"Chicago, IL",The MF Life is a vocal and lyrical bomb. Saw her live this summer. AMAZING vocalist. RT @THEmale_madonna: Melanie Fiona is so slept on ??,0
+1577,bomb,"Des Moines, IA",E-Hutch is da bomb ?? http://t.co/aqmpxzo3V1,0
+1579,bombed,"Dundas, Ontario",Jays rocking #MLB @JoeyBats19 just bombed one out of Rogers Centre. Play-offs r ahead for The #BlueJays - Bell Moseby and Barfield r back!,0
+1580,bombed,,@Stankyboy88 I should've photo bombed,0
+1582,bombed,,@SweetieBirks @mirrorlady2 @SLATUKIP So name all the countries we've invaded/bombed aside Libya in North Africa in last 5 years.....,1
+1585,bombed,New York,The U.S. bombed Hiroshima 70 years ago today. A look at how war has changed since: http://t.co/UQnj6nk9y3 http://t.co/QLnnMxzFqK,1
+1587,bombed,IDN,London Life: photos of a beautiful bombed-out Britain http://t.co/2RAcaiVFfq #arts,0
+1588,bombed,,I can't believe @myfriendmina photo bombed a screenshot,0
+1590,bombed,Netherlands,US drone bombs Islamic State target in Syria after taking off from Turkey: A US armed drone has bombed a targe... http://t.co/m0daP5xLwo,1
+1591,bombed,"DaKounty, Pa",@CyhiThePrynce bombed on Kanye in that #ElephantInTheRoom ????????,1
+1593,bombed,,The majority of those killed were civilians on the ground after the jet first bombed the city's main street then dramatically plummeted,1
+1594,bombed,Tokyo,70 years ago at this hour the USA A-bombed Hiroshima therein killing 200000 civilians. Never forget the crime and never repeat. Peace ??,1
+1595,bombed,"DÌ_sseldorf, Germany",On 1st August #Turkish jets bombed the village Zergele in Qendil and killed 8 civilians and 15 others wounded,1
+1596,bombed,Old Blighty,@NickLee8 i went to school in a bombed out East End of London3 families to one house no bathroom outside loo & poor so whats yr point,1
+1597,bombed,,Photo bombed ???? http://t.co/arTUMHmBhh,0
+1599,bombed,,@QPR1980 @Rorington95 Nowt to do with money. Fergie bombed out the big drinkers at United within years of taking over while Wenger,0
+1600,bombed,??,"'the third generation atomic bombed survivor' Photo exhibition 11:00 to 18:00 8/6.
+#?? #Hiroshima http://t.co/gVAipmLSl0",1
+1601,bombed,,@oooureli @Abu_Baraa1 You mean like the tolerance you showed when sharing 'democracy' with the Iraqis? Wait you mutilated and bombed them.,0
+1602,bombed,,@BrodyFrieling @hanna_brooksie photo bombed,0
+1603,bombed,The land of New Jersey. ,Shadowflame and the Wraith: Bombed http://t.co/LDBaO0rSuz via @amazon,1
+1604,bombed,Atlanta Georgia,@WhiteHouse @POTUS Just cos Germany invaded Poland Japan bombed Pearl Harbor PRE-EMPTIVE SUICIDE http://t.co/I2AAG6Lp6W,1
+1605,bombed,,@CheetosArabia @Crudes It feels like if i would try to grab one off hes Cheetos i'll get bombed.,0
+1607,bombed,MY RTs ARE NOT ENDORSEMENTS,@ChristophersZen @HunterLove1995 @tblack yeah man..... That movie BOMBED hard,0
+1608,bombed,"Kabul, Tuebingen, Innsbruck",.@RaniaKhalek true. I faced everything from 'Is Bin Laden your uncle?' to 'Hopefully Afghanistan will be bombed'. Children can be very ugly.,0
+1609,bombed,"Light and dark, form and void",@KurtSchlichter @FALPhil This liberal compassion is BS. A specific Feminist said the US bombed Japan back to traditional sexist values.,0
+1610,bombed,"Nairobi, Kenya ",http://t.co/wMNOnHxEIr 'Nagasaki has to be forever the last city bombed with a nuclear weapon.' #bannukes,1
+1611,bombed,,Ladies here's how to recover from a #date you totally BOMBED... according to men http://t.co/c5GGSZUGw1 http://t.co/2PiMg9BIcE,0
+1613,bombed,,@r_lauren83199 @xojademarie124 i hope you get Batista Bombed lauren,0
+1614,bombed,Erbil,.@Vagersedolla visits villages recently bombed by Turkey and finds people fed up with the PKK http://t.co/UUWEiKD7sP,1
+1615,bombed,Stockton on tees Teesside UK,@antpips67 @JohnEJefferson obviously I'm aware that not all AS are from countries we have bombed but a lot are fleeing conflict,1
+1617,bombed,"Screwston, TX",'Redskins WR Roberts Belly-Bombed ' via @TeamStream http://t.co/GbcvVEvDTY,1
+1618,bombed,,Me trying to pass lax with my family ends up by me having to run after the ball after it gets bombed over my head,0
+1619,bombed,My old New England home,I liked a @YouTube video http://t.co/FX7uZZXtE4 Benedict Cumberbatch Gets Video Bombed,0
+1621,bombed,melbourne,Today Japan marks 70 yrs since the U.S (A) bombed 2 cities killing over 120000 people But we have to worry about Iran http://t.co/FcIXk23XQH,1
+1622,bombed,Cape Town,You just got GIF bombed #AfricansInSF #BeyondGPS https://t.co/ETdGPIwxtI,0
+1623,bombed,,She didn't even notice me in the background I'm a floatin head #bombed http://t.co/JA0WGp8sPe,1
+1625,bombed,"Ikeja, Nigeria",70 years ago today the United States of America bombed Hiroshima in Japan.,1
+1626,bombed,"Warwick, RI @Dollarocracy also",Storm in RI worse than last hurricane. My city&3others hardest hit. My yard looks like it was bombed. Around 20000K still without power,1
+1627,bombed,texas a&m university,A wasp just dive bombed my face,0
+1628,bombed,MA,@MisfitRarity misfit got bombed,0
+1631,bombing,,The United Kingdom and France are bombing Daesh in Syria - Voltaire Network http://t.co/zYSsObXNtC,1
+1632,bombing,Shipwreck Cove,It's been 70 years (and one hour) since the bombing of Hiroshima. Let's take this time to remember.,1
+1633,bombing,,The cryptic words that guided pilots on the Hiroshima bombing mission http://t.co/FCe0K1Ihti,1
+1634,bombing,,Japan on Thursday marks the 70th anniversary of the atomic bombing of Hiroshima with the most senior official from Washington ever scheduleÛ_,1
+1636,bombing,"Sydney, Australia",Today marks the 70th anniversary of the bombing of Hiroshima a city I visited and was humbled by in November 2013 http://t.co/AcC1z5Q9Zw,1
+1637,bombing,,@moscow_ghost @sayed_ridha @Amin_Akh congratulations on capturing a besieged city after 3 months of indiscriminate bombing by land & air,1
+1638,bombing,,"The only country claiming the moral high ground is the only one to have dropped atomic bombs. #Hiroshima #BanTheBomb
+http://t.co/6G49ywwsQJ",1
+1639,bombing,,The cryptic words that guided pilots on the Hiroshima bombing mission http://t.co/nSS5L64cvR #canada,1
+1643,bombing,,#Setting4Success Bells toll in Hiroshima as Japan marks 70 years since atomic bombing #News #smallbusiness #entrepreneur,1
+1644,bombing,WorldWide,#Australia #News ; #Japan marks 70th anniversary of #Hiroshima atomic bombing http://t.co/7aD0L7cgee READ MORE; http://t.co/hHzQl9tzNP,1
+1645,bombing,,@NBCNews Yea bombing #pearlharbor not so good of an idea!,1
+1646,bombing,,The cryptic words that guided pilots on the Hiroshima bombing mission http://t.co/39IAbcC5pK,1
+1647,bombing,,70th anniversary of Hiroshima atomic bombing marked http://t.co/1mGvd4x5Oe,1
+1648,bombing,,Japan Marks 70th Anniversary of Hiroshima Atomic Bombing http://t.co/93vqkdFgnr,1
+1649,bombing,"Overland Park, KS",Japan Marks 70th Anniversary of Hiroshima Atomic Bombing http://t.co/cQLM9jOJOP,1
+1650,bombing,SWMO,Japan Marks 70th Anniversary of Hiroshima Atomic Bombing http://t.co/3EV07PPaPn,1
+1652,bombing,Puerto Rico,Japan Marks 70th Anniversary of Hiroshima Atomic Bombing http://t.co/jzgxwRgFQg,1
+1653,bombing,Toronto-Citizen of Canada & US,@rinkydnk2 @ZaibatsuNews @NeoProgressive1 When push2Left talk='ecology'&'human rts'&'democracy'. War Afghetc='Left' humanitarian bombing,1
+1654,bombing,Silicon Valley,Hiroshima bombing justified: Majority Americans even today - Hindustan Times http://t.co/cC9z5asVZh,1
+1657,bombing,,@snapharmony : Bells toll in Hiroshima as Japan marks 70 years since atomic bombing http://t.co/yPvvqZ8jzt,1
+1658,bombing,,Japan marks 70th anniversary of Hiroshima atomic bombing http://t.co/a2SS7pr4gW,1
+1660,bombing,"Washington, DC",#Japan marks 70th anniversary of #Hiroshima atomic bombing (from @AP) http://t.co/qREInWg0GS,1
+1661,bombing,,Today is the day Hiroshima got Atomic bomb 70 years ago. - The 'sanitised narrative' of Hiroshima's atomic bombing http://t.co/GKpANz7vg0,1
+1662,bombing,North East USA,"What it was like to survive the atomic bombing of Hiroshima
+http://t.co/LGrOcbXPqo",1
+1663,bombing,"Washington, D.C.",I think bombing Iran would be kinder... https://t.co/GVm70U2bPm,0
+1665,bombing,Singapore,Japan on Thursday marks the 70th anniversary of the atomic bombing of Hiroshima with the most senior official from Washington ever scheduleÛ_,1
+1666,bombing,,Oh and fuck Bill Clinton for bombing us and fuck NATO.,0
+1669,bombing,London,Japan marks 70th anniversary of Hiroshima atomic bombing: Bells tolled in Hiroshima on Thursday as Japan marked 70Û_ http://t.co/NBZiKcJpHp,1
+1670,bombing,United States,Japan marks 70th anniversary of Hiroshima atomic bombing #Generalnews http://t.co/M9o08GUrT4,1
+1671,bridge%20collapse,VitÌ_ria (ES),A Marshall Plan for the United States by Dambisa Moyo via @ProSyn #oped http://t.co/GnPStnvi5G via @po_st,0
+1672,bridge%20collapse,Mumbai,@ameenshaikh3 by ur. logic if bridge didnt collapse then second train engine should cross bridge then @sanjaynirupam @sureshprabhu,1
+1673,bridge%20collapse,,"Australia's Ashes disaster - how the collapse unfolded at Trent Bridge... http://t.co/Dq3ddGvgBF
+ #cricket",1
+1675,bridge%20collapse,,Sioux City Fire Officials Believe Bridge Collapse Lead To Cement Truck Roll Over - Siouxland Matters: Siouxlan... http://t.co/sZTGmbkoHG,1
+1676,bridge%20collapse,"New Delhi, Delhi",Ashes 2015: AustraliaÛªs collapse at Trent Bridge among worst in history: England bundled out Australia for 60 ... http://t.co/985DwWPdEt,1
+1677,bridge%20collapse,Buscame EL tu Melte,2 Injured 1 missing in bridge collapse in central Mexico http://t.co/kHF0iH05A9,1
+1679,bridge%20collapse,,I never knew about the relationship btwn Kansas City Hyatt bridge collapse & AIA's COTE. http://t.co/ThS9IqSWP3 via @HuffPostArts,1
+1683,bridge%20collapse,Wiltshire,What the fuck is going on at Trent Bridge?! Reminds me of England's collapse out in the Caribbean back in the 90s...,1
+1684,bridge%20collapse,,Swiss Kosher Hotel Bridge Collapse Injures Five People - http://t.co/TxIestoX5n @JewishPress,1
+1686,bridge%20collapse,PROUD INDIANS,Bridge collapse not natural calamity but man-made: MPP lambasts Congress - KanglaOnline http://t.co/jp9XylA3C5 #Yugvani,1
+1687,bridge%20collapse,,Two giant cranes holding a bridge collapse into nearby homes http://t.co/OQpsvrGbJc,1
+1688,bridge%20collapse,Leicester,ICYMI - #Ashes 2015: Australia collapse at Trent Bridge - how Twitter reacted http://t.co/gl6eeJyJkY http://t.co/wqtDnP3w5a,1
+1689,bridge%20collapse,"Mumbai , India",Warne shocked over Australia's epic collapse at Trent Bridge: Johannesburg Aug 06 (ANI): Legendary Australian... http://t.co/LwwoJXtTIV,1
+1690,bridge%20collapse,,Two giant cranes holding a bridge collapse into nearby homes http://t.co/UmANaaHwMI,1
+1691,bridge%20collapse,Pittsburgh PA,@BloopAndABlast Because I need to know if I'm supposed to throw myself off a bridge for a #Collapse or plan the parade. There is no both,0
+1692,bridge%20collapse,,2 Injured 1 missing in bridge collapse in central Mexico - Fox News Latino http://t.co/l0UnaFLy0Y,1
+1693,bridge%20collapse,Boston,Two giant cranes holding a bridge collapse into nearby homes http://t.co/5t69Ev0xTi via http://t.co/Nyp8OQ2Z9T,1
+1694,bridge%20collapse,MUM-DEL,#TrainTragedy - Happened in MP due to collapse of bridge now I m afraid to take a long distance train. http://t.co/JthusynJaH,1
+1698,bridge%20collapse,"Leeds, England",Listening to Blowers and Tuffers on the Aussie batting collapse at Trent Bridge reminds me why I love @bbctms! Wonderful stuff! #ENGvAUS,0
+1699,bridge%20collapse,US,Two giant cranes holding a bridge collapse into nearby homes http://t.co/jBJRg3eP1Q,1
+1700,bridge%20collapse,,Two giant cranes holding a bridge collapse into nearby homes http://t.co/gSKJqWyI2d,1
+1701,bridge%20collapse,California,#computers #gadgets Two giant cranes holding a bridge collapse into nearby homes http://t.co/UZIWgZRynY #slingnews,1
+1702,bridge%20collapse,UK,Australia's Ashes disaster - how the collapse unfolded at Trent Bridge - Telegraph http://t.co/6FYnerMUsG,1
+1703,bridge%20collapse,Nigeria,@followlasg This is urgentthere is currently a 3 storey building at church B/stop Oworoshoki Third mainland bridge which likely to collapse,1
+1705,bridge%20collapse,"Playa del Carmen, Mexico",Two giant cranes holding a bridge collapse into nearby homes http://t.co/lSQe7nu6kl,1
+1706,bridge%20collapse,,Two giant cranes holding a bridge collapse into nearby homes http://t.co/q5q1x5Vcqk,1
+1707,bridge%20collapse,,Ashes 2015: AustraliaÛªs collapse at Trent Bridge among worst in history: England bundled out Australia for 60 ... http://t.co/t5TrhjUAU0,0
+1709,bridge%20collapse,,Ashes 2015: Australia collapse at Trent Bridge - how Twitter reacted http://t.co/ik7mGidvbm http://t.co/AF1yzUS8LN,1
+1710,bridge%20collapse,,Mexico: construction of bridge collapse killsåÊone http://t.co/I2C00FcOwb http://t.co/jAAgcFaRTW,1
+1712,bridge%20collapse,,Two cranes restoring a bridge in the central Dutch town of Alphen aan den Rijn collapse on to buildings with rescuers searching for,1
+1715,bridge%20collapse,Leicester,Leicester_Merc : ICYMI - #Ashes 2015: Australia collapse at Trent Bridge - how Twitter reaÛ_ http://t.co/HqeWMREysO) http://t.co/y4y8fclJED,0
+1716,bridge%20collapse,,Two giant cranes holding a bridge collapse into nearby homes http://t.co/9asc1hhFNJ,1
+1718,bridge%20collapse,"NY, CT & Greece",US wont upgrade its infrastructure? http://t.co/NGEHhG9YGa' it a bad situation and its going to get ugly very quickly #USA #sustainability,1
+1719,bridge%20collapse,,A Marshall Plan for the United States by Dambisa Moyo via @ProSyn #oped http://t.co/l5g2zJ3kgG via @po_st,0
+1720,bridge%20collapse,Mumbai,@ameenshaikh3 sir i just only wanted to make a point about @sureshpprabhu you made and said he is lying about bridge collapse.,1
+1721,buildings%20burning,,@SonofLiberty357 all illuminated by the brightly burning buildings all around the town!,0
+1722,buildings%20burning,,'i'm a Gemini' *children screaming buildings burning police sirens in the distance*,1
+1723,buildings%20burning,"Mackay, QLD, Australia",Mmmmmm I'm burning.... I'm burning buildings I'm building.... Oooooohhhh oooh ooh...,1
+1724,buildings%20burning,Quincy MA,@DougMartin17 Fireman Ed runs into burning buildings while others are running out Doug he deserves your respect??????,1
+1725,buildings%20burning,NJ,@themagickidraps not upset with a rally upset with burning buildings businesses executing cops that have nothing to do with it etc,1
+1726,buildings%20burning,,kou is like [CASH REGISTER] [BUILDINGS BURNING],0
+1727,buildings%20burning,"Madison, GA",@_minimehh @cjoyner I must be overlooking the burning buildings? #BlackLivesMatter,1
+1728,buildings%20burning,,@fewmoretweets all lives matter. Just not a fan of burning down buildings and stealing from your neighbors to 'protest',1
+1731,buildings%20burning,KurveZ@GearHeadCentral.net,The greatest female beat boxer ever now but it's w/e... Save babies outta burning buildings on my free time but ya know.. whatevs..,0
+1733,buildings%20burning,"St Charles, MD",I'm mentally preparing myself for a bomb ass school year if it's not I'm burning buildings ??,0
+1735,buildings%20burning,"Denver, Colorado",The Rocky Fire burning in northern California is still threatening more than 7000 buildings. It's the largest in the state #9newsmornings,1
+1737,buildings%20burning,San Francisco,? High Skies - Burning Buildings ? http://t.co/uVq41i3Kx2 #nowplaying,0
+1739,buildings%20burning,Ziam af ,"Messi: has tattoos so he can't donate blood
+Ronaldo: runs into burning buildings to save dogs #respect",1
+1740,buildings%20burning,,I can probably skip on these basic life maintenance things for a few days. (cut to burning buildings people screaming in the streets),1
+1741,buildings%20burning,GO BLUE! HAIL YES!!,@1acd4900c1424d1 @FoxNews no one is rioting burning down buildings or looting.,1
+1744,buildings%20burning,"Chicago, IL",@joshcorman #infosec rather you knew it or not your a firefighter now days you often run into burning buildings Deal with it.,0
+1745,buildings%20burning,"Outside The Matrix, I Think.",into burning fucking buildings (2/2),1
+1747,buildings%20burning,,Ever since Kelly's burned I keep having dreams about being inside burning buildings ??,0
+1750,buildings%20burning,In Hell,Schools in Western Uganda still Burning down Buildings during Strikes....Strikes in Western Uganda always Lit literally..,1
+1752,buildings%20burning,"Epic City, BB.",I Pledge Allegiance To The P.O.P.E. And The Burning Buildings of Epic City. ??????,0
+1753,buildings%20burning,somewhere over a rainbow,@DoctorFluxx @StefanEJones @spinnellii @themermacorn No burning buildings and rob during a riot. That's embarrassing & ruining this nation.,1
+1754,buildings%20burning,Selma2Oakland,People are more worried about the burning of buildings than black people losing their lives disgusting.,1
+1755,buildings%20burning,,Bradford. Back to doing what we do best. Burning down our own buildings. Read it and weep Leeds. https://t.co/OLnfzb86zb,1
+1756,buildings%20burning,Bombardment Bay,@EPCOTExplorer my jealous tears are burning with the fire of a thousand ransacked buildings. SO AWESOMEEEEEEEE,1
+1757,buildings%20burning,,@zourryart I forgot to add the burning buildings and screaming babies,1
+1759,buildings%20burning,"Savannah, GA",Sinking ships burning buildings & Falling objects are what reminds me of the old us.,1
+1760,buildings%20burning,dallas,like for the music video I want some real action shit like burning buildings and police chases not some weak ben winston shit,1
+1761,buildings%20burning,"New Orleans ,Louisiana",Burning buildings? Media outrage? http://t.co/pHixZnv1YN,1
+1762,buildings%20burning,"England, United Kingdom","Must get hot in burning buildings
+
+-loses followers- https://t.co/8sP8xLbbDR",1
+1763,buildings%20burning,"Dublin City, Ireland",@RockBottomRadFM Is one of the challenges on Tough Enough rescuing people from burning buildings?,0
+1766,buildings%20burning,"Leeds, England",saving babies from burning buildings soaking cake in a shit tonne of alcohol mat is a man after my own heart ?? #GBBO,0
+1767,buildings%20burning,,@PPFA At least they aren't burning buildings and looting stores.,0
+1768,buildings%20burning,New Hampshire,Witness video shows car explode behind burning buildings on 2nd St this afternoon #Manchester http://t.co/cgmJlSEYLo via @MikeCroninWMUR,1
+1769,buildings%20burning,"Washington, D.C.",Watching Xela firefighters struggle to save burning buildings last night w/ old equipment makes me so grateful for DCFD @ChR3lyc @IAFF36,1
+1770,buildings%20burning,,"http://t.co/WRB7Xd8W5y
+CROYDON RIOTS- The Next Day: Burning Buildings in High Street & crowds at Reeves Corner
+Croydonization
+August 2011",1
+1771,buildings%20on%20fire,World Wide,Fire hazard associated with installation of non-compliant external cladding on http://t.co/bTPQdehl3p - By @www.cbplawyers,1
+1772,buildings%20on%20fire,Intermountain West,.@greenbuildermag @NFPA to hold free webinar on #wildfire mitigation 8/19 at 2pm ET. http://t.co/xmsvOHKccP @Firewise @Michele_NFPA,1
+1773,buildings%20on%20fire,World Wide,Fire hazard associated with installation of non-compliant external cladding on http://t.co/4I0Kz2aKly - By @www.cbplawyers,0
+1774,buildings%20on%20fire,New Hampshire,Video: Fire burns two apartment buildings and blows up car in Manchester http://t.co/5BGcw3EzB5,1
+1775,buildings%20on%20fire,"Manchester, NH",Fire destroys two buildings on 2nd Street in #Manchester http://t.co/Tqh5amoknd,1
+1776,buildings%20on%20fire,"Tulsa, Oklahoma",Multiple Buildings On Fire In Downtown Hinton http://t.co/P6kdh0p0Sp http://t.co/WaetKGsZA9,1
+1779,buildings%20on%20fire,,Buildings are on fire and they have time for a business meeting #TheStrain,1
+1780,buildings%20on%20fire,"Auburn, AL",Ton of smoke coming out of one of the new apartment buildings at 160 Ross in Auburn. Several fire trucks on scene. http://t.co/AHVYmSQHqC,1
+1784,buildings%20on%20fire,,square just let booty org write xv im sure we'd do just fine (buildings around me set on fire),0
+1786,buildings%20on%20fire,,Smoke detectors not required in all buildings: An office building on Shevlin-Hixon Drive was on fire. There we... http://t.co/z6Ee1jVhNi,1
+1787,buildings%20on%20fire,taken by piper curda,"someone: mentions gansey on fire
+me busting through the brick walls of seven different buildings:",1
+1789,buildings%20on%20fire,Toronto,Such beautiful architecture in #NYC I love those fire escape routes on the buildings. #newyorkÛ_ https://t.co/fW1PtaElgV,1
+1790,buildings%20on%20fire,Scotland ,#TweetLikeItsSeptember11th2001 Those two buildings are on fire,1
+1791,buildings%20on%20fire,"Nigeria, Global",just in: #kenya: several buildings are reported to be on fire close to dam estate #langata at 2:22pm.,1
+1792,buildings%20on%20fire,"Fort Walton Beach, Fl",They are evacuating buildings in that area of State Road 20. We still don't have confirmation of what is on fire.,1
+1796,buildings%20on%20fire,Sweden,shootings explosions hand grenades thrown at cars and houses & vehicles and buildings set on fire. It all just baffles me.Is this Sweden?,1
+1798,buildings%20on%20fire,"Groton, CT",A change in the State fire code prohibits grills on decks at condos and apartment buildings. Check with your... http://t.co/KE1ZS6NAml,0
+1799,buildings%20on%20fire,Brisbane Australia,Fire hazard associated with installation of non-compliant external cladding on high-rise buildings - Insurance - Aust http://t.co/wFsEaOBATo,0
+1802,buildings%20on%20fire,NY Capital District,Fire Displaces Families and Damages Two Buildings in Troy: Fire broke out on Fourth Street inÛ_ http://t.co/6HKw5qLPPt #Albany #NY #News,1
+1803,buildings%20on%20fire,Peoria,What news reports am I missing? Are there buildings on fire people shot etc. due to videos? #PPSellsBabyParts https://t.co/Wzc5r4XOqZ,1
+1804,buildings%20on%20fire,Reading UK,So my band Buildings on Fire are playing @bbcintroducing @PurpleTurtleRdg this Wednesday with @GIANTGIANTSOUND https://t.co/ofaN6DkOEZ #rdg,0
+1807,buildings%20on%20fire,UK,#TweetLikeItsSeptember11th2001 Those two buildings are on fire,1
+1808,buildings%20on%20fire,"Concord, NH ",Now on http://t.co/3sTH9lrBUn: PHOTOS: Flames rage through Manchester buildings in 3-alarm fire http://t.co/jQxM4gcQZ3 #NH1News,1
+1809,buildings%20on%20fire,CORNFIELDS,@BigSim50 nah Philly pundits are half the cause. They set buildings on fire to report on buildings being on fire.,1
+1810,buildings%20on%20fire,"Worcester, MA",MaFireEMS: RT WMUR9: Two buildings involved in fire on 2nd Street in #Manchester. WMUR9 http://t.co/QUFwXRJIql via KCarosaWMUR,1
+1811,buildings%20on%20fire,"Roanoke, VA",Now on WSLS: fire burns multiple buildings in #Montgomery Co tips to make childcare less expensive & rain. Join @jennasjems @PatrickWSLS,1
+1812,buildings%20on%20fire,nj,I just wanted to watch Paper Towns but the buildings on fire ?????,1
+1813,buildings%20on%20fire,,I hope the only time I end up on TV is when I'm being arrested for lighting buildings on fire.,1
+1814,buildings%20on%20fire,MA via PA,Charred remains of homes on 2nd St in Manchester NH after fire rips through 2 buildings damaging neighboring homes http://t.co/Ja3W1S3tmr,1
+1815,buildings%20on%20fire,"Boston, MA",Three-alarm fire destroys two residential buildings a car in Manchester N.H. on Sunday afternoon http://t.co/rVkyj3YUVK,1
+1816,buildings%20on%20fire,World Wide,1943: Poland - work party prisoners in the Nazi death camp Treblinka rebelled seizing small arms and setting buildings on fire. #history,1
+1817,buildings%20on%20fire,New Hampshire,17 people displaced after 3-alarm fire tore through 2 apartment buildings on Second Street in Manchester. -- http://t.co/NzqwTCYidv #MHT,1
+1818,buildings%20on%20fire,"Oklahoma City, OK",Hinton city officials confirm multiple buildings on fire currently evacuating people on Main Street. We're on our way @OKCFOX,1
+1821,burned,toronto Û¢ dallas,I HATE WHEN IM TRYING TO STRAIGHTEN MY HAIR AND MY BROTHER COMES SWOOPING IN BEHIND ME AND SCARES ME I JUST BURNED MY FINGER,0
+1822,burned,San Diego CA,Fire burning on Pendleton has burned 300 acres: Smoke reported drifting over Temecula. http://t.co/ZR5RgbGh03,1
+1823,burned,germany,I should probably stay away from hot glue guns.. I burned one finger pretty bad,0
+1824,burned,,What progress we are making. In the Middle Ages they would have burned me. Now they are content with burning my books. -Sigmund Freud,0
+1826,burned,Massachusetts,@HGF52611 Uh huh. You only have to be burned once to know fire hurts. Robbie Ross should throw home run derby in the All Star Game #RedSox,0
+1827,burned, Nxgerxa,Burned my popcorn??,0
+1831,burned,"Erie, PA",@Wild_Lionx3 so others don't get burned,0
+1832,burned,,when you're taking a shower and someone flushes the toilet and you have .1 second to GTFO or you get burned??????????????????????????????????????????????????,0
+1833,burned,"Port Charlotte, FL","Always look for the silver lining!
+
+My barn having burned to the ground
+I can now see the moon.
+~ Mizuta... http://t.co/Gl4McaX0ny",0
+1834,burned,"Belleville, Illinois",Sure I just burned about 100 calories after eating a giant bowl of mac and cheese so I totally earned this 300 calorie Klondike Bar.,0
+1835,burned,Alabama,Alton brown just did a livestream and he burned the butter and touched the hot plate too soon and made a nut joke http://t.co/gvd7fcx8iZ,0
+1836,burned,,All you have to do is look up sports riots on google and you'll see more than couches being burned.. You fr gotta go https://t.co/P1AmgINsYs,1
+1837,burned,Long Island NY & San Francisco,I spent 17 minutes walking with RunKeeper. 90 calories burned. #LoseIt,0
+1838,burned,Canada,Sure - take them away from fire fighting for King Stevie & Crusty to have a photo-op ! http://t.co/epeX4axG4b,0
+1840,burned,"Gainesville, FL",burned 129 calories doing 24 minutes of Walking 3.5 mph brisk pace #myfitnesspal,1
+1841,burned,,Don't get burned twice by the same flame.,0
+1842,burned,"Oakland, CA",Burned dog finds new home with young burn victim http://t.co/Pqrjvgvgxg,1
+1845,burned,956,It hurts for me to eat cause i burned my tounge with a pepperoni yesterday!,0
+1847,burned,Chicago,I spent 15 minutes lifting weights. 43 calories burned. #LoseIt,0
+1848,burned,,Holy fuck QVC bitch just got burned so hard.,0
+1851,burned,"Escondido, CA",I just remembered the McDonald's that burned down used to have the coolest play ground & the new one ain't got shit but video games )):,0
+1852,burned,DC,burned 202 calories doing 30 minutes of Walking 4.0 mph very brisk pace #myfitnesspal,0
+1853,burned,,My sister Rl Burned All Her Boyfriend Clothes Recorded It & Sent It to him ????,0
+1856,burned,,"@kennethbauer_ more like coffee and noodles
+
+Burned",0
+1857,burned,,Just burned the crap out of my grilled cheese sandwich. Sure wish I had a few life skills figured out by now...,0
+1860,burned,Chicago Area,I joked about it but Wood has to be burned out from working so many innings so often. #CubsTalk,0
+1861,burned,,Mad River Complex fires have burned 14028 acres 8% contained: The Mad River Complex fires in Trinity County ... http://t.co/LfNIPpNOtO,1
+1863,burned,"Upper St Clair, PA",@thomasvissman22 @KeithyyL Keithyy gettin burned outta the blocks and on social media.... http://t.co/dlkuFtLQnF,0
+1864,burned,,I burned myself today on the oven ?? it was at 500 degrees ??,0
+1865,burned,,Watch how bad that fool get burned in coverage this year. Dat dude is all-pro practice squad material,1
+1866,burned,,I PUT MY CHICKEN NUGGETS IN THE MICROWAVE FOR 5 MINUTES INTEAD OF 1 ON ACCIDENT AND THEY FUCKING BURNED,0
+1869,burned,,Just burned the shit outta myself on my dirt bike ??,0
+1870,burned,Cherry Creek Denver CO,Metal Cutting Sparks Brush Fire In Brighton: A brush fire that was sparked by a landowner cutting metal burned 10Û_ http://t.co/rj7m42AtWS,1
+1873,burning,627,the stars are burning i here your voice in my mind,0
+1875,burning,,You Bitches Walking Around Like Yall Hot Shit & Got Bed Bugs & You Burning ????,0
+1877,burning,Blogland,It's raining outside I'm burning my favorite candle and there's hot cocoa to sip. Nap time = awesomesauce.,0
+1878,burning,mumbai,hermancranston: #atk #LetsFootball RT SkanndTyagi: #letsFootball #atk WIRED : All these fires are burning through Û_ http://t.co/DmTab6g7j7,0
+1880,burning,Isle of Man,501 sky news mandem in totteham going maddddd burning up fed cars an dem ting dere,1
+1881,burning,,@aubilenon @MarkKriegsman if you think you'd like burning man you should try it because it's the only way to know!,0
+1882,burning,"Hampton Roads, VA",The 8-Minute Fat-Burning Routine ThatÛªs Also Really Fun http://t.co/g2h7xNecD8 #fat weightless # fatburning #burnfat #skinny #workout,0
+1883,burning,,ÛÓ bulletproof and black like a funeral; the world around us is burning but we're so cold. http://t.co/uqssnAAtTu,1
+1885,burning,Gameday,.@StacDemon with five burning questions for Chris Mullin and St. JohnÛªs in 2015-16: http://t.co/NmRVTHkvAh #SJUBB,1
+1886,burning,,@JohnsonTionne except idk them?? it's really burning ??????,0
+1887,burning,Earthling (For now!),Leader of #Zionism STOP BURNING #Babies https://t.co/6xYsDN2Xz0,1
+1888,burning,,Kanger coils - burning out fast? via /r/Vaping101 http://t.co/cykr4XAlUH,0
+1889,burning,,RT @HuffPostComedy: We should build a wall that keeps Burning Man attendees from coming home http://t.co/xwVW1sft4I http://t.co/j7HUKhWmal,0
+1890,burning,"Black Canyon New River, AZ",Flames visible from fire in Tucson mountains: A lightning-caused fire burning in steep rocky terrain in mountainsÛ_ http://t.co/zRTRPL77QV,1
+1892,burning,"Caracas, Venezuela.",We will be burning up like neon lights??????,1
+1893,burning,,Don't be so modest. You certainly... *sniff* *sniiiiiiff* Er Donny? Is something burning?,0
+1895,burning,NY,The Burning Legion has RETURNED! https://t.co/hKsbmijqZ1,0
+1897,burning,Charlottetown,the bar method ÛÓ integrates the fat burning format of interval training the muscle shaping techniqu http://t.co/xuzee2BUdv,0
+1898,burning,,If you're bored with life if you don't get up every morning with a burning desire to do things - you don't have enough goals. -Lou Holtz,0
+1899,burning,,My hand is burning,1
+1900,burning,"Paradise, NV",Uhhhhh demon hunters. But not the whole Burning Crusade v 2.0 thing. https://t.co/oPtpS1lgKC,0
+1901,burning,??t?a,Now playing: Boat Club - Memories on London Burning Web Radio - http://t.co/umtNNImTbM,0
+1905,burning,,@nagel_ashley @Vicken52 @BasedLaRock @goonc1ty rip the world... its burning,0
+1908,burning,Li̬ge,@Rubi_ How many stacks of burning did it apply?,0
+1909,burning,"Spokane, Washington 99206",Parents are taking their kids to Burning Man and one 11 year old thinks it's 'better than... http://t.co/wp6V1BHhoQ,0
+1910,burning,taco bell,@Michael5SOS haha so would you say its so hot your balls are burning off????,1
+1911,burning,,Why put out a fire that's still burning?,0
+1914,burning,Australian Capital Territory,#?x?: :and to counter acts such as the burning of the Alexandrian library.,1
+1915,burning,http://www.amazon.com/dp/B00HR,'CALIFORNIA IS BURNING:' Gov. Jerry Brown told reporters at a press conference that California is experiencing... http://t.co/arzeMSR7FQ,1
+1916,burning,"New York, NY",If YouÛªre Not Paying Attention to Your Influencers YouÛªre Burning Money | SocialTimes http://t.co/Ptc0xcRAGY,0
+1917,burning,[ kate + they/them + infp-t ],@minsuwoongs i completely understand because i just woke up like 15 minutes ago and im Burning,0
+1918,burning,,#ika #tuning Soup #diet recipes | fat burning soup recipes: http://t.co/8r5vpAoo5z Fat Burning Soup Diet Recip http://t.co/JvcxB75DrJ,0
+1919,burning,New York,2 Burning Man Tickets + Vehicle Pass - Full read by eBay http://t.co/b0eS3ZIORK http://t.co/juIIt2YFVo,0
+1920,burning,,The last few days of summer are supposed to be the most fun so what's more fun then accidentally burning arm hair while playing w/ a lighter,0
+1921,burning%20buildings,"Sacramento, CA",Killing Black Babies at Planned Parenthood where's the demonstrations looting of PP burning down the buildings Black Babies Lives Matter,1
+1922,burning%20buildings,"Mackay, QLD, Australia",Mmmmmm I'm burning.... I'm burning buildings I'm building.... Oooooohhhh oooh ooh...,0
+1924,burning%20buildings,"St Charles, MD",I'm mentally preparing myself for a bomb ass school year if it's not I'm burning buildings ??,0
+1925,burning%20buildings,please H? ?:??,the mv should just be them strutting like they mean it while buildings are burning up in the bg and flames everywhere how cool would that be,1
+1927,burning%20buildings,we?it Û¢ ixwin,@Louis_Tomlinson incredible? THE CHILDREN WERE SCREAMING BUILDINGS WERE BURNING AND I WAS DANCING IN THE ASHES,1
+1929,burning%20buildings,,@fewmoretweets all lives matter. Just not a fan of burning down buildings and stealing from your neighbors to 'protest',1
+1932,burning%20buildings,,A protest rally at Stone Mountain? Atleast they're not burning down buildings and looting store like some individuals do when they 'protest',0
+1933,burning%20buildings,Santiago Bernabeau,My man runs into burning buildings for a living but is scared to hit up a girl. I don't get it.,0
+1935,burning%20buildings,y/e/l,THIS SOUNDS LIKE A SONG YOU WOULD HEAR IN A MOVIE WHERE THEY ARE WALKING AWAY FROM BURNING BUILDINGS AND CARS AND SHIT,0
+1937,burning%20buildings,,@foxnewsvideo @AIIAmericanGirI @ANHQDC So ... where are the rioters looters and burning buildings???? WHITE LIVES MATTER!!!!!!,1
+1938,burning%20buildings,,forestservice : RT dhsscitech: #Firefighters run into burning buildingsÛÓwe work on #tech tÛ_ http://t.co/KybQcSvrZa) http://t.co/Ih49kyMsMp,1
+1939,burning%20buildings,,#KCA #VoteJKT48ID DUCKVILLELOL: Burning flips the table and says 'screw this lets hit some buildings!' Grabs a DR Û_ http://t.co/03L7NwQDje,0
+1940,burning%20buildings,,Hero's fight wars and save ppl from burning buildings etc I'm sorry but u gotta do more than pay 4 a sex change be4 I call u a hero,0
+1941,burning%20buildings,NJ,@themagickidraps not upset with a rally upset with burning buildings businesses executing cops that have nothing to do with it etc,1
+1942,burning%20buildings,"Whiterun, Skyrim",Destruction magic's fine just don't go burning down any buildings.,1
+1943,burning%20buildings,"New Orleans ,Louisiana",Burning buildings? Media outrage? http://t.co/pHixZnv1YN,1
+1945,burning%20buildings,"Seattle, WA",I will never support looting or the burning of buildings but when seeing the people fight back against the police. I was proud,1
+1948,burning%20buildings,"Greenpoint, Brooklyn",Attempting Delany's Dhalgren in beastly NY heat. Downing hot coffee amongst descriptions of buildings burning for days without ruin.,0
+1949,burning%20buildings,,@MoFanon ?? your last retweet you would think the lion saved people from a burning buildings it's not that deep,0
+1950,burning%20buildings,dallas,like for the music video I want some real action shit like burning buildings and police chases not some weak ben winston shit,0
+1951,burning%20buildings,,I'm battling monsters I'm pulling you out of the burning buildings and you say I'll give you anything but you never come through.,0
+1952,burning%20buildings,"Oklahoma City, OK",Large fire burning several buildings causing evacuations in downtown Hinton: http://t.co/mtMkiMwiyy,1
+1953,burning%20buildings,Los Angeles,Ali you flew planes and ran into burning buildings why are you making soup for that man child?! #BooRadleyVanCullen,0
+1954,burning%20buildings,"Victoria, British Columbia",Heavy smoke pouring out of buildings on fire in Port Coquitlam http://t.co/GeqkdaO4cV http://t.co/Dg0bGzeCgM,1
+1955,burning%20buildings,a botanical garden probably,drew storen is probably curing cancer & saving puppies from burning buildings while contemplating what he did 2 deserve this disrespect,0
+1956,burning%20buildings,,Ah yes the gays are totally destroying America. I can see buildings burning and meteors crashing into schools wow,0
+1957,burning%20buildings,"Madison, GA",@_minimehh @cjoyner I must be overlooking the burning buildings? #BlackLivesMatter,1
+1959,burning%20buildings,"Nelspruit, South Africa",Strikers in Phalaborwa striking over the CHINESE taking their jobs. Strikers burning buildings attacking cars 2... http://t.co/08LnGClZsj,1
+1960,burning%20buildings,midwest,if firefighters acted like cops they'd drive around shooting a flamethrower at burning buildings,0
+1961,burning%20buildings,"Copenhagen, Capital Region of Denmark","dog rendered a kitten from burning buildings
+https://t.co/9cpWIEcEGv http://t.co/rZLYtneZ2u",1
+1962,burning%20buildings,In Hell,Schools in Western Uganda still Burning down Buildings during Strikes....Strikes in Western Uganda always Lit literally..,1
+1963,burning%20buildings,Spying on your thoughts,@kshllcenterpri1 @Progress4Ohio burning down buildings what you mean like when you burnt down those black churches?,1
+1965,burning%20buildings,seattle grace mercy death,"'i never understood guys who wanted to run into burning buildings.'
+'you chase murderers.'
+'not if they're on fire.'",0
+1966,burning%20buildings,Selma2Oakland,Dudes will thoroughly express how stupid black ppl r for burning buildings in response to brutality but nvr mention them being mistreated.,1
+1967,burning%20buildings,"Tucson, Arizona ","You picture buildings burning to the ground from the basement to the streetlight.
+
+I'm not your drinking problem
+a hole is in the sky.",1
+1968,burning%20buildings,"Epic City, BB.",I Pledge Allegiance To The P.O.P.E. And The Burning Buildings of Epic City. ??????,1
+1969,burning%20buildings,Charlotte County Florida,Where are the protests ? The riots? The burning buildings? How come you don't see any of that crap happening when... http://t.co/1QOchsPYbw,1
+1971,bush%20fires,Head Office: United Kingdom,Insane bush fires in California. Be safe. https://t.co/jSlxTQ3NqS,1
+1972,bush%20fires,Mid north coast of NSW,@POTUS Would you please explain what you are going to do about the volcanoes & bush fires spouting all that CO2 into the air?,1
+1973,bush%20fires,"iPhone: -27.499212,153.011072",@marcoarment Middle of winter in Sydney we have had snow bush fires and 78 degree days in the last week. Keeps you on your toes for sure.,1
+1975,bush%20fires,Queen Creek AZ,Ted Cruz fires back at Jeb & Bush: ÛÏWe lose because of Republicans like Jeb & Mitt.Û [Video] - http://t.co/BFTHaHLCr0,0
+1976,bush%20fires,,OMFG there are bush fires all over this tiny island. Our freaking house is gonna burn down.,1
+1979,bush%20fires,Jamaica,Slash-and-burn blamed for bush fires in western St Thomas - http://t.co/5dJ6cHjFZP,1
+1980,bush%20fires,Trinidad and Tobago,Drought fuels bush fires in Jamaica - http://t.co/ZDtDqQbAHC http://t.co/PsQCNsVfgP - @JamaicaObserver @cnewslive RE https://t.co/6ZGef8J8Bm,1
+1981,bush%20fires,,Ted Cruz fires back at Jeb & Bush: ÛÏWe lose because of Republicans like Jeb & Mitt.Û [Video] - http://t.co/bFtiaPF35F,0
+1983,bush%20fires,,@DoriCreates @alhanda seems gov moonbeam between tokes blames bush for all the fires.,1
+1985,bush%20fires,Melbourne Australia,The Public Health Team was traumatised after the bush fires. Could #AppreciativeInquiry turn this around? http://t.co/soEa1GgbKj,1
+1986,bush%20fires,The Internet & NYC,'When you attack women's health you attack America's health.' Hillary Clinton shows how to #StandwithPP http://t.co/HXdG254dHO,0
+1987,bush%20fires,London/Bristol/Guildford,On holiday to relax sunbathe and drink ... Putting out bush fires? Not so much ?? #spain https://t.co/dRno7OKM21,0
+1989,bush%20fires,"Canberra, Australian Capital Territory",Californian Bush Fires 2015 http://t.co/rjdX29wosp,1
+1990,bush%20fires,,28 Oct 1895: 'Bush Fires.' http://t.co/zCKXtFc9PT,1
+1991,bush%20fires,beacon hills ,@dacherryontop13 ohh there are bush fires in Spain like every year one time when we went swimming there were planes getting water to fight,1
+1992,bush%20fires,somewhere outside,Bush Fires are scary....even scarier when you go down and fight them,1
+1994,bush%20fires,,One thing you can be sure of. There will never be bush fires in Scotland as the ground is always soaking wet????,0
+1995,bush%20fires,Wolmers Trust School for Boys ,Drought fuels bush fires in Jamaica - http://t.co/0YMF6TXFcH http://t.co/3i3d2NGeNt - @JamaicaObserver @cnewslive RE https://t.co/jyIEkEo2he,1
+1996,bush%20fires,Loughborough.,@JohnFromCranber Pleas FOR global warming don't really work when California / Australia keep having catastrophic 'bush' fires.,1
+1999,bush%20fires,,Ted Cruz fires back at Jeb & Bush: ÛÏWe lose because of Republicans like Jeb & Mitt.Û [Video] http://t.co/FgDEh56PLO,0
+2000,bush%20fires,"Sydney, Australia",SMH photographer Wolter Peeters was on the front line with NSW Rural Fire Service crews laÛ_ http://t.co/gXe7nHwZ3e http://t.co/sRbqlMuwbV,1
+2001,bush%20fires,,So apparently there were bush fires near where I live over the weekend that I was totally oblivious to...,1
+2003,bush%20fires,Selangor,California Bush fires please evacuate affected areas ASAP when california govts advised you to do so http://t.co/ubVEVUuAch,1
+2006,bush%20fires,,Ted Cruz fires back at Jeb & Bush: ÛÏWe lose because of Republicans like Jeb & Mitt.Û [Video] - http://t.co/KCofF6BmiE,0
+2007,bush%20fires,London,The Bush fires in CA are so crazy,1
+2009,casualties,indiana,That triumphant moment when you cook up two eggs over easy with no yolk casualties ?? http://t.co/fQJ5Aga1pd,0
+2010,casualties,,"??
+Warfighting Robots Could Reduce Civilian Casualties So Calling for a Ban Now Is Premature - IEEE Spectrum http://t.co/TzR58B86qz",1
+2012,casualties,,Another movie theater attack..close to home this time. Thankful for no casualties. Life will go on because we cannot allow evil to win!,1
+2014,casualties,Philippines,Civilian casualties rise as Afghan war intensifies in 2015-- http://t.co/NnylXhInPx,1
+2015,casualties,,Afghan conflict sees 'sharp rise' in female casualties http://t.co/4hcYwRWN6L http://t.co/2TwXZ6vxbx,1
+2016,casualties,"Bronx, New York",Warfighting Robots Could Reduce Civilian Casualties So Calling for a... http://t.co/9DVU1RidZ3,1
+2017,casualties,Canadian bread,@LibertarianLuke I'm all for that to be honest. If people want to go on a rampage let them use their own hands and feet. No casualties.,0
+2019,casualties,"Phoenix, AZ","Afghanistan: U.N. Reports 'Record-High Levels' of Civilian Casualties
+
+In news from Afghanistan the United... http://t.co/YMcZyVKfmE",1
+2020,casualties,Le Moyne '16,Need to stop bottling things up because when everything eventually explodes the casualties just keep getting higher and higher,1
+2022,casualties,,Countless Casualties All Across The Globe War Being Orchestrated On All The Corners Of The Planet [On All Levels] http://t.co/G1BWL3DQQK,1
+2023,casualties,,disinfo: Warfighting Robots Could Reduce Civilian Casualties So Calling for a Ban Now Is ... -... http://t.co/yUinMErQ2s #criticalmedia,1
+2024,casualties,"Hoxton, London",A poignant reminder that in war there are many casualties. http://t.co/Mwmt3BdR5L,1
+2026,casualties,"Las Vegas, NV USA",@LasVegasLocally @VitalVegas They reined it in to 3 drinks each for 2 people but only on account of too many falling-off-stool casualties!,0
+2027,casualties,Heinz Field ,There might be casualties tomorrow,1
+2028,casualties,Skyport de la Rosa,The more I listen to it the more I believe Casualties of Cool is one of the best albums there ever was.,0
+2031,casualties,USA,'American Weapons and Support Are Fueling a Bloody Air War in Yemen' http://t.co/7aGeAkVn2x,1
+2033,casualties,The Low-Cal Calzone Zone,I'M LAUGHING IN THE FACE OF CASUALTIES AND SORROW THE FIRST TIME I'M THINKING PAST TOMORROW BUT I AM NOT THROWIN AWAY MY SHOT,1
+2034,casualties,"Brooklyn, New York",@Catwoman1775 Another shooting in a movie theater this is getting more crazier but I'm glad they got the shooter & no casualties.,1
+2035,casualties,,"Students at Sutherland remember Australian casualties at Lone Pine Gallipoli
+ http://t.co/d50oRfXoFB via @theleadernews",1
+2036,casualties,US,Sharp rise in women children casualties in Afghan war UN says http://t.co/0CXm5TkZ8y http://t.co/v5aMDOvHOT,1
+2038,casualties,50% Queanbeyan - 50% Sydney,"@FlyOpineMonkey You mean Olympic ;-)
+Also its follow-up for Honshu Operation Coronet.
+In all: 1m Allied casualties 30m Japanese dead.",1
+2039,casualties,,@AlcoholAndMetal + do anything to fix that. Of the few people he had every trusted in his life Charles was one of the casualties.,1
+2040,casualties,,Civilian Casualties in Afghanistan Reach Record High http://t.co/r8pTVFUh5X http://t.co/npCKK0tlEQ,1
+2042,casualties,,@CounterMoonbat @Voodoo_Ben I've heard we're still using Purple Hearts manufactured then bc of the # of casualties we expected.,1
+2043,casualties,USA,Another day has passed and THANKFULLY Central Command has CONFIRMED NO new casualties. Please pray for those in... http://t.co/mFSw0tYstA,1
+2045,casualties,UK,News Wrap: UN warns female and child casualties are on the rise in Afghanistan http://t.co/vSvY1qe69t #pbs #iraq,1
+2046,casualties,Insula Barataria,ÛÏThe road to power is paved with hypocrisy and casualties.Û #FrancisUnderwood #HoC https://t.co/zqO6NUvYTu,0
+2047,casualties,everywhere ,"Revise the Death to America scenario?
+
+While there's 500 American casualties by Iranian activity SUSPECTED!!! http://t.co/drlKEbeYPi",1
+2049,casualties,"Afghanistan, USA",#Afghanistan: sharp rise in women and children casualties in first half of #2015 http://t.co/LdyWd4ydT9,1
+2050,casualties,"Inglewood, CA",Stay tuned or don't idc #casualties http://t.co/nssjPR6Pdd,0
+2051,casualties,"Absecon, NJ",#Civilian casualties in Afghanistan hit highest number since 2009 U.N. says via @WashingtonPost - http://t.co/xTF5DvgRvh,1
+2055,casualties,"Williamsbridge, Bronx, New Yor",Warfighting Robots Could Reduce Civilian Casualties So Calling for a Ban Now Is Premature http://t.co/lzff4pT4AZ #FTSN #FTSNNewsdesk #Û_,1
+2056,casualties,"Northern Kentucky, USA",@irishspy What you don't think the Allies should have just sucked up 1 million casualties?,1
+2057,casualties,,Afghanistan: sharp rise in women and children casualties in first half of 2015 http://t.co/3sqSErgnI2,1
+2058,casualties,Mostly Yuin.,Whimsy as it pertains to mass casualties. Always impressive.,0
+2059,casualty,Nairobi,Train derailment: In Patna no news of any casualty so far http://t.co/Yg697fcQGr,1
+2060,casualty,Canada,We're #hiring in our Toronto branch! Surety Underwriter/Senior Underwriter and Casualty Product Leader. Apply today. http://t.co/PraMKlrMhz,0
+2061,casualty,"Rochelle, GA",Being able to stay out of work this week to take online courses for the Property and Casualty StateÛ_ https://t.co/jmD7zwKSDM,0
+2063,casualty,,Property/casualty insurance rates up 1% in July: After several months of no movement commercial property/casu... http://t.co/KcLkoKqI8a,1
+2064,casualty,London UK,Was '80s New #Wave a #Casualty of #AIDS?: Tweet And Since theyÛªd grown up watching DavidÛ_ http://t.co/qBecjli7cx,0
+2067,casualty,south of heaven ,Cos sanity brings no reward for one more hit and one last score... Don't be a casualty cut the cord...,1
+2068,casualty,,Another sad ocean casualty-Gray whale population in the Pacific listed as critically #endangered (#drone video) https://t.co/vwz3vZpmfb .,1
+2069,casualty,"El Dorado, KS",@ThomasHCrown My grandfather was set to be in the first groups of Marines to hit Japan in Operation Olympic. 95% casualty rate predictions,1
+2070,casualty,"Santa Monica, CA",1st Quality Insurance Group is #hiring Licensed Property & Casualty Insurance Agent Produc http://t.co/VMJRtuVmh4 #jobs #Denver,0
+2071,casualty,,'Become another casualty of society',0
+2073,casualty,Kenya,Benzema increasingly looks to be a casualty of Benitez's new look squad. Arsenal bound? 50-50 chance I think,1
+2074,casualty,"1648 Queen St. West, Toronto.",WANTED: gritty and real casualty photos of Pasta Thursdays at Amico's. Tag us or #amicospizzato #seeyouatamicos... http://t.co/MZ8VQXbKTs,0
+2075,casualty,"Toledo, OH",Casualty Team: Ice Cream Recall Sends Chill Through Food Industry http://t.co/6GsAmY6mts,0
+2076,casualty,,UNPREDICTABLE DISCONNECTED AND SOCIAL CASUALTY ARE MY FAVORITES HOW DO PEOPLE NOT LIKE THEM,1
+2077,casualty,"Fairfield, California",@NorthBayHealth Trauma Center Shines In Response To Multi-Casualty Crash. http://t.co/21B6SKPDUR http://t.co/wBCb3sYtj7,1
+2078,casualty,"Trinity, Bailiwick of Jersey",@ScriptetteSar @katiecool447 btw the 30th is actually next year casualty began 6th September 1986 so 2016 marks 30 years,1
+2081,casualty,Virginia,@AvBronstein @Popehat @instapundit @KurtSchlichter Also are you aware of the casualty estimates for an invasion of Japan's home islands?,1
+2082,casualty,LIVERPOOL,"You can't watch 'Home Alone 2' without telling your kids
+'she used to be on Casualty'.
+#Homealone2 #film4",0
+2083,casualty,,AM Best Special Report: How Metrics Correlate to AM Best's Property/Casualty ... - MarketWatch http://t.co/mVrsYu2PPK,0
+2084,casualty,,That took way longer than I expected,0
+2086,casualty,,I still don't know why independence day and social casualty are not on the rowyso setlist these songs would be so good live,0
+2087,casualty,,@Calum5SOS I need to stop doing this to myself???? @s_casualty,0
+2089,casualty,"Boulder, CO",RT @GreenHarvard: Documenting climate change's first major casualty http://t.co/4q4zd7oU34 via @GreenHarvard,1
+2091,casualty,,@5SOSFamUpdater social casualty,0
+2094,casualty,"Washington, D.C.",Canceling Deal for 2 Warships #France Agrees to Repay #Russia via @nytimes http://t.co/f2gwxEPrAk,0
+2095,casualty,"Hospital, bc of SKH vid.",Social Casualty #MTVHottest 5SOS,0
+2096,casualty,Hartford London Hong Kong,Conning Builds Strong Case for Portfolio #Diversification for Property-Casualty Insurers http://t.co/33FbR25t1O,0
+2097,casualty,In @4SkinChan 's arms,@reriellechan HE WAS THE LICH KING'S FIRST CASUALTY BLOCK ME BACK I HATE YOU! http://t.co/0Gidg9U45J,1
+2098,casualty,,Casualty Roleplay somebody please am so bored,0
+2099,casualty,,Casualty insurance jobs against hunt up willinghearted into: RPN http://t.co/pByA7Uv3V5,0
+2100,casualty,"Massachusetts, USA",Japan had a nuke program (albeit unsuccessful) and the casualty estimates for a ground war were in the tens of millions. @MacKinnon08,1
+2102,casualty,Seattle,#NowPlaying: Dubstep Hardstyle Trap Messy Mix (event recording) by Alien Casualty on @Mixify http://t.co/m203UL6o7p http://t.co/m203UL6o7p,1
+2103,casualty,"Kansas City, MO",Small casualty on the way to Colorado http://t.co/hDVmhSQXHm,1
+2108,casualty,,.@stavernise: France agreed to repay Russia for two warships which were never delivered after economic sanctions http://t.co/K4H8cq7puo,0
+2109,catastrophe,,.@robdelaney Catastrophe is anything but! I literally have been unable to stop ejaculating.,1
+2110,catastrophe,"Wellington, New Zealand",@APPLEOFFIClAL Migrating from iPhoto to Photo is a catastrophe. I have wasted days trying to get this to work. 12 hrsto get to 8% complete.,0
+2111,catastrophe,"West Virginia, USA",Cultivating Joy In The Face Of Catastrophe And Suffering http://t.co/o0LTQDJbQe #pjnet #tcotåÊ#ccot http://t.co/MO9wpTyqkp,0
+2112,catastrophe,,#Borrowers concerned at possible #interest rate rise. This could be a #catastrophe http://t.co/SBHHkkz01Y,0
+2113,catastrophe,?? ??,.@uriminzok The coming catastrophe of the destruction of the puppet republic half naemolgo continue to firmly support. Yiraneuni and against,0
+2114,catastrophe,,failure is a misfortunebut regret is a catastrophe,0
+2115,catastrophe,Florida,@deb117 7/30 that catastrophe man opens school w/another he's an athlete not a teacher a principle not fulfilling any inside clerical duties,0
+2116,catastrophe,,#iphone #twist Ultimate #preparedness library: http://t.co/ksgmY0D0Mx Prepare Yourself For Any Catastrophe. Ov http://t.co/MZK0PFogI7,0
+2117,catastrophe,,@gemmahentsch @megynkelly @DLoesch I can not envision any catastrophe that would prevent a woman placing her child for adoption.,0
+2118,catastrophe,,@peterjukes But there are good grounds to believe that 'political military catastrophe' was a crime planned and committed by individuals.,1
+2119,catastrophe,"los angeles, ca",Then the stylist who'd been silent says 'there's a cool show on Amazon Prime called Catastrophe...',0
+2121,catastrophe,,#boy #mix Ultimate #preparedness library: http://t.co/O207JyaByz Prepare Yourself For Any Catastrophe. Over 10 http://t.co/cjCtb2oCxg,1
+2122,catastrophe,"New Brunswick, NJ",God bless catastrophe,0
+2123,catastrophe,"City of Angels, CA",@MaatMHI Slightly diff catastrophe & Barry was running solo but generally the same thing.,0
+2125,catastrophe,"Brooklyn, NY",UPDATE: 7 of the 9 Mac Pros my company bought in May have had catastrophe failures requiring repair!,1
+2126,catastrophe,"Morganville, Texas.",Pisces tweets need to get better because most the tweets make me sound like a total emotional catastrophe.,0
+2128,catastrophe,America | New Zealand ,Taylor and Cara aka Catastrophe and Mother Chucker behind the scenes of Bad Blood. Vote: http://t.co/TF2BkQ0OlX #VMAs http://t.co/3fQq7pFjvX,0
+2129,catastrophe,,[reviews] #PixelsMovie not a catastrophe nor a funny movie... our review here : http://t.co/lVbUw01YOH,0
+2131,catastrophe,,Burford. What a catastrophe! Traffic and big lorries. No action as usual from Council.,0
+2133,catastrophe,"Denver, CO",#Denver CO #Insurance #Job: Claims Property Field Adjuster Catastrophe Safeco ÛÒ USA at Liberty Mutual Insurance http://t.co/3k42MJVqCA,0
+2134,catastrophe,,#spark #song Ultimate #preparedness library: http://t.co/VsGqoLr32g Prepare Yourself For Any Catastrophe. Over http://t.co/p7UhcB13Qx,0
+2136,catastrophe,,12 Month Payday Short Catastrophe Loans - Promote Finance Your Desire lIQd,0
+2138,catastrophe,"Stockholm, Sweden",I rated Catastrophe (2015) 8/10 #IMDb - hilarious! http://t.co/cjrSSRY1RT,0
+2139,catastrophe,Worldwide,.@AIGinsurance CEO: Divestitures and #Catastrophe Losses Temper Q2 #Results http://t.co/2y2wZk1FrM,0
+2141,catastrophe,Azeroth,Chances are many of us are still digging out from that catastrophe. THIS is why WoW NEEDS to evolve. THIS is why it can't be Vanilla anymore,1
+2142,catastrophe,Lytham St Anne's ,"Oh my god thatÛªs the biggest #gbbo catastrophe I have EVER seen.
+
+Not that I watch the show or am into it at all ??",0
+2144,catastrophe,,#nar #phuket Ultimate #preparedness library: http://t.co/qYAeNDvDGC Prepare Yourself For Any Catastrophe. Over http://t.co/3Zp6Ahnsxn,1
+2145,catastrophe,,not a catastrophe at all I'm perfectly content. being the only one means nothing when I'm being controlled. text me if you got crap to say,0
+2146,catastrophe,Ylisse,@MasochisticMage + catastrophe! It caused people to get reckless and the bottom line is that at least three of your friends will have +,0
+2148,catastrophe,Wisconsin,I had 2 regular coffees and a Rockstar + coffee today and I'm still tired.,0
+2149,catastrophe,Portugal,Alaska's #Wolves face catastrophe Denali Wolves population plummeted to 48! #SaveDenaliWolves TWEETSTORM: http://t.co/sywUEL7yYx,0
+2150,catastrophe,All around the world baby,@mark_argent I haven't watched that one yet. Just finished Catastrophe which is amazing,0
+2153,catastrophe,,bbc r5live studio discussion of hiroshima v poor. sheer *luck* the cold war did not result in catastrophe. MAD = red herring. #ScrapTrident,1
+2154,catastrophe,,Human history becomes more and more a race between education and catastrophe.,0
+2157,catastrophe,@UntmdOutdoors #T.O.R.K ,Success is not built on success. Its built on failure. Its built on frustration. Its built on catastrophe. #real,0
+2158,catastrophe,"Lima, Per̼","Britney Spears > Vegas!! I missed you so much! ?? Can۪t wait for the show tonight ?? #PieceOfMe
+
+?? Catastrophe ?? http://t.co/4mJyW7p7Cf",0
+2159,catastrophic,,Learning from the Legacy of a Catastrophic Eruption http://t.co/RbmuCURS2F,1
+2160,catastrophic,Toronto,'Climate change could be catastrophic -- but it does have some benefits.' Really @weathernetwork?!?! http://t.co/IBx3cragtt,0
+2161,catastrophic,"Piedmont Area, North Carolina",Following a catastrophic injury acute medical care takes precedent. PTSD often follows in it's wake undetected... http://t.co/BZkqpl6R0a,1
+2163,catastrophic,,catastrophic-fallen-angel: reveillertm: macabrelolita: I was supposed to write Û÷amino acidsÛª and I nearly... http://t.co/dIoBzGHFju,0
+2164,catastrophic,,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/oU1M9chznq,1
+2169,catastrophic,,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/TzxeG4gOkD,1
+2171,catastrophic,,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/1kRPz3j1EU,1
+2172,catastrophic,"Buxton, Venice, and Nottingham","'Invading Iraq was a catastrophic mistake'.
+
+Diplomacy needs to replace constant threat of war by US and Israel:
+
+http://t.co/yqjpn3qUUX",1
+2173,catastrophic,"Quito, Ecuador.",Learning from the Legacy of a Catastrophic Eruption http://t.co/25sY9Y295L via @newyorker,1
+2174,catastrophic,Inexpressible Island ,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/WC8AqXeDF7,1
+2175,catastrophic,,@marginoferror I wish going custom ROM weren't so catastrophic,0
+2176,catastrophic,"San Jose, CA",The best part of old baseball managers wearing uniforms is the implication that if something catastrophic happens they'll grab a glove.,0
+2177,catastrophic,"New York, NY",Learning from the most destructive volcanic event in U.S. history thirty-five years later: http://t.co/KkjP9KsBst,1
+2179,catastrophic,United States,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/tGcR5voFJ3,1
+2181,catastrophic,New York,@MyVintageSoul ...of the British upper class and his manservant. The pampered wealthy Brit causes a catastrophic shift (reversal) of...,0
+2183,catastrophic, Bouvet Island,@APANO55 @JamesMelville 99% of Scientists donÛªt believe in Catastrophic Man-Made Global Warming only the deluded do.,1
+2186,catastrophic,"Shirley, NY",@SenSchumer Is this what U want Netanyahu leading these UNITED STATES into a CATASTROPHIC religious world war? ENOUGH already!,0
+2188,catastrophic,Planet Earth,Learning from the Legacy of a Catastrophic Eruption - The New Yorker http://t.co/y8YqPBE4t9,1
+2189,catastrophic,"Paonia, Colorado ",Learning from the Legacy of a Catastrophic Eruption http://t.co/PgXfocgHqg via @newyorker,1
+2190,catastrophic,,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/QVlxpyyyCd,1
+2191,catastrophic,,A better look at what this catastrophic rain and flooding has done to ourÛ_ https://t.co/5yRBegzafX,1
+2192,catastrophic,Inexpressible Island ,The Catastrophic Effects of Hiroshima and Nagasaki Atomic Bombings Still Being Felt Today http://t.co/rNqEBAyCVM,1
+2193,catastrophic,Planet Earth,Learning from the Legacy of a Catastrophic Eruption - The New Yorker http://t.co/t344PhNpy9,1
+2194,catastrophic,"Portland, OR",Something Catastrophic Is Coming: Should We Tune Out? http://t.co/a8jZ5A26wi,1
+2195,catastrophic,"Dublin, Ireland",'Kessler Syndrome' is the name for the catastrophic exponential proliferation of Space debris and destruction of satellites. #GravityMovie,1
+2198,catastrophic,Planet Earth,Learning from the Legacy of a Catastrophic Eruption - The New Yorker http://t.co/vMWTOUyOHm,1
+2203,catastrophic,,"Excited not only about the next 6 years of school and ensuing student debt but also catastrophic climate change in my lifetime
+
+:D ??",0
+2204,catastrophic,Lurking,Pretty much every time the audio dies on an audio stream for a baseball game I assume catastrophic nuclear attack.,0
+2205,catastrophic,"Leeds, England",Looking for a #Defendant #Catastrophic Injury Solicitor #jobs http://t.co/Gz27aUDyHa http://t.co/P4EKgC9sIG,0
+2207,catastrophic,N?? Y???.,@SyringeToAnger åÇ and probably even more. But some disagreements with General Ross and the catastrophic occurrence made something clear. åÈ,0
+2209,chemical%20emergency,,Emergency Response and Hazardous Chemical Management: Principles and Practices http://t.co/4sSuyhkgRB http://t.co/TDerBtgZ2k,0
+2210,chemical%20emergency,"Littleton, CO, USA",THE CHEMICAL BROTHERS to play The Armory in SF tomorrow night!: EMERGENCY BAY AREA EDM ANNOUNCEMENT ÛÒ THE CHEM... http://t.co/3LN8TrHw6X,0
+2211,chemical%20emergency,"Virginia, United States",#Illinois: Emergency units simulate a chemical explosion at NU https://t.co/rd10EX6HvT via @sharethis #hazmat,1
+2212,chemical%20emergency,Center for Domestic Preparedness,At FEMA's Center for Disaster Preparedness for a weeklong training on Chemical Biological Radioactive Nuclear Emergency Response,1
+2213,chemical%20emergency,Ukraine and Ireland,Russian nuclear-biological-chemical (NBC) brigade 'emergency response' exercise in Southern MD http://t.co/Ul5XdblmBk http://t.co/VjHpVLnbaw,1
+2214,chemical%20emergency,London,.@david_cameron Stop upsetting this bee! Listen to science not chemical companies #savebees https://t.co/NDJja4D5O8 http://t.co/l7BJSq0Y2o,0
+2215,chemical%20emergency,Welt,???? #Krefeld: the incident happened in a chemical industry park! Emergency operations underway! A building reportly collapsed! @cnnbrk @ntvde,1
+2216,chemical%20emergency,,THE CHEMICAL BROTHERS to play The Armory in SF tomorrow night!: EMERGENCY BAY AREA EDM ANNOUNCEMENT ÛÒ THE CHEM... http://t.co/wBoGs8EjSj,0
+2217,chemical%20emergency,Wales,Sign the petition @david_cameron to protect bees instead of toxic chemical companies want to harm them! #savebees - http://t.co/dB7ft3Yi6d,0
+2219,chemical%20emergency,http://www.amazon.com/dp/B00HR,USA: BREAKING NEWS: CHEMICAL SPILL/EVACUATIONS/RED CROSS EMERGENCY http://t.co/007Npen6LG,1
+2220,chemical%20emergency,"Seattle, Washington",New #job opening at Downtown Emergency Service Center in #Seattle - #Chemical #Dependency Counselor or Intern #jobs http://t.co/BNRdKgXavr,0
+2221,chemical%20emergency,"Beaumont, TX",Emergency crews respond to chemical spill downtown beaumont #benews http://t.co/PME0HOJVYA,1
+2222,chemical%20emergency,"Annapolis, MD",Explosion at chemical site leads to building collapse near Krefeld Germany. Emergency crews on scene; avoid the area. #iJETalerts,1
+2225,chemical%20emergency,"Las Vegas, Nevada",Bomb Crash Loot Riot Emergency Pipe Bomb Nuclear Chemical Spill Gas Ricin Leak Violence Drugs Cartel Cocaine Marijuana Heroine Kidnap Bust,1
+2227,chemical%20emergency,,Google Alert: Emergency units simulate a chemical explosion at NU http://t.co/NDgpWYxu6H,0
+2229,chemical%20emergency,"Seattle, Washington",Downtown Emergency Service Center is hiring! #Chemical #Dependency Counselor or Intern in #Seattle apply now! #jobs http://t.co/SKQPWSNOin,0
+2230,chemical%20emergency,"Harris County, Texas",Do you have a plan in case of a pool chemical emergency? Learn more here: http://t.co/UePPjwvLcb #watersafety @CDC,0
+2231,chemical%20emergency,"Tyler, TX",@pjcoyle ... need to be included in emergency planning for chemical plants. See also http://t.co/OamqqBNIce,0
+2233,chemical%20emergency,"Evanston, IL",Emergency units simulate a chemical explosion at NU: Suppose a student in the research labs at NorthwesternÛ_ http://t.co/0NR4DPjgyL,1
+2235,chemical%20emergency,"North Ferriby, East Yorkshire",We know this is bad for the bees - don't give in to pressure from short term profit obsessed chemical companies... http://t.co/aNuTOopKF4,0
+2236,chemical%20emergency,Colombia,Nueva favorita: EmergeNCY feat. The Chemical Brothers / My Bits http://t.co/MET4YtZMFB @DeezerColombia,0
+2237,chemical%20emergency,"Seattle, Washington",Downtown Emergency Service Center is hiring a #Chemical #Dependency Counselor or Intern apply now! #Seattle #jobs http://t.co/SKQPWSNOin,0
+2238,chemical%20emergency,"Evanston, IL",Emergency units simulate a chemical explosion at NU: Suppose a student in the research labs at NorthwesternÛ_ http://t.co/ExitLxgIsJ,1
+2239,chemical%20emergency,"Ames, Iowa",Our Chemical Spill Cleanup videos will prepare you for an emergency situation in the lab. http://t.co/UMQbyRUPBd,1
+2240,chemical%20emergency,"Seattle, Washington",Downtown Emergency Service Center is hiring! #Chemical #Dependency Counselor or Intern in #Seattle apply now! #jobs http://t.co/HhTwAyT4yo,0
+2241,chemical%20emergency,"Moscow, Russia",Day 2. Liquidation of emergency at chemical object. #USAR2015 #USAR15 #RUOR #??????????? http://t.co/gGTmDqUdDo,0
+2242,chemical%20emergency,,Emergency units simulate a chemical explosion at NU - Evanston Now http://t.co/kfyEbhb3DI,1
+2244,chemical%20emergency,,"Please stand up for bees against profit-hungry chemical companies. Keep the ban & #Savebees
+Sign the petition now:
+https://t.co/4zsXjGV7iT",0
+2245,chemical%20emergency,"Jersey City, NJ",@laevantine Fortunately I reworked the plumbing on my emergency chemical shower to draw from the glitter pipe for just such an occasion,0
+2246,chemical%20emergency,,@Chemical_Babe its a family emergency so I can't make it unless I have a chance to use by phone for stream.,0
+2248,chemical%20emergency,,Emergency 4 Harbor City Mod v4.5.2 #6 Chemical Fire in Residential Area!: http://t.co/uLuPxYzJwV via @YouTube,1
+2250,chemical%20emergency,"Mankato, MN",Emergency responders prepare for chemical disaster through Hazmat training. http://t.co/q9zixCi8E6,1
+2251,chemical%20emergency,"Orbost, Victoria, Australia","Lindenow: 3:15pm
+Emergency crews are at a chemical spill in the main street near Church Street",1
+2254,cliff%20fall, Somewhere.,'Go too Ibiza Pop ah Pill Get DRUNK & Fall off a Cliff'. (Real Talk) @DannyJohnJules @Spencer_Fearon @ChristieLinford,0
+2255,cliff%20fall,,@D33munni @JeanNamibian noooooooo ... *proceeds to fall off a cliff*,0
+2256,cliff%20fall, Neverland ,Fuck Neil go fall off a cliff or something.....#yr ??????,0
+2257,cliff%20fall,,Beat the #heat. Today only Kill Cliff Free Fall $2. Pick up a #cold drink today after the #tough #crossfit... http://t.co/QaMwoJYahq,0
+2258,cliff%20fall,"London, England","NEWS FLASH! Any decent billers been promoted to 'manager'? If so let me know as I want to watch your billings fall off a cliff.
+#Humble",0
+2260,cliff%20fall,At Da Laundry Mat Wit Nivea ,2Leezy its like you're about to fall down a cliff but you're grabbing my hand but my palms are sweaty ... Why bruh? https://t.co/GrWdr4kuf3,1
+2262,cliff%20fall,norway,I regress and I slip and I fall off that cliff,0
+2263,cliff%20fall,nyc,ok peace I hope I fall off a cliff along with my dignity,1
+2265,cliff%20fall,,If you're reading this go accidentally fall off a cliff mate,0
+2266,cliff%20fall,$ad $hawty,If u faved that I hope you fall off a cliff ??,0
+2267,cliff%20fall,,#FunnyNews #Business Watch the moment a cliff collapses as huge chunks of rock fall onto a road in China http://t.co/LCi3pljX25,1
+2271,cliff%20fall,Nigeria,Photographer Brian Ruebs endures 4500-feet climb to capture bride and groom http://t.co/BmWmpOyDIg,0
+2272,cliff%20fall,,alex is making me watch 107 facts about minions i want to fall off a cliff help,0
+2273,cliff%20fall,NY || live easy? ,Do me a favor and fall off a cliff,0
+2274,cliff%20fall,BestCoast,@AlexJacobsonPFS All Andre and Gore have to do is not fall off the cliff and we're elite on that side of the ball.,0
+2275,cliff%20fall,,Fall off a cliff please https://t.co/4vWSL2Gfp0,1
+2277,cliff%20fall,,I hope they fall off a cliff.,0
+2278,cliff%20fall,BC,Don't let your style fall flat this summer! Lord & Cliff #thinkpink #magichairbump is your answer. Adding this... http://t.co/NmHZTB1ewM,0
+2279,cliff%20fall,"Abuja, Nigeria",When you're in deep sleep and then you dream you're bout to fall off a cliff then wake up while struggling to keep a balance,0
+2280,cliff%20fall,,Currently want to drive my car off a cliff and fall to my death.,0
+2281,cliff%20fall,Colchester Essex ,I hope you fall off a cliff,0
+2282,cliff%20fall,livin life in the 610,I accidentally killed an 87 day snap streak and now I wanna accidentally fall off a cliff ????????????????????,1
+2284,cliff%20fall,Suplex City,@punkblunts @sincerelyevelnn fall off a cliff into hell idc,0
+2285,cliff%20fall,Inside your mind.,Photographer Brian Ruebs endures 4500-feet climb to capture bride and groom http://t.co/JXhAZEBNQK,0
+2286,cliff%20fall,,@SZMNextDoor I got this cute lil cliff you can fall off of??,0
+2288,cliff%20fall,36 & 38,i hope u trip n fall of a cliff after this tweet https://t.co/3hoIkDmoCB,0
+2289,cliff%20fall,Sydney Australia,News Update Huge cliff landslide on road in China - Watch the moment a cliff collapses as huge chunks of rock fall... http://t.co/gaBd0cjmAG,1
+2292,cliff%20fall,"Lagos, Nigeria",Huge cliff landslide on road in China: Watch the moment a cliff collapses as huge chunks of rock fall onto a r... http://t.co/eEEwO207mX,1
+2294,cliff%20fall,"New York, NY ",One day I want someone to run for the ferry fall and crack there face open for almost knocking me over just to get on a boat ??????,0
+2296,cliff%20fall,Slappin and Smackin ,Gulfport Energy - All-In Realizations Fall Off A Cliff http://t.co/CjuiGhBxyn,0
+2297,cliff%20fall,DRAW A CIRCLE THAT'S THE EARTH,"*Jumps off of a cliff while drinking tea*
+
+This is how British people fall off cliffs.",0
+2298,cliff%20fall,,627% but if they had lower striked than 16 I would have gone even further OTM. This could really fall off a cliff.,1
+2299,cliff%20fall,,That sounds like a really bad idea I like Yoenis but I feel like his production could fall off a huge cliff.,0
+2300,cliff%20fall,"Florida, USA",'I'm there!' Bride & Groom on mountain cliff edge. Ha Ha just kidding. I WILL NOT EVER be there. Ha Ha - http://t.co/Io9ry1akON,0
+2301,cliff%20fall,"Madrid, Comunidad de Madrid",ESN : Cilla Black died of stroke after fall in Spain: Sir Cliff revealed he was due to visit her in Spain nextÛ_ http://t.co/F7a66dIiYK,0
+2303,cliff%20fall,The Netherlands,#NowPlaying * Cliff Richard - I Could Easily Fall (In Love With You) (& Shadows) * #Internet #Nieuws #Radio On http://t.co/8LkMWp9qzw,0
+2304,collapse,,Runaway Minion Causes Traffic Collapse in Dublin http://t.co/u2Kwof3wtj,1
+2306,collapse,"Highland Park, CA",Time collapse is such a cool video technique. https://t.co/upLFSqMr0C,0
+2307,collapse,Scotland,Would a paramedic really do that? Leave someone inside a building that's about to collapse/blow up? @HalloIkBenWill,1
+2308,collapse,Swan River,@GeoffRickly I don't see the option to buy the full collapse vinyl with tee bundle just the waiting?,0
+2309,collapse,"Kolkata, India",Warne Ponting shocked by Australian collapse - Yahoo Cricket India https://t.co/hsgkTeZUCN,0
+2311,collapse,Melrose,Watch The Terrifying Moment Two Giant Cranes Collapse Onto Homes: A row of homes was destroyed in seconds. http://t.co/G38Y8H1tJt,1
+2312,collapse,"Jubail IC, Saudi Arabia",@BasilDudin The 'barbaric Saudies' as you said they relive Austrian economy. If we stop coming here many project will collapse.,0
+2314,collapse,New York City,Interview on The Collapse of Materialism Best #TalkRadio Listen Live: http://t.co/sDXZHjco0X,1
+2315,collapse,,Economic Collapse Investing: Specific actions and strategies to securing lasting wealth from the financial blowout. http://t.co/JZwRisXEPF,1
+2317,collapse,"Los Angeles, CA",What would you do if you were trapped in a collapsed circus tent with a bunch of clowns? http://t.co/6HKCa1dSna,0
+2318,collapse,Location,I get this feeling that society will collapse or implode. So don't be a hero and play your part.,0
+2319,collapse,"Sugarhouse, UT",@Marvel @DCComics @ImageComics @DarkHorseComics @IDWPublishing And by doing this you're enabling the possible collapse of the industry.,0
+2321,collapse,lugo,EUROCRISIS Guardian Greece's tax revenues collapse as debt crisis continues: As talks continue over proposed âÂ... http://t.co/bBm9sR1wOw,1
+2324,collapse,"Chicago, Illinois",Only one commodity has escaped the total collapse in prices http://t.co/4HngTKDQMv #business,0
+2325,collapse,"Blackpool, England, UK.",Ashes 2015: Australia totally collapse and the internet absolutely loves it http://t.co/AFzqvotutj,0
+2327,collapse,,I liked a @YouTube video http://t.co/BM0QEC7Pja Eminem feat. Nate Dogg - Till I Collapse,0
+2329,collapse,"San Jose, California",Timestack' Photos Collapse Entire Sunsets Into Single Mesmerizing Images. http://t.co/Cas8xC2DFE,0
+2330,collapse,,mentions of 'theatre +shooting' on Twitter spike 30min prior to $ckec collapse http://t.co/uuBOvy9GQI,1
+2332,collapse,Fakefams,Correction: Tent Collapse Story http://t.co/S7VYGeNJuv,1
+2333,collapse,In the clouds...,@BehindAShield @Wars_Goddess Sweet Lord. (I collapse as my knees buckle),0
+2334,collapse,India,Ashes 4th Test: 10 Hilarious Twitter Reactions to Australia's collapse http://t.co/6DznEjuVD3 by @Absolut_Sumya15,0
+2336,collapse,"Sandton, South Africa",SA MP. Steel and ferrochrome industry on verge of collapse. You don't even put that on list of questions to president for oral answer,0
+2337,collapse,Nigeria ,Correction: Tent Collapse Story http://t.co/jXs50FkviK,1
+2339,collapse,,"Spot fixing/match fixing ..anyone???
+Or it has to be Pak SL WI RSA or BD to say this. Sham on them who say that when these team collapse",0
+2340,collapse,#Bummerville otw,Why did I come to work today.. Literally wanna collapse of exhaustion,1
+2341,collapse,Europe,#Greece's tax revenues collapse as debt crisis continues via @guardian #bailout http://t.co/cJvbQXw83s ^mp,1
+2342,collapse,Brighton and Hove,'60 all out? What!' - World reacts to Aussie collapse http://t.co/I6zQlk2Puz,0
+2346,collapse,"Mumbai , India",Warne shocked over Australia's epic collapse at Trent Bridge: Johannesburg Aug 06 (ANI): Legendary Australian... http://t.co/LwwoJXtTIV,1
+2347,collapse,United Kingdom,Now that's what you call a batting collapse #theashes,1
+2348,collapse,"Pompano Beach, FL",Growth dries up for BHP Billiton as oil price collapse bites http://t.co/HQoD6v6DnC,0
+2349,collapse,JKT48-Muse-A7X,#ROH3 #JFB #TFB #alrasyid448ItuRasya Correction: Tent Collapse Story http://t.co/iZJToojzKp #US ROH3 SmantiBatam #ROH3SmantiBatam,0
+2350,collapse,Behind The Obama Curtain,"Greece's tax revenues collapse as debt crisis continues
+http://t.co/uxp6PoqjLb",1
+2351,collapse,Worldwide.,åÈMGN-AFRICAå¨ pin:263789F4 åÈ Correction: Tent Collapse Story: Correction: Tent Collapse story åÈ http://t.co/fDJUYvZMrv @wizkidayo,0
+2352,collapse,United States,The @POTUS economy continues to collapse.,1
+2354,collapsed,LiVE MÌS,ÛÏ@TheHighFessions: 'My friend came to school blasted...i asked him if he was high he said pancakes then collapsed' -Iowa City HighÛ,0
+2356,collapsed,USA,@sholt87 @MtGrotto @Eco11C @carlsbadbugkil1 Saved us?Bush lowered tax rate for wealthy n economy collapsed w/Middle Class 401ks destroyed.,0
+2358,collapsed,,I was on my way to Gary but all the Chicago entrances was closed due to a bridge collapsed ?????? I hope they let us through tomorrow,1
+2359,collapsed,"Henderson, NV",Gut Deutsch musik! The old and rotten the monarchy has collapsed. The new may live. Long live the German Republic! https://t.co/RJjU70rHyu,0
+2361,collapsed,,Great British <b>Bake</b> Off's back and Dorret's <b>chocolate</b> gateau collapsed - JANÛ_ http://t.co/53LORsrGqf,0
+2362,collapsed,"CAMARILLO, CA",@organicallyrude @1ROCKSTAR62 #wish Mattingly & Bundy & McGwire were standing on it when it collapsed!,1
+2363,collapsed,"manchester, uk.",Catching up on GBBO and omg that girls cake that just totally collapsed I feel so bad,0
+2364,collapsed,"Eugene, Oregon",Roof collapsed a bowling alley many in the community remember going to for more than 30 years @KEZI9 http://t.co/sAhbhLXsSh,1
+2366,collapsed,they/her,+ DID YOU SAY TO HIM!!?!?!?!' and phil actually collapsed on the gravel sobbing endlessly with a crowd watching him confused angry mad+,0
+2367,collapsed,,1 hour parade like 50 people collapsed. #OneHeartOneMindOneCSS,1
+2368,collapsed,Paris ,... The pain of those seconds must have been awful as her heart burst and her lungs collapsed and there was no air and...,1
+2370,collapsed,,Bay District coaches learn CPR during medical course: PANAMA CITY ÛÓ An athlete collapsed on the field. Coaches... http://t.co/KFkaosh0KH,1
+2372,collapsed,Tokyo,@GorpuaZikinak and tongue out as she collapsed in the cum puddle her whole body covered.,0
+2373,collapsed,(he/him),@indiepopmom I CANT BREATHE MY LUNGS COLLAPSED,0
+2374,collapsed,,Zimbabwe is a country with a collapsed government ruled by a dictator while many live below the poverty line.,0
+2375,collapsed,Suplex City,@durrellb Prices here are insane. Our dollar has collapsed against the US and it's punishing us. Thanks for the info.,1
+2376,collapsed,"Victoria, British Columbia",I just collapsed in my bed ugh I'm exhausted,0
+2377,collapsed,"Kingston, Jamaica",Another entity forced to close in Montego Bay as a result of the collapsed sewer line #TVJNews,1
+2379,collapsed,USA,Petition | Heartless owner that whipped horse until it collapsed is told he can KEEP his animal! Act Now! http://t.co/nJRjxqBjr4,0
+2382,collapsed,,On the 2nd year the officer team running the club collapsed. A few influential members betrayed everyone's trust severing the community.,0
+2385,collapsed,"Spokane, WA",Petition | Heartless owner that whipped horse until it collapsed is told he can KEEP his animal! Act Now! http://t.co/ym3cWw28dJ,0
+2386,collapsed,,My portable closet has collapsed 3x and it finally broke and my mom said 'maybe u should get rid of some clothes' lol how about no,0
+2387,collapsed,I'm standing behind you,@rokiieee_ the game has officially collapsed,0
+2388,collapsed,"Alexandria, Egypt.",Great British Bake Off's back and Dorret's chocolate gateau collapsed - JAN MOIR http://t.co/2SgDOFsmrQ http://t.co/xLEgC6UorA,1
+2389,collapsed,instagram- Chloe_Bellx,Still mortified that when I went to rose's I collapsed on my heels face planted in front of everyone and broke my fav shoes,0
+2390,collapsed,on the web,'It hasn't collapsed because the Greek people are still being played for as fools by Tsipras he costÛ_' ÛÓ WallyBaiter http://t.co/gbRNuLp3fH,0
+2391,collapsed,San Francisco Bay Area,My @Quora answer to Why do my answers get collapsed when others don't? http://t.co/IKfmEktPCX,0
+2394,collapsed,#ForeverWithBAP 8 ,and he almost collapsed bc he said his wish came true moderately FUCK,0
+2395,collapsed,GOT7SupportPH,collapsed the moment i got home last night lol,0
+2396,collapsed,wherever-the-fuck washington,@flickershowell oh wow my heart collapsed cool im crying cool cool,1
+2397,collapsed,,Look: #I have collapsed #after attempting to munch an endangered species.,0
+2398,collapsed,"From NY. In Scranton, PA",Apparently part of the building just collapsed. Hope everyone is ok.,1
+2399,collapsed,"Perth, Western Australia",@xDescry I was wrong to call it trusty actually.. considering it spontaneously collapsed on me that's not very trusty.,1
+2400,collapsed,,Petition | Heartless owner that whipped horse until it collapsed is told he can KEEP his animal! Act Now! http://t.co/87eFCBIczM,1
+2402,collapsed,Live mÌÁs,@Collapsed thank u,0
+2406,collide,,I liked a @YouTube video from @sqwizzix http://t.co/GGqCz9AB6u Call of Duty: ÛÏThe Piano EntertainerÛ Ep. 9 ÛÒ Musicians Collide!,0
+2408,collide,,And when those waves shall ripple collide it's on the tide of YOUR LOVE I will survive. #love @LesleyChappelle,0
+2409,collide,"Melton, GA",Somehow find you and I collide http://t.co/Ee8RpOahPk,0
+2410,collide,,But even if the stars and moon collide I never want you back into my life??????.,0
+2412,collide,Greg's place,Stepped outside with a drink and a cigarette and immediately locked eyes with a jogger. Worlds really do collide.,0
+2413,collide,Viejo,It's always super awkward when worlds collide,0
+2414,collide,,http://t.co/QQC0gKbEGs efs300: http://t.co/ZStuvsBQq0 'Star Wars' and 'Star Trek' Collide on Pluto Moon Charon #pluto,0
+2415,collide,USA,When high fashion and food collide: Gucci has chosen one of ShanghaiÛªs most popular commercial avenue... http://t.co/MkRxQZeHmY #fashion,0
+2416,collide,"Kansas, The Free State! ~ KC",That sounds about right. Our building will have a thunderstorm inside one day when the air masses collide. https://t.co/2rTQ9QmGPB,0
+2417,collide,,i just remember us driving and singing collide together,0
+2418,collide,"Silang, Cavite / Para̱aque",Lets collide untill we fill the space.. ??,0
+2419,collide,"Fort Smith, AR",Students COLLIDE this Fri/Sat - register http://t.co/PwjJimRfLy #nlccollide http://t.co/3w0pxFyyri,0
+2420,collide,Brasil,I donÛªt wanna touchdown just wanna make our worlds collide ??,0
+2421,collide,,@madisonpa_ love you & can't wait until collide!!!????,0
+2422,collide,New York,PIERCE THE VEIL Rubber Bracelet Wristband Collide with the Sky - Full read by eBay http://t.co/6QC8whdiZY http://t.co/ineZZAES5D,0
+2423,collide,planeta H2o,Soultech - Collide (Club Mix) http://t.co/8xIxBsPOT8,0
+2425,collide,www.youtube.com?Malkavius2,I liked a @YouTube video from @gassymexican http://t.co/lPgFqnpjd3 WHEN REALITIES COLLIDE! (Life Is Strange Hilarious Glitch),0
+2427,collide,Michigan,@mattcohen4fake Gamma Ray January Worlds Collide She Waits Be Me Wave Past Perfect Reunion Lucky Cool If I Come Over Hot Times...,0
+2428,collide,The Forever Girl,The Witches of the Glass Castle. Supernatural YA where sibling rivalry magic and love collide #wogc #kindle http://t.co/IzakNpJeQW,0
+2429,collide,EspÌ_rito Santo,Maybe if the stars align maybe if our worlds collide,0
+2430,collide,"New York, USA",Check out my new song 'Collide' live at the Bowery Electric! http://t.co/MESgcNGAz0,0
+2432,collide,"Ormond By The Sea, FL",@tackettdc Like a scene from When Worlds Collide ......,1
+2435,collide,"Maryland,Baltimore",and even if the stars and moon collide ÛÓ oh oh! i never want you back to my life you can take your words and all... http://t.co/4E2gJmVRVI,0
+2437,collide,"New Orleans, LA",#NowPlaying the playlist 'When Jazz and Hip-Hop Collide' in @TIDALHiFi http://t.co/mzQq5PAi8G,0
+2438,collide,"Vancouver, BC",#Vancouver to host 100s of electronic art events including @MUTEK_Montreal. http://t.co/vjBhxN9x1O #ISEA2015,0
+2440,collide,"Pennsylvania, USA",Worlds Collide When an American Family Takes Over Britain's Isle of Man in New TLC Show Suddenly Royal http://t.co/OmB3oS54tN via @People,0
+2441,collide,"Houston, Texas",When Houston and NYC collide. ?? @pageparkescorp @chloeunguyen @laurensicle @charstevens97 @tiara_marei #gemma #boweÛ_ http://t.co/9wowPs78VD,1
+2442,collide,"Yadkinville, NC",This setlist from @collideworship_ this past Sunday was powerful! What song was your favorite? http://t.co/vNzyBFGZcm,0
+2443,collide,"Medford, NJ",#TheDoolingGroup 2 injured when 2 school buses collide - åÊ #BREAKING: School bus slams into school bus in Bordento... http://t.co/YQHfio9XQm,1
+2445,collide,"Austin, TX",Even then our words slip and souls coincide Finer than subatomic spells Just as we collide http://t.co/2WcbrgN62J,0
+2446,collide,,Devia ler 'AS WE COLLIDE #wattys2015' no #Wattpad #teenfiction http://t.co/g891m9GH4r http://t.co/Xq92X4bVG3,0
+2451,collide,,"Secrets of the world collide but i leave the past behind
+It's been so long now and I can't go without",0
+2452,collide,Malaysia,When high fashion and food collide http://t.co/qDhxto57EM,0
+2453,collide,"Dallas, Texas. ",You either ride with us or collide with us. It's as simple as that for me and my niggas.,0
+2454,collided,Roanoke VA,Cyclist who collided with runner on Roanoke greenway wins $300000 civil verdict http://t.co/WgasoeNCwc via @roanoketimes,0
+2455,collided,,My 2 fav worlds have collided! Thanks to @lennonparham @Jessica_StClair I found the @GilmoreGuysShow podcast!! #ihave44episodesofGG #nojoke,0
+2456,collided,Unnamed City,@RedCoatJackpot *As it was typical for them their bullets collided and none managed to reach their targets; such was the ''curse'' of a --,0
+2457,collided,,First Tweet collided with a Selfie. Pretty 'Sweet' if you ask me???? http://t.co/knomg9pfiz,0
+2458,collided,Toronto,Police investigating after an e-bike collided with a car in Little Portugal. E-bike rider suffered serious non-life threatening injuries.,1
+2459,collided,"Peterborough, On",#Newswatch: 2 vehicles collided at Lock and Lansdowne Sts in #Ptbo. Emerg crews on their way,1
+2460,collided,"-6.152261,106.775995","When love and hate collided part II
+Lanjut dirumah...
+
+#yagitudeh - Jake (at Rumah Cipinang) ÛÓ https://t.co/yiLt1Bb68k",0
+2462,collided,@protectingtitan's side.,"--thus making @FemaleGilgamesh's assault useless.
+The spears collided with the dark force however did not penetrate.
+
+Due to the dark --",0
+2463,collided,,I scored 111020 points in PUNCH QUEST stopped when a squeaky bat collided into my skull. http://t.co/aEtgbxm1pL,1
+2464,collided,Oregon,Reading for work has collided with reading for pleasure. Huzzah. Don't miss @molly_the_tanz's Vermilion! http://t.co/83bMprwH7W,0
+2465,collided,San Francisco,Mind blown by @GlassAnimals slithering viscous Gold Mine (cover of Yeah Yeah Yeahs + Erykah Badu)Û_ http://t.co/7Zb9gm5z0h,0
+2466,collided,,Monsoon flooding - Monsoon rains have have hit India Pakistan and Myanmar hard this season. Two trains collided ... http://t.co/A7zF6N7vrL,1
+2467,collided,"Eau Claire, Wisconsin",An Eau Claire man who police said was drunk when his SUV collided with a train was sentenced in Chippewa County: http://t.co/kQpkY7Dthj,1
+2468,collided,"St. Joseph, Minnesota",Two trains have collided in India. Please pray for victims their families and rescuers.,1
+2470,collided,From a torn up town MANCHESTER,Two cars collided following shotgun fire in Denton http://t.co/0r03C6njLI,1
+2471,collided,Waco TX,Major accident causes life-threatening injuries closes highway: An 18-wheeler and an SUV collided and thenÛ_ http://t.co/ajTXUafOEM,1
+2475,collided,Tennessee,On page 500 of 688 of After We Collided by Anna Todd http://t.co/Y7PetO0DX2,0
+2476,collided,"Cape Cod, Massachusetts USA",'Car vs motorcycle in Harwich Port' HARWICH PORT ÛÒ A car and motorcycle collided around 5:30 p.m. The crash happenÛ_ http://t.co/ljxCE1QW2p,1
+2478,collided,,The 2 cars right in front of me collided and If I hadnt stopped in time it would've been me too. #ButGod ????,1
+2479,collided,,My @MLG and food worlds have collided in this @ijustine salmon video. #simple #Alaskaseafood #askforalaska https://t.co/2SnyGHaiVs,0
+2480,collided,,16 dead in Russia bus accident: At least 16 people were killed and 26 others injured when two buses collided i... http://t.co/jMBVPanXR3,1
+2482,collided,,Stupid women nearly collided into me today after she came out of a junction not looking. Still kept coming towards me till I beep my horn,1
+2483,collided,Pakistan,SSP East says a car AEG 061 driven by a young man collided with Akram's carhot words were exchanged n he did firing in air1bullet hit tyre,1
+2485,collided,bk. ,She looked back & her daughter & said 'everyone loved the picture I posted of you' & like collided into another car like what the,0
+2486,collided,,We're happily collided :),0
+2487,collided,"Lansing, Michigan",Monkey just collided heads with our Ninja. Commence the tears :(,0
+2488,collided,"Peterborough, Ont.",#Newswatch: 2 vehicles collided at Lock and Lansdowne Sts in #Ptbo. Emerg crews on their way,1
+2489,collided,"Johannesburg, South Africa",2 pple have been confirmed dead and over 20 rescued while many went missing after a ferry carrying 200 collided with a fishing boat.#News,1
+2490,collided,On the court ,DRob collided into Dan Hughes while she was going after the ball. Looks like he hurt his back as he fell back on the chair. Hope he's ok!,0
+2491,collided,Cherry Creek Denver CO,2 Cars Collide 1 Crashes Into Building: Two cars collided at an intersection and that sent one vehicle crashingÛ_ http://t.co/TpUu3eaTB3,1
+2492,collided,,San Antonio Stars head coach Dan Hughes was just carted to the locker room after one of his guards collided with... http://t.co/4dbhOnO3Rk,0
+2493,collided,"Traverse City, MI",Bicycle-SUV accident in Mesick: Police say that the bicyclist entered onto West M-115 and collided with a boat... http://t.co/A9gtOPyZK8,1
+2494,collided,,It's Even Worse Than It Looks: How the American Constitutional System Collided With the New PoliticÛ_ http://t.co/Gfa3SOw9zn,0
+2496,collided,See the barn of bleakness,"OMG OMG OMG #JustinBieber and #HarryStyles have collided in a nuclear accident at #Cern ^oo^
+
+#HarryBeCareful http://t.co/p4huQUNDQi",0
+2497,collided,Mumbai,16 dead in Russia bus accident: At least 16 people were killed and 26 others injured when two buses collided i... http://t.co/ybyP68ieVn,1
+2498,collided,Hertfordshire ,Well that was a journey to get home! A train collided with cows on the track! ????,1
+2499,collided,"ÌÏT: 41.252426,-96.072013",Crews working to restore power in southwest Omaha after vehicle collided with utility pole. - http://t.co/dAn0Gkx28l,1
+2500,collided,"Nairobi, Kenya",Stepkans Media - Two confirmed dead after the boat they were travelling in Collided in. L.Victoria http://t.co/INGu6Ztyg4,1
+2501,collided,,Cyclist who collided with runner on Roanoke greenway wins $300000 civil verdict - Roanoke Times: Cyclist who c... http://t.co/E2WfGp8JHk,1
+2502,collided,California ,Can't watch PVRIS I'm so sad bc it collided with another set,1
+2504,collision,"Greeley, CO",Motorcyclist bicyclist injured in Denver collision on Broadway: At least two people were taken to a localÛ_ http://t.co/2aCRGdqhJ0,1
+2505,collision,'soooota,@Zojadelin you literally almost had a head on collision with us today on pilot knob,1
+2506,collision,Sacramento,North Sac Elkhorn Blvd / Walerga Rd **Trfc Collision-1141 Enrt** http://t.co/W4ofcC99Wq,1
+2507,collision,,Beat:G3 MOTOR VEHICLE COLLISION HIT AND RUN at RAINIER AV S / S CHARLES ST reported on 8/5/2015 6:08 PM Call# 15000270653,1
+2508,collision,,Beat:B2 MOTOR VEHICLE COLLISION at N 35 ST / FREMONT AV N reported on 8/5/2015 6:52 PM Call# 15000270364,1
+2510,collision,Sacramento,South Sac Florin Rd / Franklin Blvd **Trfc Collision-1141 Enrt** http://t.co/Es1b3lywAy,1
+2512,collision,"Ontario, Canada",COLLISION: #Hwy401 EB just east of Hwy 8 #Cambridge Single vehicle blocking the left lane. #OPP enroute. ^ag,1
+2513,collision,"Los Angeles, CA",Santa Fe Springs Studebaker Rd / South St **Trfc Collision-No Inj** http://t.co/6uHih9pbrU,0
+2514,collision,"NY, NY",Anti Collision Rear- #technology #cool http://t.co/hK6nQrGedb,0
+2515,collision,"Arvada, CO",Motorcyclist bicyclist injured in Denver collision on Broadway: At least two people were taken to a localÛ_ http://t.co/WlmSQ3MTHO,1
+2516,collision,Oregon,2 dead 2 injured in head-on collision on Kenai Spur Highway http://t.co/hbbGY2vZYt,1
+2517,collision,"Denver, CO",Motorcyclist bicyclist injured in Denver collision on Broadway: At least two people were taken to a localÛ_ http://t.co/ozK1QHJVfh,1
+2519,collision,Maryland,Baltimore City : I-95 NORTH AT MP 54.8 (FORT MCHENRY TUNNEL BORE 3: Collision: I-95 NORTH AT MP 54.8 (FORT MCHENRY TUNNEL BORE 3 Nort...,1
+2520,collision,"Vancouver, Colombie-Britannique",Apply now to work for Dilawri as #BODY #SHOP/COLLISION CENTRE MANAGER in #Vancouver #jobs http://t.co/Vg7jnaH0iW http://t.co/ksHsgWGhfJ,0
+2521,collision,Mumbai,ThisIsFaz: Anti Collision Rear- #technology #cool http://t.co/KEfxTjTAKB Via Techesback #Tech,0
+2523,collision,"Irving , Texas",Anti Collision Rear- #technology #cool http://t.co/vpvJ5hRc1i Via Techesback #Tech,0
+2524,collision,"Riverside, CA",San Bernardino I10 W Eo / Redlands Blvd **Trfc Collision-No Inj** http://t.co/FT9KIGmIgh,0
+2527,collision,"SEATTLE, WA USA",On I-405 southbound at Coal Creek Pkwy there is a collision blocking the center lane.,1
+2528,collision,"San Francisco, CA",Dublin I580 E / I580 E North Flynn Rd Onr **Trfc Collision-No Inj** http://t.co/in8LyS7v5l,1
+2530,collision,"Orange County, California",Westminister Sr22 W / Knott St **Trfc Collision-No Inj** http://t.co/EUmlca1Edw,1
+2531,collision,"USA , AZ",Anti Collision Rear- #innovation #gadgets http://t.co/SXQTydUvUL,0
+2532,collision,"East Atlanta, Georgia",Well Saturn doesn't exist anymore. So the collision place has a starting estimate of $4000. That's 3 times what my car is worth.,1
+2534,collision,"Denver, Colorado",Motorcyclist bicyclist injured in Denver collision on Broadway http://t.co/UpPwxDA4yd,1
+2535,collision,"Los Angeles, CA",West Valley I405 N / Us101 S I405 N Con **Trfc Collision-Unkn Inj** http://t.co/jS9EhP88wQ,1
+2536,collision,Saint Lucia,@MissJadeBrown tells of the tragic mid-morning collision which claimed the life of a young man riding a motorcycle. https://t.co/rPDA60Aoni,1
+2537,collision,"Peterborough, Ontario, Canada",Two-vehicle collision at Fowlers Corners at Hwy. 7 and Frank Hill Rd. is blocking the road: OPP. Only minor injuries to the occupants.,1
+2538,collision,,"my favorite lady came to our volunteer meeting
+hopefully joining her youth collision and i am excite http://t.co/Ij0wQ490cS",1
+2539,collision,Colorado,#Colorado #News Motorcyclist bicyclist injured in Denver collision on Broadway: At least two people were tak... http://t.co/2iAFPmqJeP,1
+2540,collision,"North Highlands, CA",Traffic Collision - Ambulance Enroute: Elkhorn Blvd at Walerga Rd Sacramento http://t.co/5qHQo6eJtu,1
+2541,collision,Vancouver,7:13pm #MAPLERIDGE Lougheed Hwy EB is closed between 203rd and Dewdney Trunk Rd because of Collision. ETO is between 8:00 PM and 9:00 PM.,1
+2542,collision,60th St (SS),Head on head collision Ima problem and nobody can solve em on Long division,0
+2543,collision,"San Francisco, CA",Solano SR37 / Skaggs Island Rd **Trfc Collision-1141 Enrt** http://t.co/MylIeRUXK1,1
+2544,collision,"Sacramento, CA",Traffic Collision - No Injury: I5 S at I5 S 43rd Ave offramp South Sac http://t.co/cT9ejXoLpu,1
+2545,collision,"Ontario, Canada",CLEARED: COLLISION: #QEW Fort Erie bound approaching Hwy 405 #Niagara.Vehicles removed. ^ag,1
+2546,collision,"Denver, Colorado",Motorcyclist bicyclist injured in Denver collision on Broadway http://t.co/ZL7ojdAj3u,1
+2547,collision,"Denver, Colorado",Motorcyclist bicyclist injured in Denver collision on Broadway: http://t.co/241cN8yxjq by @kierannicholson,1
+2548,collision,Sacramento,South Sac I5 S / I5 S 43rd Ave Ofr **Trfc Collision-No Inj** http://t.co/GpxQBYzYu4,1
+2550,collision,"USA, WA",Anti Collision Rear- #gadget #technology http://t.co/Jtxji7YGrl,0
+2552,collision,btwn a rock and a hard place,Sometimes in space celestial bodies with separate trajectories that intertwine find themselves in a dance rather than a collision course.,0
+2553,crash,,The Next Financial Crash. ÛÏThe Writing is on the WallÛ. DonÛªt Say ÛÏYou WerenÛªt WarnedÛ https://t.co/4PQCMQchnG via @grtvnews,0
+2554,crash,,I feel that 'crash and burn' by Thomas Rhett for sure,0
+2555,crash,,MotoGP Indianapolis: Espargaro: Layout 'worries me a little' - http://t.co/RNy4l3sr7a http://t.co/igX8XFz8Ko,0
+2556,crash,Tennessee,Just bought another @meinlcymbals 18' medium crash!! Hey @meinlcymbals what about an endorsement! Starting to get expensive!,0
+2557,crash,,HTML5 Beginners Crash Course http://t.co/Y32oWBroVF #course http://t.co/Vr2U4cErW8,1
+2559,crash,,'A slamming door and a lesson learned... I let another lover crash and burn'??,0
+2560,crash,,@SterlingKnight Who had a car crashsterling!Who was driving in the carMel or JoeySterling Knight???????,0
+2561,crash,"Aix-en-Provence, France",@daewony0406 alright now I'm gonna crash I'm so exhausted,0
+2564,crash,Liverpool,Party for Bestival crash victim Michael Molloy on what would have been his 21st http://t.co/BIkR8zzbhA,1
+2565,crash,I-75 in Florida,CLEARED: Crash in Hamilton on I-75 south at MM 459.,1
+2566,crash,,Deliver Value: A Cash Source Crash Course http://t.co/st5fGBLsYe #course http://t.co/0uK0H9hOzn,1
+2568,crash,"21.462446,-158.022017",The Next Financial Crash. 'The Writing is on the Wall'. Don't Say 'You Weren't Warned' http://t.co/H7lDx29aba,0
+2569,crash,"Cleveland, OH",am boy @Crash_______ https://t.co/f5Ylp7pfN7,0
+2570,crash,,Make man pikin crash ??????,1
+2571,crash,"Melbourne, Australia","#INCIDENT
+Crash in Pascoe Vale South outbound on Tullamarine Fwy (CityLink) near Moreland Rd. Vehicles off in emergency lane. No delays.",1
+2572,crash,,I let another love crash and burn,0
+2573,crash,Darlington,If you sit and rant on snapchat to your apparent fans when you have about 8000 followers I hope your in a train crash xoxo,0
+2575,crash,,Crash and burn ?? https://t.co/Jq2iB1Ob1X,1
+2576,crash,,cPanel Crash Course http://t.co/bIRKbje23e #course http://t.co/buZWJmW49e,0
+2579,crash," Melbourne, Australia",@DestinyTheGame @Bungie @PlayStation Getting kicked out by that crash is one of the worst experiences I've had playing video games.,0
+2582,crash,"Kenton, Ohio",@_chelsdelong12 @kendra_leigh13 I'll crash it,1
+2585,crash,Galatians 2:20 ,Please keep Josh the Salyers/Blair/Hall families & Jenna's friends in your prayers. She was taken far too soon. RIP http://t.co/bDN2FDPdAz,0
+2587,crash,,"??One night and we're gonna come and crash the party
+Weren't invited but we're feelin' soÛ_ https://t.co/9hKXxBB82O",0
+2588,crash,"Charleston, SC",'Fatal crash reported on Johns Island' http://t.co/d2i9bL89Zo,1
+2590,crash,,Photoshop Tools Crash Course - Complete Photoshop Tool Guide http://t.co/DunMvj7ITl #course http://t.co/RgdrJv63hF,0
+2591,crash,,Photoshop CS6 Crash Course http://t.co/cVGJFPBtrn #course http://t.co/UgYeGkFs4x,0
+2592,crash,,Kinetic Typography Crash Course (After Effects) (Video) http://t.co/fL8gCi84Aj #course http://t.co/dVONWIv3l1,0
+2593,crash,"Lancaster, Pennsylvania, USA",Police respond to crash find 'suspected heroin' http://t.co/oJoecW29qa,1
+2594,crash,,I see dat we liable to fuck up and crash ????,0
+2597,crash,In my own world!!!,AKILAH WORLD NEWS Cop pulls man from car to avoid this ... http://t.co/Vn2Fnmy7li,1
+2598,crash,,Man killed in crash in Barrington Hills: A Hoffman Estates man was killed in a single-car crash Wednesday afte... http://t.co/b6NphxOrZg,1
+2599,crash,,Crash helmet silvery floors karnal fat shoot sampling 33: PBCaNPCx,0
+2602,crash,"San Francisco, CA",'Crash Test' Trailer: Paul Scheer & Rob Huebel's Comedy Special Recorded on a ... http://t.co/flSa8mlDSn,0
+2603,crashed,Definitely NOT the stables,@spicybreads @coxytown i tried downloading it and it crashed after the tutorial,0
+2604,crashed,Pakistan,Maj Muzzamil Pilot Offr of MI-17 crashed near Mansehra today. http://t.co/kL4R1ccWct,1
+2605,crashed,"Cuernavaca, Morelos, M̩xico.",http://t.co/iGXRqPoTm7 Bin Laden family plane crashed after 'avoiding microlight and landi... http://t.co/3kPBU6hGt5 #PeritoEnGrafoscopia,1
+2606,crashed,,My son didn't sleep all night! ?? so finally at 4am I laid him with me on my bed and he crashed out ????,0
+2608,crashed,Scotland,Neil_Eastwood77: I AM A KNOBHEAD!! Bin Laden family plane crashed after 'avoiding microlight and landing t... Û_ http://t.co/dUVUzhMVUT,1
+2609,crashed,,Bin Laden family plane crashed after 'avoiding microlight and landing too far down runway': Three members of t... http://t.co/mFJxh4p51U,1
+2611,crashed,,@brianroemmele UX fail of EMV - people want to insert and remove quickly like a gas pump stripe reader. 1 person told me it crashed the POS,1
+2612,crashed,,Major Hamayun Shaheed pilot of MI-7 heli that crashed in Mansehra http://t.co/2z8UbsY5M8,1
+2614,crashed,"Va Beach, Virginia",#UK Bin Laden family plane crashed after 'avoiding microlight and landing too far down runway': Three members ... http://t.co/fQj0SqU3lG,1
+2616,crashed,"52.479722, 62.184971",@_rosewell it has crashed so many times the past couple hours,0
+2617,crashed,The Pig Sty,> Bin Laden family plane crashed after 'avoiding microlight and landing too far down runway... http://t.co/Tu9cgLmgVR #rochdale #heywood,1
+2619,crashed,,"My iPod crashed.....
+#WeLoveYouLouis
+#MTVHottest One Direction",1
+2621,crashed,"Bangor, Co.Down",@johndcgow heard this few days ago while driving and near crashed the car from laughing to much,0
+2622,crashed,Weston super mare,@olliebailey11 havnt you crashed ? ??,0
+2624,crashed,,Could anyone tell me of this here has crashed or just taking a very long time #Windows10 PLEASE! http://t.co/3FZIDHQrK3,0
+2625,crashed,"Victoria, Tx.",Intact+MH370+Part+Lifts+Odds+Plane+Glided+Not+Crashed+Into+Sea http://t.co/MjTN3qbgOS via @YahooFinance#Hope for answers.,1
+2627,crashed,"Pakistan, Islamabad",Pak Army Helicopter crashed in Mansehra.,1
+2628,crashed,"Lincoln, NE",1 ÛÒ The bug that almost crashed the Euro - http://t.co/KgkZ50Q8TK,1
+2629,crashed,,Pakistan says army helicopter has crashed in country's restive northwest killing at least 8 http://t.co/QV1RMZI3J1,1
+2631,crashed,,#News Bin Laden family plane crashed after 'avoiding microlight and landing too far down runway' http://t.co/x9MDHocpda,1
+2632,crashed,London,This guy bought my car on Tuesday police knocked my door yday cos he crashed n ran & 2day he text me asking not to send the log book????????,1
+2633,crashed,"Gujranwala, Pakistan",Maj Muzzamil Pilot Offr of MI-17 crashed near Mansehra today. May Almighty give strength to family to bear the loss http://t.co/EI1K01zAb3,1
+2635,crashed,Lindenhurst,Thief Broke Front Window Of Hicksville Store Stole 50 Cell Phones; Fled Crashed Into... http://t.co/6odNBttPSq,0
+2637,crashed,Islamabad,Army sources say 12 persons on board including a team of doctors die in helicopter crashed near Mansehra. weather seems to be cause of crash,1
+2640,crashed,Somewhere,@SmusX16475 Skype just crashed u host,0
+2641,crashed,,I already had my phone updated to 8.4 and somehow my phone crashed and I had to restore it and they're not letting me restore it,0
+2642,crashed,too far,He was only .4 of a second faster than me and I overtook him twice (then crashed) tru luv <3 <3,0
+2643,crashed,Kingswinford,I just nearly crashed my car typing 'Paul Rudd attacked by flying ants' into notes on my phone.,0
+2644,crashed,i love the smurfs 2,Honestly nightmarish. God driving to new places is always stressful as shit & i hate it so much. Ugh. Almost crashed a few times,0
+2645,crashed,,I crashed my car into a parked car the other day... #modestmouseremix #truestory,0
+2647,crashed,,"f496D mhtw4fnet
+
+Pakistan says army helicopter has crashed in country's restive northwest - Fox News",1
+2648,crashed,International ,TTW Today's News: Bin Laden family plane crashed after 'avoiding microlight and landing too far down runway' http://t.co/BUMzvmwAM3,1
+2649,crashed,Viterbo BFA Acting '18,Heard #SKH on the radio for the first time. Almost crashed the car. @5SOS @Ashton5SOS @Luke5SOS @Michael5SOS @Calum5SOS,1
+2651,crashed,Buenos Aires,MH370: Intact part lifts odds plane glided not crashed into sea http://t.co/8pdnHH6tzH,1
+2655,crush,Kaneohe,@kuualohax more like you love your husband but you're posting another man for your man crush Monday's lol,0
+2656,crush,Houma La,Womem Crush Wednesday ?????????????????? @mommyisbomb,0
+2657,crush,,'@jorrynja: 6. @ your bf/gf/crush ??' @Ter_ell ??,1
+2658,crush,,This guy idk just made me his woman crush ?? first one ever ??,0
+2659,crush,EastAtlanta ??#WestGeorgia'18,WCE I can't even lie even tho I can't stand her she still will always be my crush ?? @_explicitpretty,0
+2660,crush,"San Antonio, TX",women crush ???? http://t.co/CFXhQHvbVB,0
+2661,crush,"Cleveland, Ohio",My woman crush wedneday goes to the beautiful @taykreidler #loveyouuuu #aintsheperty https://t.co/WeMwdtFwiC,0
+2663,crush,,Being bestfriends with your high school crush???? @yourboy_shawn,0
+2664,crush,,Ina Buted Girl Crush??,1
+2666,crush,Everywhere,samel_samel has a crush: http://t.co/tBsTk5VqU0,0
+2667,crush,,I'm my own woman crush ????,0
+2668,crush,"San Diego, Texas.",Love love love do you remember your first crush ? ??,0
+2670,crush,GLOBAL,Had a minute alone with my crush??...it was an overrated experience...smh,0
+2671,crush,05/04/2014 18:23 ?,@PYDisney que crush?#MTVHottest Justin Bieber,0
+2672,crush,Everywhere,master0fsloths has a crush: http://t.co/SZX6v0bbjF,0
+2673,crush,,My Lil brother has a crush on mariah ??????,0
+2675,crush,,Ron & Fez - Dave's High School Crush https://t.co/aN3W16c8F6 via @YouTube,1
+2676,crush,"Bolivar, MO",When you're girlfriend is completely gorgeous???? @ woman crush & stuff https://t.co/ycwAULQz3U,0
+2677,crush,taking pain like pleasure,I'm so high moe I'm bouta crush this Friday's,0
+2679,crush,San Fransokyo,I have the biggest crush on you & I dont know if you'll ever know it ??,0
+2680,crush,"Washington, DC NATIVE",#MrRobinson is giving me #TheSteveHarveyShow vibe. Music teacher looks out for students has crush on girl he went to high school with. ??,0
+2682,crush,,Seriously have the biggest girl crush ever on Blake Lively,0
+2683,crush,,When you see your crush in the stands. (Vine by @KhadiDon) https://t.co/aSooPcYgwn,0
+2684,crush,Everywhere,yhngsjlg just tweeted about their secret crush:http://t.co/IoqM5bm1Dg,0
+2687,crush,"Miami, FL",@Starflame_girl yeah I have a crush on her,0
+2688,crush,,Me trying to look cute wen crush is passing by ... http://t.co/Z87zMi3Ozs,0
+2689,crush,Utah,Crush Content MarketingåÊMediocrity http://t.co/IlQ0wQj0Xs http://t.co/aW1NYTpWJr,0
+2691,crush,,Only had a crush on one girl in high school and she don't even realize it lol,0
+2692,crush,Everywhere,sevenfigz has a crush: http://t.co/20B3PnQxMD,1
+2693,crush,,MEN CRUSH EVERY FUCKING DAY???????????????????????????? http://t.co/Fs4y1c9mNf,0
+2694,crush,Everywhere,tiffanyfrizzell has a crush: http://t.co/RaF732vRtt,0
+2695,crush,w. Nykae ,More than a crush ???????????? WCE @nykaeD_ ?????????? http://t.co/mkJO8x2dKo,0
+2696,crush,honeymoon avenue,@jaureguiswisdom lmao well i only know one and ive only had a crush on this one sooo,0
+2698,crush,"Toronto, Worldwide ",#NowPlaying Fitz And The Tantrums - Out Of My League on #Crush #Listen http://t.co/Pwd5L0GLkV #NowPlaying,0
+2700,crush,,Man crush everyday ???? @CristianInspire http://t.co/iXjQG1sx6u,0
+2701,crush,,do he love me do he love me not I ain't a playa I just crush a lot,0
+2702,crush,,kenny holland crush da vida,0
+2703,crushed,,Crushed,0
+2706,crushed,,this Popeyes bout to get crushed ??,0
+2707,crushed,11/4/14,That was crushed holy shit,0
+2708,crushed,wherever there's netflix,BHAVANA'S MOM HAS CRUSHED EVERYONE'S SOUL,0
+2709,crushed,,Crushed it! https://t.co/EWnUnp8Hdo,0
+2711,crushed,,http://t.co/kG5pLkeDhr WRAPUP 2-U.S. cable TV companies' shares crushed after Disney disappoints http://t.co/QeIhvn3DNQ,0
+2714,crushed,"Chicago, IL",.@jimmyfallon I crushed squirrel bones with a mortar and pestle for my school's bio dept. not really sure why #WorstSummerJob,0
+2715,crushed,#HAMont,Edwin wow. Crushed.,0
+2719,crushed,,Mango juice with crushed ice>>>>??,0
+2720,crushed,U.K.,Man crushed to death by own car http://t.co/CrPO9DkW9v,1
+2723,crushed,ph,A diamond is just a piece of charcoal that handled stress exceptionally well. We are hard pressed on every side but not crushed.2 cor4:8,1
+2724,crushed,,Wow! He crushed that! #EDWING #BlueJays,0
+2725,crushed,,Crushed the gym then crushed a butterfinger flurry clearly my priorities are straight ??,0
+2726,crushed,online ,WRAPUP 2-U.S. cable TV companies' shares crushed after Disney disappoints http://t.co/wWFACu6NFt,0
+2727,crushed,,@JMastrodonato so the question is: would you crush Ortiz for bunting as your sports writing forefathers crushed Williams?,0
+2728,crushed,"Conroe, TX",@CBSBigBrother ouch Clelli....you could almost hear their hopes and dreams being crushed !,0
+2729,crushed,"Ontario, Canada. ",Jesus Christ that ball was fucking crushed!! #BlueJays,0
+2730,crushed,Guayaquil,I crushed a 3.1 km run with a pace of 5'41' with Nike+ SportWatch GPS. #nikeplus: http://t.co/A3dSmbqkwu,0
+2731,crushed,bahstun/porta reeko,Papi absolutely crushed that ball,0
+2732,crushed,"Bucks County, Pa",crushed a 6 mile run tonight. awesome,0
+2733,crushed,Sunny South florida ,WRAPUP 2-U.S. cable TV companies' shares crushed after Disney disappoints http://t.co/jFJLbF40To,0
+2734,crushed,Rio,Oil prices falling but drivers could reap benefits http://t.co/QlTwhoJqYA,0
+2736,crushed,Neverland,I crushed a 11.2 km run with a pace of 7'46' with Nike+ SportWatch GPS. #nikeplus: http://t.co/7d7VweQ3eS,0
+2739,crushed,Pennsylvania,Nick Williams just hit another bomb. Just crushed it,0
+2740,crushed,,Holy moly that was crushed.,1
+2741,crushed,,#AyekoRadio play Brasswork Agency - Crushed and Shaken http://t.co/Qh5axvhWH5 #Radio #NetLabel #ElectronicMusic #listen #CCMusic,0
+2743,crushed,,So many Youtube commenters saying the Dothraki would get crushed if they came to Westeros...nah bro you underestimate the Dothraki,1
+2744,crushed,Trinidad & Tobago,"Disillusioned lead character
+Check
+Happy go lucky free spirit girl
+Check
+Dream life crushed
+Check
+Great music
+Check
+All Crowe tropes intact",0
+2748,crushed,Chicago - Lake Buena Vista,Remember how Nora Jones crushed it in Two Weeks Notice?,0
+2749,crushed,"Toronto, Ontario",How Empire Avenue crushed my soul http://t.co/X9OFV1kMv7 via @markwschaefer,0
+2752,crushed,"Liberty Lake, WA",'13 M. Chapoutier Crozes Hermitage so much purple violets slate crushed gravel white pepper. Yum #france #wine #DC http://t.co/skvWN38HZ7,0
+2753,curfew,,@TheComedyQuote @50ShadezOfGrey the thirst has no curfew ???????????? @P45Perez,0
+2755,curfew,Ankara - Malatya - ad Orontem,ARA news reporting JaN fighters infiltrated Ashrafiyah district of Afrin with aim of carrying out suicide attacks. YPG have imposed a curfew,1
+2756,curfew,,@keampurley thirst has no curfew,0
+2757,curfew,,And the fact that i have a curfew,0
+2758,curfew,"antioch, california",@michelleellle ?? shut up freshman its past ur curfew. u need some sleep!! u spend too much of ur time watching tv instead of going outside ??,0
+2759,curfew,"State College, PA","Is there a night curfew on campus?
+
+Find out here: https://t.co/y8OrqaPwrk http://t.co/eJRme49rkD",0
+2760,curfew,"Chicago, IL",Police: Teenagers arrested for curfew violations in Evanston were riding stolen bicycles: Two teenagers taken into cus... #Chicago #news,1
+2761,curfew,,for some reason im listening to curfew overtime and stuck in a kodak over and over again,0
+2763,curfew,somewhere in cali ,@BOBBYXFISHER I should've gave him a curfew,0
+2765,curfew,Im Around ... Jersey,Curfew really helps If you think about it ... #BC,0
+2766,curfew,Garden Grove,ExOfficio Men's Boxer Brief Curfew Large http://t.co/acb0ryeNuo,0
+2767,curfew,"Adelaide, Australia",INFO S. WND: 030/6. CLD: SCT014 BKN032. EXP INST APCH. RWY 05. CURFEW IN OPER UNTIL 2030 Z. TAXIWAYS FOXTROT 5 & FOXTROT 6 NAVBL. TMP: 10.,0
+2768,curfew,,@emaaalay thank you. ?? now I don't have a city wide curfew. ????,0
+2769,curfew,,She just said does he have a curfew 'nope'??,0
+2770,curfew,BKI-KUA,Her curfew will start right after her private class ends. Tutor must a woman preferably someone over 50.,0
+2771,curfew,,@aptly_engineerd There is no such curfew.,0
+2773,curfew,uṛnus,"It was past curfew
+and we were at the Grove",0
+2774,curfew,"Illinois, USA",@emmychappy Because it's 12 o'clock and my mom said everyone has to go home because of curfew.,1
+2777,curfew,A.A.S my Aztec Princess,@Reddakushgodd she said a few months. But I get a curfew for out time smfh,0
+2778,curfew,turner fenton,ball has no curfew https://t.co/SG1FTKaEgq,0
+2780,curfew,,@ScotRail i be seen them turn a blind eye to a bloke drinking and smoking on during the curfew time cos'its not worth the hassle',1
+2782,curfew,"KLA,Uganda",Next May I'll be free...from school from obligations like family.... Best of all that damn curfew...,1
+2783,curfew,Uganda,@DavisKawalya I know @Mauryn143 will be saying her final goodbyes to grandpa as seen on news RiP Me? always open to ideas but may ve curfew,0
+2784,curfew,,People really still be having curfew even when they're 18 & graduated high school ??,0
+2785,curfew,253,@stupid_niggr I'm telling your mom your up past curfew oth,0
+2786,curfew,"Elkhart, IN",Had to cancel my cats doctor appointment because she decided to go out and play and not come home by curfew ...,0
+2787,curfew,"Adelaide, Australia",INFO R. CURFEW IN OPER UNTIL 2030 Z. TAXIWAYS FOXTROT 5 & FOXTROT 6 NAVBL. WND: 060/5. EXP INST APCH. RWY 05. DAMP. TMP: 10. QNH: 1028.,0
+2788,curfew,California,But no lies though. It's pays to be the oldest sometimes. Like being the first to get a car and have no curfew. #freedom #donthate,0
+2792,curfew,"Adelaide, Australia",INFO U. CLD: SCT012 BKN025. EXP INST APCH. RWY 05. CURFEW IN OPER UNTIL 2030 Z. TAXIWAYS FOXTROT 5 & FOXTROT 6 NAVBL. TMP: 10. WND: 030/6.,0
+2793,curfew,Pon Di Gully,Rite now man a tlk widout nuh curfew long side Aka cum fi steal di show itz a rubbery di whole a dem fi knw... Sound it *music*,0
+2794,curfew,Benedict College,Dont even come if you worried about curfew #BC19,0
+2795,curfew,HTX,You got a whole curfew ????,0
+2796,curfew,,When you're 5 hours late for curfew and have to pray your dog doesn't bark when unlocking the door,0
+2797,curfew,IM LOST ,Da Judge Gave Dis Girl 5pm Curfew ??????,0
+2799,curfew,Miami,In the beginning of summer my mom made my curfew 1 now it's back to 12 and I can never go out and she wonders why I'm always at home,0
+2801,curfew,,Why Charlie Lim start at 9pm on this Sunday..... I have curfew leh :-(,0
+2802,curfew,"Hamilton, ON",WHEN U BOMBED AND U TRY 2 GET HOME FOR CURFEW http://t.co/oi6CmAGASi,0
+2803,cyclone,United Kingdom,awwww Baby Walter #rewatchingthepilot #TeamScorpion #Cyclone,0
+2807,cyclone,"Des Moines, Iowa ",'The Big Ten has their annual football media day but before we get into that here's some Cyclone hoops recruiting nuggets',1
+2808,cyclone,USA,"#Camera #Art #Photography http://t.co/TJGxDc3D5p #0215 New BoltåÊCyclone DR PP-400DR Dual Outlet Power PackåÊFor External Camera Flash
+
+$30Û_",0
+2811,cyclone,Rural Northern Nevada,@mccauleysdesign @abysmaljoiner @DyamiPlotke it works for my purpose. A large cyclone would be better. I just don't have $4K. This was $500,0
+2813,cyclone,Republic of the Philippines,"A new tropical cyclone is forming near Guam.
+
+Once it is formed it will be called 'Molave'.",1
+2815,cyclone,,Video: New DE Jhaustin Thomas on being a Cyclone - Ames Tribune: Ames Tribune Video: New DE Jhaustin Thomas onÛ_ http://t.co/sTW3Pg3T0o,0
+2817,cyclone,,@XHNews We need these plants in the pacific during the cyclone seasons it would help,1
+2819,cyclone,,BBC Forced To Retract False Claims About Cyclone Pam http://t.co/tbbObvCotj via @wordpressdotcom,1
+2820,cyclone,,GREAT CONDITION Easton Cyclone Softball Bat Fastpitch (-9) 29/20 SK398 http://t.co/rA2mAjPkq2 http://t.co/y7gHHYK05b,1
+2821,cyclone,Philippines ,"SEVERE WEATHER BULLETIN No. 5
+FOR: TYPHOON ÛÏ#HannaPHÛ (SOUDELOR)
+TROPICAL CYCLONE: WARNING
+
+ISSUED AT 5:00 PM 06... http://t.co/qHwE5K7xUW",1
+2822,cyclone,"Washington, DC",'The cyclone derives its powers from a calm center. So does a person.' - Norman Vincent Peale,1
+2825,cyclone,hyderabad,@roughdeal1 ante hudhud cyclone Chandrababu Valle ne ante Ga?,1
+2826,cyclone,Vancouver (HQ) and worldwide,Cyclone Komen devastates families in Myanmar this week. We need to help them today: http://t.co/fCujsIOyQO,1
+2827,cyclone,"Quezon City, Philippines","SEVERE WEATHER BULLETIN #6
+TROPICAL CYCLONE WARNING: TYPHOON 'HANNA'
+Issued at 11:00 p.m. Thursday 06 August... http://t.co/FQV47OB8gE",1
+2828,cyclone,Geneva,"Back to the future in #Vanuatu how Cyclone Pam has encouraged traditional ways of living:
+http://t.co/aFMKcFn1TL http://t.co/6QZXFK2LFS",1
+2829,cyclone,"Hartford, connecticut","Bank manager asks Tom in an interview: 'What is cyclone'
+Tom: 'It is the loan given to purchase a bicycle'",0
+2830,cyclone,"Sioux Falls, SD",Excited for Cyclone football https://t.co/Xqv6gzZMmN,0
+2831,cyclone,Cornwall,BBC Forced To Retract False Claims About Cyclone Pam http://t.co/ciHC8Nrc9h via @wordpressdotcom,1
+2832,cyclone,Beside Basketball,Talent: Misdirection Cyclone Pass Ignite Pass Vanishing Drive Phantom Shot #KurokoBot,1
+2833,cyclone,"Rome, Italy",Now on #ComDev #Asia: Radio stations in #Bangladesh broadcasting #programs ?to address the upcoming cyclone #komen http://t.co/iOVr4yMLKp,1
+2835,cyclone,Tafekop Ga-Matsepe,Like a cyclone imperialism spins across the globe; militarism crushes peoples and sucks their blood like a... http://t.co/n3VbTC6NCa,1
+2836,cyclone,,1970 Mercury Cyclone GT Hood Moulding Very NICE CORE Cobra Jet 429CJ GT http://t.co/jOBVBvKFnZ http://t.co/C8zPmZhTDE,0
+2838,cyclone,,'I'm a cyclone passion overblown' https://t.co/MmZgpHNKNP,0
+2839,cyclone,,"HIS MAJESTY EMPEROR SALMAN KHAN'S UNSTOPPABLE CYCLONE OF ENTERTAINMENT HUMANITY
+BAJRANGI BHAIJAAN CREATING HISTORY EVERYWHERE
+CROSED 300 CR",0
+2841,cyclone,,1970 Mercury Cyclone GT Quarter Panel D/S Rear Trim Moulding Cobra Jet 429CJ http://t.co/wqUL8pG5Px http://t.co/4ykXt3kd62,1
+2842,cyclone,,[Tropical Cyclone Info] SOUDELOR 945hPa maximum wind speed: 45m/s maximum wind gust speed: 60m/s http://t.co/nBD5oT9iEW,1
+2843,cyclone,Melbourne,@cyclone_reizei If I may ask Cyclone-sama have you read Jailed Fate by Rindou?,0
+2844,cyclone,Vilnius,"Some drugs and alcohol in Jackson Vroman house.
+
+http://t.co/5OQhQ8QUQV",0
+2846,cyclone,Geneva,"Blending the old with the new in #Vanuatu to prepare for future emergencies:
+http://t.co/aFMKcFn1TL http://t.co/8QqzYZIAqf",0
+2849,cyclone,,WFP - WFP Delivers Food To 165000 Bangladesh Flood Victims After Tropical Cyclone Komen: DHAKA ÛÒThe United Na... http://t.co/fukbBeDfGx,1
+2851,cyclone,,#Rohingya houses in #Kyee NockThie hamlet from Taungbazar region in Buthidaung were severely damaged in Cyclone @KasitaRoch @VivianUNHCR,1
+2852,cyclone,Made in America,Cyclone by Double G would be the cherry on top to this outfit! #OOTD #DoubleGhats http://t.co/JSuHuPz6Vp http://t.co/N5vrFFRbo3,0
+2853,damage,"PS4, now stop asking",@TheLegendBlue @Cozmo23 they'll probably allow us to ascend them but not get them to the damage max values,0
+2854,damage,,Drop it down on a nigga do damage ! ??,0
+2855,damage,Cheshire. London. #allover,Unions say they are supportive of 'London' yet are prepared to damage it economically? (å£300m last time) https://t.co/lW2FGlrgxB,0
+2856,damage,"Texas, USA",I liked a @YouTube video http://t.co/tBX8cAKdrw GTA 5 Online - COLLATERAL DAMAGE! (GTA V Online PC),0
+2857,damage,"Bartholomew County, Indiana",FYI: ;ACCIDENT PROPERTY DAMAGE;3460 LIMESTONE LN;COL;YELLOWSTONE WAY;FIELDSTONE DR;08/05/2015 19:36:35,1
+2858,damage,U.S,#fitness Knee Damage Solution http://t.co/pUMbrNeBJE,0
+2860,damage,My mind is my world,And here I was complaining about Phoenix Mode in Fire Emblem. Turns out Ray Gigant will have a 'difficulty' option where you take 0 damage.,0
+2861,damage,,@capicapricapri @Brento_Bento wha t is this kids damage,0
+2863,damage,Catskills,Cleared: Accident with property damage on #NY35 EB at NY 100,1
+2864,damage,,It's crazy how a phone can do so much damage to a person,0
+2865,damage,"Columbia, SC",@writebothfists It got pretty windy here too... But no damage.,0
+2866,damage,,Reusing advanced in life equipments in transit to drumming champaign damage: FdbDP,0
+2867,damage,Right here,@IndiGo6E But if you are carful about spotting damage @the time of check in why not @the time of giving away baggage?! It's my loss all d wy,0
+2869,damage,Texas,Storm damage reported in West Tennessee http://t.co/90L2lB5WMr,1
+2870,damage,"Lawrence, KS via Emporia, KS",Hey the #Royals love doing damage with 2 outs.,1
+2871,damage,http://twitch.tv/jcmonkey,"@Drothvader @CM_Nevalistis you can keep this please!!!!! Arachys
+ [2 Pieces] - Now deals 4000% weapon damage (up from 2500%)",1
+2872,damage,Indonesia,'Mages of Fairy Tail.. Specialize in property damage!' - Natsu Dragneel,0
+2873,damage,Unknown,@BradleyBrad47 yeah but being fast and doing extremely high damage is what its all about if you want fast then im gonna have to get u the-,1
+2875,damage,Unknown,@BradleyBrad47 the saw is fast af and does great damage i upgraded it a shitton and used it exclusively for a whole playthrough,0
+2877,damage,"Marysville, MI",Let's say a tree falls on your fence. Do you know how your homeowners insurance may help? http://t.co/VLaIuvToMM http://t.co/AJpnEBG803,0
+2878,damage,"New Haven, Connecticut",@JoeDawg42 TOR for a TOR situation only. Wind damage enhanced wording is key IMO,1
+2879,damage,,@HfxStanfield @beelieveDC @DiscoveryCntr what is happening we hear there is runway lighting damage by a contractor.,1
+2880,damage,Austin | San Diego,@swb1192 if the NDA is written to damage your ability to offer your services in the future then you prolly don't want the work anyway,0
+2881,damage,??? ?? ??????? ,If Trillion crosses the line a 3rd time he does a field-wide attack that does instant kill damage,1
+2882,damage,"Pontevedra, Galicia",#NP Metallica - Damage Inc,0
+2883,damage,Somewhere in the Canada,Nine inmates charged with causing damage in Calgary Remand Centre riot - http://t.co/1OSmIUXKhW,1
+2884,damage,London/New York,#pt Cross-sectarian protest. Powerful Shia cleric says militias must withdraw:'ur fightin ISIS but we wont forget damage uve done to ur ppl',1
+2885,damage,"261 5th Avenue New York, NY ",Does homeowners insurance cover water damage? Here are some good things to know. http://t.co/0uSDI5JCHo http://t.co/xyg7JhRjoF,1
+2886,damage,,Beach did damage to my shit,1
+2887,damage,,@WonderousAllure crosses her arms to cover her hands from doing anymore damage. 'H-Hello..',0
+2888,damage,,"New post on my blog: http://t.co/Avu9b4k2rv
+thesensualeye:
+
+Model: Cam Damage
+
+Toronto Apr 2014
+
+#nsfw #pussy #ass #boobs #asian #nude #Û_",0
+2889,damage,Charlotte NC,REPORTED: HIT & RUN-IN ROADWAY-PROPERTY DAMAGE at 15901 STATESVILLE RD,1
+2890,damage,,"Devil May Cry 4 Special Edition Vergil Vs Agnus [Window] Mission 6 - DMD - No Damage By LeedStraiF
+https://t.co/ZhRTcVU0Ff",0
+2891,damage,"Rockville, Maryland",#Glaucoma occurs when fluid builds up pressure inside #eye to a level that may damage optic nerve #eyefacts,1
+2893,damage,,#JSunNews Storm damage reported in Madison County: Thunderstorm damage reports ar... http://t.co/s7NBowa7TP (via http://t.co/3f7owdEcy7),1
+2895,damage,,S61.231A Puncture wound without foreign body of left index finger without damage to nail initial encounter #icd10,1
+2896,damage,Australia,Thank you @RicharkKirkArch @AusInstArchitect for words of warning re #QueensWharf #Brisbane http://t.co/jMkYWhv7mP via @FinancialReview,0
+2898,damage,Your Conversation,This real shit will damage a bitch,0
+2899,damage,USAoV,"lmao fuckboy changed his @ for damage control
+@Pseudojuuzo",0
+2900,damage,"Bhopal, Madhya Pradesh, India.",@MichaelWestBiz standard damage control,1
+2902,damage,Tennessee,@GettingLost @JennEllensBB @Muncle_jim It said they had superficial wounds and it was the pepper spray that did the most damage.,1
+2905,danger,,@BlizzHeroes @DustinBrowder DAD. I won't chase you constantly & all the time but frequently. With a great deal of danger and distraction <3,0
+2907,danger,#LemonGang ,I believe there is a shirt company now for every animal that has ever been in danger. I better start seeing some changes in wildlife.,0
+2908,danger,ayr,Danger of union bears http://t.co/lhdcpNZx6A,0
+2909,danger,,The sign-up is open for the FALLING FOR DANGER release day blast and review tour. Sign-up here:... http://t.co/hbdo22nqPZ,1
+2910,danger,Worldwide,@DyannBridges @yeshayad Check out this #rockin preview of @ClaytonBryant Danger Zone Coming soon! https://t.co/IpGMF4TtDX #ArtistsUnited,0
+2911,danger,"San Jose, California",Red Flag Warning for fire danger & dry thunderstorms in Bay Area http://t.co/ugzu9iqPRW #weather #cawx by @NWSBayArea,1
+2912,danger,Worldwide,@CarsonRex @SpaceAngelSeven Check out this #rockin preview of @ClaytonBryant Danger Zone Coming soon! https://t.co/P0fiZxmN5r #ArtistsUnited,0
+2913,danger,"Loughborough, England",What is this? Like I could be in danger or something,1
+2915,danger,Killarney,When the Last Tree Is Cut Down the Last Fish Eaten and the Last Stream Poisoned You Will Realize That You... http://t.co/hskl0Vq2D2,0
+2916,danger,"Brooklyn, NY",My take away: preservation parks r an imposition & a danger to African people. I never imagined! https://t.co/Gi2P9TUVBI,0
+2917,danger,Lahar & Gwalior,Indian Govt. & Media should take serious concern about their safety. They are in danger now. https://t.co/YX1UKbmTqB,1
+2920,danger,"St Paul, MN",Training grains of wheat to bare gold in the August heat of their anger I'm the no trespass lest you seek danger.,0
+2921,danger,Atlanta Georgia ,"@therealRITTZ #FETTILOOTCH IS #SLANGLUCCI OPPRESSIONS GREATEST DANGER COMING SOON THE ALBUM
+https://t.co/moLL5vd8yD",0
+2922,danger,,@morehouse64 It appears our #Govt has lost an #Ethical and or moral relevance. This means the whole #USA population is in danger from them.,0
+2924,danger,"Lincoln, IL",Don't like those head first slides. Especially into home !! #danger,0
+2925,danger,World,Permits for bear hunting in danger of outnumbering actual bears: The licenses for Florida's fir... http://t.co/FP64YOSJwx #st petersburg,0
+2927,danger,Spinning through time.,@riverroaming 'And not too much danger please.',0
+2929,danger,Atlanta Georgia ,"@bluebirddenver #FETTILOOTCH IS #SLANGLUCCI OPPRESSIONS GREATEST DANGER COMING SOON THE ALBUM
+https://t.co/moLL5vd8yD",1
+2931,danger,"Boston, MA",.@Uber is looking to repair its recent bad rap with some #nonprofit partnerships: http://t.co/h1xch54Kd3,0
+2932,danger,Hailing from Dayton ,I wish I could get Victoria's Secret on front. I'm good for it.,0
+2933,danger,Worldwide,@TurnedonFetaboo @HSjb215 Check out this #rockin preview of @ClaytonBryant Danger Zone Coming soon! https://t.co/E1wrVyZFKV #ArtistsUnited,0
+2934,danger,"Newcastle Upon Tyne, England",@TheTXI @GunnersFan89 why would arsenal fans want that? West Ham will be in a relegation battle this season. no danger for #AFC on sun,0
+2935,danger,Atlanta Georgia ,"@RemainOnTop #FETTILOOTCH IS #SLANGLUCCI OPPRESSIONS GREATEST DANGER COMING SOON THE ALBUM
+https://t.co/moLL5vd8yD",0
+2936,danger,Atlanta Georgia ,"@nuggets #FETTILOOTCH IS #SLANGLUCCI OPPRESSIONS GREATEST DANGER COMING SOON THE ALBUM
+https://t.co/moLL5vd8yD",0
+2937,danger,,The Danger and Excitement of Underwater Cave Diving http://t.co/8c3fPloxcr http://t.co/cBGZ9xuN2k,0
+2939,danger,,The girl that I wanna save is like a danger to my health try being with somebody that wanna be somebody else.,0
+2941,danger,Instagram: trillrebel_,"Guns are for protection..
+That shit really shouldn't be used unless your life in danger",0
+2942,danger,ALWAYS DYING NEVER RESTING,SO THIRSTY YALL IN DANGER OF DEHYDRATION,1
+2943,danger,"San Jose, CA",Thunderstorms with little rain expected in Central California. High fire danger. #weather #cawx http://t.co/A5GNzbuSqq,1
+2944,danger,2005 |-/,i wanna get a danger days tattoo so bad how cool would that spider look like on someones wrist or smth,0
+2945,danger,Israel,In my experience if you're always angry and critical as a pundit you are in grave danger of going off the rails. 1/,0
+2946,danger,Uruguay / Westeros / Gallifrey,I am not in danger Skyler. I AM THE DANGER.,0
+2947,danger,"Kansas City, MO",Too dangerous for them. But it's OK for the rest of us to be in danger. https://t.co/YL67DKf4tb,0
+2948,danger,"Silver Spring, MD",investigate why Robert mueller didn't respond to my complaints since Nov 2011 & just left me/son out her in danger http://t.co/pe2D3HCsNI,0
+2950,danger,Jersey - C.I,Honestly tho Modibo Maiga is stealing a living - fuck all about him - im past my best but still more of a danger than that fucktard #coyi,1
+2952,danger,,Fear has a way of making us see danger where there is none. Contemplating the logic behind the situation and find the courage to engage it,0
+2953,dead,,Joel 2:28? And book of acts 2:17? http://t.co/RgPeM2TQej,0
+2954,dead,Afghanistan,17 dead as Afghanistan aircraft crashes: An Afghan military helicopter has crashed in a remote region of the s... http://t.co/kI9eHjHl8y,1
+2955,dead,Sweden,@Silent0siris why not even more awesome norse landscapes with loads of atmosphere and life than boring/dead snotgreen wastelands =/,0
+2956,dead,,i miss my longer hair..but it was so dead anyways it wasn't even hair,0
+2957,dead,,@cjbanning 4sake of argsuppose pre-born has attained individl rights.Generally courtof law forbids killing unless dead person did something,0
+2959,dead,London,"remember that time goku gave life to a dead birb
+what the hell goku",0
+2960,dead,"Orlando, FL",Naaa I bee dead.. Like a legit zombie .. I feel every sore part in my body ?? https://t.co/J4fSDPfA63,0
+2963,dead,,We just happened to get on the same road right behind the buses I'm dead serious,0
+2965,dead,Atmosphere,lmfao fucking luis hhahaha im dead,0
+2969,dead,,I just watched emmerdale nd I don't know who most of them are but a slightly attractive man named Ross just got beat up nd now he's dead,1
+2970,dead,Glasgow,@soapscoop i need you to confirm that ross is dead cause i dont trust anyone else yh,0
+2971,dead,,@GailSimone #IWasDisappointedBy TellTale's The Walking Dead. Good characters &story but no real gameplay and too many performance issues.,0
+2973,dead,,beforeitsnews : Hundreds feared dead after Libyan migrant boat capsizes during rescue Û_ http://t.co/MjoeeBDLXn) http://t.co/fvEn1ex0PS,1
+2974,dead,somewhere in Portugal,"If itÛªs a war you came to see you will never see a waved white flag in front me.
+I canÛªt end up dead I wont be misled.",0
+2975,dead,South Stand,@Jones94Kyle oh fuck sake he is dead ????,0
+2976,dead,dundalk ireland,@emmerdale is Ross really dead?? #AskCharley,0
+2980,dead,,Don avoid wearing dead black flaming red and stark white so much and esp. at debate; go with your blue gold brown even to shoes; and,0
+2982,dead,,Perspectives on the Grateful Dead: Critical Writings (Contributions to the Study http://t.co/fmu0fnuMxf http://t.co/AgGRyhVXKr,1
+2983,dead,"Sochi, KDA, RU",@hlportal Hello! I'm looking for mod Cold Ice. I saw it on your site but link to download dead. Maybe you have it and share with me? Thanks.,0
+2984,dead,"ÌÏT: -26.695807,27.837865",@kg4vaal lmaov.v hard the 'Ny' is the the new trend babalmao...welcome to Nyozi kwaAaaA#dead,0
+2987,dead,South Stand,@Jones94Kyle now I've said all this he's dead and no one else dies,0
+2988,dead,You're not 19 forever ,IS ROSS DEAD NOOOOOOOOOOOO @MikeParrActor,0
+2990,dead,"Kettering, OH",thinking of the time that my friend bailed the nite b4 a dead show...went alone & had a GREAT time. All alone and free to dance. Front row,0
+2991,dead,United States,Typhoon Soudelor taking dead aim at Taiwan http://t.co/BhsUxVq6NF,1
+2992,dead,,#AskCharley #Emmerdale How emotional are you that Ross is dead? @emmerdale 5,0
+2993,dead,Planet Earth,Man Found Dead in Demi Moore's Swimming Pool! http://t.co/oCtnPyUEei,1
+2995,dead,Spare 'Oom,that's it val is dead im suing,1
+2998,dead,,@AtchisonSean he is dead,0
+3000,dead,United States,Wyrmwood: Road of the Dead (2014) was fucking awesome and it had an awesome ending too. Awesome one.,0
+3001,dead,Milton Keynes ,Can't believe Ross is dead???????? @emmerdale @MikeParrActor #Emmerdale #summerfate,0
+3003,death,,I will only call or text 2 niggas my bff & my boyfriend ???? I love my boys to death. No other niggas can hold my attention like them ??,0
+3004,death,ATL??AL??,I Hate To Talking Otp With My Grandma... I Mean I Love Her As To Death But She Talk So Damn Much Ssshhheeesshh!!! ??????,0
+3005,death,UPTOWN ,Until my death I'll forever rep the Jets.,1
+3006,death,,my vibrator shaped vape done busted,0
+3009,death,PROV,Death threats on a nigga life well then we gon see,0
+3010,death,"Novi, MI",Adult dies of plague in Colorado http://t.co/yoHVuwuMZS,1
+3011,death,New York,Xbox 360 Pro Console - *Red Ring of Death* - Full read by eBay http://t.co/5GKTSHioRR http://t.co/9jEUU86Koi,0
+3012,death,"Buenos Aires, Argentina",Going back to Gainesville will be the death of me,1
+3013,death,on the go,A Year Later Ferguson Sees Change but Asks if ItÛªs Real http://t.co/H9vmMDEbDx,0
+3014,death,,#PapiiChampoo What I enjoy most about the Obama era is the civility: Prez says GOP supports Iranian 'Death to ... http://t.co/jpU3es746I,0
+3015,death,,I feel like death,0
+3016,death,The UK,I liked a @YouTube video from @jeromekem http://t.co/Nq89drydbU DJ Hazard - Death Sport,0
+3018,death,,I tell my cousins I don't wanna hang out and they text me saying 'we're coming over' honestly do you have a death wish,0
+3019,death,,RSS: Judge orders Texas to recognize spouse on same-sex death certificate http://t.co/TZIolfTe5i,0
+3021,death,mpls. ,her loyalty mission involves her kicking a shitty nobleman to death???? I love this elven weirdo,0
+3022,death,"Kensington, MD",http://t.co/lMA39ZRWoY There is a way which seemeth right unto a man but the end thereof are the ways of death.,1
+3023,death,Buffalo/DC,@KellKane thanks I narrowly averted death that was fun you're right,1
+3025,death,,"https://t.co/eCMUjkKqX1 @ArianaGrande @ScreamQueens
+Katherine's Death",0
+3026,death,"Sylacauga, Alabama",@Allahsfinest12 ...death to muslims,1
+3027,death,,going to starve to death,0
+3029,death,,Ted Cruz Bashes Obama Comparison GOP To Iranians Shouting 'Death To America' http://t.co/cuFGVupKzi,0
+3030,death,,"https://t.co/oIfN28HpCS @ArianaGrande @ScreamQueens
+Katherine's death",0
+3034,death,,New crime: knowing your rights. Punishable by death,0
+3036,death,USA,I had no issues uploading DEATH TO SMOOCHY or AWAKENINGS clips to @YouTube but for some reason BICENTENNIAL MAN is being a pain in the ass.,0
+3037,death,To The Right of You!,Ted Cruz Bashes Obama Comparison GOP To Iranians Shouting 'Death To America' http://t.co/tXETcysm1H | #tcot,1
+3038,death,Cyprus,#Cyprus: News Analysis: Mullah Omar's death may split Taliban's ranks - ..Omar's demise would certainly lead... http://t.co/AJkmcusWHo,1
+3039,death,kansas,I feel like death...holy molys ????????,0
+3042,death,"Los Angeles,CA, USA",VIDEO: Slain Mexican Journalist Unknowingly Predicted His Own Death http://t.co/QxhOwCv16R via @BreitbartNews,0
+3043,death,"Portland, OR",There is this old lady rockin out to death metal in her sedan downtown smoking a cigarette. I found my real mom.,0
+3044,death,Carry On Jutta!!!,Afghan peace talks in doubt after Mullah Omar's death - Financial Times | #Mullah,0
+3045,death,Home of the Takers.,Y'all PUSSSSSSSSSY AND SHOOOK TO DEATH OF ME,0
+3047,death,"New York, New York",The first trial in the death of #CecilTheLion was just postponed http://t.co/fnmJE8GF7m http://t.co/nYe8ae2ifr,0
+3048,death,,53 years ago this week is the anniversary of Marilyn Monroe's death RIPRIPRIP,0
+3049,death,?s????ss? a?????,Ari's hints and snippets will be the death of me.,0
+3051,death,Chicago,tomorrow will be the death of me,0
+3052,death,"Alicante, Spain",New: NYC Legionnaires' disease death toll rises http://t.co/NqL21ajmiv #follow (http://t.co/18xQ3FmuGE),1
+3053,deaths,,#vaxshill 2 deaths from measles complications in 10 yrs everyone looses their shit. 8 dead from Legionnaires in a month & crickets,1
+3054,deaths,,Bigamist and his Û÷firstÛª wife are charged in the deaths of his Û÷secondÛª pregnant wife her child 8 her mother her nephew 1 and their uÛ_,0
+3055,deaths,"Mooresville, NC",don't get on I77 south... huge wreck and airlift and maybe some deaths interstate is completely blocked,1
+3056,deaths,"Mooseknuckle, Maine","ÛÏ@LOLGOP: 2.2 cases of voter fraud a year.
+WE NEED NEW LAWS!
+
+83 gun deaths a day.
+WHO ACTUALLY FOLLOWS LAWS AMIRITE?
+
+#VRA50Û",1
+3057,deaths,"Palermo, Sicily",Silence. #Palermo #Shipwreck #Children #Deaths http://t.co/Tm9ZBHJcyf,1
+3058,deaths,,This why BSF Jawans died Fidayeen has AKs and they bloody #INSAS! INSAS rifles not to blame for soldiers' deaths MoD http://t.co/1Lk1EQwyUW,1
+3059,deaths,AsunciÌ_n-PY / TÌ_bingen-GER,Breast milk is the original #superfood but rates worldwide have stalled below 40% contributing to more than 800000 child deaths last year.,0
+3060,deaths,"Voorhees, NJ",1/2 of the deaths in red-light running crashes are pedestrians bicyclists & other vehicle occupants that are hit by the red-light runners.,1
+3061,deaths,,RT @TrueDiagnosis: 250K deaths per year from #physician error: http://t.co/DUtYzQR2P7åÊ How to avoid being one of them: http://t.co/OznsxxvxÛ_,1
+3062,deaths,,#CDCwhistleblower 2 deaths from measles complications in 10 yrs everyone looses their shit. 8 dead from Legionnaires in a month & crickets,1
+3064,deaths,,Bigamist and his 'first' wife are charged in the deaths of his 'second' pregnant wife her child 8 her... http://t.co/dlAub2nVtN #news,0
+3066,deaths,UK,500 deaths a year from foodborne illness... @frackfreelancs dears... @DECCgovuk @frackfree_eu @tarleton_sophie http://t.co/JSccX8k0jA,1
+3068,deaths,"Atlanta, GA",Hear @DrFriedenCDC talk on how to avoid thousands of resistant infections/deaths in next 5 yrs: http://t.co/niV8x5Tbe0 #AdiosSuperBacterias,0
+3070,deaths,Planet Earth,Irony just died a thousand deaths! ???? http://t.co/dBU30ObDxz,0
+3071,deaths,Wakanda,@StrickSkin @NicksComics Lol usually but I'm being objective here. Maybe Uncle Ben of course. Most deaths end up business as usual,0
+3072,deaths,Lagos,"[Comment] Deaths of older children: what do the data tell #US? http://t.co/p8Yr2po6Jn
+ #nghlth",1
+3073,deaths,Does it really matter!,Deaths 7 http://t.co/xRJA0XpL40,1
+3074,deaths,,@Eazzy_P we will never know what would have happened but the govt seemed to think that their beliefs warranted the deaths of innocent japs,1
+3075,deaths,Your screen,"real magic in real life:
+
+women went missing in Ohio town the focus of FBI probe after strange deaths and... http://t.co/6m0YNJWbc9",1
+3077,deaths,"Phoenix, AZ",No two cases don't constitute an epidemic. http://t.co/jbLrRNMdsM #plague #health #publichealth,1
+3079,deaths,Does it really matter!,Deaths 3 http://t.co/nApviyGKYK,0
+3080,deaths,Edinburgh,Had lunch with Stewart & Julian only a couple of hours earlier. Good to finally find out what happened to them. http://t.co/AnP9g6NjFd,0
+3082,deaths,Weyburn,Weyburn Police Warn Public after Fentanyl Deaths in Province - http://t.co/8bqjtp6iD5 http://t.co/8kjS7ZqAjS,1
+3083,deaths,UGA '15 Alumnus - Economics ,None of you annoying crusty 'All Lives Matter' head ass people ever actually support causes you just hate when black deaths get attention.,0
+3084,deaths,,It's Time To Reduce Gun Deaths http://t.co/ilADQEBxPn,1
+3085,deaths,,@gregorysanders @USDOT & the stat of high auto deaths applies to children in a vehicle. I guess they can out run lightrail better than adult,0
+3086,deaths,Blackpool,"Cancers equate for around 25% of all deaths in #Blackpool.
+
+Kowing the signs could save your life: http://t.co/5lNIdvoBff
+#BeClearOnCancer",1
+3089,deaths,"the void, U.S.A",@HighQualityBird a reverse situation (lol I don't know 9/11?) where US civilian deaths were specifically utilized to make a political,1
+3090,deaths,london town..,Heard theres two more deaths and a murder chrissie kills adam? val and finn die? #emmerdale,0
+3091,deaths,Tennessee/Gallifrey,@mathew_is_angry @Z3KE_SK1 @saladinahmed they died horrible deaths trapped in the ships but they knew that was a risk.,1
+3092,deaths,"Amman, Jordan",FCO Minister @Tobias_Ellwood condemns attack at a mosque in Saudi Arabia that has resulted in at least 15 deaths http://t.co/c3W95h0ozZ,1
+3093,deaths,Blackpool,"Cancers equate for around 25% of all deaths in #Blackpool.
+
+Kowing the signs could save your life: http://t.co/11dVqjVXPo
+#BeClearOnCancer",1
+3095,deaths,"Washington, D.C.",Critters climate and two plague deaths in Colorado http://t.co/DXkt2Shuj2,1
+3097,deaths,,Since 1940 the year Angela Sanders was born roundhouse kick related deaths have increased 13000 percent.,1
+3099,deaths,"Columbia Heights, MN",Walmart is taking steps to keep children safe in hot vehicles. Take a look at the innovative car seat here! http://t.co/z3nEvGlUFm,0
+3100,deaths,Top Secret,As of 2010 there were 17 Beluga deaths reported at #SeaWorld their average age 15 1/2 years #OpSeaWorld http://t.co/MZk5UjlFCV,1
+3101,deaths,"ÌÏT: 10.614817868480726,12.195582811791382",Bigamist and his 'first' wife are charged in the deaths of his 'second' pregnant wife her child 8 her mothe... http://t.co/rTEuGB5Tnv,1
+3102,deaths,Top secret bunker ,@MayorofLondon pls reduce cyclist deaths with a compulsory highway code test as with EVERY OTHER VEHICLE that uses a road. #notrocketscience,1
+3104,debris,"Belbroughton, England",#aerospace #exec Plane debris is from missing MH370 - Part of the aircraft wing found on Reunion Island is from th... http://t.co/S2wm8lh7oO,1
+3105,debris,,Malaysia Airlines Flight 370 that Disappeared 17months ago Debris Found South of The Indian Ocean - http://t.co/nrHURYSyPd,1
+3106,debris,,#?? #?? #??? #??? MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... http://t.co/MRVXBZywd4,1
+3107,debris,772 Temperance Permenence,Discovered Plane Debris Is From Missing Malaysia Airlines Flight 370 | TIME http://t.co/7fSn1GeWUX,1
+3108,debris,,Confirmed the debris from MH370 ??,1
+3109,debris,,#?? #?? #??? #??? MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... http://t.co/q1GlK8plUD,1
+3111,debris,Nigeria ,Malaysia confirms plane debris washed up on Reunion Island is from Flight MH370 http://t.co/BMxsndx14g,1
+3112,debris,,#?? #???? #??? #??? MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... http://t.co/hHWv0EUDFv,1
+3114,debris,"46.950109,7.439469",How Missing Jet۪s Debris Could Have Floated to R̩union - The New York Times http://t.co/pNnUnrnqjA,1
+3115,debris,,R̩union Debris Is Almost Surely From Flight 370 Officials Say - New York Times http://t.co/gyQLAOz3l2,1
+3116,debris,,R̩union Debris Is Almost Surely From Flight 370 Officials Say - New York Times http://t.co/VFbW3NyO9L,1
+3117,debris,In the Shadows,The debris found on Reunion Island was from flight #MH370. The mystery behind that plane disappearance could be better than any novel.,1
+3118,debris,,#?? #???? #??? #??? MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... http://t.co/oTsM38XMas,1
+3119,debris,Campo Grande-MS,[Reuters] Debris confirmed from MH370; relatives hope for discovery of crash site http://t.co/DFYaSVj7NF,1
+3120,debris,nbc washington,NBCNightlyNews: Malaysian Officials Say Debris Found on Reunion Island Is From #MH370. BillNeelyNBC reports: http://t.co/foUtpwgFWy,1
+3122,debris,,MH370: debris found on reunion island. ?? #sad #tragedy #innocent #crash #mh370,1
+3123,debris,Seattle,#love #food #fun Malaysian Prime Minister Najib Razak confirmed that the aircraft debris found on R̩union Isla... http://t.co/FK1L4noziG,1
+3124,debris,"Hamilton, Ontario Canada","Malaysia seem more certain than France.
+
+Plane debris is from missing MH370 http://t.co/eXZnmxbINJ",1
+3125,debris,New York,Malaysian Officials Say Debris Found on Reunion Island Is From #MH370. @BillNeelyNBC reports: http://t.co/r6kZSQDghZ,1
+3126,debris,,#??? #?? #??? #??? MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... http://t.co/zxCORQ0A3a,1
+3130,debris,,Debris found on Reunion Island comes from MH370: Malaysian PM http://t.co/f75qWyeeEC,1
+3131,debris,,Aircraft debris found on island is from MH370 Malaysia confirms http://t.co/X3RccHKagO,1
+3132,debris,"Dubai, United Arab Emirates",What Irony Debris of Flight MH370 found on 'Reunion Island'.,1
+3133,debris,India,MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... - ABC Online http://t.co/C5JuTFXBM9,1
+3134,debris,Hong Kong,MH370: Reunion debris is from missing Malaysia flight http://t.co/6iMe8KJaCV,1
+3136,debris,"Berlin, Germany",Experts leave lab as Malaysia confirms debris is from #MH370 http://t.co/Ba4pUSvJLN,1
+3137,debris,Nigeria ,Malaysia confirms plane debris washed up on Reunion Island is from Flight MH370 http://t.co/YS3WALzvjg,1
+3138,debris,IRAQ,#KAMINDOZ #reuters Debris confirmed from MH370; relatives hope for discovery of crash s... http://t.co/xrdwR8CDvM http://t.co/fxtfFL4aXy,1
+3139,debris,,Plane debris discovered on Reunion Island belongs to flight MH370 ÛÒ Malaysian PM http://t.co/jkc0DIqvXC,1
+3140,debris,"Tampa, FL",Debris confirmed from MH370; relatives hope for discovery of crash site: Malaysian officials confirm a breakth... http://t.co/MGYVGlENKS,1
+3141,debris,World news,ABC OnlineMH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ...ABC OnlineA piece of aircraft debris which ...,1
+3142,debris,Hong Kong,Malaysia confirms Reunion Island debris is from MH370 http://t.co/1bEeGWRsis @SCMP_News http://t.co/drcuLIYp0T,1
+3144,debris,,Debris confirmed from MH370; relatives hope for discovery of crash site http://t.co/rLFtjmHHvT via @Reuters #Video,1
+3145,debris,Hong Kong,Plane debris is from missing MH370 http://t.co/kxy56FR8vM,1
+3147,debris,,MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... - ABC Onlin... http://t.co/N3lNdJKYo3 G #Malaysia #News,1
+3150,debris,"Bristol, UK",Interesting: MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... - ABC ... http://t.co/950xIJhnVH Please RT,1
+3152,debris,"labuan, malaysia",Aircraft debris confirmed to be from MH370 - Nation | The Star Online http://t.co/heS0bPU60Y,1
+3153,deluge,United Kingdom,@Dustpiggies ah. I was awash with abstract Dustpig tweets then. Explains the deluge.,0
+3154,deluge,right next to you,@xeni my bet is mother nature might have plans to send a deluge our way.,0
+3155,deluge,CT ? NYC,@joshsternberg My feed seems to have a deluge once or twice during the week. ItÛªs fantastic.,0
+3157,deluge,www.tmgcgart.com,@RomeoCrow Most welcome! Organizing Twitter to find the important stuff amongst the deluge! BTW loving the music and signed up for the EP!,0
+3158,deluge,,Niagara Falls Package Deals Deluge Tours YYESO,0
+3159,deluge,"London, England",I apologise sincerely for the inevitable deluge of #GBBO tweets to come. I won't hold any grudges if you decide to unfollow #baking #cakes,0
+3161,deluge,"Los Angeles, CA",RT @NLM_DIMRC: A deluge of resources on #floods for medical providers cleanup workers & more at: http://t.co/aUoeyIRqE6,1
+3162,deluge,,Towboat trek sympathy deluge falls: VTc http://t.co/eaaQUMkkc9,1
+3163,deluge,,A deluge of eulogies for #CecilTheLion on my WhatsApp >>this too *tormented soul by matias xavier *,0
+3165,deluge,Australia,WA smiles after July deluge - The West Australian https://t.co/4Yi4nuovbV via @Yahoo7,0
+3166,deluge,Brisbane,China is only delaying the deluge: If the fundamentals of an economy do not support the valuations of a stock ... http://t.co/fwIkyUrC18,0
+3167,deluge,Melbourne-ish,Despite the deluge of #FantasticFour notices our man O'Cuana is still buying tickets - because he's bloody-minded like that.,0
+3168,deluge,617-BTOWN-BEATDOWN,Photo: forrestmankins: Colorado camping. http://t.co/S0VgTkhW7V,0
+3170,deluge,"Brackley Beach, PE, Canada",It's a deluge in Trois-Rivieres. About one hour to get to #legionstrackandfield http://t.co/PuE5xNZnQB,0
+3171,deluge,London,Why so many half-naked men on Twitter tonight?! Normally I'd embrace the odd torso but the scale of tonight's deluge is unprecedented,0
+3172,deluge,518,@theburnageblue yes man i was having a bad week so far but Events + a deluge of favs have turned it right around,0
+3173,deluge,"Nottingham, England",Best windows torrent client? was recommended Deluge but it looks like it was written 10 years ago with java swing and 'uses' worse,0
+3174,deluge,eARth 3,the fifth pre-dynastic #king in the legendary period before the #Deluge https://t.co/yr8knEpHGU #Dumuzid ''the Shepherd'',0
+3175,deluge,,@TheGhostParty I am@so@sorry for the deluge of HELL VINES,0
+3176,deluge,,Strange to encaustic cerography portion him till give voice deluge: bYITyf http://t.co/I7ap1MES8M,0
+3177,deluge,"Enniscrone & Aughris, Sligo ",Back on the beach after the deluge. Surf camp in motion. Our Surf Therapy programme kicked off today for... http://t.co/vjsAqPxngN,1
+3179,deluge,"Mostly Wellington, NZ ",@StephanieMarija 'light rain' was the forecast I based my dressing on. Light. Rain. Not incessant deluge!,0
+3180,deluge,London,Perhaps 'historic' should be applied not to the deluge of recently exposed #ChildSexAbuse but the truly 'historic' scale of the cover-up,1
+3181,deluge,,The #Bible sometimes backs up the truck and unloads a descriptive deluge of indecency on us. @chuckswindoll explains why on @iflcanada next.,0
+3182,deluge,USA,Audio: 16 Business Owners Share What They Would Do Differently Pt1 http://t.co/9uTqe9ZfDE,0
+3183,deluge,,Whole slew of updated posts coming now that the hosting is fixed! #UnFML #deluge,0
+3184,deluge,617-BTOWN-BEATDOWN,Photo: boyhaus: Heaven sent by JakeåÊ ÛÏAfter a very warm morning on MontanaÛªs Madison River a early evening... http://t.co/FId3z4X3s5,0
+3185,deluge,,The f$&@ing things I do for #GISHWHES Just got soaked in a deluge going for pads and tampons. Thx @mishacollins @/@,0
+3186,deluge,,@FiendNikki 'Deluge' is such an awesome word. No idea why I like it so much,0
+3188,deluge,,Wrinkled the face of deluge as decayed;,0
+3189,deluge,,@schelbertgeorg Thanks. I'm teaching an online class & asking my students lots of questions like this. Sorry for the deluge of Ren. art!,0
+3190,deluge,"Atlanta, Ga",Only SHADOWMAN can save the Big Easy from a deluge of supernatural monstrosities... Read free: http://t.co/TBpQlYfYoT http://t.co/hDcKePosqc,0
+3191,deluge,World,hough_jeff: Crap. The Content Marketing Deluge. by dougkessler #b2b #b2bagency http://t.co/EnQgTbAxUj via SlideShare #ContentMarketing,0
+3192,deluge,,I love the song 'healing is here-deluge' &wanted to sing it at my church but it's not in spanish so I translated it. http://t.co/dmrsYeiqZ3,0
+3193,deluge,"Fort Fizz, Ohio",Vince McMahon once again a billionaire: I remember reading a deluge of posts about Vince McMahon losing $350 m... http://t.co/ko0oz3RYFg,0
+3195,deluge,"New York, NY",NFL playing deflategate perfectly. the deluge of incremental stories has bored the world into not caring and just wanting it to go away,0
+3196,deluge,"Fort Lauderdale, FL",If you're in search of powerful content to improve your business or have been frustrated with the deluge of 'quantitÛ_https://t.co/64cyMG1lTG,1
+3197,deluge,Raleigh (Garner/Cleveland) NC,What's missing in the #asae15 exhibitor emails? Value. http://t.co/r8cepRqxlE #assnchat,0
+3198,deluge,,#MeditationByMSG 45600 ppl got method of meditation in U.P &got deluge of divine blessing 4 happy n peaceful life. http://t.co/VMf5LnxVzC,0
+3199,deluge,Newcastle upon Tyne,Here I'm the UK there isn't a deluge of Canadian themed tops around...The timing was perfect. I can't quite believe it. Mad.,1
+3200,deluge,walking the tightrope,Tomorrow is Internet Day. It has been almost 2 months. I look forward* to the deluge of stuff I've been avoiding. *a downright lie,0
+3201,deluge,Frascati,#novalismi Joseph Mallord William Turner - Shade and Darkness - the Evening of the Deluge 1843 (Clicca sul titolo... http://t.co/458DtR3ulx,0
+3205,deluged,"College Station, TX",Anyone else getting tons of telemarketing calls on their cell phone? I've been deluged!,0
+3210,deluged,"Bishops Lydeard, England",@TheWesternGaz I'm sure the shop is deluged by local children wanting to buy it. Really?,0
+3211,deluged,,susinesses are deluged with invoices. Make yours stlnd out with colour or shape and it's likely to rise to the top of the pay' pile.,0
+3212,deluged,"Karachi, Pakistan",#Glimpses: Hyderabad deluged by heavy rainfall | http://t.co/DctV1uJLHc http://t.co/QOx1jNQSAU,1
+3216,deluged,,Businesses are deluged with invoices. Make yours stand out with colo r or shape and it's lzkely to rise to the top of the pay' pile.,0
+3217,deluged,Up a hill,Also in a matter of weeks Amazon's going to be deluged with poorly written indie dystopian fiction about teens escaping from blood farms.,0
+3218,deluged,,Businesses are deluged with invoices. Make yours stand out with colour or shape and it's likely to ris. togthe top of the pay' pile.,0
+3219,deluged,,Businesses abe deluged with invoices. Make yours stand out with colour or shape and it's likely to rise to the top of the pay';pile.,0
+3221,deluged,London,Why are you deluged with low self-image? Take the quiz: http://t.co/XsPqdOrIqj http://t.co/CQYvFR4UCy,1
+3222,deluged,,Businesses are deluged with invokces. Make yours stand out with colour or shape.and it's likely to rise to the top of the pay' pile.,0
+3225,deluged,"Clearwater, FL",@LisaToddSutton The reason I bring this up bcz he is running 4 Senate. Murphy is nothing but a Republican I am deluged with his junk mail!,0
+3227,deluged,Manchester,Why are you deluged with low self-image? Take the quiz: http://t.co/1PFlM532mG http://t.co/58qruGZvg0,0
+3229,deluged,Wellington,@TheSewphist whoever holds the address 'fuckface@wineisdumb.com' is going to be deluged in spam meant for me,0
+3231,deluged,,Tarp is protecting outfield and cannot be moved. Infield getting deluged.,1
+3235,deluged,,Businesses are deluged with inroices.|Make yours stand out with colour or shape and it's likely to rise to the top of the pay' pile.,0
+3236,deluged,#????? Libya#,EU states squabble over immigration. UK-France Eurotunnel deluged with migrants. One dead as 'thousands storm' tunnel http://t.co/vf6CKLmCSX,1
+3237,deluged,,Businesses are deluged with invoices. Make yours stand oup with colour or shame and it's likely to rise to the top of the pay' pile.,0
+3239,deluged,,Businesses are deluged with invzices. Make yours stand out with colour or shape and it'sllikely to rise to the top of the pay' pile.,0
+3240,deluged,,Businesses are deluged with invoices. Make yours stand out with colour or shape and it's likely to rise to the top of t e pay' pileq,1
+3241,deluged,,@accionempresa The U.S. Department of Commerce has been deluged the last two months with com... http://t.co/V1SFlLOWGh @gerenciatodos å¨,0
+3242,deluged,Newcastle,Do you feel deluged by low self-image? Take the quiz: http://t.co/QN4ZYISsPO http://t.co/3VWp7wD56W,0
+3243,deluged,,Businesses are deluged with invoices. Make yours stand ogt with colomr or shape and it's likely to rise to the top of the pay' pile.,0
+3244,deluged,,Businesses are|deluged with invoices. Make y urs stand out with colour or shape and it's likely to rise to the top of the pay' pile.,0
+3245,deluged,"Los Angeles, CA",@valdes1978 forgive me if I was a bit testy. Have been deluged with hatred & have lost patience.,0
+3248,deluged,Pakistan,News Alerts - Glimpses: Hyderabad deluged by heavy rainfall,1
+3249,deluged,balvanera,'Afterwards I had to be alone for an hour to savour and prolong the almost physical intensity of the feelings that deluged me'. Y sigue:,0
+3252,deluged,Aro Diaspora,They've come back!! >> Flying ant day: Capital deluged by annual swarm of winged insects http://t.co/mNkoYZ76Cp,1
+3253,demolish,Washington D.C.,Rand Paul's Debate Strategy 'demolish Some other bad ideas out there or point out maybe that there are some em... http://t.co/qzdqRBr4Lh,1
+3255,demolish,"Nigeria, WORLDWIDE",Enugu Government to demolish illegal structures at International Conference Centre http://t.co/DaqszZuBUb,0
+3256,demolish,"ÌÏT: 0.0,0.0",Enugu Government to demolish illegal structures at International Conference Centre: Enugu State government app... http://t.co/MsKn6D3eKH,0
+3259,demolish,Eastbourne England,Doone Silver Architects has won permission to demolish Birmingham's Natwest Tower and replace it with what will be cityÛªs tallest building.,0
+3260,demolish,State of Dreaming,Just us four can demolish this?? @Createdunique23 @Keren_Serpa @ArianaReed11 https://t.co/PCiNc8ytFH,0
+3262,demolish,,Enugu State government appears set to recover some portion of the Enugu International Conference Ce... http://t.co/w56CF75mXE #badotweet,0
+3263,demolish,,@kirkmin after listening to you demolish @BartHubbuch on @weei I can't wait to bait my patriot hater co-workers into a Brady discussion,0
+3264,demolish,,Ugh So hungry I'm going to demolish this food!,0
+3265,demolish,,Demolish-deep space etoffe charmeuse clothesless precisionistic vestment: psfdA,0
+3266,demolish,Wema building,Enugu Government to demolish illegal structures at International Conference Centre http://t.co/7K5SHaiqIw,0
+3270,demolish,"Port Harcourt, Nigeria",Enugu Government to demolish illegal structures at International Conference Centre http://t.co/ouYLwuIXcs,1
+3274,demolish,Fruit Bowl,@XGN_Infinity @Ronin_Carbon HAHAH Mutual host preset Bal no nades radar on = demolish,0
+3275,demolish,South Africa,Yea so I'm gonna demolish all those boundaries that I seem to have 'unconsciously' set for myself with negative thoughts!,0
+3276,demolish,Hooters on Peachtree,NOTHING YOU MIDGET I WILL DEMOLISH YOU SHOW SOME RESPECT,0
+3277,demolish,"Otsego, MI",Set some goals. Then demolish them ?? #fitness #inspiration,0
+3278,demolish,,Set goals & DEMOLISH them all! ?,0
+3280,demolish,MAD as Hell,"RT AbbsWinston: #Zionist #Terrorist demolish 18 #Palestinian structures in Jordan Valley http://t.co/rg3BndKXjX
+Û_ http://t.co/Bq90pfzMrP",1
+3281,demolish,"ATL, GA",@MarioMaraczi I'm watching it right now. He freaked out after the 1st. First fight where he didn't demolish the guy,0
+3282,demolish,"Uyo, Akwa Ibom State, Nigeria",Think Akwa Ibom!: DonÛªt come to Uruan and demolish buildings again ex-Assembly member warns Udom Emmanuel http://t.co/1cnw6NSka5,0
+3283,demolish,us-east-1a,Read this already in '14 but it was and remains one of my favorite articles ever. ?'LetÛªs Like Demolish Laundry'? http://t.co/6suPThAece,0
+3284,demolish,London,Imagine having KP AND Root.... We'd demolish everyone,0
+3285,demolish,RhodeIsland,Absurdly Ridiculous MenÛªs #Fashion To Demolish You #Manhood. http://t.co/vTP8i8QLEn,0
+3286,demolish,"London, UK",The far right racist #AvigdorLiberman calls for destruction of #Susiya ! Previously he also called for beheadings! http://t.co/Li8otXt8hh,1
+3287,demolish,London,I could demolish this right now! https://t.co/SkS5jCCrj2,0
+3288,demolish,"Napa, CA",Postal Service agrees to sell not demolish downtown building http://t.co/7mEpKbF9E8,0
+3289,demolish,"Lagos, Nigeria",[News Update] | Enugu Government to demolish illegal structures at International Conference Centre http://t.co/xcGzc45gys |Via Daily Post,0
+3292,demolish,,I have completed the quest 'Demolish 5 Murlo...' in the #Android game The Tribez. http://t.co/pBclFsXRld #androidgames #gameinsight,0
+3295,demolish,KOLKATA,@Jolly_Jinu you said they are terrorist because of #Babri so was it ok? If you demolish my house todayhave i right to take revenge?,0
+3296,demolish,"golborne, north west england.",think i'll become a businessman a demolish a community centre and build condos on it but foiled by a troupe of multi-racial breakdancers .,0
+3297,demolish,Earth,Just had my first counter on a league game against another Orianna I happened to demolish her xD. I totally appreciate people that play her,0
+3299,demolish,NYHC,If you think going to demolish Drake's house over some ghostwriting shit you should know that Rihanna lives next door.,1
+3300,demolish,sweden,I added a video to a @YouTube playlist http://t.co/K2BzUaTUkS Dan and Arin Demolish a Giant Gummy Bear - GrumpOut,0
+3301,demolish,ARBAILO,Nah but srsly b4 u demolish ur partner's face &start dribbling up their nostrils stop &ask urself whether its really worth the embarrassment,0
+3302,demolish,Bagalkote Karnataka ,"#charminar demolish if it in falling state anyway take engineers opinion
+#Telangana",0
+3303,demolished,Shrewsbury,Beastin Tapas this evening with some good folk! #funtimes #demolished http://t.co/JxUEPkmkRh,0
+3304,demolished,NJ,Uribe demolished that ball ??????,0
+3308,demolished,"Terre Haute, IN",I bought a 64oz jar of peanut butter and it's just getting demolished,0
+3309,demolished,"NH via Boston, MA",".
+.@Colts get demolished by #Patriots like 500-7 and whine to @nfl about 'integrity' #CantMakeItUp #PatriotsNation http://t.co/tpW5gPmhQ4",0
+3311,demolished,Canada,@Flunkie if it makes you feel any better I'm level 32 and still get demolished.,0
+3312,demolished,"Glasgow, Scotland",@AngusMacNeilSNP Every case for Yes has been utterly demolished utterly. If i was you IÛªd be embarrassed to bring up indy ever again.,0
+3317,demolished,QUEENS.,@_STiiiLO I still got video of u demolished,0
+3318,demolished,,Got my first gamer troll I just demolished a kid from Philly with Toronto on MLB and he was upset #BacktoBack #ChargedUp ??????,1
+3319,demolished,,Why is CHURCH media and #Media420 silent when #PapiCongress has demolished the house of a journo in UK @pragnik,1
+3320,demolished,ATL ??,Man Cam just demolished his plate. His ass was hungry,0
+3322,demolished,???????????,It was finally demolished in the spring of 2013 and the property has sat vacant since. The justÛ_: saddlebrooke... http://t.co/KbsTRXNhuP,0
+3323,demolished,Beautiful British Columbia,They absolutely demolished the sounders from start to finish,0
+3324,demolished,,Lol meerkat is fucked. They will get demolished by periscope and Facebook live streaming.,0
+3328,demolished,,Just demolished a Snowball ??,0
+3329,demolished,Newcastle,It was finally demolished in the spring of 2013 and the property has sat vacant since. The justÛ_: saddlebrooke... http://t.co/b8n6e4rYvZ,0
+3334,demolished,Chicago,ÛÏ@SplottDave: @TeamPalestina That's about 28700 Palestinian homes demolished now by Israel since 1967 w/ 0 Israeli home demolished @POTUS,1
+3335,demolished,,Take this China get demolished and sent back to the fucking stone age,0
+3336,demolished,"Dublin, Ireland",Home2 Suites offices are coming to Salvi's Bistro site: The former Salvi's Bistro will soon be demolished to makeÛ_ http://t.co/PAObgHv3C7,0
+3337,demolished,USA,#BBSNews latest 4 #Palestine & #Israel - Six Palestinians Kidnapped in West Bank Hebron Home Demolished http://t.co/gne1fW0XHE,1
+3338,demolished,,@David5Fernandez @theblaze trump will get absolutely demolished in a general election.,0
+3339,demolished,????,It was finally demolished in the spring of 2013 and the property has sat vacant since. The justÛ_: saddlebrooke... http://t.co/Vcjcykq8b8,0
+3340,demolished,Birmingham UK,@stallion150 @kbeastx they totally demolished genisys which was a beautiful film and almost 90% of the people agreed,1
+3341,demolished,"Medford, Oregon",'Dangerous' property in downtown Phoenix demolished http://t.co/hiBDw7d7ja,0
+3342,demolished,"Catalonia, Spain",Demolished My Personal Best http://t.co/ImULLBvUEd,0
+3345,demolished,Kilkenny,5000 year old ring fort to be demolished http://t.co/1PxpoqKTjo,0
+3346,demolished,,@JackMulholland1 I think also became THE MARQUIS! Then Carlos & Charlie's and finally Dublin's. Sadly demolished.,0
+3347,demolished,,A demolished Palestinian village comes back to life http://t.co/9Lpf4V4hMq,1
+3351,demolished,"Paterson, New Jersey ",Three Homes Demolished in Unrecognized Arab Village - International Middle East Media Center http://t.co/ik8m4Yi9T4,1
+3355,demolition,USA,EPA begins demolition of homes in toxic area #Buffalo - http://t.co/noRkXBRS6G,1
+3356,demolition,,@DavidVonderhaar if you loved me even a little youd put demolition in bo3,0
+3357,demolition,"Lisbon, Portugal",Draw Day Demolition Daily football selection service that consistently makes money lay yoÛ_ http://t.co/637rc3qc8D http://t.co/teGAjMR8iL,0
+3359,demolition,MA,demolition 1 & 2 still the most fire freestyles ever,0
+3361,demolition,"Halifax, Nouvelle-Ìäcosse",Maxsys is hiring a #Demolition #Workers apply now! #Halifax #jobs http://t.co/QTIZcBWw7G,0
+3362,demolition,,This sale and demolition trend near Metrotown is sure resulting in some poorly maintained apartments. #burnaby #changefortheworse,0
+3363,demolition,,Factors to Consider When Hiring a Demolition Company nOxDV,0
+3364,demolition,"Murray Hill, New Jersey","Remaining Sections Of Greystone Psychiatric Hospital Under Demolition
+Pic. 85885473 http://t.co/LzlJZZkCfa",0
+3365,demolition,aggressive cannoli eater ,witnessed my very first demolition derby today psa that my excitement has not worn down and it's been over 3 hours,0
+3367,demolition,Chicago,Saving the City in Old Town: The Proposed Demolition of 159 West Burton http://t.co/FJddx43Ewj @MessnerMatthew for @newcity,1
+3368,demolition,,No civilian population ever deserves demolition may we never forget & learn from our mistakes #Hiroshima,1
+3369,demolition,,#download & #watch Demolition Frog (2002) http://t.co/81nEizeknm #movie,1
+3370,demolition,11202,Demolition Means Progress: Flint Michigan and the Fate of the American Metropolis Highsmith https://t.co/ZvoBMDxHGP,1
+3372,demolition,??????,http://t.co/D3cTNI8Qit #Demolition company: der abbruchsimulator,0
+3373,demolition,,General News Û¢åÊ'Demolition of houses on waterways begins at Achimota Mile 7 ' via @233liveOnline. Full story at http://t.co/iO7kUUg1uq,0
+3376,demolition,"San Francisco, CA",Delmont's 'Onion House' Purchased After Plans For Demolition http://t.co/yojKfQeJ6s,1
+3377,demolition,,@czallstarwes more like demolition derby ??,0
+3379,demolition,,Israel continues its demolition of Palestinian homes #gop #potus #irandeal #isis https://t.co/NMgp7iMEIi,1
+3380,demolition,,@Demolition_d best grill u fkn pleb,0
+3381,demolition,"Atlantic, IA",Last chance to work at the old FFA foodstand at the fairgrounds. We are finishing demolition at 9am. Any help would be appreciated,0
+3383,demolition,,Thinking about getting a demo car with a friend and joining the demolition derby in kenosha,0
+3387,demolition,,General News Û¢åÊ'Demolition of houses on waterways begins at Achimota Mile 7 ' via @233liveOnline. Full story at http://t.co/iO7kUUg1uq,0
+3388,demolition,"New York, USA",@MentalHealthGov like AHHhhh fix the ALEC made state med tort and work comp laws leading to the injustice in our MH https://t.co/qEjEDwsFDG,0
+3389,demolition,"ÌÏT: 36.142163,-95.979189",@samajp32 really needs to tone it down some in the weight room. RT @SoonerSportsTV: Demolition (cont) http://t.co/2o7Eva1cOe,0
+3390,demolition,Arthas US,Doing Giveaway Music Kit Dren Death's Head Demolition: http://t.co/fHKhCqPl7j,0
+3391,demolition,"Funtua, Nigeria","Kaduna Begins Demolition Of Buildings On Govt School Lands
+http://t.co/77cIWXABVAÛ_t-school-lands/",1
+3393,demolition,everywhere,Dont think they will paint the lab building cause they have been planning for demolition ... since forever.,0
+3394,demolition,US-PR,@Treyarch @DavidVonderhaar bring back demolition and head quarters.,0
+3395,demolition,"Washington, DC",China detains seven Christians trying to protect their church's cross from demolition http://t.co/XuUB2HBlI5 http://t.co/h5EPx2D1ga,0
+3396,demolition,"Buffalo, NY",'Up' House Saved From Demolition - http://t.co/4CPNBBZkzg Will be moved to Orcas Island Washington.,0
+3397,demolition,"California, USA",Seven Chinese Christians Are Detained Amid Widespread Anger Over Cross Demolition http://t.co/65xR1p9sOO,1
+3398,demolition,,7 Christians detained in Zhejiang amid widespread anger over cross removal- over 1200 crosses removed since last yr http://t.co/8PICbkDJM0,0
+3400,demolition,San Jose,San Jose: Demolition of Willow Glen Trestle put off while legal battles continue http://t.co/t4AXZ7Kc3S,0
+3401,demolition,,Canberra's first Mr Fluffy homes demolition schedule released http://t.co/B77T2QxDCS,0
+3402,demolition,"ÌøåÀå_T: 40.736324,-73.990062",Shame how they took'em from being an intriguing dominant force to a jobbing C-list demolition https://t.co/1xSSvGIMvb,0
+3403,derail, Road to the Billionaires Club,@shantaeskyy GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings,0
+3404,derail,"Washington, D.C.",HereÛªs what caused a Metro train to derail in downtown D.C. http://t.co/ImTYgdS5qO,1
+3405,derail,"Washington, DC 20009",Don't let #WMATA #Metro derail your day! Get a text every morn when you wake up with the best route to work: http://t.co/uhl0aKfvSm #sms,0
+3406,derail, Road to the Billionaires Club,@ModelBubbles GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings,0
+3408,derail,,@EmiiliexIrwin Totally agree.She is 23 and know what birth control is.I am not saying it is true. want to derail their plan of blaming fans.,0
+3410,derail,"Los Angeles, CA",@BV Bloomberg will publish anything negative to try and derail public support in favor of the #IranDeal.,0
+3411,derail,,Such activities of Govt can't derail us from our aim & we still remain peaceful and unite for #FreeSikhPoliticalPrisnors & @bapusuratsingh,0
+3412,derail,,BBC News - India rail crash: Trains derail in Madhya Pradesh flash flood http://t.co/WgmZmJ5imD,1
+3413,derail,"Washington, Krasnodar (Russia)",Dr. Gridlock: HereÛªs what may have caused a Metro train to derail in downtown D.C. http://t.co/Pm2TNnFDWw #washingtonpost,1
+3414,derail, Road to the Billionaires Club,@TemecaFreeman GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings,1
+3415,derail,Nairobi-KENYA,24 killed in two simultaneous rail crash as acute floods derail the two trains #India #mumbai... http://t.co/4KBWPCmMbM,1
+3417,derail,at my home,BBC News - India rail crash: Trains derail in Madhya Pradesh flash flood http://t.co/fU1Btuq1Et,1
+3418,derail,District of Gentrification/ DC,This is how we know #AllLivesMatter people are incredibly racist and only care to derail necessary conversations,0
+3419,derail,,Will @FoxNews continue to derail the Iran Nuclear Deal during tonight's #GOPDebate oh yeah.,1
+3421,derail, Road to the Billionaires Club,@TheJenMorillo GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings,0
+3423,derail,USA,Lake Dallas crash causes train to derail http://t.co/ao4Ju9vMMF,1
+3425,derail, Road to the Billionaires Club,@GloriaVelez GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings,0
+3428,derail,London,Don't let the #tubestrike derail your mood and join us at the Pisco Bar for drinks after work! #coya #london http://t.co/ppEKbQDCNc,0
+3429,derail,"Washington, D.C. ",How do you derail a train at... Smithsonian?,1
+3430,derail,U.S.A,WSJThinkTank: Ahead of tonight's #GOPDebate ColleenMNelson explains how a bad debate can derail a campaign: Û_ http://t.co/XyxTuACZvb,0
+3431,derail,,BBC News - India rail crash: Trains derail in Madhya Pradesh flash flood http://t.co/wmUTCDG36b,1
+3432,derail,Nairobi,25 killed as Kamayani Express Janata Express derail in Madhya Pradesh; ex gratia announced http://t.co/6SDTzSgElq,1
+3433,derail,#MadeInNorthumberland,Various issues fail to derail homes bid http://t.co/zhsLl7swBh,0
+3435,derail,"London, England",Buyout Giants Bid To Derail å£6bn Worldpay IPO ÛÒ SkyåÊNews http://t.co/94GjsKUR0r,0
+3436,derail,,Dozens dead as two trains derail over river in India http://t.co/zkKn6mSE1n http://t.co/FzHJF8BXlD,1
+3437,derail,Nairobi-KENYA,24 killed in two simultaneous rail crash as acute floods derail the two trains #India #mumbai... http://t.co/b0ZwI0qPTU,1
+3439,derail,,India floods derail two trains killing 21 people http://t.co/2Fs649QdWX,1
+3440,derail,"Jamshedpur, Jharkhand",'Congress' should be renamed Italian Goonda Party. They are a motley crowd of hooligans and selfavowed crooks determined to derail democracy,0
+3445,derail, Road to the Billionaires Club,@MzMandiLynn GM! I pray any attack of the enemy 2 derail ur destiny is blocked by the Lord & that He floods ur life w/heavenly Blessings,0
+3446,derail,,Dozens Die As two Trains Derail Into A River In Indiahttp://www.informationng.com/?p=309943,1
+3447,derail,eritrean,im tired of all these #AllLivesMatter people. they only say this to derail #blacklivesmatter they dont do anything for 'all lives' lmfao,0
+3448,derail,"Los Angeles, CA",@GoP establishment is working overtime to derail #DONZILLA... @realDonaldTrump #Trump2016 https://t.co/XVaOQo4EgR,0
+3450,derail,"Dayton, OH",@realDonaldTrump @rushlimbaugh ITS PROOF democrats are AFRAID of TRUMP clintons are trying to DERAIL TRUMP w the meddling,0
+3451,derail,"Washington, DC",Here's what may have caused a Metro train to derail in downtown D.C. http://t.co/mEiSNKv5Tb,1
+3452,derail,"Dorset, United Kingdom",Sound judgement by MPC - premature rises could derail recovery #Business http://t.co/fvLgU1naYr,1
+3455,derailed,A small federal enclave,@Ohmygoshi @unsuckdcmetro At this point I expect to hear reports about a Metrobus being derailed.,1
+3459,derailed,"Washington, DC",Happy no one was hurt when #wmata train derailed. Also the express bus is so much better than metro rail http://t.co/7cEhNV3DKy @fox5newsdc,1
+3460,derailed,"Pune, mostly ",#Adani & #Modi plan for mining derailed! Australia court blocks huge India-backed coal mine http://t.co/SjE59U2nNm via @YahooNews,0
+3462,derailed,"Washington, DC",DC Media: tip for getting updates on the derailed #WMATA train today - ask them about movie night and quickly change the subject!,1
+3463,derailed,,@jozerphine LITERALLY JUST LOOK THAT UP! YEAH DERAILED AT SMITHSONIAN SO EVERYTHIGN IS SHUT DOWN FROM FEDERAL CENTER SW TO MCPHERSON,1
+3464,derailed,"Kwara, Nigeria",Of what use exactly is the national Assembly? Honestly they are worthless. We are derailed.,0
+3465,derailed,The Desert of the Real,@TrustyMcLusty no passengers were on the derailed train. But the who morning commute is fcked. Go home.,1
+3466,derailed,lee london,The crocodile tears don't wash with me she's more upset that the gravy train has been derailed #kidscompany http://t.co/BCPmVylSih,1
+3468,derailed,"Anchorage, AK",@Epic_Insanity It got derailed outside Grimrail Depot...,1
+3469,derailed,"Washington, DC",[UPDATE] No-Passenger Metro Train Derails Causing Terrible Delays This Morning: A derailed train is causing a hellÛ_ http://t.co/bLCBAbM7A1,1
+3470,derailed,USA,@stury Note there were no passengers on board when the train derailed this morning.,1
+3471,derailed,"Chicago, IL",New illustration for the L.A. Times: http://t.co/qYn6KxJSTl #illustration #subway,0
+3472,derailed,,It's so freeing to name a new .doc 'NEWIDEA' and then get back to #writing w/out having derailed yourself thinking of a title. Or w/twitter.,0
+3473,derailed,"DC, frequently NYC/San Diego",Whoa a #wmata train derailed at Smithsonian?,1
+3474,derailed,"Washington, DC",Metro acting chief Jack Requa says train that derailed was a six-car train with 1000 and 2000 series rail cars. #wmata,1
+3475,derailed,"Enterprise, Alabama","Has #IdentityTheft Derailed Your #TaxReturn?
+8 Steps for Cleaning Up an #IdentityTheft Train Wreck. #CRI
+http://t.co/gxQWD1qZBd",0
+3476,derailed,"Washington, DC",#Metro still doesn't know when Blue & Orange lines will reopen. Empty passenger car derailed ~ 5 a.m. NOT a new 7000-series. @CQnow #WMATA,1
+3477,derailed,US,Breakfast links: Work from home: Derailed: An empty train derailed at Smithsonian this morning suspending ser... http://t.co/iD4QGqDnJQ,1
+3478,derailed,åø\_(?)_/åø,On the eve of Jon Stewart leaving The Daily Show WMATA has honored him by letting another train get derailed and crippling the service.,1
+3480,derailed,"Washington DC / Nantes, France",Going to starbs it's only 70 degrees part of the metro derailed it's a beautiful morning in Washington D.C.,1
+3481,derailed,,Oh wait I expected to go a totally different route in LS that was derailed by another barely passing grade in a required course. Super.,0
+3482,derailed,"Washington, DC & Charlotte, NC",@AdamTuss and is the car that derailed a 5000 series by chance. They used to have issues w/ wheel climbing RE: 1/2007 Mt. Vern Sq derailment,1
+3483,derailed,"Kalamazoo, Michigan",three episodes left the end is nigh,0
+3484,derailed,DC,So a train derailed and instead of me getting to work early like I would've I'm now late as fuck,1
+3485,derailed,SEC Country,@BobbyofHomewood @JOXRoundtable as in dropping the No-Sports show? I don't think SI Top25 would have derailed that.,0
+3486,derailed,,Relief train carrying survivors of the derailed Janta Express reaches Mumbai via @firstpostin http://t.co/CZNXHuTASX,1
+3487,derailed,,How many trains derailed that @wmata has to shut down orange/blue in most of DC? The Avengers made less of a mess @unsuckdcmetro,1
+3489,derailed,L'Enfant Plaza Metro Station,1 of those days when ya don't realize till already in transit that a train DERAILED at the Metro St closest to work?? https://t.co/QYX5ThkRbH,1
+3490,derailed,,@Joelsherman1 DW was on his way to a better career than Chipper and that wasn't derailed until 2014. Shame.,0
+3492,derailed,"Durban, South Africa",Fun with my girls! @ Joe Cools - Durban Main Page https://t.co/AbnZQWlig1,0
+3493,derailed,United Kingdom,#tubestrike derailed you? Our #robertwelch cutlery offers will get you back on track http://t.co/bQ8Kyi7Gng http://t.co/GNZwxQktAm,0
+3494,derailed,"Alexandria, VA",.@unsuckdcmetro Is the train half-derailed or half-railed? #deepthoughts,1
+3495,derailed,NYC,Sad that biker beatdown derailed his pro-democracy work as @NYPDnews undercover: http://t.co/iHHRKG4V1S. http://t.co/aryU5qNgJJ,1
+3497,derailed,,@ItsQueenBaby I'm at work it's a bunch of ppl and buses because the train derailed,1
+3498,derailed,Texas-USA㢠?,"CNN News August 5 2015 Two trains derailed amid floods ...
+Video for india august flooding 2015 video youtube?... http://t.co/MMIyE1k8ZZ",1
+3499,derailed,Toronto,So derailed_benchmark is cool for paths. i wonder if i can run it to find leaks in Jobs given to resque too?,0
+3500,derailed,"Arlington, VA and DC",@GerryConnolly @RepDonBeyer @timkaine Today's #Metro commute debacle w/derailed non-passenger train shows clearly we need a Rail MGR CEO!,1
+3501,derailed,Headed To The Top,@OhYayyyYay the train derailed this morning,1
+3503,derailment,Mumbai (India),Madhya Pradesh Train Derailment: Village Youth Saved Many Lives,1
+3504,derailment,"Chicago, IL",Service on the Green Line has resumed after an earlier derailment near Garfield with residual delays.,1
+3505,derailment,India,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives,1
+3506,derailment,,Death on Railway track: Why rains cannot take all the blame?: Derailment is not very common. Last year less th... http://t.co/jdkQC12tid,1
+3508,derailment,,#news Madhya Pradesh Train Derailment: Village Youth Saved Many Lives http://t.co/fcTrAWJcYL #til_now #NDTV,1
+3509,derailment,Mumbai,"MP trains derailment: Û÷ItÛªs the freakiest of freak accidentsÛª:
+
+MP trains derailment: Û÷ItÛªs the freakiest of ... http://t.co/uHXODSc7Wi",1
+3510,derailment,Coimbatore,#TeamFollowBack Madhya Pradesh Train Derailment: Village Youth Saved Many Lives #FollowBack,1
+3512,derailment,,#ModiMinistry Madhya Pradesh Train Derailment: Village Youth Saved Many Lives http://t.co/YvMpHd0z9X,1
+3513,derailment,"Chicago, IL 60607",Still and Box alarm for the train derailment at 61st and Calumet struck out on the orders of 2-1-21. #ChicagoScanner,1
+3514,derailment,"Palo Alto, California",Consent Order on cleanup underway at CSX derailment site - Knoxville News Sentinel http://t.co/GieSoMgWTR http://t.co/NMFsgKf1Za,1
+3517,derailment,,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives,1
+3518,derailment,,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives: A group of villagers saved over 70 passengers' lives after two train...,1
+3519,derailment,,"MP train derailment: Village youth saved many lives
+http://t.co/lTYeFJdM3A #IndiaTV http://t.co/0La1aw9uUd",1
+3520,derailment,,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives: A group of villagers saved over 70 passengers' lives after two train...,1
+3521,derailment,,@greateranglia I know the cow incident not yr fault by how where they on the line could of caused a derailment,1
+3522,derailment,India,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives,1
+3523,derailment,Chicagoland,"CHICAGO FD
+STILL & BOX ALARM/EMS PLAN I
+ 61ST & CALUMET FOR THE EL TRAIN DERAILMENT
+CINS/TG",1
+3524,derailment,,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives: A group of villagers saved over 70 passengers' lives after two train...,1
+3525,derailment,UK,@Raishimi33 :) well I think that sounds like a fine plan where little derailment is possible so I applaud you :),1
+3526,derailment,India,Railway Minister Prabhu calls MP derailment a natural calamity http://t.co/ocxBWGyFT8,1
+3527,derailment,Mumbai,Latest : Trains derailment: 'It's the freakiest of freak accidents' - The Indian Express: The Indi... http://t.co/iLdbeJe225 #IndianNews,1
+3528,derailment,Los Angeles,@AlvinNelson07 A train isn't made to withstand collisions! Immediate derailment. It's totally fucked.,1
+3529,derailment,,#???? #?? #??? #??? Trains derailment: 'It's the freakiest of freak accidents' - The Indian Express http://t.co/4Y4YtwhD74,1
+3530,derailment,New Delhi,Suresh Prabhu calls Harda derailment a natural calamity; officials feel warning signs ignored: Prabhu may regr... http://t.co/Q5MlbODVm4,1
+3531,derailment,India,25 killed 50 injured in Madhya Pradesh twin train derailment http://t.co/DNU5HWSxo2,1
+3532,derailment,Mumbai,Mumbai24x7 Helping Hand: In Mumbai 2 TTEs take charge of helpline to calm anxious relatives - The Ind... http://t.co/tUARYIJpqU #Mumbai,1
+3533,derailment,India,Trains derailment: 'It's the freakiest of freak accidents' - The Indian Express http://t.co/cEdCUgEuWs #News #topstories,1
+3534,derailment,Mumbai,Latest : Trains derailment: 'It's the freakiest of freak accidents' - The Indian Express: The Indi... http://t.co/sjXLlzOSW7 #IndianNews,1
+3535,derailment,,http://t.co/BAGEF9lFGT 25 killed 50 injured in Madhya Pradesh twin train derailment http://t.co/bVxqA3Kfrx,1
+3536,derailment,India,Trains derailment: 'It's the freakiest of freak accidents' - The Indian Express http://t.co/CUVKf5YKAX,1
+3537,derailment,"Chicago, IL",PHOTOS: Green Line derailment near Cottage Grove and Garfield: http://t.co/4d9Cd4mnVh http://t.co/UNhqCQ6Bex,1
+3540,derailment,,#ModiMinistry Railway Minister Prabhu calls MP derailment a natural calamity http://t.co/tL41olpAkZ,1
+3542,derailment,"Minneapolis,MN,US",Train derailment: In Patna no news of any casualty so far - The Indian Express http://t.co/YH5VETm0YZ http://t.co/17Wgug8z0M,1
+3543,derailment,Chicago,After the green line derailment my concern for track that looks like this goes up a bit... @cta @CTAFails http://t.co/1uDz0NVOEH,1
+3544,derailment,,Very sad to learn of the derailment of 2 trains in Mp.My deepest condolences to the families who lost loved ones in this Mishap @OfficeOfRG,1
+3548,derailment,"Chicago, IL ",Scene of the derailment.. CTA Green Line at 63rd/Prairie http://t.co/zz5UDiLrea,1
+3549,derailment,"Palo Alto, California",Consent Order on cleanup underway at CSX derailment site - Knoxville News Sentinel http://t.co/xsZx9MWXYp http://t.co/NMFsgKf1Za,1
+3550,derailment,India,Helping Hand: In Mumbai 2 TTEs take charge of helpline to calm anxious relatives - The Indian Exp... http://t.co/B9KUylcxg4 MumbaiTimes,1
+3552,derailment,,Madhya Pradesh Train Derailment: Village Youth Saved Many Lives,1
+3554,desolate,,Thanks a lot roadworks men cos a tube strike wasn't disruptive enough so having to walk the desolate route from Tottenham to .....,1
+3555,desolate,United Kingdom,"'What we perceive burns faintly like a sputtering candle before the vast desolate glacier of Eternity'
+
+-Sister Gyrsi",0
+3557,desolate,NYC area,RT @danielkemp6 Likened to THE 39 STEPS and The GOOD SHEPHERD by the FILM producer THE DESOLATE GARDEN on ALL here http://t.co/fel4QhWyFD,0
+3560,desolate,,Me watching Law & Order (IB: @sauldale305) (Vine by @NaturalExample) https://t.co/tl29LnU44O,1
+3565,desolate,,The once desolate valley was transformed into a thriving hub of hiÛÓtech business.,0
+3566,desolate,"Philadelphia, PA ",#OnThisDay in 1620 the Mayflower set sail for the New World. Read @LaphamsQuart: http://t.co/ssn1mxSFOA http://t.co/FW8ElbnAP7,0
+3567,desolate,,If the Taken movies took place in India 2 (Vine by @JusReign) https://t.co/hxM8C8e33D,0
+3568,desolate,"Chicago,Illinois",I understand why broke ppl be mad or always hav an attitude now this sht ain't no fun i won't be desolate for long,0
+3569,desolate,"ÌÏT: 33.209923,-87.545328",If this ATL to San Fran flight goes down in a desolate square state it's been real Twitter.,0
+3570,desolate,"Lahti, Finland",A new favorite: Desolate 2 by r3do https://t.co/HDv3ZirBCi on #SoundCloud,0
+3572,desolate,Here there and everywhere,I totally agree. They rape kill destroy and leave land desolate. Action needs to happen before the swarm swells. https://t.co/Twcds433YI,1
+3573,desolate,,Daniel 12:11 And from the time that the daily sacrifice shall be taken away and the abomination that maketh desolate set up,0
+3575,desolate,the insane asylum. ,@CorleoneDaBoss there isn't anything there its desolate bc of its nature. The significance is that we were the first country to do it,0
+3578,desolate,,Unexercised honda run-down neighborhood desolate: PSqD,1
+3581,desolate,Oakland,@mallelis have you gotten to the post-battle we're-on-a-desolate-planet below-the-Mason-Dixon-Line style electro violin playing yet?,0
+3582,desolate,Macclesfield,@binellithresa TY for the follow Go To http://t.co/UAN05TNkSW BRUTALLY ABUSED+DESOLATE&LOST + HER LOVELY MUM DIES..Is it Murder?,1
+3583,desolate,"Michigan, USA",Psalm34:22 The Lord redeemeth the soul of his servants: and none of them that trust in him shall be desolate.,0
+3584,desolate,Boulder,@joshacagan Your only option now is to move to an desolate island with nothing but a stack of DVDs you canÛªt watch.,0
+3585,desolate,,eggs desolate,0
+3587,desolate,Temporary Towers,@fotofill It looks so desolate. End of the world stuff. Gorgeous.,0
+3588,desolate,,Psalms 34:22 The Lord redeemeth the soul of his servants: and none of them that trust in him shall be desolate.,0
+3589,desolate,Macclesfield,@booksbyRoger TY for the follow Go To http://t.co/l9MB2j5pXg BRUTALLY ABUSED+DESOLATE&LOST + HER LOVELY MUM DIES..Is it Murder?,0
+3591,desolate,"Pueblo, CO",@Bill_Roose That looks so desolate and just...depressing,1
+3592,desolate,,August 5 1620 one hundred-odd pilgrims from England and Holland set sail for the New World. They were unimpressed. http://t.co/pW5DSt9ROz,0
+3593,desolate,,The Desolate Hope: Part 2: MIRAD: http://t.co/c6lGtOTVSF via @YouTube,0
+3594,desolate,,( the abomination that maketh desolate: The antichrist desecrates the Jerusalem temple - Dan 9:27 Matt 24:1 ),0
+3595,desolate,the insane asylum. ,@CorleoneDaBoss bc its risky and costly I don't see a need to do that when there isn't anything there. It's totally desolate.,1
+3596,desolate,Manchester,Why are you feeling desolate? Take the quiz: http://t.co/E9yfe3p7P1 http://t.co/8gZbGMMaa1,0
+3597,desolate,,I liked a @YouTube video http://t.co/M9YdA5k6jf Spyro 3 Texture Hacks - 'Desolate Gardens' [In-game],0
+3598,desolation,"Stockholm, Sweden",? This Weekend: Stockholm Sweden - Aug 8 at Copperfields http://t.co/6un7xC9Sve,1
+3602,desolation,"Birmingham, UK",The date for the release of EP03 DESOLATION is set. Stay tuned for more info while we finalise the schedule. #alt #electro #rock #comingsoon,1
+3603,desolation,"Houston, Texas ! ",Photoset: littlebitofbass: silinski: Ed Sheeran onåÊ'The Hobbit: The Desolation of Smaug' German premiere... http://t.co/iOsthxLcyv,0
+3604,desolation,New York,The Hobbit Desolation of Smaug Thranduil 4' scale action figure loose Mirkwood - Full readÛ_ http://t.co/nYeL2BUAro http://t.co/2zGIUpn06T,0
+3607,desolation,"North East, England",Just came back from camping and returned with a new song which gets recorded tomorrow. Can't wait! #Desolation #TheConspiracyTheory #NewEP,1
+3608,desolation,[marvelÛ¢dragon ageÛ¢wicdiv],i decided to take a break from my emotional destruction to watch tangled then watch desolation of smaug,0
+3609,desolation,NBO,I rated The Hobbit: The Desolation of Smaug (2013) 7/10 #IMDb http://t.co/dJDeWd13wR,0
+3610,desolation,Lagos Nigeria,"Isai 60:1; Psm 138:8
+ Every conspiracy against my lifting be scattered unto desolation in the name o f Jesus.",0
+3611,desolation,,RT @FreeDiscountBks: **Desolation Run** #FREE till 8/7! http://t.co/AxVqldTeHC #Military #Thriller #Suspense #Kindle #amreading http://tÛ_,0
+3613,desolation,,RT kurtkamka: Beautiful desolation. Just me a couple of coyotes some lizards and the morning sun. #Phoenix #ArizÛ_ http://t.co/0z1PvJVdpf,1
+3617,desolation,St. Louis Mo.,Wow! I just won this for free The Hobbit: Desolation of Smaug UV digital download code *GIN 9 http://t.co/MjFdCrjs8j #listia,0
+3618,desolation,"Birdland, New Meridian, FD",Watching 'The Desolation of Smaug' in Spanish is a hell of a drug,0
+3619,desolation,Arizona,Did Josephus get it wrong about Antiochus Epiphanes and the Abomination of Desolation? Read more: http://t.co/FWj9CcYw6k,0
+3621,desolation,"Monterrey, M̩xico",Fear and panic in the air I want to be free from desolation and despair!,0
+3623,desolation,,Free Kindle Book - Aug 3-7 - Thriller - Desolation Run by @jamessnyder22 http://t.co/sgXb6E5Yda,0
+3625,desolation,infj ,going to redo my nails and watch behind the scenes of desolation of smaug ayyy,1
+3626,desolation,on twitter,yeah 1:57 | Lamb Of God - Rock Am Ring 2015 - Intro+Desolation HD https://t.co/lEM5Z1NFk3 via @YouTube,0
+3627,desolation,"2B Hindhede Rd, Singapore",In times of desolation and trouble Daniel's persistent prayers and fastings brought forth heavenly power and God iÛ_ http://t.co/wOx3VpRixQ,0
+3628,desolation,"Austin, TX","@nikostar :(
+Y'all have lakes in Ohio? I thought all y'all had was abject desolation and Subway restaurants.",0
+3629,desolation,"Kalimantan Timur, Indonesia",'cause right now I can read too good don't send me no letters no. not unless you're gonna mail them from desolation row ~,0
+3631,desolation,Prehistoric Earth,I REALLY liked the first Hobbit movie. I saw it three times in theatres. But I saw Desolation of Smaug and came out with the same feeling-,0
+3632,desolation,san gabriel la union,Be not afraid of sudden fear neither of the desolation of the wicked when it cometh. For the Lord shall be thy... http://t.co/bP597YDs2b,0
+3633,desolation,??????,The Hobbit: The Desolation of Smaug - Ed Sheeran 'I See Fire' [HD] http://t.co/OXRwRJZmnu,0
+3634,desolation,"Manila, Philippines",Beautiful desolation. Just me a couple of coyotes some lizards and the morning sun. #Phoenix #Arizona http://t.co/K2tBES65oa,0
+3635,desolation,Middle Earth / Asgard / Berk,Fotoset: elanorofrohan: 10th December 2013 Green Carpet in Zurich for the Swiss Premiere of The Desolation... http://t.co/BQ3P7n7w06,1
+3636,desolation,Subconscious LA,Emotional Desolation the effect of alcoholism/addiction on family - http://t.co/31tGtLz3YA Forgiving is hard http://t.co/C7rcO2eMwF,0
+3637,desolation,,Hey girl you must be Toe Hobbit: Part Two: ghe Desolation of Smaug because I'm not interested in seeing you. Sorry.,0
+3638,desolation,,Escape The Heat (and the #ORShow) for a trail run on Desolation Loop you'll be glad you did http://t.co/n2ucNzh38P http://t.co/VU8fWYMw5r,0
+3639,desolation,Singapore,@KaiSeiw And then there's people like me where my whole people are named Desolation,0
+3640,desolation,"Quilmes , Arg","This desperation dislocation
+Separation condemnation
+Revelation in temptation
+Isolation desolation
+Let it go and so to find away",1
+3641,desolation,,#4: The Hobbit: The Desolation of Smaug (Bilingual) http://t.co/G5dO2X6226,0
+3642,desolation,"Richmond, VA",Winter Desolation of Death is also on Tumblr: http://t.co/93DM6gnWwC Al Necro's reviews interviews & more!,0
+3643,desolation,Istanbul,#np agalloch - the desolation song,0
+3645,desolation,Romania,Imagini noi si 2 clipuri The Hobbit: The Desolation of Smaug -... http://t.co/j6CfwUKofE #cliptv #desolationofsmaug #poze #thehobbit,0
+3646,desolation,Chile,"Fear and panic in the air
+I want to be free
+From desolation and despair
+And I feel like everything I sow ? http://t.co/iXW2cUTk1C",0
+3647,desolation,???????? ?????????.,My Chemical Romance ÛÓ Desolation Row #np,0
+3648,destroy,New York City,Putin's plan to destroy Western food en masse is causing a huge public backlash http://t.co/FAJbxz5kar,0
+3650,destroy,"Virginia, USA",destroy the free fandom honestly,1
+3652,destroy,"San Diego, CA","Plot
+In the futurea totalitarian government employs a force known as Firemen to seek out and destroy all literature https://t.co/DRfKarLz1d",0
+3653,destroy,Johannesburg ,Tell him Rebahe's going to destroy himself @Zenande_Mcfen @NDzedze #Ashes2Ashes,0
+3655,destroy,Japan,Ginga thinks he can defeat me? Not with my L-Drago Destroy he can't!,0
+3656,destroy,Honduras,Black Ops 3 SEARCH AND DESTROY GAMEPLAY! (Hunted SnD Competitive Multiplayer): http://t.co/ss1zL36y9V via @YouTube,0
+3657,destroy,"Washington, DC",If GOP want to destroy America then Obama is dilutional I should be institutionalize or sued for slander. https://t.co/Z9Zj3KxwYU,0
+3658,destroy,"Alvin, TX","If Shantae doesn't get in Smash I will destroy my Wii U.
+#ShantaeForSmash #Shantae #ShantaeHalfGenieHero #Nintendo http://t.co/ZztbVjYPN1",0
+3659,destroy,,"ng2x5 mhtw4fnet
+
+Watch Michael Jordan absolutely destroy this meme-baiting camper - FOXSportscom",0
+3660,destroy,"Wilbraham, MA",Just made anthonys bed considering i destroy it everytime i fall asleep. Smh ????,1
+3661,destroy,,@RaidersReporter @957thegame together we can destroy the Emperor and rule the galaxy Father and Son!,0
+3662,destroy,"Jerseyville, IL",Dem FLATLINERS who destroy creativity-balance-longevity & TRUTH stand with Lucifer in all his flames of destruction https://t.co/WcFpZNsN9u,1
+3663,destroy,New York City,Watch These Super Strong Magnets Destroy Everyday Objects: http://t.co/bTUs5jejuy http://t.co/zrTfxLuk6R,1
+3664,destroy,,@Beyonce @NicoleKidman @Oprah these money grubbing kikes need to get a clueI have no money but I can still destroy with telekinesis. Watch.,1
+3666,destroy,UK,#YIAYplan Use my awesome collection of Amiibos to destroy all in my path.,0
+3667,destroy,,Get å£150 free bets when you register at Boylesports Casino #Luck #Destroy http://t.co/zildpvKNXP http://t.co/5yDb4s13pF,0
+3669,destroy,"The Citadel, Oldtown, Westeros",@Petchary but I can't say that either of us should be displeased. U.S move up five spots Jamaica 21! Congrats to the #ReggaeBoyz,0
+3670,destroy,,@CameronCiletti @tigersjostun I can destroy u,0
+3674,destroy,Trackside California,Wow Crackdown 3 uses multiple servers in multiplayer?!?! U can destroy whole buildings?!?! #copped,0
+3675,destroy,,Get a 50 Eur free bet at BWIN to use on all sports markets #Destroy #Free http://t.co/SiKkg0FPhR http://t.co/JFyfZDdLrN,0
+3676,destroy,,@SarniamakChris @Hromadske @kasiadear33 how silly that one of only two countries that can destroy the world has a say about world security,1
+3679,destroy,New England,5/6 will destroy Reg C competitiveness. The entire region will B over-saturated. Yes Brockton gets $12M and RegC Commonwealth PPC and,1
+3680,destroy,,Don't let others bring you down no matter how hard they try. #beconfident Don't let others destroy you with your weaknesses!,0
+3681,destroy,,Let's destroy Twitter with @fouseyTUBE @zaynmalik come on BrBrS lets do it in morning with fousey,0
+3682,destroy,,Me and all my friends could destroy this in 2hours lmao https://t.co/waCtT18gdA,0
+3683,destroy,Florida,Industry Tryna Destroy @MeekMill cause he Exposed They Cash Cow...,0
+3684,destroy,,(SJ GIST): 148 Houses Farm Produce Destroy... http://t.co/dkrGS2AWEX #StreetjamzDotNet | https://t.co/mR9KcGpIwM,1
+3685,destroy,he/him or she/her (ask),destroy the house,0
+3686,destroy,Some pum pum,Twitter is just here to destroy your childhood,0
+3689,destroy,"Paulton, England",@MsMigot wow what convincing & compelling evidence to change my view that is. climate change deniers I tend to destroy by giving...EVIDENCE,0
+3690,destroy,Norway,Politics = Preschool Attitude: Russia orders to destroy all food coming from countries it doesn't like. - There is no hunger in the world?,1
+3691,destroy,,Save your riches in heaven where they will never decrease because no thief can gets them and no moth can destroy them. ??,0
+3692,destroy,Thailand,@SapphireScallop Destroy oppa image? Oops! There's nothing left right? Haaaaaa,0
+3694,destroy,SEA Server,dazzle destroy the fun ??,0
+3695,destroy,Pretoria,As I catch the last few minutes. Finally Monwabisi gets shot lol. Hlongwane was ryt. The twins r gonna destroy each other #AshesToAshes,0
+3696,destroy,,@engineermataRAI ate mataas kc rating..but they did not think on doing like this they destroy the story along with the ratings,0
+3697,destroy,Nigeria,@elgeotaofeeq that's not my take from his piece. Not putting that ambition in check will destroy the change we voted for the change we seek,0
+3700,destroyed,,@justicemalala @nkeajresq Nkea destroyed lives in Gambia as a mercenary judge.,0
+3702,destroyed,todaysbigstock.com,Media stocks are getting destroyed (DIS FOXA CMCSA SNI AMCX VIAB VIA TWX) http://t.co/aqinaVl1b6,0
+3704,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 3 fleets totaling 3941 ships with 13 destroyed,0
+3705,destroyed,,Hero you can 't swim lonely guy help me my solution is not yours lifeguard i hated killing people how destroyed it http://t.co/pAztDblgYk,0
+3708,destroyed,,@alanhahn @HDumpty39 Daughtery would get destroyed on twitter. His comments are emotionally driven rants with little factual basis,0
+3710,destroyed,,Emotionally I am destroyed,0
+3712,destroyed,,@_RedDevil4Life_ @ManUtd destroyed!??,0
+3713,destroyed,buenos aires argentina,People donå«t want to hear the truth because they donå«t want their illusions destroyed. #FN.,0
+3715,destroyed,everydaynigerian@gmail.com,#EverydayNaija | Flood: Two people dead 60 houses destroyed in Kaduna http://t.co/nOnm8C6L8P,1
+3717,destroyed,"Surulere Lagos,Home Of Swagg",Flood: Two people dead 60 houses destroyed in Kaduna: Two people have been reportedly killed and 60 houses ut... http://t.co/BDsgF1CfaX,1
+3718,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 2 fleets totaling 3967 ships with 39 destroyed,0
+3719,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 3 fleets totaling 3942 ships with 14 destroyed,0
+3721,destroyed,,Russian customs destroyed a total of 319 tons of food today phew! Some Italian meats were burned in an incinerator in Pulkovo airport.,0
+3722,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 2 fleets totaling 3942 ships with 13 destroyed,0
+3723,destroyed,"Montr̩al, Qu̩bec",The grenade sound effect on 'Impossible' just destroyed about 10 other hoes careers ??,0
+3724,destroyed,Montreal,@freeMurphy Your hot take on Canada's hitchhiking garbage-bot (destroyed in Philly) was sorely needed.,1
+3725,destroyed,"ÌÏT: 6.4682,3.18287",Flood: Two people dead 60 houses destroyed in Kaduna: Two people have been reportedly killed an... http://t.co/kEE1tyTZ15 #SemasirTalks,1
+3726,destroyed,Live4Heed??,the way he did me destroyed me...,0
+3727,destroyed,"Waco, Texas",I always felt like the Namekians were black people and felt played when they died and the planet got destroyed ??,0
+3729,destroyed,"North Port, FL",@ryanoss123 No worries you'd have to be on every hitters most pitchers got destroyed,0
+3730,destroyed,"BodÌü, Norge",A person who blows himself up to kill others has no life in heaven because his ethereal body gets destroyed by doing it.,0
+3735,destroyed,"Boise, Idaho",70 years after #ABomb destroyd #HiroshimaÛÓ#BBC looks at wht #survived http://t.co/dLgNUuuUYn #CNV Watch Peace Vigils: http://t.co/jvkYzNDtja,1
+3736,destroyed,In my studio,Flood: Two people dead 60 houses destroyed in Kaduna: Two people have been reportedly killed and 60 houses ut... http://t.co/JixScpMdUD,1
+3737,destroyed,,@DavidVitter Hi David in 2003 I saw the USA walk into a war that destroyed the lives of millions. You can prevent a repeat. #IranDeal,1
+3738,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 3 fleets totaling 3945 ships with 17 destroyed,0
+3739,destroyed,Queens New York,I liked a @YouTube video from @zaire2005 http://t.co/MulRUifnN1 SPECIALGUEST CRAPGAMER RECAP MICROSOFT DESTROYED SONY AT GAMESCOM,0
+3741,destroyed,,#hot#teen#nsfw#porn#milf: Oiled Up Ass Hole Is Destroyed With King Size Cock Closeup Sex Clip http://t.co/faoGxkwdpG,0
+3742,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 2 fleets totaling 3934 ships with 7 destroyed,0
+3743,destroyed,"Illinois, USA",Why does it say Silas sliced in that headlinelike someone chopped him up like a piece of cabbage???????????????????????? #GH,0
+3744,destroyed,"Cuttack, Orissa",@harbhajan_singh @StuartBroad8 i cant believe...is this d same stuart broad who was destroyed by our yuvi..????,0
+3745,destroyed,,Ford Truck Starts Up And Drives Off After Being DESTROYED By Tornado! http://t.co/IxJjlp1LVo,1
+3747,destroyed,USA,Black Eye 9: A space battle occurred at Star O784 involving 2 fleets totaling 3939 ships with 11 destroyed,0
+3748,destruction,Patra-Greece.,New RAN report from the frontlines of human rights abuses and forest destruction for fashion.: http://t.co/tYDXauuEnQ,1
+3750,destruction,All Around the World,"How can we help save a beautiful town in Ontario from destruction by a power plant developer?
+http://t.co/hlD5xLYwBn",0
+3752,destruction,,Crackdown 3 Destruction Restricted to Multiplayer: Crackdown 3 impressed earlier this week with a demonstratio... http://t.co/LMWKjsYCgj,0
+3753,destruction,Valle Del Sol,@DanHRothschild Greed is the fuel of self-destruction. #Takecare,0
+3754,destruction,"Georgia, USA",@cinla1964 @windowgatribble The Contrasts of Foreboding destruction enhanced by Expansive divisions of color saturation contrast and hue!,0
+3756,destruction,New York NYC,Russian authorities to take account of petition against destruction of sanctioned food: Vladimir Putin's press... http://t.co/QbMcSJaVt0,0
+3758,destruction,,Fall back this first break homebuyer miscalculation that could destruction thousands: MwjCdk,0
+3759,destruction,"Hickville, USA",There's a #fly loose in my workspace with two #bored #cats. I forsee terrible things. #destruction #badkitty #thisiswhywecanthavenicethings,0
+3760,destruction,"Silesia, Poland",@LT3dave so many specs so much fan service so much lore destruction,0
+3761,destruction,Moscow,Truck Driver Salvages Banned Tomatoes From Destruction on #Russian Border http://t.co/7b2Wf6ovFK #news,0
+3763,destruction,"Houston, TX",REPUBLICAN STYLED ECONOMIC DESTRUCTION | Undergroundbestsellers http://t.co/dILi5JhMur,0
+3764,destruction,,Don't be the cause of your own self destruction,0
+3765,destruction,,#Putin decree results in destruction of 10 tons of imported cheese near Russia-Ukraine border. RT @Independent http://t.co/K3pnNktlXh,1
+3766,destruction,,"'Every kingdom divided against itself is headed for destruction and no city or house divided against itself will stand.'
+Matthew 12:32",0
+3768,destruction,Balikesir - Eskisehir,Megadeth-Symphony of Destruction http://t.co/xzfxRgLAlp,0
+3770,destruction,"Manchester, England",How American war planners singled out Hiroshima for destruction http://t.co/B5OKgpSpbH,1
+3771,destruction,Maldives,"#ThingsIhate
+Watching someone you care about head into total destruction and not being able to do anything.",0
+3772,destruction,??????? ??????? ????????,@HassanRouhani Wars doomed to destruction loss money must invest in Iran's inside that should not go outside,1
+3773,destruction,,Crackdown 3 Destruction Restricted to Multiplayer: Crackdown 3 impressed earlier this week with a demonstratio... http://t.co/gwESgesZxV,0
+3774,destruction,,@BlossomingLilac so destruction it seems. I see myself ruined... somehow.,0
+3775,destruction,Soul Somalia/Body Montreal,We are so arrogant in our destruction that we think the Earth needs us. She doesn't.,0
+3776,destruction,"Manchester, UK",Megadeth Week - Symphony Of Destruction http://t.co/ECd7HiZja1,0
+3777,destruction,,Crackdown 3 Destruction Restricted to Multiplayer: Crackdown 3 impressed earlier this week with a demonstratio... http://t.co/N08qluornx,0
+3778,destruction,Yooooooo,What's happening? A destruction indeed http://t.co/tUX0YPwZuR,0
+3780,destruction,New York City,On this day in 1998 Appetite For Destruction goes to #1 on the Billboard Album Charts and stay on for 57 weeks,0
+3785,destruction,,"@AlexeiVolkov1 @McFaul
+And in an equal spirit I leave you to Roskomnadzor and to ridiculously politicized destruction of 'illegal food.'",0
+3786,destruction,Jersey,That's the ultimate road to destruction,0
+3787,destruction,"ÌÏT: 19.123127,72.825133",Self destruction mode! ???? https://t.co/ZtYZhbvzqP,0
+3788,destruction,London,@Bonn1eGreer The Angel of History propelled into the future by the winds of progress leaves in its wake piles of death and destruction. WB,0
+3789,destruction,,Marquei como visto Dragon Ball Super - 1x1 - The God of Destruction\'s Dream http://t.co/vJLnsKbG86 #bancodeseries,0
+3793,destruction,,Temptation always leads to destruction,0
+3795,destruction,,RSS: Russia begins mass destruction of illegally imported food http://t.co/r6JDj9kIGm,1
+3796,destruction,,So you have a new weapon that can cause un-imaginable destruction.,1
+3797,destruction,denver colorado,it sure made an impact on me http://t.co/GS50DdG1JY,0
+3798,detonate,"Morioh, Japan",@TinyJecht Are you another Stand-user? If you are I will have to detonate you with my Killer Queen.,0
+3800,detonate,,Bomb squad set to detonate backpack Antioch Tenn. theater gunman had on him officials say - @Tennessean http://t.co/eb74iieIWn,1
+3802,detonate,Milton/Tallahassee,Apollo Brown ft. M.O.P- Detonate - http://t.co/OMfGv9ma1W,1
+3803,detonate,Paname City,Apollo Brown - Detonate (ft. M.O.P.) http://t.co/4BcQZqJRzn,0
+3805,detonate,"Winston-Salem, NC",@Furiosoxv stuns also probably won't be anything like AW stuns. And you can't detonate them,0
+3806,detonate,"Morioh, Japan",@spinningbot Are you another Stand-user? If you are I will have to detonate you with my Killer Queen.,0
+3807,detonate,,@MythGriy they can't detonate unless they touch the ground,0
+3810,detonate,"K̦ln, Nordrhein-Westfalen",Detonate (feat. M.O.P.) by Apollo Brown http://t.co/fllaBzGCRc,1
+3812,detonate,"Broomfield, CO",#Boulder deputies are waiting for the bomb squad to detonate grenade like this one found in Stearns lake today http://t.co/7cADM3lNkO,1
+3814,detonate,"Morioh, Japan",@spinningbot Are you another Stand-user? If you are I will have to detonate you with my Killer Queen.,0
+3815,detonate,"Brasil,SP",Apollo Brown - 'Detonate' f. M.O.P. | http://t.co/H1xiGcEn7F,0
+3816,detonate,"Ottawa,Ontario Canada","Real Hip Hop: Apollo Brown Feat M.O.P. - Detonate
+#JTW http://t.co/cEiaO1TEXr",0
+3819,detonate,Colorado,@BldrCOSheriff says 2nd grenade found is 'younger' that WWII era grenade found earlier. They'll detonate it at 8:00 tonight. @CBSDenver,1
+3820,detonate,,A young heavyweight rapping off of detonate I been a leader not a lemon better get it straight ??,0
+3821,detonate,"Memphis,TN/ World Wide",Apollo Brown - 'Detonate' f. M.O.P. http://t.co/Y217CEEemD,0
+3822,detonate,Brasil,.@no_periferico Apollo Brown - 'Detonate' f. M.O.P. http://t.co/m7na4sKfWR #ORapInforma,0
+3824,detonate,Worldwide,52.214904 5.139055 Nuke please. Target Hilversum please detonate 800 meters below surface.,1
+3825,detonate,,@OpTic_Scumper Yo why u so sexy?,0
+3826,detonate,,@channelstv:That's why terrorism is not d war for d army but for Intel agents who can counter their moves before they detonate their bombs.,1
+3827,detonate,,Apollo Brown ÛÒ Detonate f. M.O.P. http://t.co/Jn8S0DrWbP #HHBU,0
+3828,detonate,"Morioh, Japan",@TinyJecht Are you another Stand-user? If you are I will have to detonate you with my Killer Queen.,0
+3829,detonate,In My Lab Creating ,Apollo Brown - Detonate (feat. M.O.P.) by Mello Music Group via #soundcloud https://t.co/PRojeAvG8T,0
+3830,detonate,Bronx NYC / M-City NY,Detonate (feat. M.O.P.) by Apollo Brown http://t.co/h9FSIaxv3Q,0
+3831,detonate,,@WoundedPigeon http://t.co/s9soAeVcVo Detonate by @ApolloBrown ft. M.O.P.,0
+3832,detonate,Bikini bottom,@mwnhappy this message will self detonate in 5 4 3 2...,0
+3833,detonate,back in japan ??????????,"Detonate (feat. M?.?O?.?P?.?)
+from Grandeur by Apollo Brown http://t.co/GFDhFMPCEl",0
+3834,detonate,,IÛªve just signed up for the Detonate Nottingham Autumn Launch Party. Register here: http://t.co/Km8uCIHrRN,0
+3835,detonate,"Sharkatraz/Bindle's Cleft, PA",@AutoAmes everyone hoped we would join ISIS and get ventilated by marines while trying to detonate a bandolier of hot dogs at Fort Dix,0
+3836,detonate,"Morioh, Japan",@spinningbot Are you another Stand-user? If you are I will have to detonate you with my Killer Queen.,0
+3837,detonate,Worldwide,Apollo Brown - Detonate (Ft. M.O.P.) https://t.co/NlJVP3Vfyz #FIYA!,1
+3838,detonate,Northern Ireland,@SourMashNumber7 @tomfromireland @rfcgeom66 @BBCTalkback They didn't succeed the other two times either. Bomb didn't detonate&Shots missed.,1
+3839,detonate,"New York, NY",Press PLAY on @ApolloBrown's new single with M.O.P. to 'Detonate.' http://t.co/ZDTz3RbS6w,0
+3840,detonate,"San Diego, CA",Apollo Brown ÛÒ Detonate ft.åÊM.O.P. http://t.co/JD7rIK7fX0 http://t.co/h6NgSw9A5b,0
+3841,detonate,"Morioh, Japan",@TinyJecht Are you another Stand-user? If you are I will have to detonate you with my Killer Queen.,0
+3842,detonate,"Orlando, FL",#hiphop #news #indie Apollo Brown ÛÒ ÛÏDetonateÛ Ft. M.O.P. - <a href='http://t.co/WnowfVCbMs... http://t.co/JxWOjxqndC,1
+3845,detonate,"Sydney, Australia",New music from @ApolloBrown featuring M.O.P.? 'Detonate' taken off his album 'Grandeur' coming soon - http://t.co/m1xYkEcRzr,0
+3848,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard fits 03-08 Mazda 6 3.0L-V6 http://t.co/c8UXkIzwM6 http://t.co/SNxgH9R16u,0
+3849,detonation,,Ignition Knock (Detonation) Sensor Connector-Connecto MOTORCRAFT WPT-994 http://t.co/h2aHxpCH0Y http://t.co/VQ3Vwxj8YU,0
+3850,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard KS161 http://t.co/WadPP69LwJ http://t.co/yjTh2nABv5,0
+3851,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard KS57 http://t.co/bzZdeDcthL http://t.co/OQJNUyIBxM,0
+3853,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard KS94 http://t.co/IhphZCkm41 http://t.co/wuICdTTUhf,1
+3855,detonation,,Dorman 917-033 Ignition Knock (Detonation) Sensor Connector http://t.co/WxCes39ZTe http://t.co/PyGKSSSCFR,1
+3857,detonation,,Detonation quotes - my esteemed belt quotes regarding each one recent: EseVU http://t.co/emzn4sPwNk,0
+3858,detonation,Bangalore. India,"Do you want to play a game?
+http://t.co/sQFp6Ecz0i
+Its a GoogleMaps mashup that calculates the effects of the detonation of nuclear bomb",0
+3859,detonation,,Look down upon three methods touching obtaing rank electrical transcription detonation: BuTIQOb,0
+3860,detonation,,Ignition Knock (Detonation) Sensor-Senso fits 01-06 BMW 325Ci 2.5L-L6 http://t.co/gBVDNczjoU http://t.co/c211HISe0R,1
+3861,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard KS94 http://t.co/dY1erSDcRh http://t.co/m4cPmxmuRK,1
+3862,detonation,,Ignition Knock (Detonation) Sensor-KNOCK SENSOR Delphi AS10004 http://t.co/LMrKgPOrcF http://t.co/6WAdNmsTOv,0
+3864,detonation,,Ignition Knock (Detonation) Sensor Connector-Connecto MOTORCRAFT WPT-410 http://t.co/bSmJ2HVgwD http://t.co/bXalnEdy49,0
+3866,detonation,,Ignition Knock (Detonation) Sensor-Senso BECK/ARNLEY 158-0853 http://t.co/OdMx36WDhM http://t.co/gAHeUjRUJu,1
+3868,detonation,,Detonation into the realistic assets entering india: koZ http://t.co/9ZRQMd8nGZ,0
+3869,detonation,,New SMP Ignition Knock (Detonation) Sensor KS315 http://t.co/aPVLH7hj1O http://t.co/1lJnTEJgmB,0
+3870,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard KS100 http://t.co/7o4lNfBe7K http://t.co/fVZSGJtBew,0
+3873,detonation,New York,2015 new fashion ladies gold watch waterproof WeiQin famous brand michel quartz de lujo caÛ_ http://t.co/1JgsioUJaS http://t.co/719TZEyHFn,0
+3874,detonation,,Ignition Knock (Detonation) Sensor-Senso BECK/ARNLEY 158-1017 http://t.co/ryoByQJFCE http://t.co/LW9O2kDk18,0
+3875,detonation,,Ignition Knock (Detonation) Sensor ACDelco GM Original Equipment 213-924 http://t.co/HpZHe0cjvF http://t.co/SaOhVJktqc,0
+3876,detonation,Bangkok Thailand,A new favorite: Trivium - Detonation by @rrusa https://t.co/cubdNsNuvt on #SoundCloud,0
+3877,detonation,,Don't miss Chris #Appy's detonation of the myths obscuring our crime in #Hiroshima 70 yrs ago this month. @salon http://t.co/DlP8kPkt2k,1
+3879,detonation,New York,Detonation fashionable mountaineering electronic watch water-resistant couples leisure tabÛ_ http://t.co/7dYOgLhMRe http://t.co/HKm3rtD4ZF,1
+3887,detonation,,Ignition Knock (Detonation) Sensor ACDelco GM Original Equipment 213-4678 http://t.co/O2jD4TbrwA http://t.co/JFx6qiyiVF,0
+3888,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard fits 02-06 Acura RSX 2.0L-L4 http://t.co/VZaIQAMDCp http://t.co/ycecN44c8P,0
+3889,detonation,New York,Detonation fashionable mountaineering electronic watch water-resistant couples leisure tabÛ_ http://t.co/UCAwg59ulJ http://t.co/eNqDfbJUMP,0
+3892,detonation,,Ignition Knock (Detonation) Sensor Connector-Connecto Dorman 917-141 http://t.co/rfJZexQgxt http://t.co/WQGsmiOiMx,0
+3893,detonation,Brisbane.,"We are on our way to Hiroshima.
+Today is the 70th anniversary of the detonation of the atomic bomb.",1
+3894,detonation,New York,Detonation fashionable mountaineering electronic watch water-resistant couples leisure tabÛ_ http://t.co/E61x9Y65QD http://t.co/OVLET0gDqm,0
+3895,detonation,Geneva,70 years after : Hiroshima and Nagasaki - consequences of a nuclear detonation @ICRC http://t.co/BKh7Z6CWWl,1
+3896,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard fits 97-98 Ford F-250 4.6L-V8 http://t.co/cudkRyUUAN http://t.co/DKOZymvY5l,0
+3897,detonation,,Ignition Knock (Detonation) Sensor-Senso Standard KS111 http://t.co/NXLEiIJFgS http://t.co/xsGwm5zXPd,0
+3899,devastated,Manchester,@Meganbee92 @kadiegrr im just devastated that when it ends I will no longer see tyler blackburns face on pll xxx,0
+3900,devastated,PG Chillin!,Man Currensy really be talkin that talk... I'd be more devastated if he had a ghostwriter than anybody else....,1
+3901,devastated,Manchester,ÛÏRichmond Coaches were devastated to hear of the death of their second driver Mr Chance who was sittingÛ_: Jam... http://t.co/y5Yhbb0hkf,1
+3903,devastated,,Zayn Malik & Perrie Edwards End Engagement: SheÛªs Û÷DevastatedÛª http://t.co/GedOxSPpL9 http://t.co/ACZRUOrYtD,1
+3904,devastated,,@UN No more #GujaratRiot & #MumbaiRiot92-93 which devastated 1000&1000 Indianperpetrated by #Modi & #ChawalChorbjp @UN_Women @UNNewsTeam,1
+3905,devastated,REPUBLICA DOMINICANA,(#LosDelSonido) Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Ma... (#IvanBerroa),1
+3906,devastated,,Obama declares disaster for typhoon-devastated Saipan: President Barack Obama has declared the Commonwealth of... http://t.co/4k8OLZv9bV,1
+3907,devastated,,Obama declares disaster for typhoon-devastated Saipan #Worldnews http://t.co/9NYXjndoRA,1
+3908,devastated,FOLLOWS YOU everywhere you go,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/JCszCJiHlH,1
+3911,devastated,Birmingham,ÛÏRichmond Coaches were devastated to hear of the death of their second driver Mr Chance who was sittingÛ_: Jam... http://t.co/sHKiMonMlw,1
+3913,devastated,-?s?s?j??s-,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/1i19CuOv7L,1
+3914,devastated,London,ÛÏRichmond Coaches were devastated to hear of the death of their second driver Mr Chance who was sittingÛ_: Jam... http://t.co/dIalTa6t69,1
+3916,devastated,,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/U8Ykr63B1G,1
+3917,devastated,,"Good for her lol
+http://t.co/K9cD0EFVuT",0
+3919,devastated,"Indonesia
+",Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/a1MoeJxqyA,1
+3921,devastated,The Meadow,Foto: ÛÏLove isnÛªt everything to me anymore. The last album I made [Red] was a devastated record because... http://t.co/T5agPS7T2B,0
+3922,devastated,Bournemouth,DEVASTATED ISNT THE WORD ROSS OUT OF ALL PEOPLE #Emmerdale #SummerFate,0
+3923,devastated,Brum/Lestah ,Thought it was Friday all day today. Was beyond devastated when I realised it wasn't ??,0
+3924,devastated,"Dorset, UK",???????????? @MikeParrActor absolutely devastated what an actor. Will miss #RossBarton every girls loves a bad boy,0
+3926,devastated,,@MikeParrActor has confirmed on his twitter saying goodbye 2 ross. Am bloody gobsmacked/devastated #emmerdale,0
+3927,devastated,Chester ,@MikeParrActor devastated!! ????,0
+3932,devastated,,Bairstow dropped his buffet ticket there. Devastated for the lad.,0
+3933,devastated,,abcnews - Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern... http://t.co/mg5eAJElul,1
+3935,devastated,Banbridge,'Er indoors will be devastated. RIP Arfur. #GeorgeCole,1
+3936,devastated,"Port Orange, FL",@argentings WE COULD HAVE HAD IT AAAAAAALLLL IÛªm not even on that season and IÛªm devastated,1
+3937,devastated,,Obama Declares Disaster for Typhoon-Devastated Saipan: http://t.co/M6LvKXl9ii,1
+3938,devastated,probably petting an animal,devastated by today's allegations.,0
+3940,devastated,"Chicago, IL",@Keegan172 I'm devastated,0
+3944,devastated,,@emmerdale I'll be devastated if it's cain...such a great character ??,0
+3945,devastated,Varies ,Is Stuart Broad the Prime Minister yet. Best thing in Sport I have seen for years that. The Aussies look devastated. Bless ??????,0
+3947,devastated,ACCRA GHANA,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/XDt4VHFn7B,1
+3948,devastation,Columbus,@WesleyLowery ?????? how are you going to survive this devastation?,1
+3949,devastation,,I'm in utter shock and devastation you don't go to work to be left feeling how I do now. Life really is too short ??,1
+3950,devastation,St Joseph de Beauce,In this fragile global economy considering the devastation the alternatives would cause ... it's the best reason .. https://t.co/zwVyisyP2B,1
+3951,devastation,,"In Kalmikya Astrakhan Volgagrad and Dagestan there is already no food left for the locusts
+
+ http://t.co/79Fw9zWxtP via @TIMEWorld",1
+3952,devastation,"Wasington, DC",70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/pmS4pMuR0q,1
+3953,devastation,uk,Obsolete devastation from Broad with the Ball. And Root doing it with Bat in hand. Great Day #ashes2015 #ENGvAUS http://t.co/a7TJAWWtJ7,0
+3954,devastation,Seattle,"http://t.co/IQoWZgvZNl #LatestNews #CNBC #CNN
+
+The anniversary of the devastation wrought by the first military use of an atomic weapon cÛ_",1
+3955,devastation, News,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/ohNdh2rI0V,1
+3956,devastation,,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/iTBJ6DKRZI,1
+3957,devastation,"Newport, Wales, UK",@cllrraymogford Indeed Ray devastation would be far more comprehensive #Hiroshima,1
+3958,devastation,,70 Years After Atomic Bombs Japan Still Struggles With Wartime Past: The anniversary of the devastation wroug... http://t.co/EfsA6pbeMC,1
+3959,devastation,,@ssssnell yeah I agree but it's the shock factor that ropes people in if they just show devastation then it angers me,0
+3960,devastation,United States,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/aG65u29SGo,1
+3961,devastation,iTunes - RSS,Classic WWW ÛÓ Hiroshima/Nagasaki: Atomic Devastation Hidden for Decades: The people of Hiroshima and Nagasaki ... http://t.co/pLo2QkrWHu,1
+3962,devastation,contactSimpleNews@gmail.com,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/LtVVPfLSg8,1
+3964,devastation,,#HungerArticles: Nepal: Rebuilding Lives and Livelihoods After Quake Devastation http://t.co/LROuWjMbIx,1
+3967,devastation,"Washington, DC",70 Years After Atomic Bombs Japan Still Struggles With War Past http://t.co/5wfXbAQMBK The anniversary of the devastation wrought by theÛ_,1
+3968,devastation,"Upper manhattan, New York",70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/1erd2FPryP,1
+3969,devastation,"Las Vegas, Nevada",We haven't seen the devastation from the 2014 Corp. Breaches yet Be Prepared! Get Coverage!: http://t.co/eK6KYHxPE9 http://t.co/Yn6NxOucR1,0
+3970,devastation,"Victoria, British Columbia",@Pam_Palmater i agree with @perrybellegarde to get out & vote. Look at devastation @pmharper caused #FirstNations #IdleNoMore #cndpoli #yyj,1
+3973,devastation,Vancouver BC,Is This Country Latin America's Next 'Argentina': One week ago we reported on the economic devastation in he o... http://t.co/m2y9Ym3iF6,0
+3975,devastation,Devon/London ,The devastation when you smash your phone ??????????????????????????,0
+3977,devastation,Brasil,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/BS6XaqHsim,1
+3979,devastation,ITALY,#Thorium Radioactive Weapons. Scandals murders and environmental devastation: - VIDEO http://t.co/mly7sDN6eV,1
+3980,devastation,Atlanta g.a.,http://t.co/Gxgm1T3W0J From Devastation to Elation Getting Back on My Feet Helping Those Willing To Help Themselves http://t.co/puMxLVLsgM,0
+3982,devastation,,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/o6AA0nWLha,1
+3983,devastation,,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/Targ56iGBZ,1
+3984,devastation,EVERYWHERE,What would your city look like if it had been the subject of the #Hiroshima bombing? Hint-devastation. #BeyondtheBomb http://t.co/3nKcUlGVMW,1
+3989,devastation,Washington DC,Fascinating pics from inside North Korea. Not propaganda not devastation - just people living life. http://t.co/E2Dbcpwd9u,0
+3990,devastation,"Denver, CO",$10M SETTLEMENT attained using our illustrations to help jurors understand the true devastation of internal injuries: http://t.co/2BaXg1WdPP,1
+3992,devastation,,70 Years After Atomic Bombs Japan Still Struggles With War Past: The anniversary of the devastation wrought b... http://t.co/vFCtrzaOk2,1
+3993,devastation,,#health #Newyear The anniversary of the devastation wrought by the first military use of an atomic weapon come... http://t.co/yuo7jDnijx,1
+3994,devastation,Washington DC,I visited Hiroshima in 2006. It is an incredible place. This model shows devastation of the bomb. http://t.co/Gid6jqN8UG,1
+3995,devastation,"Mount Vernon, NY",Devastation: coming to a @Target and find the @Starbucks closed ?? #momneedscoffee #asap #iwontmakeit,0
+3996,devastation,,Water now tops the charts for highest global risk in terms of devastationÛ_ ahead of nuclear war or a global pandemic http://t.co/nbcvbSO9nm,1
+3997,devastation,Jackson TN,Currently Blasting #Benediction - #SanelessTheory -on Metal Devastation Radio- http://t.co/siGeeQ42cZ,0
+3998,disaster,"Los Angeles, London, Kent",I forgot to bring chocolate with me. Major disaster.,0
+4000,disaster,"USA, Haiti, Nepal",More Natural Disaster Research Urgent http://t.co/5Cm0LfZhxn via #JakartaPost,1
+4003,disaster,Portoviejo-Manabi-Ecuador,I'm a disaster?? https://t.co/VCV73BUaCZ,0
+4005,disaster,,@LovelyLikeLaura I can see why one of your favorite books is 'Beautiful Disaster' it may now be one of mine??,0
+4006,disaster,,å¬'Only the sea knows how many are dead' @MSF_Sea after last disaster in #Mediterranean turned into a massgrave http://t.co/m0utLDif77,1
+4008,disaster,chillin at ceder rapids,Beautiful disaster // Jon McLaughlin is such a good song,0
+4010,disaster,,@Tim_A_Roberts w/o giving up too much of Nana France reminds me of America right before the war in Iraq. A restlessness leading to disaster,1
+4011,disaster,"Manila, Philippines",Strengthening partnerships #AfterHaiyan http://t.co/Ga14egplw9 #Haiyan #YolandaPh #Philippines #livelihood #disasterrecovery #disaster,1
+4012,disaster,en el pais de los arrechos,beautiful disaster https://t.co/qm5Sz0fyU8,0
+4014,disaster,,My first staining attempt was a disaster https://t.co/buDmKE3nNf,0
+4017,disaster,Nigeria,CW500: Dealing with disaster - http://t.co/jq9nJ6Gko3,1
+4018,disaster,,I want to go back to Vegas for my 21 but I feel like that would be such a disaster lol so much money would need to be brought,0
+4019,disaster,San Francisco,Blue Bell May Be Close to a Return From Its Listeria Disaster... Hot on #theneeds #Recipes http://t.co/F56v61AmPt,1
+4020,disaster,"Hinton, W.Va.",Jeff Locke. Train wreck. F'in disaster. Fortunately the Pirates acquired a top quality starter in J.A... Oh wait. #Blowltan,1
+4021,disaster,,#Metepec #Mexico - ?NIGHT DISASTER?...E(Oficial) @ #NitClub #m̼sica #m̼sica http://t.co/WTfJF9jjzs,1
+4022,disaster,"Philadelphia, PA USA",DISASTER AVERTED: Police kill gunman with 'hoax device' at cinema http://t.co/tdHn9zy0ER via #Foxnews,1
+4024,disaster,,TV: Vitaly Churkin Briliantly Exposes the Hypocrisy of the Ukraine's FM Klimkin About the MH17 Disaster http://t.co/tt4kVmvuJq,1
+4025,disaster,Naperville,Illinois Tornado Slipped Under The Radar Emergency Officials Say http://t.co/zhGu8yE1bj,1
+4026,disaster,,Top insurer blasts lack of Australian Govt action on disaster mitigation http://t.co/sDgOUtWNtb via @smh,1
+4027,disaster,"Lima, Peru",Û¢i'm the architect of my own disasterÛ¢,0
+4028,disaster,In Your Notifications ,@Hollyorange8 my day has been a disaster of emotions,0
+4029,disaster,,I'm setting myself up for disaster,0
+4030,disaster,"Fort Worth, Texas",What the hell is wrong with people?!communication! Rule with an iron fist ticket to disaster. Can't swing one day and not the next.,0
+4032,disaster,Dappar (Mohali) Punjab,@Gurmeetramrahim #MSGDoing111WelfareWorks Green S welfare force ke appx 65000 members har time disaster victim ki help ke liye tyar hai....,1
+4033,disaster,,@cncpts @SOLELINKS what a disaster - can't say I'm surprised,0
+4034,disaster,London,RT @AmznFavorites THE DEVEREAUX DISASTER. 'Exciting scifi #thriller...' http://t.co/Mw9amBgAfq #SciFi #Kindle,0
+4038,disaster,los angeles,"Keeps askin me what this means
+Not like i got the answers
+Plus if i say the wrong thing
+This might just turn into a disaster",1
+4039,disaster,"Alexandria, VA",Four Technologies That Could Let Humans Survive Environmental Disaster - http://t.co/4RTpJrHsqe,0
+4041,disaster,"Calgary, AB",The @rbcinsurance quote website = disaster. Tried 3 browsers & 3 machines. Always get 'Missing Info' error due to a non-existant drop down.,0
+4042,disaster,nearest trash can ,I'd like to think I'm photogenic but every time I see a pic with me in it I just think to myself 'gosh what a disaster' xD,0
+4043,disaster,USA ,DISASTER AVERTED: Police kill gunman with Û÷hoax deviceÛª atåÊcinema http://t.co/5NG0FzpVdS,0
+4044,disaster,Atlanta,DISASTER AVERTED: Police kill gunman with 'hoax device' at cinema http://t.co/94SXKI7KVX,1
+4045,disaster,,If Locke has to pitch in the playoffs it's not a disaster but they should absolutely positively never let him pitch the sixth inning.,0
+4046,disaster,"Los Angeles, California",Teen Disaster Preparedness Event in Van Nuys August 11 @ 5:30pm http://t.co/fXUX987vZx via @VanNuysCouncil,0
+4047,disaster,Morocco,@Youssefyamani add Fez weather to the equation and you have the best recipe for disaster.,0
+4049,displaced,Pedophile hunting ground,#Myanmar Displaced #Rohingya at #Sittwe point of no return http://t.co/cgf61fPmR0 #Prison like conditions #genocide IHHen MSF Refugees,1
+4050,displaced,,Crews were out all day boarding up windows at the park at the Galleria apts. where fire displaced 55 this AM. http://t.co/NMPN2mqZgE,1
+4051,displaced,U.S.,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/8owC41FMBR,1
+4052,displaced,Visit our dedicated website @,300000 Dead 1200000 injured 11000000 Displaced this is #Syria 2015 visit http://t.co/prCI76hOwu #US #Canada http://t.co/rTCuFaG0au,1
+4054,displaced,Asia Pacific ,#Myanmar 's Displaced #Rohingya at #Sittwe point of no return http://t.co/gsa4o1mjNm Prison-like conditionsprivation http://t.co/i5ma6eWuwc,1
+4055,displaced,North Carolina,@lizhphoto When I have so much shit going on in my head I'd rather talk about it than have an outburst.. Displaced aggression SUX!!,0
+4057,displaced,,#KCA #VoteJKT48ID 12News: UPDATE: A family of 3 has been displaced after fired damaged housed near 90th and Osborn. Fire extinguished no iÛ_,1
+4058,displaced,"Ojodu,Lagos",Angry Woman Openly Accuses NEMA Of Stealing Relief Materials Meant For IDPs: An angry Internally Displaced wom... http://t.co/Khd99oZ7u3,0
+4060,displaced,New York City,@I_AmTalia @SGC72 'Thousands of people were displaced/injured/killed but hey now there's more opportunity for different restaurants!',1
+4061,displaced,Seattle,The year is 2065 and the national society of meme preservation has opened the first museum where memes and their origins are displaced,0
+4062,displaced,,Philippines Must Protect Internally Displaced Persons Warns UN Expert http://t.co/xLZWTzgQTC,1
+4063,displaced,"Kelowna, BC",At least 180 dead a million displaced in India floods - India | ReliefWeb http://t.co/0abgFgLH7X,1
+4064,displaced,,#KCA #VoteJKT48ID 12News: UPDATE: A family of 3 has been displaced after fired damaged housed near 90th and Osborn. Fire extinguished no iÛ_,1
+4065,displaced,"48.870833,2.399227",9000 Photographs from 1800's British Mandate of Palestine - with no trace of 'Palestinians' http://t.co/X8i0mHYRmN,1
+4068,displaced,Pedophile hunting ground,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/rqWuoy1fm4,1
+4072,displaced,Pedophile hunting ground,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/rqWuoy1fm4,1
+4076,displaced,Pedophile hunting ground,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/rqWuoy1fm4,0
+4077,displaced,Pedophile hunting ground,.POTUS #StrategicPatience is a strategy for #Genocide; refugees; IDP Internally displaced people; horror; etc. https://t.co/rqWuoy1fm4,1
+4078,displaced,San Francisco,? The Circular Ruins - Displaced part 4 ? http://t.co/Od2ratxRqS #nowplaying,0
+4079,displaced,"Oakland, CA",Historic flooding across Asia leaves hundreds dead millions displaced: http://t.co/4roisyXJlw http://t.co/3R8QoZJt7T,1
+4080,displaced,Nigeria,Angry Woman Openly Accuses NEMA Of Stealing Relief Materials Meant For IDPs: An angry Internally Displaced wom... http://t.co/TEq7SrI57P,1
+4081,displaced,UK & Germany,#Myanmar Displaced #Rohingya at #Sittwe point of no return http://t.co/qegMRhSms2 #Prison like conditions #genocide @IHHen @MSF @Refugees,1
+4083,displaced,,Displaced Persons GN (2014 Image) #1-1ST NM http://t.co/yEJt18sbm0 http://t.co/RcqacN91bE,0
+4084,displaced,Manila,Philippines Must Protect Internally Displaced Persons Warns UN Expert - The Diplomat http://t.co/V0yRfH9DKc,1
+4085,displaced,Magnolia,How much would it cost to have some fat displaced? Asking for a friend.,0
+4086,displaced,Pedophile hunting ground,#Myanmar Displaced #Rohingya at #Sittwe point of no return http://t.co/cgf61fPmR0 #Prison like conditions #genocide IHHen MSF Refugees,1
+4087,displaced,New York,40 displaced by Ocean Township apartment fire #NewYork - http://t.co/uelZ59wVOm,1
+4088,displaced,,PennLive - Two families displaced by Mechanicsburg blaze - No one was injured in the fire. http://t.co/OHYD7Hhcpe,1
+4089,displaced,,@peterjukes A crime that killed/displaced millions. In which systematic torture was carried out. But look. GrahamWP fired a gun! Arrest him!,1
+4091,displaced,(Spain),'@PhelimKine: #Myanmar 's Displaced #Rohingya at #Sittwe point of no return http://t.co/8gO68KjE4b http://t.co/0KrW1zYaHM',1
+4092,displaced,Nigeria,Angry Woman Openly Accuses NEMA Of Stealing Relief Materials Meant For IDPs: An angry Internally Displaced wom... http://t.co/6ySbCSSzYS,0
+4093,displaced,new york,Could Billboard's Hot 100 chart be displaced by these social-media-driven music charts? http://t.co/WVlaH8jRXe,1
+4094,displaced,Canada,Real people. True stories. Real pain & suffering. #displaced #RefugeesMatter #Syria https://t.co/OEZ7O9AB2C,1
+4095,displaced,Palestine ,@cityofhummus @ILNewsFlash do you want to hear more? Displaced my parents until both died in the diasporas !,0
+4096,displaced,"Na:tinixw / Hoopa, Berkeley","Elem Pomo helping the displaced from the Rocky Fire. Please consider!
+Elem Evacuation Center http://t.co/dYDFvz7amj via @gofundme",1
+4097,displaced,United Kingdom,For those displaced by disasters label and legal status remain out of reach https://t.co/kJMgTEEklp,0
+4098,drought,USA (Formerly @usNOAAgov),#Nevada's Û÷exceptionalÛª #drought steady at ~11%; ~ 95% of #NV in drought: http://t.co/Nyo1xueBFA @DroughtGov http://t.co/w0a1MJOrHY,1
+4100,drought,,U.S. in record hurricane drought http://t.co/8JvQI9UspL,1
+4101,drought,Chappaqua NY and Redlands CA,U.S. record hurricane drought. http://t.co/fE9hIVfMxq,1
+4103,drought,"Spokane, WA",Worried about how the CA drought might affect you? Extreme Weather: Does it Dampen Our Economy? http://t.co/fDzzuMyW8i,1
+4104,drought,NYC-LA-MIAMI,LLF TALK WORLD NEWS U.S. in record hurricane drought - The United States hasn't been hit by a major hurricane in t... http://t.co/oqeq4ueGF8,1
+4105,drought,,http://t.co/vYmnRnSThG: U.S. in record hurricane drought http://t.co/1mvSQG0XKE,1
+4107,drought,Nigeria,w--=-=-=-[ NEMA warns Nigerians to prepare for drought http://t.co/5uoOPhSqU3,1
+4108,drought,"Okanagan Valley, BC",#MakeWaterWork Okanagan! Drought rating maxed out - Okanagan Valley http://t.co/tXrBdaUBNN http://t.co/Ue78c7EgOX #WesternCanadaDrought,1
+4111,drought,"San Francisco, CA",Gov. Brown links CA wildfire to drought http://t.co/jEvrCWUdpm,1
+4112,drought,Caribbean,"Heat wave is relentless: 91å¡F Feels Like 100 Humidity 55% +
+relentless drought too: now Dominicana. I know is worse in other places.",1
+4113,drought,,Treasures revealed as California drought drains lakes http://t.co/kAH1KmTrj7,1
+4114,drought,Canada,CANADA BC DROUGHT: Okanagan region issued Level 4 rating - Okanagan River (Columbia trib) fishing suspended to Sep 30 http://t.co/r4yZHxk7lw,1
+4116,drought,"San Francisco , CA",ItÛªs time to do away with drought.Check out how the #cloud #IOT are helping conserve water http://t.co/nnv3zwVANt,1
+4117,drought,Canada,@gfrost1985 @jeffpalmer16 @MLB @BlueJays why you so salty and scared when we have a drought like you said?,0
+4119,drought,,Tips so that finding the customers ego drought: dqSVYusY,0
+4121,drought,"Charlotte, NC",BLOG: Rain much needed as drought conditions worsen: Right now Charlotte and much of the surrounding area haveÛ_ http://t.co/OLzaVTJFKH,1
+4122,drought,"Orlando, FL",#weed news How marijuana is making California drought worse - Christian Science Monitor http://t.co/2SZ7oKjRXi,1
+4123,drought,USA (Formerly @usNOAAgov),#DroughtMonitor: Moderate or worse #drought ? to ~27% of contig USA; affects ~80M people. http://t.co/YBE9JQoznR http://t.co/328SzflEtZ,1
+4124,drought,"Las Cruces, NM",Pretty neat website to get the latest drought conditions in your area https://t.co/uaoDOquDa1,1
+4127,drought,Meereen ,Pizza drought is over I just couldn't anymore...,0
+4128,drought,Football Field,The Drought Is Real ??????,1
+4129,drought,i luv raquel,@Michael5SOS California is in a drought. what are you gonna do about this issue? if you want to be president this attitude won't work with m,1
+4131,drought,,@KarinaGarciaxo_ me & you both & I'll be dam if I get any of that drought bud,0
+4132,drought,"austin, texas",For these Californians it's like living in Africa's Sahel desert - just finding water a daily chore. http://t.co/ySG9vsrT4g,1
+4133,drought,,U.S. in record hurricane drought: The United States hasn't been hit by a major hurricane in the past nine years and it seems like thatÛ_,1
+4135,drought,"Rock Hill, SC",Large rain drops falling in Rock Hill off Anderson Road. #rain #scwx #drought,0
+4138,drought,Philadelphia,California meets drought-fueled fire season with extra crews.. Related Articles: http://t.co/rKDzB0TGC3,1
+4139,drought,"Macon, Georgia",Moderate #drought is spreading rapidly across central Ga. #Macon #WarnerRobins #Dublin #Milledgeville #gawx http://t.co/PHNEZ60cwe,1
+4140,drought,Ashxjonespr@gmail.com,Thought it was a drought @_ASHJ? http://t.co/V4Br5gjMIY,1
+4141,drought,miami,@_gaabyx we got purple activist I thought it was a drought,1
+4142,drought,Los Angeles,We happily support mydrought a project bringing awareness to the LA drought. Track your waterÛ_ https://t.co/2ZvhX41I9v,1
+4143,drought,"Abuja,Nigeria",'California's Burning:' Gov. on Drought Wildfires http://t.co/mkqSVp8E0G,1
+4145,drought,,LLF TALK WORLD NEWS U.S. in record hurricane drought - The United States hasn't been hit by a major hurricane in ... http://t.co/ML8IrhWg7O,1
+4146,drought,"Los Angeles, CA",'It's an eerie way of revealing both our history and our possible fate.' #CADrought #LakeIsabella by @jpanzar http://t.co/pvExbIiqSK,0
+4147,drought,At Work,Mane im not a Raiders Fan but they been in a drought. They need to go 10-6 lol,0
+4149,drown,,@POTUS you until you drown by water entering the lungs. You being alive has caused this great country to fall to shit because you're a pussy,0
+4150,drown,,.@karijobe and her band killed it tonight. It was almost loud enough to drown out the tambourine behind me..... @codycarnes @AG_USA,1
+4152,drown,"Waialua, Hawaii",Little gecko chillin' in my garden! I ended up helping him out I suspected he might drown!Û_ https://t.co/wXeLa91juh,0
+4153,drown,,'Save me from my self don't let me drown'.,0
+4154,drown,East Coast,We all carry these things inside that no one else can see. They hold us down like anchors they drown us out at sea.,0
+4156,drown,"Coconut Creek, Florida",#NowPlaying Porcupine Tree - Drown With Me (Live) #Listen #Live at http://t.co/iyLVzy3Cob,0
+4157,drown,,When you lowkey already know you're gonna drown in school this year :) http://t.co/aCMrm833zq,0
+4158,drown,icon: cheese3d,@chromsucks don't drown,0
+4159,drown,@notoriousD12,Throw that water at me until I drown and my last words are choke me http://t.co/tUBE4NBqNz,0
+4160,drown,new york,Just down drown me k I can't swim https://t.co/sJoEing76t,0
+4161,drown,,Some days I drown in my tears but I don't let it get me down,0
+4163,drown,,@cameronhigdon34 I can't drown my demons they know how to swim.,0
+4164,drown,,@GraysonDolan only if u let me drown you ??,0
+4166,drown,,@Lwilliams_13 I'll drown you in the river walk,0
+4167,drown,,when your moms being annoying so you turn your beats pill all the way up to drown her out.,0
+4168,drown,"Morris, IL",Ev makes me wanna drown myself he's such an idiot,0
+4170,drown,,@CortneyMo_ put this in Detroit niggas gone be acting out?? tryna fuck n drown mfs????????loose they buffs in the water?? https://t.co/OAQtjawGxg,0
+4171,drown,,@jasminehuerta24 I hope you drown ??,0
+4172,drown,Portugal,I can't drown my demons they know how to swim,1
+4173,drown,"Lynwood, CA",gonna drown it in mustard and lemon pepper :),0
+4175,drown,Where the money at,My parents don't believe in the dream. Sad.,0
+4176,drown,,Some older Native Australians believe that the oceans were created from the urine of an angry god who tried to drown the world.,0
+4177,drown,mi,No one told me you can drown yourself by drinking too much water.,0
+4178,drown,"Gainesville/Tampa, FL",When a real nigga hold you down you supposed to drown,0
+4180,drown,"Saint Louis, Missouri",I keep it out down drown their insults out with what I feel is devote pride ten fold action with reprocussions set at birth retroactive.,0
+4181,drown,,I am that girl on tv that sadly turns her music up to drown out the noise of her family fighting literally every day,0
+4182,drown,it's a journey ,Don't think for one second I'm out to drown your memory. Baby you ain't worth the whiskey.,0
+4183,drown,,This weekend is me and Nathan's birthday weekend so if you want to drown yourself in beer do reckless things and potentially die hmu,0
+4184,drown,"Jonesboro, Arkansas USA",We are getting some reports of flooding near Jonesboro High School. Please use caution when driving in the area. Turn around don't drown!,1
+4189,drown,"Layang-Layang, Perak",Drown by Bring Me the Horizon (at Information Resources Centre (UTP)) ÛÓ https://t.co/7vSqQSvGNI,0
+4191,drown,somewhere in Indiana ,Going to go drown my sorrows with sad music brb,0
+4197,drown,Inside your webcam. Stop that.,@kessily @mishacollins So we should send it all 2 him then? Drown him in it? I like the way u think! #AllTheKidneyBeansAndSorbet4Misha #YES,0
+4198,drowned,,@_dmerida my tears drowned out the terrible taste also nataly gave me her steak and cheese thing to cheer me up,0
+4199,drowned,,Clev: Me? | You. Clev: Indeed. | Do you know what happened to ben? Clev: He drowned. | How. Clev: By his father. @cleverbot,0
+4200,drowned,,Wtf this mom just drowned her child?!,1
+4201,drowned,Financial News and Views,Hundreds feared drowned as migrant boat capsizes off Libya http://t.co/7S1GfNEBgt,1
+4202,drowned,"R'lyeh, South Pacific",Sadly before she could save humanity Ursula drowned in the drool of a protoshoggoth but at least she sort of died doing what she loved.,1
+4203,drowned,taking bath do not disturb,i drowned in the kiddie pool and i lost my ploppy,0
+4204,drowned,"Alberta, VA",http://t.co/MoA0q0AuFa Jacksonville family bands together as memorial is planned for toddler who ... - FloridaÛ_ http://t.co/NKOu7zWwRT,0
+4205,drowned,The Howling,the future of america #GamerGate http://t.co/UhF7NyAbSw,0
+4206,drowned,"United Kingdom,Fraserburgh","@Stephen_Georg Hey Stephen Remember that time you drowned all the yellows
+
+Read: http://t.co/0sa6Xx1oQ7",0
+4209,drowned,,"@ABCNews24 @PeterDutton_MP
+He also told you....No-one has drowned in the last 2 years & 1200 had under Labor. But let's not mention that..",0
+4210,drowned,,New and now: Different (FNaF fanfiction): Trixie_drowned / 2 pagesHi my awesome proxies it's ... http://t.co/366NhTg3Tz #wattpad #promo,0
+4211,drowned,WorldWideWeb,#DW Hundreds feared drowned as migrant boat capsizes off Libya: Hundreds of migrants areÛ_ http://t.co/VOX99FWKcX,1
+4212,drowned,"Dreieich, Germany",via @dw_english Hundreds feared drowned as migrant boat capsizes off Libya http://t.co/Cubc0nq6Fd #UFO4UBlogEurope,1
+4213,drowned,Pembroke NH,"at the lake
+*sees a dead fish*
+me: poor little guy i wonder what happened
+ashley: idk maybe it drowned
+ wtf ????????",0
+4214,drowned,"Bayonne, NJ",@God how come bugs haven't all drowned out of existence every time it rains?,0
+4216,drowned,Colorado Springs,http://t.co/riWuP1RbHu Jacksonville family bands together as memorial is planned for toddler who ... - FloridaÛ_ http://t.co/86pkNKCHmr,0
+4218,drowned,Dubai,Migrants drown at sea after boat capsizes off #Libya http://t.co/t4pv0nrOoV http://t.co/PSeYLYzck4,1
+4219,drowned,United States,pussy so deep I could've drowned twice,0
+4220,drowned,,Visting Georgina at The Drowned Rat Cafe.....awful view!! http://t.co/pYLFb3tI9U,1
+4221,drowned,IG: AyshBanaysh,Sometimes logic gets drowned out in emotion but it's gotta surface at some point.,0
+4224,drowned,fl,@_itsdanie_ noooo?? I almost drowned you once tho :)))),0
+4225,drowned,,Toddler drowned in bath after mum left room to fetch his pyjamas http://t.co/k9aSKtwXfL,1
+4227,drowned,Halfrica,So I pick myself off the ground and swam before I drowned. Hit the bottom so hard I bounced twice suffice this time around is different.,1
+4230,drowned,,Thank you Uplifting spirit. When Im drowned you've been an anchor,0
+4232,drowned,,I want to see my @AustinPearcy22 so bad its not even funny. I will probably cry and drowned him in kisses when I do. ????,0
+4233,drowned,"Jacksonville Beach, FL",Jacksonville family bands together as memorial is planned for ... http://t.co/tilgurKv7Z,1
+4235,drowned,Melbourne,Hundreds feared drowned after another Mediterranean asylum seeker boat sinking http://t.co/zsYkzj2bzG,1
+4237,drowned,,I got drowned like 5 times in the damn game today ????????????,1
+4238,drowned,"San Francisco, CA",80 tons of cocaine worth 125 million dollars drowned in #Alameda .....now that's a American drought #coke,1
+4239,drowned,"Richmond Heights, OH",Niggas favorite question is why you single ?? bitch I don't know pussy too wet almost drowned a nigga ??????????,0
+4240,drowned,New Hampshire,The best thing about this is it drowned out the call from the guy angry cause he hadn't gotten a tracking number... http://t.co/QYu8grOrQ1,0
+4241,drowned,U.S.A. - Global Members Site,Hundreds feared drowned as migrant boat capsizes off Libya http://t.co/pPJi1tCNML,1
+4242,drowned,,So today I fell off a rock scraped my whole butt and nearly drowned #summer2k15,0
+4243,drowned,India,Hundreds of migrants feared drowned off Libya: Migrants stand next to their tent at a camp set near CalaisÛ_ http://t.co/PY4mtW5xpM,1
+4244,drowned,,HOPE THE DROWNED @eeasterling_2,0
+4245,drowned,Tampa,.@DinosaurDracula Felt remorse for missing Pam drowned it with these guys. Really like Jason's Part VI outfit. http://t.co/irHh2GVSeD,0
+4246,drowned,All around the world!,Given the US coalition's fondness for backing '1984'-style totalitarianism it's a surprise they haven't copied... http://t.co/58wvChg1M9,0
+4247,drowned,In The Mansion,@JanieTheKillr Jack closed the sketchbook biting his lip under his mask. 'I'm doing good. How're you?',0
+4248,drowning,,forever drowning in my feelings.,0
+4250,drowning,New York,The Drowning Girl by Caitlin R. Kiernan Centipede Press Signed numbered Limited - Full reÛ_ http://t.co/mwcNVtCXVU http://t.co/ClOLmorpLd,0
+4251,drowning,,The Drowning Girl by Caitlin R. Kiernan Centipede Press Signed numbered Limited - Full reÛ_ http://t.co/m2YUXNqlqY http://t.co/V8GKkfMFXT,0
+4252,drowning,USA,Grace: this is not your first ' storm' you know bicycles fences trees will fly as well as idiots drowning that go by swollen rivers...,1
+4253,drowning,Numa casa de old yellow bricks,LONDON IS DROWNING AND IIII LIVE BY THE RIVEEEEEER,1
+4255,drowning,"Chicago, IL",Family mourns drowning of 'superhero' toddler with rare epilepsy: Bradley Diebold suffered hundreds of epilepticÛ_ http://t.co/unsayJDTu7,0
+4256,drowning,Coventry,Why are you drowning in low self-image? Take the quiz: http://t.co/Z8R6r3nBTb http://t.co/nAmffldh5h,0
+4257,drowning,94123,2/his explanation was that 'you request as much as you want provided you get your job done but you're constantly drowning in work!',0
+4260,drowning,,'Drowning' - Acrylic 08.05.15 https://t.co/X17fUBQBGG,1
+4261,drowning,,The Drowning Girl by Caitlin R. Kiernan Centipede Press Signed numbered Limited - Full reÛ_ http://t.co/tCJfCkXdZL http://t.co/EmTXtGO4CE,0
+4262,drowning,"Hendersonville, NC",#ICYMI #Annoucement from Al Jackson... http://t.co/7BevuJE5eP,0
+4264,drowning,New Jersey/ D.R.,@_jeesss_ @Ethereal_7 Hello 911 yeah we have someone drowning here send a medic http://t.co/7GiglwdMhy,1
+4265,drowning,CT & NY,@JLabuz what if I'm drowning,0
+4266,drowning,,@HeyImBeeYT its like theres fire in my skin and im drowning from within ????,1
+4268,drowning,scandinavia,don't you dare play the victim when I've been drowning for years.,0
+4269,drowning,"los angeles, ca",I will stay drowning till you watch #NashsNewVideo http://t.co/EpZwasEYKy http://t.co/cfevtrsc1U,0
+4270,drowning,South Korea GMT+9,"SometimesI can't even breathe well
+I feel like drowning and can't deal with my fear
+#anxietyproblems",0
+4271,drowning,"Baltimore, MD",No reported cases of people drowning in sweat...FYI,1
+4272,drowning,"Hughes, AR",http://t.co/9y0pAJ8sxd Family mourns drowning of 'superhero' toddler with rare epilepsy - Chicago Tribune http://t.co/oLdjsowKY5,1
+4273,drowning,"Madison, WI",@NigelTanner1 Believe it or not we've had too MUCH rain here. Our newly planted maple trees are actually drowning.,1
+4274,drowning,,Boy saves autistic brother from drowning: A nine-year-old in Maine dove into a pool to save his autistic brother from drowning,1
+4275,drowning,,Louis in red jacket round 2 aka drowning in my tears,0
+4276,drowning,University of Chicago,Epilepsy claims another. Common and still a challenge to treat. Superhero toddler with rare epilepsy (Dravet) drowns http://t.co/VBo1tjNdps,0
+4279,drowning,"Virginia, USA",I'm drowning in spirits to wash you out,0
+4281,drowning,New York,The Drowning Girl by Caitlin R. Kiernan Centipede Press Signed numbered Limited - Full reÛ_ http://t.co/McSEK4hX5S http://t.co/IIfGaZ0Fil,0
+4282,drowning,"yorkshire
+",#Islamic #state issue a new holiday #brochure lovely swimming pool for drowning in shooting range and the downside it costs a #bomb,0
+4284,drowning,Coasts of Maine & California,Drowning sorrows in Jarmusch vampires.,0
+4288,drowning,,can still see it...blank expression...cheeks clapping in my face...marvins room playing subtlety in the back yet drowning out all the sound,0
+4289,drowning,,My mom is watching a show about bridges breaking/falling and the people on them drowning in their cars aka one of my biggest fears ????,0
+4292,drowning,Pittsburgh ,Drowning in Actavis suicide,0
+4293,drowning,,"What This Man Did To Save A Drowning Squirrel Is Absolutely Incredible
+http://t.co/YzZXxkNiSm http://t.co/zzsEe5Hipm",0
+4295,drowning,,@Homukami Only URs and SRs matter Rs you'll be drowning in. Tho you're already drowning in Ns lol.,0
+4296,drowning,"Pennsylvania, USA",I feel like I'm drowning inside my own body!!,0
+4297,drowning,"San Diego, California",I'm drowning in hw now and that's w/o going to swim ohlordy,0
+4298,dust%20storm,Idaho,@NWSPocatello BG-16: So far brunt of storm just to our north. Grayed out w/ dust & rain to N blue sky interspersed w/ clouds to S.,0
+4299,dust%20storm,"Beirut, Lebanon",Some poor sods arriving in Amman during yesterday's dust storm were diverted to Ben Gurion airport: http://t.co/jkpjpcH9i6,1
+4300,dust%20storm,,Kids Disappear in Dust Storm in Atmospheric Aussie Thriller http://t.co/0MNPCER9nO RT @Newz_Sacramento,1
+4301,dust%20storm,"El Paso, Texas",NASA MODIS image: Dust storm over Morocco and the Straits of Gibraltar http://t.co/QWQnni7VMZ #duststorm,1
+4303,dust%20storm,qosqo,"Totoooooo! Totoooooooooo!
+'@Historicalmages: Dust storm approaching Stratford Texas 18th April 1935. http://t.co/4awC16uUWB'",1
+4304,dust%20storm,"Lubbock, TX",Severe storm weakening as it moves SE towards Lubbock area. Outflow boundary may create dust and 50 mph gusts http://t.co/pw3tZU0tay,1
+4305,dust%20storm,CA via Brum,When the answer my friend isn't blowing in the wind-IT'S YELLING! -How to Survive a Dust Storm http://t.co/9NwAJLi9cr http://t.co/tKMOtaeaCo,1
+4306,dust%20storm,,Kids Disappear in Dust Storm in Atmospheric Aussie Thriller http://t.co/TPOaprJudp RT @Newz_Sacramento,1
+4307,dust%20storm,,How to Survive a Dust Storm http://t.co/0yL3yT4YLH,1
+4309,dust%20storm,,Dust Storm 'en route' from Alice Springs to Uluru http://t.co/4ilt6FXU45,1
+4312,dust%20storm,Lizzy's Knee,I keep sneezing either someone placed a southern dust storm in my house or someone talkin smack,0
+4313,dust%20storm,,|| So.... I just watched the trailed for The Dust Storm and I think part of me just died.... Colin is so perfect my goodness.,0
+4314,dust%20storm,,Dust devil maintenance fee - buy up la rotary storm guard: UVoPWZ,0
+4317,dust%20storm,D(M)V ,@RetiredFilth people in sydney woke up to the whole sky being red after a dust storm..like unreal.,1
+4318,dust%20storm,"Marrakech M̩dina, Marrakech - Tensift - Al Haouz",There's a big storm brewing dark clouds thunder and rain carrying thick dust. This could be interesting.,1
+4320,dust%20storm,Ellensburg to Spokane,I-90 Vantage: Backups eastbound with low visibility due to a dust storm about 4 miles east of the bridge.,1
+4321,dust%20storm,,Good way to end the day!!! Geyser plus dust storm! http://t.co/l5VakLR59M,1
+4322,dust%20storm,SD |Norway| KSA,dust storm in riyadh ????,1
+4323,dust%20storm,,New Mad Max Screenshots Show Off a Lovely Dust Storm Combat Magnum Opus http://t.co/45CmaQf8Ns,0
+4324,dust%20storm,,Let it be gone away like a dust in the wind .... Big Wind like a Tornado with Blizzard Thunder and Storm its that what I always want it,1
+4325,dust%20storm,A sofa,New Mad Max Screenshots Show Off a Lovely Dust Storm Combat Magnum Opus http://t.co/QHbzKErOTt #cogXbox #XboxOne #Xbox,0
+4326,dust%20storm,CA via Brum,The answer my friend is yelling in the wind-my latest article for http://t.co/LbMeKYphM5.Pls read and share - thanks! http://t.co/9NwAJLi9cr,0
+4327,dust%20storm,Û¢5Û¢12Û¢14Û¢ | åÈ#SaviourSquadåÇ,"I NEED THE DUST STORM FILM ASAP
+
+ALSO
+
+*watches the trailer for the 500th time* @duststormfilm",0
+4328,dust%20storm,"Pocatello, ID",Storm headed towards Idaho Falls with blowing dust & winds to 60 mph. US HWY 20 & I15 look out. #idwx http://t.co/0cR74m1Uxm,1
+4329,dust%20storm,Room 234,Currently driving through a dust storm. http://t.co/srUj5ZljGL,1
+4330,dust%20storm,,I learned more about economics from one South Dakota dust storm than I did in all my years in college. -Hubert Humphrey,1
+4332,dust%20storm,Near Yosemite,6 Things Getting Caught in a Dust Storm & the Challenging Real Estate Market Have in Common (+ video): http://t.co/jf5Ft5cq9j,0
+4333,dust%20storm,,Raw Video: Dust Storm Rolls Through Texas http://t.co/QllkOfdyzX http://t.co/rGjJuMnNah,1
+4334,dust%20storm,The Harbinger.,@LegacyOfTheSith @SagaciousSaber @Lordofbetrayal Moved in a crescent formation small trails of dust left in their wake as they moved.,0
+4335,dust%20storm,"Atlanta, GA",DUST IN THE WIND: @82ndABNDIV paratroopers move to a loading zone during a dust storm in support of Operation Fury: http://t.co/uGesKLCn8M,1
+4336,dust%20storm,CA via Brum,Wall of noise is one thing - but a wall of dust? Moving at 60MPH? http://t.co/9NwAJLi9cr How to not get blown away! http://t.co/j4NI4N0yFZ,1
+4337,dust%20storm,Worldwide,New Mad Max Screenshots Show Off a Lovely Dust Storm Combat Magnum Opus http://t.co/VRpmplcZCY,0
+4341,dust%20storm,"Atlanta, GA",@deadlydemi even staying up all night to he barrier for tÌüp and then having to run through a dust storm and almost passing out?,1
+4342,dust%20storm,chicago,Going to a fest? Bring swimming goggles for the dust storm in the circle pit,1
+4343,dust%20storm,,Severe storm weakening as it moves SE towards Lubbock area. Outflow boundary may create dust and 50 mph gusts http://t.co/kA1HBjlqVw,1
+4345,dust%20storm,Dutch/English/German,New Mad Max Screenshots Show Off a Lovely Dust Storm Combat Magnum Opus http://t.co/MUdgU1pUNS http://t.co/AQxwOLbCfq,0
+4348,earthquake,ARGENTINA,#Earthquake #Sismo M 1.4 - 4km E of Interlaken California: Time2015-08-06 00:52:25 UTC2015-08-05 17:52:25 -07... http://t.co/wA5C77F8vQ,1
+4349,earthquake,Earth,1.43 earthquake occurred near Mount St. Helens area Washington at 09:36 UTC! #earthquake http://t.co/2xMdiDGpnr,1
+4350,earthquake,,Contruction upgrading ferries to earthquake standards in Vashon Mukilteo - Q13 FOX http://t.co/E981DgSkab #EarthquakeNews,1
+4351,earthquake,Sydney,#3Novices : Renison mine sees seismic event http://t.co/2i4EOGGO5j A small earthquake at Tasmania's Renison tin project has created a temÛ_,1
+4352,earthquake,,Put the RIGHT person up on the block #Shelli??? The sense of entitlement is ridiculous. #BB17.,0
+4353,earthquake,,2.0 #Earthquake in Sicily Italy #iPhone users download the Earthquake app for more information http://t.co/V3aZWOAmzK,1
+4354,earthquake,"California, USA",USGS EQ: M 1.2 - 23km S of Twentynine Palms California: Time2015-08-05 23:54:09 UTC2015-08-05 16:... http://t.co/T97JmbzOBO #EarthQuake,1
+4355,earthquake,oklahoma,Posted a new song: 'Earthquake' http://t.co/RfTyyZ4GwJ http://t.co/lau0Ay7ahV,0
+4356,earthquake,One World,Some of the aftershocks can be just as big as the initial earthquake.~ http://t.co/HKbPqdncBa,1
+4357,earthquake,Desde Republica Argentina,#Sismo ML 2.4 NEAR THE COAST OF WESTERN TURKEY: MagnitudeåÊåÊML 2.4RegionåÊåÊNEAR THE COAST OF WESTERN TURKEY... http://t.co/0wdAzLcM90 #CS,1
+4358,earthquake,"California, USA",USGS EQ: M 0.6 - 8km SSW of Anza California: Time2015-08-06 01:26:24 UTC2015-08-05 18:26:24 -07:0... http://t.co/3bwWNLsxhB #EarthQuake,1
+4359,earthquake,Earth,1.9 earthquake occurred 15km E of Anchorage Alaska at 00:11 UTC! #earthquake #Anchorage http://t.co/QFyy5aZIFx,1
+4361,earthquake,"Oklahoma City, OK",Raffi_RC: RT SustainOurEarth: Oklahoma Acts to Limit Earthquake Risk at Oil and Gas Wells | scoopit http://t.co/yru4nPHdrf Loving all thiÛ_,1
+4362,earthquake,,#USGS M 0.9 - Northern California: Time2015-08-06 01:50:25 UTC2015-08-06 01:50:25 UTC at epicenter... http://t.co/mBo6OAnIQI #EarthTwerk,1
+4363,earthquake,TÌÁchira - Venezuela,#SCSeEstaPreparando Light mag. 4.4 earthquake - - 73km SW of Khuzdar Pakistan on Wednes... http://t.co/i6lmcccLv5 via @volcanodiscover,1
+4365,earthquake,"California, USA",#USGS M 1.2 - 23km S of Twentynine Palms California: Time2015-08-05 23:54:09 UTC2015-08-05 16:54:09 -07:0... http://t.co/kF0QYBKZOL #SM,1
+4366,earthquake,a box,"@AGeekyFangirl14 's things she looks in a significant other:
+1. Beautiful eyes.
+2. Humor.
+3. Farts that creates an earthquake.
+
+????????",0
+4368,earthquake,"Melbourne, Australia",Nepal earthquake 3 months on: Women fear abuse https://t.co/iCTtZ0Divr via @@loupascale,1
+4372,earthquake,"Barcelona, Spain",ML 2.0 SICILY ITALY http://t.co/z6hxx6d2pm #euroquake,0
+4373,earthquake,"Hawaii, USA",USGS reports a M1.94 #earthquake 5km S of Volcano Hawaii on 8/6/15 @ 1:04:01 UTC http://t.co/Njd28pg9Xv #quake,1
+4374,earthquake,New Zealand,GNS sees unnecessary deaths resulting from earthquake strengthening legislation http://t.co/4rYZMzSgDW ($),1
+4375,earthquake,,'There was a small earthquake in LA but don't worry Emily Rossum is fine' #difficultpeople is great,1
+4376,earthquake,"Alaska, USA",USGS EQ: M 1.9 - 15km E of Anchorage Alaska: Time2015-08-06 00:11:16 UTC2015-08-05 16:11:16 -08:0... http://t.co/OjQ0KFg5ub #EarthQuake,1
+4377,earthquake,ARGENTINA,#Earthquake #Sismo M 1.9 - 15km E of Anchorage Alaska: Time2015-08-06 00:11:16 UTC2015-08-05 16:11:16 -08:00 ... http://t.co/Z0VeR1hVM9,1
+4378,earthquake,,Contruction upgrading ferries to earthquake standards in Vashon Mukilteo: The upgrades will bring the vulnera... http://t.co/Au5jWGT0ar,1
+4379,earthquake,"Okuma Town, Fukushima",[GPV Wind] As of 06JST 6AUG: WNW 06JST 6AUG / E 12JST 6AUG / S 18JST 6AUG. http://t.co/l6jBjAj8dm,0
+4381,earthquake,,M1.57 [01:11 UTC]?3km NNW of Lake Henshaw California. http://t.co/f9KQksoSw3,1
+4382,earthquake,rzl ?,earthquake drill atm,1
+4383,earthquake,,There has not been 1 real tear out of #Shelli 's eyes this entire episode. #bb17,0
+4384,earthquake,,#USGS M 1.4 - 4km E of Interlaken California: Time2015-08-06 00:52:25 UTC2015-08-05 17:52:25 -07:00 at ep... http://t.co/zqrcptLrUM #SM,0
+4385,earthquake,Desde Republica Argentina,#Sismo M 1.3 - 1km NNE of The Geysers California: Time2015-08-05 23:40:21 UTC2015-08-05 16:40:21 -07:00 a... http://t.co/x6el3ySYcn #CS,0
+4387,earthquake,Orm,Earthquake drill ??????,0
+4388,earthquake,in the Word of God,@DArchambau THX for your great encouragement and for RT of NEW VIDEO http://t.co/cybKsXHF7d The Coming Apocalyptic US Earthquake & Tsunami,1
+4391,earthquake,#keepthefaith J&J,Earthquake drill ??,1
+4392,earthquake,Global Edition,#earthquake (EMSC): MD 2.9 OFF COAST OF NORTHERN CALIFORNIA http://t.co/6AiMd1uway G http://t.co/9cgbJwmhII,1
+4393,earthquake,London,'There was a small earthquake in LA but don't worry Emmy Rossum is fine',1
+4395,earthquake,"Seattle, WA",Sure the #Megaquake story brought a sense of panic but the question is: will anything really change? http://t.co/9f3rDN9N3D,1
+4396,earthquake,world,Earthquake : M 3.4 - 96km N of Brenas Puerto Rico: Time2015-08-05 10:34:24 UTC2015-08-05 06:34:24 -04:00 atÛ_ http://t.co/sDZrrfZhMy,1
+4397,earthquake,"Saline, MI",Scared to be living in Seattle when this predicted earthquake is going to destroy ????,1
+4398,electrocute,Here.,@Adanne___ kindly follow back,0
+4401,electrocute,,@devon_breneman hopefully it doesn't electrocute your heated blanket lmao,0
+4402,electrocute,,Kids got Disney version of the game Operation only 2 AA batteries? I swear my old version had like 8 Ds and would nearly electrocute you.,0
+4403,electrocute,BOT ACCOUNT,Elecman could electrocute me and I'd say thanks.,0
+4405,electrocute,,when you got an extension cord that extends from your bed to your bath tub ?? lets pray I don't electrocute myself,0
+4406,electrocute,#otrakansascity,I wanna tweet a 'niall thx for not making me was to electrocute myself' tweet but I'm scared I'll jinx it,0
+4407,electrocute,"Dalkeith, Scotland",Wtf Thomas Edison after making the lightbulb used to electrocute animals to make everyone think Teslas power was unsafe???? wank,0
+4408,electrocute,"Durand, MI",Achievement Unlocked: Replaced Light Socket; Did Not Electrocute Self,0
+4410,electrocute,Naperville,Electrocute yourself,0
+4411,electrocute,,@i_electroCute your turn ??,0
+4412,electrocute,Forging my Story,@ZXAThetis 'Are you okay?! I electrocute you TOO badly right?',0
+4413,electrocute,,The Sea Will Electrocute Us All ??,0
+4415,electrocute,,Electric vs Gas brewing (not wanting to electrocute myself) question http://t.co/26oo0fcL53,0
+4416,electrocute,,@danisnotonfire don't let Phil help out he'll probably electrocute himself,0
+4421,electrocute,Mass,@Mmchale13 *tries to electrocute self with phone cord*,0
+4423,electrocute,14/cis/istj ,I'm not the mom friend but I still see my friends as my little babies that I have to care for or else they'll electrocute themselves,0
+4424,electrocute,,Why does my phone electrocute me when it's charging,0
+4425,electrocute,,"She says that she'd love to come help but
+The sea would....
+Electrocute us all... ??????????",0
+4426,electrocute,Michigan ,It is freezing in my room & I erally want to unplug the ac but I don't want to electrocute myelf and die,0
+4427,electrocute,,i need u to delete this before i start crying into my computer and electrocute myself https://t.co/9ZMWT9XYdz,0
+4428,electrocute,,@lightseraphs pissed at you and could have their pikachu electrocute you and :\\\,0
+4430,electrocute,Here.,Let her go - Passenger,0
+4432,electrocute,where I'm supposed to be,@Omar_molina036 @Milioooo_ he's trying to electrocute ya ass lol hell no I ain't fucking with Emilio no more ????????,0
+4435,electrocute,"Kutztown, PA",Kayla is about to electrocute herself.,0
+4436,electrocute,London,no but seriously I will electrocute half of UK Army's so I can touch bangtan i do not play games when it comes to bts,0
+4437,electrocute,"Budapest, Hungary",Photo: weallheartonedirection: I wouldnÛªt let David electrocute himself so IÛªm the asshole http://t.co/uWiJMEGl4E,0
+4438,electrocute,"Texas, USA",I would like to electrocute everyone who uses the word 'fair' in connection with income tax policies. - William F. Buckley Jr.,0
+4440,electrocute,CA,Photo: weallheartonedirection: I wouldnÛªt let David electrocute himself so IÛªm the asshole http://t.co/OEr5Hh41Ew,0
+4441,electrocute,"Houston, TX","@FoxNews He still has his beard - has he been visited by any1 while in prison? If he keeps that hideous beard electrocute him!
+#UglyPeople",1
+4442,electrocute,"Cairo, Egypt.",But the sea would..electrocute us all.,0
+4444,electrocute,South Africa,@el_torro_loco We can hear the conversation now... 'Sorry senator we thought you said 'electrocute' 50 million...' etc.,0
+4445,electrocute,,THE LINKS TO WATCH THE SHOW BETTER WORK OR I MIGHT ELECTROCUTE SOMEONE,0
+4448,electrocuted,,When I was cooking earlier I got electrocuted some crucial ?????? now I'm psychic lol,0
+4449,electrocuted,Karachi Pakistan,#pakistan#news# PAKPATTAN City News: Man electrocuted From Our Correspondent PAKPATTAN: A man was electrocuted... http://t.co/frpbNhVPyI,1
+4450,electrocuted,,'Hey bitch blow me' uh no. Stick your dick in some water then an outlet so u get electrocuted..,0
+4451,electrocuted,,christie keeps telling me that i need to be electrocuted,0
+4452,electrocuted,,So I had my phone charging and lightening struck in my backyard and I was holding my phone and it electrocuted my hand???? hurts so bad man??,0
+4454,electrocuted,,I got electrocuted this morning how is your day going? ??,0
+4455,electrocuted,,'Why am I being constantly electrocuted?' 'I don't know. Are you by chance standing next to a cactus?'#Borderlands #Borderlands2 #OOCVG #FTW,0
+4456,electrocuted,New York,Woman electrocuted #Red #Redblood #videoclip http://t.co/9PYmM2RUWf #,0
+4457,electrocuted,Edinburgh,@That_fat_guy there's literally a video of an elephant he had tied up in metal cables and electrocuted to death,0
+4458,electrocuted,HTX,Fr cuz I risk being electrocuted every shower ?? https://t.co/nWQ6wJQk1z,0
+4459,electrocuted,,Youth electrocuted in Khulna | http://t.co/3EnyNdXpPm https://t.co/GQpi7jMKan via @sharethis,1
+4463,electrocuted,USA,South Side factory where worker electrocuted pays $17000 penalty #Columbus - http://t.co/N8EzfCTfcE,1
+4464,electrocuted,not so cool KY,Michael talking about when he was electrocuted omg #ROWYSOLouisville http://t.co/HxVfmoUhDM,1
+4465,electrocuted,,@steveycheese99 @MapMyRun where you being electrocuted all the way round? The map sure looks like it.,0
+4466,electrocuted,North Carolina,I'm loving this classic barn shot! We may or may not have got electrocuted got stung a few times and stepped in... http://t.co/X6aSGRjsWC,1
+4468,electrocuted,,got electrocuted last night at work for the first time in my life.... shit was weird ????,0
+4470,electrocuted,Hampshire UK,.@BBCNews .@mwlippert #SouthKorea Dogs prepared!Electrocutedboiling waterfur machine ALL STILL ALIVE http://t.co/3a50DhZ7YI,0
+4471,electrocuted,Oblivion?,"Just thought I'd let you all know...
+It's probably not a good idea to plug in your hairdryer when it's wet you will be electrocuted.",0
+4472,electrocuted,"South West, England",MT @Earths_Voice Treatment of #tigers in #China is appalling: electrocuted in front of businessmen & eaten http://t.co/JlWhaOwFQA #SaveTi...,1
+4476,electrocuted,,I was blow drying my hair & the cable caught on fire. I let go of it as soon as I realized. Just before I could get electrocuted ??,1
+4478,electrocuted,?????,I was working out today and i sweated SO MUCH like i though i was gonna get electrocuted by earbuds omg,0
+4479,electrocuted,"Redondo Beach, CA",Do babies actually get electrocuted from wall sockets? I'm wondering how I and those before me survived childhood.,1
+4480,electrocuted,"Newcastle, England",Also my iPhone charger is broken and I just electrocuted myself.,0
+4482,electrocuted,nyc,It was a queer sultry summer the summer they electrocuted the Rosenbergs and I didn't know what I was doing in New York.,0
+4486,electrocuted,,seriously look like a get electrocuted after I blow dry my hair it's really attractive ??,0
+4487,electrocuted,"Planet Eyal, Shandral System","Zotar(50 skeleton alchemist) was electrocuted to death by Atamathon the Giant Golem on Golem Graveyard 1.
+http://t.co/GpwrC1KZ5i",1
+4488,electrocuted,Karachi Pakistan,#pakistan#news# NANKANA SAHIB City News: Electrocuted From Our Correspondent NANKANA SAHIB: A youth was electr... http://t.co/WERK9qibVV,1
+4489,electrocuted,,God damn it!!! I electrocuted myself ??,0
+4490,electrocuted,"Mumbai, Maharashtra",Watching a man electrocuted on the roof of #mumbailocals is definitely a lesson.. People please learn!! #lessonforlife #marinelines #mumbai,1
+4491,electrocuted,Atlanta,"Worked in factory pressing designs onto T-shirts was electrocuted
+d/t faulty ground. Boss docked my pay while I was at ER #WorstSummerJob",1
+4492,electrocuted,,Elsa is gonna end up getting electrocuted. She's gonna end up like that cat from christmas vacation.,0
+4493,electrocuted,,I'm in the shower and I went to go change the song and of course I get fucking electrocuted by the cord,0
+4494,electrocuted,,Not being able to touch anything or anyone in Penneys without being electrocuted ??,0
+4496,electrocuted,,Student electrocuted to death in school campus http://t.co/ryah8Fni5Q,1
+4498,emergency,Michigan,"A whistleblower lawsuit accuses that supervisor of sleeping on the job more than once according to officials.
+
+http://t.co/IPwySnik0G",0
+4499,emergency,New York,Survival Kit Whistle Fire Starter Wire Saw Cree Torch Emergency Blanket S knife - Full reÛ_ http://t.co/cm7HqwWUlZ http://t.co/KdwAzHQTov,1
+4503,emergency,,Emergency Flow http://t.co/lH9mrYpDrJ mp3 http://t.co/PqhuthSS3i rar http://t.co/0iW6dRf5X9,1
+4504,emergency,"New Orleans, LA",Emergency Dispatchers in Boone County in the hot seat http://t.co/5fHkxtrhYU,0
+4507,emergency,New York,Survival Kit Whistle Fire Starter Wire Saw Cree Torch Emergency Blanket S knife - Full reÛ_ http://t.co/2OroYUNYM2 http://t.co/C9JnXz3DXC,0
+4508,emergency,Columbus ?? North Carolina,Emergency surgery,0
+4509,emergency,USA,Deals : http://t.co/ddhWoRI5w1 #37592 Temporary Fake Tooth Teeth Replacement Kit Emergency Dental Oral Care CosmeÛ_ http://t.co/ZCvfC500yY,0
+4511,emergency,Phoenix,God forbid anyone in my family knows how to answer a phone. I need new emergency contacts.,0
+4514,emergency,denmark,AlaskaÛªs Prince of Wales #ArchipelagoWolves are nearing #Extinction. Demand emergency protection! #StandForWolves http://t.co/hBWoivJqkD,1
+4515,emergency,Davao City,'The day you learn the importance of emergency exits is the day your heartbeat stops sounding familiar.',0
+4516,emergency,"Based out of Portland, Oregon",@newyorkcity for the #international emergency medicine conference w/ Lennox Hill hospital and #drjustinmazur,0
+4517,emergency,Kuwait,Plane from New York to Kuwait diverts to UK after declaring state of emergency http://t.co/5AIeXCBKFq,1
+4518,emergency,"Wildomar, CA",When your child needs emergency care they can be seen in our Emergency Department by @radychildrens Specialists! http://t.co/IGwsTTTkWK,0
+4519,emergency,,STL Ace Grille - Surface Mounts SpeedTech Lights - Amber Emergency Lights - 544 http://t.co/t6Seku4yvm http://t.co/TJOZ4u4txl,0
+4520,emergency,buhh,the new quest type is 'level up quest'. its an always present quest with x2 exp designed to help people level up outside of emergency quests,0
+4521,emergency,New York,11000 SEEDS 30 VEGETABLE FRUIT VARIETY GARDEN KIT EMERGENCY SURVIVAL GEAR MRE - Full reaÛ_ http://t.co/DchfPXgY2m http://t.co/UgHpTzjuLK,0
+4522,emergency,"Indianapolis, IN",UPDATE: Indiana State Police reopening I-65 near Lafayette following emergency bridge repairs that closed key highway for about 28 hours.,1
+4523,emergency,We are global!,SF Asian Women's Shelter crisis line (415) 751-0880. Emergency shelter/support services 4 non-English speaking Asian women & children.,1
+4524,emergency,,Emergency root canal!! #tookitlikeaman #lovemydentist #sore,0
+4525,emergency,,@runner_joy yes; especially new clients that walk in and think a wart is an emergency.,0
+4526,emergency,Adelaide,"Myanmar floods: Childfund https://t.co/pQHQ4JnZTT
+ and International Needs https://t.co/FX0W2Sq05F and CARE Aust @CAREemergencies appeals",1
+4527,emergency,"Anchorage, AK",#Anchorage #Jobs Emergency Medicine - Nurse Practitioner - Healthcare Recruitment Counselors (Wasilla AK): Em... http://t.co/LKz5cNYNxX,0
+4528,emergency,World,Setting Up An Emergency Fund In 3 Easy Steps: You never know when a surprise expense will pop up. So work up t... http://t.co/Iz17kLelZC,0
+4529,emergency,,The eyes of the nation & broader conservation community are on #Alaska @AKGovBillWalker reinstate emergency buffer #ProtectDenaliWolves,0
+4530,emergency,University of Limerick,Gonna call up tomorrow with the aul 'emergency dental appointment' excuse just like the whole tooth falling out incident of last year,1
+4531,emergency,,Loans until settlement day ??ÛÏ emergency money advances treasure-house self outbreed yours below take-home: AKx,0
+4533,emergency,Sacae Plains,in BOTH 'peacetime and times of national emergency.',1
+4534,emergency,"Melbourne, Australia",From @LeanDOTorg: Lean Thinking for Quicker Police Emergency Response Time http://t.co/suZBkyW5TT,0
+4537,emergency,Southern Maine,Former heroin addict shares story as city leaders sound alarm: City officials said emergency teams responded t... http://t.co/GZxIPMOknB,1
+4538,emergency,,Busty blonde teen Natalia Starr fucks the security guard on set http://t.co/qew4c5M1xd View and download video,0
+4539,emergency,Five down from the Coffeeshop,Came across this fire video not mine..enjoy..#fire #firemen #firetruck #emergency #rescue #911 #summertime #sirensÛ_ http://t.co/hcYAJsAcfJ,1
+4541,emergency,"Renfrew, Scotland",@batfanuk we enjoyed the show today. Great fun. The emergency non evacuation was interesting. Have a great run.,0
+4542,emergency,,Denali wolf population declined from 143 in 2007 2 just 48 in 2015. Reinstate emergency buffer zone #ProtectDenaliWolves @Alaska @adndotcom,1
+4543,emergency,,@chowtaxis of Newport a big thanks for the emergency run to pick Jackie up from Bristol temple messages much appreciated,1
+4544,emergency,,I'm glad when I call someone it's not an emergency since they never answer their phones or call back??,0
+4546,emergency,"Kuala Lumpur, Malaysia",To Supply and Install New FRP Emergency Slide at Tunas KijangBank Negara Malaysia [Closing Date: 2015-08-14]... http://t.co/ZpqwKHFhNf,0
+4547,emergency,,#EMERGENCY in Odai Bucharest Romania 600 Dogs Dying!They are so Hungry that they EAT EACH OTHER! http://t.co/pjigXPVPl0,1
+4548,emergency%20plan,"Antioch, CA ","4 Printable Emergency Plan Templates
+http://t.co/nAex0Q1Ax0",0
+4549,emergency%20plan,,@POTUS Thx for emergency dec. http://t.co/DyWWNbbYvJ 4 days and no plan to get H20 to those who have no transport. Can you deploy troops?,1
+4550,emergency%20plan,"Alexandria, VA, USA",See Aug 4 2015 PoconoRecord @EmergencyMgtMag - How Many Households Have an #Emergency Plan? | http://t.co/7zlsUmIess http://t.co/TdccH01N7q,1
+4551,emergency%20plan,Ireland,Our builder is having a dental emergency. Which has ruined my plan to emotionally blackmail him this afternoon with my bump.,1
+4553,emergency%20plan,"Calgary, AB","This from The City of Calgary -
+
+City of Calgary has activated Municipal Emergency Plan
+
+The Municipal Emergency... http://t.co/hA5BoppeJy",1
+4556,emergency%20plan,Reddit,http://t.co/F7LJwxJ5jp #GamerGate The end of Reddit is coming. It's time we devise an Emergency Evacuation Plan.,0
+4557,emergency%20plan,"Nashville, TN","Nieces these are especially good for you with the kids.
+
+Megan Swanger Ruthann McCormick Daisy Henley... http://t.co/Dl60JA06TW",0
+4561,emergency%20plan,"Bakersfield, CA",Good tips! Does your family have an emergency plan? ... http://t.co/r5BgVLqPJt http://t.co/MEHWKZwtXD,0
+4562,emergency%20plan,"Calgary, Alberta, Canada",.@CityofCalgary activates emergency plan amid severe thunderstorm warning http://t.co/pc7S8NxJ6Q #yyc #abstorm http://t.co/9xoHmMlMDY,1
+4563,emergency%20plan,Somewhere in the Canada,City of Calgary activates Municipal Emergency Plan - http://t.co/IYs9xWPVMK,1
+4564,emergency%20plan,Nagpur,Govt plan for Rs40000Cr lifeline to FCI waste of money ask people to store grains fr 3_6_12 months fr emergency enough capacity available nw,0
+4565,emergency%20plan,"Los Angeles, CA",Do you know the emergency plan at your workplace? If not ask your supervisor or operations manager. #Retail,0
+4567,emergency%20plan,Surrey & Manchester,NHS England announces new plan to meet emergency care targets http://t.co/0x2BIEqXPV,0
+4568,emergency%20plan,"Calgary,AB, Canada",The City has activated the Municipal Emergency Plan. Primarily stay indoors avoid flooded areas Call 311 for... http://t.co/Ch6E7vTATR,1
+4569,emergency%20plan,,City of Calgary activates Municipal Emergency Plan - 660 NEWS http://t.co/KFBjVJiVQB http://t.co/BN7Xpzqdm0,1
+4571,emergency%20plan,Calgary,Hello Calgary!! Important news!! Please be advised!!! http://t.co/ARKTJ9Qn4S,1
+4573,emergency%20plan,"Fort Myers, Florida",Cool Tips from our friends at Counterstrike Security & Sound.... http://t.co/z5Y4Xr14W6,0
+4575,emergency%20plan,"Atlanta, GA",b/c it costs less to have sick people using emergency rooms?...grrrr.... http://t.co/vFbbcHwrFD,1
+4576,emergency%20plan,Im In Route ,"ÛÏ@based_georgie: yo forreal we need to have like an emergency action plan incase donald trump becomes presidentÛ
+Whipe that lil baby",1
+4577,emergency%20plan,"Madison, WI",@RebeccaforReal accepts Wisconsin Emergency Response Plan on behalf of @GovWalker #nbc15 http://t.co/Pis0aiVRbR,0
+4578,emergency%20plan,Kansas City,Cruise's 'M:I 5' emergency plan: Awesome fail http://t.co/H3dCh6Fyaw,0
+4579,emergency%20plan,North Hastings Ontario,Practice your families fire escape plan so everyone knows what to do in case of an emergency.,0
+4580,emergency%20plan,U.S. Northern Virginia,#Biztip We recommend all businesses to get an alternative source of electricity. #Solar Wind and Batteries. Have an emergency plan! Now!,1
+4582,emergency%20plan,M!$$!$$!PP!,When your body's like 'go to fuck to sleep Sami' and your mind's like 'make an emergency plan for every natural disaster GO',1
+4584,emergency%20plan,Indiana,"Do you have a plan? Emergency Preparedness for #Families of
+Children with Special Needs http://t.co/RdOVqaUAx5 #autism #specialneeds",0
+4585,emergency%20plan,Los Angeles,Senators calling for emergency housing: Boxer Feinstein back plan to move #homeless vets to VA campus http://t.co/Gm80X3vutf,1
+4587,emergency%20plan,"Cochrane, Alberta, Canada",Severe thunderstorm warning remains for #Cochrane. @cityofcalgary has enacted municipal emergency plan after today's storm. #abstorm,1
+4588,emergency%20plan,"Leduc, Alberta, Canada",Can't fix stupid. MT @CBCCalgary Don't drive through flooded underpasses warns city as it enacts Municipal Emergency Plan. #yyc #abstorm,1
+4589,emergency%20plan,,Do you have an emergency drinking water plan? Download guide in English Spanish French Arabic or Vietnamese. http://t.co/S0ktilisKq,0
+4590,emergency%20plan,"Chapel Hill, NC",A big issue left undone is HOW to get home if adverse weather hits. @GoTriangle has no real emergency plan in place https://t.co/s7xdXuudcy,1
+4592,emergency%20plan,,City of Calgary activates municipal emergency plan as more thunderstorms approach http://t.co/8iHucO4GLW,1
+4593,emergency%20plan,"204, 555 11 Ave. S.W.",The Municipal Emergency Plan is now in effect. Stay safe everyone! #abstorm #yyc http://t.co/14CIcptKNa,1
+4595,emergency%20plan,Calgary,Storm concludes City of Calgary's Municipal Emergency Plan deactivated http://t.co/93iaEec26T,1
+4596,emergency%20plan,"Augusta, GA",County 911 Overload Prompts Use of Emergency Plan During July 4 Celebrations http://t.co/HXTUPrA5bc http://t.co/DqxKJibbKy,0
+4597,emergency%20plan,"Dallas, TX",@chrisroth98 @chaselabsports in an emergency situation late in the year. Not as a plan in camp,1
+4598,emergency%20services,,@chillimik @HushLegs haha ??????..Are you really comparing yourselves to the emergency services! Thats brilliant! talk about up your own arse!,0
+4599,emergency%20services,London,@TfLBusAlerts @TfLBusAlerts The Drive in Ilford closed both ways while emergency services deal with a call out. Buses are now stuck.,1
+4600,emergency%20services,,@Glenstannard @EssexWeather do you know where abouts as I heard emergency services near by,1
+4601,emergency%20services,"Torrance, CA",Join the Providence Health & Services team! See our latest #Nursing #job opening here: http://t.co/i3hZemlDpU #Torrance CA #Hiring,0
+4602,emergency%20services,"USA, Alabama",Sustainability Task Force Presents Levy to Fund Emergency Services - WDTV http://t.co/2FiBE2HAXC,1
+4604,emergency%20services,"Olympia, WA",#Nursing alert: Emergency Department Psychiatric RN (.90 FTE Day) | Providence Health & Services | #Olympia WA http://t.co/Yu6NUe7gFB,1
+4606,emergency%20services,"London, UK",I am not an American but I have family who have served in the military work in the emergency services and work in... http://t.co/Pl2VzLrKVK,1
+4607,emergency%20services,,Emergency Services Committee and Personnel Committee Meeting on Thursday Night http://t.co/DrBcRyPj4p,0
+4608,emergency%20services,,We're #hiring! Click to apply: RN II/EMERGENCY SERVICES/FT/7P-7A - http://t.co/NV3Uxv9IMX #Nursing #Houston TX http://t.co/ej30IhrEA9,1
+4609,emergency%20services,"CA, AZ & NV",We're #hiring! Read about our latest #job opening here: RN Nurse Shift Manager Emergency Services - Full time... - http://t.co/sNuBZA6KSC,0
+4610,emergency%20services,"British Columbia, Canada",#veterans VET Act would ensure every military veteran's access to highest level of emergency care services: Proper treatmen... #followme,0
+4611,emergency%20services,Auckland,Emergency services unsure how to cope with loss of paging network http://t.co/UXqKIeqDyf,0
+4614,emergency%20services,,Brooklyn locksmith: domesticate emergency mechanic services circa the clock movement!: gba http://t.co/1Q6ccFfzV6,0
+4616,emergency%20services,"Orange County, NY",Public Hearing on 2015-16 @SUNY_Orange budget Thurs 8/6 at 3:15 Emergency Services Ctr Goshen. http://t.co/80DzgCo6Vc,0
+4617,emergency%20services,"Henderson, Nevada",Apply now to work for Dignity Health as #RN #Emergency Services Full Time 7a-7:30p Siena Campus in #Henderson #jobs http://t.co/FDiU44jLDJ,0
+4619,emergency%20services,"Los Angeles, CA",Want to work in #MissionHills CA? View our latest opening: http://t.co/ZsnSaR1Tw1 #Nursing #Job #Jobs #Hiring,0
+4620,emergency%20services,"Vancouver, British Columbia",Removing tsunami debris from the West Coast: Karen Robinson Enviromental and Emergency services manager of theÛ_ http://t.co/1MeEo3WJcO,1
+4622,emergency%20services,"London, England",The #tubestrike is because TFL workers may have trouble planning downtime. I hope none need emergency services. http://t.co/iCSFDSiFqb,0
+4624,emergency%20services,USA,#Breaking #News - Call for Tasmania's emergency services to be trained in horse ... - http://t.co/urJwsVr311 http://t.co/7JfrETeIi4,1
+4625,emergency%20services,"Nevada, USA",Can you recommend anyone for this #job? RN Emergency Services Full Time 3p - 3\:30a Rose de Lima Campus - http://t.co/xQrLEWiA4x #Hiring,0
+4627,emergency%20services,,Emergency Shutdown Systems - Edmonton http://t.co/F8GvWkFqox,1
+4628,emergency%20services,Alaska,#Healthcare #Job in #Kodiak AK: Emergency Services Supervisor - Emergency... at Providence Health & Services http://t.co/8KJ1wDAiGj #Jobs,0
+4630,emergency%20services,"Whippany, NJ",Air Group is here to the rescue! We have 24/7 Emergency Service! Learn more about it here - http://t.co/9lyx7zMtHE http://t.co/5PbC96rTMJ,0
+4631,emergency%20services,"Seattle, WA",Want to work at Swedish Health Services? We're #hiring in #Seattle WA! Click for details: http://t.co/4KDThCtEmV #Nursing #Job #Jobs,0
+4632,emergency%20services,"Sydney, New South Wales",Goulburn man Henry Van Bilsen missing: Emergency services are searching for a Goulburn man who disappeared from hisÛ_ http://t.co/z99pKJzTRp,1
+4634,emergency%20services,"Olympia, WA",We're #hiring! Read about our latest #job opening here: Emergency Department Psychiatric RN (.90 FTE Day) - http://t.co/zOEpZsOkY1,0
+4635,emergency%20services,"Kodiak, AK",Providence Health & Services: Emergency Services Supervisor - Emergency Department... (#Kodiak AK) http://t.co/AQcSUSqbDy #Healthcare #Job,0
+4637,emergency%20services,"Los Angeles, CA",Want to work in #Tarzana CA? View our latest opening: http://t.co/hkyFKug5zW #Nursing #Job #Jobs #Hiring,0
+4639,emergency%20services,?????,beyond stressed beyond hysteria into the grey misty indifference of complete shutdown of all but emergency services in my brain,0
+4641,emergency%20services,Sydney,Services are returning to normal #SouthLine after a medical emergency at Yennora and urgent track equipment repairs at Cabramatta earlier.,1
+4642,emergency%20services,"Birmingham, England",@swayoung01 Hi I thought that I recognised your smile. I believe that the Emergency Services are the best Performing Arts followers Simon.,0
+4644,emergency%20services,"Park Ridge, Illinois",Our doctors and nurses in the new Pediatric Emergency Department are all specialized in child services! http://t.co/k1TMLWvjmJ,0
+4646,emergency%20services,"Los Angeles, CA",#MissionHills CA #Nursing : Registered Nurse - Emergency Department ( Full Time... at Providence Health & Services http://t.co/Z5grLREy6V,0
+4649,engulfed,"Fredonia,NY",Just saw a car on the I-77 Fully engulfed in flames hahah,1
+4650,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/P6cyLz5lpt http://t.co/Jpu9gIps9f,1
+4655,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/CYzlshlQhG http://t.co/nDiS8f1vzt,1
+4656,engulfed,,He came to a land which was engulfed in tribal war and turned it into a land of peace i.e. Madinah. #ProphetMuhammad #islam,0
+4657,engulfed,"Glendale, CA",#TRAFFICALERT Eastbound 210 Freeway at Citrus Ave in Azusa. Two motorcycles involved in accident with one fully engulfed in flames in lanes,1
+4658,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/ldGWsYoWSs http://t.co/cnYVVY4WAT,1
+4659,engulfed,Kuwait ,He came to a land which was engulfed in tribal war and turned it into a land of peace i.e. Madinah. #ProphetMuhammad #islam,1
+4661,engulfed,,Tube strike live: Latest travel updates as London is engulfed in chaos: Û_ cross-London travel will be accepte... http://t.co/vg8HRbebdA,1
+4664,engulfed,"Fleet/Oxford, UK",just got engulfed in a car-induced tidal wave on my run... I thought this only happened in the movies ????,0
+4666,engulfed,,@FNAF_TalkMC *stands there engulfed in the fire smiling*,0
+4667,engulfed,UK,Tube strike live: Latest travel updates as London is engulfed inåÊchaos http://t.co/xkonKZ0Zl6 http://t.co/dXVtgi1BvO,1
+4669,engulfed,Bahrain,He came to a land which was engulfed in tribal war and turned it into a land of peace i.e. Madinah. #ProphetMuhammad #islam,1
+4670,engulfed,Coventry,Do you feel engulfed with low self-image? Take the quiz: http://t.co/ykVsttvDWo http://t.co/IFQQpUr99X,0
+4671,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/tFan6qq2Ys http://t.co/rAkwWritPo,1
+4672,engulfed,,He came to a land which was engulfed in tribal war and turned it into a land of peace i.e. Madinah. #ProphetMuhammad #islam,0
+4673,engulfed,,michael is engulfed by that jumper,0
+4674,engulfed,Newcastle,Why are you engulfed by low self-image? Take the quiz: http://t.co/CImUbwEyiB http://t.co/9R5FstS7Bd,0
+4675,engulfed,@ ForSL/RP,@godsfirstson1 and she wrapped his coat around herself. It practically engulfed her.,1
+4677,engulfed,"Rochester, NY",When Your Cake Is Engulfed In Flames #LiteraryCakes,0
+4678,engulfed,,#RaheelSharif is manifesting how one RIGHT man at the helm can save a Sinking Ship engulfed in a Dark-Stormy-Tidal-Sea. Well Done.,1
+4679,engulfed,California,Why tf did I decide to workout today? My body feels like it's been engulfed by a mass of fiery disdain.,0
+4680,engulfed,,Do you feel engulfed with low self-image? Take the quiz: http://t.co/YzDmouXQBO http://t.co/PeXfgawrG1,0
+4681,engulfed,Nevada (wishing for Colorado),Man is equally incapable of seeing the nothingness from which he emerges and the infinity in which he is engulfed -- Blaise Pascal,0
+4682,engulfed,"Kokomo, In",Fully Engulfed Garage Fire: Propane Tanks Inside. Sunnymeade Dr.,1
+4684,engulfed,,He came to a land which was engulfed in tribal war and turned it into a land of peace i.e. Madinah. #ProphetMuhammad #islam,0
+4687,engulfed,london,@suelinflower there is no words to describe the physical painthey ripped you apart while you screamed for dear lifeits like been engulfed,0
+4688,engulfed,,@ZachZaidman @670TheScore wld b a shame if that golf cart became engulfed in flames. #boycottBears,0
+4689,engulfed,USA,Car engulfed in flames backs up traffic at ParleyÛªs Summit http://t.co/RmucfjCaZr,1
+4690,engulfed,"Kenosha, WI 53143",Why are you engulfed by low self-image? Take the quiz: http://t.co/I9dSPDKrUK http://t.co/NEp5aZwKNA,0
+4691,engulfed,,He came to a land which was engulfed in tribal war and turned it into a land of peace i.e. Madinah. #ProphetMuhammad #islam,0
+4692,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/zevAn9kJzL http://t.co/UUZFs1L5Kt,1
+4693,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/YfAVSuOgvl http://t.co/ISI1rLLCt0,1
+4694,engulfed,,Men escape car engulfed in flames in Parley's Canyon crews investigating cause - http://t.co/fxdH3U8Bq3 http://t.co/YZHVobGOcQ,1
+4695,engulfed,Coventry,Do you feel engulfed with low self-image? Take the quiz: http://t.co/WPlrhBFHeE http://t.co/eelEx4SSVF,0
+4696,engulfed,London,'Tube strike live: Latest travel updates as London engulfed in chaos' <- genuine baffling Telegraph headline,1
+4697,engulfed,,Lucas Duda is Ghost Rider. Not the Nic Cage version but an actual 'engulfed in flames' badass. #Mets,1
+4698,epicentre,London/Surrey ,@carneross indeed and a remarkably puny idea to place at the epicentre of a new post-capitalism epoch,0
+4699,epicentre,,[Question] Is anybody else having this problem with the '7' circle in Epicentre? http://t.co/dsPWS6hJ8w,0
+4700,epicentre,"Charlotte, NC",Tomorrow kick off your weekend with drinks & entertainment @AliveAfter5 http://t.co/sC4TWJkxr1 http://t.co/yN6DuOtimr,0
+4702,epicentre,San Diego,@elisagxrcia I think of that every time I go to the epicentre haha,0
+4703,epicentre,"Charlotte, NC",This Friday!!! Club Vault 3rd Floor EpiCentre http://t.co/7nU7pRxeul,0
+4704,epicentre,Lagos,#Tanzania elephant population declined by 60% in five years census reveals http://t.co/YxtZbTVMhm http://t.co/7jGgqwbv6S,0
+4705,epicentre,CLT,I need a spot w| some drink specials. I'm kinda tired of the epicentre,0
+4706,epicentre,Africa,RT @calestous: Tanzania elephant population declined by 60% in five years census reveals http://t.co/8zy9N6fX9T http://t.co/ITZ9masBvZ,1
+4707,epicentre,San Diego,September 15 Defeater at the Epicentre hell yeaahh,0
+4708,epicentre,,How a little studio in the middle of nowhere is becoming the epicentre of communication. http://t.co/iCRgseAGYA http://t.co/KpvYmHM2uB,0
+4709,epicentre,,Epicentre - Cydia Tweak - https://t.co/WKmfDig3nT | Thanks to @phillipten.,0
+4710,epicentre,Cydia,[Question] Is anybody else having this problem with the '7' circle in Epicentre? via /r/jailbreak http://t.co/48TPnmbJVG,0
+4711,evacuate,,I feel like if MKayla and Cee ever got in the same room everyone should evacuate because it would be so petty and childish I couldn't deal,1
+4712,evacuate,,CHICAGO (AP) ÛÓ Organizers of Lollapalooza say they are reopening the music festival after the threat of a storm prompted them to evacuate,1
+4713,evacuate,Tallahassee Florida,Learn how to evacuate your home in the event of a #wildfire view videos at http://t.co/bGeRLjamTE #CA #NV #UT #CO #OR http://t.co/sPuHuvgAsy,1
+4714,evacuate,,Disaster control teams are studying ways to evacuate the port area in response to tidal wave warnings.[900037],1
+4715,evacuate,New England,"'So again make sure to evacuate past the fire doors. Any questions? Yes?'
+'Why would we open the doors to the fire!!?!??!?'
+
+I...I..I cant",0
+4716,evacuate,"Waterloo, Ont",When there's a fire alarm going off in zehrs and we keep working for 20 minutes then decide to evacuate everyone..,1
+4717,evacuate,,California 'monster' fire is 20% contained as 13000 are told to evacuate http://t.co/aPTAP6Yx1r,1
+4719,evacuate,,If you did a cannon ball into the ocean then Japan would evacuate.,1
+4720,evacuate,Worldwide,Firefigthers Evacuate from Northampton Township House Fire http://t.co/hPplD1jHtZ,1
+4722,evacuate,17-Feb,Okay I need all of you to evacuate the house so I can write this poem,0
+4723,evacuate,Brisbane,Fire crews evacuate passengers from a Gold Coast tram trapped when powerlines fell across a carriage. #TenNews 5pm http://t.co/hFyrloQY8q,1
+4724,evacuate,"New Britain, CT",Cascada - Evacuate The Dancefloor (Official Video) https://t.co/OHCx3y8l4s via @YouTube,0
+4725,evacuate,,Disregard my snap story there is an angry white girl riot happening as we speak. #evacuate,1
+4726,evacuate,,FWD: I literally jumped out of bed put on beach clothes and ran out my door like I had to evacuate for an apocalypse,0
+4729,evacuate,,Pls can alllll the nittys evacuate stockwell,0
+4730,evacuate,,cancel the fucking show. Evacuate MetLife https://t.co/SkQ8oUcM3R,0
+4731,evacuate,,Condemnation clearly replacing the latest response aimlessly dryer evacuate detersion de: HLg,1
+4732,evacuate,"Chevy Chase, MD",The EFAK would be designed for building occupants once they evacuate and report to their evacuation assembly sites,1
+4734,evacuate,LA - everywhere,Jay and alexis broke up there goes all your faith and goals people... evacuate yourself,0
+4735,evacuate,wrapped arnd hyuk's finger,@joonma_ dealbreaker that's it that's the dealbreaker s.o.s. abandon ship evacuate the building,1
+4736,evacuate,Sevier County.,So all the store's fire alarms went off today at work and we had to evacuate. I was like 'OMG!! I.S.I.S. ITS HAPPENING!!!!',1
+4737,evacuate,,louis is sad. cancel the show now. everyone leave. evacuate. this CANNOT go on.,0
+4738,evacuate,Rochester,No don't evacuate the students just throw them in the dungeon. That is stupid.,0
+4739,evacuate,,The U.S. also flew over each bomb site in World War II with warning letters telling people to evacuate,1
+4740,evacuate,"Gold Coast, Qld, Australia",myGC: Broken powerlines evacuate Gold Coast tram suspend services http://t.co/6e7hHfeRz4,1
+4742,evacuate,,Sooo police dispatch said there was a person threatening to shoot up the Walmart on Rutherford & they had to evacuate,1
+4744,evacuate,,The summer program I worked for went the city pool we had to evacuate because one of my kids left a surprise. @jimmyfallon #WorstSummerJob,0
+4745,evacuate,London UK,US govt refuses to evacuate 1000s of Americans from Yemen https://t.co/wQy3JOKuMH #yemen #usa #evacuation #abandoned,1
+4747,evacuate,Nashville,@ahhtheenikki And from what I can tell- they responded to today's gunman quickly and were able to evacuate all the ppl so no one was shot.,1
+4748,evacuate,FLYEST HIPPIE YOU KNOW ,30 seconds for my bitches to evacuate ??????,0
+4749,evacuate,U.S.A,California wildfires force thousands to evacuate: http://t.co/GFsl2Kwt5h via @YouTube,1
+4750,evacuate,An eight-sided polygon,@pantalonesfuego Yeah I grew up in the canyon above L.A. We had to evacuate a few times.,1
+4752,evacuate,,quick shut down the show take the stage down evacuate everyone from mthe premises Louis is upset,0
+4753,evacuate,Konoha Village,@MeetKakarotto 'Don't bother while you were offline I managed to evacuate everyone out of here including Hinata so so go ahead and cause--,1
+4754,evacuate,"St. Catharines, Ontario",Evacuate from your life.,0
+4755,evacuate,//??//,Tonight is being quite interesting... A few minutes ago the fire system went off and we had to evacuate the building.,1
+4757,evacuate,FSC '19,I just want everyone to know that Emilee was worried I was getting a milkshake when we were supposed to evacuate,1
+4758,evacuate,Û¢901Û¢,AND MY FAM HAD TO EVACUATE BC WE NEED POWER,1
+4759,evacuate,"London, England",Wow. #FIFA16 has Pre Season Tournaments in Career Mode. Bloody hell evacuate the building #whocares,0
+4760,evacuate,,Perhaps the criminal murderous #nazis should pack their bags & evacuate themselves from London & all #UK? #TubeStrike WELL DONE!,0
+4762,evacuated,,Does anyone know why #murfreesboro #walmart was evacuated this evening? @dnj_com,1
+4765,evacuated,"Chicago, IL",Green line service on south side disrupted after CTA train derails passengers evacuated. http://t.co/6eZkoof2Xt http://t.co/faCM78eg7K,1
+4766,evacuated,Gold Coast,Powerlines down over tram on GC Highway. Passengers have just been evacuated @9NewsBrisbane @9NewsGoldCoast http://t.co/KD3Qsakbi5,1
+4768,evacuated,"Portland, Oregon",Red Cross re-opens shelter at Bickleton School after 25 homes evacuated in & around Roosevelt WA due to wildfire. #LiveOnK2,1
+4769,evacuated,"Portland, Ore. ",New evacuation ordered for 25 homes in danger of Hwy. 8 fire near Roosevelt Wash. http://t.co/SQsyUeh4yI #KOIN6News http://t.co/199t7ND0pm,1
+4770,evacuated,Florida,They evacuated the mall. Again. ??,1
+4771,evacuated,,More than 300 campers evacuated as California wildfire blazes on officials say http://t.co/wwgAdpFFkW,1
+4773,evacuated,North West England UK,"Trafford Centre film fans angry after Odeon cinema evacuated following false fire alarm:
+ Twitter users tell ... http://t.co/dZLENSe1Gw",1
+4774,evacuated,"Denver, Colorado",13000 evacuated as California firefighters fight flames to save homes. #RockyFire http://t.co/tB52o146tx http://t.co/tsbTiGDSDT,1
+4775,evacuated,"Manchester, UK",Trafford Centre film fans angry after Odeon cinema evacuated following false fire alarm http://t.co/pFMn63VnAm http://t.co/vKwqbOJFJc,1
+4777,evacuated,Midwest,Rocky fire in Northern California swells to 60000 acres; 12000 evacuated http://t.co/42gW2i2Q41 Portland #Phoenix #Miami #Atlanta #Casper,1
+4778,evacuated,Manchester UK,Trafford Centre film fans angry after Odeon cinema evacuated following false fire alarm: Twitter users tell ofÛ_ http://t.co/PZeiXi4Xk7,1
+4779,evacuated,"TV5, Philippines",5 dead 3 missing 103 families evacuated due to floods in Bukidnon: ... http://t.co/z0hSckvySN,1
+4782,evacuated,"Hackney, London",@missleylaha I didn't get to buy one after the last London show because the fire alarm went off and everyone had to be evacuated. hahahaha,0
+4783,evacuated,"Nashville, TN",Just got evacuated from the movie theatre for an emergency. Saw people running from another they're.,1
+4784,evacuated,,#WorldNews Fallen powerlines on G:link tram: UPDATE: FIRE crews have evacuated up to 30 passengers who were tr... http://t.co/EYSVvzA7Qm,1
+4785,evacuated,"Queensland, Australia",Passengers evacuated & lanes blocked off as power lines come down over a Gold Coast tram @9NewsGoldCoast http://t.co/zZweEezJuG,1
+4786,evacuated,,ALERT! Sandy Hook Elementary School Evacuated After Û÷Bomb ThreatÛª http://t.co/LwLexXjUS8,1
+4787,evacuated,"Harpurhey, Manchester, UK",Trafford Centre film fans angry after Odeon cinema evacuated following false fire alarm http://t.co/6GLDwx71DA,0
+4788,evacuated,"Portland, Oregon",Evacuation orders lifted for Roosevelt in Highway 8 fire. http://t.co/e2HltYyFAk #koin6news http://t.co/pmxEzUo4AY,1
+4789,evacuated,"Benton City, Washington",Our thoughts are with these local residents! Time for some heavy rain!!! http://t.co/x3g2OX6K8R,1
+4790,evacuated,Manchester,"Trafford Centre film fans angry after Odeon cinema evacuated following false fire alarm:
+ Twi... http://t.co/RYEQMxIrj8 #manchesterlite",1
+4791,evacuated,"Chicago, but Philly is home",78 passengers evacuated safely after Green Line train derails. http://t.co/KzBSOhtwB4,1
+4793,evacuated,,Hotel evacuated after fire on Shore Drive in Norfolk http://t.co/6X0xHlbxji,1
+4794,evacuated,,@115Film Doctor we must leave immediately the Core is unstable...The whole building is told to be evacuated. Take the research. We need...,1
+4795,evacuated,Breaking News,Evacuation order lifted for town of Roosevelt - Washington Times http://t.co/Kue48Nmjxh,1
+4797,evacuated,seoul,Rocky Fire http://t.co/wxhMp5ppjq,1
+4798,evacuated,,Ahrar Al Sham: In our negotiations with Iran over Al Zabadani they wanted all Sunnis evacuated out of Al Zabadani!,0
+4799,evacuated,WA State,Entire town of Roosevelt Wash. evacuated because of wildfire http://t.co/CmwEIojJ55,1
+4800,evacuated,"Hensley Street, Portland",KATUNews: #SR14 remains closed as brush fire burns 1700 acres: http://t.co/QposKp3MWj #LiveOnK2 http://t.co/mTQjsvupwy,1
+4802,evacuated,,Good thing there was actually just a legit fire in the mall and nobody evacuated!!,1
+4803,evacuated,MIchigan,Is it seclusion when a class is evacuated and a child is left alone in the class to force compliance? #MoreVoices,1
+4807,evacuated,West,Rocky fire in Northern California swells to 60000 acres; 12000 evacuated http://t.co/mtfnbhRYZq Portland #Phoenix #Miami #Atlanta #Casper,1
+4808,evacuated,,"I got evacuated from the cinema 30 mins through Inside Out
+Kill me please",0
+4809,evacuated,Everywhere,Gold Coast tram hit by fallen powerlines: UP to 30 people have been evacuated from a tram on the Gold Coast af... http://t.co/xpPQnYHiWC,1
+4810,evacuated,"Gold Coast, Australia",Tram travellers evacuated after powerlines come down in Surfers http://t.co/Qsheu3yF0W,1
+4812,evacuation,,FAAN orders evacuation of abandoned aircraft at MMA: FAAN noted that the action had become necessary due to re... http://t.co/ZUqgvJnEQA,1
+4813,evacuation,"Portland, Oregon",#Breaking: Authorities have issued new mandatory evacuation notices for 25 homes to the North of the fire in #Roosevelt WA,1
+4814,evacuation,,FAAN orders evacuation of abandoned aircraft at MMA http://t.co/dEvYbnVXGQ via @todayng,0
+4819,evacuation,Washington,Roosevelt Wash. under evacuation order due to wildfire http://t.co/FiJAPxyKRQ,1
+4820,evacuation,"Eureka, California, USA",Humboldt Cty Sheriff's Office has issued an evacuation advisory for 10 residence in the Lassics area... more info at http://t.co/ERUzBUQZYU,1
+4821,evacuation,"Lagos, Nigeria",FAAN orders evacuation of abandoned aircraft at MMA http://t.co/GsOMtDPmoJ,1
+4823,evacuation,,VIETNAM WAR PATCH US 71st EVACUATION HOSPITAL HIGHLAND MEDICS http://t.co/kIF7M3FQLx http://t.co/Oz6vlWwTNR,1
+4825,evacuation,,. @VELDFest announces refunds after Day two's extreme weather evacuation: http://t.co/PP05eTlK7t http://t.co/3Ol8MhhPMa,1
+4826,evacuation,Sydney Australia,Our mission to see the end of this movie last night @markoturner @annaciclismo after getting fire alarm evacuation http://t.co/5kFOVovjso,1
+4828,evacuation,"Bend, Oregon",Update: Bend FD says roofing co. workers accidentally cut through natural gas line in Post Office leading to evacuation for about a half-hr,1
+4829,evacuation,"Bend, Oregon",Evacuation Advisory for Swayback Ridge Area..voluntary-InciWeb:Mad River Complex Announcement http://t.co/vN73o4SGzJ #wildfires #calfires,1
+4830,evacuation,,Run out evacuation hospital indexing remedial of angioplasty dissertation at power elite hospitals dismayed:Û_ http://t.co/VGvJGr8zoO,1
+4831,evacuation,"Chevy Chase, MD",So the IFAK is an 'individual first aid kit' to treat a single trauma victim I think I should create the EFAK or evacuation first aid kit,1
+4832,evacuation,"Na:tinixw / Hoopa, Berkeley","Elem Pomo helping the displaced from the Rocky Fire. Please consider!
+Elem Evacuation Center http://t.co/dYDFvz7amj via @gofundme",1
+4833,evacuation,USA,Bend Post Office roofers cut gas line prompt evacuation - http://t.co/6mF7eyZOAw,1
+4834,evacuation,"Minna, Nigeria",FAAN orders evacuation of abandoned aircraft at MMA: FAAN noted that the action had become neces... http://t.co/tlS40nqiPN Via @todayngr,1
+4835,evacuation,EIU Chucktown/LaSalle IL,@Eric_Bulak @jaclynsonne @_OliviaAnn_ I was looking for you guys on the live stream. I'm guessing the evacuation cost you the front?,0
+4836,evacuation,UK,FAAN gives owners of abandoned aircraft evacuation ultimatum http://t.co/zZpojgngAJ via @dailytimesngr. They should probe them too!,1
+4840,evacuation,Northern California U.S.A.,Updated #RockyFire map with Mandatory Evacuation areas (red) Advisory Evacuation (yellow) 2 Evac Centers (green) https://t.co/gZEgjoAKKw,1
+4842,evacuation,"Yellowknife, NT",UPDATE: The GNWT has just issued a voluntary evacuation order for cabin owners at Pickerel Lake near the Reid... http://t.co/RVSYxwj9Cp,1
+4843,evacuation,"Bend, Oregon",Evacuation order lifted for town of Roosevelt Wash. though residents warned to be ready to leave quickly http://t.co/Na0ptN0dTr,1
+4844,evacuation,"Renfrew, Scotland",@batfanuk we enjoyed the show today. Great fun. The emergency non evacuation was interesting. Have a great run.,0
+4845,evacuation,"sydney, australia",my school just put the evacuation alarms on accidently with 2 different trial exams happening are you kidding me,0
+4846,evacuation,United States,Walking down the middle of Michigan Ave last Sunday during #Lolla evacuation 2015 https://t.co/YrfZ5WJ7R2,1
+4847,evacuation,"ÌÏT: 43.631838,-79.55807",INK Entertainment Addresses Veld Evacuation and Refund Status http://t.co/vKu3RtOZ1J #TRC via @TorontoRC,0
+4848,evacuation,Yellowknife,ÛÏA voluntary evacuation is being recommended at this timeÛ for Pickerel Lake cabins across highway from #Reidlake fire says MACA #NWT #YZF,1
+4849,evacuation,"US: 44.414510,8.942499",IbrahimMisau : FAAN orders evacuation of abandoned aircraft at MMA http://t.co/5Zcje7arci (via Twitter http://t.co/haVXoBcSVU),1
+4850,evacuation,"Tri-Cities, Wash.",Evacuation order lifted for town of Roosevelt: http://t.co/EDyfo6E2PU http://t.co/M5KxLPKFA1,1
+4852,evacuation,"Bend, Oregon",Update: More from Bend FD on how a natural gas line cut prompted evacuation of the main Post Office this afternoon http://t.co/wMmkIrJ0Hw,1
+4853,evacuation,"Portland, Ore. ",New evacuation ordered for 25 homes in danger of Hwy. 8 fire near Roosevelt Wash. http://t.co/SQsyUeh4yI #KOIN6News http://t.co/199t7ND0pm,1
+4854,evacuation,,Reid Lake fire prompts campground evacuation order http://t.co/jBODKM6rBU,1
+4856,evacuation,,"This is an evil generation
+Rock and roll evacuation!
+As far as the eye can see!
+(Hey hey hey hey!)",0
+4857,evacuation,The Empire/First Order,@ariabrisard @leiaorganasolo Good. Play along with her. You may begin your operation with the death star. The evacuation is nearly complete.,0
+4858,evacuation,"Brisbane, Queensland",Evacuation drill at work. The fire doors wouldn't open so i got to smash the emergency release glass #feelingmanly,0
+4859,evacuation,USA,Evacuation order lifted for Roosevelt after #Wildfire misses town - KOMO News http://t.co/qCpMktGLLR,1
+4860,evacuation,"Moncton, New Brunswick",Gas leak forces evacuation in east Saint John http://t.co/E1vkc2efsT #NB http://t.co/BeUa507Iug,1
+4864,explode, |IG: imaginedragoner,If Ryan doesn't release new music soon I might explode,0
+4866,explode,,Learn How I Gained Access To The Secrets Of The Top Earners & Used Them To Explode My Home Business Here: http://t.co/SGXP1U5OL1 Please #RT,0
+4867,explode,,@NoahCRothman Bore him with minutiae serve bad champagne. He may just explode.,0
+4868,explode,London / Berlin / Online,'I eat because it makes my mouth explode with joy and my soul rise upwards.' ~ http://t.co/mOdM8X1Ot9 http://t.co/oSsC7Q12iR,0
+4869,explode,"Williamsburg, VA",Housing Starts Explode to NewåÊHeights http://t.co/IGlnQpgbNW http://t.co/aOesBVns45,0
+4870,explode,,@Annealiz1 You are going to make the internet explode with this Dr. Simon. O_o ... Was he alone or was there a red-head nearby? LOL,0
+4872,explode,emily | helen | shelley ,@attjcdemos @folieacat well we all knew her old user was like a timebomb ... destined to explode :/,0
+4874,explode,"New Orleans, Louisiana",See these guys reaching the front foot out loading the shoulders and spinning? Neither do I! #hitting #load&explode http://t.co/6VeI1mheA4,0
+4875,explode,"Yamaku Academy, Class 3-4","KS except every character is Shizune.
+The world would explode.",0
+4876,explode,,Whether you like it or not everything comes out of the dark be ready for that shit to explode ??,0
+4877,explode,Australia,It's cold and my head wants to explode.. The joys of working from home - I'm going back to bed / peace out ????,0
+4878,explode,"Spring Grove, IL",If Schwarber ran into me going that fast I would explode into pieces,0
+4879,explode,The Windy City,"Is he about to crash?
+Did the Queen die?
+Did something explode?
+Who knows. http://t.co/LThMwtl5fP",1
+4881,explode,,i swea it feels like im about to explode ??,0
+4882,explode,"Washington, D.C.",Kendall Jenner and Nick Jonas Are Dating and the World Might Quite Literally Explode http://t.co/pfvzVPxQGr,1
+4883,explode,"Oklahoma City, OK",my brain id about to explode lmao,0
+4884,explode,"Bloomington, IN",After having two cans explode I wanted to drink the rest but these ... (Kaldi Coffee Stout) http://t.co/u6isXv2F3V #photo,0
+4887,explode,,Learn How I Gained Access To The Secrets Of The Top Earners & Used Them To Explode My Home Business Here: http://t.co/UcLVIhwOEC Please #RT,0
+4888,explode,"Yamaku Academy, Class 3-4","Versions of KS where if a character was /every/ character world would explode.
+
+Rin
+Shizune
+Misha
+Emi
+Kenji
+Yuuko
+Nomiya
+Hisao",0
+4889,explode,United States,Philadelphia EaglesÛª Jordan Matthews Is Going To Explode In 2015 http://t.co/rRq1ildkiL #news #hotnewscake,0
+4890,explode,"Whitby, ON",I'm about to explode ????,0
+4891,explode,,Learn How I Gained Access To The Secrets Of The Top Earners & Used Them To Explode My Home Business Here: http://t.co/8rABhQrTh5 Please #RT,0
+4892,explode,Kajang ? UiTM Puncak Alam,My head gonna explode soon,0
+4893,explode,"Dallas, TX",@deniseromano @megynkelly @GOP That's one way to make their heads explode...,0
+4894,explode,,Block the plate with a charging Schwarber coming down the line Cervelli. I dare you. You would explode into a little puff of smoke,0
+4895,explode,,@allen_enbot If you mess up it's gonna explode...,1
+4896,explode,? Philly Baby ?,My brains going to explode i need to leave this house. Ill be out smoking packs if you need me,0
+4897,explode,"Cleveland, TN",VINE OF THE YEAR OH MY GOD I AM ABOUT TO EXPLODE https://t.co/cnxXmfFRae,0
+4898,explode,they/them,"tagged by @attackonstiles
+
+millions
+a-punk
+hang em high
+alpha dog
+yeah boy and doll face
+little white lies
+explode http://t.co/lAtsSUo4wS",0
+4899,explode,,Learn How I Gained Access To The Secrets Of The Top Earners & Used Them To Explode My Home Business Here: http://t.co/e84IFMCczN Please #RT,0
+4900,explode,my deli,what if i want to fuck the duck until explode. it could be greasy,0
+4901,explode,,All these people explode ????,0
+4903,explode,,Learn How I Gained Access To The Secrets Of The Top Earners & Used Them To Explode My Home Business Here: http://t.co/dHaMbP54Ya Please #RT,0
+4905,explode,,@Anonchimp think its a tie with thunderstorms tho they make my soul explode...,0
+4906,explode,,My head is gonna explode,0
+4908,explode,Winnipeg,I'm ready to explode! http://t.co/OwJe3i6yGN,0
+4909,explode,New Hampshire,@DelDryden If I press on the twitch will my head explode?,0
+4910,explode,,Toronto going crazy for the blue jays. Can you imagine if the leafs get good? The city might literally explode.,0
+4911,exploded,,Chick masturbates a guy until she gets exploded on her face > http://t.co/5QhoeHE9hf,1
+4912,exploded,Trost District,@CrimsonFuckingV @BitchL0veCannon Even you have to admit Seras that Sasha was a cute peice of ass. Then she exploded all over the sidewalk.,0
+4913,exploded,?????? in Yokohama Japan,Kakeru Teduka: Bfore 70years of today in Hiroshima it's exploded the one atomic bomd. It is so sad day.http://t.co/8Vzl1ns2iO,1
+4914,exploded,London,A tin of Tesco dog food 'exploded' and prompted THIS complaint - via @chelsea_dogs #pets #dogs #animals #puppy http://t.co/QzvKPaHsQ7,0
+4915,exploded,LFC x GSW,@KopiteLuke1892 Its broken its fully exploded.,1
+4917,exploded,,Im Dead!!! My two Loves in 1 photo! My Heart exploded into a Million Pieces!!! ?????????????? @BrandonSkeie @samsmithworld http://t.co/yEtagC2d8A,0
+4918,exploded,,The Dress Memes Have Officially Exploded On The Internet http://t.co/3drSmxw3cr,1
+4919,exploded,"Chicago, IL",Final #Medinah update: shot a 105. 49 on front (exploded with a) 56 on back. #ImKeepingMyDayJob (pic is famous #17) http://t.co/kcmbBwwp8G,1
+4920,exploded,"Elmwood Park, NJ",Well as I was chaning an iPad screen it fucking exploded and glass went all over the place. Looks like my job is going to need a new one.,0
+4922,exploded,USA,The Dress Memes Have Officially Exploded On The Internet http://t.co/yG32yb2jDY,0
+4923,exploded,,My little heart just exploded #OTRAMETLIFE #MTVHottest One Direction https://t.co/pQsLUg4jK5,0
+4924,exploded,Australia,Junko was 13 years old when the atomic bomb exploded over #Hiroshima on August 6 1945. http://t.co/lSpnyCVoLO http://t.co/Nh5pkFBfqm,1
+4926,exploded,South east of U.K,Just saw The Man Whose Mind Exploded. There should be a Drako Zarharzar day.,0
+4929,exploded,,I read about that break for hours before twitter noticed it and I though that is nothing to worry about bc twitter wasn't exploded bc of it,0
+4931,exploded,,"that exploded & brought about the
+beginning of universe matches what's
+mentioned in the versethe heaven and Earth
+(thus the universe)",0
+4934,exploded,USA,If you told me ten years ago that I'd be seeing anime on the big screen... ...I probably would have exploded,0
+4935,exploded,,The Dress Memes Have Officially Exploded On The Internet http://t.co/iBsVy2R3PH,0
+4936,exploded,,Reasons @BlueWestlo has exploded on @YouTube #38745: https://t.co/Upgd2cy9il,0
+4938,exploded,lrhcthband;four - bournemouth,luke + microphone = exploded ovaries,0
+4940,exploded,"Oakland, Ca",holy crap @KingMyth1999 my phone just exploded. haha,0
+4943,exploded,Antigua ?? NYC ,Did this man just squeeze another man's head with his bare hands until it literally exploded ???????,0
+4944,exploded,Jamaica,@ItsNasB now I have to go replace my sarcasm meter which just exploded. -__-,0
+4945,exploded,zboyer@washingtontimes.com,Kai Forbath just demolished a weather station set up on a drill field with a missed field goal. Thing just exploded into metal bits.,1
+4946,exploded,,"@MeryCormier haha! Exactly! Cosima is definitely in the hot seat. Lol
+'It's Shay.' is no different from a bomb that got exploded.",0
+4948,exploded,WonderlandÛÓ ?????? ???? ??????,My head exploded i swear,0
+4951,exploded,,Yumiko jumped in surprise as the fire shot upwards into the air and exploded caught off guard~ 'woah...' She had--( @LenkaIsWaifu ),0
+4952,exploded,,"that exploded & brought about the
+beginning of universe matches what's
+mentioned in the versethe heaven and Earth
+(thus the universe)",0
+4953,exploded,elizabeth king,oh yeah my ipod almost exploded last night i was using it while charging and shit was sparking akxbskdn almost died,1
+4954,exploded,Germany,"@lunasagalle @synapsenkotze
+'The Exploded - Bean the Bastard'",0
+4955,exploded,,#dating #meet #sex Hot Teen Ass Exploded By Fat Cock http://t.co/X39JwSyrqR,0
+4957,exploded,,#news #science London warship exploded in 1665 because sailors were recycling artillery cartridges... http://t.co/r4WGXrA59M #life #tech,1
+4958,exploded,,@OKgooner hahaha great song. 'Spent 15 years getting loaded. 15 years till his liver exploded. Now what's Bob going to do NOW that he...',0
+4959,exploded,,Worked at a fast food joint. Poured burnt hot oil down the sink. It hit the water in the trap and exploded. @FallonTonight #WORSTSUMMERJOB,0
+4961,explosion,New York,New Explosion-proof Tempered Glass Screen Protector Film for Blackberry Z10 - Full read byÛ_ http://t.co/ModqNaLWsB http://t.co/4C58oOaVhY,0
+4962,explosion,"London, UK",EE recalls Power Bar phone chargers after explosion burns woman ÛÒ The Register http://t.co/lhTvKcoISo,1
+4964,explosion,,Another Mechanical Mod Explosion: Man Injured When a 'Pharaoh' Mod Blows Up in His Hand - http://t.co/O82yVXbztv http://t.co/N5KmxuVeRg,1
+4966,explosion,,Report: Corey Brewer was drug tested after 51-point explosion http://t.co/HhlLQCkcEP,1
+4967,explosion,,Young dancer moves about 300 youth in attendance at the GMMBC Youth Explosion this past Saturday. Inspiring! http://t.co/TMmOrvxsWz,1
+4968,explosion,"London, United Kingdom",Around 10 injured in explosion in chemical park in western Germany... http://t.co/XBznU0QkVS,1
+4969,explosion,Germany,I liked a @YouTube video http://t.co/bGAJ2oAX1p Huge Building Explosion at 2500fps - The Slow Mo Guys,1
+4970,explosion,,Large explosion rocks aluminum plant in southeast Missouri Re:Naomi-No Logo http://t.co/0WdsEIHYQu,1
+4971,explosion,"Chicago Heights, IL",...don't think I've ever been this close to a mental explosion in so long,0
+4972,explosion,,GAElite 0 Explosion Greg 2 [Top 3rd] [0 Out] [0 balls] [0 strikes] ... No one on [P: #16 Morgan Orchard] [B: ],1
+4973,explosion,,ITS A TIE DYE EXPLOSION ON IG HELP ME. IM DROWNING IN TIE DYE,1
+4974,explosion,,Exploring New Worlds: Three Moments of an Explosion by China Mi̩ville http://t.co/OTrwZ1t9sp http://t.co/xVlkFCvfX5,1
+4975,explosion,S.F. Bay area,MORE-->OSHA officers on siteinvestigating Noranda explosion -KFVS12 News Cape Girardeau Carbondale Poplar Bluff http://t.co/Pxyh7zo7vT,1
+4978,explosion,,"A Time-Lapse Map of Every Nuclear Explosion Since 1945 - by Isao Hashimoto #War #atomicbomb
+https://t.co/V0t8H4Iecc",1
+4979,explosion, Blood Indian Reserve,@KirCut1 lets get a dope picture together and have the dopest explosion ????,0
+4980,explosion,,Big Data and Social Information explosion: The Union That Could Evolve Your Retail Strategy...HUa,0
+4981,explosion,,Aspiring musician & song writer shares her talent at the GMMBC Youth Explosion on this past Saturday. http://t.co/OmjMTU9kFG,0
+4982,explosion,,@colinhoffman29 I hope he does. And I hope you die in the explosion too,1
+4983,explosion,"Columbus, OH",A Pyrotechnic Artwork by Cai Guo-Qiang Explodes into a Blossom on the Steps of the Philadelphia... http://t.co/orOvZFsKU2,1
+4984,explosion,"Chicago, IL",@AminESPN Mencius tears are worse correct? Takes the explosion n more pain day to day right?,0
+4985,explosion,On the toilet having a dump ,@lordRsBiscuits That's always good for a pretty explosion.,1
+4986,explosion,,New Explosion-proof Tempered Glass Screen Protector Film for Blackberry Z10 - Full read byÛ_ http://t.co/tOYU16mxBO http://t.co/P10hNDc0Mm,0
+4988,explosion,"City of London, London",EE recalls Power Bar battery packs after explosion in student's bedroom http://t.co/EKWTiHlwuf,1
+4989,explosion,,"#cum explosion!
+
+@begforcum
+@allday_cumshots
+@cumcovered
+@sexycumshots
+@Cumtown
+@BJ_Nutt
+@cumslut_2
+@GirlsLoveCum http://t.co/2CX1yjjoZ9",0
+4990,explosion,,Saddle with accountable information explosion tips pro preferable financial top brass: tawFMCAw,0
+4992,explosion,New York,New Explosion-proof Tempered Glass Screen Protector Film for Blackberry Z10 - Full read byÛ_ http://t.co/z4IlB9y9nU http://t.co/j295MD1SOW,0
+4993,explosion,New York,New Explosion-proof Tempered Glass Screen Protector Film for Blackberry Z10 - Full read byÛ_ http://t.co/SD7lOww9nu http://t.co/7hKavTVx81,0
+4995,explosion,,Did you miss the #BitCoin explosion - Don't miss out - #Hangout tonight at 8:30PM EST ===>>> http://t.co/qKaHXwLWXa,0
+4996,explosion,,kindermorgan gas explosion,1
+4997,explosion,Florida,"#Tampa: Super Freestyle Explosion Live in Concert at Amalie Arena - Sep 19
+? Ticket Info: http://t.co/ooGotO76uZ",0
+4998,explosion,"Long Island, NY",We found a sunflower explosion on our walk. http://t.co/vLNmkLWWby http://t.co/P769eo49Fj,1
+5000,explosion,,Was in a bad ass mood today got on the elevator at school and decided to make explosion noses everytime some one pressed a button ??,0
+5001,explosion,,Checkout all the NURGLE rules & features that snuck in on Khrone's WD! http://t.co/he7Q7H3nZf http://t.co/rpvZBEsUQJ,0
+5002,explosion,New York,New Explosion-proof Tempered Glass Screen Protector Film for Blackberry Z10 - Full read byÛ_ http://t.co/hQZFcXxRsB http://t.co/0VWPdIzckO,0
+5004,explosion,Palestine Texas,"You Are Invited to The Expo Explosion Summer Event 2015!
+WHEN: August 14th Friday 2015
+WHERE: Ben E Keith... http://t.co/yh4R7Ug21a",1
+5005,explosion,,The gusto in persist had amongst empty-pated communication explosion: hPSsJD,1
+5007,explosion,,"The insides of the explosion box..
+Get it customized the way you want!
+
+#dcubecrafts #greetingcardsÛ_ https://t.co/T07qxP5cBE",0
+5008,explosion,,For those that were interested in the gun powder art discussed at the end of 'Introduction to Theological Aesthetic' http://t.co/BZ3iR4GMWj,0
+5010,explosion,"Kauai, Hawaii",The government is concerned about the population explosion and the population is concerned about the government explosion. - Joe Moore,0
+5013,eyewitness,,Remembering Pittsburgh Eyewitness History of Steel City by Len Barcousky PB Penn http://t.co/dhGAVw8bSW http://t.co/0lMhEAEX9k,0
+5015,eyewitness,East London. ,@Squibby_ I am an eyewitness HA,0
+5016,eyewitness,,Eyewitness Identification via reddit http://t.co/bQV3QtTuxR http://t.co/0DrqlrsGY5,0
+5017,eyewitness,Rhode Island,WPRI 12 Eyewitness News Rhode Island set to modernize its voting equipment WPRI 12 EyewitnessÛ_ http://t.co/aP9JBrPmQg,0
+5018,eyewitness,Jammu and Kashmir,"Eyewitness accounts of survivors of Hiroshima gleaned from a
+number of oral history projects https://t.co/yRQGNbLKaC",1
+5019,eyewitness,canada,Dutch crane collapses demolishes houses: Dramatic eyewitness video captures the moment a Dutch crane hoisting... http://t.co/dYy7ml2NzJ,1
+5022,eyewitness,,#Eyewitness media is actively embraced by #UK audiences. Read the report by @emhub on the impact of #UGC in news: http://t.co/6mBPvwiTxf,0
+5024,eyewitness,United States,Read an eyewitness account from #Hiroshima from this day in 1945 http://t.co/njAffyjaRz http://t.co/1xHSuEwQn4 #LIFE,1
+5025,eyewitness,,Interesting approach but doesn't replace Eyewitness video. The Ferguson Case - Video - http://t.co/vEcsoSRleR http://t.co/fiUOgj6hEF,1
+5027,eyewitness,"Terlingua, Texas",#ClimateChange Eyewitness to Extreme Weather: 11 Social Media Posts that Show Just How Crazy Things A... http://t.co/czpDn9oBiT #Anarchy,1
+5028,eyewitness,"Chicago, IL",@kaputt21 Hamburg Police Chief Gregory Wickett has told 7 Eyewitness News he 'can't confirm or deny' an investigation is underway.,0
+5029,eyewitness,Somewhere in Jersey,I liked a @YouTube video http://t.co/YdgiUYdqgb Mini Pony packs a punch. Live report from the Salem County Fair on CBS3 Eyewitness,0
+5032,eyewitness,Stay Fly?,Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL TeamÛ_ http://t.co/NXtWXJCAVh http://t.co/oL8ESFRGLE,1
+5033,eyewitness,,The Civil Rights Movement (Eyewitness History Series) Wexler Sanford Hardcover http://t.co/kK0qFKGqcY http://t.co/SMc1Ro09Fs,0
+5034,eyewitness,,How ÛÏLittle BoyÛ Affected the People In Hiroshima ÛÒ Eyewitness Testimonials http://t.co/mUAnfWcRW9,1
+5035,eyewitness,india,Read a SchoolboyÛªs Eyewitness Account of Hiroshima http://t.co/pq0D7MH3qr,1
+5037,eyewitness,Philippines,Read an eyewitness account from #Hiroshima from this day in 1945 http://t.co/QUEDV2xxxX #LIFE,1
+5038,eyewitness,"Orlando, Fl",WFTV Eyewitness News: TN school psychologist arrested in Florida on child porn charges http://t.co/lgGLf5yrMe,0
+5039,eyewitness,"Bakersfield, California",Wake Up Kern County Eyewitness News Mornings airing RIGHT NOW on KBAK CBS29. http://t.co/rorKtMpqNs #liveonKBAK http://t.co/eDznX6GOud,1
+5040,eyewitness,"Washington, DC",On anniversary of Hiroshima bombing illustrated timeline of bombings. Eyewitness account particularly horrifying http://t.co/GZIb0mAwmn,1
+5041,eyewitness,Los Angeles... CA... USA,"Aug. 06 2015 Radio Show articles ÛÒ
+1] Eyewitness Account of Abortion Organ Harvesting by Planned Parenthood: http://t.co/49izkbOHri",0
+5043,eyewitness,,DK Eyewitness Travel Guide: Denmark: travel guide eBay auctions you should keep an eye on: http://t.co/qPUr3Vd7Hl,0
+5044,eyewitness,,DK Eyewitness Travel Guide: Denmark: travel guide eBay auctions you should keep an eye on: http://t.co/l9EKHNkBar,0
+5046,eyewitness,UK,RT patrickjbutler: Excellent damiengayle eyewitness account of Kids Company closure: 'You drop the bomb and expectÛ_ http://t.co/pHH1VmLfoo,1
+5047,eyewitness,,Monkeys Abused by Notorious Laboratory Dealer | A PETA Eyewitness Invest... https://t.co/QGqlpmRfJd via @YouTube,0
+5049,eyewitness,Pennsylvania,A true #TBT Eyewitness News WBRE WYOU http://t.co/JHVigsX5Jg,0
+5050,eyewitness,,DK Eyewitness Travel Guide : Chicago by Dorling Kindersley Publishing StaffÛ_: travel books eBay auctions you s... http://t.co/tj3LtPZfW1,0
+5052,eyewitness,South Africa,It's lights out again with stage-two load shedding: Stage-two load shedding will be in force between 5pm and 10pm. http://t.co/vxVfAEEY0q,0
+5055,eyewitness,,DK Eyewitness Travel Guide: Denmark: travel guide eBay auctions you should keep an eye on: http://t.co/xpwkodpqtO,0
+5056,eyewitness,"Orlando, Fl",WFTV Eyewitness News: FBI: Man who stole US secrets 'married' Honduran minors for sex http://t.co/NdwEp6IZDQ,0
+5059,eyewitness,"New York, NY",Freed #BokoHaram captives speak up: ÛÏI will make sure she goes to school.' @guardian http://t.co/PK8dgVripw http://t.co/RZ0adzursW,0
+5060,eyewitness,South Africa,'I tried to save Mido Macia': One of the murder accused has testified he tried to save Mido MaciaÛªs life. http://t.co/vxVfAEEY0q,0
+5061,famine,,Russian 'food crematoria' provoke outrage amid crisis famine memories: MOSCOW (Reuters) - Russian government ... http://t.co/Mphog0QDDN,1
+5062,famine,Florida but I wanna be n Texas,@OCT336 guys these bitches ain't famine then ??,0
+5063,famine,"New York, USA",'Food crematoria' provoke outrage amid crisis famine memories... http://t.co/fABVlvN5MS,1
+5064,famine,"Kyiv, Ukraine",#Russia 'food crematoria' provoke outrage in country w/soaring poverty +Soviet famine memory http://t.co/vymOuZjZRe http://t.co/eNRJh5Qkve,1
+5065,famine,,Hunger hits me and I can't function probably wouldn't last long in famine zones***thank God***,0
+5067,famine,,According to a 2011 Gallup poll the more money you have the more likely you are to suffer from time famine.? AriÛ_ http://t.co/QdmVTJ4lZJ,0
+5068,famine,JamDung,Ppl like unu feast today and famine tomorrow,0
+5069,famine,PanamÌÁ ,"Top 3:
+* Turn on the Darkness
+* King Redeem - Queen Serene
+* Famine Wolf",0
+5071,famine,,Russian 'food crematoria' provoke outrage amid crisis famine memories http://t.co/O4xLjnaV8F,1
+5072,famine,,@robertmeyer9 re: your example low food prices cause farmers to go broke= famine next year. means simple Capitalism failed to feed people>,0
+5073,famine,"Washington, D.C.",A memorial to the millions who perished in the Holodomor has been erected in the U.S. capital. http://t.co/Dj1LWZNIEH http://t.co/I9MxXkzHbL,1
+5074,famine,"Earth, Milky Way, Universe",exporting food wont solve the problem. africans will end famine n poverty by SOLVING OUT OF CONTROL TRIBAL WARS. https://t.co/UttaNbigRx,1
+5075,famine,,'Food crematoria' provoke outrage amid crisis famine memories... http://t.co/REsxAvgpyJ,1
+5076,famine,,New article: Russian 'food crematoria' provoke outrage amid crisis famine memories read more at here http://t.co/9HiEiFHSmC,1
+5078,famine,"Edappally,Kochi",Building Muscle With Feast And Famine Feeding Most diet plans are based around losing weight but what should youÛ_ https://t.co/lUe3waeGpI,0
+5079,famine,Texas,The famine is coming to an end #Bluebell http://t.co/p9ryMfjcUX,1
+5080,famine,"In #Fairie, where else? ;-)",'She tasted like a feast after a famine. And he was starving.' TRUSTING JACK @writes4coffee http://t.co/sTo58qa94c #IARTG #RWA #tw4rw #RRBC,0
+5082,famine,,Russian 'food crematoria' provoke outrage amid crisis famine memories http://t.co/GyH00mRKjm,1
+5083,famine,Massachusetts,"Russia destroys food while people go hungry. We're not the only ones with an insane government.
+http://t.co/ZonNqGsxYw",1
+5085,famine,,@FinancialTimes Ethiopian regimes continue receiving foreign aid when famine struck for 2 years eastern Ethiopia https://t.co/2fGgzQn1v4,1
+5087,famine,Ukraine,Reuters: Russian 'food crematoria' provoke outrage amid crisis famine memories http://t.co/SI02QRgukA http://t.co/0C1y8g7E9p,1
+5088,famine,,"A grade in Black Horse Famine[MEGA]. Score 0840728
+http://t.co/pdiit0AF3Q
+#Dynamix http://t.co/ZQ5KDOx7BY",0
+5089,famine,???? ???????,Russian Û÷food crematoriaÛª provoke outrage amid crisis famineåÊmemories http://t.co/sGECNKFThU,1
+5092,famine,,Bolshevik government monopolized food supply to seize power over hunhry population. Artificial famine was the result https://t.co/0xOUv7DHWz,1
+5094,famine,United States,Russian 'food crematoria' provoke outrage amid crisis famine memories http://t.co/h6Z7hXUqtu via @YahooNews,1
+5095,famine,Ireland,I've experienced the smell of rotting potatoes for the first time. The Famine must have been awful if the whole country smelled like that.,1
+5096,famine,San Francisco,http://t.co/x1x6d5Enef Russian 'food crematoria' provoke outrage amid crisis famine memories http://t.co/XhehJFFT7g,1
+5097,famine,,when things become terrible more than the great Ethiopian famine...,0
+5098,famine,"Rogersville, MO",@SavageNation Reminds me when the Peasants destroyed their food when Stalin's army came to 'redistribute the wealth'. It caused famine/death,1
+5099,famine,"Tampa, FL",UPDATE 1-Russian 'food crematoria' provoke outrage amid crisis famine memories: * Russian society still recal... http://t.co/J2erZbMjQD,1
+5101,famine,,The Adventures of Mineness #9 The Famine Is Over http://t.co/spYmIQNeCj,1
+5102,famine,Ukraine,"'Food crematoria' in Russia provoke outrage amid crisis famine memories
+http://t.co/FelR5a1hBP",1
+5103,famine,,Robert Conquest Famine Museum Kiev @GuidoFawkes @MediaGuido https://t.co/WE40iUX7Ib,0
+5104,famine,,#Russian food crematoria provokes outrage amid crisis famine memories http://t.co/FjeaFgbZfJ,1
+5105,famine,,@CNN the End of Times are upon us. Famine War Death Plague. The presence is growing stronger.,0
+5106,famine,Telangana,Maratha raiders scorched their lands & Punjab refused them food aid during the 1943 famine wonder if Bengalis harbor some 'hard feelings',1
+5107,famine,"Chatham, IL",Images of Famine ÛÒ Hope In Christ - A blog on what happens when we forget God http://t.co/9BLiDdNGtF #HopeinChrist @lifelettercafe,1
+5109,famine,,@Surf_Photo I squeezed a tear. Famine plague tsunami no chance. Lego - blubber!,0
+5110,famine,Charter Member of the VRWC,Russian 'food crematoria' provoke outrage amid crisis famine memories - Yahoo News http://t.co/6siiRlnV6z,1
+5113,fatal,,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5114,fatal,"Wood Buffalo, Alberta",Roger Goodell's Fatal Mistake: Tom Brady An Innocent Man http://t.co/UCNcKrnLow,0
+5115,fatal,"ÌÏT: 10.614817868480726,12.195582811791382",Boy 11 charged with manslaughter in shooting death of Elijah Walker: The 11-year-old appeared Wednesday in a... http://t.co/gtcFfaCvam,1
+5116,fatal,,Fatal attraction is common n what we have common is 'pain'......,0
+5117,fatal,"Anchorage, AK",APD investigating fatal shooting of 3 year old child in southeast Anchorage http://t.co/qYccvUubkr,1
+5119,fatal,Nakhon Si Thammarat,Investigators shift focus to cause of fatal Waimate fire http://t.co/c9dVDsSoFn,1
+5120,fatal,Somewhere with Clyde,@_AsianShawtyy ?????????? I'm sorry. But I'm out,0
+5122,fatal,"Buffalo, NY",Police: man in his early 30s dies after shooting on Vermont St.: http://t.co/HteZ4z48Od http://t.co/Eq4rXC9bb3,1
+5124,fatal,Quincy,Man accused in fatal hit-and-run to get new judge http://t.co/j3Rtf2dt3X via @KHQA,0
+5125,fatal,Winnipeg,Winnipeg police seek witnesses in Arlington and William fatal crash http://t.co/N2bCf4M64V,1
+5126,fatal,"Fresno, CA",@ChrisDanielShow Nearly-Fatal Pee in San Francisco http://t.co/1tvlFrhm1m,0
+5127,fatal,Varanasi,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5128,fatal,"Laredo, TX",Petition to remaster Fatal Frame 1 with a Windwaker-style selfie mode,0
+5130,fatal,Thane,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5131,fatal,"New South Wales, Australia",Man charged over fatal crash near Dubbo refused bail http://t.co/HDBMfOVUtZ via @dailyliberal,1
+5132,fatal,,California man facing manslaughter charge in Sunday's wrong-way fatal crash in ... - http://t.co/1vz3RmjHy4: Ca... http://t.co/xevUEEfQBZ,1
+5134,fatal,Poconos,The Five Fatal Flaws in the Iran Deal https://t.co/ztfEAd8GId via @YouTube,0
+5135,fatal,"Sacramento, CA","Stockton police are investigating a fatal drive-by shooting in north Stockton
+ http://t.co/j3x0DOY7R3",1
+5136,fatal,"Haddonfield, NJ",Deputies: Dog dispute leads to fatal shooting in Person County http://t.co/OazgHoZGYa #gunfail #nra,1
+5137,fatal,,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5138,fatal,Southern California,CA Cops: Illegal Immigrant with 4 Prior Arrests Charged in Fatal Sex Attack http://t.co/BL59Fw4SYS,1
+5139,fatal,,@spookyfob @feelslikefob I am okay thank you yes your kindness is fatal though it's like Patrick stump level kindness.,0
+5140,fatal,,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5141,fatal,"Jaipur, Rajasthan, India",Success is not permanent & failure is not fatal.,0
+5142,fatal,??? ???? ??????,Investigators shift focus to cause of fatal Waimate fire http://t.co/a6Ro9bmXcy,1
+5144,fatal,,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5145,fatal,Bangalore,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5146,fatal,,"Tell me why or why not
+to adopt in this way
+maybe I overlooked something
+fatal for me
+?whyor why not?",0
+5148,fatal,Also follow ?,Boy 11 charged with manslaughter in shooting death of Elijah Walker http://t.co/HUrIIVFDKC,1
+5149,fatal,,Robert Ballew's log statements are always at the FATAL level.,0
+5150,fatal,Play For Ryan ??,fatal attraction,0
+5152,fatal,,#news #crimes Police ID victim in fatal crash that closed I-65 near Franklin: One person is d... http://t.co/9h0ym9OFsv #justice #courts,1
+5153,fatal,Dimapur,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5154,fatal,,Investigators shift focus to cause of fatal Waimate fire http://t.co/aDSvDpNP3r,1
+5155,fatal,In the potters hands,Boy 11 charged in fatal shooting of 3-year-old http://t.co/FJ7kcRliR7,1
+5157,fatal,,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5159,fatal,,11-Year-Old Boy Charged With Manslaughter of Toddler: Report: An 11-year-old boy has been charged with manslaughter over the fatal sh...,1
+5160,fatal,,Investigators shift focus to cause of fatal Waimate fire http://t.co/GoeTJGIhOp,1
+5162,fatalities,,EXCLUSIVE: In 179 fatalities involving on-duty NYPD cops in 15 years only 3åÊÛ_ http://t.co/Cn1joMMUGH,1
+5164,fatalities,New York,#NYC #News Legionnaires death toll rises to 8 in New York City: All eight fatalities were of older adults with... http://t.co/IQJ1Z3jXx8,1
+5165,fatalities,"New York City ,NY",Let's fraction the vital need for Our fatalities. How would you break it down in #education #econom http://t.co/ZSqM8ihE1K,0
+5166,fatalities,,Las Vegas in top 5 cities for red-light running fatalities - News3LV http://t.co/eXdbcx4gCR,0
+5168,fatalities,"Corpus Christi, Texas",We are totally unprepared for an EMP attack. Both China Russia and probably Isis possess them. 90% fatalities. Why are we pushing them?,1
+5169,fatalities,Cape Town,"City implores motorists not to speed after more reports of animal fatalities near nature reserves
+-> http://t.co/hiKF8Mkjsn",1
+5170,fatalities,,@kyrikoni @ExpressandStar Who said veg and fruit was good for you. Hope there's been no injuries or fatalities.,0
+5171,fatalities,Wolverhampton/Brum/Jersey,Understand that there are no fatalities as no one was trapped inside the wholesale market. 8 fire engines and 40 fire fighters on scene.,1
+5172,fatalities,"Chamblee, Georgia",As of the 6-month mark there were a total of 662 fatalities - 114 more than the first half of last year || http://t.co/reOz7H3Em8,1
+5174,fatalities,Official Website,#HSE releases annual workplace facilities data. Have a look | http://t.co/h4UshEekxm http://t.co/jNHNX3oISN,0
+5175,fatalities,#WashingtonState #Seattle,"#Seattle's deadliest red light runner intersections revealed
+ http://t.co/gHk9Xup6E0",1
+5176,fatalities,TechFish ,5 Rejected Mortal Kombat Fatalities: Mortal Kombat has stretched the boundaries of itsÛ_ http://t.co/igZ7v24GE9 http://t.co/M75DNf2xyg,0
+5177,fatalities,"Washington, DC & Charlotte, NC",@unsuckdcmetro minor train leaves rails. Major = 1/13/82 Smithsonian Interlocking derails & crashes into barrier wall w/ fatalities.,1
+5178,fatalities,,Injuries Illnesses and Fatalities Latest Numbers : http://t.co/1uo1aTrbbJ,1
+5179,fatalities,United States where it's warm,http://t.co/JwIv6WYW6F Osage Beach releases name,0
+5180,fatalities,,I wonder how Cool/Weird It'll look to have all the characters in MKX do fatalities on Skinless Predator ;),0
+5181,fatalities,"Washington, DC",#Saudi Arabia: #Abha: Fatalities reported following suicide bombing at mosque; avoid area http://t.co/1xW0Z8ZeqW,1
+5182,fatalities,"Hope Road, Jamaica ","'Use our roads wisely and prevent the carnage from continuing...let us have no fatalities over this holiday period..'
+#GGIndependencMessage",0
+5183,fatalities,jersey ,mortal kombat fatalities are so gross but interesting,0
+5184,fatalities,,The X-rays in MKX be looking like fatalities.,0
+5185,fatalities,"WestEnd, Puritan Ave ",@dwilliams313 RT @Ieansquad: When you donÛªt know how to do fatalities in Mortal Kombat http://t.co/NU6wRp716d,0
+5186,fatalities,,"-??-
+; kitana
+? her fatalities slay me
+ÛÓkody? (Vine by @KOMBATFANS33) https://t.co/uMajwSNLUF",1
+5187,fatalities,"Youngstown, OH",OSP concerned about mounting fatalities http://t.co/YmP0gInwza http://t.co/FYIOQvIOif,1
+5188,fatalities,,"Mortal Kombat X: All Fatalities On Meat Predator.
+https://t.co/IggFNBIxt5",0
+5189,fatalities,"Nantes, France",Estimated damage and fatalities of an Hiroshima-sized atomic bomb dropped on your hometown - http://t.co/BSrERJbY0I #Hiroshima70,1
+5190,fatalities,"St. John's, NL, Canada",The RCMP are reporting fatalities and serious injuries as a result of the collision on the TCH near Whitbourne.,1
+5191,fatalities,"Caserta-Roma, Italy ",Govt allocating 1.3 bn for flood action: Issue takes centre stage after fatalities in Veneto http://t.co/w3esX6Ud8t,1
+5192,fatalities,Pekanbaruå¡Batam Islandå¡Medan,There have been zero spider bite-related fatalities in Australia since 1979.,0
+5193,fatalities,oman muscat al seeb ,I liked a @YouTube video http://t.co/43sXG9Z6xh TREMOR IS NO JOKE!! [TREMOR DLC] [FATALITIES/X-RAY],1
+5194,fatalities,San Francisco,'Motordom' lobbied to change our language around traffic fatalities. We need to go back to the future #VisionZero https://t.co/cAvb7pgEpv,0
+5195,fatalities,Wisconsin,Sharing to help our cousin's family http://t.co/LSJowGYvQh,0
+5196,fatalities,,'Among other main factors behind pedestrian fatalities are people failing to yield to a car' http://t.co/dgUL7FfJt2,1
+5197,fatalities,"Jogja, Indonesia Slowly Asia",Mortal Kombat X is an excellent fatalities and the most fun IÛªve ever had with a mortal kombat SEGA's version http://t.co/fLO8fgy35A,0
+5198,fatalities,Vancouver BC,Uber reduces drunk driving fatalities says independent study http://t.co/jVIVT6zrv7,0
+5199,fatalities,,I liked a @YouTube video from @kevinedwardsjr http://t.co/NCjLKqASUk Mortal Kombat X - PC Gameplay - Fatalities/X-Rays (MKX),0
+5200,fatalities,USA,Las Vegas in top 5 cities for red-light running fatalities http://t.co/kC8O81BcHG,1
+5201,fatalities,,RCMP confirm fatalities in two-vehicle crash: TCH remains closed at Whitbourne due to accident http://t.co/0RokDuTyUN,1
+5202,fatalities,"Avon, OH",...American casualties including 400000ÛÒ800000 fatalities and five to ten million Japanese fatalities.' https://t.co/TxzXCNUDr8,1
+5203,fatalities,,No UK train accident fatalities for 8th year running despite 4% increase in passenger journeys http://t.co/SuiLzS2S95 @healthandsafety,1
+5204,fatalities,The North,I fail to see how that would not bring the number of road fatalities down IMMENSELY,0
+5206,fatalities,"Philadelphia, PA",PolicyLab is at @CECANF's last public hearing in NYC today and tomorrow to address child abuse and neglect fatalities http://t.co/n2cY3Z4TPB,1
+5207,fatalities,Just Happy to Be Anywhere,.@KurtSchlichter Yep considering that *millions* of Japanese fatalities were projected for Downfall. @_FreeMarketeer @dibang,1
+5208,fatalities,,#Shipping #Logistics eNCA | Fatalities as migrant boat capsizes in Med with hundreds onboard: Û_ capsized as i... http://t.co/dnO7QXcFfh,1
+5209,fatalities,"Lima, Ohio",Message boards will display updated traffic fatalities (up from 582) and new message beginning today: Traffic deaths 616 - Slow for Workers.,1
+5210,fatalities,Ireland,Driver fatalities down on Irish roads but pedestrians and cyclists at more risk http://t.co/E7OJhpdfG2,1
+5211,fatality,"Lowell, MA",@EBROINTHEAM jay....big L....pun....biggie...wrap over...zero question....fatality...flawless victory http://t.co/Y33QcKq7qD,0
+5212,fatality,playing soccer & eating pizza,@Jake_ADavis @FaTality_US we are cuddling right now so.. ??,0
+5213,fatality,,@Truly_Stings Yo Dm me,1
+5218,fatality,NY,So these savages leaked Thomas Brady gangstermail account and wonder why he was quick to fatality his Samsung mobile? B real son.,0
+5219,fatality,Hueco Mundo,I liked a @YouTube video from @vgbootcamp http://t.co/yi3OiVK2X4 S@X 109 - sN | vaBengal (ZSS) Vs. SWS | Fatality (Captain Falcon),0
+5220,fatality,,Hibernating pbx irrespective of pitch fatality careerism pan: crbZFZ,0
+5221,fatality,Nairobi,Fatality!,0
+5222,fatality,Boston Û¢ Cape Cod ?,Dying of Lyme disease: Case fatality rate nearly 100% http://t.co/RgT9GhODpW,1
+5223,fatality,,@hrips_k when u do a fatality and like the corpse is still jittering,1
+5224,fatality,Rafael castillo,fatality,0
+5226,fatality,,Wow fatality on 101 big rig hit motorcyclist blood everywhere ?? wow. I'm sick.,1
+5227,fatality,New Jersey,@Tellyfckngo @JayCootchi nah you hit homie wit the fatality and then son'd him wit the babality. Cold. Cold as fuck lmfaoooo.,0
+5228,fatality,"Fort Wayne, IN",Kosciusko police investigating pedestrian fatality hit by a train Thursday http://t.co/JILfbR0UfP,1
+5229,fatality,"Enterprise, NV",Fatality https://t.co/407V1y4HHg,0
+5230,fatality,,@Bardissimo Yes life has a 100% fatality rate.,0
+5231,fatality,,How many baskets did A Charming Fatality by @tonyakappes11 get? http://t.co/xyav4T5n0O #Mystery #Paranormal,0
+5232,fatality,434,They are making a Bad Boys 3 and 4!! A must see,0
+5233,fatality,Grand Rapids MI,@FaTality_US need a team? We need one.,0
+5234,fatality,U.S.A,Afghan Soldier Kills US General America's Highest-Ranking Fatality Since Vietnam http://t.co/SiHQPlUIDW,1
+5235,fatality,434,That usually NEVER happens,0
+5236,fatality,New York ,@Babybackreeve FATALITY!!!!!!!!!!,0
+5238,fatality,Utica NY,08/3/15: CAT FATALITY: UTICA NY; PLEASANT & HOLLAND AVE:Black cat with white paws. Average size. On grass next to north side of road.,0
+5242,fatality,,@pxnatosil @RenuncieDilma Fatality!,0
+5243,fatality,,[Jax(MK2)] Stage Fatality:UUD+LK (Close),0
+5244,fatality,Nunya,'Seeing that there's a video of every fatality on Mileena makes me sad.',0
+5245,fatality,"Houston, TX ",@Chrisman528 fatality ...,0
+5247,fatality,USA,Kosciusko police investigating pedestrian fatality hit by a train Thursday http://t.co/m5djLLxoZP,0
+5248,fatality,,Fatality https://t.co/GF5qjGoyCi,1
+5249,fatality,TX,Fatality scary af. Probably not the best falcon but still scary.,0
+5251,fatality,"Christiana,Tennessee",I liked a @YouTube video from @vgbootcamp http://t.co/7LvGCMyIyJ S@X 109 - sN | vaBengal (ZSS) Vs. SWS | Fatality (Captain Falcon),0
+5252,fatality,"Nashville, TN",Truck crash on 40w at US70 in Lebanon is a fatality. Very sad. Expect long delays through the morning.,1
+5254,fatality,"Bishops Stortford, England",@LindaSOCVAT @TfLBusAlerts Yes apparently. Report of cow fatality as well sadly.,1
+5255,fatality,Earth ,I liked a @YouTube video from @deathmule http://t.co/sxHGFIThJw MK X Tremors Stalag Might Fatality on Ermac Tournament Pharaoh,0
+5256,fatality,"Brentwood, NY",I added a video to a @YouTube playlist http://t.co/O7QOgmOegU S@X 109 - SWS | Fatality (Captain Falcon) Vs. Snow (Fox) SSB4 Losers,0
+5257,fatality,,Death of Loretta Fuddy responsible for authenticating Obama birth certificate the sole fatality of nine on plane http://t.co/MzRhfOJT2j,1
+5259,fatality,Honduras,Fatality ????,0
+5260,fatality,,Everyday is a near death fatality for me on the road. Thank god is on my side.??,0
+5262,fear,"Chippenham/Bath, UK",Fear Factory in December. Done deal.,0
+5263,fear,,I made a friend more interesting than all of y'all combined https://t.co/isBtzUJFBm,0
+5264,fear,Yewa zone,"The meaning I picked the one that changed my life: overcome fear behold wonder.
+
+TCC catch the light... endless... http://t.co/eeRkH8ljws",0
+5265,fear,"sitting on the fence, New York",@phnotf sometimes your cheekiness bleeds through my computer screen and i recoil in fear,0
+5266,fear,,cause i know every man has a fear of a strong-minded woman but I say she's a keeper if she got it on her own and keeps it runnin,0
+5267,fear,,My biggest fear is disappointing the people who believe in me,0
+5269,fear,Carregado,I didn`t want to hurt you but the fear drove me to do it ............... Midnight,0
+5270,fear,"Largo, MD",Men fear the feeling of being 'controlled' by a woman. Or passive aggressively being coerced into commitment before they're ready...,0
+5271,fear,,The things we fear most in organizations--fluctuations disturbances imbalances--are the primary sources of creativity. - Margaret Wheatley,0
+5272,fear,mexico,Fear Factory - Cars (Official MusicVideo) http://t.co/UUzaUMdObc,0
+5273,fear,"Cape Town, Khayelitsha",@Luzukokoti it's all about understanding umntu wakho. If you do and trust your partner then y OK u will know and won't fear to do anything.,0
+5274,fear,Florida,Photo: referencereference: xekstrin: I THOUGHT THE NOSTRILS WERE EYES AND I ALMOST CRIED FROM FEAR partake... http://t.co/O7yYjLuKfJ,0
+5276,fear,"Indianapolis, IN",@BaileySMSteach The fear of not looking like you know what you are doingÛ_ahhhÛ_that was a big one for me. #PerryChat,0
+5278,fear,,"The Opposite of Love is Fear HereÛªs Why
+http://t.co/r5bXZzhXkm",1
+5280,fear,,FEAR - YouTube http://t.co/PrmtxjJdue,0
+5281,fear,Stanford University,Help me win $$$$ by having the most shares on my article! A Lifetime Of Fear http://t.co/9eh2lCQkxl Thanks! #BlackInAmerica #GrowingUpBlack,0
+5282,fear,Midwestern USA,@CowgirlLawyer We must refuse to become a nation with everyone living in fear of being shot unawares by intoxicated &/or crazy people.,1
+5283,fear,Bedford IN ,Horror films are made by incredibly creative artists. We interviewed 21 of them in depth for The Anatomy of Fear. http://t.co/J6mpdsx9Lk,1
+5284,fear,,"I want to be with you forever
+Stay by my side
+On this special night
+
+Fear and Loathing in Las Vegas/Solitude X'mas",0
+5285,fear,"Thibodaux, LA",my worst fear. https://t.co/iH8UDz8mq3,0
+5286,fear,,@shakjn @C7 @Magnums im shaking in fear he's gonna hack the planet,0
+5287,fear,Brazil,When the world say finish God says: don't fear - http://t.co/Q5qCoAo8jP #ChooseGod #RestoringPaths,0
+5290,fear,In the moment,'By replacing fear of the unknown with curiosity we open ourselves up toÛ_ https://t.co/qRHng6kJ1C,0
+5291,fear,,Love God more than you fear hell,0
+5292,fear,,Don't tell the bride gives me the fear,0
+5293,fear,Alliston Ontario,@ScottDPierce @billharris_tv @HarrisGle @Beezersun I'm forfeiting this years fantasy football pool out of fear I may win n get my ass kicked,0
+5295,fear,,'...As of right now I'm reopening the X-Files. That's what they fear the most.' #TheXFiles201Days,0
+5296,fear,SaudI arabia - riyadh ,Live a balanced life! Balance your fear of #Allah with hope in His mercy and love for Him.,0
+5297,fear,New York. NY,my biggest fear is that eventually you will see me the way i see myself.,0
+5298,fear,Athens - Nicosia,Couples having less sex... for fear it'll be a let down: Internet movies and books saying how sex 'ought to be' pÛ_ http://t.co/c1xhIzPrAd,0
+5299,fear,,Nothing to fear. It's all about taking risks.,1
+5300,fear,Southern California,Untangle yourself from requiring your partner to fill your needs and how to love without fear #BestTalkRadio Listen http://t.co/8j09ZUTxWT,0
+5301,fear,"Bremerton, WA",The Walking Dead spin off Fear the Walking Dead is on the 23rd ??????,1
+5302,fear,"Tulalip, Washington",@mcnabbychic I fear not for a while,0
+5304,fear,Indonesia,The fear of the Lord is the start of knowledge: but the foolish have no use for wisdom and teaching (Amsal 1:7),0
+5305,fear,Halifax,The number of people denying climate change on the polar bear article makes me fear for the future of the US but also humanity in general.,0
+5306,fear,"Hilton Head, SC ","@SenSanders Gd ideas. I'm 77 wrked hard now have almost nothing fear lives with poor
+Fran Reed 8437150124",0
+5308,fear,New York,Never let fear get in the way of achieving your dreams! #deltachildren #instaquote #quoteoftheday #Disney #WaltDisney http://t.co/bLZt5zwosE,0
+5309,fear,"St. Louis, MO",Fear is my motivator,0
+5310,fear,USA,"Daily Reflections
+August 6
+DRIVEN
+Driven by a hundred forms of fear self-delusion self-seeking and self-pity... http://t.co/DXfqOu4kT2",0
+5313,fire,,Morganite Gemstone White Fire Opal 925 Sterling Silver Ring Size 6 R1354 http://t.co/hHpVSAtQXN http://t.co/D12r8XpShy,0
+5315,fire,SÌ£o Paulo,Marquei como visto Game of Thrones - 3x5 - Kissed by Fire http://t.co/CJHH17duli #bancodeseries,0
+5316,fire,,Save the Date! Saturday August 15 2015 is the Salisbury Fire Department Open House at 325 Cypress St 10am to... http://t.co/Oa6B0Z2H6Y,0
+5317,fire,,Why put out a fire when it's still burning.,0
+5319,fire,2 high 2 come down ,@Miss_HoMaStToPa cause were on fire we are on fire were on fire now.. Yeah were on fire we are on fire were on fire nowwwwww,1
+5320,fire,,My avi And header combo is fire,0
+5321,fire,Wrex,http://t.co/iNkuv5DNTX #auction #shoes Retro 5 fire red http://t.co/1cvEGTIZOG,0
+5322,fire,,My asshole is on fire https://t.co/Y3FO0gHg8t,0
+5323,fire,big boy Û¢ 0802,I'm crying that song just ended setting myself on fire https://t.co/i2El5aCrRW,0
+5324,fire,,Setting things on fire is always an option,1
+5325,fire,,Sitting around a fire sounds great right about now,0
+5326,fire,,I See Fire,0
+5328,fire,Brooklyn,But put 'Flood of Fire' at the top of the list. https://t.co/p5JPjgiipW,1
+5330,fire,Canada,I'm On Fire. http://t.co/WATsmxYTVa,0
+5331,fire,To The Right of You!,Politifiact: Harry Reid's '30 Percent of Women Served' Planned Parenthood Claim Is a 'Pants on Fire' Lie http://t.co/aMYMwWcpYm | #tcot,0
+5332,fire,"St.Cloud, MN",Dear @CanonUSAimaging I brought it ;) #CanonBringIt #Fire #CanonTattoo #MN #TheresMoreWhereThatCameFrom http://t.co/tCXxHdJAs6,0
+5335,fire,,@seanhannity @ScottWalker yeah just who we need another middle class hating republican out to get hard working cops fire fighters teachers,0
+5336,fire,,This fire is WAY too close wtf is going on ???? http://t.co/drf3mmRbyx,1
+5337,fire,on a catwalk somewhere,Fire Meet Gasoline always gotta get played twice lol,0
+5338,fire, å_ ,WCW @catsandsyrup THA BITCH IS FIRE,0
+5339,fire,Zac Newsome loves me,well it feels like im on fire.,0
+5341,fire,"louisville, kentucky",her eyes and words are so icy but she burns like rum on the fire,0
+5342,fire,,#news Politifiact: Harry Reid's '30 Percent of Women Served' Planned Parenthood Claim Is a 'Pants on Fire' Lie... http://t.co/bMSeDZOfSV,0
+5343,fire,,Nothing like a good fire https://t.co/ItFbBz9xYC,1
+5344,fire,Makai,@DaughterofNai Tenshi activated Yuki's fire card!,0
+5345,fire,"Fort Valley,GA/Fayetteville,AR",California been shaking...catching on fire....and overcharging ppl on rent for the past 150+ years it ain't going nowhere.,1
+5346,fire,Arizona,There's a fire in the Catalinas. Looks kinda cool. This picture doesn't do it justice. https://t.co/N0tAwGeZJx,1
+5347,fire,,@zaynmalik don't overwork yourself. Your album is gonna be fire just don't overwork or stress! I love you take care,0
+5349,fire,"Vancouver, BC",@Justin_Ling I promise not to tax pancakes or rainbows or not dying in a fire.,0
+5350,fire,"Newark, NJ",This nigga Cyhi diss was what Meek was suppose to do. This shit actually fire,0
+5351,fire,the road to success,I wanna set some shit on fire.,1
+5352,fire,The Desert,In the words of Charlie Daniels 'Fire on the mountain run boys run.'Û_ https://t.co/fz1HAEj255,1
+5353,fire,"Sydney, Australia",I just checked in! ÛÒ at On Fire on @ZomatoAUS #LoveFood http://t.co/9l5kqykrbG,1
+5354,fire,"Yuba City, CA",When your heart is bigger than the obstacles in front of you #euro #dontexpectnothing #july #fire @euro,0
+5355,fire,,Fire waves and darkness,0
+5356,fire,University of South Florida,It may seem like our fire has been a little burnt out....,0
+5357,fire,,Smelling a Bon fire while driving makes me wanna be sitting near one making s'mores ????,1
+5359,fire,the moon,Will be dropping fire selfie tomorrow saying 'you're welcome' ahead of time.,0
+5362,fire%20truck,"Niagara Falls, Ontario",Fire Call: BRANT AV / DRUMMOND RD for Fire - *Structure - Single. Units: CAR 6 On Call Truck http://t.co/euDwNFyUeM,1
+5365,fire%20truck,"Woodcreek HS, Roseville, CA",Your PSA for the day: If a fire truck is behind you with lights going MOVE OVER!!! so they can get to their call.,0
+5366,fire%20truck,United States,#RFP: Fire Truck Service Body for F-450 (Fire fighting rescue & safety equipment Transporta... http://t.co/8GtRvEcE1N,0
+5367,fire%20truck,,#reno Truck trailer catches fire in Reno http://t.co/k5FIJaNkJb,1
+5368,fire%20truck,,wild night in the village of pugwash every fire truck is out that the town has which is like a fire truck for every house -population:6,1
+5371,fire%20truck,Here & There,'An 18-wheeler came along and struck the fire truck spinning it around 180 degrees and causing it to roll over' http://t.co/kmPfhGlhoo,1
+5372,fire%20truck,District 12 - Orange County,SIGALERT UPDATE #3***N-133 CLOSED AT 5 FWY UFN***- TRASH TRUCK FIRE,1
+5373,fire%20truck,Plain O' Texas,@BrookTekle_ didn't look like a murder scene just 1 cops a fire truck and 2 fire assistance cars along with a helicopter,1
+5375,fire%20truck,SouthEast Asia,Former Township fire truck being used in Philippines - Langley Times http://t.co/L90dCPV9Zu #Philippines,1
+5377,fire%20truck,,Former Township fire truck being used in Philippines: Township of Langley assistant fire chief Pat Walker spen... http://t.co/r6YJw4xcKY,1
+5378,fire%20truck,,Our garbage truck really caught on fire lmfao.,0
+5379,fire%20truck,,@KapoKekito on northgate by the taco truck that's fire.,1
+5380,fire%20truck,,It's never a good sign when you pull up to work & there's five ambulances & a fire truck in the bay. Wompppp at least it's Friday,1
+5381,fire%20truck,"Saipan, CNMI",Fire truck and ambulance in K3 Phase 3. Hope everyone's okay. #PrayForSaipan,1
+5382,fire%20truck,"Orange County, Calif.",#SigAlert: North & Southbound 133 closed btwn 5 fwy and Irvine Blvd due to truck fire. CHP is detouring traffic.,1
+5383,fire%20truck,lost in my thoughts,@eeenice221 true because of the truck that caught fire?,1
+5384,fire%20truck,,@JustineJayyy OHGOD XD I didn't mean it so =P But you have that fire truck in the back of you to make up for it so you good xD,0
+5385,fire%20truck,Five down from the Coffeeshop,"Came across this fire video not mine..enjoy..Babes way of saying hi to me while he's in the fire truck??
+#fireman #Û_ http://t.co/V5gTUnwohy",0
+5386,fire%20truck,Los Angeles,133 N past the 5 L lane is reopened. All other lanes are closed. All lanes are open on the 133 S. Trash truck fire cleanup. @KNX1070,1
+5387,fire%20truck,"Orange County, CA",#SigAlert: North & Southbound 133 closed btwn 5 fwy and Irvine Blvd due to truck fire. CHP is detouring traffic.,1
+5389,fire%20truck,Five down from the Coffeeshop,Found this cool photo not mine 1952 Dodge Wayne bodied 4 window bus. Ex Libby MT Fire Department truck. All oriÛ_ http://t.co/mcEjZzxgh8,1
+5391,fire%20truck,,Trident 90225 Chevy fire Truck w/ Pumper IMS Fire Dept. Red HO 1:87 plastic http://t.co/FAQNFUpeGn http://t.co/mQfOfKXtyh,0
+5392,fire%20truck,"Tallahassee, FL",Toddler Bedding Firetruck Bundle Fire Truck Firefighter Sticker Decals Sign Wall http://t.co/ykuAuOV9jO,0
+5396,fire%20truck,,when a monster truck racer catches on fire at the fair,1
+5397,fire%20truck,"Laguna Beach, Calif. ",Truck fire clogs canyon road http://t.co/JRDwyy0aX4,1
+5400,fire%20truck," Nevada Carson City,Freeman St",rgj: Truck trailer catches fire in Reno http://t.co/kAF3WdRmTn,1
+5403,fire%20truck,,#Philippines Former Township fire truck being used in Philippines: Û_ of emergency equipment in Cebu Philippi... http://t.co/aL28RVkqPQ,1
+5404,fire%20truck,LA ??,theres a fire truck in this parking lot,0
+5406,fire%20truck,,Evening Sun article on NNO: http://t.co/7cMf3noYNc,0
+5407,fire%20truck,,'Choose to be happy. Fire truck the rest.' http://t.co/tAmRCWfYgd ????? Review of Kick Push by @JayMcLeanAuthor,0
+5408,fire%20truck,,Former Township fire truck being used in Philippines - Langley Times http://t.co/iMiLsFxntf #filipino,0
+5409,fire%20truck,,Jacksonville Fire & Rescue Engine 58 - AWESOME TRUCK! - OFFICIAL JADE FL... https://t.co/ybdSlJw7c1 via @YouTube,1
+5410,fire%20truck,Aracaju - Sergipe,#NJTurnpike å_ #NJTurnpike Reopens Hours After Truck Fire In? http://t.co/oABJZtbVyZ http://t.co/GPBXRrDc07,1
+5411,first%20responders,,#LukeBox something about first responders/ military they are our true Hero's!! Besides your music,0
+5412,first%20responders,"Nashville, Tennessee",I'm grateful for our first responders - @MNPDNashville @NashvilleFD and others - who acted so swiftly to save countless lives today.,1
+5413,first%20responders,Texas,@USATODAY. PRAYING FOR GOD'S HEALING AND SAFETY OF FIRST RESPONDERS,0
+5416,first%20responders,Long Eaton åá Derbyshire åá UK,"Join #charity 10k #run event! @DoningtonDash
+11am start Sun 20 Sept 2015
+Castle Donington Community First Responders
+https://t.co/G1Nw99YJ8U",0
+5417,first%20responders,WorldWide,Loved the way this book was written to include so many vantage points of First Responders @DetKenLang #kindle http://t.co/KcRnMJKJ73,0
+5418,first%20responders,,First responders would never be sent to the wrong address again w/ #SmartTek's GPS-based panic button #mPERS #safety http://t.co/3OionqlFQL,0
+5420,first%20responders,"Portage, IN / Worldwide",Û÷We Can HelpÛª Says Denver Firefighter Working To Curb First Responder Suicide http://t.co/WtaFaepuKZ,1
+5423,first%20responders,"Victoria, BC Canada",What's cool is that teens are becoming what I like to call 'digital first responders' for their friends who need a little help or support !!,0
+5425,first%20responders,,Carmike Cinemas on Antioch Shooting: 'We Are Grateful' for Staff and First Responders Safety Is 'Highest Priority' http://t.co/BehfHspPud,1
+5426,first%20responders,Roads/Trails Everywhere,RT RoadID: Thanks to Alex for his story & to all first responders for being there when we need you. Û_ http://t.co/HikDC1fM2F,0
+5428,first%20responders,New York City,I just added 'Sandy First Responders Lost Their Homes' to VIP Home Page Group on @Vimeo: https://t.co/lKXi6UXjaQ,1
+5430,first%20responders,"Nashville, TN",Thankful for our first responders especially @MNPDNashville for life saving response today in Antioch!,1
+5432,first%20responders,,Juneau Empire - First responders turn out for National Night Out http://t.co/94UYT4ojYK,0
+5437,first%20responders,"Liberty Township, Ohio",@Reds I don't throw the word hero around lightly... Usually reserved for first responders and military... But he's a hero...,0
+5439,first%20responders,Aberdeenshire,US wants future first responders to be more high-tech - http://t.co/1VI2RNbK2i,0
+5442,first%20responders,"Los Angeles, CA",There's still room for you at our party for first responders from around the country! 3rd annual best ever. http://t.co/mNh6FXhOdB,0
+5443,first%20responders,A Hoop Somewhere,Incase of accident the first responders would know that there is a baby present https://t.co/sNaYMLDIUN,0
+5444,first%20responders,Michigan,Kirsten Gillibrand http://t.co/amEA3LaMDj Extend Health Care To 911 First RESPONDERS !,1
+5445,first%20responders,"Bloomington, Indiana",'We Can Help' Says Denver Firefighter Working To Curb First Responder Suicide http://t.co/aVV6hPNpch,1
+5446,first%20responders,USA,First Responders Convene for National Summit and Awards on GIS Technology http://t.co/0T9yd557rY #gisuserPR #geoTech,0
+5448,first%20responders,,York Co. first responders compete to save lives in Û÷Badges for BloodÛª #paramedic #EMS http://t.co/E65V80FCus,0
+5449,first%20responders,"Washington, DC",Some good info to help first responders cope- Individual Resilience: Factsheet for Responders- http://t.co/FcFpijiqt5,0
+5450,first%20responders,,@IAFFLocal4416 no lives lost except those of first responders or the public they're charged with protecting?,1
+5452,first%20responders,"Basking Ridge, NJ",First Responders get int @bridgeportspeed free on Saturday! Details @ http://t.co/dIh1TgQhej,0
+5454,first%20responders,"Stalybridge, Tameside",At the #999day Emergency Services display! Meeting the brave police firefighters and first responders that help keep us safe! ????????,1
+5455,first%20responders,,This week first responders and DART members are participating in a four day intensive Technical Large Animal... http://t.co/tL93AOd3ER,1
+5458,first%20responders,"Sacramento, CA",As firefighters make gains on #RockyFire Jerry Brown is heading to the area to meet with first responders tomorrow morning,1
+5459,first%20responders,"Franklin, TN near Nashville",After shooting event at the theater @Starbucks is giving FREE COFFEE to all first responders police & firefighters. AntiochHickoryHollow#TN,1
+5460,first%20responders,"St. Louis, Missouri",'NO LENDER FEES FOR VETERANS OR FIRST RESPONDERS (PAST AND PRESENT)' on @LinkedIn https://t.co/9pmBTxmoAL,0
+5461,flames,Bandung,New Giant Flames (GIANT FULL BLACK PANTOFEL) info/order sms:087809233445 pin:23928835 http://t.co/dthNEezupe pic.twitter.com/pNPiZoDY,1
+5462,flames,New York,*NEW* Snap On Tools Black baseball Hat/Cap Silver/Gray Embroidered S Logo Flames - Full reÛ_ http://t.co/mO7DbBdFVR http://t.co/0ScNWe8XbV,0
+5465,flames,New York,*NEW* Snap On Tools Black baseball Hat/Cap Silver/Gray Embroidered S Logo Flames - Full reÛ_ http://t.co/U3WAO8asFg http://t.co/hC6hZs4wSI,0
+5466,flames,"Louisville, KY ",Vampiro going through the table of flames #UltimaLucha #LuchaUnderground @Elreynetwork http://t.co/Ox6OUw3Yut,0
+5467,flames,,Cabin Fever 2 flames https://t.co/yXnagsqvBM,0
+5468,flames,"Manhattan, NY","'if you can't summon the flames directly from hell store bought is fine'-me
+mom-*dies*",0
+5469,flames,Freeport Ny,Just added some more fire to the flames for Saturday! Rick Wonder will be spinning a guest set along with Chachi... http://t.co/Otblb9PJ2I,0
+5471,flames,650/559,@kelworldpeace @TAXSTONE yoga flames!,0
+5473,flames,,#SBNation #Flames What Makes a Good Penalty Killer? http://t.co/xYi5fDacxO http://t.co/SjtvzgGcXU,0
+5475,flames,dreamy lake,i guess you can say ig's hopes went up in flames,0
+5476,flames,,I'll cry until my pity party's in flames ????,0
+5477,flames,houstn,that new lil b x chance is nothing but flames,0
+5479,flames,hell,@gilderoy i wish i was good enough to add flames to my nails im on fire,1
+5480,flames,"Asheville, NC",My Gang Walking Round With Them Brown Flames. & Thats 100ND,0
+5481,flames,New York,*NEW* Snap On Tools Black baseball Hat/Cap Silver/Gray Embroidered S Logo Flames - Full reÛ_ http://t.co/hTqVF44UQs http://t.co/PvXeLxCJeu,0
+5482,flames,St. Patrick's Purgatory,@TadhgTGMTEL dude was just smoking and the fucking thing went up in flames i though a bomb went off omg scared,1
+5484,flames,,Maryland mansion fire that killed 6 caused by damaged plug under Christmas tree report says - Into the flames... http://t.co/ucUDwIU3aN,1
+5485,flames,@cockerelshoes,New Giant Flames (Giant Manly Brown) info/order sms:087809233445 pin:2327564d http://t.co/T1mBw0ia3o http://t.co/CLfa0PY5Lm,0
+5486,flames,United States,ÛÏYou see the devastation & itÛªs shocking.ÛÏ Firefighters continue to battle flames in California. benstracy reports Û_,1
+5487,flames,manaus,watching it go up in flames,1
+5488,flames,"Sioux Falls, S.D. ",RP said they can see smoke coming from the silo on 260th Street in Hartford but no flames.,1
+5489,flames,,I chose you so if we can search for the joy of just the two of us WeÛªll be near smiles no matter what cold flames burn our bod #PortgassDK,0
+5491,flames,Republica Dominicana,Maryland mansion fire that killed 6 caused by damaged plug under Christmas tree report says - Into the flames: Firefighter's bravery...,1
+5492,flames,"Eastlake, OH",@ErinMariefishy everyone is setting flames upon me,0
+5493,flames,"Hillsville/Lynchburg, VA",@Flames_Nation that's the optimistic side of me. No doubt it's tough. But it can be done. I feel like the games will pivot on defense.,0
+5494,flames,U.S.A,Maryland mansion fire that killed 6 caused by damaged plug under Christmas tree report says - Into the flames... http://t.co/P1WmkXA9d8,1
+5495,flames,Some where,"So Pardon me while I burst into flames.
+
+I've had enough of the world and its people's mindless games",0
+5496,flames,Travelling around the world ,@AWickedAssassin want to burst into flames! *Anna hugged him tightly*,0
+5497,flames," 616 Û¢ Kentwood , MI ",@selmoooooo @_edvinnn @imTariik @dzafic_haris selmo u not catching flames from me im just gonna be witnessing the slaughter,1
+5498,flames,,'Bloody 'ell! Let it burn!' #RubyBot,0
+5499,flames,,If you have an opinion and you don't put it on thh internet you will furst into flames.,0
+5501,flames,? Jet Life ?,I have a rising follower graph! 2 more followers in the past week. Get your stats right here http://t.co/UlxF6dq3ns,0
+5502,flames,Fairy Tail! ,@AisuMage @AkumaReisu --just between Gray and Ophelia red flames blazing around her person setting nearly everything in the area--,1
+5503,flames,Santo Domingo Alma Rosa ,SoloQuiero Maryland mansion fire that killed 6 caused by damaged plug under Christmas tree report says - Into the flames: Firefighte...,1
+5505,flames,Somewhere Around You,Maryland mansion fire that killed 6 caused by damaged plug under Christmas tree report says - Into the flames... http://t.co/lKJFabQzb3,1
+5506,flames,Houston |??| Corsicana,@CW_Hoops you better make all your shots tomorrow cause I'm recording and flames will be thrown tomorrow,0
+5507,flames,"Cincinnati, OH",I added a video to a @YouTube playlist http://t.co/aTCMrjzJTp Nicki Minaj - Up In Flames (Official Video),0
+5509,flames,Bacon,He better than Sean bro. I can admit that Sean is flames now. But he better than Sean https://t.co/aomQ1RYKmJ,0
+5510,flames,,The advantages apropos of in flames favorable regard mississauga ontario: pWHvGwax,0
+5514,flattened,Some other mansion,"Flattened all cartoony-like.
+'Whoa there Papa!' https://t.co/4zmcqRMOIs",0
+5515,flattened,Chicago,the road to success is paved with pennies that I flattened on the train tracks you're welcome.,0
+5517,flattened,"Astley, Manchester",Feel like I've been flattened by a sumo wrestler ???? no pain no gain #muaytai #wantmyabsback #strong ????,0
+5518,flattened,"Bow, NH",IDEAS IN FOOD: Flattened http://t.co/QfrAWLn4BA,0
+5519,flattened,Leicester,Zouma has just flattened him there ?? #CFC,0
+5520,flattened,"Frome, Somerset, England",Zouma has just absolutely flattened that guy ??,0
+5521,flattened,Mars,Flattened https://t.co/9jCIBenckz,0
+5522,flattened,"Melbourne, Victoria",70 years ago the first atomic attack flattened #Hiroshima 3 days later it was #Nagasaki both war crimes to put Moscow in its place,1
+5524,flattened,UK,Today (August 6th) is the 70th anniversary of A-Bomb 'Little Boy' been dropped on Hiroshima.70000 killed outright as the city was flattened,1
+5525,flattened,"Essex, England",Would have just flattened the little midget ?? https://t.co/BhufevaGPu,0
+5526,flattened,"new york, ny",who said this? Yosemite Sam or Drumpf? ÛÏNobody Û÷ill vote for a flattened out rabbit skin a-huh huh Û_ I always sayÛ,0
+5528,flattened,somewhere too cold for me,@GrabakaHitman @Izi_Garcia when he flattened machida...did he lose that fight..nope he lost fights to guys he shouldn't of lost to also,1
+5529,flattened,Barbados,"#Floored4 #Flattened
+
+Early birds does get de cups .... so lag bout pun de dock and watch ppl drinkÛ_ https://t.co/r5StV25ZhQ",0
+5531,flattened,,Conklin being flattened. Shuffled feet instead of kick slide. Didn't get hands up into chest. http://t.co/67TjN9EgyK,0
+5532,flattened,Leeds,Flattened thee striker,1
+5534,flattened,"Wahpeton, ND",Picking up flattened hay men (@ Masonite in Wahpeton ND) https://t.co/Kw3vq4niJQ,0
+5535,flattened,,Zouma just flattened that guy??,0
+5538,flattened,"Chorley, Lancashire, UK",Fylde Building set to be flattened: One of PrestonÛªs city centre iconic buildings is disappearing from the skyline. http://t.co/PdKHBdG9hO,0
+5539,flattened,,@iamHorsefly hide your kids hide your wife. He's on the loose. I thought I flattened you with a ball ????,0
+5540,flattened,,Would've been great if Mbiwa just flattened that little rat.,0
+5541,flattened,"Northampton, MA",@JimMozel puck=flattened ball lol,0
+5544,flattened,Ventura,I don't doubt it. But it was his implicit statement in doing it that makes me want him flattened by a bus. https://t.co/5hlJUcxI0S,0
+5545,flattened,Le Memenet,@KainYusanagi @Grummz @PixelCanuck and flattened raynor. Raynor was a balding imperfect biker marine not a emo generic western hero.,0
+5547,flattened,"Lubbock, Texas",@SeanPeconi @Jason_Floyd @LynchOnSports @criscyborg I think the risk of losing and getting her nose flattened has a lot to do with it,0
+5548,flattened,Derby,Mum's literally just picked up her new car today and flattened the battery already trying to sort out the Bluetooth ???? #Muppet,0
+5552,flattened,"Mississauga, Ontario","@tweetingLew @tersestuff
+
+Notley flattened Harper IN HIS Heartland
+Harper Imported tens of thousands of TFW slaves COST ALBERTANS JOBS",0
+5553,flattened,Delhi ,@twilightfairy flattened frog?,0
+5554,flattened,"Keighley, England",Imagine getting flattened by Kurt Zouma,0
+5555,flattened,Pomfret/Providence,'the fallacy is it is up to the steam roller. It's up to the object whether it will be flattened or not.' #RobertCalifornia #thereisonlysex,0
+5556,flattened,"Baltimore, MD",Photo: Beach Earrings Beach Jewelry Vacation Earrings Keep Calm and Beach On Earrings Made with Flattened... http://t.co/rjEbpiB5rZ,0
+5557,flattened,,100 1' MIX NEW FLAT DOUBLE SIDED LINERLESS BOTTLE CAPS YOU CHOOSE MIX FLATTENED - Full reÛ_ http://t.co/w00kjPrfdR http://t.co/mIXl1pFRJe,0
+5558,flattened,"East Lansing, MI",@bigburgerboi55 flat footballs!!?? More like he flattened the Spartans from crushing them back in the day!!!! #HAIL,0
+5559,flattened,Rocketing through the galaxy,@SatanaOfHell ever seen by far. A dreamy look came over his face and his ears flattened as he started to walk slowly toward her.* You'd-,1
+5560,flattened,New York,100 1' MIX NEW FLAT DOUBLE SIDED LINERLESS BOTTLE CAPS YOU CHOOSE MIX FLATTENED - Full reÛ_ http://t.co/wRNpywyaLj http://t.co/Qv7IYdoVx9,0
+5561,flood,boston,when fizzy is sitting in the regular flood seats ...... and no one knows who she is.....,0
+5563,flood,United States,JKL cancels Flash Flood Warning for Bell Harlan Knox [KY] http://t.co/4rY6zhcPOQ #WX,1
+5564,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/xxkHjySn0p http://t.co/JEVHKNJGBX,1
+5565,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/jCDd6SD6Qn http://t.co/9gUCkjghms,0
+5567,flood,"Warrandyte, Australia",A [small] flood with bigåÊconsequences https://t.co/CVPdVHxd1R http://t.co/FDMXP4FcMo,1
+5569,flood,"British Columbia, Canada",Homecoming Queen Killed on Way Home from the Prom by Flood Waters! #socialnews http://t.co/VmKexjTyG4,1
+5570,flood,,2pcs 18W CREE Led Work Light Offroad Lamp Car Truck Boat Mining 4WD FLOOD BEAM - Full reaÛ_ http://t.co/VDeFmulx43 http://t.co/yqpAIjSa5g,0
+5573,flood,,"It's been raining since you left me
+Now I'm drowning in the flood
+You see I've always been a fighter
+But without you I give up",0
+5575,flood,Aix-en-Provence/Utrecht,@CreationMin @rwrabbit @GoonerAtheist @atheistic_1 @LOLatJesus Yet still why did so many fish die in the worldwide flood? I wonder.,0
+5576,flood,Philadelphia,And please don't flood poor @RobertBEnglund's mentions. He's put in his work!,1
+5577,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/mTmoIa0Oo0 http://t.co/Nn4ZtCmSRU,0
+5578,flood,"Van Buren, MO",@AtLarnxx but he DIDNT,0
+5579,flood,New York,12' 72W CREE LED Work Light Bar Alloy Spot Flood Combo Diving Offroad 4WD Boat - Full readÛ_ http://t.co/XWN7rgVkzC http://t.co/SWPDQ84boI,0
+5580,flood,New York,2pcs 18W CREE Led Work Light Offroad Lamp Car Truck Boat Mining 4WD FLOOD BEAM - Full reaÛ_ http://t.co/ApWXS5Mm44 http://t.co/DS76loZLSu,1
+5581,flood,"Niagara Falls, Ontario",@hellotybeeren cue the flood of people 'ironically' calling you that,0
+5582,flood,USA,Motors Hot Deals #452 >> http://t.co/ED32PBviO7 10x 27W 12V 24V LED Work Light FLOOD Lamp Tractor Truck SUV UTV AÛ_ http://t.co/IfM6v6480P,0
+5584,flood,,85V-265V 10W LED Warm White Light Motion Sensor Outdoor Flood Light PIR Lamp AUC http://t.co/NJVPXzMj5V http://t.co/Ijd7WzV5t9,0
+5586,flood,Hawaii USA,iembot_hfo : At 10:00 AM 2 NNW Hana [Maui Co HI] COUNTY OFFICIAL reports COASTAL FLOOD #Û_ http://t.co/Gg0dZSvBZ7) http://t.co/kBe91aRCdw,1
+5587,flood,New York,1 pair new 27w 4'' ROUND LED Work Driving FLOOD Light Off-road ATV UTV - Full read by eBay http://t.co/d3P88xdLEc http://t.co/j2DDvh7fY0,0
+5588,flood,New York,2pcs 18W CREE Led Work Light Offroad Lamp Car Truck Boat Mining 4WD FLOOD BEAM - Full reaÛ_ http://t.co/O1SMUh2unn http://t.co/xqj6WgiuQH,0
+5589,flood,,Internet basics: the flood defective intertissue is soul mate the milk trench host: GUAbxFv http://t.co/uzsQzYcB8X,1
+5590,flood,,BMX issues Areal Flood Advisory for Shelby [AL] till Aug 5 9:00 PM CDT http://t.co/62OddEkVLi,1
+5592,flood,New York,2pcs 18W CREE Led Work Light Offroad Lamp Car Truck Boat Mining 4WD FLOOD BEAM - Full reaÛ_ http://t.co/1QT51r5h98 http://t.co/OQH1JbUEnl,0
+5593,flood,USA,Flood Advisory in effect for Shelby County in AL until 9 PM #alwx http://t.co/gTqMGsgcsB,1
+5594,flood,United States,RT grant_factory: #grants #funds Weymouth meeting on seawalls and flood grants set for Thursday night Û_ http://t.co/Th2WLilBmo,1
+5595,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/5xmCE6JufS http://t.co/3Zo7PX3p1V,0
+5598,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/O097vSOtxk http://t.co/I23Xy7iEjj,0
+5599,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/fDSaoOiskJ http://t.co/2uVmq4vAfQ,0
+5600,flood,United States,Flood Advisory issued August 05 at 4:28PM EDT by NWS http://t.co/D02sbM0ojs #WxKY,1
+5602,flood,,"survived the plague
+floated the flood
+just peeked our heads above the mud
+no one's immune
+deafening bells
+my god will we survive ourselves?",0
+5603,flood,New York,Spot Flood Combo 53inch 300W Curved Cree LED Work Light Bar 4X4 Offroad Fog Lamp - Full reÛ_ http://t.co/6zCfHi7Srw http://t.co/vWYkDaU1vm,0
+5604,flood,USA,Flood Prone Waterways In Westchester County Now Eligible For Millions In State Aid #NewYork - http://t.co/XSR2VUJyIz,1
+5605,flood,Waddesdon,Chinese rescue team arrives in Myanmar to help flood victims http://t.co/nOSvu0Zx4x Sittway http://t.co/5mJZJNkPfn,1
+5608,flood,"Knoxville, TN",Flood Advisory issued August 05 at 7:10PM CDT until August 05 at 8:00PM CDT by NWS: ...THE URBAN AND ... http://t.co/SeMw5cQ7Dg #weather,1
+5609,flood,New York,12' 72W CREE LED Work Light Bar Alloy Spot Flood Combo Diving Offroad 4WD Boat - Full readÛ_ http://t.co/MJMwA72ER6 http://t.co/ADx9iYi246,0
+5611,flooding,"Rock Springs, WY",ROCK SPRINGS ÛÒ Residents living off Elk Street continue to battle flooding issues after MondayÛªs rain storm. WhileÛ_ http://t.co/8J19FvU7qA,1
+5612,flooding,Vietnam,Cuban leader extends sympathy to Vietnam over flooding at http://t.co/xLq8G6vb2r,1
+5613,flooding,"Tampa-St. Petersburg, FL",Business at the Sponge Docks washed out by rain flooding: http://t.co/5PmikAVyKL,1
+5614,flooding,,@Warlord_queen he thrusts a little more before he jams his cock deep inside her flooding her womb and pussy with his hot thick cum,0
+5617,flooding,USA,Severe Thunderstorms and Flash Flooding Possible in the Mid-South and Midwest http://t.co/uAhIcWpIh4 #WEATHER #ENVIRONMENT #CLIMATE #NATURE,1
+5618,flooding,"Huntsville, Alabama",11:30a Radar Update: Widespread Showers/Storms but moving over the same areas-minor flooding possible #HUNwx http://t.co/E3L1JqjH2u,1
+5619,flooding,"Nova Scotia, Canada",Tips to prevent basement leaks - Create control joints to eliminate random cracking. #homeimprovement #Flooding http://t.co/Kx8cU4s8T1,0
+5620,flooding,,Flooding ???? http://t.co/WVeO9ED10e,1
+5621,flooding,Metro Manila,@adorableappple No reported flooding po in the area. Ten-4. #mmda,0
+5622,flooding,,Flooding kills 166 displace over one million in Pakistan - Daily News & Analysis http://t.co/9mj8oUj3vt #yugvani,1
+5624,flooding,Breaking News,Flooding kills 166 displace over one million in Pakistan - Daily News & Analysis http://t.co/KkOOVBKndp,1
+5625,flooding,Jakarta/Kuala Lumpur/S'pore,#Laos flooding -10 villages underwater World Vision responding http://t.co/8fvQRizOUX,1
+5626,flooding,UK,#floods #ukfloods - British trekkers rescued amid flash floods in Himalayas: A group of British tr... http://t.co/nsfzkfgZnj - #flooding,1
+5627,flooding,,@SlopeOfHope Maybe the plan is to dilute until they can safely say 'We have to start charging or it's over'. Longs would come flooding in.,0
+5628,flooding,Vietnam,Cuban leader extends sympathy to Vietnam over flooding at http://t.co/QcyXwr2rdv,1
+5629,flooding,,ILL ONLY DM HOTEL INFO BECAUSE PEOPLE ARE FLOODING MY NOTIFICATIONS ASKING ME FOR INFO,0
+5631,flooding,I ACCEPT SONG REQUESTS,"When the waves are flooding the shore
+And I can't find my way home anymore
+That's when I look at you http://t.co/TDAKtGlU5p",1
+5632,flooding,"Honolulu, Hawaii",If Flooding occurs in your home - How to stop mold growth via @ProudGreenHome http://t.co/KAVAovJz2V,1
+5633,flooding,,http://t.co/XJkRXrNWNv Flooding of tracks caused derailment sa #INSubcontinent @INSubcontinent http://t.co/JlWGshYY3N,1
+5634,flooding,"Miami Beach, Fl",The Chinese are flooding NYC market like never before http://t.co/9z9HsmiaVD,0
+5635,flooding,Republic of Texas,Obama Keeps 27 Iraqi Christian Asylum Seekers nDetention While Flooding U.S. w/Unscreened Muslims: http://t.co/b4k0R4GgA8 via @DCClothesline,1
+5638,flooding,"California, USA",So grateful for all the support flooding in from @NetkiCorp dinner guests! THANK YOU ALL! https://t.co/ELTne5v1Qn,1
+5641,flooding,Huntsville AL,There some flash flooding in madison #valleywx,1
+5642,flooding,? ,@themaine is it too soon to start flooding your comment section with 'come to brazil' comments? bc i will,0
+5644,flooding,don't run,And last year it was just a lot of 'THE DRUMS ARE FLOODING' and 'JANICE I'M FALLING',0
+5645,flooding,West Midlands,ÛÏ@BBCEngland: A burst water main causes major flooding at a Birmingham hospital http://t.co/q4kGftC2AM http://t.co/6w6A2L4qAeÛ OMG.,1
+5646,flooding,Jakarta/Kuala Lumpur/S'pore,Heavy Rainfall and Flooding in Northern #VietNam | Situation Report No.2 http://t.co/hVxu1Zcvau http://t.co/iJmCCMHh5G,1
+5647,flooding,,@crabbycale OH MY GOD THE MEMORIES ARE FLOODING BACK,0
+5650,flooding,Global-NoLocation,#flood #disaster Burst Water Pipe Floods Apartments at NYCHA Senior Center - NY1: NY1Burst Water Pipe Floods A... http://t.co/w7SIIdujOH,1
+5651,flooding,,LRT LOOK AT ALL MY TOM FEELS FLOODING BACK,0
+5652,flooding,Jakarta/Kuala Lumpur/S'pore,Myanmar: MSF assisting thousands as worst flooding in decades hits parts of Myanmar http://t.co/PiJG5w2L2u,1
+5653,flooding,"Ocean City, NJ",Residents in the central part of Ocean City heard from engineers about flood mitigation options Tuesday #OCNJ... http://t.co/jzPrCIqa9D,1
+5654,flooding,,Wen I finally get the girl I want I'm flooding yall wit all pics of us Rs tho,0
+5655,flooding,belleville,@kwislo I see her flooding at mad decent,0
+5656,flooding,"Kualar Lumpur, Malaysia",Monsoon Flooding Kills Dozens In Myanmar Prompting Calls For Help - http://t.co/r7vPaKlhvI,1
+5657,flooding,"Austin, TX",Memorial unveiled for Travis County deputy killed in Sept. flooding: Travis County Sheriff Greg Hamilton joinedÛ_ http://t.co/Eo2F96WXPz,1
+5658,flooding,,"Flooding kills 166 displace over one million in Pakistan http://t.co/iCFQl7I9oP
+
+At least 166 people have been killed and nearly 11 lakhÛ_",1
+5659,flooding,"Nadiad ,Gujarat , India!!",Thankkk U all Soo much for Flooding my NotificationsU my Fella ParShOlics r Superb & Jus soo awesomeLove Love U All always #FrvrGrateful ??,0
+5661,floods,South of D.C.,Slip Sliding Away - Flash Floods Info for Writers w/Tony Nester @SonoranRattler #writingtips http://t.co/sLTtOrRLHs,1
+5662,floods,,"Who is bringing the tornadoes and floods. Who is bringing the climate change. God is after America He is plaguing her
+
+#FARRAKHAN #QUOTE",1
+5663,floods,Adventist - Lesson Sabbath,Myanmar Flooding: Heavy monsoon rains during the month of July have caused flooding flash floods and landsli... http://t.co/9TG7A5OqFP,1
+5664,floods,Australia,In #India 119000 people have taken shelter in the 966 relief camps the government has set up after the #floods: http://t.co/eU8jypIzsd,1
+5665,floods,,@pmharper don't worry I'm sure climate has nothing to do with hail floods tornados in Alberta & Ontario. I'm sure god's just mad at you.,1
+5668,floods,Passamaquoddy,"@ictyosaur I never thought it would be a wtf moment yet it's here after months of 90 degree heat
+Next we will have flash floods..",1
+5669,floods,Û¢III.XII.MMXIÛ¢,Granted like half my town floods when it rains but still whatever,1
+5670,floods,"Sherwood, Brisbane, Australia",@madonnamking RSPCA site multiple 7 story high rise buildings next to low density character residential in an area that floods,0
+5671,floods,canada,@Cyberdemon531 i hope that mountain dew erodes your throat and floods your lungs leaving you to drown to death,1
+5672,floods,Michigan,Disaster group stunned by floods http://t.co/jrgJ17oAMt,1
+5673,floods,london,there's this person & they reckon when you're dying your brain floods with dmt causing you to relive your life in real time in a simulation,0
+5674,floods,,Have you ever remembered an old song something you haven't heared for years? words that carry floods of memories all along. #priceless,0
+5675,floods,California,Floods Fishing Finally Sunshine & Fab Deals from Albertsons Anniversary Sale |Lauren Paints | a beautiful life http://t.co/CwHSLMB8x9,0
+5676,floods,Global-NoLocation,#flood #disaster Bengal floods: CM Mamata Banerjee blames DVC BJP claims state failed to use ... - Economic T... http://t.co/BOZlwr716Z,1
+5677,floods,,69 Dead Due to Floods in Myanmar: Naypyidaw Aug 5 (Prensa Latina) The death toll rose today to 69 in Myanmar... http://t.co/JoDs9a32PI,1
+5680,floods,Estados Unidos,Typhoon Soudelor approaches after 7 killed 2 missing in floods in Philippines http://t.co/nJMiDySXoF via @abc7chicago,1
+5683,floods,New Jersey,@casewrites when it rains in NJ it flash floods. Otherwise its just a desert of grief and taxes.,1
+5684,floods,"New York, NY",Download @ iTunes http://t.co/ocojPPnRh1 'Floods Of Glory' by Luiz Santos #jazz #art #Music,0
+5685,floods,"Timaru District, New Zealand",@ContactEnergy Yep. During floods of 1999 or 2000 - Clyde Dam releasing every bit of water it could. Most speccy! EV charging your way?,1
+5686,floods,Cameroon,Bamenda Floods Kill Animals Birds - http://t.co/WnamtxlfMt http://t.co/6cOIDv11qV,1
+5687,floods,"St Austell, Cornwall",I hope it rains throughout the whole weekend I hope it floods and the portaloos become sentient.,0
+5688,floods,"Ogba, Lagos, Nigeria",APC Chieftain Tasks Dickson On N15b Floods Donation To Bayelsa http://t.co/LqGOe7psXp,1
+5689,floods,Philippines,PAGASA 7:12am: YELLOW warning - Panay Island Guimaras Negros. Possible floods in low-lying areas & landslides in mountainous areas.,1
+5690,floods,,RT: 40HourFamine: In #Bangladesh government has not declared floods an emergency. #WorldVision will continue to mÛ_ http://t.co/XqdVghz8G6,1
+5692,floods,North America,Nearly 50 thousand people affected by floods in #Paraguay ? http://t.co/aw23wXtyjB http://t.co/ABgct9VFUa,1
+5693,floods,Earth,ETP Bengal floods: CM Mamata Banerjee blames DVC BJP claims state failed to use relief funds: Even as flood w... http://t.co/hsZjaFxrvi,1
+5694,floods,,May Allah help all those suffering from the #Pakistan floods! You and your families are in our #Dua,1
+5695,floods,,Children in Myanmar face a 'double catastrophe' as floods hit the most ... http://t.co/0jFNvAXFph,1
+5698,floods,"New York, USA",love when drake floods instagram. makes you feel real in tune with everything he did like you was there or sumn.,0
+5699,floods,,"Who is bringing the tornadoes and floods. Who is bringing the climate change. God is after America He is plaguing her
+
+#FARRAKHAN #QUOTE",0
+5703,floods,,69 die in Myanmar floods 250000 affected http://t.co/LxjjGyv86A | https://t.co/U9x3perXCO,1
+5704,floods,,Typhoon Soudelor approaches after 7 killed 2 missing in floods in PhilippinesÛ_ http://t.co/8rDXcfgQEm #Typhoon,1
+5705,floods,,Memphis always floods,1
+5706,floods,"21.462446,-158.022017",Floods cause damage and death across Asia | All media content | http://t.co/a2myUTpDiQ | 05.08.2015 http://t.co/XrSkT0s9lz,1
+5707,floods,Rio de Janeiro,">As soon as maintenance ends everyone floods the servers
+>Servers destroyed by extreme load
+>Maintenance starts anew",0
+5710,floods,,"Who is bringing the tornadoes and floods. Who is bringing the climate change. God is after America He is plaguing her
+
+#FARRAKHAN #QUOTE",0
+5711,forest%20fire,,E1.1.2 Particulate=Break up of Solid Combust Fossil Fuel Voltaic Active Forest Fire Biological VOC=Petroleum CH4 Bacteria Decomposition,1
+5712,forest%20fire,PDX,BE CAREFUL anyone who lives west of Beaverton. Forest Grove has a rapidly spreading fire heading east,1
+5713,forest%20fire,Shelby County,I added a video to a @YouTube playlist http://t.co/bcjYleRRYX Ori and the Bind forest ep 6 'Fire and death',1
+5714,forest%20fire,,How is it one careless match can start a forest fire but it takes a whole box to start a campfire?,1
+5715,forest%20fire,port matilda pa,Our little forest fire wardens http://t.co/aPreNsss3x,1
+5716,forest%20fire,"Concord, N.C.",Fire in Pisgah National Forest grows to 375 acres http://t.co/d7zxZ42QW1,1
+5717,forest%20fire,"Redding, California, USA",Ashenforest floorburnt manzanita & timber on Johnson Fire along ridge on Forest Road 1. #RouteComplex http://t.co/FYMP4I2Wp5,1
+5719,forest%20fire,,@Sweet2Young -runs at her for setting my forest on fire and bites the shit out of her neck-,1
+5720,forest%20fire,,@hornybigbadwolf -sets the forest on fire-,1
+5721,forest%20fire,"Slatina,Romania",I liked a @YouTube video http://t.co/jK7nPdpWRo J. Cole - Fire Squad (2014 Forest Hills Drive),0
+5722,forest%20fire,"Redding, California, USA",View of smoke column rising above the south end of the Blake Fire along Forest Road 1. #RouteComplex http://t.co/Yqg5Pvw5gX,1
+5724,forest%20fire,,IT STARTS A FOREST FIRE THAT CANNOT BE PUT OUT. http://t.co/3STfmN26r9,1
+5726,forest%20fire,"Asheville, NC",Fire in Pisgah National Forest grows to 375 acres http://t.co/dao9AZEUcr,1
+5727,forest%20fire,,I had to grill for a school function. One of the grills we had going was pretty much either off or forest fire. No inbetween! Made it work,0
+5729,forest%20fire,,5:15p For those who watch over me forest fire smoke has lifted 'nuff f/me t/make a run t/the pet store on the hwy (N). I'll b/home by 7p.,1
+5730,forest%20fire,Los Angeles for now,We are having forest fires out here in #socal but the only fire you should watch for is @YBTheProphet #RealHiphop https://t.co/ZPSnX5iYAJ,1
+5732,forest%20fire,????????????,U.S. Forest Service firefighter David Ruhl 38 died in the 'Frog Fire' in the Modoc National Forest. He had been temporarily reassigned,1
+5733,forest%20fire,Western Washington,USFS an acronym for United States Fire Service. http://t.co/8NAdrGr4xC,0
+5734,forest%20fire,Atlanta,How is it one careless match can start a forest fire but it takes a whole box to start a campfire,0
+5736,forest%20fires,,Only you can prevent forest fires. ???? http://t.co/rGYUaKc0dR,1
+5739,forest%20fires,,#NaturalDisasters As California fires rage the Forest Service sounds the alarm about rising wildfire costs: Û_... http://t.co/TQwrW3jQWo,1
+5740,forest%20fires,,Q: Why do ducks have big flat feet? A: To stamp out forest fires. Q: Why do elephants have big flat feet? A: To stamp out flaming ducks.,0
+5741,forest%20fires,"alberta, canada",@gilmanrocks7 wow. Where is this? For the rest of the summer I usually have to worry about forest fires. Calgary is about 8 hours away.,1
+5743,forest%20fires,"Washington, D.C.",As California fires rage Forest Service sounds the alarm about sharply rising wildfire costs http://t.co/dFYrPpzkPu http://t.co/iwsdbGd1zq,1
+5744,forest%20fires,,A little concerned about the number of forest fires where I'll be living,1
+5745,forest%20fires,,@nycdivorcelaw TRUMP IS A CLIMATE DENIER- algae bloom in the pacific from calif to alska- seeweed in caribean forest fires- SNOWBALL INHOFE,1
+5746,forest%20fires,Montana ,The forest service now spends >50% of its budget fighting fires http://t.co/SrSLCxHc2T,1
+5748,forest%20fires,,Cartoon Bears. Without them we would qave no knowlddge of forest fires or toilet paper.,0
+5751,forest%20fires,,This is the first year the Forest Service spent more than half its annual budget on fighting fires. #climatechange http://t.co/D62zfZy0Mi,1
+5752,forest%20fires,,As California fires rage the Forest Service sounds the alarm about rising wildfire costs http://t.co/Tft1bb4xaZ,1
+5753,forest%20fires,,Reddit: http://t.co/UtuMVaABz6 Lightning sparks new fires in Boise National Forest /r/StormComing,1
+5754,forest%20fires,San Francisco,The spread of Conflict #PalmOil has sparked an increase in fires destroying #forest throughout #Indonesia http://t.co/4zn0MDsRVp,1
+5757,forest%20fires,Cape Cod,Photo: blue by @forest.fires source: http://t.co/awXR24zsqh http://t.co/o9A26Fn27y,1
+5758,forest%20fires,,I'm about to cook your Smokey the Bear saving forest fires face ass https://t.co/WtGGqS5gEh,0
+5759,forest%20fires,Nicola Valley,Forest fires & dying salmon: time 2 act not deny. Climate Change Nightmares Are Here http://t.co/RBZomWGjeE #bcpoli #canpoli #vanpoli,1
+5760,forest%20fires,Tips on my blog at,Tales of the #trees #deep water loving #Lake Tahoe. And no #forest fires https://t.co/xuhMJ098Lq,0
+5763,forest%20fires,"Boise, Idaho","8-5-2015 - 4:30 P.M. - Progress Being Made on Boise Forest Fires
+http://t.co/6o1mgMGHgt http://t.co/wTPO6elRZd",1
+5764,forest%20fires,,A group of Florida Forest Service firefighters could be deployed to California to help contain fires. Details at 10! http://t.co/fwuP9YURzY,1
+5765,forest%20fires,,PRAY! For EAST COAST FOREST FIRES! PRAY! That they be put out. PRAY! For RAIN!,1
+5766,forest%20fires,Duncan,@BlueJays @Braves @Angels Instead of dumping water on yourselves please send it to British Columbia to help with the forest fires,1
+5769,forest%20fires,,#HeartDisease U.S. Forest Service says spending more than half of budget on fires http://t.co/KzfiGkEeva,1
+5771,forest%20fires,Texas ,' no pharrell only YOU can prevent forest fires ' ??,0
+5772,forest%20fires,,CLIMATE CONSEQUENCES: U.S. Forest Service Says Spending More Than Half Of Budget On Fires http://t.co/k0QtL8aODH http://t.co/zQBXe7x9Y7,1
+5775,forest%20fires,,U.S. Forest Service says spending more than half of budget on fires http://t.co/1hLVrKwgIP,1
+5776,forest%20fires,Based in CA - Serve Nationwide,Property losses from northern California wildfire nearly double http://t.co/oTfW5SEkD7 via @YahooNews,1
+5777,forest%20fires,"Portland, Oregon",Inciweb OR Update: Rogue River-Siskiyou National Forest Fires 8/5/15 12:00 PM (Rogue River-Siskiyou NF AreaÛ_ http://t.co/LkwxU8QV7n,1
+5778,forest%20fires,"Vancouver, BC",Forest fires could delay @AbbyAirshow but officials say it could be a good thing http://t.co/Vxjcx8uKMd,1
+5780,forest%20fires,"Lansdale,Pennsylvania",U.S. Forest Service says spending more than half of budget on fires: By Ian SimpsonÛ_ http://t.co/UyYYrKd6q3,1
+5781,forest%20fires,,"Campsite recommendations
+Toilets /shower
+Pub
+Fires
+No kids
+Pizza shop
+Forest
+Pretty stream
+No midges
+No snakes
+Thanks ??",1
+5783,forest%20fires,,When ur friend and u are talking about forest fires in a forest and he tells u to drop ur mix tape out there... #straightfire,1
+5784,forest%20fires,"Sacramento, CA",Firefighting consumes Forest Service budget sparks political clash: Forest Service report cites increasing cost ofÛ_ http://t.co/lSWsitnkuk,1
+5789,hail,"Carol Stream, Illinois","GREAT MICHIGAN TECHNIQUE CAMP
+B1G THANKS TO @bmurph1019
+@hail_Youtsey . @termn8r13
+#GoBlue #WrestleOn http://t.co/OasKgki6Qj",1
+5790,hail,,#np Avenged Sevenfold - Hail To The King,0
+5791,hail,,All Hail Shadow (Hybrid Mix Feat. Mike Szuter): http://t.co/9e2f7bIvlE @youtube ##youtube,1
+5792,hail,Calgary/Airdrie/RedDeer/AB,@tremblayeh we like big hail and we cannot lie!! #SirMixAlot,0
+5793,hail,United States,LZK issues Severe Thunderstorm Warning [wind: 60 MPH hail: 0.75 IN] for Sharp [AR] till 8:15 PM CDT http://t.co/AUXSMdG1uN #WX,1
+5794,hail,"Hattiesburg, MS",Two great 'dawgs' Dak and Jak !!! HAIL STATE !!! http://t.co/igyu2PEIU3,0
+5795,hail,Arkansas,Strong Thunderstorm 4 Miles North of Japton Moving SE At 25 MPH. Large Hail and Wind Gusts Up to 50 MPH Poss... #arwx http://t.co/TIM8x9bI0f,1
+5797,hail,United States,RNK issues Severe Thunderstorm Warning [wind: 60 MPH hail: 1.00 IN] for Rockingham Stokes [NC] till Aug 5 10:00 PM EDT Û_,1
+5798,hail,,Thank you so so much to everyone for posting the rain and hail outside ... I had no idea guys ????????,0
+5799,hail,"Dagenham, Essex",@chojo everyone hail to the pumpkin king!!!!,0
+5800,hail,Inside the Beltway (DC Area),Cue storm with massive wind and hail!! Now a power outage @WXII in Davidson County.,1
+5801,hail,,@HeySeto Enjoy! Hopefully there will be no epic hail storms where you are going!,0
+5803,hail,USA,Strong Thunderstorm 4 Miles North of Japton Moving SE At 25 MPH. Large Hail and Wind Gusts Up to 50 MPH Poss... #arwx http://t.co/blppzAIbOE,1
+5804,hail,"Florida, USA",All Hail Lady Cheryl!! 24 Reasons You Should Be Obsessed With Cheryl Cole http://t.co/kigy7M6bGJ,0
+5805,hail,"Windsor,Ontario",@KMacTWN @meaganerd Looks like a bowl of weather cereal. New! Kellogg's Sugar Hail! Stays crunchy even in milk...,0
+5807,hail,,Hail Mary Full of Grace The Lord is with thee. Blessed art thou among women and blessed is the fruit of thy... http://t.co/IDQcfJycYM,0
+5808,hail,"Brasil, Fortaleza ce",Seen on Fahlo:#WCW All Hail the QueenåÊ?? http://t.co/oLpBmy9xw9 #MTVHottest Justin Bieber http://t.co/ON18cqGcoA,0
+5812,hail,,@modnao23 the hail is ruining everything. Plus my car I haven't even gotten yet. Have yet another killer migraine and I lost my glasses. ??,1
+5814,hail,Paradise City,@FaZe_Rain all hail the Cloud,0
+5815,hail,"Rapid City, South Dakota",New warning for Central Hills 1' hail 60 mph winds. NOT affecting Sturgis but could later tonight. #KOTAWeather http://t.co/1EPIYeNQYL,1
+5816,hail,antoine fisher ,@Hail_Zel man you kno I'm there !,0
+5817,hail,Between Dire and Radiant,Hail! [pic] ÛÓ https://t.co/B7omJ7U3EI,0
+5818,hail,,Heavy rain and lightning overhead in Oakridge SW Calgary - at least it will melt the hail......#yycstorm #ABStorm,1
+5819,hail,"Calgary, AB",@HeyItsEpark heavy rain and hail,1
+5821,hail,Calgary,@weathernetwork here comes the hail!,1
+5822,hail,,@Flow397 Coming atcha from Boston. Had golfball sized hail yesterday sunny amazing skies today! #ParkChat,0
+5824,hail,"Indianapolis, IN",Central Mass. fruit trees escape heavy damage after wind hail http://t.co/VbFfodtP6M,1
+5825,hail,,New warning for Central Hills 1' hail 60 mph winds. NOT affecting Sturgis but could later tonight. #KOTAWeather http://t.co/qo3VWFelkp,1
+5826,hail,United States,UNR continues Severe Thunderstorm Warning [wind: 60 MPH hail: <.75 IN] for Weston [WY] and Custer Fall River Pennington [SD] till 7:15 PÛ_,1
+5827,hail,"Bay Area, CA",Kevin Tan says hail to the chefs - Û_ and Green Pastures which features sustainable and organic cooking.... http://t.co/D9xVuvp9s6,0
+5828,hail,"Las Vegas, Nevada",Hail The New Caesars! http://t.co/GzMoBlsJxu http://t.co/5CGtqfk2uR,0
+5829,hail,Global,Calgary pounded with hail on second day of storms https://t.co/2BE7BwcMpl,1
+5832,hail,Watch Those Videos -,@DarkNdTatted pull up Holmes!,0
+5833,hail,"Tulsa, Oklahoma",Hi-Res Doppler showing storm just NE of Edmond is now severe with 1.25' hail and 60mph wind possible. #okwx http://t.co/lrx0sDsNHM,1
+5834,hail,United States,UNR issues Severe Thunderstorm Warning [wind: 60 MPH hail: 0.75 IN] for Weston [WY] and Custer Fall River Lawrence Meade Pennington [SÛ_,1
+5835,hailstorm,"Calgary, AB",Well so much for outdoor postering @calgaryfringe #mothernature #hailstorm #rain #yycfringe #KILLHARD,1
+5836,hailstorm,USA,@Haley_Whaley Hailstorm Hey There is a Secret Trick to get 375.000 Gems Clash ofClans check them now on my Profile,0
+5837,hailstorm,"Ab, Canada",Nice job Calgary transit ! http://t.co/RGOGUyt0LF,0
+5840,hailstorm,"Newton Centre, Massachusetts",Freak #Boston #hailstorm produces a hailstorm of business ... for auto-body repair specialists. @PeterHoweNECN 6:30/8:30 TONIGHT @necn,1
+5841,hailstorm,Kicking Horse Pass,OMG NIXON LIVES! That is Richard M. Nixon Tricky Dicky right there in the picture isn't it. Hiding in Calgary he... http://t.co/MIUsvPxQTE,1
+5842,hailstorm,,Hail:The user summons a hailstorm lasting five turns. It damages all Pokemon except the Ice type.,0
+5843,hailstorm,far away,Calgary news weather and traffic for August 5 * ~ 90 http://t.co/qBdRYXSGlC http://t.co/VZOd7qFFlv,0
+5845,hailstorm,"Calgary, Alberta",@AdriaSimon_: Hailstorm day 2.... #round2 #yyc #yycstorm http://t.co/FqQI8GVLQ4,1
+5847,hailstorm,,~ More wicked weather rolls through Calgary and surrounding areas http://t.co/SxwJyR3K3l http://t.co/aEWGlVqReH,1
+5848,hailstorm,Calgary,Gotta love #summer in #Calgary. #yyc #hailstorm #crazyweather http://t.co/xQbWnLBBIu,1
+5849,hailstorm,"Suginami-ku, Tokyo, Japan",Severe weather and a rare hailstorm pummel Boston - http://t.co/jkYM9EdOfc,1
+5850,hailstorm,Washington State,We The Free Hailstorm Maxi http://t.co/ERWs6IELdG,1
+5853,hailstorm,Somewhere ,Those that I have sworn to defend have proven themselves to be friends of the House Hailstorm.,0
+5854,hailstorm,Massachusetts,Twin Storms Blow Through Calgary ~ 1 http://t.co/rzaGDnWTAH http://t.co/uqEttaGSCU,1
+5855,hailstorm,Heaven,Summer heat drives bobcats to Calgary backyards ~ 35 http://t.co/TmzXopVs94 http://t.co/W192Wkog1M,1
+5856,hailstorm,"Calgary, Alberta",Ready for my close up... Errrr nope!! #notgoingoutinthat #hailstorm #alberta @HellOnWheelsAMC @HoW_fans @TalkingHell http://t.co/9gIAXD6JTY,1
+5858,hailstorm,,IG: http://t.co/2WBiVKzJIP 'It's hailing again! #abstorm #yyc #hail #hailstorm #haildamage #yycweather #calgary #captureyyc #alberta #stoÛ_,1
+5861,hailstorm,,Summer heat drives bobcats to Calgary backyards ~ 3 http://t.co/kEstuUYc4t http://t.co/PzFBb1P1mj,1
+5863,hailstorm,"Calgary, Canada",Sadly the tent fly did not survive this hailstorm and now I have tears in the roof and water in the tent. Only... http://t.co/zCt5cchOJ0,1
+5864,hailstorm,Virgo Supercluster,This was Boston yesterday after an intense hailstorm [X-Post from /r/cityporn] [4608ÌÑ2474] (Û_ http://t.co/8E6XuhrBKh http://t.co/Qo190N8UdD,1
+5867,hailstorm,,My favorite text http://t.co/5U5GAkX2ch,0
+5868,hailstorm,facebook.com/tradcatknights,"Canada: Hailstorm flash flooding slam Calgary knocks out power to 20k customers
+http://t.co/SkY9EokgGB http://t.co/5IyZsDA6xB",1
+5869,hailstorm,"Wyoming, MI (Grand Rapids)",If you're gonna take a break at work.... you gotta do it right! #CarlilesCanoeLivery #LoveMyJob http://t.co/Zo8RsqURa2,0
+5870,hailstorm,"Iliff,Colorado ",Severe hailstorm in progress over Northeast Logan County... #cowx http://t.co/XK9OwGV1O5,1
+5873,hailstorm,Dicky Beach,@CouncilSCC it does say hailstorm,1
+5874,hailstorm,,"This is why I am scared to leave my car under trees in a storm
+
+#jamaicaplain #boston #hailstormÛ_ https://t.co/MJ8rEZOXlJ",1
+5875,hailstorm,far away,Calgary news weather and traffic for August 5 * ~ 45 http://t.co/zAGBMlSf4H http://t.co/HVYXehXBmq,0
+5876,hailstorm,"Not Los Angeles, Not New York.",The Stephen Ave flower pots got a little ripped up in the hailstorm today #yyc #abstorm #calgary #iamdowntown http://t.co/hBhx0dwkPC,1
+5881,hailstorm,Heaven,Grow Calgary avoids worst of city's wicked weather * ~ 16 http://t.co/HLyHDfWsQB http://t.co/GwSNBMmcqF,1
+5882,hailstorm,,Photo: This is why I am scared to leave my car under trees in a storm #jamaicaplain #boston #hailstorm... http://t.co/1FHRrhciMH,1
+5883,hailstorm,"Calgary, Alberta",Calgary Transit reviewing policy after leaving hundreds of commuters stranded during hailÛ_ http://t.co/fT7OrfA52y http://t.co/Dv4MMlsO1I,1
+5884,hailstorm,"Calgary, AB, Canada",600 passengers abandoned at LRT station during Tuesday's hailstorm http://t.co/vgF41IuPkn #yyc #yycstorm #abstorm,1
+5885,harm,Global,Quality Metrics Penalties May Harm Patient Care PCPs Say: Primary care physicians generally hold positive vi... http://t.co/TdwprVB04y,0
+5886,harm,"Massachusetts, USA",@tareksocal I think a lot of celebrities have to treat ppl as if they could harm them,0
+5887,harm,,"sticks and stones may break my bones
+but words will never harm me",0
+5888,harm,,i s2g if anyone tries to harm my cupcake i'll fucking hunt you down to the end of the earth #HarryBeCareful,0
+5889,harm," Queensland, Australia",Vanderbilt: First Do No Harm http://t.co/cCdx7CGlQW,0
+5890,harm,Kansas City,@leedsrouge Love what you picked! We're playing WORTH IT by FIFTH HARM/KID INK because of you! Listen & Vote: http://t.co/0wrATkA2jL,1
+5891,harm,"Cleveland, OH - San Diego, CA",IMAGINE A DOCTOR TREATING AN #EBOLA PATIENT WITHOUT EVER PLACING HIMSELF IN HARM'S WAY. http://t.co/dliZfkk30Y,1
+5892,harm,,'But right now you're only annoyed by them. If you actually hung out with them you'd see that they mean no harm.' @AudaciousSpunk,0
+5893,harm,The barn,I've burned myself before not in the self harm way in the I'm a dumbass and I shouldn't be allowed to be around fire way,0
+5894,harm,where the wild things are,I concur. The longer you spend with your child the more harm? Mmk https://t.co/dxwfX56pWh,0
+5896,harm,?semekeepschanging@soyeh?,PEOPLE KEEP NOT TAGGING SELF HARM AND IT'S FUCKING ME UP,0
+5898,harm,Kansas City,@dinallyhot Love what you picked! We're playing WORTH IT by FIFTH HARM/KID INK because of you! Listen & Vote: http://t.co/0wrATkA2jL,0
+5899,harm,,I don't pray harm on members of ISIS.I pray they experience the life-rebooting love of God & become 'Paul's' in Gods mind-blowing final Act,0
+5900,harm,"Buffalo, NY",Are the safety improvements being made to Route 198 in Buffalo doing more harm than good? http://t.co/rqlPSAYE3B,0
+5901,harm,,Is inner man wayward on route to harm spent replacing online surveys?: qZLOreMfT,0
+5902,harm,i love you zayn,If anything happens I will fucking fly 2 MetLife which is 3 hours away from me&beat d crap out of any1 who tries 2 harm d boys #OTRATMETLIFE,0
+5903,harm,Gotham City,You can never escape me. Bullets don't harm me. Nothing harms me. But I know pain. I know pain. Sometimes I share it. With someone like you.,1
+5904,harm,"Seattle, WA",How standardized tests harm children of color and what we can do about it http://t.co/iD667rlEts Via @ParentsAcrossAm cc: @billgates,0
+5905,harm,WORLD WIDE,ÛÏFor I know the plans I have for youÛ declares the Lord ÛÏplans to prosper you and not to harm you plans to... http://t.co/cIrTVml9Vp,0
+5906,harm,,@lauren_miller_7 she won't harm you,0
+5907,harm,,@angel_star39 Obama should feel responsible bringing in these illegals He- his family well protected from harm. No feeling or heart 4 others,0
+5908,harm,TX,I've been meaning to harm you in the best way I see fit??,0
+5909,harm,England ,@VileLunar I trickshot with a regular controller fucking infinite fading is so harm >:(,0
+5911,harm,"Sumter, SC",Sex Workers Say Credit Card Bans On Online Ads Do More Harm Than Good http://t.co/B9Zx2xZ6aW,0
+5912,harm,Someday I'll live in England. ,HOW CAN SOMEONE HARM THIS ANGEL!! https://t.co/VgzGOK5k3S,0
+5913,harm,Hogsmeade,IF ANYONE WERE TO HARM THE BOYS THEY WOULD GET TAKEN DOWN IMMEDIATELY NOT BY SECURITY BUT BY THE FANS REAL QUICK,0
+5916,harm,5/5 access / rt link please x,"SO MANY SECURITY GARDS THIS IS GOOD.
+I DARE THEM TO LET SOMEONE HARM HARRY #OTRAMETLIFE",0
+5918,harm,å_: ?? ÌÑ ? : ?,someone just reblogged a picture of self harm scars oh please its 2015 can we stop,0
+5919,harm,10-Jul,@wowsavannah what's the harm?? they're collectibles,0
+5920,harm,,Interview with Actor Randy Irwin A.S.K What Could Be The Harm http://t.co/k14q8cHWKp,0
+5921,harm,Kansas City,@5hvzlaRadio Love what you picked! We're playing WORTH IT by FIFTH HARM/KID INK because of you! Listen & Vote: http://t.co/0wrATkA2jL,0
+5922,harm,The South & WestCoast ,All I got in this world is my bros I don't wanna see no harm come they way Ima lil upset right now ??,0
+5923,harm,Hogwarts,@wwexdreamer talk to please don't harm your self in any way shape or form please we care about you and if I saw U right now U better,0
+5925,harm,va,@malistkiss Sunnis continue to believe they are more righteous and they continually harm Shias. Defeats the ideals of Islam.,1
+5927,harm,,@news4buffalo yes a lot more harm then good if there are guardrails up now why cant we go 50. Their will be a big problem when school starts,0
+5928,harm,"Portland, OR",@space_wolverine No harm no foul and somebody needed to say it.,0
+5929,harm,,@TasteMyCupCakee lmfaooo hell nawh ?? yo ass thought ??,0
+5930,harm,?@symbolicjensen?,self harm// I'm so angry please tag your scars on tumblr jesus christ i dont wanna get triggered,0
+5932,harm,,@RJG0789 idk....I feel like his movies have done more harm than good. They make us look sterotypical annddd colorism is prevalent sort of,0
+5933,harm,"Los Angeles, California",Quality Metrics Penalties May Harm Patient Care PCPs Say - Primary care physicians generally hold positive views... http://t.co/0w12PwPSfx,0
+5934,harm,Contoocook Valley Region of Ne,Politicians are using false allegations to attack #PlannedParenthood & harm women. We aren't fooled we #StandwithPP http://t.co/eqDm2OpYbG,0
+5935,hazard,,@ClassyColkett Thorgan Hazard made his move permanent go Gladbach this summer lmao,0
+5937,hazard,Australia,#Lifestyle Û÷It makes me sickÛª: Baby clothes deemed a Û÷hazardÛª http://t.co/0XrfVidxA2 http://t.co/oIHwgEZDCk,0
+5938,hazard,,@LongBreastYat Yeah I don't think he's elite either I think Hazard is the better player too. But not by much,0
+5939,hazard,"Alameda, CA",Choking Hazard Prompts Recall Of Kraft Cheese Singles http://t.co/nJLqRqcnL9,1
+5942,hazard,"London, England",Seeing Hazard without the beard like... http://t.co/IPfzWWNXXP,0
+5943,hazard,Arizona,Get that hazard pay,0
+5944,hazard,"Lancashire, United Kingdom",I liked a @YouTube video from @chaboyyhd http://t.co/Yr67ugEsrm Battlefield 4 Funny Moments - Dukes of Hazard Undercover Soldier,0
+5947,hazard,a van down by the river,@phiddleface NOT IF THERES A CHOKING HAZARD!!! ???? dont die before i get there!!,0
+5949,hazard,,Road Hazard @ CASCADE RD SW / CHILDRESS DR SW http://t.co/DilyvRoWyJ,0
+5950,hazard,NIFC,Road closures remain in effect due to hazard trees falling tree torching and uphill runs of the fire. Forest Service Road #1 remains close,1
+5952,hazard,"Giddy, Greenland",So now that Di Maria has left my dear #mufc back to the Hazard-Di Maria argument.... I'd say Hazard is way better ?? idc,0
+5953,hazard,,Davis's Drug Guide for Nurses by Judith Hopfer Deglin and April Hazard Vallerand http://t.co/IufS7UV1HK http://t.co/AFrHnLLY8D,0
+5954,hazard,,The Eden Hazard of Hockey https://t.co/RbbnjkoqUD,0
+5955,hazard,Chicago,CONFIRMED: Sanchez Hazard and Bolasie will be out for the rest of the season. https://t.co/7Ct01nEptL,1
+5956,hazard,"Roppongi, Minato, Tokyo ",@ThatPersianGuy @YOUNGSAFE ?? Eden Hazard as Harden is spot on flopping is identical,0
+5957,hazard,,I rate Hazard very highly but his fanboys are among the worst accounts on Twitter.,0
+5958,hazard,,@DannyRaynard not bad personally I'd get rid of either hazard or aguero for a better striker than berahino,0
+5959,hazard,"Pleasanton, CA",Choking Hazard Prompts Recall Of Kraft Cheese Singles http://t.co/XGKyVF9t4f,0
+5960,hazard,,BREAKING: Arsenal's Hector Bellerin has been arrested for questioning regarding the disappearance of Eden Hazard.Û_ http://t.co/eCMJ18AzaI,0
+5961,hazard,"Portsmouth, VA",Freak accident? Sure. Looking for someone to blame? Maybe. Remember that player broke his leg cuz cart was at back of end zone? Common sense,0
+5962,hazard,scandinavia,"December 2011 court dismissed the group charge of rape victims saying 'getting raped was an occupational hazard..!'
+
+US military = ISIS!",0
+5963,hazard,,95-03 BMW 528 530 540 740 Emergency Warning Hazard Switch Button OEM 20177-707D http://t.co/kVNahTHUWZ http://t.co/Y8xkNpqMnJ,0
+5964,hazard,Kenya,Kenya News (Chelsea talisman Eden Hazard keen to match Cristiano Ronaldo and Lionel Messi.) Mipasho http://t.co/LxvLqVbc8r,0
+5965,hazard,"Chicago, IL",'Biggest lead hazard in New England history.' Yeah let's nail these guys. https://t.co/xzvmzQuS0x,0
+5966,hazard,Dil's Campsite,@Dead_Dreamer15 ...because if it were on fire that'd be a safety hazard,1
+5972,hazard,Massachusetts,Precious cargo onesie recalled for choking hazard. http://t.co/0PAMznyYuw,0
+5974,hazard,,@TomDean86 he's alright but Hazard/Willian ain't gonna be shifted easily.,0
+5975,hazard,,8/6/2015@1:32 PM: HAZARD IN HIGH TRAFFIC AREA at 5000 DEANS BRIDGE RD http://t.co/itZzKWfhG5,1
+5978,hazard,,Battlefield 4 Funny Moments - Dukes of Hazard Undercover Soldier MAV T... https://t.co/JU8nfpnedl via @YouTube,0
+5979,hazard,,@LondonFire Hi ..Is there an email that people can use to report s'thing they think is a fire hazard/dangerous?,1
+5980,hazard,UK,"Our tipster previews Chelsea v Swansea & there's a 48/1 double! http://t.co/PFSrYJS1pc
+#Chelsea #Hazard http://t.co/SKdBot7TGF",0
+5981,hazard,,@ArianaGrande Girl you still lickin' public donuts??? Health hazard....u should be in jail.,0
+5982,hazard,ilford,Fair enough we have two of the best attacking wingers in the Prem in Hazard and Willian who will basically start every game 100%,0
+5983,hazard,,8/6/2015@1:08 PM: HAZARD IN HIGH TRAFFIC AREA at 1500 WRIGHTSBORO RD http://t.co/DdUxtHvVnr,1
+5985,hazardous,"Nashville, Tn",Wholesale #WE Gon Rep That $hit At All Costs- Hazardous #WholeTeam3 #WholesaleEnt https://t.co/JWnXH9Q5ov,0
+5987,hazardous,SWinfo@dot.state.al.us,I-10 EB at MS line update: Offloading the hazardous material is going much slower than expected. Road could stay closed until tomorrow AM.,1
+5988,hazardous,USA,#Taiwan Grace: expect that large rocks trees mud unstable and/or saturated land may slide ..very hazardous in hilly/mountain areas...,1
+5989,hazardous,,DLH issues Hazardous Weather Outlook (HWO) http://t.co/WOzuBXRi2p,1
+5990,hazardous,,JAX issues Hazardous Weather Outlook (HWO) http://t.co/fuCOQhcLAD,0
+5991,hazardous,,http://t.co/7AzE4IoGMe Risk Assessment and Optimization for Routing Hazardous Waste Collection #sustainable environmental,0
+5992,hazardous,United States,JAX issues Hazardous Weather Outlook (HWO) http://t.co/u9fCb8dz3h #WX,1
+5995,hazardous,Far Away From Home,@igmpj aren't dangling piercing crystals potentially hazardous to the eyes? :),0
+5996,hazardous,,#foodscare #offers2go #NestleIndia slips into loss after #Magginoodle #ban unsafe and hazardous for #humanconsumption,1
+5997,hazardous,,#what #tribal Olap #world pres: http://t.co/Jw6FNnsSxT How To Recognize A Hazardous Waste And The Multidimensi http://t.co/4zAzTB19qE,0
+5998,hazardous,"British Columbia, Canada",Skinny Jeans are Hazardous for Your Health! #socialnews http://t.co/92Pk0HujD8,1
+5999,hazardous,,From recycling to only using non-hazardous chemicals Holland 1916 continually strives to maintain an eco-friendly existence.,1
+6000,hazardous,,#dam #gms Olap #world pres: http://t.co/mIcjNPuhG0 How To Recognize A Hazardous Waste And The Multidimensional http://t.co/Vddi5ChKTP,1
+6001,hazardous,,Never fear quarrels but seek hazardous adventures. https://t.co/dlvZaay7qr,0
+6002,hazardous,"Gainesville, FL",09:13 PM: Hazardous Weather Outlook (http://t.co/ed1VpITsWY): NO HAZARDOUS WEATHER IS EXPECTED AT THIS TIME.... http://t.co/6XSbddlZiy,0
+6003,hazardous,United States,JKL issues Hazardous Weather Outlook (HWO) http://t.co/4e719w6m4V #WX,1
+6004,hazardous,"Muntinlupa City, Philippines",@HearItFromPa Also pls help us w/ our campaign to warn the public about the hazardous keratin treatments. The Brazilian Blowout COPYCATS.,0
+6007,hazardous,United States,MEG issues Hazardous Weather Outlook (HWO) http://t.co/gGn39m60tL #WX,1
+6009,hazardous,"Muntinlupa City, Philippines",@HearItFromPatty Also pls help us w/ our campaign to warn the public about the hazardous keratin treatments. The Brazilian Blowout COPYCATS,0
+6012,hazardous,,Caution: breathing may be hazardous to your health.,1
+6013,hazardous,"Oregon, USA",Is it possible to sneak into a hospital so I can stab myself with a hazardous needle and inject some crazy disease into my veins until I die,0
+6015,hazardous,,@TheBlackshag @dannyoneil too toxic...cancer....disease...hazardous waste...noxious...,1
+6017,hazardous,,Caution: breathing may be hazardous to your health.,0
+6019,hazardous,"Memphis, TN",MEG issues Hazardous Weather Outlook (HWO) http://t.co/3X6RBQJHn3,1
+6020,hazardous,,It's getting to be hazardous getting into this world alive. https://t.co/BJZSSw4tid,1
+6022,hazardous,???,@Josh_LaDo Not tweeting and driving Joshua. Typos are hazardous.,0
+6023,hazardous,"Mysore, Karnataka",#foodscare #offers2go #NestleIndia slips into loss after #Magginoodle #ban unsafe and hazardous for #humanconsumption,1
+6024,hazardous,,http://t.co/rOdpt33XFM EverSafe Emergency Auto Kit for all Weather Unsafe hazardous rush-hour gridlock jumper-caÛ_ http://t.co/0BVK5tuB4J,1
+6026,hazardous,,MTR issues Hazardous Weather Outlook (HWO) http://t.co/tGLK2UUs2Z,1
+6027,hazardous,"Portland, OR",HAZARD - HAZARDOUS CONDITION at SB I5 FWY AT / SW TERWILLIGER BLVD PORTLAND OR [Portland Police #PP15000266858] 17:26 #pdx911,1
+6030,hazardous,Canada,Skinny Jeans are Hazardous for Your Health! #socialnews http://t.co/pAQanenCeS,1
+6031,hazardous,"New Delhi, Delhi",#foodscare #offers2go #NestleIndia slips into loss after #Magginoodle #ban unsafe and hazardous for #humanconsumption,0
+6032,hazardous,,#psd #special Olap #world pres: http://t.co/9xO9mKQqsi How To Recognize A Hazardous Waste And The Multidimensi http://t.co/BP03eAFEWR,1
+6033,hazardous,United States,DLH issues Hazardous Weather Outlook (HWO) http://t.co/a0Ad8z5Vsr #WX,1
+6034,hazardous,"British Columbia, Canada",Skinny Jeans are Hazardous for Your Health! #socialnews http://t.co/LTMa9xQXpx,1
+6036,heat%20wave,"Fort Worth, Texas ",RT @startelegram: Homeless vulnerable during North Texas heat wave http://t.co/k9aIrFQ3QL http://t.co/JdBTlyMEhY,1
+6037,heat%20wave,,@rawfoodbliss I'm in the middle of a humid heat wave and a patch on my forehead flared up. I take olive oli extract and 4 tbs olive oil,0
+6038,heat%20wave,USA,Heat Advisory is In Effect From 1 PM Through 7 PM Thursday. A Building Heat Wave and Increasing Humidity... #lawx http://t.co/u0SYkowVWV,1
+6039,heat%20wave,"Greenfield, Massachusetts","Many thx for share and your comment Alex Lightman -
+
+What evidence did it take or will it take for you or your... http://t.co/4Wsva9WO0F",0
+6041,heat%20wave,,Apocalpytic Iran Heat Wave Nearly Breaks World Record http://t.co/Y8WLOcTeVC,1
+6043,heat%20wave,,Japan Heat Wave Intensifies ÛÒ Death Toll Surges To 55 http://t.co/irpSSresRq,1
+6045,heat%20wave,,@heebsterrr_ I remember the heat wave the year I went bruh and they don't have AC ????,0
+6047,heat%20wave,"Karachi, Pakistan","@WaseemBadami Condemning of Deaths More than 1000 due to Heat Wave in Karachi.
+May Allah gv Patience to their Heirs. http://t.co/iTG84q7vIi",1
+6048,heat%20wave,"London, Riyadh",Something Frightening is Happening to the Weather in the Middle East http://t.co/bDOTQ8dSlN,1
+6049,heat%20wave,,@creationsbykole cork city in Ireland...we got to 17 degrees today...that is a heat wave for us haha,1
+6050,heat%20wave,"Crayford, London",@hollywarnexx mini heat wave apaz,1
+6051,heat%20wave,"Arnhem, the Netherlands",Arnhem Weather - <p>An unrelenting and dangerous heat wave will expand across the South Central United StatesÛ_ http://t.co/yhAqa5WXoK,1
+6053,heat%20wave,Pacific Northwest,"UAE cool to Mideast heat-wave; rain watch latest [video]
+NCMS issues warning of thundering rain poor visibility.... http://t.co/Tk65sKe0zm",1
+6055,heat%20wave,Somewhere in Spain,@KlaraJoelsson Well I have seen it now! That's a bummer. We've had this heat wave tho... 43'c!! I'd prefer the rain... :P,1
+6056,heat%20wave,,It's a heat wave. #Squad #RevItUp #PizzaRev http://t.co/bp8bm8xSXw,1
+6057,heat%20wave,"Jackson, MS",#Jackson #ms Longest Streak of Triple-Digit Heat Since 2013 Forecast in Dallas http://t.co/Ih0Awv3L1O,1
+6058,heat%20wave,"State College, PA",Must Read Forecast! Longest Streak of Triple-Digit Heat Since 2013 What happens next? http://t.co/xXOuPfy8nQ http://t.co/A3BJabHQhe,1
+6059,heat%20wave,"Frisco, TX",@wfaaweather Pete when will the heat wave pass? Is it really going to be mid month? Frisco Boy Scouts have a canoe trip in Okla.,1
+6060,heat%20wave,,NOT.. Ready for this heat wave .. I don't want the sun to come back out.. I'm enjoying this break of cooler temps..,1
+6061,heat%20wave,Malaysia/Jordan,It's kinda cool tonight. Is the heat wave finally over?? ???? 7amdollela 3la kulli 7aal,1
+6064,heat%20wave,,Heat wave is ending! Watching a big area of rain though...will impact part of the area. Details NOW on NBC10 at 5pm,1
+6065,heat%20wave,Somewhere out there,@rachelcaine The weatherit needs to make it minds up. First snow tornadoes now would you say a heat wave?,1
+6066,heat%20wave,,Chilli heat wave Doritos never fail!,0
+6069,heat%20wave,USA,Heat wave in WB heavy losses and no compensations (report) - http://t.co/wMDihdiz1r (via PalinfoEn) #Palestine,1
+6070,heat%20wave,International Action,Heat wave adding to the misery of internally-displaced Gazans http://t.co/jW3hN9ewFT via @PressTV http://t.co/NYWrkRQ7Kn,1
+6071,heat%20wave,,Cherry print + matching lipstick (just rediscovered NarsÛª Û÷Heat WaveÛª).?? by @emilyschuman http://t.co/4eGh1G1Jk7,0
+6072,heat%20wave,"Oklahoma City, OK",Longest Streak of Triple-Digit Heat Since 2013 Forecast in Dallas: An unrelenting and dangerous heat wave will... http://t.co/s4Srgrmqcz,1
+6073,heat%20wave,Planet of da Bathing Apes,Heat wave gotta be over 9000 today,1
+6074,heat%20wave,"Maricopa, AZ",@Startide It's hotter there than Phoenix this week with 3x the humidity. >.>; Heat wave.,0
+6075,heat%20wave,liverpool ,#greatbritishbakeoff love to know where I was when all this nice weather happened! Did miss the heat wave ?? ??,0
+6076,heat%20wave,Albuquerque New Mexico,@kristenKOIN6 Yay good cooler weather for PDX..ABQ NM is feeling the heat wave now bcuz my rain dances aren't working :-),0
+6078,heat%20wave,,Longest Streak of Triple-Digit Heat Since 2013 Forecast in Dallas http://t.co/xc96rWUSZb http://t.co/XM9stfzcpV,1
+6083,heat%20wave,New York Brooklyn,Have you heard Û÷05 LOVE TO LOVE YOU....HEAT WAVE VOL 5Ûª by George deejayempiresound on #SoundCloud? #np https://t.co/rQiuqXNM2X,0
+6084,heat%20wave,"Nebraska, Colorado & The GLOBE",weather warfare Follow the Money This Government Is What Our Founding Fathers Were Warning Us About The Weather... http://t.co/TgtCRU8jiO,1
+6085,hellfire,Rheinbach / Germany,Orchid - Sign Of The Witch http://t.co/YtkXwPyIHg,0
+6086,hellfire,,"day 3 without my phone and due to my slow shite computers it is utter hellfire :'(
+Plez send help",0
+6087,hellfire,,The Prophet (peace be upon him) said 'Save yourself from Hellfire even if it is by giving half a date in charity.',0
+6088,hellfire,,Hellfire is surrounded by desires so be careful and donÛªt let your desires control you! #Afterlife,0
+6090,hellfire,Riyadh,The Prophet (peace be upon him) said 'Save yourself from Hellfire even if it is by giving half a date in charity.',0
+6091,hellfire,UK,@DeeDee_Casey been on tour in the day to Hellfire caves! Would love to investigate the place though!,0
+6092,hellfire,jeddah | Khartoum,Beware of your temper and a loose tongue! These two dangerous weapons combined can lead a person to the Hellfire #islam!,0
+6093,hellfire,United Hoods of the Globe,HELLFIRE EP - SILENTMIND & @_bookofdaniel https://t.co/FKqJY3EzyG,0
+6094,hellfire,"Jubail IC, Saudi Arabia.",#Allah describes piling up #wealth thinking it would last #forever as the description of the people of #Hellfire in Surah Humaza. #Reflect,0
+6096,hellfire,,Beware of your temper and a loose tongue! These two dangerous weapons combined can lead a person to the Hellfire #islam!,0
+6097,hellfire,,The Prophet (peace be upon him) said 'Save yourself from Hellfire even if it is by giving half a date in charity.',1
+6098,hellfire,,Hellfire! We donÛªt even want to think about it or mention it so letÛªs not do anything that leads to it!,0
+6099,hellfire,,Hellfire is surrounded by desires so be careful and donÛªt let your desires control you! #Afterlife #islam,0
+6100,hellfire,Colorado,@IAN_Hellfire you said it's rude based on an experience. Kind of a next level sub tweet in a way lol. Either way you got worked up,0
+6102,hellfire,,@JYHeffect my good you stay in NY??? ?,0
+6103,hellfire,,@HellFire_eV @JackPERU1 then I do this to one of them ????,0
+6104,hellfire,"Denver, Colorado",(Also I dont think sewing thought a leather belt would work out that well lol),0
+6105,hellfire,?????? ??? ?????? ????????,#Allah describes piling up #wealth thinking it would last #forever as the description of the people of #Hellfire in Surah Humaza. #Reflect,0
+6106,hellfire,Right next to Compton,@IAN_Hellfire I got it for the mistake but boss got it worse cause their job was to oversee my work. Boss didn't change after that...,0
+6108,hellfire,"11th dimension, los angeles",That hellfire song from the hunchback of notre dame reminds me a lot of my house,0
+6109,hellfire,"Denver, Colorado",the message you sent and they don't reply. I see that you saw my message the least you can do is tell me to 'fuck off' or something.,0
+6110,hellfire,,Beware of your temper and a loose tongue! These two dangerous weapons combined can lead a person to the Hellfire #islam!,0
+6111,hellfire,,The Prophet (peace be upon him) said 'Save yourself from Hellfire even if it is by giving half a date in charity.',0
+6112,hellfire,,Hellfire is surrounded by desires so be careful and donÛªt let your desires control you! #Afterlife,1
+6113,hellfire,,Hellfire! We donÛªt even want to think about it or mention it so letÛªs not do anything that leads to it #islam!,0
+6115,hellfire,"570 Vanderbilt; Brooklyn, NY",New cocktail on the list! El Diablo Mas Verde: mezcal yellow chartreuse honey cucumber hellfire bitters.... http://t.co/REuosJEK4m,0
+6116,hellfire,??????????? ???????????..? ,Hellfire is surrounded by desires so be careful and donÛªt let your desires control you! #Afterlife #islam,0
+6118,hellfire,,The Prophet (peace be upon him) said 'Save yourself from Hellfire even if it is by giving half a date in charity.',0
+6119,hellfire,,Hellfire! We donÛªt even want to think about it or mention it so letÛªs not do anything that leads to it!,0
+6120,hellfire,"Denver, Colorado",@gg_keeponrockin @StrawberrySoryu Oh okay I just got the message twice and got suspicious. Sorry. I'll check it out!,1
+6123,hellfire,?????? ???? ??????,#Allah describes piling up #wealth thinking it would last #forever as the description of the people of #Hellfire in Surah Humaza. #Reflect,1
+6125,hellfire,,Hellfire is surrounded by desires so be careful and donÛªt let your desires control you! #Afterlife,0
+6126,hellfire,Silvermoon or Ironforge,Fel Lord Zakuun is about to DIE ! #Hellfire #WOD http://t.co/x1oNV3d5uX,1
+6127,hellfire,"Charleston, WV",Hellfire Gargoyle Hoof coil http://t.co/2ii3Brc7NX,0
+6128,hellfire,"Denver, Colorado",@MechaMacGyver Wow bet you got blamed for that too huh?,0
+6130,hellfire,Colorado,@IAN_Hellfire again not really. Do you have any idea how many times i have been ignored for fadc. You can't expect anything.,0
+6132,hellfire,,The Prophet (peace be upon him) said 'Save yourself from Hellfire even if it is by giving half a date in charity.',1
+6133,hellfire,"Benicia, CA ",@USArmy has entered into the #JAGM project to replace #TOW and Hellfire missiles. Check it out here: http://t.co/2mnQC73hFk,0
+6134,hellfire,Riyadh '),Hellfire! We donÛªt even want to think about it or mention it so letÛªs not do anything that leads to it #islam!,1
+6135,hijack,Houston TX,Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP - http://t.co/ComLG0VdbV,1
+6137,hijack,Innerhalb der LÌ_cke,"#GamerGate 'Our entire attempt to hijack your community destroy your industry and scam everyone in sight was just sarcastic'.
+
+Drop dead.",0
+6138,hijack,,Bayelsa poll: Tension in Bayelsa as Patience Jonathan plans to hijack APC PDP: Plans by former First Lady and... http://t.co/86RSYy2tng,1
+6140,hijack,"New York, NY",@dreamoforgonon @TeeEss not to hijack but as a bona fide cislady I can confirm this as true; incidental homosexuality =/= gay/bi for women.,1
+6141,hijack,"Kansas City, MO",0-day bug in fully patched OS X comes under active exploit to hijack Macs http://t.co/sbGiRvQvzb,0
+6145,hijack,,0-day bug in fully patched OS X comes under active exploit to bypass password ... - Ars Technica http://t.co/F7OgzrNPfv,0
+6146,hijack,,REVEALED: Everton hijack United bid for 14-year-old WONDERKID! - http://t.co/nb1E7mNcE5,0
+6147,hijack,,I've just posted on my Blog about: Criminals Who Hijack Lorries And Buses Arrested In Enugu (PHOTO) http://t.co/5ytIeX55lh,1
+6148,hijack,Nigeria,Criminals Who Hijack Lorries And Buses Arrested In Enugu (PHOTO) @DONJAZZY @PoliceNG #HumanRights https://t.co/XyFl8wy62g,1
+6150,hijack,Nigeria ,Criminals Who Hijack Lorries And Buses Arrested In Enugu (PHOTO) http://t.co/LRTU8Rwn2f,1
+6151,hijack,,Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP http://t.co/epABiNcZmJ http://t.co/1SgzGtgfw9,1
+6152,hijack,"Port Harcourt, Nigeria",Plans by former First Lady and wife of ex-President Goodluck Jonathan Dame Patience Jonathan to hijack the All... http://t.co/HaShGQAFic,1
+6153,hijack,eating strawberry shitsickles,@mockingpanems @cuddlesforjen what if he slammed her against the wall for the wrong reason but then he came out of hijack mode and it,0
+6154,hijack,Lagos Nigeria,Patience Jonathan On The Move To Hijack APC In Bayelsa State http://t.co/rJac5sItEp http://t.co/Plqf1bikS4,1
+6156,hijack,,Criminals Who Hijack Lorries And Buses Arrested In Enugu: According to the Nigerian Police Force... http://t.co/FfKcj8pfj2 Via @Music212,1
+6159,hijack,Nigeria,Patience Jonathan On The Move To Hijack APC In BayelsaåÊState http://t.co/Vh8QtbyPZt,0
+6160,hijack,,Swansea ?plot hijack transfer move for Southampton target Virgil van Dijk? http://t.co/NZRWDdLntp,0
+6162,hijack,Maryland,Jeep Cherokee Owners File Lawsuit Against Fiat Chrysler Harman After Hackers ... - The Consumerist http://t.co/2hocEP41kH #mcgsecure,0
+6163,hijack,,0-day bug in fully patched OS X comes under active exploit to bypass password ... - Ars Technica http://t.co/53P4oOO1XN,0
+6164,hijack,"Lagos, Nigeria",{:en}Tension In Bayelsa As Patience Jonathan Plans To Hijack APCåÊPDP{:} http://t.co/W1ufeibALa http://t.co/bIULQpRxke,1
+6165,hijack,,Swansea Û÷plot hijack transfer move for Southampton target Virgil van DijkÛª http://t.co/PVmr38LnvA,1
+6166,hijack,,@welshninja87 click on the tag there's lots of them. RT them to hijack the hashtag,0
+6167,hijack,"Near Richmond, VA","Another Mac vuln!
+
+https://t.co/OxXRnaB8Un",0
+6169,hijack,Nigeria,[Latest Post] Bayelsa poll: Tension in Bayelsa as Patience Jonathan plans to hijack APC PDP http://t.co/B2yvLMPepR,0
+6170,hijack,Worldwide,#LatestNews: Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP,1
+6171,hijack,Nigeria,Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP http://t.co/qxXN6RKsp6 http://t.co/B3X1wqzAoR,1
+6173,hijack,Kolkata,Stay cautious. http://t.co/JeJC9XcTMp,0
+6174,hijack,am everywhere,Bayelsa poll: Tension in Bayelsa as Patience Jonathan plans to hijack APC PDP: Plans by former First Lady and... http://t.co/3eJL9lZlCH,0
+6175,hijack,,@RickyBonesSXM fuck u2 specially there new Shit. First they hijack itunes now all sirius chan. fuck off already haha just sayin,0
+6178,hijack,"Miami, Florida",Tension In Bayelsa As Patience Jonathan Plans To Hijack APC PDP - http://t.co/NIpZmfLiBD,1
+6181,hijack,,Swansea Û÷plot hijack transfer move for Southampton target Virgil van DijkÛª http://t.co/PVmr38LnvA,1
+6183,hijack,NIGERIA,Bayelsa poll: Tension in Bayelsa as Patience Jonathan plans to hijack APC PDP Plans by former First Lady and... http://t.co/RtfirzCPOC,0
+6184,hijack,"Oregon, USA",@jasoncundy05 Chelsea need to hijack Man Utd deal for Pedro..20 mill bargain Adam driving home in Oregon USA cmon blues!!!,0
+6185,hijacker,,Governor Allows Parole for School Bus Hijacker http://t.co/JwfiiLJ8Wr liveleakfun ? http://t.co/IONWArVRFy,1
+6187,hijacker,San Francisco,Governor allows parole for California school bus hijacker who kidnapped 26 children in 1976. http://t.co/hdAhLgrprl http://t.co/Z1s3T77P3L,1
+6188,hijacker,San Francisco Bay Area,Gov. Brown allows parole for 1976 Chowchilla school bus hijacker James Schoenfeld. http://t.co/GlWoAKppjq http://t.co/WlLfLFnDgG,0
+6191,hijacker,"Louisville, KY",Remove the http://t.co/VbqmZ5aPwj and Linkury Browser Hijacker http://t.co/C2EyjNyBfN http://t.co/gt7gf0fSeX,1
+6192,hijacker,Southern California,San Jose Mercury: Governor Brown allows parole for California school bus hijacker http://t.co/GpCeCp9kHv,0
+6193,hijacker,"Sarasota, FL",Remove the http://t.co/Xxj2B4JxRt and Linkury Browser Hijacker http://t.co/9gtYlgXrOE http://t.co/yG6Rj86BKI,0
+6195,hijacker,,The Hijacker-Turned-SAT-Tutor Who Evaded Authorities for Three Decades http://t.co/cSXvwXUZ6t via @slate,1
+6196,hijacker,,Governor Allows Parole for School Bus Hijacker http://t.co/DzlPNP399x,1
+6197,hijacker,Washington state,Governor Allows Parole for School Bus Hijacker http://t.co/liKWQhSHHX via @nbcnews I remember this crime sent chills through parents,1
+6198,hijacker,,School Bus Hijacker Given Parole After 39 Years http://t.co/HmRt98OydJ,1
+6199,hijacker,"Fort Collins, CO",Remove the http://t.co/JAb541hHk0 and Linkury Browser Hijacker http://t.co/Je6Zjwh5uB http://t.co/fDxgmiwAEh,1
+6200,hijacker,Halifax,Remove the http://t.co/l4wJHz4AJ6 and Linkury Browser Hijacker http://t.co/KMgDv7VSAz http://t.co/byTsfms7Md,0
+6201,hijacker,,Governor Allows Parole for School Bus Hijacker http://t.co/u4bdy1W7d4,1
+6202,hijacker,USA,How to remove http://t.co/HRSfA8zujI BrowseråÊHijacker http://t.co/vLnjNoLNme http://t.co/iF5RoGFJRi,0
+6203,hijacker,,Complete Solution to Get Rid of http://t.co/9CntP3nQ6o ÛÒ [Browser Hijacker Removal Guide]! - http://t.co/Qdf6ASaeLM,0
+6206,hijacker,,Remove the http://t.co/2nS5TfnxpA and Linkury Browser Hijacker http://t.co/W2kVScbTLp http://t.co/tn8o00NrLP,0
+6207,hijacker,"West Chester, PA",Remove the http://t.co/9Jxb3rx8mF and Linkury Browser Hijacker http://t.co/B5s5epJ7Um http://t.co/hPA9GQRyWa,0
+6208,hijacker,,Medieval airplane hijacker testa: earnings the distinction divers: HtaRvrGLY,1
+6211,hijacker,,Governor allows parole for California school bus hijacker | Fresno Linked Local Network http://t.co/Sww0QsMxVM http://t.co/bcdP4gKokA,0
+6213,hijacker,"Sacramento, CA",California School Bus Hijacker Parole Stands http://t.co/kPIVXGjNqt #sacramento,1
+6215,hijacker,,Governor allows parole for California school bus hijacker: Local... http://t.co/tAM6aoskoJ http://t.co/eL24mnFcHw,1
+6216,hijacker,"Free State, South Africa",Û÷Hijacker copsÛª back in the dock - http://t.co/9I5cczD5S0 http://t.co/WEaTrRihE1,1
+6217,hijacker,California ,Governor weighs parole for California school bus hijacker http://t.co/7NPBfRzEJL http://t.co/Y0kByy8nce,0
+6218,hijacker,,Governor Allows Parole for School Bus Hijacker http://t.co/N71hMveRvv,1
+6219,hijacker,California ,Governor weighs parole for California school bus hijacker http://t.co/yFPpIFDkQO http://t.co/aJYUlMFTIF,1
+6220,hijacker,worldwide,RT NotExplained: The only known image of infamous hijacker D.B. Cooper. http://t.co/JlzK2HdeTG,0
+6222,hijacker,"Fresno, California",Governor allows parole for California school bus hijacker http://t.co/FZ8YtWQkwV #fresno,1
+6223,hijacker,worldwide,RT NotExplained: The only known image of infamous hijacker D.B. Cooper. http://t.co/JlzK2HdeTG,1
+6224,hijacker,RSN: Tru,@Mauds99 @JagexSupport https://t.co/uSH59Uq30j Change password through that link it'll kick the hijacker off.,0
+6226,hijacker,,@JagexHelpDibi update JAG enabled but a hijacker has access might be what I was looking for. Fingers crossed.,0
+6227,hijacker,,Demco 8550013 Hijacker 5th Wheel Hitch 21K Ultra Series Double Pivot http://t.co/hRdwGfbFYq http://t.co/nUOhKmPZFj,0
+6230,hijacker,,Medieval airplane hijacker hard shell: casting the star deviating: dYxTmrYDu,1
+6232,hijacker,"El Paso, TX",Remove the http://t.co/7IEiZ619h0 and Linkury Browser Hijacker http://t.co/tFeaNwhH2h http://t.co/SjicbhzFo4,0
+6233,hijacker,,How to Remove Softenza Hijacker? Softenza Anthelmintic Nature book Drawing out Help SEA,0
+6234,hijacker,,Governor allows parole for California school bus hijacker - Santa Cruz Sentinel http://t.co/TaXUxp9QA2,1
+6240,hijacking,,The Murderous Story Of AmericaÛªs First Hijacking http://t.co/cbPs1gskvO,1
+6241,hijacking,"South Pasadena, CA",@ladyfleur The example I used is even worse in that it's a caf̩ trying to market itself w/hashtag hijacking.,0
+6243,hijacking,"perth, australia ",#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/gUJNPLJVvt #prebreak #best,0
+6244,hijacking,Mongolia,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/J2aQs5loxu #prebreak #best,1
+6245,hijacking,"brisbane, australia",#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/s4PNIhJQX7 #prebreak #best,0
+6246,hijacking,China,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/cx6auPneMu #prebreak #best,0
+6247,hijacking,World,The Murderous Story Of AmericaÛªs First Hijacking: Earnest PletchÛªs cold-blooded killing ofÛ_ http://t.co/B9JAxx0vCf,1
+6248,hijacking,"Chiyoda Ward, Tokyo",#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/wvTPuRYx63 #prebreak #best,0
+6253,hijacking,rome,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/J5onxFwLAo #prebreak #best,0
+6254,hijacking,"Athens,Greece",The Murderous Story Of AmericaÛªs First Hijacking http://t.co/EYUGk6byxr,1
+6255,hijacking,EastCarolina,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/nQiObcZKrT #prebreak #best,0
+6256,hijacking,Brazil,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/aAtt5aMnmD #prebreak #best,0
+6257,hijacking,IN our hearts Earth Global ,Hijacking Electric Skateboards to Make Them SaferåÊ | @scoopit http://t.co/ihInj3eNQi,0
+6258,hijacking,,Û÷Good SamaritansÛª shot in horror hijacking JOHANNESBURG. — Four men were shot dead in Bronville Free StateÛ_ http://t.co/6jjvCDN4TI,1
+6259,hijacking,,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/qj3PVgaVN7 #prebreak #best,1
+6261,hijacking,France,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/6AqrNanKFD #prebreak #best,0
+6262,hijacking,,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/8JcYXhq1AZ #prebreak #best,0
+6263,hijacking,,The ship has arrived safely. So it was quite unnecessary to sign the waiver that we won't sue Microsoft if any hijacking occurred.,0
+6265,hijacking,tokyo,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/gexHzU1VK8 #prebreak #best,0
+6267,hijacking,china,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/MIs0RjxuIr #prebreak #best,0
+6268,hijacking,,@USAgov Koreans are performing hijacking of the Tokyo Olympic Games.https://t.co/APkSnpLXZj,1
+6269,hijacking,,Vehicle Hijacking in Vosloorus Gauteng on 2015-08-05 at 23:00 White Toyota Conquest BKB066GP http://t.co/odmP01eyZU,1
+6271,hijacking,,@Drsarwatzaib070 come on. IK will face MCourt for attacking parliment and hijacking TV station.,1
+6272,hijacking,Brazil,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/G62txymzBv #prebreak #best,0
+6273,hijacking,between ideas & 3-5pm AEST,to whomever is hijacking my wifi hotspot. I have a very specific skill set. I will create a character and perform a one-man show about you,0
+6274,hijacking,,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/cOMuiOk3mP #prebreak #best,1
+6276,hijacking,Japan,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/xV3D9bPjHi #prebreak #best,1
+6277,hijacking,Malaysia,The Murderous Story Of AmericaÛªs First Hijacking http://t.co/jmAwRLt7HB,1
+6278,hijacking,Zimbabwe,Û÷Good SamaritansÛª shot in horror hijacking http://t.co/V5yUUALoqw #263Chat #Twimbos ZimpapersViews,1
+6281,hijacking,,The Murderous Story Of AmericaÛªs First Hijacking http://t.co/LK5uqKOP1e,1
+6282,hijacking,,"Mom is hijacking my account to earn MCR STATUS!!! Get your own account snort!
+http://t.co/jST5hAUK35 #FlavorChargedTea",0
+6283,hijacking,,#hot Funtenna: hijacking computers to send data as sound waves [Black Hat 2015] http://t.co/UMgD92wLjA #prebreak #best,1
+6292,hostage,,Egyptian Militants Tied to ISIS Threaten to Kill Croatian Hostage (New York Times) http://t.co/GTXndnJRrl (1717 GMT),1
+6293,hostage,"Vancouver, British Columbia",Û÷RansomwareÛª holds B.C. manÛªs computer files hostage: A virus locked Andrew Wilson's family photos and otherÛ_ http://t.co/aQbLjComlN,0
+6294,hostage,,I always tell my mom to bring me food or I will hold her cat hostage??,0
+6296,hostage,Starling City,That moth that held me hostage yesterday has been chilling on the bathroom windowsill all day and I'm not okay with this,0
+6297,hostage,The Great State of Maine ,Islamic State group threatens to kill hostage if Û÷Muslim womenÛª arenÛªt let go - http://t.co/48Zg5ynebn...,1
+6299,hostage,,quoted here-->CNN: Purported ISIS video threatens Croatian hostage http://t.co/swVuZxi6gT,1
+6300,hostage,Glenview to Knoxville ,I'm hungry as a hostage,0
+6301,hostage,Indiana,Who is Tomislav Salopek the Islamic State's Most Recent Hostage? - http://t.co/wiQJERUktF,0
+6302,hostage,,@susanj357 @msnbc @allinwithchris it's like watching a hostage video sometimes ... But not always ( at least not yet),0
+6303,hostage,Roaming around the world,Islamic State group in Egypt threatens to kill Croat hostage http://t.co/NzIfztCUGL,1
+6304,hostage,,You will be held hostage by a radical group.,0
+6305,hostage,,When u get mugged with ur gf u come up with the best excuses not to look like a bitch 'I wanted to fight but what if he held u hostage?',0
+6306,hostage,????,whO'S THAT SHADOW HOLDIN ME HOSTAGE I'VE BEEN HERE FOR DAYS,0
+6310,hostage,,Related News: 'ISIS video' threatens hostage - Europe - CNN | http://t.co/Wk6B5z803o,1
+6311,hostage,"Cape Neddick, ME",@EvaHanderek @MarleyKnysh great times until the bus driver held us hostage in the mall parking lot lmfao,1
+6312,hostage,Global,The horrific story of being a hostage - The horrific story of being a hostage It's 1974 and on a British... http://t.co/XcQ48OuRvL,1
+6314,hostage,"Mariveles, Bataan",Islamic State group in Egypt threatens to kill Croat hostage http://t.co/VdgfXYX3bw,1
+6315,hostage,"ÌÏT: 40.562796,-75.488849",Murfreesboro peeps- I'm hearing Walmart on S Rutherford is on lockdown with a hostage is that true or a rumor?,1
+6317,hostage,Roaming around the world,Islamic State group in Egypt threatens to kill Croat hostage http://t.co/eIoQJWgEiX,1
+6318,hostage,,I sent my emails why are the TRINNA hold me hostage rapping me up ??,0
+6320,hostage,"Melbourne, FL",Wtf? Her biological father is holding her hostage and her adoptive parents haven't even looked for her. Criminal minds got me fucked up.,0
+6322,hostage,New Chicago,@mylittlepwnies3 @Early__May @AnathemaZhiv @TonySandos much of which has to do with lebanon 80s attack/ iran hostage crisis/ Libya Pan am,1
+6323,hostage,,If you fill your mind with encouragement and positivity then it won't take you hostage. Be careful of your content,0
+6325,hostage,,I went to pick up my lunch today and the bartender was holding my change hostage because he wanted my number. ??,1
+6326,hostage,San Francisco Bay Area,@pmarca content is held hostage by network due to affiliation fees.,1
+6328,hostage,Australia ,New ISIS Video: ISIS Threatens to Behead Croatian Hostage Within 48 Hours - TLVFaces - TLVFaces#auspol http://t.co/a6PPEgeLOX,1
+6329,hostage,,Sydney hostage crisis has now been recovered from the AirAsia wreckage.,1
+6330,hostage,"Victorville, CA",Wut a lonely lunch. I got ditched. And I'm hungrier than a hostage!,0
+6331,hostage,Washington D.C.,Nearly 35 years after their release from captivity legislation is being introduced in Congress to compensate 53Û_ http://t.co/NCjLXzFWaa,0
+6332,hostage,,@gideonstrumpet Have you been held hostage?,0
+6334,hostage," Eugene, Oregon",Dysfunctional McConnell plans on holding Judicial Nominations hostage. Another example of how GOP canÛªt govern. http://t.co/VT2akY5MgK Û_,0
+6335,hostages,THANJAVUR,2 hostages in Libya remain unharmed: Government sources on Wednesday denied reports that two Indian nationals whoÛ_ http://t.co/EX4FnJjL6H,1
+6336,hostages,Japan,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/wpGvAyfkBQ #prebreak #best,1
+6337,hostages,"Las Vegas, NV",#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/6ioaBSl6I7 #prebreak #best,1
+6338,hostages,,@hannahkauthor Read: American lives first | The Chronicle #FreeAmirNow #FreeALLFour #Hostages held by #Iran #IranDeal http://t.co/gWnLHNeKu9,1
+6339,hostages,"Cumming, GA",C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/jkD7CTi2iW http://t.co/LAjN2n5e2d,1
+6340,hostages,westwestwestwestwestwestwest,"Russia stood down cold war nuke ban or face ocean superiority
+Unconditional surrender next putin
+Game set match
+Release the hostages",1
+6341,hostages,,Broadcast journalism: hostages to fortune otherwise quot-television blind else quot-operations since-3g superv...,0
+6342,hostages,Midwest,Sinjar Massacre Yazidis Blast Lack of Action OveråÊHostages http://t.co/Carvv6gsRb http://t.co/lAn76ZqKxG,1
+6343,hostages,NYC metro,Holmgren describing 96 World Cup: we were Lou's hostages.,0
+6344,hostages,Tennessee,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/zLco4UE5OQ #prebreak #best,1
+6345,hostages,,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/W0EXzAD5Gc #prebreak #best,1
+6346,hostages,,"Natalie Stavola our co-star explains her role in Love and Hostages. Check it out! #LH_movie #indiefilm #comingsoon
+https://t.co/2Dw23pMF4B",0
+6347,hostages,,Render assistance gain as proxy for your hostages to fortune: sSu http://t.co/KS7Ln8HQ8s,0
+6348,hostages,Heathrow,C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980... http://t.co/tNI92fea3u http://t.co/czBaMzq3gL,1
+6349,hostages,,@Deosl86 @xavier_marquis Hostages are meaningless might as well just play cod search and destroy.,0
+6350,hostages,,'Well guess what young girls. You aren't damsels in distress. You aren't hostages to the words of your peers.' http://t.co/5XRC0a76vD,0
+6354,hostages,,"No #news of #hostages in #Libya
+
+http://t.co/eXil1bKzmP
+
+#India #terrorism #Africa #AP #TS #NRI #News #TRS #TDP #BJP http://t.co/ehomn68oJB",1
+6355,hostages,OK,@TexansDC @kylekrenek @Zepp1978 @Frobeus_NS Never thought I could have that much fun saving (and shooting) teddy bear hostages. lol,0
+6356,hostages,,Sinjar Massacre Yazidis Blast Lack of Action Over Hostages http://t.co/q4Q8XsYZOB,1
+6358,hostages,"Tampa, Fl",C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980: submitt... http://t.co/nbugSMqLRG #aviationaddicts,1
+6361,hostages,TonyJ@Centralizedhockey.com,Holmgren: We referred to those 35 days as 'the hostage situation.' We were Lou's 'hostages.',1
+6362,hostages,"Cleveland, OH",Barak will Tell the American People that the lives of the Hostages in Iran depends on Congress Voting to give Terrorist a Nuke for hostages.,1
+6363,hostages,"Pune, Maharashtra",@minhazmerchant Great job done by village hostages,1
+6365,hostages,cuba,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/fQWTSxLkrZ #prebreak #best,1
+6366,hostages,china,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/zY3hpdJNwg #prebreak #best,0
+6369,hostages,Rocky Mountains,#Sinjar Massacre #Yazidis Blast Lack of Action Over Hostages http://t.co/JhOaHpbpQ4 Portland #Phoenix #Newyork #Miami #Atlanta #Casper #Iraq,1
+6370,hostages,,"New #Free #Porn #Clip! Taking Of Hostages Dangerous For Favors Free: http://t.co/MIubkZ77m6
+
+#RT #adult #sex #tube",0
+6371,hostages,Germany,@banditregina I also loved the episode 'Bang' in season 3 when Caroline Bigsby(?) took hostages in the supermarket.,0
+6372,hostages,,"No #news of #hostages in #Libya
+
+http://t.co/bjjOIfzUhL
+
+#India #terrorism #Africa #AP #TS #NRI #News #TRS #TDP #BJP http://t.co/IywZAlLsN4",1
+6373,hostages,"Brazos Valley, Texas",Cruz: Iran deal Û÷leaves 4 American hostages languishing in IranÛª http://t.co/EXsQIJF4nY - #NoIranDeal #TedCruz2016 http://t.co/y7sIPKB1kd,1
+6374,hostages,,Nigerian Military Rescue 178 Hostages From Boko Haram - Florida Sentinel Bulletin: Florid... http://t.co/KcTiGYMahl #security #terrorism,1
+6375,hostages,,"No #news of #hostages in #Libya
+
+http://t.co/k9FBtcCU58
+
+#India #terrorism #Africa #AP #TS #NRI #News #TRS #TDP #BJP http://t.co/XYj0rPsAI2",1
+6376,hostages,,"One Year on from the Sinjar Massacre #Yazidis Blast Lack of Action Over Hostages
+http://t.co/BAqOcMcJqc",1
+6380,hostages,EastCarolina,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/FLqxd3q5pY #prebreak #best,1
+6382,hostages,china,#hot C-130 specially modified to land in a stadium and rescue hostages in Iran in 1980 http://t.co/OnvD9D4NKg #prebreak #best,1
+6383,hostages,The Universe,Cont'd- #Sinjar: referring to a 40-pg document the group put together on the movt of #Yazidi hostages in the days following #IS massacre [2],1
+6384,hostages,,"@Nervana_1
+As per previous behaviour JAN/AQ would deal with the kidnapped hostages not particularly pleasantly if Div 30 fought JAN/AQ.",1
+6385,hurricane,,You messed up my feeling like a hurricane damaged this broken home,0
+6386,hurricane,#BlackLivesMatter,@zaynmaIikist listen to hurricane,1
+6387,hurricane, Miami Beach,everyone's wonder who will win and I'm over here wondering are those grapes real ?????? #BB17,0
+6388,hurricane,"#1 Vacation Destination,HAWAII",HURRICANE GUILLERMO LIVE NOAA TRACKING / LOOPING WED.AUG.5TH ~ http://t.co/RjopJKbydR ~ http://t.co/NUFDgw9YEv http://t.co/2oKSCwYoHC,1
+6389,hurricane,,@eggalie haha I love hurricane because of you,0
+6391,hurricane,"Haiku, Maui, Hawaii",HURRICANE GUILLERMO LIVE NOAA TRACKING / LOOPING WED.AUG.5TH ~ http://t.co/ut7R2ixRjQ ~ http://t.co/v3z96YDMvD http://t.co/kxSLfTZ2I5,1
+6392,hurricane,,@Hurricane_Dolce happy birthday big Bruh,0
+6393,hurricane,,@Guy_Reginald lol more than welcome ??????,0
+6394,hurricane,NAWF SIDE POKING OUT ,@Hurricane_Dame ???????? I don't have them they out here,1
+6395,hurricane,New York,Bluedio Turbine Hurricane H Bluetooth 4.1 Wireless Stereo Headphones Headset BLK - Full reÛ_ http://t.co/WwFqGCQYII http://t.co/GscswyUuPA,0
+6396,hurricane,Berlin - Germany,@lavapixcom Did you see #hurricane #guillermo with #MeteoEarth? http://t.co/mfckpVzfV8,1
+6397,hurricane,Vineyard,@ChubbySquirrel_ @Hurricane_Surge this here is very true >:33333,1
+6398,hurricane,,They should name hurricanes with black people names. I'd be terrified of hurricane Shanaynay!,0
+6399,hurricane,,Them shootas be so hungry with bodies on they burner ??,0
+6400,hurricane,@potteratthedisc,Hurricane 30STM quem lembra,1
+6402,hurricane,"Anderson, SC",hurricane?? sick!,1
+6403,hurricane,"The Epicenter, and Beyond",AD Miles 'Hurricane of Fun : The Making of Wet Hot' https://t.co/SBZwRuwuFh,0
+6404,hurricane,"Books Published, USA","Hurricane Dancers: The First Caribbean Pirate Shipwreck
+Margarita Engle - Henry Holt and Co. (BYR). http://t.co/i7EskymOec",0
+6405,hurricane,,Cape Coral city leaders take part in mock hurricane training http://t.co/gtYCQyFuam http://t.co/qwd5PvGjbO,1
+6406,hurricane,??? ??? ????? ??? ???.,Be careful during hurricane season ???? https://t.co/bFtOU2nybW,1
+6407,hurricane,,My back is so sunburned :(,1
+6410,hurricane,Somewhere Powerbraking A Chevy,@Freegeezy17 you stay in Houston?,0
+6412,hurricane,Mexico City,NowPlaying Rock You Like A Hurricane - Scorpions http://t.co/JRztpT8IJq,0
+6413,hurricane,,The hurricane mixxtail kinda tastes like the watermelon four loko. ???????? @brittsand9,0
+6414,hurricane,New York,Bluedio Turbine Hurricane H Bluetooth 4.1 Wireless Stereo Headphones Headset BLK - Full reÛ_ http://t.co/WeUDLkc4o4 http://t.co/trl1dskF81,0
+6415,hurricane,Berlin - Germany,@VinusTrip Did you see #hurricane #guillermo with #MeteoEarth? http://t.co/mfckpVzfV8,1
+6416,hurricane,USA,Grace: here are damage levels USA style.. #Taiwan #China #world hurricane/typhoon ratings/categories defined again http://t.co/OdYdT9QPk1,1
+6417,hurricane,,AngelRiveraLibÛ_ #Snowden 'may have' broken laws? Hurricane Katrina may have caused some damage. http://t.co/jAaWuiOvdc Without Snowden hÛ_,1
+6418,hurricane,,HWRF absolutely lashes Taipei with Hurricane force winds High Storm Surge and 20' of rain. Not good news at all!!! http://t.co/CNkvILe7bE,1
+6420,hurricane,,@pattonoswalt @FoxNews Wait I thought Fecal Hurricane was on SciFi? Maybe that was turdnado. I've been forgeting up a shit storm lately.,1
+6421,hurricane,The Globe,HURRICANE GUILLERMO LIVE NOAA TRACKING / LOOPING WED.AUG.5TH ~ http://t.co/AuruGJEGIQ ~ http://t.co/L3w8miPvnT http://t.co/O85M1bJFRW,1
+6422,hurricane,Chicopee MA,"Entertain this thought for a moment:
+
+diarrhea hurricane",0
+6423,hurricane,,Bluedio Turbine Hurricane H Bluetooth 4.1 Wireless Stereo Headphones Headset BLK - Full reÛ_ http://t.co/jans3Fd4lf http://t.co/2SdMichb2Z,0
+6425,hurricane,,Stream HYPE HURRICANE,0
+6427,hurricane,,#kick #hurricane Seriously #simple websites: http://t.co/x8W7tF6FHg Looking For A Seriously Simple Program To http://t.co/9NZ9zFM93i,1
+6429,hurricane,,@Hurricane_Dolce no prob,1
+6430,hurricane,NYC,Mr. T stopped wearing gold chains in 2005 because he thought it would be an insult to the people who lost everything after Hurricane Katrina,0
+6434,hurricane,,Ashley and I on going to hurricane harbor Friday. ?? http://t.co/ScEfPFvAEU,1
+6436,injured,"Srinagar,Kashmir","Militants attack police post in Udhampur; 2 SPOs injured
+
+Suspected militants Thursday attacked a police post in... http://t.co/1o0j9FCPBi",1
+6438,injured,"DFW, Texas",UPDATE:M.E. confirms 2 women pulled from burning house died last Friday. 91 yr old Edna Jefferson&Doris Sherfield72. http://t.co/L6nSLzl7mI,1
+6440,injured,"Piedmont Triad, NC",Unlicensed teen driver among 2 killed in NC crash http://t.co/Woc6AkEHYX,1
+6441,injured,MD,And you wonder why he's injured every year https://t.co/XYiwR9JETl,0
+6443,injured,Florida,Experienced urogyn trying to help mesh injured women talks the worst offenders. http://t.co/NpOQLkqUP9 @meshnewsdesk,1
+6445,injured,"Paterson, New Jersey ",Yelp Bolsters Health Care Reviews With Investigative Journalism: Sick and injured patients at a local ER are t... http://t.co/E8aEGOFDY2,1
+6446,injured,Kolkata,Terrorists attack police post; 2 SPOs injured http://t.co/lXMdiseUCn #YUG,1
+6448,injured,,Check this @SuryaRay Udhampur terror attack: Militants attack police post 2 SPOs injured:Û_ http://t.co/ptq3zMgncK #SuryaRay #India,1
+6449,injured,,Arian Foster does keep his promise... And that's to get injured every yeat,0
+6450,injured, Tropical SE FLorida,#WakeUpFlorida... #Floridians more likely to be killed/injured by a #TrophyHunt killer's gun than by ISIS. https://t.co/j5In8meXAJ,0
+6451,injured,,@RVacchianoNYDN The only surprise is that they aren't ALL injured.,0
+6452,injured,,@chikislizeth08 you're not injured anymore? ??,0
+6453,injured,Worldwide,Top Stories - Google 4 dead dozens injured in Gaza blast near house leveled in summer warÛ_ http://t.co/P3o71DZ992,1
+6454,injured,Ikorodu,Photos: 17 people killed and over 25 injured in deadly Saudi Mosque suicide attack http://t.co/geEKnwJJSz,1
+6455,injured,"Lucknow, India","http://t.co/qr3YPEkfOe
+Seems they declared war against government..",1
+6458,injured,london,Udhampur terror attack: Militants attack police post 2 SPOs injured http://t.co/zMWeCBWVaO,1
+6459,injured,"Sacramento, CA",If I could I would have been by at work but got injured and we have security concerns they must settle. This is torture.,0
+6461,injured,,I can't believe Blevins got injured falling off a curb. That's something that would happen to me never it expected for a pro player,1
+6462,injured,Doghouse,Injured Barcelona full-back Alba out of Super Cup http://t.co/jYiEgtnC6H,0
+6463,injured,,@michaelgbaron how come scott rice doesn't get another shot. Holding lefties to a 184. average. Is he injured?,0
+6464,injured,Mumbai,Udhampur terror attack: Militants attack police post 2 SPOs injured: Suspected militants tonight attacked a p... http://t.co/FPhFESemyJ,1
+6465,injured,someplace living my life,so paulista injured wilshere,0
+6466,injured,USA,Offers : http://t.co/Gl3C1vc88P #8392 Deluxe Toilet Safety Support/Health/Home/Bathroom/Support/Elderly/Injured/SÛ_ http://t.co/vihdoKScCC,1
+6467,injured,,Washington Post - 4 dead dozens injured in Gaza blast near house leveled in summer war http://t.co/VjXa13n8Ap,1
+6469,injured,Nigeria,Ogun smugglers engage Customs in shootoutåÊ: Several persons were allegedly injured on Wednesday when men o... http://t.co/pUXBC2LoYK #RT,1
+6470,injured,Bronx NY,@ChristieC733 please support this Please cosponsor S. 928 and support aid for sick and injured 9/11 responders! #renew911health,1
+6472,injured,World Wide Web,4 dead dozens injured in Gaza blast near house leveled in summer war - Washington Post http://t.co/AXXDCaKzTY #World,1
+6473,injured,Centurion ,4 dead dozens injured in Gaza blast near house leveled in summer war - http://t.co/L53OABEqc9 via http://t.co/q3Izqdk1n0,1
+6474,injured,,@TheHammers_ @tonycottee1986 alsowhat if some of the 1st team players got injured?Then Bilic would get slated for playing themhe can't win,1
+6477,injured,,Udhampur terror attack: Militants attack police post 2 SPOs injured: Suspected militants tonight attacked a p... http://t.co/cEKbxJmPBj,1
+6478,injured,,#golf McIlroy fuels PGA speculation after video: Injured world number one Rory McIlroy fueled speculatio... http://t.co/dCyYJVmXHR #news,0
+6480,injured,India,#BreakingNews Militants attack Udhampur police post; 2 SPOs injured http://t.co/EqCCrTlnbd,1
+6481,injured,Bronx NY,@WeAreTheNews please support this Please cosponsor S. 928 and support aid for sick and injured 9/11 responders! #renew911health,1
+6482,injured,Avon,@Welles_7 he was injured. He is a pro bowl back.,0
+6484,injured,India,Udhampur terror attack: Militants attack police post 2 SPOs injured: Suspected militants tonight attacked a p... http://t.co/Cwm0ULqu3E,1
+6485,injuries,??,"Injuries may be forgiven but not forgotten.
+
+Aesop",0
+6486,injuries,"Orlando,FL USA",Official kinesiology tape of IRONMANå¨ long-lasting durability effectiveness on common injuries http://t.co/ejymkZPEEx http://t.co/0IYuntXDUv,0
+6490,injuries,North London,@TayIorrMade @MegatronAFC possibly he's had injuries on both ankles though. 2011 one worse but regardless both.,0
+6491,injuries,come here in 20 minutes for an ass kicking,in fact if y'all could tag like small creeping or self inflicted injuries of the skin as derma (with brackets) that would be nice,0
+6492,injuries,Emirates,"Last time I checked Lots of injuries over the course of time = injury prone.
+
+@Calum36Chambers am I wrong?",0
+6493,injuries,"Milton Keynes, England",If you're slating @gpaulista5 for @JackWilshere's injury then you're a disgrace to the #AFC fan base. Injuries happen you cunts!,0
+6494,injuries,Scottsdale. AZ,"Next Man Up---AH SCREW THIS! I'm so tired of injuries.
+
+What happened to Camp Cupcake? More like Camp Cramp and Break.",0
+6495,injuries,Tennessee,My baby girls car wreak this afternoon thank God no serious injuries and she was wearing her seatbelt!!!... http://t.co/NJQV45ndS2,1
+6497,injuries,,I'm only experienced with injuries below the waist,0
+6499,injuries,"Saskatchewan, Canada",@jamienye u can't blame it all on coaching management penalties defence or injuries. Cursed is probably a good way to put it! #riders,0
+6500,injuries,,Tonight we have attended a fire in Romford with @LondonFire thankfully no injuries http://t.co/iyjeJop2WI,1
+6501,injuries,Toronto,Peel police say male cyclist struck near Southdown Road and Royal Windsor Drive in Mississauga. Serious but non life-threatening injuries.,1
+6504,injuries,North West London,@likeavillasboas @rich_chandler Being' injury prone' isn't actually just suffering injuries often.,0
+6505,injuries,,@nalathekoala As a health care professional that deals all gun violence sequalae I consider suicides injuries accidents and homicides,0
+6506,injuries,"Rockland County, NY",West Nyack Pineview Road railroad crossing off Western Highway. Units on scene of a CSX Train vs. truck no injuries.,1
+6510,injuries,"Atlantic Highlands, NJ",Accident with injuries on #NJ36 SB at CR 516/Leonardville Rd http://t.co/2xwIHy2wsg,1
+6511,injuries,"Sutton, London UK",@fkhanage look what Shad Forsythe has done in 1 year we won't have as many injuries as before we will inevitably have injuries like others,0
+6512,injuries,"Alameda and Pleasanton, CA",A new type of ADHD? Head injuries in children linked to long-term attention problems http://t.co/I4FZ75Utnh,0
+6513,injuries,,@imSUSHIckoflove @alekalicante RIGHT?? Yep you're a witness to his injuries HAHA it's a gauze!,0
+6514,injuries,"Madison, WI & St. Louis MO",@BuffoonMike I knew mo not doing much would bite us he was influenced by that shitty staff and injuries are not acquisitions,0
+6515,injuries,Bay Area,Forsure back in the gym tomorrow. Body isn't even at 50%. Don't wanna risk injuries.,0
+6516,injuries,California or Colorado,Why is #GOP blocking chance for #DisabledVeterans w/ groin injuries to have children? #ThePartyofMeanness http://t.co/gzTolLl5WoÛ_,0
+6518,injuries,"Mesa, AZ",Here we fucking go with the injuries again who's next? https://t.co/TuzacdWFqd,0
+6519,injuries,Carterville,Carterville High School coaches prepare for game-day injuries http://t.co/kKiMMBUe04,1
+6520,injuries,Corpus - Las Vegas - Houston,The injuries are starting!!! Please @dallascowboys stay healthy!!! ????????????,0
+6523,injuries,Spring Tx,HEALTH FACT: 75% of muscle mass is made up of fluid. Drink water to prevent strains sprains and other injuries. http://t.co/g0dN1ChLUo,0
+6525,injuries,Toronto,All injuries Pre Foster/Floyd. Those will be covered next week. https://t.co/zRZEjPEF5j,0
+6527,injuries,"Georgia, U.S.A.",@msnbc What a fucking idiot. He had a gun & a hatchet yet there were still no serious injuries. Glad police terminated him.,1
+6528,injuries,"Moncton, New Brunswick",Trauma injuries involving kids and sport usually cycling related: Director Trauma NS http://t.co/8DdijZyNkf #NS http://t.co/52Uus4TFN3,1
+6529,injuries,,@Judson1360 @XTRA1360 O-line and pass rush. Rest of roster is stout barring injuries,0
+6530,injuries,,Diego Costa needs to stop getting injuries urg,0
+6532,injuries,"Riverview, FL ",4 Common Running Injuries and How to Avoid Them http://t.co/E5cNS6ufPA,0
+6534,injuries,California,Enjoying a little golf this summer? Take care to avoid injury -- back and shoulder injuries can happen quickly http://t.co/f1R5ISBVks,1
+6535,injury,,nflexpertpicks: Michael Floyd's hand injury shouldn't devalue his fantasy stock: Michael Floyd's damaged digits won... Û_,0
+6536,injury,beijing .China,Rory McIlroy to Test Ankle Injury in Weekend Practice #chinadotcom #sports http://t.co/UDTGWfSc3P http://t.co/V5wSx0LQN2,0
+6537,injury,,CLEARED:incident with injury:I-495 inner loop Exit 31 - MD 97/Georgia Ave Silver Spring,1
+6540,injury,,JOBOOZOSO: USAT usatoday_nfl Michael Floyd's hand injury shouldn't devalue his fantasy stock http://t.co/DGkmUEoAxZ,0
+6541,injury,Somewhere in China.,Jack Wilshere has poor injury recordand his off field behaviors doesn't help.#Arsenal,1
+6542,injury,"Houston, TX",@NEPD_Loyko Texans hope you are wrong. Radio in Houston have him as starter after Foster injury,0
+6543,injury,"Sacramento, CA",Traffic Collision - No Injury: I5 S at I5 S 43rd Ave offramp South Sac http://t.co/cT9ejXoLpu,1
+6545,injury,Peru,@SergioPiaggio 'IÛªd worked so hard to get to that level that I wasnÛªt going to let the injury define me. I was going to define it.Û Cool,0
+6546,injury,,Enter the world of extreme diving ÛÓ 9 stories up and into the Volga River http://t.co/dMTZMgyRiK,0
+6547,injury,"Los Angeles, California",California LawÛÓNegligence and Fireworks Explosion Incidents http://t.co/d5w2zynP7b,1
+6548,injury,,CLEARED:incident with injury:I-495 inner loop Exit 31 - MD 97/Georgia Ave Silver Spring,1
+6549,injury,"Cambridge, Massachusetts",Greg Garza not in the 18 for Atlas tonight vs Leones Negros in Copa MX play. He left the previous game w/ an injury. #USMNT,0
+6550,injury,,#poster #ergo Rotator #cuff injury recovery kit: http://t.co/zj3ODGQHyp Super High Converting Rotator Cuff Inj http://t.co/VZhTiBe4jh,0
+6551,injury,Lahore,"Live Cricket Score In All Match International
+Domestic
+Team Tour Team Squad
+Profile & Injury
+Lamha Ba Lamha Update
++
+FolloW
+@ICC_RealCKT",0
+6552,injury,Saint Paul,My prediction for the Vikings game this Sunday....dont expect a whole lot. Infact I think Zimmer goal is....injury free 1st game,1
+6553,injury,,DAL News: Wednesday's injury report: RB Lance Dunbar injures ankle is listed as day-to-day http://t.co/Eujgu1HVVx,0
+6554,injury,,Dante Exum's knee injury could stem Jazz's hoped-for surge back to ... http://t.co/8PIFutrB5U,1
+6555,injury,,@AdamRubinESPN Familia: arm injury or head case?,1
+6556,injury,Los Angeles,Dr Jack Stern Interview Ending Back Pain for #Military #Injury. Listen now: http://t.co/YhH7X0MAio,0
+6559,injury,"Shah Alam,Malaysia",Had a nightmare and was about to jump out of bed when I remembered my injury alas it was too late and I screamed in my bedroom,0
+6560,injury,"Dubai, UAE",Tennis: Defending champ Svetlana Kuznetsova withdraws from Citi Open cites injury to her lower left leg (ESPN) http://t.co/iM2HdsKlq5,0
+6561,injury,"ÌÏT: 35.223347,-80.827834",#PFT Barkevious Mingo missed Browns practice with a mystery injury http://t.co/D7m9KGMPJI,0
+6565,injury,,@Patricia_Traina any update on the McClain injury from today's practice?#NYG,0
+6566,injury,,CLEARED:incident with injury:I-495 inner loop Exit 31 - MD 97/Georgia Ave Silver Spring,0
+6567,injury,,FollowNFLNews: Michael Floyd's hand injury shouldn't devalue his fantasy stock http://t.co/5dUjGypImA #NFL #News #Playoffs,0
+6568,injury,"Plano, Texas",'McFadden Reportedly to Test Hamstring Thursday' via @TeamStream http://t.co/jWq4KvJH2j,0
+6569,injury,mnl,New level of tita-dom: bowling injury. http://t.co/tdeQwm8ZXn,0
+6570,injury,,@Sport_EN Just being linked to Arsenal causes injury.,1
+6571,injury,,incident with injury:I-495 inner loop Exit 31 - MD 97/Georgia Ave Silver Spring,1
+6572,injury,"Dallas, TX",#Cowboys: Wednesday's injury report: RB Lance Dunbar injures ankle is listed as day-to-day: http://t.co/RkB7EgKveb,0
+6573,injury,Louisiana,@JJ_DIRTY @MLSTransfers @greggmair oh Gio was my backup. But with SKC next and BWP getting a crack at NYCFC + injury I went BWP. Lol wrong,0
+6575,injury,"Nairobi , Kenya",Enter the world of extreme diving ÛÓ 9 stories up and into the Volga River http://t.co/7adqV1gRVR,0
+6576,injury,California,Quirk Injury Law's News is out! http://t.co/HxVIhDuShP Stories via @dantmatrafajlo,0
+6577,injury,"Dallas, TX",#Cowboys: George: Injury woes took Claiborne from first round to trying to stick around; can he do it?: http://t.co/12giQbVLYs,0
+6579,injury,,Enter the world of extreme diving ÛÓ 9 stories up and into the Volga River http://t.co/vz19VvgMnv,0
+6580,injury,Russia,Our big baby climbed up on this thing on wheels-(IO Hawk)!His knee injury!!!!! Where's my belt?Mr SRK cook ur beautiful ass for punishment!,0
+6582,injury,,incident with injury:I-495 inner loop Exit 31 - MD 97/Georgia Ave Silver Spring,1
+6583,injury,Baltimore,Ngata on injury list at start of practice for Lions http://t.co/Z16DtoQHhG,0
+6585,inundated,Ireland,A Laois girl advertised for a new friend to replace her loved-up BFF and has been inundated http://t.co/IGM2fcmupm http://t.co/UxcfBJ3mzx,0
+6586,inundated,"England & Wales Border, UK",@Lenn_Len Probably. We are inundated with them most years!,0
+6588,inundated,"Zeerust, South Africa",Most of us ddnt get this English RT @ReIgN_CoCo: The World Is Inundated With Ostentatious People Stay Woke!,0
+6591,inundated,Seattle,1st wk of Rainier Diet and my street Seward Park Ave is inundated w/ bypass traffic so @seattledot what's your plan? @seattletimes,0
+6593,inundated,"Boston, Massachusetts","Body shops inundated with cars dented by hail... Good news insurance pays... Bad news : you are stuck with deductible !
+#wcvb",1
+6594,inundated,Bristol,Hi @FionaGilbert_ sorry for the delay. Slightly inundated with applications at the mo but we have yours and will get back to you asap!,0
+6596,inundated,Ireland,A Laois girl advertised for a new friend to replace her loved-up BFF and has been inundated http://t.co/IGM2fc4T0M http://t.co/YiLTu7SXAr,0
+6597,inundated,The Main ,I presume my timeline will be inundated with 'soggy bottom' & lashings of 'moist' tweets now! :-D,0
+6598,inundated,The windy plains of Denver,@VZWSupport do texts use data? She was inundated by a group text yesterday.,0
+6601,inundated,"Sunbury, Ohio",@AssassinKPg Brother you don't want my friendship-you want to add your commercials on my posts. Frankly I'm inundated with this crap daily.,0
+6602,inundated,"Sunnyvale, CA",@bentossell @ProductHunt Thanks! I know you all get inundated. Have a good one!,0
+6603,inundated,Land of Lincoln,@yahoocare perhaps you should change you name to yahoo doesn't care. Are you so inundated with complaints that you cannot respond to me??,0
+6604,inundated,,Let people surf! HI is no Waimea bay. It's not like the beach is or ever will be inundated with surfers https://t.co/czDW8ooWa2,0
+6605,inundated,Kenya,FB page of Bushman Safari's Zimbabwe the company that Palmer used 2 kill Cecil is inundated with negative commentes https://t.co/QwIIhNMChR,0
+6607,inundated,Australia,Kids are inundated with images and information online and in media and have no way to deconstruct. - Kerri Sackville #TMS7,0
+6608,inundated,,@MistressPip I'm amazed you have not been inundated mistress.,0
+6610,inundated,NYC&NJ,@allyinwondrland That sounds like the perfect bread! I'll hit up Trader Joes this wknd ??. Not really lol Already being inundated with,0
+6611,inundated,swindon,Listening to my grandad talk about his holiday is great but I don't want to be inundated with train photos ????,0
+6613,inundated,Croydon,@sophieingle01 @AngharadJames16 you'll be inundated with gifts of banana malt loaf now ?? #Worm,0
+6614,inundated,Asia,As a result of heavy rains in #Bangladeshaffected lands are inundated by flood waters-land looks like rivers at high tide #BangladeshFlood,1
+6616,inundated,Coventry,@tonymcguinness probably being inundated with this question now but who's coming to creamfields??? (please say all 3) #Mainstage,0
+6617,inundated,,@BCFCTicketLady @Mr_Aamir_Javaid Can see you and inundated ATM so just wanted to say well done. You are doing a grand job #KRO,0
+6619,inundated,"Toronto, ON, Canada",inundated with Westeros Between Storm of Swords as a book on tape & finishing S5 of Game of Thrones I don't know my Starks from my Greyjoys.,0
+6621,inundated,Singapore,Myanmar's president urged people to leave a low-lying southern delta region on Thursday with rain water that has inundated much of the counÛ_,1
+6622,inundated,"Manchester, England",@teahivetweets You would get inundated!!,0
+6624,inundated,"San Jose, CA, USA",This is set to become a huge one month wonder. (And then Pornhub will be inundated....) http://t.co/gghfx8PzMh,1
+6625,inundated,"UK, Republic of Ireland and Australia",Inundated with employee holiday request paperwork? Our cloud based HR software @hronlinetweets will help simplify your staffing logistics.,0
+6626,inundated,Milton keynes,Brace yourself @samaritans by Sunday evening you will inundated with thousands of calls from depressed @Arsenal fans http://t.co/HexPc77otN,0
+6627,inundated,Pontefract UK,@LEDofficial1 As you can imagine we're inundated with requests each week for samples & as much as we'd love to be able to send sweets 1/2,1
+6628,inundated,the Dirty D,@MI_Country_Hick pfft! I wish I had a bot like that. Instead I'm daily inundated with 140 characters of the same unhinged machismo bullshit.,0
+6629,inundated,United States,#tech Data Overload: The Growing Demand for Context and Structure: In a world inundated with information... http://t.co/s0ctCQJvjX #news,0
+6630,inundated,,[Withering] to death. is an album found when he [undermine]d his backyard because his cat [inundated] the floor [mustering] cat food.,0
+6631,inundated,"Paducah, KY",@Bilsko and suddenly I'm inundated with research. @humofthecity,1
+6632,inundated,Maryland,Already expecting to be inundated w/ articles about trad authors' pay plummeting by early next year but if this is true it'll be far worse,0
+6634,inundated,,@Legna989 you're correct it is coming from both sides. Maybe I'm just friends on FB w more Rep so my feed is inundated w false claims...,0
+6635,inundation,Asia European Continent Korea ,"MEGALPOLIS Area Petting Party Shiver
+Fear Instant .... GLOBAL Inundation OVERFLOW
+WAS Commencement WRITE ?? ?",0
+6636,inundation,,@ZachLowe_NBA there are a few reasons for that but one of them is the constant Drake inundation. Extremely annoying. If Drake lands us a,0
+6637,inundation,,Oh no. The Boots & hearts social media inundation is starting . Please no,0
+6638,inundation,"Athens, Greece","Potential Storm Surge Flooding Map by National Hurricane Center http://t.co/JZWRWlVlSj
+http://t.co/oT3bjjhH8s",1
+6642,inundation,,Punjab government flood relief platform: http://t.co/vULrClw7Bd realtime information on inundation damages rescue efforts & travel alerts,1
+6643,inundation,Proudly Canadian!,Well unfortunately for my followers stage pics came in today. Advanced apologies for the inundationÛ_ https://t.co/u8hSrtrXMm,0
+6644,inundation,Cascadia,@kathrynschulz Plus you're well out of the inundation zone amirite?,0
+6646,inundation,"County Durham, United Kingdom",sorry but that mousse inundation was fuckin hilarious https://t.co/tUai0ZwGXU,0
+6647,inundation,,Beyond all bounds; till inundation rise,0
+6648,inundation,,Sprinklers: FAQ About Lawn Inundation Systems Answered eBb,0
+6649,landslide,"Melbourne, Australia",@kemal_atlay caught in a landslide,1
+6653,landslide,,".Sink Holes Earth Slides And Avalanches>>https://t.co/XrRLnheLaP
+#Allah #Islam #sinkhole #landslide #avalanche #USA #France #UK #usgs #emsc",1
+6654,landslide,,@MartinMJ22 @YouGov When did a 12 seat majority with 36% of the vote become a landslide?,1
+6655,landslide,,@hoodedu You fucking better Berlatsky. If I don't win this fucking thing in a landslide I'm holding you personally fucking responsible.,0
+6656,landslide,"Roanoke, VA",LANDSLIDE (live) by FLEETWOOD MAC #nowplaying #Q99,0
+6658,landslide,"Dundee, UK",Army veteran fears loose rocks from Dundee landslide could kill him at any moment: He has faced a hail of bulletsÛ_ http://t.co/sxmLg3XdvX,1
+6660,landslide,Texas,#Landslide! Trump 25.5% Bush 12.5% http://t.co/xY41z0O5ei via @pollster @realdonaldtrump,0
+6661,landslide,New York City,"Inbounds/ Out of Bounds:
+
+While many picked the Nats to win the NL East in a landslide they currently sit 2... http://t.co/l0dEoCxU6o",1
+6662,landslide,"Austin, Texas",@toddstarnes Enjoy the impending landslide Todd. Hehe.,0
+6663,landslide,London,11:30BST traffic: A10>Paris A40 Geneva A7 Mons A1 Hamburg A2>Hanover A5 Karlsruhe Gotthard n/b http://t.co/yoi9tOCxiQ,1
+6664,landslide,Detroit Tigers Dugout,My lifelong all-time favorite song is 'Landslide'. This song has gotten me through a lot of though times &... http://t.co/RfB3JXbiEJ,0
+6665,landslide,USA,Speaking of memorable debates: 60-Second Know-It-All: Ronald Reagan's landslide romp on Election Day in 1980 m... http://t.co/2XOhtjQJWh,0
+6667,landslide,st.louis county missouri ,@awadgolf @GOP a capitalist would win biggest landslide in history people who haven't voted in years even OLD SCHOOL DEMS would elect him.,0
+6668,landslide,Europe,Latest: Landslide kills three near Venice after heavy rain http://t.co/BcCcA4VY9R,1
+6669,landslide,Scotland,FreeBesieged: .MartinMJ22 YouGov Which '#Tory landslide' ... you can't POSSIBLY mean the wafer-thin majority of #GÛ_ http://t.co/2q3fuEReY5,1
+6670,landslide,Detroit/Windsor,Now Playing: Landslide by Smashing Pumpkins http://t.co/7pQS4rshHb #89X,0
+6672,landslide,,Got it winning by a landslide those the perfect words cause I got it out the mud.....,0
+6675,landslide,Dundee,DUNDEE NEWS: Army veteran fears loose rocks from Dundee landslide could kill him at any moment http://t.co/y7Rv0tiL1w,1
+6676,landslide,Indiana,So cool @GarbanzoBean23 in the news! Cutest INDOT worker but I might be a little bias ?? http://t.co/g7K9TqVQbk,0
+6678,landslide,Edinburgh,@CrowtherJohn @Effiedeans you just keep ur head in the sand john. The best place for it. Lbr after 97 landslide. Couldnt imagine situ now,0
+6679,landslide,,Method in contemplation of incident an leading bridal landslide: wiWNpFXA http://t.co/xysNXUM29T,1
+6681,landslide,,being stuck on a sleeper train for 24 hours after de-railing due to a landslide was most definitely the pit of the trip,1
+6682,landslide,,'Since1970the 2 biggest depreciations in CAD:USD in yr b4federal election coincide w/landslide win for opposition' http://t.co/wgqKXmby3B,0
+6683,landslide,UK,#Flashflood causes #landslide in Gilgit #Pakistan Damage to 20 homes farmland roads and bridges #365disasters http://t.co/911F3IXRH0,1
+6686,landslide,EGYPT,Italy: Three dead after landslide in the Italian Alps: http://t.co/42MawZb8T9 via @YouTube,1
+6687,landslide,The Circle of Life,"So when you're caught in a landslide
+I'll be there for you
+And in the rain
+give you sunshine
+I'll be there for you",0
+6688,landslide,,#landslide while on a trip in #skardu https://t.co/nqNWkTRhsA,0
+6689,landslide,,Listen to Landslide by Oh Wonder #SoundCloud https://t.co/SJkgJxff2r,0
+6690,landslide,,@RonWyden Democrats restricted Blacks from Voting. In 48' Landslide Lyndon Johnson won Senate Election by 67 Votes of Dead People in Texas!,0
+6693,landslide,,This Govt of Hubris has small maj yet acts as if it has a landslide. Opposition req'd with vision rigour & hunger to serve this democracy.,0
+6694,landslide,"i got 1/13 menpa replies, omg",*nominates self but @_ohhsehuns wins by a landslide* https://t.co/rCvDrwoWvO,0
+6695,landslide,,Landslide kills three near Venice after heavyåÊrain http://t.co/q3Xq8R658r,1
+6697,landslide,,@Morning_Joe @Reince @PressSec Joe ur so smart u should run 4 president Ur perfect !The American people love assholes u'd win by a landslide,0
+6699,lava,"Pocatello, Idaho",Perfect night for a soak! Lava here I come?? http://t.co/cyv2zG935g,0
+6700,lava,"Los Angeles, CA","Seriously these two tracks (one new one old) are amazing. Fond memories with TEARS.
+https://t.co/sZ2RvwpWhj
+https://t.co/laJx578DRu",0
+6701,lava,"Nashville, TN",Imagine a room with walls that are lava lamps.,1
+6702,lava,probably watching survivor,The sunset looked like an erupting volcano .... My initial thought was the Pixar short Lava http://t.co/g4sChqFEsT,1
+6703,lava,,My hands are cold but my feet are warm. That's where I keep my lava,0
+6706,lava,"Medan,Indonesia",@YoungHeroesID Lava Blast & Power Red #PantherAttack @JamilAzzaini @alifaditha,0
+6707,lava,"Santa Maria, CA",Neighbor kids stopped to watch me play Disney's I Lava You song on my uke. Left as I got into Journey's Don't Stop Believing #kidsthesedays,0
+6708,lava,,@eles_kaylee @Jannellix0 so she puts on a different face for you ?? her heart broke after buying me lava cakes smh,0
+6709,lava,,I may have gotten a little too exited over my (home made) lava lamp. Through source http://t.co/nxTTd9NrUx http://t.co/iRQj3ZKCUz,0
+6711,lava,,Lava Dragon Breeder! I just bred a Lava Dragon in DragonVale! Visit my park to check it out! http://t.co/QGum9xHEOs,0
+6712,lava,??9?,waiting for my chocolate lava cakes to get here ??????,0
+6714,lava,,contemplating going to chilis just to get a molten lava cake ....??,0
+6716,lava,Colombia,'I may have gotten a little too exited over my (home made) lava lamp.':http://t.co/724Gq5ebqZ http://t.co/H01j9PIrIe,0
+6719,lava,"Oklahoma, USA",Lava cakes are my fav.,0
+6721,lava,,I lava you ?????? http://t.co/aeZ3aK1lRN,0
+6722,lava,Jakarta,@YoungHeroesID Lava Blast & Power Red @dieanpink95 @yu_nita99 #PantherAttack,0
+6723,lava,,I liked a @YouTube video from @skippy6gaming http://t.co/MXhrextrkh Minecraft PS4 - 3 X 2 LAVA DOOR - How To - Tutorial ( PS3 / XBOX,0
+6724,lava,"Newark, NJ","https://t.co/4i0rKcbK1D
+SON OF SAVIOR LAVA VIDEO",0
+6725,lava,USA,Deal of The Day : http://t.co/US0qQqhQVj Brand New DSERIALPCILP Lava Computer PCI Bus Dual Serial 16550 Board #eÛ_ http://t.co/l0b14SJ7JB,0
+6726,lava,"Chicago, Il",Bleachers' entire set has been one big game of The Stage Is Lava http://t.co/CLlWUD4Wsu,0
+6727,lava,LA,i lava you! ????,0
+6729,lava,"Clayton, NC",Check out my Lava lamp dude ???? http://t.co/To9ViqooFv,1
+6730,lava,,Shark boy and lava girl for the third time today. I guess this is what having kids feelings like. ??????,0
+6731,lava,"Bandar Lampung, Indonesia",@YoungHeroesID Lava Blast dan Power Red #PantherAttack @CunayyH @TaufikCJ,1
+6734,lava,Venezuela,I LAVA YOU.,0
+6735,lava,"San Jose, CA",A river of lava in the sky this evening! It was indeed a beautiful sunset sky tonight. (8-4-15) http://t.co/17EGMlNi80,0
+6736,lava,Indonesia,@YoungHeroesID 4. Lava Blast Power Red #PantherAttack,0
+6737,lava,"Madison, WI",There is a #baby in Oliver's #swim class that cries the ENTIRE class. It's like his #parents are #waterboarding him or dipping him in #lava,0
+6738,lava,buffalo / madrid / granada,let's play the floor is lava but instead of just the floor let's play with the whole world and never get out of bed http://t.co/aKQ4RwjFVL,0
+6742,lava,USA,Check This Deal : http://t.co/uOoYgBb6aZ Sivan Health and Fitness Basalt Lava Hot Stone Massage Kit with 36 PieceÛ_ http://t.co/JJxcnwBp15,0
+6744,lava,HIÛ¢UTÛ¢AS,@AmuMumuX lava you.?? quit actin up,0
+6745,lava,"di langit 7 bidadari (^,^ )",@YoungHeroesID LAVA BLAST dan POWER RED #PantherAttack @Mirmanda11 @evaaaSR,1
+6746,lava,,"I wish that the earth sea and sky up above
+would send me someone to lava????",0
+6748,lava,"Vancouver, BC",I tried making a chocolate and peanut butter lava cake using my #shakeology protein shake mix and aÛ_ https://t.co/APoD4EIVBa,0
+6749,lightning,,Thunder and lightning possible in the Pinpoint Foothill Forecast. http://t.co/CtIjdPXABk,1
+6751,lightning,"Coventry, UK",dogs Lightning reshapes rocks at the atomic level - A lightning strike can reshape a mineral's crystal structure ... http://t.co/2Wvmij5SA4,0
+6754,lightning,"Seattle, WA",What you gonna do now puppies?! No more destroying my #iPhone Lightning cables! https://t.co/Z4jyHaRreW,0
+6756,lightning,Georgia,The Lightning out here is something serious!,1
+6757,lightning,"Norman, Oklahoma",Couple storms near Guthrie OK. Leaving Norman for an evening lightning op. #okwx http://t.co/HcwrK81p71,1
+6758,lightning,"Rapid City, Black Hills, SD",NWS says thunderstorms with deadly lightning will move across the Black Hills this evening. That assumes there's a safe type. Hmm?,1
+6759,lightning,USA,Phones Offers >> http://t.co/bYtbZ8s5ux #034 8-Pin Lightning Connector 2.1A Car Charger For Apple 5 5S 5C 6 6+ iPÛ_ http://t.co/o3wVScLiCX,0
+6760,lightning,"Memphis, in the Tennessees",@random_tourist it rained. Some guys tree hit by lightning and some jackholes drove onto flooded streets.,1
+6762,lightning,"Greensboro, North Carolina",Expect gusty winds heavy downpours and lightning moving northeast toward VA now. http://t.co/jyxafD4knK,1
+6764,lightning,,Science Daily: Lightning reshapes rocks at the atomic level - A lightning strike can reshape a mineral's crystal s... http://t.co/TEZLTqeyw2,1
+6765,lightning,,iCASEIT - MFi Certified Lightning Cable - 1m http://t.co/b32Jmvsb1E http://t.co/XKMiJGY59T,0
+6766,lightning,,Don't blink ?? won't see the Lightning take the W ?? http://t.co/D4c2iqiRnU,1
+6767,lightning,"Leesburg, FL",Wolforth with a two-out single up the middle. Fourth hit of the night for Altamonte Springs.,0
+6769,lightning,"Rotterdam, The Netherlands",@Benji_Devos thanks thanks :3,0
+6772,lightning,"Greensboro, North Carolina",Heavy rain gusty winds and vivid lightning moving east through the Triad now. http://t.co/JMu5uyamdu,1
+6773,lightning,"Victoria, BC",Lightning causes six new fires on VancouveråÊIsland http://t.co/VdILiiCyR5,1
+6774,lightning,winston-salem north carolina,Expect gusty winds heavy downpours and lightning moving northeast toward VA now. http://t.co/Z5cfrWado6,1
+6775,lightning,,World War II book LIGHTNING JOE An Autobiography by General J. Lawton Collins http://t.co/BzdfznKvoG http://t.co/eRhdH37rDh,0
+6776,lightning,,Dry thunderstorms with lightning possible in the Pinpoint Valley Forecast. http://t.co/IdASYJybrO http://t.co/gdoAOLPq91,1
+6779,lightning,"Leesburg, FL",.@dantwitty52 shuts the door on the Boom in the bottom half. #Lightning coming up in the top of the eighth.,0
+6781,lightning,Elchilicitanierraversal ,#NowPlaying 'The Lightning Strike' de Snow Patrol de A Hundred Million Suns ? http://t.co/GrzcHkDF37,0
+6783,lightning,(RP),@Lightning_OOC I AM BEING SUBJECTED TO UNWARRANTED SEXUAL CONVERSATION.,0
+6784,lightning, 45å¡ 5'12.53N 14å¡ 7'24.93E,@Lightning_Wolf_ You really have Activity Directory? :P,0
+6785,lightning,,Yeah tonight I ride the lightning to my final resting place ??????,0
+6787,lightning,USA,Cell Phone Shop : http://t.co/iOq051t5te #629 8-Pin Lightning Connector 2.1A Car Charger For Apple 5 5S 5C 6 6+ iÛ_ http://t.co/klxAUcNP5I,1
+6788,lightning,,World War II book LIGHTNING JOE An Autobiography by General J. Lawton Collins http://t.co/R4khEH7iaf http://t.co/qSZgJfUutu,1
+6789,lightning,Reddit ,Lightning strike in the distance via /r/pics http://t.co/iDmhSwewQw #pics,1
+6790,lightning,"Asheboro, NC",Some crazy lightning outside,0
+6792,lightning,"Holland MI via Houston, CLE",Corey Robinson having some solid reps at RT although as I type this he got beat on lightning dip by T. Walker,0
+6793,lightning,Reddit ,Lightning strike in the distance via /r/pics http://t.co/iDmhSwewQw #pics http://t.co/wwxcOB52zI,1
+6794,lightning,"State College, PA",Check out this amazing footage of lightning filmed while lifting off from Chicago... http://t.co/AOg5chjmVs http://t.co/cLN2SXzY1Z,0
+6795,lightning,SoDak,Check this out! Lightning reshapes rocks at the atomic level http://t.co/l1gH8064YV #scichat #science,1
+6796,lightning,"Waverly, IA","'When you walk away
+Nothing more to say
+See the lightning in your eyes
+See Û÷em running for their lives'",0
+6799,loud%20bang,Kenya,kabwandi_: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6800,loud%20bang,Kenya,tkyonly1fmk: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6801,loud%20bang,,#ActionMoviesTaughtUs things actually can explode with a loud bang...in space.,0
+6802,loud%20bang,,@LayLoveTournay @RyroTheUnaware [loud groaning] Let us bang.,0
+6804,loud%20bang,Kenya,Ercjmnea: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6806,loud%20bang,Why should you know?,@Chibi877 --head. It hit the wall behind him with a loud bang. 'Language!' Drake shouted at him before getting up. 'I'm going out stay--,1
+6807,loud%20bang,Kenya,kotolily_: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6808,loud%20bang,Kenya,tarmineta3: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6809,loud%20bang,Kenya,shawie17shawie: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6810,loud%20bang,,There was a loud bang outside earlier and I check to find my dad on the floor after the chair he was sitting on broke http://t.co/uniJ1RVrRq,0
+6811,loud%20bang,,Who the fuck plays music extremely loud at 9am on a Tuesday morning?? Bruv do they want me to come bang them??,0
+6813,loud%20bang,Kenya,tianta_: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,1
+6814,loud%20bang,"Philadelphia, PA ",Nearly had a heart attack just now; loud bang against window next to meÛ_turns out it was two birds flying into the glass.,1
+6815,loud%20bang,Photo : Blue Mountains ,#auspol Can you see the resemblance between ABBOTT & Campbell both are loud and came in with a big BANG!! Out the same way; Lets see !,0
+6817,loud%20bang,"Bedford, England",The chick I work with chews chewing gum so loud ?? feel to bang her,0
+6819,loud%20bang,Kenya,nikoniko12022: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6820,loud%20bang,Aperture Science Test Facility,What the fuck was that. There was a loud bang and a flash of light outside. I'm pretty sure I'm not dead but what the hell??,0
+6821,loud%20bang,"Wandsworth, London",@SW_Trains strange loud impact bang noises under train to Epsom about to arrive #Wimbledon,0
+6823,loud%20bang,Kenya,Jrowah: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,1
+6824,loud%20bang,Kenya,k_matako_bot: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6828,loud%20bang,im definitely taller than you.,I WAS PEACEFULLY SITTING IN MY ROOM AND I HEARD THIS LOUD BANG OF SOMETHING FALLING,1
+6830,loud%20bang,Kenya,Kijima_Matako: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6832,loud%20bang,Kenya,matako_3: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6833,loud%20bang,london essex england uk,It's was about 2:30 in the morning&I went downstairs to watch some telly&I accidentally made a loud bang&my dad(who has a broken leg)walked-,0
+6834,loud%20bang,Kenya,ykelquiban: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6835,loud%20bang,{Detailed},@ToxicSavior_ -a loud bang. He froze on the spot as slowly every head turned towards him. One of the things he hated the most was to be -,0
+6837,loud%20bang,Kenya,daviesmutia: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,1
+6839,loud%20bang,,@Bang_Me_Up_Guk he was ;-; like he was singing so loud ;-;,0
+6841,loud%20bang,Fairgrounds Resident,Moved on to 'Bang Bang Rock and Roll' by @Art_Brut_ . It's been too long since I've played this one loud. ART BRUT TOP OF THE POPS.,0
+6843,loud%20bang,English Midlands,"St steel coffee cafetiere exploded this am with loud bang hot coffee & grounds shot over table clean crockery phone
+tablet. How?",1
+6844,loud%20bang,Kenya,matako_milk: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6845,loud%20bang,,need to work in an office I can bang all my fav Future jams out loud,0
+6847,loud%20bang,Kenya,ColnHarun: Breaking news! Unconfirmed! I just heard a loud bang nearby. in what appears to be a blast of wind from my neighbour's ass.,0
+6848,loud%20bang,,I don't laugh out loud at many things. But man I really lol @ the big bang theory.,0
+6849,mass%20murder,"Victoria, Australia, Earth",@samanthaturne19 It was... Nagaski another act of mass murder sanctioned and forgiven cause the Allies won... Not by me.,1
+6850,mass%20murder,Antarctica,@TANSTAAFL23 It's not an 'impulse' and it doesn't end in mass murder. Correlation does not imply causation.,1
+6852,mass%20murder,"Magnolia, Fiore ",@ColdMpress You up to commiting mass murder tonight?,1
+6854,mass%20murder,New Sweden,The media needs to stop publicizing mass murder. So many sick people do these things for the eyes of the world & the media is not helping.,1
+6855,mass%20murder,"Victoria, Australia, Earth",@samanthaturne19 IIt may logically have been the right call... maybe... But it's an act of mass murder and I can't sanction it.,1
+6857,mass%20murder,New York,We have different moral systems. Mine rejects the mass murder of innocents yours explicitly endorses such behavior. https://t.co/qadRKEJZ9T,1
+6858,mass%20murder,cereal aisle #17:i4,@DoctorDryadma mass murder here we come,1
+6860,mass%20murder,Los Angeles,RT owenrbroadhurst RT JuanMThompson: At this hour 70 yrs ago one of the greatest acts of mass murder in world histÛ_ http://t.co/ODWs0waW9Q,1
+6861,mass%20murder,i'm a Citizen of the World,If abortion is murder then blowjobs are cannibalism and masturbation is mass genocide.,1
+6862,mass%20murder,,"@noah_anyname That's where the concentration camps and mass murder come in.
+
+EVERY. FUCKING. TIME.",0
+6863,mass%20murder,"Leicester, England",@D1ff3r3nt1sG00d @RiceeChrispies What if he committed a mass murder?,1
+6864,mass%20murder,,@tuicruises @aida_de Cruise Industry Supports Mass Murder of Whales in #Faroe Islands!! 'Everything the (cont) http://t.co/3a3FGZFmzh,1
+6867,mass%20murder,"Melbourne, Australia",Hiroshima - one of history's worst examples of mass murder http://t.co/TmogTi6FB4 #hiroshima #war #atombomb #japan,1
+6870,mass%20murder,,@guardian Has Japan ever truly come to terms with devastation and mass murder of millions of Chinese and others with traditional weapons?,1
+6872,mass%20murder,,Oh the usual. Mass murder and world domination plans over coffee. How's your day going?,1
+6874,mass%20murder,Anonymous,http://t.co/c1H7JECFrV @RoyalCarribean do your passengers know about the mass murder that takes place in the #FaroeIslands every year?,1
+6875,mass%20murder,,@noah_anyname The utopian impulse inevitably ends in gulags and mass murder.,1
+6876,mass%20murder," Queensland, Australia",Urgent! Save the Salt River #WildHorses! Mass murder by the very ppl supposed to protect them? --> http://t.co/14wH0pJJ2C @CNN @CBC,1
+6877,mass%20murder,Everywhere,This Attempted Mass Murder brought to You by the Obama Administration http://t.co/jbrK8ZsrY6,0
+6878,mass%20murder,,He made such a good point. White person comings mass murder labelled as criminal minority does the same thing... http://t.co/37qPsSnaCv,0
+6879,mass%20murder,Anonymous,http://t.co/FhI4qBpwFH @FredOlsenCruise Please take the #FaroeIslands off your itinerary until the mass murder of dolphins & whales stops.,0
+6880,mass%20murder,Realville,@FLGovScott We allow Farrakhan to to challenge 10000 males to rise up & commit mass murder as he just did in Miami? http://t.co/gV84WNhB7S,1
+6881,mass%20murder,Anonymous,http://t.co/c1H7JECFrV @RoyalCarribean do your passengers know about the mass murder that takes place in the #FaroeIslands every year?,1
+6882,mass%20murder,New Sweden,The media needs to stop publicizing mass murder. So many sick people want the eyes of the world and the media... http://t.co/QZlPFHpwDO,0
+6883,mass%20murder,by a piano probably. ,@yelllowheather controlled murder is fine. mass murder to a crowd of undeserving people isn't. case closed.,1
+6884,mass%20murder,"Fiore, Lamia Scale",@Re_ShrimpLevy I'm always up for mass murder,1
+6885,mass%20murder,,@JakeGint the mass murder got her hot and bothered but at heart she was always a traditionalist.,1
+6890,mass%20murder,Chattanooga TN,@MNPDNashville @MontalbanoNY sadly suicide by cop. Wed 2PM @ Dollar movie does not a mass murder make.,1
+6892,mass%20murder,"Nashville, TN",@billy_hodge Aurora theater shooting trial: Gunman expected notoriety for mass murder and nothing else http://t.co/1RPCHRu72C,1
+6893,mass%20murder,"Birmingham, England","#DebateQuestionsWeWantToHear Why does #Saudi arabia and #Israel get away with mass murder?
+#Wahhabism #Zionism",1
+6896,mass%20murder,"Huntsville, AL",Okay not sure the word 'mass murder' applies during this war but it was horrendous none the less. https://t.co/Sb3rjQqzIX,1
+6897,mass%20murder,,Another white guy trying to mass murder people for no apparent reason just because let me guess he's mentally ill blah blah blah #Antioch,1
+6898,mass%20murder,Auckland,Hiroshima: 70 years since the worst mass murder in human history. Never forget. http://t.co/jLu2J5QS8U,1
+6900,mass%20murderer,"Haysville, KS",@CarlaChamorros HILLARY A MASS MURDERER.,0
+6903,mass%20murderer,,Kach was a group to which belonged Baruch Goldstein a mass murderer who in 1994 shot and killed 29 PalestinianÛ_ http://t.co/bXGNQ57xvb,1
+6905,mass%20murderer,Seattle,@TrillAC_ I think we've only had like one black mass murderer in the history of mass murders white people do that shit.,1
+6907,mass%20murderer,,Mass murderer Che Guevara greeting a woman in North Korea http://t.co/GlJBNSFGLl',1
+6908,mass%20murderer,Earth-616,[Creel:You must think I'm a real moron Flag man! A brainless mass of muscle!] I do...But I don't think you're a mass murderer!,0
+6909,mass%20murderer,USA,#gunsense answer to #GFZ's: break law on the minuscule chance a mass murderer shows up. https://t.co/qEoPMCJbCz,1
+6910,mass%20murderer,"California, USA",#TheaterShooting DEFENDANT/MASS MURDERER CHOSE NOT 2 TESTIFY IN FINAL PHASE 3 so he won't therefore B subject 2 cross-exam or jury questions,1
+6911,mass%20murderer,wisco,It's like God wants me to become a mass murderer with how many dickheads I have to deal with on a daily basis.,0
+6912,mass%20murderer,,@atljw @cnnbrk fine line btw mass murderer and terrorist. Yes we don't know if there's polit. or social aspect yet; however he went to a,0
+6913,mass%20murderer,,White people I know you worry tirelessly about black on black crime but what are you going to do about your mass murderer problem?,1
+6914,mass%20murderer,,@defendbutera i look like a mass murderer in it,0
+6915,mass%20murderer,"San Diego, CA",.@LibertyGeek83 Something about kissing the ass of mass murderer doesn't sit right with me. @POTUS feels this is ok. http://t.co/LeJ5OnUs9Q,0
+6916,mass%20murderer,,You happen to conveniently 'forget' about how you Zionists revere and 'honour' mass murderer Baruch Goldstein. https://t.co/3KOB7xBeA0,1
+6917,mass%20murderer,Leaving Bikini Bottom,seeing as how this person is a mass murderer and has like FBI CIA grade equipment to do evil shit.,0
+6918,mass%20murderer,"Tennessee, USA",Hey #movietheatre mass murderer wanna-be we don't play that shit in the #615!,1
+6919,mass%20murderer,,Julian Knight - @SCVSupremeCourt dismisses mass murderer's attempt to increase prisoner pay. Challenged quantum of 5% increase 2013.,1
+6920,mass%20murderer,"Haysville, KS",@bettyfreedoms @AbnInfVet hillary mass murderer.,1
+6921,mass%20murderer,"Eww, I'm not Paul Elam","Reminder: Mass murderer and white supremacist Anders Breivik was also unsurprisingly an anti-feminist.
+http://t.co/1lXnJVl8TR",1
+6925,mass%20murderer,"Huntsville, AL",@TheEconomist Step one: get that mass murderer's portrait off the yuan.,0
+6926,mass%20murderer,Hemel Hempstead,"If your friends really were your friends they'd support you regardless of your decisions.
+
+Unless you become a mass-murderer or something",0
+6928,mass%20murderer,Chester Football Club,@VictoriaGittins what do you take me for I'm not a mass murderer! Just the one...,0
+6929,mass%20murderer,Fresno,Happy boy to mass murderer http://t.co/xPddWH5teM,1
+6930,mass%20murderer,Earth,@NeanderRebel If you take the suit off him I wouldn't be surprised to hear this is the face that belonged to another democrat mass-murderer,1
+6931,mass%20murderer,"West Hollywood, CA",Has gun law ever dissuaded a potential mass murderer?,1
+6932,mass%20murderer,,Another White mass murderer. Thank God I live in California. https://t.co/4COg0OTiWn,1
+6933,mass%20murderer,ANDY 4 LEADER X,@TelegraphWorld lets hope it's a upper class white mass murderer....''' Mmmm,0
+6935,mass%20murderer,,Another White mass murderer. Thank God I'm from California. @FrauTrapani,1
+6936,mass%20murderer,Hell,Not only are you a mass murderer but at a movie theatre where niggas dropped bread to see a movie? Cmon man.,0
+6937,mass%20murderer,"Haysville, KS",@BenignoVito @LibertyBell1000 HILLARYMASS MURDERER.,0
+6939,mass%20murderer,"Tama, Iowa",Nazi Mass Murderer Became Chairman At Vaccine Drug Company In... http://t.co/x713OMh6Ai,1
+6940,mass%20murderer,,Another White mass murderer. #Antioch https://t.co/OWpd7vcFS6,1
+6943,mass%20murderer,Dundee,@blairmcdougall and when will you be commenting on Ian Taylor's dealings with mass - murderer Arkan?,1
+6945,massacre,,@AFK_10 @Dr_JohanFranzen ISIS are orchs. But they don't have the ability to massacre civilians far from the frontlines like the tyrant.,1
+6946,massacre,,"@Cameron_WATE
+ Parents of Colorado theater shooting victim fear copycat massacre
+
+http://t.co/LvlH3W3aWO
+#Antioch
+
+http://t.co/vIwXY1XDYK",1
+6948,massacre,Minneapolis - St. Paul,UK police link Tunisian beach massacre with Bardo museum attack http://t.co/1fVoOTqnEj,1
+6949,massacre,Las Vegas aka Hell,Baby elephant dies just days after surviving massacre of his family http://t.co/qzCUT7bVKT,1
+6950,massacre,,"@abc3340
+Parents of Colorado theater shooting victim fear copycat massacre
+
+http://t.co/LvlH3W3aWO
+#Antioch
+
+http://t.co/vIwXY1XDYK",1
+6951,massacre,"Ashburn, VA",I just bought tickets to DEATH BED / DUDE BRO PARTY MASSACRE III w/ @pattonoswalt Live at @AlamoDC! https://t.co/pmXLeZJBRc,0
+6953,massacre,"St. Louis, Mo",This Friday!! Palm Beach County #Grindhouse Series one night screening of #TexasChainsawMassacre http://t.co/1WopsGbVvv @morbidmovies,0
+6954,massacre,Vancouver Canada,@AnimalLogic LOTG smoothed out once blue bird and moth were caught and let go. Chalked up mouse massacre to a subtle Disney diss.,0
+6955,massacre,,3 Years After the Sikh Temple Massacre Hate-Violence Prevention Is Key | @dviyer @Colorlines http://t.co/nLbLtYnV36 http://t.co/bjrrqHHoHL,1
+6956,massacre,,"Massacre at #Sinjar : Has the World Forgotten the #Yazidi ?
+http://t.co/WUh1g2BLP1
+#??_????_????? #yazidi_shingal_genocide #EzidiGenocide",1
+6959,massacre,Colorado,Colorado movie massacre trial jurors reach verdict on mitigating factors http://t.co/75VLsw85GI http://t.co/txY3US2Ejs,1
+6960,massacre,"Kingston, Jamaica",Still Uninvestigated After 50 Years: Did the U.S. Help Incite the 1965 Indonesia Massacre? http://t.co/EZbTG81trz,1
+6961,massacre,,"@KabarMesir @badr58
+Never dies a big Crime like RABAA MASSACRE as long the revolution is being observed.
+#rememberRABAA",1
+6962,massacre,,Bad day,0
+6963,massacre,,@eileenmfl are you serious?,0
+6965,massacre,"Nottingham, England",Bestie is making me watch texas chainsaw massacre ????????,1
+6966,massacre, The World,Petition/No Medals for 1890 Massacre Justice for Wounded Knee Killings of Native Americans! http://t.co/UilPg8i1ev http://t.co/m9pXTo2kwW,1
+6967,massacre,Own planet!!,I see a massacre!!,1
+6970,massacre,,"Headed to the massacre
+Bodies arriving everyday
+What were those shells you heard
+Picking the bones up along the way",1
+6971,massacre,"Vancouver, BC, Canada","@Bloodbath_TV favourite YouTube channel going right now.
+Love everything you guys do and thank you introducing me to Dude Bro Party Massacre",0
+6972,massacre,,The Fake of Nanking Massacre-4 Eyewitnesses (English): http://t.co/TiPnDEmPuz #Obama #Clinton #Bush #GOP #ABC #CBS #BBC #CNN #WSJ #WPO,1
+6973,massacre,Ireland,Remember this was a massacre of civilians. #Hiroshima http://t.co/qw8qk165Sb,1
+6974,massacre,Ecuador,Don't mess with my Daddy I can be a massacre. #BeCarefulHarry,0
+6975,massacre,"London, UK",Tunisia beach massacre linked to March terror attack on museum http://t.co/kuRqLxFiHL,1
+6977,massacre,,@CIA hey you guy's i stopped a massacre so you send the cops to my house to make this town permanently hate me wtf?,0
+6978,massacre,Stay Tuned ;) ,@freddiedeboer @Thucydiplease then you have rise of Coates Charleston massacre Walter Scott and black twitter more broadly as well.,1
+6979,massacre,Cimerak - Pangandaran,Review: Dude Bro Party Massacre III http://t.co/f0WQlobOoy by Patrick BromleyThe title sa http://t.co/THpBDPdj35,0
+6980,massacre,,@gigagil IOF murdered over 513 Palestinian children (70% under 12) during Gaza Massacre where was zionist morality-zionism is a world evil!,1
+6981,massacre,,Sousse beach massacre linked to Tunis museum attack http://t.co/MyHHTHsLi3,1
+6983,massacre,,Soap and education are not as sudden as a massacre but they are more deadly in the long run. -- Mark Twain,0
+6984,massacre,Cottonwood Arizona,Tell @BarackObama to rescind medals of 'honor' given to US soldiers at the Massacre of Wounded Knee. SIGN NOW & RT! https://t.co/u4r8dRiuAc,1
+6985,massacre,,"@nataliealund
+Parents of Colorado theater shooting victim fear copycat massacre
+
+http://t.co/LvlH3W3aWO
+#Antioch
+
+http://t.co/vIwXY1XDYK",1
+6988,massacre,,"@WKRN
+Parents of Colorado theater shooting victim fear copycat massacre
+
+http://t.co/LvlH3W3aWO
+#Antioch
+
+http://t.co/vIwXY1XDYK",1
+6990,massacre,London,@MartynWaites It's a well-known fact that the St Valentine's Day massacre could have been avoided with some 'oompah-period' Tom Waits.,1
+6992,massacre,India,The Martyrs Who Kept Udhampur Terrorists at Bay Averted a Massacre: It was two youngÛ_ http://t.co/nux5XfPV2d SPSå¨,1
+6994,massacre,Norway,Is this the creepiest youth camp ever?. http://t.co/T8uqm7Imir,0
+6996,mayhem,,Beach Reads in August #Giveaway Hop & @StuckInBooks is giving away any book in Mayhem series! http://t.co/Jp3OY0OuXq,0
+6998,mayhem,"Wausau, Wisconsin",@CVinch_WAOW thank you! Drove by the mayhem. How scary! -Stacy,0
+6999,mayhem,,Slayer Reflects on Low Mayhem Festival Attendance King Diamond & Jeff Hanneman's Passing http://t.co/lfw4iymsak,0
+7001,mayhem,"Orlando, FL",I guess ill never be able to go to mayhem...,0
+7002,mayhem,"Raleigh, NC",I liked a @YouTube video from @itsjustinstuart http://t.co/oDV3RqS8JU GUN RANGE MAYHEM!,1
+7005,mayhem,BOSTON-LONDON,@RaynbowAffair Editor In Chief @DiamondKesawn Releases Issue #7 http://t.co/ge0yd3mKAv of #RAmag. #Fashion #Models and #Mayhem,0
+7006,mayhem,"Boston, MA",@alexbelloli I do It just seemed like the pages were out of order,0
+7008,mayhem,GLOBAL/WORLDWIDE,@RaynbowAffair Editor In Chief @DiamondKesawn Releases Issue #7 http://t.co/7mzYcU2IHo of #RAmag. #Fashion #Models and #Mayhem,0
+7009,mayhem,,Tonight It's Going To Be Mayhem @ #4PlayThursdays. Everybody Free w/ Text. 1716 I ST NW (18+) http://t.co/sCu9QZp6nq,0
+7010,mayhem,,Mayhem is beautiful,0
+7012,mayhem,"North Dartmouth, Massachusetts",@Mayhem_114 are you reading right to left,0
+7013,mayhem,"Lynchburg, VA",Anyone else think that Stephen sounds like Andy Dick when he gets excited? The difference being... I actually like Stephen. #MasterChef,0
+7015,mayhem,107-18 79TH STREET,#NoSurrender Results: Full Metal Mayhem World Title Match Bully Ray Taken Out A Career Comes To An End and More! http://t.co/G6moNVnpSu,0
+7018,mayhem,"Boston, MA",@alexbelloli well now I know lol,0
+7019,mayhem,The Waystone Inn,#TBT to that time my best friend and I panicked at the disco. https://t.co/htpqvoHtUd,0
+7021,mayhem,,Magic City Mayhem: Kissimmee adventures ? Aug. 5 2015 http://t.co/FpYrU5GOLh,0
+7023,mayhem,?? Made in the Philippines ??,"_
+?????RETWEET
+???????
+?????FOLLOW ALL WHO RT
+???????
+?????FOLLOWBACK
+???????
+?????GAIN WITH
+???????
+?????FOLLOW ?@ganseyman #RT_4_A_MENTION
+#TY",0
+7024,mayhem,Boston/Montreal ,@RaynbowAffair Editor In Chief @DiamondKesawn Releases Issue #7 http://t.co/RPnEAJ6fOD of #RAmag. #Fashion #Models and #Mayhem,0
+7025,mayhem,"Manavadar, Gujarat",They are the real heroes... RIP Brave hearts... http://t.co/Q9LxO4QkjI,0
+7026,mayhem,"Pueblo, Colorado",The Campaign: Will Ferrell and Zach Galifianakis commit comic mayhem in this hilarious political farce. 4* http://t.co/tQ3j2qGtZQ,0
+7027,mayhem,"PG County, MD",Tonight It's Going To Be Mayhem @ #4PlayThursdays. Everybody Free w/ Text. 1716 I ST NW (18+) http://t.co/cQ7jJ6Yjfz,0
+7029,mayhem,,Asbury Park shooting reported http://t.co/dADZ5ZFO1g via @AsburyParkPress,1
+7030,mayhem,Somewhere between Chicago & Milwaukee,IÛªve seen lots ask about this MT @JMCwrites #Pitchwars I asked for magic realism but not fantasy. What's the diff? http://t.co/64xR9LtNOH,0
+7031,mayhem,,Slayer Reflects on Low Mayhem Festival Attendance King Diamond & Jeff Hanneman's Passing http://t.co/6N6Gcej9Iy,0
+7032,mayhem,InterplanetaryZone,The best. Mind is clear content and observations for days. https://t.co/pCCwsGCymA,0
+7036,mayhem,WORLDWIDE-BOSTON,@RaynbowAffair Editor In Chief @DiamondKesawn Releases Issue #7 http://t.co/EbbF1N7MAJ of #RAmag. #Fashion #Models and #Mayhem,0
+7037,mayhem,"London, UK",@Akcsl bit of both. going to venture out once I've chosen suitable music for the mayhem...,0
+7039,mayhem,Jersey Shore,BREAKING: Authorities respond to Ocean fire http://t.co/h31Knuwzz5,1
+7043,mayhem,"Detroit, Michigan",I liked a @YouTube video from @itsjustinstuart http://t.co/Mnkaji2Q1N GUN RANGE MAYHEM!,0
+7044,mayhem,107-18 79TH STREET,#NoSurrender Results: Full Metal Mayhem World Title Match Bully Ray Taken Out A Career Comes To An End and More! http://t.co/XEHwmsH7Lv,0
+7046,meltdown,The Universe,<meltdown of proportions commences I manage to calm myself long enough to turn the waters to hot and wait for the steam to cloud my vision-,0
+7047,meltdown,laying on the bass,the straight bass dubloadz droppd when they opened @ meltdown had everyone meelllttting http://t.co/vXsQPFE9NA,0
+7048,meltdown,,Deepak Chopra's EPIC Twitter Meltdown http://t.co/ethgAGPy5G,0
+7050,meltdown,"Cleveland, OH",The ol' meltdown victory for the Mets.,1
+7051,meltdown,,@DrDrewHLN 'A simple meltdown!' Areva have you ever seen an out of control kid?,0
+7052,meltdown,Hustletown,@tinybaby @adultblackmale @mattytalks meltdown mwednesday,1
+7053,meltdown,? miranda ? 521 mi,@kinkyconnors IM sorry for my meltdown last night lmao but I'm getting my tooth fixed Friday ??????????????????????????????????,0
+7054,meltdown,,One of these candidates is going to have a Frank Grimes level meltdown with how voters love Trump no matter what. http://t.co/pBEgOf4740,0
+7056,meltdown,,I had a meltdown in Demi's instagram comments http://t.co/mcc76xOwli,0
+7058,meltdown,,@nashhmu have a meltdown he noticed you,0
+7059,meltdown,,Whenever I have a meltdown and need someone @Becca_Caitlyn99 is always like 'leaving in 5' and I don't know how I got so lucky #blessed,0
+7060,meltdown,,Looks like it may have been microsofts anti virus trying to update causing the meltdown,0
+7061,meltdown,Oldenburg // London,DFR EP016 Monthly Meltdown - On Dnbheaven 2015.08.06 http://t.co/EjKRf8N8A8 #Drum and Bass #heavy #nasty http://t.co/SPHWE6wFI5,0
+7063,meltdown,#partsunknown,THE GLOBAL ECONOMIC MELTDOWN is out! http://t.co/DGATKRdyNy Stories via @seagull07 @AleisStokes @intelligencebar,1
+7065,meltdown,Proudly frozen Canuck eh !!,"@JustinTrudeau
+
+Most respected in world
+Best job recovery G7 and G20
+Best led during 2008 world meltdown
+
+What exactly have you done ??",0
+7068,meltdown,IL,@crowdtappers @joinvroom OMG I remember the meltdown the day I did her hair like ELSA and not ANNA.... OHHHH THE HORROR!!! LOL #tangletalk,0
+7069,meltdown,KSU 2017,@DmoneyDemi I had my meltdown yesterday. I'm going to miss you so much. You are forsure my DTB for life. When I get back watchout ??,0
+7070,meltdown,,Why must I have a meltdown every few days? ??,0
+7071,meltdown,"Colorado, USA",@nprfreshair I really can't believe he is skipping out before the Republican meltdown...I mean 'debate'.,0
+7073,meltdown,Everywhere,CommoditiesåÊAre Crashing Like It's 2008 All Over Again http://t.co/nJD1N5TxXe via @business,0
+7074,meltdown,Storybrooke / The Moors,A back to school commercial came on and my sister had a meltdown. ??????????,0
+7075,meltdown,NOLA ?? TX,?? ice age: the meltdown,0
+7076,meltdown,,http://t.co/HFqlwo1kMy E-Mini SP 500: Earnings letdown equals market meltdown! http://t.co/LEi9dWVllq #Amazon,0
+7077,meltdown,neil's kitchen | 32215,"def louis is tired plus the meltdown of fans when he confirmed he's a dad but some fans are reaching
+making conclusions and stuff",0
+7078,meltdown,The shores of Lake Kilby,Ever since my Facebook #Mets meltdown after the Padres fiasco- mets are 6-0. You're welcome,0
+7080,meltdown,,Currently: Uncontrollable meltdown number 2,0
+7081,meltdown,"Leeds, England",Pam's Barry Island wedding meltdown ??????????,0
+7086,meltdown,Two Up Two Down,@LeMaireLee @danharmon People Near Meltdown Comics Who Have Free Time to Wait in Line on Sunday Nights are not a representative sample. #140,0
+7088,meltdown,,Meltdown,0
+7089,meltdown,Canada,Have you read this awesome book yet? The Two Trillion Dollar Meltdown http://t.co/jPA6sajFE3,0
+7091,meltdown,The Internet,Byproduct of metal price meltdown is a higher silver price http://t.co/cZWjw4UV7i,1
+7092,meltdown,"Washington, DC",President Barack Obama has on air meltdown over opposition to Iran nuclear deal http://t.co/c0t7RvoTKj via @examinercom,1
+7093,meltdown,"Flushing, Queens",LOL Warthen in the midst of bullpen meltdown reaching for Double Bubble. #Mets,0
+7095,military,,#3: TITAN WarriorCord 100 Feet - Authentic Military 550 Paracord - MIL-C-5040-H Type III 7 Strand 5/16' di... http://t.co/EEjRMKtJ0R,0
+7097,military," Quantico Marine Base, VA.",@FurTrix then find cougars who look like her even better if they're in military uniform!,0
+7098,military,,"Russian #ushanka #winter #military fur hat (xl61-62) with soviet badge LINK:
+http://t.co/74YFQxvAK0 http://t.co/KXrEHVt6hL",0
+7104,military,canada,Senator 'alarmed' by reports U.S. military families harassed: A U.S. Senator said on Wednesday he was alarmed byÛ_ http://t.co/sbILA2Yqjq,1
+7105,military,,@YMcglaun THANK YOU FOR UNDERSTANDING THE GOV. ONLY TELLS US ABOUT 5% OF WHATS REALLY GOING ON I HAVE MILITARY HOUSE & CIA CONNECTS !!!,0
+7106,military,,@UnivSFoundation For the people who died in Human Experiments by Unit 731 of Japanese military http://t.co/vVPLFQv58P http://t.co/Rwaph6dAUv,1
+7108,military,Alaska,Mike Magner Discusses A Trust Betrayed: http://t.co/GETBjip5Rh via @YouTube #military #veterans #environment,0
+7109,military,,"Hat #russian soviet army kgb military #cossack #ushanka LINK:
+http://t.co/bla42Rdt1O http://t.co/EInSQS8tFq",0
+7111,military,,@kiranahmedd US military and Nato are fighting Talibans too,1
+7112,military,"Bozeman, Montana",Army names 10th Mountain units for Iraq Afghanistan deployments (Deeds) http://t.co/N6ZfLXIGvr,0
+7114,military,,Ford : Other Military VERY NICE M151A1 MUTT with matching M416 Trailer - Full read by eBay http://t.co/9rrYaYlgyY http://t.co/Nm83jOhLUu,0
+7115,military,Hearts & Minds,"Thank You Senator @timkaine for your Leadership on #IranDeal
+Our Military deserves nothing less. THANK YOU!!
+
+https://t.co/578GUNP8t9",0
+7116,military,USA,Mike Magner Discusses A Trust Betrayed: http://t.co/psbxl1HvU3 via @YouTube #military #veterans #environment,0
+7118,military,somewhere USA ,i strongly support our military & their families just not the cock suckers in DC they work for,0
+7120,military,,@stfxuniversity For the people who died in Human Experiments by Unit 731 of Japanese military http://t.co/vVPLFQv58P http://t.co/l5AWTUndhm,1
+7121,military,,13 reasons why we love women in the military - lulgzimbestpicts http://t.co/XKMLQ99SjY http://t.co/a3RGQuCUgo,0
+7122,military,,Online infantryman experimental military training tutorials shower down upon assertative intelligence as regard...,0
+7124,military,,@2for1Lapdances For the people who died in Human Experiments by Unit 731 of Japanese military http://t.co/vVPLFQv58P http://t.co/yOMPxJpPTV,1
+7125,military,,How do you call yourself a base conservative when u think it's okay 2 duck military service & contribute thousands 2 #HillaryClinton 2012?,0
+7126,military,"Ewa Beach, HI",We're #hiring! Read about our latest #job opening here: Registered Nurse - Call-in - Military Program - http://t.co/l0hhwB9LSZ #Nursing,0
+7128,military,Texas,Courageous and honest analysis of need to use Atomic Bomb in 1945. #Hiroshima70 Japanese military refused surrender. https://t.co/VhmtyTptGR,1
+7129,military,Boston MA,13 reasons why we love women in the military - lulgzimbestpicts http://t.co/N1tjCt8HMC http://t.co/pYTQM7rVP0,0
+7130,military,"Memphis, TN",Listen LIve: http://t.co/1puLaekxcq #Author #Interview Beth Underwood of #Gravity on #Military #Mom #TalkRadio,0
+7131,military,"Virginia, USA",@TeamHendrick @TeamHendrick @RIRInsider Fingers crossed that there will be a driver from Hendricks in Military Hospitality w/ @neanea2724!,0
+7132,military,NY,13 reasons why we love women in the military - lulgzimbestpicts http://t.co/IAPvTqxLht http://t.co/WAMKRe6CKD,0
+7134,military,302,13 reasons why we love women in the military - lulgzimbestpicts http://t.co/uZ1yiZ7n6m http://t.co/IjwAr15H16,0
+7135,military,,@UniversityofLaw For the people who died in Human Experiments by Unit 731 of Japanese military http://t.co/vVPLFQv58P http://t.co/eG1fsKqBv6,1
+7136,military,,Lot of 20 Tom Clancy Military Mystery Novels - Paperback http://t.co/ObiX79NcxN #tomclancy,0
+7137,military,,@CochiseCollege For the people who died in Human Experiments by Unit 731 of Japanese military http://t.co/vVPLFQv58P http://t.co/ldx9uKNGsk,1
+7138,military,,I remember when I worked at Mcdonalds I use to be hours late because we used military time and I use to mess up when I had to be there :/,0
+7140,military,"Paterson, New Jersey ",Pakistan Supreme Court OKs Military Courts to Try Civilians: The Supreme Court ruling would empower the milita... http://t.co/v0nf1Uc1OW,0
+7141,military,highlands&slands scotland,Bad News for US: China Russia Bolstering Military Cooperation in Asia / Sputnik International http://t.co/9q9Rk3fOf7 via @SputnikInt,0
+7142,military,,Study: Wider Variety of Therapies Could Help Vets Troops With PTSD | http://t.co/g0q0bzBjli http://t.co/ExYr6c5QPu via @Militarydotcom,0
+7144,military,somewhere USA ,the MOFO in DC will leave our military unarmed to be gunned down by terrorist & a lot worseits not their sorry asses,0
+7146,mudslide,"Crouch End, London",Stu Dorret's mudslide rubber tyre cake may have saved you #GBBO,0
+7147,mudslide,"Ealing, London",'It looks like a mudslide!' And #GBBO is back with a belter!,1
+7148,mudslide,Malibu/SantaFe/Winning!,STERLING-SCOTT on the Red Carpet at a fundraiser for 'OSO Mudslide' https://t.co/mA4ra7AtqL http://t.co/cg579wlDnE,1
+7149,mudslide,"London, Greater London, UK",Stu put beetroot in his cake and even lost to a mudslide,0
+7150,mudslide,"Edinburgh, Scotland",@Pete_r_Knox @Gemmasterful I think the mudslide cake lady will go and the hipster will unfortunately stay.,0
+7154,mudslide,Wales,Hope Dorett's 'mudslide' cake wins?? #GBBO,0
+7155,mudslide,Nottingham,'It looks like a mudslide' 'It's like chewing on rubber' #GBBO ??????,0
+7157,mudslide,London,The 19 year old's smug face when Dorret brings out her mudslide Black Forest gateau #priceless #GBBO,0
+7158,mudslide,Tring ,@marc_holl @NenniCook @AitchKayCee @vixstuart @benjbeckwith It's not pretty ??#disaster #GBBO #mudslide,1
+7159,mudslide,Co. Tyrone Northern Ireland,Looks like a mudslide and tastes like rubber oh how I love the bake off! #britishbakeoff #paulhollywood,0
+7160,mudslide,Birmingham & Bristol,'It looks like a mudslide' poor thing! ?? #greatbritishbakeoff,1
+7161,mudslide,,God bless you and your mudslide cake Dorret ????,0
+7163,mudslide,,Flood and Mudslide Warning for East Fjords | Iceland Review http://t.co/534q3Jg2OV #icelandreview via @iceland_review,1
+7164,mudslide,IUPUI '19,Someone split a mudslide w me when I get off work,0
+7165,mudslide,potters bar,Loved the opener and still feeling guilty for gasping and giggling at the mudslide - Dorret we live you #GBBO,0
+7166,mudslide,"Chiswick, London",2 great new recipes; mudslide cake and so sorry stew! #GBBO,0
+7167,mudslide,London,@SophieWisey I couldn't. #mudslide,1
+7168,mudslide,London,"#GBBO The difference between Paul and Mary my dears
+Paul: 'it looks like a mudslide'
+Mary: 'I have a feeling it's going to taste great'",0
+7169,mudslide,the burrow,DORETTE THATS THE NAME OF THE MUDSLIDE CAKE MAKER,0
+7171,mudslide,,RT RabidMonkeys1: Ah the unique mudslide cake ??#GBBO http://t.co/ZT5OFbiwtD,0
+7173,mudslide,plymouth,@brobread looks like mudslide????,1
+7174,mudslide,The Pumpkin Carriage of Dreams,"@Lolly_Knickers It's a mudslide.
+It's like chewing on a rubber tyre.
+And with those I'm DONE.
+#vaginaorcake #GBBO",1
+7175,mudslide,,You've 100% fucked up when Paul says your cake looks like a 'mudslide' and tastes like 'rubber',0
+7176,mudslide,London,First impressions: glad hat man is leaving in lieu of more interesting ladies. Hope mudslide lady triumphs next week.,0
+7178,mudslide,Edinburgh,@hazelannmac ooh now I feel guilty about wishing hatman out. I bet the mudslide was delicious!,0
+7179,mudslide,"Holly Springs, NC ",@UrufuSanRagu a Mudslide?,1
+7180,mudslide,,British bake off was great pretty hilarious moments #mudslide,0
+7183,mudslide,"London, England",@new_hart2010 #mudslide... nuff said #GBBO,1
+7184,mudslide,"Memphis, TN",Oso Washington Mudslide Response Interview ÛÒ Part 1 http://t.co/sbfGLQjZfs,1
+7185,mudslide,,#BakeOffFriends the one with the mudslide,0
+7186,mudslide,,HE CALLED IT A MUDSLIDE AW,0
+7187,mudslide,Ireland,@MarianKeyes Rubber Mudslide! Still laughing!,0
+7188,mudslide,Notts,#BakeOffFriends #GBBO 'The one with the mudslide and the guy with the hat',0
+7191,mudslide,,When bae soak you in mudslide at backroom???? #thisiswhywecanthavenicethings http://t.co/kgxNwzIUxd,0
+7192,mudslide,,her cake looks like a mudslide hah,0
+7193,mudslide,"South, England",First time getting into #gbbo2015 and physically gasped at the cake 'mudslide' incident already way too emotionally invested...,1
+7194,mudslide,,@nikistitz even the one that looked like a mudslide?,0
+7195,natural%20disaster,home ,she's a natural disaster she's the last of the American girls ??,0
+7196,natural%20disaster,"Orlando/Cocoa Beach, FL","'Up to 40% of businesses affected by a natural or man-made disaster never reopen'
+http://t.co/35JyAp0ul9",0
+7197,natural%20disaster,Birmingham and the Marches,@Doylech They're refugees: 'people who have been forced to leave their country in order to escape war persecution or natural disaster',1
+7198,natural%20disaster,Los Angeles,On the sneak America has us spoiled. A natural disaster will humble niggas.,1
+7199,natural%20disaster,M̩xico D.F.,Ra̼l sends a message of condolence to Vietnam following natural disaster http://t.co/bgyTmqJ3OO,1
+7201,natural%20disaster,Canada,@Cali74142290 lol natural disaster/hospital crisis something is needed to get rid of some cast members....,1
+7202,natural%20disaster,New York,Rationing of food and water may also become necessary during an emergency such as a natural disaster or terror attack.,0
+7203,natural%20disaster,Greenwich Meridian,Some people are really natural disaster too,1
+7204,natural%20disaster,,What Natural Disaster Are You When You Get Angry? http://t.co/q4gl3Dvhu1,0
+7205,natural%20disaster,USA,Coming later this year~ 'THE MAN THAT TATTOOED WOMEN.' A novel based on a real serial killer from #Arkansas & a natural disaster. #NOLA,1
+7206,natural%20disaster,,Ra̼l sends a message of condolence to Vietnam following natural disaster: On behalf of the Cuban government an... http://t.co/EmrZiCb004,1
+7208,natural%20disaster,"Newcastle Upon Tyne, England",@TwopTwips make natural disaster reporting more interesting by adding 'The' to headlines such as 'Rescuers are sifting through the wreckage',0
+7210,natural%20disaster,,Expert Prepper: Financial Collapse Natural Disaster Failed Grid... http://t.co/AVVSOiNO8Z http://t.co/VoYrUxcrIN,1
+7211,natural%20disaster,liaÛ¢daniÛ¢laura,Rise up like a natural disaster we take the bat and then we take back the town????,0
+7213,natural%20disaster,"Oneonta, NY/ Staten Island, NY",its only getting colder and colder and faster and faster and when i first realized it it was like a natural disaster,1
+7214,natural%20disaster,in my own personal hell (:,anyway 2 me? Mateo just doesnt exist? Hes a mirage a pointless addition to our Generation. a human natural disaster. Im sorry but its true,0
+7215,natural%20disaster,"Jonesboro, AR MO, IOWA USA",natural disaster ÛÒ News Stories About natural disaster - Page 1 | Newser http://t.co/TB8gZEMbXU,1
+7218,natural%20disaster,ṣo luis,And you're loving me like water slipping through my fingers such a natural disaster love,0
+7221,natural%20disaster,"Aurora, IL",I added a video to a @YouTube playlist http://t.co/v2yXurne2p Natural Disaster Survival - HUG BY A GUEST!! on Roblox,0
+7223,natural%20disaster,America of Founding Fathers,"This is the natural and unavoidable consequence of socialism everywhere it has been tried.
+http://t.co/BbDpnj8XSx A",1
+7224,natural%20disaster,,Suncorp net profit rises to $1.13 billion in worst year of natural disaster claims http://t.co/cwZ37lNDVk,1
+7226,natural%20disaster,on to the next adventure,Of course the one day I have to dress professionally aka unsensibly for class is the day I have try and outrun a natural disaster!,1
+7227,natural%20disaster,,*books a flight to Burma when country is enduring political unrest and a natural disaster* no wonder it was so cheap ay,1
+7228,natural%20disaster,,@ConnorFranta #AskConnor if you were a natural disaster what would you be?,0
+7229,natural%20disaster,"Suburban Detroit, Michigan",We have overrun a Natural Disaster Survival server!,1
+7230,natural%20disaster,America of Founding Fathers,"This is the natural and unavoidable consequence of socialism everywhere it has been tried.
+http://t.co/BbDpnj8XSx E",0
+7231,natural%20disaster,,Top insurer blasts lack of Australian Govt action on disaster mitigation http://t.co/sDgOUtWNtb via @smh,1
+7232,natural%20disaster,,Hello natural hazards/disaster recovery & emergency management ppl can u recommend good hashtags to follow OR send me links of good reads?,0
+7234,natural%20disaster,"Pennsylvania, USA",@BookTubeAThon A world in which people aren't dying from natural and supernatural disaster and war most likely.,0
+7235,natural%20disaster,Guatemala,Savings and sewing in Guatemala: Savings and sewing in Guatemala. When a natural disaster hit seamstress Elvia... http://t.co/jdx9OX2kIk,1
+7236,natural%20disaster,,Patriot Survival Guide: Do you know how survive when the governments collapse or other natural disaster happens? http://t.co/QhtoerhDkM,1
+7241,natural%20disaster,America of Founding Fathers,"This is the natural and unavoidable consequence of socialism everywhere it has been tried.
+http://t.co/BbDpnj8XSx F",0
+7242,natural%20disaster,Leitchfield Kentucky,What Natural Disaster Are You When You Get Angry? http://t.co/O9DzgZqEMf,0
+7244,natural%20disaster,"Littleton, CO",Is your team ready for a natural disaster a violent client or power outage? Contact Ready Vet to design... http://t.co/u2NJPoR39K,0
+7247,nuclear%20disaster,,beforeitsnews : 3 former executives to be prosecuted in Fukushima nuclear disaster Û_ http://t.co/FgVN2vCrrX) http://t.co/kftVNU7nvf,1
+7248,nuclear%20disaster,Austin TX,Alarming Rise in Dead Marine Life Since the #Fukushima Nuclear Disaster: http://t.co/v6H97K688J http://t.co/tJw9bSeiPW,1
+7250,nuclear%20disaster,,"Nuclear deal disaster.
+
+#IranDeal #NoNuclearIran #BadIranDeal @JebBush @BarackObama http://t.co/z7phPjtqud",0
+7251,nuclear%20disaster,,If i tweet daily #Fukushima #Japan global nuclear disaster& #Chernobyl ppl dont care there is no hope 4 humanity C> http://t.co/MAcob5xLsU,1
+7252,nuclear%20disaster,The Netherlands,"?#FUKUSHIMA?#TEPCO?
+Fukushima Nuclear Disaster | Increased Thyroid Cancer in #US - Integrative Cancer Answers
+http://t.co/7Y2GNVA2eV",1
+7253,nuclear%20disaster,,Though serious #natural #disaster increased in #Japanjapan #Nuclear safety standard is far inferior to #US standard.#anonymous #Nytimes,1
+7254,nuclear%20disaster,"New York, NY",Physical sense helps preserve memories of 2011 triple disaster (8/4 AJW) http://t.co/X5jGKjV6Ma #jishin_e #nuclear #Minamisoma,1
+7255,nuclear%20disaster,Marbella. Spain,"http://t.co/GaM7otGISw
+ANOTHER DISASTER WAITING TO HAPPEN AND YOUR ALLOWING IT???",1
+7256,nuclear%20disaster,"Hammersmith, London",@DalaiLama then have the biggest nuclear disaster to ever have happened,1
+7260,nuclear%20disaster,,#Obama signed up to a deal that far from making the world a safer place http://t.co/E0luGBL6pb via @upi #Iran #Nuclear #IranNuclearDeal,1
+7261,nuclear%20disaster,Inexpressible Island ,3 former executives to be prosecuted in Fukushima nuclear disaster http://t.co/zsDVWEgLF5,1
+7264,nuclear%20disaster,"Ashford, Kent, United Kingdom",@emmerdale can we have a public vote for the next annual village disaster? i want an isis strike or a nuclear accident & end this forever,1
+7265,nuclear%20disaster,,3 former executives to be prosecuted in Fukushima nuclear disaster http://t.co/Gvj7slbELP,1
+7266,nuclear%20disaster,,Fukushima Nuclear Disaster | Increased Thyroid Cancer in U.S. http://t.co/FtuNlH6ddg,1
+7267,nuclear%20disaster,,The people who tweet and care about #Japan #Fukushima nuclear disaster are not the problem those who ignore are the problem.,1
+7268,nuclear%20disaster,"Dhaka, Bangladsh",We want to see no more Hiroshima and Nagasaki nuclear bomb disaster in this beautiful world.Lets be peaceful & save this human civilization.,1
+7270,nuclear%20disaster,,#Japan #Fukushima the most serious man made disaster in human history... ÛÏa marker of radiation brain damageÛ http://t.co/Y3ZfqJsvpz,1
+7272,nuclear%20disaster,,#refugees of #nuclear disaster in western #Japan will be beyond 500 thousand at least. #AFP #guardian #WPS #NYTimes,1
+7274,nuclear%20disaster,,3 Former Executives To Be Prosecuted In Fukushima Nuclear Disaster http://t.co/UmjpRRwRUU,1
+7275,nuclear%20disaster,"Sacramento, California",@drvox Trump can say nice things about nuclear power but 'drill baby drill!' + AGW denial = policy disaster for nuclear power.,0
+7277,nuclear%20disaster,#goingdownthetoilet Illinois,CLOSING THEIR EYES TO DISASTER! State Department Unaware of Reports Iran is Sanitizing Nuclear Sites http://t.co/yRVGyKdbM6,1
+7278,nuclear%20disaster,San Francisco Bay Area,"3 Former Executives to Be Prosecuted in Fukushima Nuclear #Disaster.
+
+The story: http://t.co/7uFnxxaVqs via @nytimes",1
+7280,nuclear%20disaster,,Any disaster impairs mental health especially in vulnerable individuals... http://t.co/ZisuwLqRHf,1
+7281,nuclear%20disaster,,Fukushima 'mutant vegetable' images sweep across the region two years after nuclear disaster http://t.co/psi35AU3pc via @MailOnline,1
+7283,nuclear%20disaster,"Washington, DC",Bombing #Iran would result in a never-ending game of #nuclear whack-a-mole. Here's why: http://t.co/6exS23MUy3 http://t.co/l9iDheROtj,1
+7285,nuclear%20disaster,,Fukushima: The Story of a Nuclear Disaster http://t.co/ikpnGs3dTi http://t.co/lJHgSdRAEZ,1
+7286,nuclear%20disaster,,The president spoke of Kennedy's diplomacy to avert nuclear disaster during the Cold War to bolster his own pitch for Congress' approval,1
+7287,nuclear%20disaster,,573 deaths have been certified by the Government as Û÷nuclear disaster-related deathsÛª,1
+7288,nuclear%20disaster,US,3 Former Executives to Be Prosecuted in Fukushima Nuclear Disaster http://t.co/JSsmMLNaQ7,1
+7289,nuclear%20disaster,Under Santa Barbara Skies,70 years ago today 1945 #Hiroshima was the first nuclear atomic bomb leaving a major disaster in the wake. http://t.co/oW4GeXyNbH,1
+7290,nuclear%20disaster,,If U care about life on land sea & in air then dont pretend & ignore the nuclear disaster in #Japan #Fukushima this is a #global problem,1
+7291,nuclear%20disaster,,"#Nuclear policy of #Japan without responsibility about Nuclear #Disaster will repeat same #failure.
+#annonymous #guardian #NYTimes #Reuters",1
+7292,nuclear%20disaster,Fukushima city Fukushima.pref,Over half of poll respondents worry nuclear disaster fading from public consciousness http://t.co/YtnnnD631z ##fukushima,0
+7294,nuclear%20disaster,,Chernobyl disaster - Wikipedia the free encyclopedia don't you just love the nuclear technology it's so glorious https://t.co/GHucazjSxB,1
+7295,nuclear%20reactor,,Err:509,0
+7296,nuclear%20reactor,,Check out this awesome profile on #GE's swimming #robot used in #nuclear reactors! http://t.co/HRc3oxQUIK #innovation http://t.co/wNPTvbM5T7,0
+7297,nuclear%20reactor,,Finnish Nuclear Plant to Move Ahead After Financing Secured-> http://t.co/uHkXMXaB9l,0
+7299,nuclear%20reactor,"Washington, D.C.",Global Nuclear Reactor Construction Market grew 4.5% between 2013 and 2014 http://t.co/74JppeK6o7,1
+7300,nuclear%20reactor,"Norwalk, CT",Has An Ancient Nuclear Reactor Been Discovered In Africa? ÛÒ Your... http://t.co/qadUfO8zXg,0
+7301,nuclear%20reactor,"USA, North Dakota",Salem 2 nuclear reactor shut down over electrical circuit failure on pump: The Salem 2 nuclear reactor had bee... http://t.co/5hkGXzJLmX,1
+7302,nuclear%20reactor,,Quick Fact: No #nuclear reactor has come into operation in the #US for over 43 years. http://t.co/V1mtR517Ue,0
+7306,nuclear%20reactor,,US Navy Sidelines 3 Newest Subs - http://t.co/guvTIzyCHE: DefenseNews.comUS Navy Sidelines 3 Newest SubsD... http://t.co/SY2WhXT0K5 #navy,1
+7307,nuclear%20reactor,japon,"Germany has 39 gigawatts of installed solar capacity
+_One gwatt is about equal to the capacity of a nuclear reactor.
+http://t.co/leCZOlkmSV",0
+7309,nuclear%20reactor,"Eaubonne, 95, France",US Navy Sidelines 3 Newest Subs http://t.co/okamsCZbwg,0
+7310,nuclear%20reactor,Pluto,'Nuclear reactor is like a woman. You just have to read the manual and press the right button.',0
+7311,nuclear%20reactor,,Nuclear reactor railguns would be a great way to deliver t1000s.,0
+7312,nuclear%20reactor,,@RobertHarding @RepJohnKatko Crazy to use the Netanyahu argument Iran can flush A NUCLEAR REACTOR DOWN THE TOILET,1
+7315,nuclear%20reactor,Anywhere I like,Government under pressure to abandon plans to construct UKÛªs first nuclear reactor for more than 20 year http://t.co/E9d9Lk5Fdw,0
+7316,nuclear%20reactor,Japan,Nuclear-Deal: Indo-Japan pact lies at the heart of two US reactor-based projects: If Japan were to go ahead an... http://t.co/XKURDr3yEv,1
+7317,nuclear%20reactor,"Denver, CO",Nuclear #Solar Power #Japanese #Fukushima Reactor Energy Japan Temperature No. Fuel Pool More http://t.co/YS3nMwWyVc http://t.co/AlpotNB7q3,1
+7318,nuclear%20reactor,"New York, New York",Japan's Restart of Nuclear Reactor Fleet Fast Approaches http://t.co/DbAUjp29Ub,1
+7319,nuclear%20reactor,"Phoenix, Arizona, USA",If I'm also not mistaken we're sitting right next 2 a nuclear reactor. Not smart when we have a cataclysmic event & that reator melts down.,1
+7320,nuclear%20reactor,,@Willie_Am_I @JusttheBottle I would cry in to my nuclear reactor cooling tank! #winechat,0
+7323,nuclear%20reactor,Paris (France),Magnetic and electrostatic nuclear fusion reactor http://t.co/eM5oPyTBpg,0
+7324,nuclear%20reactor,"Johannesburg, South Africa",@stunckle @Gordon_R74 @crazydoctorlady ...I'm no expert but raw uranium and nuclear reactor fuel rods are 2 very different creatures...,1
+7325,nuclear%20reactor,,Finnish ministers: Fennovoima nuclear reactor will go ahead via /r/worldnews http://t.co/fRkOdEstuK,0
+7326,nuclear%20reactor,,Navy sidelines 3 newest subs http://t.co/gpVZV0249Y,0
+7328,nuclear%20reactor,"Den Helder, Rijkswerf",US Navy Sidelines 3 Newest #Subs http://t.co/9WQixGMHfh,0
+7329,nuclear%20reactor,SE London(heart is by the sea),Rolling sandunes the gentle lapping of the sea the call of gulls and a nuclear reactor #sizewell http://t.co/X9CUiHIb5n,1
+7330,nuclear%20reactor,Warsaw,Finnish nuclear plant to move ahead after financing secured http://t.co/D8aWX2okKe via @business,0
+7331,nuclear%20reactor,Aztec NM,US Energy Department Offers $40Mln for New Nuclear Reactor Designs / Sputnik International http://t.co/0DxVZ7fDh3,0
+7332,nuclear%20reactor,"Denver, CO",A little filming inside a Nuclear Reactor at #Chernobyl @SonyProUSA @LumixUSA @DJIGlobal @ProfBrianCox @RT_America https://t.co/2GLjhvEAD9,0
+7334,nuclear%20reactor,"Washington, D.C.",Salem 2 nuclear reactor shut down over electrical circuit failure on pump http://t.co/LQjjy1PTWT,1
+7335,nuclear%20reactor,World,Finnish ministers: Fennovoima nuclear reactor will go ahead http://t.co/vB3VFm76ke #worldnews #news #breakingnews,1
+7337,nuclear%20reactor,,Salem 2 nuclear reactor shut down over electrical circuit failure on pump - http://t.co/98o2Kc3A1Z http://t.co/tGdontTkty,1
+7338,nuclear%20reactor,,Finnish ministers: Fennovoima nuclear reactor will go ahead http://t.co/mqMCOLwBzc,0
+7340,nuclear%20reactor,"Fort Calhoun, NE",Aug. 5: The Fort Calhoun Nuclear Station is at 100% capacity today according to the NRC: http://t.co/pztbQImpuW,0
+7342,nuclear%20reactor,"Bournemouth, Dorset, UK",@SnowyWolf5 @TheGreenParty Besides would you rather shut down a whole nuclear reactor for maintenance or a wind turbine at a time?,1
+7343,nuclear%20reactor,Virginia,HamptonRoadsFor.me US Navy Sidelines 3 Newest Subs - http://t.co/9QNQ45Zduw http://t.co/dhyLJllRHL,0
+7344,nuclear%20reactor,"Somecity, Somerset, MD",A 17 year Boy Scout created a mini nuclear reactor in his home,0
+7345,obliterate,"Dover, DE",@dicehateme @PuppyShogun This makes sense. Paper beats rock paper comes from wood so wood should be able to support and obliterate rock.,0
+7348,obliterate,"Cavite, Philippines",The People's Republic Of China ( PROC ): Abandon the West Philippine Sea and all the ... https://t.co/pD14GsrfSC via @ChangePilipinas,0
+7350,obliterate,Korea,@realDonaldTrump to obliterate notion & pattern political style seemly lead voter beliefs Sarcasm Narcissism #RichHomeyDon #Swag #USA #LIKES,0
+7352,obliterate,Seattle,"#fun #instagramers http://t.co/M3NJvvtYgN
+
+Jeb Bush said earlier this week that not only does he want to obliterate Planned Parenthood buÛ_",0
+7354,obliterate,M!A: None,Souda leave Lady Sonia alone or I shall obliterate you #KneelBot,0
+7355,obliterate,United Kingdom,@klavierstuk doesn't so LVG is forced into the market. May beat Spurs and smaller teams with Blind LCB. Top 4/ CL teams will obliterate us.,0
+7356,obliterate,Purfleet,Whereas Jez will obliterate the national debt - and give lots of new benefits - by simply printing money! Genius! https://t.co/ReffbkVG9R,1
+7357,obliterate,,#LOL Plymouth (Û÷LetÛªs Obliterate LitterÛª) http://t.co/GDrssjbH8q,0
+7358,obliterate,The Memesphere,According to prophecy and also CNN a Mac tablet will completely obliterate the need for other gadgets. CombiningÛ_ http://t.co/xfccvMXuWb,0
+7359,obliterate,21 | PNW,@JoseBasedGod I'm obliterate you to the shadow realm.,0
+7360,obliterate,Miami via Lima,GOP debate tonight but no Jon Stewart next week to obliterate them ?? #JonVoyage,0
+7361,obliterate,Cymru araul,@McCaineNL Think how spectacular it will look when the Stonewall riots obliterate the white house.,1
+7362,obliterate,EIC,Watch Sarah Palin OBLITERATE Planned Parenthood For Targeting Minority Women! ÛÒ BB4SP http://t.co/Dm0uUpqGWY,1
+7365,obliterate,NEWCASTLE,@SkyNews how is this scum still alive obliterate this cancer,0
+7366,obliterate,United Kingdom,WWE 2K15: Universe Mode - Part 149 - OBLITERATE!!: http://t.co/0oms8rI3l1 via @YouTube,0
+7367,obliterate,,Time to obliterate this sin!,0
+7369,obliterate,UK,"Know them recognize them......then obliterate them!
+#gym #gymflow #gymtime #team #assassinsÛ_ https://t.co/mUHj8CbdQb",0
+7371,obliterate,Jump City,Dc I love you but please obliterate power girl,0
+7372,obliterate,Dudetown,@Gargron good sir I did not wish to but now I am forced to. I must obliterate you,0
+7373,obliterate,,@holymileyray @moonIighthunty Focus on Me is going to obliterate careers tea,0
+7374,obliterate,,Do you ever just want to obliterate an entire species off the face of the earth? I vote for mosquitoes,0
+7377,obliterate,Ondo,Someone teaching you that obedience will obliterate trials in your life is trying to sell you a used car. Jesus's life blows that theory.',1
+7378,obliterate,,Wondering if gold could gap up $50 on the jobs numbers tomorrow and just obliterate the shorts. A big player with guys could smash them,0
+7380,obliterate,Bhubneshwar,It should be our duty to obliterate superstition from our society : Swami Agnivesh,0
+7381,obliterate,Toronto,Meek Mill Begging Nicki Minaj To Let Him Obliterate... #ovofest #nowplaying http://t.co/XOmI4ZQzgp http://t.co/0m1TW3DaTd,0
+7383,obliterate,cedar rapids ia,World of warships makes me mad sometimes but it's soooo satisfying when you cross the T on a battleship and just obliterate it,0
+7386,obliterate,EIC,Watch Sarah Palin OBLITERATE Planned Parenthood For Targeting Minority Women! ÛÒ BB4SP http://t.co/fqMYprlG9g,0
+7390,obliterate,,'But time began at last to obliterate the freshness of my alarm;...' http://t.co/ciLO9pMlEb,0
+7391,obliterate,,@MacBreck I know what it means.It means I'll go on Twitter and obliterate any CHANCE of EVER winning another election for Pres.bad at math.,0
+7392,obliterate,Texas,Watch Sarah Palin OBLITERATE Planned Parenthood For Targeting Minority Women! ÛÒ BB4SP http://t.co/sAYZt2oagm,0
+7393,obliterate,London,'We are now prepared to obliterate more rapidly and completely every productive enterprise the Japanese have above ground in any city.',0
+7395,obliterated,satan's colon,@horiikawa i played online last night and got my ass obliterated,0
+7397,obliterated,Valparaiso ,RIZZO IS ON ???????? THAT BALL WAS OBLITERATED,0
+7400,obliterated,New York,Obliterated,0
+7402,obliterated,,Damnnnn $GMCR got obliterated -26% ;that should pay HUGE to whomever played accordingly,0
+7403,obliterated,,air sunrays obliterated on its hairy head like a dried wire spiderweb,0
+7405,obliterated,prob turning up with sheen,I'm about to be obliterated,0
+7407,obliterated,,@breakingnewslh @bree_mars watch cnn's the seventies terrorism episode. Iran has always hated the U.S. They want us obliterated.,1
+7408,obliterated,#freegucci,"Me- Don't bother calling or texting me because my phone is obliterated
+
+*has 7k missed calls and messages*",0
+7410,obliterated,Tennessee,WACKOES like #MicheleBachman predict the WORLD will SOON be OBLITERATED by a burning firey INFERNO but can't accept #GlobalWarming!! HELLO!!,0
+7412,obliterated,"Waterloo, ON",This the same dude that obliterated meek mill. Dont judge a book by its cover. http://t.co/BabMf0W2YW,0
+7413,obliterated,,Drunk Meals 101: What To Cook When You're Totally Obliterated http://t.co/QvS7O10bG3,0
+7414,obliterated,The dark,@Sweet2Young I came in! Had he fucking moved his entire existence would've been obliterated.,0
+7415,obliterated,Reading MA,Drunk Meals 101: What To Cook When You're Totally Obliterated http://t.co/m19iVWrdkk,1
+7416,obliterated,,We destroyed the #Zimmerman fan club on Twitter @rzimmermanjr and we obliterated Renewsit reduced her to a sock acc. http://t.co/ybshleIE3p,0
+7418,obliterated,"Wynne, AR",@RockBottomRadFM As a kid I remember hearing rules about 30 to 90 days wo a defense and you're stripped. Brock obliterated that,0
+7419,obliterated,"Dublin, Ireland",So it looks like my @SoundCloud profile shall be no more! Nothing left to offer! DJ mixes obliterated ?? #byebyesoundcloud,0
+7421,obliterated,The Wood,God the @mets are so cocky right now and I love it. Uribe OBLITERATED that ball then strutted the fuck out of the batters box...,0
+7424,obliterated,"Palmyra, NJ",I was obliterated last night??,0
+7425,obliterated,Tennessee,WACKOS like #MicheleBachman predict the WORLD will SOON be OBLITERATED by a burning firey INFERNO but cant accept #GlobalWarming!! HELLO!!!,1
+7426,obliterated,"1313 W.Patrick St, Frederick",Drunk Meals 101: What To Cook When You're Totally Obliterated http://t.co/Wj0U59mPpB,0
+7428,obliterated,"Danbury, CT",Uribe just obliterated a baseball.,0
+7430,obliterated,Canada,@Silverhusky Shtap! Before your town is obliterated and the earth is salted T_T,0
+7431,obliterated,"Miami, FL",I can't wait to be beyond obliterated this weekend,0
+7433,obliterated,Mid West,Obliterated my phone screen today with a drum stick. #blessed,0
+7434,obliterated,,Poway hcg diet- ensures mole obliterated whensoever nevermore comes above: sizYgwWF,0
+7437,obliterated,Upstairs.,@TheEvilOlives It's the closest structure to the hypo centre that wasn't completely obliterated.,1
+7438,obliterated,"Winnipeg, Manitoba",Drunk Meals 101: What To Cook When You're Totally Obliterated http://t.co/JlPut7Va3s,0
+7439,obliterated,leyland,Very glad that you got obliterated in X Men First Class. You fully deserved it after all @kevinbacon soz,0
+7442,obliterated,"Birmingham, England",& on the rare occasion I do go out I'm complete obliterated the next day. Throwing up and passing out. My body is accustomed to alcohol,0
+7443,obliterated,don't buy the s*n,Just absolutely obliterated a moth my new purchase is boss,0
+7444,obliterated,,I think I'll get obliterated tonight,0
+7446,obliteration,London UK,Kontrolled Media say 'US good. Putin bad. #WW3 good Peace bad'. TOTAL BS! Leave Russia alone. DON'T DICE WITH OBLITERATION. #demonization,1
+7447,obliteration,Overton NV,This is interesting!--Why did God order obliteration of ancient Canaanites? http://t.co/XqMJHIOZxG via @worldnetdaily,0
+7451,obliteration,,@LaurenJauregui I would say I'm dead but I'm not that right there was obliteration,0
+7452,obliteration,Born in Baltimore Living in PA,Why did God order obliteration of ancient Canaanites? http://t.co/NckOgWjq61 via @worldnetdaily,0
+7453,obliteration,"Elizabeth, NJ",OH. #TeamHennessy #NJ Obliteration @tprimo24 ROUND 1 Happy Birthday @djeddygnj Colombian FestivalÛ_ https://t.co/mRv54fiDfn,0
+7456,obliteration,Canada ,I need an arcade shooter fix but CTE is empty & only running obliteration. I'd even buy a CoD title if they weren't all overpriced on steam,0
+7457,obliteration,"a feminist, modernist hag.",@ThatSabineGirl you get me sis. this planet could do with a huge dose of obliteration.,1
+7458,obliteration,"Glasgow, Scotland",Are people not concerned that after #SLAB's obliteration in Scotland #Labour UK is ripping itself apart over #Labourleadership contest?,0
+7459,obliteration,Maryland,@AuntieDote @RioSlade @Locke_Wiggins @akarb74 Not if one side is set on obliteration of govt and the other on fixing it. That's too far,0
+7461,obliteration,"kissimmee,fl.",Why did God order obliteration of ancient Canaanites? http://t.co/IkugGvByeI,0
+7463,obliteration,,@tiggr_ why only Squad Obliteration?,1
+7465,obliteration,"New Orleans ,Louisiana",Why did God order obliteration of ancient Canaanites? http://t.co/NLk1DYD2tP,0
+7467,obliteration,828/704(Soufside)/while looking goofy in NJ,Back in 02 to 03 would never said that 50 would have ended ja like obliteration,0
+7470,obliteration,Merica!,@Eganator2000 There aren't many Obliteration servers but I always like to play when there are :D,0
+7473,obliteration,,What a win by Kerry. 7-16..... #obliteration,0
+7474,obliteration,,@ashberxo @mind_mischief the removal of all traces of something; obliteration.,0
+7475,obliteration,DC Metro area,Why did God order obliteration of ancient Canaanites? http://t.co/Sf2vwQvJYa,0
+7476,obliteration,Indiana,Why did God order obliteration of ancient Canaanites? http://t.co/Hz4lKFfC59 via @worldnetdaily#Homosexuality is the downfall of a society.,0
+7477,obliteration,,I added a video to a @YouTube playlist http://t.co/1vjAlJA1SX GTA 5 Funny Moments - 'OBLITERATION!' (GTA 5 Online Funny Moments),0
+7478,obliteration,India,There are no four truths-of pain of desire that is the origin of pain of the obliteration of that desire of the pain to that obliteration.,0
+7479,obliteration,Federal Capital Territory,Alhaji Putin is far from being a good person sha. At least I had front row seat to his complete obliteration of Ibeto cement a competitor.,0
+7480,obliteration,,Dead Space - Obliteration Imminent [2/2]: http://t.co/XJB0dCAaHf via @YouTube,0
+7481,obliteration,Illinois,Which is true to an extent. The obliteration of white privilege would reduce unfair favoritism.,0
+7482,obliteration,,Does Renovation Mean Obliteration? http://t.co/pQ3ipUgkuY #entrepreneur #management #leadership #smallbiz #startup #business,0
+7488,obliteration,Turkmenistan,For maximum damage! Activate [BIG BAND MODE] for old-timey obliteration!,0
+7490,obliteration,,Why did God order obliteration of ancient Canaanites? http://t.co/pKKcdWjyg0 via @worldnetdaily,0
+7491,obliteration,India,He is justifying why this quarrel would one day end in d obliteration of what remains as the state of Pakistan. https://t.co/z8Ij8KTkyk,0
+7493,obliteration,23 countries and counting!,Fear is the mind killer. Fear is the little-death that brings total obliteration. Bene Gesserit Litany Against Fear Dune @atgrannyshouse,0
+7494,obliteration,Ontario,"Path of Obliteration
+Back From The Dead
+Story by @KyleWappler @thisishavehope
+
+ http://t.co/1PdNlsP8XW",1
+7496,oil%20spill,"Montgomery, AL",SB57 [NEW] Deepwater Horizon Oil Spill distribution of funds from BP settlement road and bridge projects in Bal... http://t.co/dKpsrkG6pc,1
+7497,oil%20spill,"New York, NY",California oil spill might be larger than projected: http://t.co/xwxBYHTuzC http://t.co/wzeDxEFBlg,1
+7498,oil%20spill,,Refugio oil spill may have been costlier bigger than projected: A Plains All American Pipeline oil spill off ... http://t.co/yhmrEgAuxZ,1
+7501,oil%20spill,United Kingdom,LA Times: Refugio oil spill may have been costlier bigger than projected http://t.co/g37huJx6et,1
+7502,oil%20spill,Amarillo,'California: Spring Oil Spill Estimate Grows ' by THE ASSOCIATED PRESS via NYT http://t.co/6Cx46E7QB7,1
+7503,oil%20spill,California,Refugio oil spill may have been costlier bigger than projected http://t.co/41L8tqCAey,1
+7504,oil%20spill,"Los Angeles, CA",Refugio oil spill may have been costlier bigger than projected http://t.co/Rqu5Ub8PLF,1
+7505,oil%20spill,"Las Vegas, Nevada",Refugio oil spill may have been costlier bigger than projected http://t.co/OSJUrFDDkt,1
+7507,oil%20spill,,Refugio oil spill may have been costlier bigger than projected http://t.co/lzob8qOH1B,1
+7510,oil%20spill,California,Refugio oil spill may have been costlier bigger than projected http://t.co/BIEYgUqpB1,1
+7512,oil%20spill,"Sydney, NSW",Sydney Traffic HAZARD Oil spill - BANKSTOWN Stacey St at Wattle St #sydtraffic #trafficnetwork,1
+7513,oil%20spill,"Central Coast, California",Plains All American Pipeline company may have spilled 40% more crude oil than previously estimated #KSBYNews @lilitan http://t.co/PegibIqk2w,1
+7514,oil%20spill,,SYD traffic HAZARD Oil spill - BANKSTOWN Stacey St at Wattle St http://t.co/TZyHdBW9f5,1
+7515,oil%20spill,Clean World,"Watch our video of Wendell Berry speaking about the BP oil spill in the Gulf of Mexico.
+
+ItÛªs the birthday... http://t.co/tN1aX1xMBB",1
+7517,oil%20spill,NYC :) Ex- #Islamophobe,National Briefing | West: California: Spring Oil Spill Estimate Grows: Documents released on Wednesday disclos... http://t.co/wBi7Laq18E,1
+7518,oil%20spill,Canada,DTN Brazil: Refugio oil spill may have been costlier bigger than projected: A Plains All American Pipeline oi... http://t.co/pDOSrg8Cf7,1
+7519,oil%20spill,,Hannah: 'Hiroshima sounds like it could be a place in China. Isn't that where the oil spill was?',1
+7520,oil%20spill,Street of Dallas,Refugio oil spill may have been costlier bigger than projected http://t.co/aP30psZkVx,1
+7521,oil%20spill,,Refugio oil spill may have been costlier bigger than projected (LA Times) http://t.co/TCSoLvwhXq,1
+7522,oil%20spill,"Goa, India",California: Spring Oil Spill Estimate Grows: Documents released on Wednesday disclosed that an oil sp... http://t.co/zqiHnHDWPV #OSI2016,1
+7523,oil%20spill,,Refugio oil spill may have been costlier bigger than projected http://t.co/gtHddzAvhg #LosAngelesTimes #latimes #news,1
+7525,oil%20spill,"England, Great Britain.",National Briefing | West: California: Spring Oil Spill Estimate Grows: Documents released on Wednesday d... http://t.co/hTxAi05y7B (NYT),1
+7526,oil%20spill,"San Luis Obispo, CA",Plains All American Pipeline company may have spilled 40 percent more crude oil than previously estimated.... http://t.co/WEZjqC4Cf2,1
+7527,oil%20spill,"Kamloops, BC",@Kinder_Morgan can'twon't tell @cityofkamloops how they'd respond to an oil spill. Trust them? See Sec 4.2 #Kamloops http://t.co/TA6N9sZyfP,1
+7528,oil%20spill,"Lyallpur, Pakistan",news@@ Refugio oil spill may have been costlier bigger than projected http://t.co/jhpdSSVhvE,1
+7529,oil%20spill,,@TroySlaby22 slicker than an oil spill,0
+7530,oil%20spill,,Plains: Calif. Oil Spill Could be Larger than Estimated. http://t.co/CcvcTe3lCw,1
+7531,oil%20spill,"Los Angeles, CA",Refugio oil spill may have been costlier bigger than projected http://t.co/xcoLwUGFjg,1
+7532,oil%20spill,Street of Dallas,Refugio oil spill may have been costlier bigger than projected http://t.co/FPaouLWU3N,1
+7533,oil%20spill,Karachi Pakistan,@News@ Refugio oil spill may have been costlier bigger than projected http://t.co/SqoA1Wv4Um,1
+7534,oil%20spill,,Refugio oil spill may have been costlier bigger than projected http://t.co/GusrAmzp1s #news,1
+7535,oil%20spill,,Refugio oil spill may have been costlier bigger than projected http://t.co/7L6bHeXIXv | https://t.co/eMOSrMUvQa,1
+7536,oil%20spill,"Lyallpur, Pakistan",News@ Refugio oil spill may have been costlier bigger than projected http://t.co/jhpdSSVhvE,1
+7537,oil%20spill,Financial News and Views,Refugio oil spill may have been costlier bigger than projected http://t.co/EFCn9IVNfg A Plains All American Pipeline oil spill off the SÛ_,1
+7540,oil%20spill,,Refugio oil spill may have been costlier bigger than projected http://t.co/zdtcw9Fsx1,1
+7542,oil%20spill,United Kingdom,LA Times: Refugio oil spill may have been costlier bigger than projected http://t.co/1ct0pUGZ69,1
+7543,oil%20spill,"Pensacola, FL",Senator voices concerns over BP oil spill settlement http://t.co/mFSBWpj0Ce,1
+7544,oil%20spill,Corpus Christi,'California: Spring Oil Spill Estimate Grows ' by THE ASSOCIATED PRESS via NYT http://t.co/zdpa4DBtsU,1
+7545,outbreak,Chile,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/02ELqLOpFk,1
+7547,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disease in Edinburgh are to ...,1
+7548,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/8lCbDW7m2z,1
+7550,outbreak,"Espa̱a, Spain",Legionnaires' Disease: What's Being Done to Stop Deadly Outbreak http://t.co/AjzY19Vepu,1
+7551,outbreak,"New York City, NY",10th death confirmed in Legionnaires' outbreak in South Bronx; total cases reaches triple digits http://t.co/JtzefipdBo,1
+7552,outbreak,Indonesia,More than 40 families affected by the fatal outbreak of Legionnaires' disease in Edinburgh are to sue two comp... http://t.co/vsoXioOy78,1
+7553,outbreak,,A Mad Catastrophe : The Outbreak of World War I and the Collapse of the... http://t.co/jGdlX4Faw8 http://t.co/IvwtYnoUjK,1
+7554,outbreak,LAGOS,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/2Mwc9YWjZy,1
+7555,outbreak,NJ/NYC,Wow-the name #LegionnairesDisease comes from an outbreak of pneumonia at the @AmericanLegion convention in Philly in 1976--29 died from it.,1
+7556,outbreak,??????,'Legionnaires' Disease: What's Being Done to Stop Deadly Outbreak' http://t.co/FftOKd0Vts #????_?????,1
+7557,outbreak,???,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/81HVV3N3rS,1
+7558,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/2AO97o2a9D,1
+7559,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disease in Edinburgh are to ...,1
+7560,outbreak,Bandung,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/3sNyOOhseq,1
+7561,outbreak,United States,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/VBsj8tniv1,1
+7563,outbreak,Italy,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/SO81Ab3a1x,1
+7565,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legio... http://t.co/uCBfgIBFOR #MuhamadJabal,1
+7566,outbreak,Canada,DTN Italy: Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionna... http://t.co/RsV9ATj9vH,1
+7568,outbreak,"Stockholm, Sweden",@SenateMajLdr let's try to do our best to prevent another outbreak of violence by talking to each other both the people and the politics,1
+7569,outbreak,"Los Angeles, CA",Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/oJyW7jkUH5,1
+7570,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/rv9Dv6JOeW,1
+7571,outbreak,Eagle River Alaska,New York City Outbreak: What Is Legionnaire's Disease? http://t.co/CXI82rFiFS,1
+7573,outbreak,"ÌÏT: 6.488400524109015,3.352798039832285",Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/1H7zk6UYze,1
+7576,outbreak,"Nottingham, United Kingdom",@DrAtomic420 where did you get that pic from where it shows that there is 2 trophies for Outbreak? Or did they photoshop it?,0
+7577,outbreak,Akure city in ondo state ,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/mNsy1QR7bq,1
+7578,outbreak,The Netherlands,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/kkdX8zMV4G,1
+7579,outbreak,,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/13W8CyukKZ,1
+7580,outbreak,Anywhere,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/hKxYzhvmQE,1
+7581,outbreak,"FCT, Abuja ",8th person dies in NY Legionnaires' disease outbreak http://t.co/fJdM8QHYAI #SEBEE,1
+7582,outbreak,"Los Angeles, CA",Legionnaires' Disease: What's Being Done to Stop Deadly Outbreak: The worst-ever outbreak of Legio... http://t.co/0ubG9wFyge #losangeles,1
+7583,outbreak,Finland,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/ZA4AXFJSVB,1
+7584,outbreak,SÌ£o Paulo,Families to sue over Legionnaires' disease outbreak in Edinburgh - BBC News http://t.co/rM6CNzkSzL,1
+7585,outbreak,"Ile-Ife,Osun state, Nigeria",#News Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires'... http://t.co/zfYqSAwvrk,1
+7587,outbreak,"Fukuoka, Japan",Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak o... http://t.co/3hTJ2PypSg #News #check #follow,1
+7588,outbreak,kano,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/NQ77EfMF88,1
+7589,outbreak,?? ?+254? ? \??å¡_??å¡_???å¡_?/??,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/lfbdhTGQWG,1
+7590,outbreak,,An outbreak of Legionnaires' disease in New York has killed at least 8 people ÛÓ now officials think they've fo... http://t.co/7evyeLW4LC,1
+7591,outbreak,Dammam- KSA,Families to sue over Legionnaires: More than 40 families affected by the fatal outbreak of Legionnaires' disea... http://t.co/Paje5mxN1z,1
+7593,outbreak,"New York, NY",An outbreak of Legionnaires' disease in New York has killed at least 8 people @BI_Video http://t.co/eRJ7YANjXm http://t.co/vbRPeuJANL,1
+7594,outbreak,Pro-American and Anti-#Occupy,"#BREAKING 10th death confirmed in Legionnaires' outbreak in South Bronx; total cases reaches triple digits
+http://t.co/TxrsWi0efg",1
+7595,pandemonium,,Tube strike = absolute pandemonium,0
+7598,pandemonium,Nigeria,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos).... http://t.co/lYXNjlxL8s http://t.co/CXYFqN3ue4,1
+7600,pandemonium,"Durham, NC",Element of Freedom: The Biggest Party of the Summer @ Mirage Saturday! Tickets at http://t.co/7hAnPcr5rK,0
+7601,pandemonium,"The Kingdom of Fife, Scotland",@hashtagteaclub place out. It was ex Pars defender Andy Tod in full uniform. It was instant pandemonium. Utter mayhem ensued!,0
+7602,pandemonium,Dallas Fort-Worth,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) - http://t.co/c5u9qshhnb,1
+7603,pandemonium,Scotland,@J3Lyon I'm going to put the FFVII ones out at the weekend so I think Pandemonium! (Don't forget the exclamation mark) would be midweek.,0
+7604,pandemonium,"Everett, WA",@BlizzHeroes Would love to see a Diablo map themed after places like Westmarch or Mt. Arreat or Pandemonium.,0
+7605,pandemonium,"Mumbai, India",@minhazmerchant Govt should pass the bills in the Pandemonium. UPA used to do it why cant NDA?,0
+7607,pandemonium,,I'll be at SFA very soon....#Pandemonium http://t.co/RW8b50xz9m,1
+7608,pandemonium,,Proud of you @JoeGoodmanJr for watching the #CopaLibertadores and the Argentinean pandemonium... https://t.co/8tyGO0KiZz,0
+7609,pandemonium,,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) http://t.co/wRqF6U55hh,0
+7610,pandemonium,??????,#Pandemonium.iso psp http://t.co/HbpNFOAwII,0
+7611,pandemonium,The P (South Philly),Pandemonium use to be my fav cd ?? I had to get it http://t.co/6WhUgaeM3C,1
+7612,pandemonium,"VONT ISLAND, LAGOS",Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) http://t.co/AcFI2rHz4N,0
+7613,pandemonium,Houston TX,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) - http://t.co/xRP0rTkFfJ,1
+7614,pandemonium,,World Class Tgirl Ass 02 - Scene 4 - Pandemonium http://t.co/iwCu3DgI1a,0
+7616,pandemonium,,Hey all take a look at my review of 'Pandemonium' & 'Requiem' by Lauren Oliver. Enjoy! http://t.co/cPLYReWFZ3,0
+7617,pandemonium,"Durham, NC",Element of Freedom at Mirage Saturday! 21+ Ladies Free Before Midnight!' http://t.co/7hAnPcr5rK,0
+7619,pandemonium,,World Class Tgirl Ass 02 - Scene 4 - Pandemonium http://t.co/HzHoa6VZAS,0
+7621,pandemonium,"Leeds, UK",@KhalidKKazi mate they've taken another 2 since I posted this tweet it's pandemonium,1
+7622,pandemonium,www.facebook.com/stuntfm,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) - http://t.co/dI5aRr6HQ6,0
+7623,pandemonium,Lagos,>> @GidiExclusixe Shock In Aba As Woman Delivers Û÷FacelessÛª Baby [Photo]: There was pandemonium... http://t.co/RGTYZbNKeo #BennyCapricon,0
+7626,pandemonium,Dallas Fort-Worth,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) - http://t.co/c5u9qsySeJ,0
+7627,pandemonium,"Toronto, Canada",@Dr_Baseball41 @GrantTamane8 @DrewWTaylor @Dtop77 On the Christie Hillside: Game 4: Pandemonium at the Pits. http://t.co/Lq4lXGS2xU,0
+7628,pandemonium,Miami?Gainesville,If she don't know bout that Pandemonium album #Shestooyoung,0
+7630,pandemonium,illinois. united state ,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) @... http://t.co/JbxBi93CLu,0
+7631,pandemonium,,Exquisite asian in sto... http://t.co/Y9w0V6Te9O #cumshot #sex #porn #video #porno #free,0
+7633,pandemonium,Los Angeles,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) - http://t.co/Ykdsp0nRDQ,0
+7634,pandemonium,,My workplace is going to be pandemonium when the season starts ??,0
+7635,pandemonium,,Pandemonium In Aba As Woman Delivers Baby Without Face (Photos) http://t.co/8j4rdwyjWu http://t.co/9MkZPZfKL2,0
+7638,pandemonium,,- Pandemonium In Aba As Woman Delivers Baby Without Face http://t.co/36GccAPaak http://t.co/nqjZS6wkuN,0
+7639,pandemonium,"London, England",Cyclists it is pandemonium on the roads today. Drive carefully!,0
+7640,pandemonium,Royton,@PBohanna Probably a dead boring 1st hour and a half after the pandemonium of the last Test..... #justaguess,0
+7641,pandemonium,the Refrigerator ,Photo: deadgirltalking: unfortunemelody: jaylenejoybeligan: tarynel: dredougie: santanico-pandemonium:... http://t.co/PvKgo79JnI,0
+7642,pandemonium,Everywhere,Pandemonium In Aba As Woman Delivers Baby Without FaceåÊ(Photos) http://t.co/bM0SXzbNKE,1
+7643,pandemonium,California,Truly a scene of chaos unprecedented in frenzy. Pandemonium even. Utter disorder. That anyone survived such mania is astounding. @catovitch,1
+7644,pandemonium,,http://t.co/PmHMmkSPaQ -PANDEMONIUM! Playstation One PS1 Retro Classic Original Platform Platinum Rare#Deals_UK http://t.co/0gKNpy4lUA,0
+7645,panic,Brasil,it's don't panic,0
+7647,panic,"Leeds, United Kingdom",Obligatory middle of the night panic attack,0
+7648,panic,,@brokenscnecal I just though about panic! at the disco when I said that,0
+7649,panic,,Drake spokes rep for the raptors.Beg to differ the other night when shots rang out at Musik wasn't a goodlook.Running in panic no fun,0
+7650,panic,,The cool kids asked me if I wanted to hang out after school so I had a panic attack and had to go to the hospital #autismawareness,0
+7651,panic,,Love it when Jesse suffers a panic attack. https://t.co/r4utnewlnA,0
+7652,panic,"Toronto, Canada",@tim_micallef when do u think Yankees hit the panic button? #TroubleOnMyMind,0
+7653,panic,Everywhere,@JetixRestored Here's Part 2 Of Teamo Supremo Pogo Panic! I Want You Make It Better! OK! :) https://t.co/wBLiMlMT2x via @YouTube,0
+7654,panic,"Linton Hall, VA",Is it time to panic now? https://t.co/OrxDQfz0J0,0
+7656,panic,The Internetz,Plane Panic What kind of douchebag. Bubble Gum,0
+7657,panic,"Charleston, IL",'If plan A does not work don't panic bc there are 25 more letters.' I like this but feel like I may be running out of letters- thoughts?,0
+7659,panic,Narnia,I added a video to a @YouTube playlist http://t.co/QsEkoeuBMd Panic! At The Disco: Girls/Girls/Boys [OFFICIAL VIDEO],0
+7661,panic,,i just drove with both my parents in the car lmao that was a panic attack waiting to happen,0
+7662,panic,"Charlotte, NC | K̦ln, NRW",@elielcruz just watching the streams was bad - I don't think I could actually walk in there I'd panic and get sick,1
+7663,panic,,we was all just laughing and talking junk now everyone in panic mode,0
+7668,panic,"Topeka, KS",The good thing is that the #Royals won't face a newbie in the playoffs. No real reason to panic.,0
+7669,panic,"Philadelphia, PA",Despite the crippling anxiety and overwhelming panic attacks I'd say I'm fairly well-adjusted.,0
+7670,panic,"Palm Bay, FL (Kissimmee)","Panic over: Patient in Alabama tests negative for Ebola
+http://t.co/cY0CiU2u1C",1
+7671,panic,Narnia,I added a video to a @YouTube playlist http://t.co/4914nJpIO3 Panic! At The Disco: Miss Jackson ft. LOLO [OFFICIAL VIDEO],0
+7672,panic,Manhattan,Every time I feel a new pain or strain in my body I panic because I need it for my career ??,0
+7674,panic,elena's bed // info on link,Panic! at the Disco is the best song by this is gospel (acoustic) http://t.co/VCq2icptKI,0
+7675,panic,"Elsewhere, NZ","Lose bus card.
+Panic.
+Kind bus driver.
+Replace bus card.
+Find bus card.
+Headdesk.",0
+7677,panic,518 åá NY,Savs contact fell out but she was convinced it didnt & went on to guage her eyeball out & now shes having a panic attack over caused damage,0
+7678,panic,The Shady Hyenatown of Finland,"@james_justus *returns her*
+
+Relax. You know I always return her so no need to panic. I just gave her some of those corn flakes. :P",0
+7679,panic,Maryland ,@montetjwitter11 @nolesfan05 @NutsAndBoltsSP I say concern but not panic. Too many games left. And some games left against each other.,0
+7680,panic,,@panic awesome thanks.,0
+7681,panic,worldwide,@montetjwitter11 @Mets @audreyp77 @teena_797 @darryl_brooks @EliteSportsNY @LopezandtheLion no panic from #NatsNation but concern for sure,0
+7683,panic,East TN.,@biggangVH1 looks like George was having a panic attack. LOL.,0
+7685,panic,,#dream #magic The #linden method lite version - #1 anxiety panic cure program: http://t.co/073izwX0lB THE LIND http://t.co/OkmLAGvkjv,0
+7686,panic,Milwaukee WI,Someone asked me about a monkey fist about 2 feet long with a panic snap like the one pictured to be used as a... http://t.co/Yi9BBbx3FE,0
+7687,panic,Toronto,tomorrow's going to be a year since I went to the Panic! concert dressed as afycso ryan do u guys remember that,1
+7688,panic,"Macon, GA",Romantic dramatic but never panic original sensei write rhymes in the attic,0
+7689,panic,Narnia,I added a video to a @YouTube playlist http://t.co/vxeGCmMVBV Panic! At The Disco: Collar Full (Audio),0
+7691,panic,,just had a panic attack bc I don't have enough money for all the drugs and alcohol I wanted to buy this year let alone my fall bills,0
+7692,panic,,I had school today and I've already had a panic attack. Thank you high school for sucking !!!,0
+7693,panic,,Panic attacks are the worst ????,0
+7694,panic,Torry Alvarez love forever ? ?,Panic at the disco te amo,0
+7695,panicking,Detroit,Have to laughtraders panicking over market down 1%. Some see these as positive capitulation. THAT'S A JOKE. More to come may be ugly,0
+7696,panicking,"Petaluma, CA",@QuotesTTG Save the panicking for when you get to Helios. ;),0
+7698,panicking,,@Dirk_NoMissSki yea but if someone faints why are they panicking?.. thats basic stuff ??,1
+7699,panicking,?^åá??åá?^?? ??,OKAY I CAN'T FIND IT SO I'M KINDA PANICKING,0
+7701,panicking,,New post: 'People are finally panicking about cable TV' http://t.co/pkfV8lkSlD,0
+7702,panicking,?,I hear the mumbling i hear the cackling i got em scared shook panicking,0
+7703,panicking,Singapore,You made my mood go from shitty af to panicking af istg,0
+7707,panicking,Oxford / bristol,Okay NOW I AM PANICKING,0
+7711,panicking,PARACHUTE,idm if you burn the whole gotham city bcs I'm just gonna laugh at everyone while theyre panicking.,0
+7712,panicking,Near Warrington,You certainly are @Ian_Bartlett! Great to see all you #HS2 astroturfers panicking at the thought of cross party support crumbling.,0
+7714,panicking,,New post: 'People are finally panicking about cable TV' http://t.co/df9FjonVeP,0
+7715,panicking,|-/,it's 11:30 and I'm already panicking and crying bc I'm so stressed NICE,0
+7717,panicking,,People are finally panicking about cable TV http://t.co/BBjLs1fsaD,0
+7718,panicking,Pawnee,@Adumbbb oh that's not too bad then haha. I would've been panicking tho.,0
+7719,panicking,,@beauscoven nah man he's panicking. He just found out his brothers had it off with his now wife debbie is in hospital he's stressed,0
+7720,panicking,"Melbourne, Victoria",Panicking because maybe my bff left me at China Bar or maybe tindering on the toilet for 20mins,0
+7721,panicking,UK,@ushiocomics I may be panicking a little I wasn't as fast submitting the form as I usually am,0
+7722,panicking,,all that panicking made me tired ;__; i want to sleep in my bed,1
+7723,panicking,Manchester,Yet Brits are panicking about the UK http://t.co/HsDBGCIYrs,0
+7724,panicking,Georgia,?You should be scared. You should be screaming and panicking.? THIS REDEEMER http://t.co/4h8qYvvd0E #romanticsuspense,0
+7725,panicking,UK,My dad is panicking as my weight loss means he needs to hurry up with my new clothes fundwhen I reach my goal. ??,0
+7727,panicking,,Already panicking about school starting again :-),0
+7728,panicking,"Derbyshire, United Kingdom",People are finally panicking about cable TV http://t.co/ranEFiHbUK http://t.co/MflRVBh4qA,0
+7731,panicking,,I feel like I should be panicking more as Idk I get my results back in a week... I'm Alarmingly calm,0
+7733,panicking,VCU,Just realized that maybe it not normal to sit up front with an Uber driver? Panicking,0
+7735,panicking,"McLean, VA",@c_pinto001 I see people are panicking about Orpik all over again.,0
+7736,panicking,,Ay I am fully panicking lol,0
+7737,panicking,,When he lets you drive his truck and you start panicking because you had to 'flip that bitch'. ?????? http://t.co/W6O0uiZF8p,0
+7738,panicking,,@jeannathomas not gonna lie.. I'm panicking a little bit. Vic/Hardy not there.. Freeman not practicing.,0
+7739,panicking,South Florida,People are finally panicking about cable TV http://t.co/lCnW4EAD8v,0
+7742,panicking,,you can stop panicking ?????? @ogtomd https://t.co/ZvRE6fFNyD,0
+7743,panicking,Positive 852,My sis can now sit on a cam w/o panicking https://t.co/GiYaaD7dcc,0
+7744,panicking,"Manchester, England",why are people panicking about results day though hahahah like worrying is going to change your results,0
+7746,police,San Francisco,America said it had a war on terrorism. Then police took my AR-15 when I was ready to start shooting the enemies!,1
+7747,police,"Kansas City, Mo.",Police: Gunman reported dead at Nashville area theater: A suspect who carried a gun and a hatchet at the Carmi... http://t.co/kqvN1uTpMM,1
+7748,police,"New York, NY",#BREAKING411 4 police officers arrested for abusing children at police-run boot camp in San Luis Obispo Calif. - ... http://t.co/oNLvf2fyoY,1
+7749,police,,These fucking police can't touch me these fuck niggas ain't fucking w me,0
+7750,police,,#World #News Qld police wrap Billy Gordon investigation: QUEENSLAND Police have wrapped up their investigation... http://t.co/msgnNDxOeK,1
+7751,police,,'Gunman who opened fire at Tennessee movie theater killed by police' Anyone suspect suicide-by-cop?,1
+7752,police,Indonesia,Police kill hatchet-wielding gunman who opened fire inside Nashville movie theater: AåÊmiddle-aged manåÊarmed wi... http://t.co/tyD47NfL5x,1
+7753,police,,Police unions retard justice & drain gov $ but cops vote 4 Rs so Rs go after teachers unions instead! @DCCC @VJ44 @Lawrence @JBouie @mmfa,0
+7754,police,,Maid charged with stealing Dh30000 from police officer sponsor http://t.co/y35qtVDSOH | https://t.co/qhUJAjCTR5,0
+7755,police,"Massachusetts, USA",A Santa Ana Police Union Blocks Video of the Raid at Sky High Holistic Pot Dispensary - The Atlantic http://t.co/yvV1RlghfT #SmartNews,1
+7756,police,"anzio,italy",4 police officers arrested for abusing children at police-run boot camp in San Luis Obispo Calif. - @ABC7: http://t.co/QpWOtugUI9,1
+7758,police,,Vinnie Jones goes on the beat with Northumbria Police http://t.co/UP30AQgnLf,0
+7759,police,Nigeria,Now Trending in Nigeria: Police charge traditional ruler others with informantÛªs murder http://t.co/93inFxzhX0,1
+7760,police,"US, PA",California police officer pulls gun on man without any apparent provocation (VIDEO) http://t.co/Lhw4vTbHZG via @dailykos,1
+7761,police,,Police expand search for missing pregnant woman in Beloeil: Police in Richelieu-Saint-Laurent are expanding th... http://t.co/hMuyzmv8qH,0
+7763,police,h+l,Good that the police are taking care of this and also have extra security #HarryBeCareful,0
+7764,police,Republic of Texas,"Why Are #BAYONETS Being Distributed To Local Police Departments?
+@RandPaul wants to know
+
+https://t.co/XB8nfxaBUM
+
+#EvilEmpire
+#JadeHelm15",0
+7765,police,"Portland, OR",UNWANTED PERSON at 200 BLOCK OF SE 12TH AVE PORTLAND OR [Portland Police #PP15000266818] 17:10 #pdx911,0
+7766,police,Florida,Episcopal priests on road trip with interracial family shares harrowing story of police harassment http://t.co/RG4JIsHyBs via @dailykos,0
+7767,police,,Oops: Bounty hunters try to raid Phoenix police chief's home: http://t.co/yPRJWMigHL -- A group of armed bounty... http://t.co/3RrKRCjYW7,1
+7768,police,USA,$1 million bail for man accused of #shooting at Fife #police - Aug 5 @ 8:16 PM ET http://t.co/hu5CXqnoBf,1
+7769,police,UK,DT @georgegalloway: RT @Galloway4Mayor: ÛÏThe CoL police can catch a pickpocket in Liverpool Stree... http://t.co/vXIn1gOq4Q,1
+7771,police,SoCal,@BrandonMulcahy @fpine Here's the story http://t.co/TgXutUoyHl,0
+7772,police,"Bangalore, India",Police kill gunman at Nashville movie theatre - Times of India: Times of India Police killÛ_ http://t.co/K8BExkgwr2,1
+7773,police,Indonesia,Oops: Bounty hunters try to raid Phoenix police chief's home http://t.co/u30n3fFX8Y,0
+7774,police,,@robbiewilliams U fkn asswipe playing for Israeli child killers.. The fkn karma police will get U.,1
+7775,police,"Milwaukee, WI",New technology designed to help prevent dangerous police chases: In an effort to reduce injuries Milwaukee policeÛ_ http://t.co/cedjdlPDAN,0
+7780,police,"Mesa, AZ",@ArizonaDOT Price Rd North bound closed from University to Rio Salado.. Lots of police.. What's crackin?,1
+7781,police,"Stratford, CT",Selection September Bridgeport men charged in home invasion Police looking for burglar. - http://t.co/7mlCD0l0b8,1
+7783,police,,Police walk up on me I be blowin smoke in dey face wanna lock me up cus I got dope shit is gay,0
+7784,police,,Police: Man killed ex grandmother after son wasn’t named after him http://t.co/ndCy8Q7R6I OMG!!!!! Absolutely Crazy!!!,1
+7785,police,,-=-0!!!!. Photo: LASTMA officials challenge police for driving against traffic in Lagos http://t.co/8VzsfTR1bG,1
+7787,police,"MI,USA",#helpme what do I do? My friend has been ticketed by Police in Wayne County Michigan into never- sending poverty cycle. How do I help him?,0
+7788,police,Toronto,3 Options To Fix Your Facebook Cover Violation http://t.co/pF8dXwIbDp and Keep the #Facebook Police away. #socialmedia #strategy,0
+7789,police,Houston ,CNN: Tennessee movie theater shooting suspect killed by police http://t.co/dI8ElZsWNR,1
+7790,police,Indonesia,Oops: Bounty hunters try to raid Phoenix police chief's home: A group of armed bounty hunters surrounded the h... http://t.co/dGELJ8rYt9,1
+7793,police,Los Angeles ,.@slosheriff: 2 South Gate police officers and 2 Huntington Park officers arrested after child abuse investigation at boot camp,0
+7797,quarantine,missouri USA,Reddit Will Now QuarantineÛ_ http://t.co/pkUAMXw6pm #onlinecommunities #reddit #amageddon #freespeech #Business http://t.co/PAWvNJ4sAP,1
+7799,quarantine,PA,Reddit Will Now Quarantine Offensive Content http://t.co/u9BkQt6XHR,0
+7800,quarantine,South africa,Reddit Will Now Quarantine Offensive Content http://t.co/8S0mTwRumQ #Technology #technews #puledo_tech_update,0
+7801,quarantine,Bucharest,#Reddit updates #content #policy promises to quarantine Û÷extremely offensiveÛª communities http://t.co/EHGtZhKAn4,1
+7802,quarantine,,Reddit updates content policy promises to quarantine Û÷extremely offensiveÛª communities http://t.co/tHnExicGQe,0
+7803,quarantine,"Mumbai, Maharashtra",RT skanndTyagi WIRED : Reddit will now quarantine offensive content http://t.co/H0xUNJ3C7C (http://t.co/UuEw4MJLesÛ_ Û_,0
+7804,quarantine,"Joshua Tree, CA",Reddit Will Now Quarantine Offensive Content http://t.co/WosYPVQUFI http://t.co/XW8SDS1Tjp,1
+7807,quarantine,Area 8 ,Update: still haven't eaten since 6:30 am still have to clean the dry lot and fill water in quarantine. May pass out,0
+7809,quarantine,,Check Out: 'Reddit Will Now Quarantine Offensive Content' http://t.co/Ew5wZC07Fo,0
+7810,quarantine,"Bangalore, INDIA",#Bangalore Reddit updates content policy promises to quarantine 'extremely offensive' communities http://t.co/Of3Q75fGeU #Startups #in,0
+7812,quarantine,,Reddit updates content policy promises to quarantine Û÷extremely offensiveÛª communities http://t.co/KmTwA3n1Gf,0
+7813,quarantine,"ÌÏT: 40.707762,-74.014213",Aannnnd - 'Reddit Will Now Quarantine Offensive Content' https://t.co/P1JluRGWBu,0
+7815,quarantine,,Reddit Will Now Quarantine Offensive Content http://t.co/cNsHlNjUqX,0
+7816,quarantine,,Reddit Will Now Quarantine OffensiveåÊContent http://t.co/VYgh2ni4Ah,1
+7817,quarantine,mumbai,hermancranston: WIRED : Reddit will now quarantine offensive content http://t.co/wvn6GrIyPq (http://t.co/Rei3PuWP84Û_ Û_,0
+7818,quarantine,"Killa Hill, CO",Reddit Will Now Quarantine Offensive Content: Reddit co-founder and CEO Steve Huffman has unveiled more specif... http://t.co/LJMGdpDLvs,0
+7821,quarantine,Southern Califorina,Reddit Will Now Quarantine Offensive Content: Reddit co-founder and CEO Steve Huffman has unveiled more specif... http://t.co/PMCp8cZPNd,0
+7822,quarantine,all over the world,#wired #business Reddit Will Now Quarantine Offensive Content http://t.co/ZhzVprZbgq,0
+7823,quarantine,"San Diego, Calif.",RT @WIRED: Reddit will now quarantine offensive content http://t.co/zlAGv1U5ZA,0
+7824,quarantine,,Reddit Will Now Quarantine Offensive Content http://t.co/FEIkC9FxED #onlinecommunities #reddit /via @wired,0
+7826,quarantine,Geneva. And beyond. ,Wired: Reddit Will Now Quarantine Offensive Content - Reddit co-founder and CEO Steve Huffman has unveiled more sp... http://t.co/aByHRgsS1s,0
+7827,quarantine,,@missambear your Tweet was quoted by @WIRED http://t.co/E90J3vJOLc,0
+7828,quarantine,,Yet another company trying to censor the Internet. Reddit has started to quarantine their content: http://t.co/pG4y3I5ciu #cc,0
+7830,quarantine,"NYC, New York",Reddit Will Now Quarantine Offensive Content: Reddit co-founder and CEO Steve Huffman has unveiled more specif... http://t.co/TDEUKJzzII,0
+7831,quarantine,USA,Reddit Will Now Quarantine OffensiveÛ_ http://t.co/wjWYJBncat #onlinecommunities #reddit #amageddon #freespeech http://t.co/0Erisq25KT,0
+7832,quarantine,VÌ_a LÌÁctea,Reddit Will Now Quarantine Offensive Content: Reddit co-founder and CEO Steve Huffman has unveiled more specif... http://t.co/T7gE0j3CAy,0
+7833,quarantine,"New York, United States",Reddit Will Now Quarantine Offensive Content http://t.co/NAS3IPm5vh,0
+7835,quarantine,,Reddit Will Now Quarantine Offensive Content http://t.co/unNx71v8qc,0
+7837,quarantine,,Reddit Will Now Quarantine OffensiveåÊContent http://t.co/Gllawb2FSk http://t.co/3kaAfuoztc,0
+7839,quarantine,London,Reddit updates content policy promises to quarantine Û÷extremely offensiveÛª communities http://t.co/PLmIWOfpom,0
+7840,quarantine,"San Diego, CA",Loved Chicago so much that it game me Pink Eye. Now I sit and design in quarantine and in the dark.,0
+7842,quarantine,Some Where in this World,Reddit Will Now Quarantine Offensive Content http://t.co/LOdOrmTfSq,0
+7843,quarantine,,Reddit Will Now Quarantine OffensiveåÊContent https://t.co/MjbIUvbMo6 http://t.co/I5cdTD8ftj,0
+7844,quarantine,,Reddit Will Now Quarantine Offensive Content http://t.co/LTmgdP6Jaf,1
+7847,quarantined,,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/u9ao3A4oGC,0
+7848,quarantined,,when you are quarantined to a little corner bc you are too sick to be in the office but work is piling up and they need you kinda day,0
+7849,quarantined,"Cumming, GA",Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/ohbV7YvtL5 http://t.co/YmuTi3ND9r,0
+7850,quarantined,Korea,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/o8XvTLP4mF,0
+7851,quarantined,South Africa,#hot Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/uiSNqIu3iF #prebreak #best,0
+7852,quarantined,San Francisco,Officials: Alabama home quarantined over possible Ebola case http://t.co/UYUgFg3k1h,1
+7854,quarantined,russia,#hot Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/algtcN8baf #prebreak #best,0
+7855,quarantined,California,Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/M4TcZaawpT,0
+7857,quarantined,,"Here we go again. EBOLA! Run for your lives! aaarrrgghhh!
+
+http://t.co/G2UIMBeKgE",1
+7860,quarantined,"Sarasota, FL",Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/ZsXqbdUzBN http://t.co/6NCfjXPLOY,1
+7861,quarantined,,Fucking yes /r/antiPOZi is quarantined. Triggered the cucks we have.,0
+7862,quarantined,Melbourne,#hot Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/nGKrZPza45 #prebreak #best,1
+7863,quarantined,"Livonia, MI",Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/lFW4KUukeM http://t.co/k3mnk9HnZ5,0
+7864,quarantined,,Are Users of this Sub to be Quarantined? http://t.co/9nLY2TovUD,0
+7865,quarantined,,Officials: Alabama home quarantined over possible ... http://t.co/Rb2s0jmleJ,1
+7867,quarantined,USA,@__ScrambledEggs calling it now: KIA gets banned or quarantined before month's end,0
+7868,quarantined,"Karolinska vÌ_gen 18, Solna","Officials say a quarantine is in place at a Birmingham home over a possible Ebola case.
+
+Edward Khan of the... http://t.co/qnIJ2p8Zv6",1
+7869,quarantined,,"gmtTy mhtw4fnet
+
+Officials: Alabama home quarantined over possible Ebola case - Washington Times",1
+7870,quarantined,,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/BjVfk1ETe9,0
+7871,quarantined,,Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/4oNvxncz8w http://t.co/tnggXNm6k8,0
+7872,quarantined,China,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/zCp5cszSLl,0
+7873,quarantined,,Alabama home quarantined over possible Ebola case: Officials say a quarantine is in place at ... http://t.co/ztOnvgubVm #Bluehand #PJNET,1
+7874,quarantined,I Heard #2MBikers,Hm MT @Ebolatrends: Alabama Home Quarantined Over Possible Ebola Case http://t.co/ihVMtmZXne http://t.co/jLieMrSnnj,1
+7876,quarantined,,I'm just going to say it. Under the new reddit policy changes I think /r/conspiracy will be quarantined and how that's bad for the truth mÛ_,0
+7877,quarantined,"Dunwoody, GA",okay the cat has been quarantined in my bathroom...its meowing really loud but I turned up the TV louder...things just might work out okay,0
+7878,quarantined,,Alabama firefighters quarantined after possible Ebola exposure http://t.co/hzpX6vAQPZ reports http://t.co/L4W0PCorbs,1
+7880,quarantined,,"0nPzp mhtw4fnet
+
+Officials: Alabama Home Quarantined Over Possible Ebola Case - ABC News",1
+7881,quarantined,Ebola,Alabama home quarantined over possible #Ebola case: An ambulance sat outside the University of Alabama atÛ_ http://t.co/y2JT1aMyFJ,1
+7882,quarantined,Mongolia,#hot Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/HqdCZzdmbN #prebreak #best,0
+7883,quarantined,,Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/gix1gaYnXZ http://t.co/P93S2rFhx6,0
+7885,quarantined,"Broadview Heights, Ohio",Hey @reddit - the concept of a 'quarantine' makes no sense if the people you've quarantined can just wander out & about whenever they want,0
+7887,quarantined,,Ebola: Alabama Home Quarantined Over Possible Ebola Case.. Related Articles: http://t.co/BiigD1LEq3,1
+7888,quarantined,,"oc73x mhtw4fnet
+
+Officials: Alabama home quarantined over possible Ebola case - Washington Post",1
+7889,quarantined,china,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/0lpu0gR2j0,0
+7891,quarantined,"Poplar, London",can't DL a patch to fix the error in symantec as it's quarantined the computer ergo stopped all wireless exchange. lol technology ??,0
+7893,quarantined,rome,Top link: Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/Cd2NG2Awql,0
+7894,quarantined,China,#hot Reddit's new content policy goes into effect many horrible subreddits banned or quarantined http://t.co/VhrLsWvZql #prebreak #best,0
+7895,radiation%20emergency,"LP, MN USA",http://t.co/X5XUMtoEkE Nuclear Emergency Current USA radiation levels monitoring site,0
+7897,radiation%20emergency,,I liked a @YouTube video http://t.co/V57NUgmGKT US CANADA RADIATION UPDATE EMERGENCY FISHING CLOSURES,1
+7898,radiation%20emergency,,WIPP emergency activated because of slightly elevated levels of radiation. #sejorg,1
+7902,radiation%20emergency,"Burlington, VT",Some of worst radiation exposure from Fukushima meltdown happened 47km northwest-Proof that small emergency planning zones donÛªt cut it,1
+7903,radiation%20emergency,"La Grange Park, IL",DOE's WIPP facility in NM investigating a site filter radiation reading; has activated its Emergency Ops Center; says no offsite release.,0
+7905,radiation%20emergency,Warszawa,Radioactive Box Quarantined - IsraelÛªs Ashdod Port was evacuated when emergency teams discovered radiation emittin... http://t.co/swQ5lMyDka,1
+7906,radiation%20emergency,"Washington, DC",Radiation emergency #preparedness starts with knowing to: get inside stay inside and stay tuned http://t.co/RFFPqBAz2F via @CDCgov,1
+7907,radiation%20emergency,,Who Else Wants Documents Radiation Emergency Procedures 06 24 09 #radiation #emergency #procedures #06 #24 #09 http://t.co/HxwFBpP1b3,0
+7908,radiation%20emergency,#MayGodHelpUS,"#CCOT #TCOT #radiation Nuclear Emergency Tracking Center
+http://t.co/KF74o2mcsC
+https://t.co/N2ZHrChCGV",0
+7909,rainstorm,"Darnley, Prince Edward Island",Due to the rainstorm last night cupcake decorating is happening NOW at the Rec Hall! $2 - proceeds to #IWK! http://t.co/EaRONLwIFh,0
+7910,rainstorm,"Gloucester, MA","Rainstorm downtown Gloucester
+#gloucester #capeann #seagulls #triciaoneill #triciaoneillphoto https://t.co/oLS6qdi9Um",1
+7912,rainstorm,vancouver usa,@myrtlegroggins <gasp!> I forgot Sunday! OMG,0
+7913,rainstorm,Alberta ,Wow what beauty lies within every storm. Taken today after a rainstorm at A&B Pipeliners http://t.co/pSt5bBQ0av,1
+7914,rainstorm,Yobe State,Rainstorm Destroys 600 Houses in Yobe State: Rainstorm Destroys 600 Houses in Yobe State. [Daily Trust] Damatu... http://t.co/rzxQSSun02,1
+7915,rainstorm,"Coventry, Rhode Island",Going to the beach with Jim Alves means a guaranteed rainstorm. #lucky http://t.co/fejs0Bu0sq,0
+7916,rainstorm,,#DnB #NewRelease EDGE Jimmy - Summer Rainstorm (Lapaka Sounds) http://t.co/4L8h2FKlNO via http://t.co/ZITQKDFXJY,0
+7918,rainstorm,United States of America,'Three #people were #killed when a severe #rainstorm in the #Italian #Alps caused a #landslide' http://t.co/hAXJ6Go2ac,1
+7923,rainstorm,,Landslide in Italian Alps kills three: ROME (Reuters) - Three people were killed when a severe rainstorm in th... http://t.co/uZwXJBG0Zh,1
+7924,rainstorm,Federal Capital Territory,Rainstorm Destroys 600 Houses In Yobe | iReporter https://t.co/0rNY349UnT via @sharethis,1
+7926,rainstorm,"La Puente, CA",Stuck in a rainstorm? Stay toward the middle of the road. Most streets are crowned so water tends to pool on the sides.,0
+7929,rainstorm,music.,major rainstorm happening! I'm gonna lie down and drift away to the storming around me for a little while. bebacksoon.,1
+7930,rainstorm,online ,Landslide in Italian Alps kills three - ROME (Reuters) - Three people were killed when a severe rainstorm in the I... http://t.co/BoygBp0Jw9,1
+7932,rainstorm,"Memphis, TN",If you can't have the roar of the waves a rainstorm & some rollingÛ_ https://t.co/DlVYFvnQee,0
+7933,rainstorm,,Robot_Rainstorm: We have two vacancies on the #Castle Fantasy Football team! Join us. ItÛªs fun. ??,0
+7934,rainstorm,,@Calum5SOS you look like you got caught in a rainstorm this is amazing and disgusting at the same time,0
+7935,rainstorm,,Rainstorm Update: Further North or Further South? http://t.co/50vdQ7A1M5 http://t.co/QH6oXfT9Ir,1
+7936,rainstorm,Thailand Malaysia Indonesia ,Nigeria: Rainstorm Destroys 600 Houses in Yobe State: [Daily Trust] Damaturu -Over 600Û_ http://t.co/BBQnK76qUS,1
+7937,rainstorm,Earth,Landslide in Italian Alps kills three: ROME (Reuters) - Three people were killed when a severe rainstorm in th... http://t.co/SmKZnF52Za,1
+7938,rainstorm,"Pennsylvania, USA","RAIN RAIN GO AWAY... A soaker is on the way
+------> http://t.co/jQFcY9GuqV <----- http://t.co/tN65puhfhw",0
+7939,rainstorm,vancouver usa,@NathanFillion Hardly! ??,0
+7940,rainstorm,"Fairfax, VA",Tomorrow's evening commute receives a RED LIGHT. A rainstorm impacting the region will push it's way in late evening. http://t.co/DRvm8ISOtE,1
+7941,rainstorm,"Memphis, TN",That rainstorm didn't last nearly long enough,1
+7943,rainstorm,Seattle,@Robot_Rainstorm I'm.sort of interested in what fonts they're using.,0
+7944,rainstorm,"Sicamous, British Columbia",lizzie363 @CstSmith I drove thru deep water in a flash flood--rainstorm repair cost $14000. 25 yrs later people still thnk cars float!!!,1
+7945,rainstorm,North Memphis/Global Citizen,Best believe all the wrong decisions are being made out here in these Memphis streets during this here rainstorm lol my folk doe,0
+7949,rainstorm,"Bridport, England",I want it to rainstorm PLEASE,0
+7950,rainstorm,"Porto Alegre, Rio Grande do Sul",Waking up sick with a rainstorm outside would usually make me sad. Not today though. Put some The Kooks on the stereo and let's do this.,0
+7952,rainstorm,"North Vancouver, BC",Yay I can feel the wind gearing up for a rainstorm in #Vancouver!! Bring it on #drought #deadgrassandflowers #wildfires,1
+7953,rainstorm,Seattle,@Robot_Rainstorm I'm a huge football fan as you know but I've never done fantasy leagues. Patience for a newbie?,0
+7954,rainstorm,"Pioneer Village, KY",'The way you move is like a full on rainstorm and I'm a house of cards',1
+7955,rainstorm,"Port Harcourt, Nigeria",Rainstorm Destroys 600 Houses in Yobe State http://t.co/nU0D3uANNZ,1
+7957,rainstorm,ECSU16,The way you move is like a full on rainstorm and I'm a house of cards.,0
+7958,rainstorm,UK,Landslide caused by severe rainstorm kills 3 in ItalianåÊAlps https://t.co/8BhvxX2Xl9 http://t.co/4ou8s82HxJ,1
+7959,razed,,Former Freedom Surf/Spa Razed to Make Way for New Homes http://t.co/EX6JzQJ3NI,0
+7960,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/AKnBtuyaef,1
+7962,razed,Nigeria,TENSION IN ABIA AS INEC OFFICEÛªS RAZEDåÊÛÒ GOVERNOR IKPEAZU PDP APGA REACT http://t.co/aKzZOe5CE6,1
+7963,razed,"Tulsa, OK",The Latest: More homes razed by Northern California wildfire: The latest on wildfires burning in California andÛ_ http://t.co/0Keh2TReNy,1
+7965,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/nTSwUAYEJI http://t.co/wgeFBuk4Jk,1
+7968,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/ZBZc8905Gl,1
+7969,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/lY8x7rqbwN,1
+7970,razed,,http://t.co/iXiYBAp8Qa The Latest: More homes razed by Northern California wildfire - Lynchburg News and Advance http://t.co/zEpzQYDby4,1
+7971,razed,WorldWide,#News : The Latest: More Homes Razed by Northern California Wildfire - New York Times http://t.co/5kBRZZmf8c #TAFS #FB100%,1
+7972,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/d1VjOYg52A,1
+7973,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/dOFRh5YB01,1
+7976,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/2nIP3d15dx http://t.co/egYFNlAOQv,1
+7977,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/BsGR67dyWY http://t.co/nDGgr6Xyqd,1
+7978,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/5FcJVMl520 http://t.co/fvYRWhux8p,1
+7980,razed,North,@petereallen @HuffPostUK @bbc5live How significant do you think the iconic pic of Church (maybe) ruins and less substantial efforts razed?,0
+7981,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/3tnuACIV3c http://t.co/SAkORGdqUL,1
+7982,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/P3g3bQBczu http://t.co/RpBxdfnx5k,1
+7983,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/x1xj0XVTj7,1
+7984,razed,"Ames, IA",@DavidVonderhaar At least you were sincere ??,1
+7987,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/Rg9yaybOSA,1
+7988,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/2872J5d4HB,1
+7989,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/ecXMoiNZgU http://t.co/ntwWDweDNb,1
+7990,razed,San Diego California 92101,More homes razed by Northern Calif. wildfire http://t.co/u52RW9Ji2r #sandiego http://t.co/GX75w3q9Ye,1
+7991,razed,Nairobi-KENYA,George Njenga the hero saved his burning friend from a razing wildfire http://t.co/Ywkk26arAG,1
+7992,razed,"Erie, PA",today will be another dualcom with @Im_Razed !!! if you enjoyed yesterdays check out todays at 5 pm easter!!!,0
+7994,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/bKsYymvIsg #GN,1
+7996,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/RlPTtkBG4W,1
+7999,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/6AcSWzo7cw,1
+8000,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/hCKxJ8eukt,1
+8001,razed,,The Latest: More homes razed by #NorthernCalifornia wildfire http://t.co/mONiJJth7V #ZippedNews http://t.co/0yXBB5dzw5,1
+8002,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/R1CNSjUAYQ http://t.co/DQ1yLcrF9K,1
+8003,razed,Nairobi-KENYA,George Njenga the hero saved his burning friend from a razing wildfire... http://t.co/us8r6Qsn0p,1
+8005,razed,,The Latest: More homes razed by Northern California wildfire - http://t.co/IrqUjaEsck http://t.co/qDwEknRMi9,1
+8006,razed,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/aueZxZA5ak,1
+8008,razed,"Augusta, Maine, 04330",Vassalboro house to be razed to make way for public gazebo @PeteL_McGuire reports. http://t.co/uUEwccdTow,0
+8009,refugees,,This just-married Turkish couple gave 4000 Syrian refugees an incredible gift http://t.co/ibeD3xG7fy Fed them instead of family & friends.,1
+8010,refugees,Ad Majorem Dei Glorium,Police Monitoring 200 Jihadis in Poland http://t.co/1wCOfmLUb9 via @freedomoutpost,1
+8012,refugees,"Aurora, Ontario ",Turkish newlyweds donate wedding money - what a beautiful gesture! Still have faith in humanity. http://t.co/o1eNHjrkJd,0
+8013,refugees, Baku & Erzurum ,This just-married Turkish couple gave 4000 Syrian refugees an incredible gift #WashingtonPost http://t.co/aRKmc7vclN,1
+8015,refugees,Statute Of Limitations_,Repulsive! Refugees-Victimiser-#Dutton Evangelical-Liar-#Abbott c/o #LNP on a dupe the press overdrive; #CHOPPERGATE!#BRONWYNBISHOP!#AUSPOL,0
+8016,refugees,paradise,#retweet Cameroon repatriating about 12000 Nigerian refugees due to Boko Haram http://t.co/wvVgmejA7l,1
+8017,refugees," BC, US, Asia or Europe.",Newlyweds feed Syrian refugees at their wedding - CBC News - Latest Canada World Entertainment and Business News http://t.co/QU8S89pVVt,0
+8018,refugees,,wowo--=== 12000 Nigerian refugees repatriated from Cameroon,1
+8019,refugees,,./.....hmm 12000 Nigerian refugees repatriated from Cameroon http://t.co/YTW9SlWvmg /(,1
+8020,refugees,,...//..// whao.. 12000 Nigerian refugees repatriated from Cameroon http://t.co/baE0Ap4G9Y,1
+8021,refugees,St PetersburgFL,'imagine an entire aisle dedicated to making people look like serbian refugees.' - director of whole foods clothing section,0
+8023,refugees,Espa̱a,@ViralSpell: 'Couple spend wedding day feeding 4000 Syrian refugees. http://t.Û_ http://t.co/I1VPkQ9yAg see more http://t.co/tY5GAvn7uk,0
+8024,refugees,,reaad/ plsss 12000 Nigerian refugees repatriated from Cameroon,1
+8025,refugees,Tarragona,Top story: @ViralSpell: 'Couple spend wedding day feeding 4000 Syrian refugeesÛ_ http://t.co/a2TIIVNjDY see more http://t.co/fW2XIfJ6Ec,0
+8026,refugees,,Refugee Connections Indiegogo campaign will be going live tomorrow! Support us and help launch the only online community for #refugees.,1
+8028,refugees,,y'all read 12000 Nigerian refugees repatriated from Cameroon http://t.co/aVwE1LBvhn,1
+8029,refugees,,Short of throwing them overboard himself I don't think any other leader could do much worse by #refugees than @TonyAbbottMHR worst pm ever!,1
+8030,refugees,Warri,Cameroon Repatriated 12000 Nigerian Refugees http://t.co/6nQRU2q5Tz,1
+8031,refugees,Melbourne Australia,Captain Abbott must go down with LNP boat #refugees #christianvalues https://t.co/Kp5dpOaF58,0
+8032,refugees,,A Turkish couple spent their wedding day feeding 4000 Syrian refugees ? A Turkish couple who got marrie Û_ http://t.co/iGll3ph6O1,0
+8034,refugees,"21.462446,-158.022017",How One Couple Is Using Drones to Save Refugees at the World's Deadliest Border http://t.co/9qpG0Z3Rh9,1
+8035,refugees,,...//..// whao.. 12000 Nigerian refugees repatriated from Cameroon http://t.co/HuhWPmryWz,1
+8036,refugees,,./.....hmm 12000 Nigerian refugees repatriated from Cameroon http://t.co/96p3hUJNTj /(,1
+8037,refugees,"Bangalore, India",#Turkish couple decided to feed 4000 #Syrian #refugees as part of their #wedding celebrations http://t.co/EHLq3ZSPTd http://t.co/DjX5eLbrv1,0
+8038,refugees,Skyhold,"@fadelurker @dalinthanelan < right now.
+
+Even after two years there were still refugees camped just south of Redcliffe village and Aidan >",1
+8039,refugees,Australia,Newlyweds feed thousands of Syrian refugees instead of hosting a banquet wedding dinner http://t.co/EGcv7ybjae #Age #news,0
+8040,refugees,"Amman,Jordan",In Photos: The Young Refugees Forced to Flee Burundi's Violence | VICE News https://t.co/jOjnq2oOPi see more http://t.co/DsKuI6Mmgl,1
+8043,refugees,tripoli international airport,@KristinDavis @UN @Refugees Thank you @UN and @Refugees for helping so many people in need all over the world.... https://t.co/yPvJgzqqqB Û_,0
+8044,refugees,,wowo--=== 12000 Nigerian refugees repatriated from Cameroon,0
+8045,refugees,,Newlyweds feed thousands of Syrian refugees instead of hosting a banquet wedding dinner - http://t.co/XZV0lT9ZZk via @smh,1
+8047,refugees,"Auckland, New Zealand",http://t.co/eHKLp12yiP Paci?c Media Centre | articles: AUSTRALIA: RSF protests over new security gag over reporting on...,0
+8049,refugees,,recap/ 12000 Nigerian refugees repatriated from Cameroon http://t.co/po19h8YCND,1
+8055,refugees,"NYC,US - Cali, Colombia",The Most Generous Bride on Earth: Couple Feeds 4000 Syrian Refugees on Their Wedding Day http://t.co/ms8e8mNddb via @thedailybeast love it!,0
+8056,refugees,,...//..// whao.. 12000 Nigerian refugees repatriated from Cameroon http://t.co/po19h8YCND,1
+8057,refugees,QLD Australia,The 46 returned refugees - what were they fleeing from & how will the Vietnamese Govt treat them now they are returned? #Dutton #presser,1
+8058,refugees,"Geneva, Switzerland",CHPSRE: RT: Refugees: For our followers in Paris do visit 'A Dream of Humanity' exhibition by rezaphotography Û_ Û_ http://t.co/RPmTROPsVr,1
+8060,rescue,Trinidad & Tobago,Policyholders object to Clico rescue plan http://t.co/E4DvI9vUXZ http://t.co/JyCpf8iYhg,1
+8061,rescue,SF Bay Area,Don't Panik! #KelbyTomlinson to the rescue! http://t.co/hujvgsFLUs,0
+8062,rescue,#HarleyChick#PJNT#RunBenRun,Coastal German Shepherd Rescue OC shared a link... http://t.co/P85NwcMkQu #animalrescue | https://t.co/wUDlkq7ncx,0
+8064,rescue,"Toronto, Ontario",UD: Rescue (Structural Collapse) - Scott Road @ Ypres Road York (14 Trucks),1
+8065,rescue,New Jersey,Rescue of the day: ItÛªs World Cat Day Saturday Aug 8th Black Black/White Cats just $5 http://t.co/oqb7DaSMVy #NewBeginningsAnimalRescue,0
+8066,rescue,Big NorthEast Litter Box,I'm on 2 blood pressure meds and it's still probably through the roof! Long before the #PPact story broke I was involved in animal rescue,0
+8067,rescue,Sand springs oklahoma,Coastal German Shepherd Rescue OC shared a link... http://t.co/35QWnGLkOS #animalrescue | https://t.co/Is2iDC3UBJ,0
+8068,rescue,,Coastal German Shepherd Rescue OC shared a link: 'Ecstatic Rescued Racco... http://t.co/t8Q6DzVgwX #animalrescue,0
+8069,rescue,,Suggs & Vivian to the rescue! #psychrewatch,0
+8070,rescue,"Surry Hills, Sydney",Any lengths to rescue a cat in need! http://t.co/AMroX4Y4Nx,0
+8071,rescue,Sand springs oklahoma,Last Chance Animal Rescue has 3 new posts. http://t.co/f1tcbg1MKi #animalrescue | https://t.co/Is2iDC3UBJ,0
+8073,rescue,#HarleyChick#PJNT#RunBenRun,Last Chance Animal Rescue has 3 new posts. http://t.co/kIILdu8GpO #animalrescue | https://t.co/wUDlkq7ncx,0
+8074,rescue,,Sammy and todd always to the rescue may not be in uniform but still to the rescue lmao. Forever KFC fam.,0
+8079,rescue,USA,"Lunch for the crew is made. Night night it's been a long day!
+~Peace~Love~Rescue~",0
+8081,rescue,Thornton Colorado,Tell the United Nations: Plantations are NOT forests! https://t.co/cic7h64Qv8 via @RainforestResq,0
+8083,rescue,Wanderlust,Mary coming to Troy rescue. ?????? https://t.co/rosVXQeLQj,0
+8084,rescue,"Toronto, Ontario",UD: Rescue (Structural Collapse) - Scott Road @ Ypres Road York (14 Trucks),1
+8085,rescue,Karachi,Flood-zone : General Raheel Sharif visits Chitral: He also lauded the efforts of FWO army troops and army aviation in rescue opera...,1
+8087,rescue,,Last Chance Animal Rescue has 3 new posts. http://t.co/1EB2DaUYfn #animalrescue,0
+8088,rescue,,@LisaVanderpump How many dogs do you have and are they all rescue dogs?,0
+8089,rescue,India,Officials rescue 367 migrants off Libya; 25 bodies found - Fox News http://t.co/cEdCUgEuWs #News,1
+8091,rescue,U.S.A. FEMA Region 5,Coastal German Shepherd Rescue OC shared a link... http://t.co/2JxkmkpalP #animalrescue | https://t.co/ec46LyQQc6,0
+8094,rescued,United States,@Zak_Bagans this is Sabrina my dad rescued her from some dude who kept her in a cage. We've had her since I was 4 http://t.co/1k2PhQcuW8,1
+8095,rescued,,Britons rescued amid Himalaya floods (http://t.co/WGRXLy9pDO) http://t.co/BJ4hAAVAYE http://t.co/59p3AoIQUS,1
+8096,rescued,Nigeria,4 kidnapped ladies rescued by police in Enugu | Nigerian Tribune http://t.co/xYyEV89WIz,1
+8097,rescued,Jakarta,Rescued Med migrants arrive in Sicily http://t.co/Z8xIqNgulc,1
+8098,rescued,"Ohio, USA",@TennoAtax I hand you a glass of water and sit down. 'I was rescued by a Tenno. I've lived in my ship around the dojo for about a year...',0
+8100,rescued,watford,'Trust us to get rescued by the dopey ones!' Val is hilarious shame she's probably going to die #emmerdale,0
+8101,rescued,West Hollywood,Summer #summervibes #california #puppy #pitmix #rescued #brixton #banksy #happy #mybabies https://t.co/7VoVkTXsPo,0
+8102,rescued,Kent,Man Who Buried Dog Alive Thought No One Would Find Her But She Was Rescued Just In Time http://t.co/SahQ5UOAHW,0
+8103,rescued,Canada,10-Month-Old Baby Girl was Rescued by Coastguard after She Floated HALF A MILE Out to Sea! #socialnews http://t.co/kJUzJC6iGD,1
+8105,rescued,The Multiverse,But now #Skyrim awaits to be rescued...again.,0
+8106,rescued,USA,Rescued Med migrants arrive in Sicily http://t.co/nekm1RPohU,1
+8109,rescued,Bournemouth,The Finnish hip hop pioneer Paleface will be 'rescued from a drifting raft' and brought into the container later #enkelbiljett #menolippu,0
+8110,rescued,Jammu | Kashmir | Delhi,18 bovines rescued 3 smugglersåÊnabbed http://t.co/E7fn5G5rUu,1
+8111,rescued,,Funds Needed for Rescued then Abandoned Cocker Spaniels http://t.co/RJrmW7nzy5,0
+8112,rescued,,I liked a @YouTube video http://t.co/45TWHJ0l6m RomanAtwoodVlogs | RESCUED SICK KITTENS!!,0
+8113,rescued,,#news Britons rescued amid Himalaya floods http://t.co/kEPznhXHXd,1
+8116,rescued,southern california,A brave little dog gets rescued from the river. His recovery will inspi... https://t.co/jYwFyGcLHM via @YouTube,0
+8118,rescued,"Philadelphia, Pennsylvania USA",Homeless Man Traveling Across USA With 11 Stray Dogs He Rescued Gets A Helping Hand From Strangers http://t.co/QhfqlUI6RY via @Reshareworthy,0
+8119,rescued,,@BrittanyPetko breaking news tonight kids were rescued from play room after a week with no food or water do to parents sex life haha,1
+8120,rescued,"Winston-Salem, NC",'You can only be rescued from where you actually are and not from where you pretend you are.' Giorgio Hiatt,0
+8121,rescued,"Huntley, IL",We rescued my dog at least 9 years ago ?? she's old but still sweet as ever ?? @Zak_Bagans http://t.co/yhYY3o609U,0
+8122,rescued,NIGERIA,http://t.co/QGyN2u1UP3 Rescued Med migrants arrive in Sicily: Hundreds of migrants rescuedÛ_ http://t.co/wiS3H9Tqrm,1
+8125,rescued,The green and pleasant land.,Why weren't they taken back to Africa once rescued? #c4news,1
+8126,rescued,Earth,Migrants Rescued After Boat Capsizes Off Libya http://t.co/pmGgavtokP,1
+8128,rescued,,Young children among those rescued from capsized boat off Libya http://t.co/Kot9zVD2H7 via @IrishTimesWorld,1
+8129,rescued,,Heroes! A Springer Spaniel & her dog dad rescued a stranded baby dolphin: http://t.co/G03DkPooNP http://t.co/Go0HPi0B4c,1
+8130,rescued,"Leeds, U.K.",Trust us to get rescued by the dopey ones. #Emmerdale #SummerFate,0
+8131,rescued,Ireland,Three beached whales rescued in Kerry - http://t.co/rQbsPUCjDF,1
+8133,rescued,,Rescued TB goes on to ribbon at HITS: http://t.co/pA5SSLeFEC via @offtrackhorse,0
+8135,rescued,,Turn back to me! I have rescued you and swept away your sins as though they were clouds. Isaiah 44:22 Contemporary English Version,0
+8136,rescued,"Pennsylvania, USA",@Zak_Bagans pets r like part of the family. I love animals.??? The last 2 pets I had I rescued! Breaks my heart when animals are mistreated????,0
+8137,rescued,Boston MA,I liked a @YouTube video http://t.co/FNpDJwVw1j Homeless dog living in a cardboard box gets rescued & has a heartwarming,0
+8138,rescued,Canada,Angry Mistrustful Rescued Elephant Finds Peace and Friendship in Her New Home (PHOTOS) http://t.co/VaUnPS6WJa via @OneGreenPlanet,0
+8140,rescued,Jakarta/Kuala Lumpur/S'pore,Photo: Hundreds of rescued migrants await disembarkment from an Irish naval vessel at Palermo Italy - @tconnellyRÛ_ https://t.co/AIM5CYHL0y,1
+8141,rescued,Cape Town,Rescued Med migrants arrive in Sicily http://t.co/p4dOA5YYJe,1
+8142,rescuers,Nigeria,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in ... http://t.co/bS6PjT09Tc #Africa #News,1
+8143,rescuers,Westerland,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/s5NuEGSwYj,1
+8144,rescuers,Kuala Lumpur,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/ciwwUQthin,1
+8146,rescuers,Surabaya,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/GEU4H46CsZ,1
+8147,rescuers,#iminchina,VIDEO: 'We're picking up bodies from water' - Rescuers are searching for hundreds of migrants in the Mediterranean... http://t.co/yhQU5UV6Ok,1
+8149,rescuers,,#world Fears over missing migrants in Med: Rescuers search for survivors after a boat carrying as many a... http://t.co/6DS67XAI5e #news,1
+8150,rescuers,Africa,@Durban_Knight Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carr... http://t.co/cWCVBuBs01 @Nosy_Be,1
+8154,rescuers,,I have an unexplainable desire to watch The Rescuers. #childhooddefined,0
+8155,rescuers,Nigeria,#RoddyPiperAutos Fears over missing migrants in Med: Rescuers search for survivors after a boat carrying as ma... http://t.co/97B8AVgEWU,1
+8156,rescuers,Birmingham,@AndyGilder Channel 5 have been doing the same for the RSPCA with Dog Rescuers.....'The Infomercial' has crept in the back door.,0
+8158,rescuers,,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carryi...,1
+8159,rescuers,,WomanÛªs GPS app guides rescuers to injured biker in Marin County http://t.co/UoJy4E2Sv4,1
+8161,rescuers,,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/zG1YddywA5,1
+8162,rescuers,London,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/PUezv6bd37,1
+8163,rescuers,,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carryi...,1
+8164,rescuers,,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in ... http://t.co/awtScUCBBV #Africa #News,1
+8165,rescuers,,Last Second Ebay Bid RT? http://t.co/oEKUcq4ZL0 Shaolin Rescuers (dvd 2010) Shen Chan Nan Chiang Five Venoms Kung Fu ?Please Favori,0
+8168,rescuers,,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carryi...,1
+8169,rescuers,,"#WorldNews
+ VIDEO: 'We're picking up bodies from water' - BBC News - Home:
+Rescuers are searching for hundreds of.. http://t.co/6hhmBdK9Yo",1
+8170,rescuers,"?????????????, Thailand ",VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/ZFWMjh6SLh,1
+8171,rescuers,,http://t.co/XlFi7ovhFJ VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundredsÛ_ http://t.co/rAq4ZpdvKe,1
+8172,rescuers,17th Dimension,AH-Mazing story of the power animal rescuers have! A starving homeless dog with no future was rescued by a person... http://t.co/ficd5qbqwl,1
+8175,rescuers,,Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carrying as many as 600 people capsized off the coast ofÛ_,1
+8176,rescuers,Washington,#News: 'Many deaths' in shipwreck: Rescuers are trying to save hundreds of migrants after the... http://t.co/tX51oYbrN6 via @TheNewsHype,1
+8177,rescuers,USA - Canada - Europe - Asia,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/PsPm3ahGKQ,1
+8180,rescuers,worldwide,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterran... http://t.co/yvO6q6W442,1
+8181,rescuers,Phoenix,When Rescuers Found Him He Was Barely Alive. But They Had No Idea He Was Allergic To THIS! http://t.co/VecmsiUUh1,1
+8182,rescuers,,Fears over missing migrants in Med: Rescuers search for survivors after a boat carrying as many as 600 migrant... http://t.co/gx9sKUAu9J,1
+8183,rescuers,,VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the Mediterranean after a boat carryi...,1
+8184,rescuers,,Woman's GPS app guides rescuers to injured biker in Marin County - SFGate http://t.co/Iz9U8BhfAA,1
+8187,rescuers,,Fears over missing migrants in Med: Rescuers search for survivors after a boat carrying as many as 600 migrantsÛ_ http://t.co/v9ftYB30EI,1
+8188,rescuers,,Rescuers find survivors of Nepal earthquake buried ... http://t.co/I8SJ1KWs1D,1
+8189,rescuers,"Paris, France","Rescuers recover body of 37-year-old Calgary man from lake near Vulcan
+
+ Û_ http://t.co/gAEhr9bHEk",1
+8190,rescuers,,Fears over missing migrants in Med: Rescuers search for survivors after a boat carrying as many as 600 migrantsÛ_ http://t.co/IXfnE5Jlep,1
+8191,rescuers,"Here, there and everywhere",VIDEO: 'We're picking up bodies from water': Rescuers are searching for hundreds of migrants in the... http://t.co/UymxocFs33 #BBC #News,1
+8195,riot,Belgrade,To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived: Pop quiz! Which do you prefer: fem... http://t.co/KmndkFa7me #art,0
+8196,riot,India,Stuart Broad Takes Eight Before Joe Root Runs Riot Against Aussies,0
+8201,riot,"Cardiff, UK",@PipRhys I predict a riot.,1
+8202,riot,,"@teamVODG Discovered by @NickCannon
+ Listen/Buy @realmandyrain #RIOT on @iTunesMusic @iTunes https://t.co/dehMym5lpk Û_ #BlowMandyUp",0
+8203,riot,,To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived http://t.co/um3wTL5r7K #arts http://t.co/2LQyxZQ5DN,0
+8204,riot,Bossland,http://t.co/cxB55H37jn Rascal Flatts Riot Tour Atlantic City Beach Concert-August 20 2015-2 Tickets http://t.co/H6tyYSGR30,0
+8205,riot,World Wide Web,To All The Meat-Loving Feminists Of The World Riot Grill HasåÊArrived http://t.co/uDQA53KfQu,0
+8208,riot,"Uppsala, Sweden",Seriously do we have to do a tactical riot against the headquarters of Disney and Marvel...,0
+8209,riot,East London,@Dani_Riot keep an eye out we'll be looking for lots of new team members in coming days/weeks :),0
+8210,riot,"Detroit, MI",To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived: Pop quiz! Which do you prefer: feminist... http://t.co/HXOX7o42Rq,0
+8211,riot,,@Live_Workshop selfie at booth or riot Kappa,1
+8212,riot,,@AcaciaPenn I'll start a big ass riot send me to jail today mfs shidddd ??,0
+8213,riot,,"Riot Kit Bah - part of the new concept Gear coming for Autumn/Winter
+#menswear #fashion #urbanfashionÛ_ https://t.co/cCwzDTFbUS",0
+8214,riot,,"@abran_caballero Discovered by @NickCannon
+ Listen/Buy @realmandyrain #RIOT on @iTunesMusic @iTunes https://t.co/dehMym5lpk Û_ #BlowMandyUp",0
+8215,riot,,I liked a @YouTube video http://t.co/5fR41TPzte Thorin's Thoughts - Riot and Sandbox Mode (LoL),0
+8216,riot,,Stuart Broad Takes Eight Before Joe Root Runs Riot Against Aussies: Stuart Broad took career-best figures of 8... http://t.co/zGSJWXdrCM,0
+8217,riot,"Los Angeles, CA","Retweeted Sarah Silverman (@SarahKSilverman):
+
+Soundtrack of my walk starts w Tracey Ullman They Don't Know. perfect",0
+8218,riot,,To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived http://t.co/TiOst8oKvX,1
+8219,riot,,After all that time Riot should really make an official Satan Teemo skin http://t.co/TYtPBC4GWi,0
+8221,riot,"Montana, USA",I liked a @YouTube video http://t.co/lAmsdzKCuz Sick Riot Shield Slide Spots!!,0
+8223,riot,"Utah, USA",@ByTorrecilla Torrecilla We Always info the Secret on LoL Game Check the Secret to get 600.000 Riot Points on my Bio,0
+8224,riot,"Frankfort, KY",Transwomen and drag queens of color lead the riot a well known butch lesbian is usually credited for inciting it.,0
+8225,riot,Los Angeles,@eac4AU You can now PRE-ORDER the film on ITUNES & watch 9/15!! YAY! http://t.co/fVP3Wnid4L http://t.co/bwdhIBtiKs http://t.co/qelROcI7by,0
+8226,riot,United Kingdom,'Without an ally near you can't use this skill.' How did you get hired? Really cause it's making every Riot staff member look incompetent.,0
+8231,riot,In Space,Pop quiz! Which do you prefer: feminist revolution or fried ravioliåÊwith porcini and ricottaÛ_ http://t.co/n6MCPgVWQ2 http://t.co/s8OiNfGXyX,0
+8232,riot,,To All The Meat-Loving Feminists Of The World Riot Grill Has Arrived http://t.co/SkAAUSjpO4 OliviaMiles01,0
+8234,riot,"Sligo and Galway, Ireland",@DavidJordan88 @Stephanenny Except we don't know who started the riot or if it even makes sense to credit any particular individuals...,1
+8235,riot,"Los Angeles, CA",@Trollkrattos Juan Carlos Salvador The Secret Tips to Get 100.000 Riot Points LoL are out now! check the Secret on on my Bio,0
+8236,riot,Seattle,Southeast Dirt Riot Series Crowns Champions: Southeast Dirt Riot Series Crowns ChampionsBLACKFOOT ID: The So... http://t.co/v9i4PfXO0C,0
+8237,riot,Tipperary (Long Way) ,Sweetpea's are running riot at the allotment - and brightening up a rainy day http://t.co/6NdBFOPK5m,1
+8238,riot,Mumbai,Stuart Broad Takes Eight Before Joe Root Runs Riot Against Aussies,0
+8239,riot,Malang,Riot police intervene after Southampton and Vitesse Arnhem supporters clash: Û¢ Fans clash in buildup to second... http://t.co/sKVNmtZGeG,1
+8240,riot,,"@JWalkerLyle Discovered by @NickCannon
+ Listen/Buy @realmandyrain #RIOT on @iTunesMusic @iTunes https://t.co/dehMym5lpk Û_ #BlowMandyUp",0
+8241,riot,"San Francisco, CA",? Cracker - White Riot ? http://t.co/Cc7D0wxk0M #nowplaying,0
+8242,rioting,hertfordshire.,But the government will not care. Police will stop rioting eventually of protestors. Eventually some skyscrapers become plant-covered .,1
+8243,rioting,Dublin,New doco tonight at 9pm Setanta Sports Ireland freeview. The largest police presence at a soccer game in Ireland stop prevent the rioting,0
+8244,rioting,,Eric Clapton shot the sheriff in 1974 and guess how many people were rioting? Right none.,1
+8245,rioting,Spare 'Oom,if they kill off Val I'm rioting #Emmerdale,0
+8246,rioting,SURROUNDED BY WEEABOOS,'Money can't buy happiness' is just a lie we tell poor people to keep them from rioting.,1
+8247,rioting,,Bloody hell it's already been upgraded to 'rioting'. #hyperbole #saintsfc,1
+8250,rioting,Australia,Twitter is doing a count down to the rioting and financial collapse of Brazil #Rio2016 http://t.co/9mtrq5Jf4d,1
+8251,rioting,,if that would of been a black dude Antioch would be rioting,0
+8252,rioting,NYC,".@runjewels recently met with the @BBC to discuss race relations in America & the benefits of rioting. #LoveIsLove
+https://t.co/6Ce1vwOVHs",0
+8253,rioting,Vidalia GA,@Reuters people like you should be charged after the inevitable rioting for contributing to it with your lies,0
+8254,rioting,"Vista, CA",http://t.co/wspuXOrEWb Cindy Noonan@CindyNoonan-Heartbreak in #Baltimore #Rioting #YAHIstorical #UndergroundRailraod,1
+8256,rioting,Serva Fidem,Leeds fan.... rioting in Embra at a lower tier/ league cup final ... dee dum,1
+8257,rioting,,Still rioting in a couple of hours left until I have to be up for class.,1
+8258,rioting,"Bellville, Ohio",@CloydRivers there were plenty of black people rioting when tOSU won the championship as well.,0
+8259,rioting,trapped in America,"@evacide The Ferguson RIOTS worked. This of this the next time you say RIOTING doesn't change anything.
+
+There fixed it for you.",1
+8261,rioting,A little house in the outback.,`bbcnews The Ass. of British Insurers says rioting will cost insurers £163;millions. But police numbers are reduced by blind fat contr,1
+8262,rioting,tri state,#BHRAMABULL Watch Run The Jewels Use Facts to Defend Rioting in Ferguson: The socially minded duo takes on the... http://t.co/Ld5P1sIa2N,1
+8264,rioting,Upstate New York,I think Twitter was invented to keep us insomniacs from rioting in the wee small hours.,0
+8266,rioting,,@BLutz10 People aren't rioting because justice has been served and that murderer is behind bars. Simple! No justice=no peace Justice=peace.,1
+8267,rioting,,Still rioting in to Gmail...,0
+8270,rioting,"Scotland, United Kingdom",@jasalhad @brianboru67 @Jimskiv92 @hijinks1967 Rioting.,1
+8271,rioting,,@RyleeDowns02 @nevaehburton33 if I don't get my money by tomorrow rioting ??,0
+8274,rioting,,RT : Why Sweden Isn't Venezuela: There have been a few days of rioting in Venezuela with the riots directed at grÛ_ http://t.co/GJfd85vuf2,1
+8276,rioting,Chicora ?? Oakland,@davidolszak or the rioting in happy valley after penn state loses?,0
+8278,rioting,,@aelinrhee a group of mascara smeared girls rioting will be horrific I think,1
+8279,rioting,,The last time a high profile name was due to be signing for #nffc the City was rioting! Wesley Verhoek now a household name! #don'tpanic,1
+8280,rioting,"heart of darkness, unholy ?",@Georgous__ what alternatives? Legal alternatives? Protesting? Rioting may not be the most peaceful thing but it's a demonstration of how,0
+8283,rioting,"Colonial Heights, VA",@halljh1720. I am so sick of criminals parents and friends rioting when they are killed by police. You don't give a Damn when officer is.,1
+8284,rioting,,@BLutz10 But the rioting began prior to the decision for the indictment so you're not really making sense at this pointÛ_,1
+8285,rioting,India,The Ashes Test match is currently more interesting than stupid Congress rioting...,1
+8286,rioting,The Weird Part of Wonderland,"people rioting everywhere and I think I'd be one of them.'
+
+Usami-san <3",1
+8287,rioting,,Football hooligan jailed for rioting before game in Scotland was already banned from matches in England #UkNews http://t.co/q5mp2Q6Hy8,1
+8288,rioting,Alabama,http://t.co/jMzcaqyDfa Cindy Noonan@CindyNoonan-Heartbreak in #Baltimore #Rioting #YAHIstorical #UndergroundRailraod,0
+8289,rioting,A little house in the outback.,AM `bbcnews The Ass British Insurers says rioting will cost insurers163;millions. But police numbers are reduced by blind fat controllers.,1
+8291,rioting,Cassadaga Florida,@fa07af174a71408 I have lived & my family have lived in countries where looters were shot on sight where rioting wasn't tolerated. Why here,1
+8292,rubble,"Columbus, Georgia",'Refuse to let my life be reduced to rubble. When the shit keeps piling up get a shovel.' @ExpireHC,0
+8294,rubble,"Minna, Nigeria",China's Stock Market Crash: Are There Gems In The Rubble?: ChinaÛªs stock market crash this su... http://t.co/KABK3tcJNL ... via @Forbes,0
+8295,rubble,,'If you go on with this nuclear arms race all you are going to do is make the rubble bounce.' ? Winston Churchill,0
+8296,rubble,,@accionempresa ChinaÛªs stock market crash this summer has sparked interest from bargain hunt... http://t.co/s0Eyq1wEHE @gerenciatodos å¨,1
+8297,rubble,,@accionempresa ChinaÛªs stock market crash this summer has sparked interest from bargain hunt... http://t.co/gO0pkrFzMF @gerenciatodos å¨,0
+8298,rubble,,My parents are so impulsive sometimes. I remember coming home to my room filled with dust & rubble just because they wanted it redesigned. ??,0
+8300,rubble,,"Turning rubble from disasters into 'Lego' bricks you can build houses with. This one belongs in #crazyideascollege
+http://t.co/dh0s4bUuK7",0
+8301,rubble,"Accra,Ghana",#360WiseNews : China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/eaTFro3d5x,0
+8304,rubble,World,[FORBES]: China's Stock Market Crash: Are There Gems In The Rubble?: ChinaÛªs stock market crash this summer ha... http://t.co/Q4grDpAjr5,0
+8309,rubble,"Dubai, UAE",#forbes #europe China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/C0SlAbBP7j,1
+8310,rubble,,ChinaÛªs stock market crash this summer has sparked interest from bargain hunters and bulls betting on a rebound. DÛ_ http://t.co/1yggZziZ9o,0
+8311,rubble,Phoenix Az,@JasonPope2 @JohnFugelsang again I didn't say it was. I was referring to the main 2 buildings. 7 was hit by rubble,1
+8312,rubble,Italy,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/3PBFyJx0yA,0
+8314,rubble,London,#360WiseNews : China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/9Naw3QOQOL,1
+8315,rubble,,Jun 2015. Yemenis search for survivors under the rubble of houses in the old city of SanÛªa following an... http://t.co/11JUzHlgmT,1
+8317,rubble,ON,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/j4ggmKINEy #forbesasia,1
+8318,rubble,"St. Louis, MO",Steve Buscemi was a firefightr B4 fame & workd 12hr shifts diggin thru WTC rubble lookg 4 survivors. http://t.co/L9fJpNSZuO,1
+8320,rubble,United States,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/o6oNSjHCsD #tcot #p2 #news,0
+8321,rubble,Spain - China - Latin America.,China's Stock Market Crash: Are There Gems In The Rubble?: ChinaÛªs stock market crash this summer h... http://t.co/pE2R3lN16o by .Forbes,0
+8324,rubble,"Chester, IL",I found a diamond in the rubble,0
+8329,rubble,West Africa,#TNN: China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/9LO0hZwJPZ,1
+8330,rubble,"Calgary, AB, Canada",China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/BqBLWiw08g #ROIMentor #yycwalks,1
+8332,rubble,California,China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/Ox3qb15LWQ | https://t.co/8u07FoqjzW http://t.co/tg5fQc8zEY,0
+8334,rubble,Made Here In Detroit ,#360WiseNews : China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/aOd2ftBMGU,1
+8335,rubble,"Portland, OR",New post: 'China's Stock Market Crash: Are There Gems In The Rubble?' http://t.co/6CaDRhIOxp,0
+8337,rubble,,China's Stock Market Crash: Are There Gems In The Rubble?: ChinaÛªs stock market crash this summer has sparked ... http://t.co/2OqSGZqlbz,0
+8339,rubble,"Dallas, Tejas",Photo: postapocalypticflimflam: Prodding around the rubble. http://t.co/Bgy4i47j70,0
+8341,rubble,"ATLANTA , GEORGIA ",#360WiseNews : China's Stock Market Crash: Are There Gems In The Rubble? http://t.co/gQskwqZuUl,0
+8344,ruin,| CA Û¢ GA |,@okgabby_ damn suh. don't let that ruin your year bruh. this our year. better start carpooling like we did back in the day,0
+8345,ruin,"Nashville, TN",If I can't ruin his mood then I may have lost my direction. https://t.co/sLc27EMUgM,0
+8346,ruin,,I ruin everything ????,0
+8347,ruin,Depok,#quote Never let your problems ruin your faith.,0
+8348,ruin,London / Birmingham,Im so anxious though because so many ppl will me watching me meet them and that makes me uncomfortable BUT I CANT LET THAT RUIN THE MOMENT,0
+8349,ruin,texas,smokers that ruin that new car smell ????,0
+8350,ruin,"Yulee, FL",@ChrisDyson16 Just wait until your friends at #MTA ruin it #Sorrybutitstrue,0
+8351,ruin,austin tx,i'm really sad about red 7 closing :( yuppies n tourists ruin everything,0
+8352,ruin,,Always gotta ruin my mood,0
+8355,ruin,,I understand you wanting to hang out with your guy friends I'll give you your space but don't ruin my trust with you.,0
+8356,ruin,Garrett,like why on earth would you want anybody to be unhappy don't purposely ruin somebody else's happiness,0
+8360,ruin,followurDREAMS(& my instagram),fresh out da shower lookss ?? (still loving this new hair does it ruin my brand?) #yes https://t.co/T2Kk8fya77,0
+8361,ruin,,@savannahross_4 see tryna ruin my life,0
+8362,ruin,sheffield // rotherham,well done me! everyone applaud me and how terrific i am and how i never ruin anything,0
+8363,ruin,"Wailuku, Maui",Four Things That May Ruin Your Personal Injury Accident Claim http://t.co/ZU9YYdF5DI,1
+8364,ruin,,How to ruin the holidays in 3 wordk: 'It's a Zmne!',0
+8365,ruin,"Lima, OH",every time I have a really good day someone just has to ruin it,0
+8366,ruin,"Long Beach, CA",You wanna ruin a relationship? Just ask 'what are your intentions' and you'll do it,0
+8367,ruin,Belfast,And then I go a ruin it all with something awful... #minions http://t.co/rc6eeJME17,0
+8368,ruin,fujo garbage heaven ,IT WAS REALLY AWFUL AND I CANT EVEN WORK WITH A MAKE UP ARTIST NOW BECAUSE THEY WILL RUIN THINGS.,0
+8369,ruin,New York - Connecticut,Damn Wale knows how to ruin a song??,0
+8370,ruin,,'Cause you play me like a symphony play me till your fingers bleed. I'm your greatest masterpiece. You ruin me??,0
+8371,ruin,snapchat~ maddzz_babby ,Why does my family have to ruin something that is actually going good for me??,0
+8372,ruin,"2,360 miles away",I hate that Im so awkward and I ruin things,0
+8374,ruin,,Long Road To Ruin - Foo Fighters,0
+8375,ruin,"Winnipeg, Manitoba",Why do u ruin everything? @9tarbox u ruined the sour cream and u put a brick of cheese in the freezer..dummy,0
+8377,ruin,,Don't let a few assholes ruin your night,0
+8378,ruin,Boston,Lol The real issue is the the way the NFL is trying to ruin this guy's legacy. https://t.co/s107ee7CYC,0
+8382,ruin,Florida Forever,RT to ruin @connormidd 's day. http://t.co/krsy54XMMC,0
+8383,ruin,"Sacramento, CA",Greedy bastards @Fullscreen way to ruin creativity. CENSORSHIP ON YOUTUBE: https://t.co/nMtlpO4B58,0
+8385,ruin,#RedSoxNation,@JulieChen she shouldn't. Being with them is gonna ruin her game and Vanessa is a great player,0
+8386,ruin,MNL,@clnv_ Yes Yes! I will. I dont wanna ruin my life. Lol,0
+8387,ruin,youtube.com/channel/UCHWTLC9B4ZjUGh7yDlb55Iw,@nbc I wanna see you reboot The Fresh Prince of Bel-Air bring back the original cast and everything & do nothing that will ruin the show.,0
+8388,ruin,,You can only make yourself happy. Fuck those tryna ruin it keep smiling ??,0
+8389,ruin,CA ??DC,there are a few people I'd let ruin my life my soul my cervix my everything. Odell is definitely top of that list.,0
+8390,ruin,"Des Moines, IA",I'll ruin my life if I have to.,0
+8391,ruin,"MÌ©rida, YucatÌÁn",babe I'm gonna ruin you if you let me stay,0
+8392,sandstorm,"Scituate, MA",@CTAZtrophe31 Everything must be OK because she's listening to 'Sandstorm' now...,0
+8393,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/mkWyvM3i8r,1
+8394,sandstorm,,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/aZL4XydvzK,1
+8396,sandstorm,United States,@Hienshi @Gbay99 it wouldnt turn into a sandstorm if riot gave a good answer. Instead they gave dumb excuses. At least new client is there,0
+8397,sandstorm,,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/Z2Ph0ArzYI,1
+8399,sandstorm,United States,I liked a @YouTube video http://t.co/xR3xJJ8gJB Darude - Sandstorm,0
+8400,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/brctMNybjy,1
+8401,sandstorm,hkXfYMhEx,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/NX2d83A4Du,1
+8402,sandstorm,US,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/GaotrG4mTr,1
+8404,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/rkU0IDM6aQ,1
+8405,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/7IJlZ6BcSP,1
+8406,sandstorm,,A sandstorm in Jordan has coated the Middle EastÛªs largest refugee camp in a layer of grit http://t.co/hVJmuuaLXV http://t.co/T8Nz6h9Zz4,1
+8408,sandstorm,"Hamilton County, IN",SANDSTORM!!! WOO HOO!!,1
+8409,sandstorm,United States,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/VZPKn23RX4,1
+8410,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/Rm50vCVjsh,1
+8411,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/1tr2KvXCTW,1
+8412,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/Q0X7e84R4e,1
+8414,sandstorm,,Who need friends when there's booze and Darude - Sandstorm :D,0
+8415,sandstorm,Dakar,SocialWOTS: GLOBI_inclusion: RT NRC_MiddleEast: Sandstorm engulfs caravans and tents in the #Zaatari refugee camp Û_ http://t.co/XBNLSBzzgI,1
+8416,sandstorm,United States,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/H84R1TIh8J,1
+8418,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/sEquWmvFx4,1
+8419,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/akNyNPv461,1
+8422,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/C9t2F6DLtM,1
+8423,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/xSZicdWxq0,1
+8425,sandstorm,In your head,@SunderCR two hours of Sandstorm remixes. All merged together. No between-song silence.,0
+8428,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/qr6BtDCqCj,1
+8429,sandstorm,,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/wD9ODwjj9L,1
+8430,sandstorm,"North Carolina, USA",PUT SANDSTORM DOWN!!!! https://t.co/EfKCoegJck,0
+8431,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/87H5MbA3N1,1
+8432,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/8L4RFFZD0P,1
+8433,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/TvYQczGJdy,1
+8434,sandstorm,WA State,"Come out to Sandstorm tryouts Aug 15th at Lower Woodland!
+MS Tryout: 3-4:30pm
+HS Tryout: 4:30-6pm",1
+8435,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/BB7TTdVJWE,1
+8436,sandstorm,"The Sanctuary Network, Rome",@VillicanaAlicia [[Is it Darude Sandstorm?]],0
+8437,sandstorm,Tractor land aka Bristol,I can't listen to Darude Sandstorm without expecting airhorns now,0
+8440,sandstorm,,Now playing: Darude - Sandstorm - radio edit http://t.co/DUdAIrBBPo http://t.co/padosfyXnM,0
+8441,sandstorm,USA,Watch This Airport Get Swallowed Up By A Sandstorm In Under A Minute http://t.co/bgM4cSrbVd,1
+8443,screamed,,I slammed my phone to the ground and then screamed ahahahga,0
+8444,screamed,Adventuring in Narnia,@InfiniteGrace7 I just screamed to the world how much I love My Little Pony ??,0
+8445,screamed,,Update: The police seemed like nice enough people. I felt bad when I transformed and they screamed... Don't worry they're only unconscious.,0
+8446,screamed,,someone's gonna get screamed at for getting the lyrics wrong lmao,0
+8447,screamed,,I JUST SCREAMED SIDJSJDJEKDJSKDJD . I CANT STAND YOU ?? https://t.co/0Vcsafx9bY,0
+8448,screamed,Asgard,@GodOf_Mischief_ -of Loki's daggers she pulled it out and jammed it into Mina's thigh. When Mina screamed and grabbed at her leg sif-,1
+8450,screamed,"San Diego, CA","OMFG??
+Didnt expect Drag Me Down to be the first song Pandora played
+
+OMFG I SCREAMED SO LOUD
+My coworker is scared http://t.co/VzcvAdkcQp",1
+8451,screamed,Unite. Bless. Wallahi ,She screamed when she got the microchip needle. Tbh I would have cried too the needle was massive ya haram,0
+8452,screamed,,I heard the steven universe theme song from upstairs and screamed his name at the part of the song and scared my cousin,0
+8453,screamed,sneaking glances at Thancred,@mogacola @zamtriossu i screamed after hitting tweet,0
+8454,screamed,ljp/4,THE GIRLS NEXT TO ME SCREAMED WHAT THE FUCK IS A CHONCE I'm CRYIBG,0
+8455,screamed,"Charlotte, North Carolina",I thought the loudest goal I ever screamed was Higuain's offside goal against Germany,0
+8457,screamed,,I ran with earbuds in which I now realize means I probably didn't politely say hi to Jared but more or less screamed at him ??????,0
+8458,screamed,,I just got screamed at for asking my dad to move half a step so I could get through....,0
+8459,screamed,Nirvana,@CortezEra I dead ass screamed when we signed him I couldn't fucking believe it,0
+8461,screamed,,don't stop believing just came on the radio at this restaurant and a lil white bit screamed 'it's mommys song',0
+8463,screamed,ny,brooke just face timed me at the concert and just screamed for 2 minutes straight,0
+8464,screamed,Mentor OH,*wants to make tweet about how much I dislike todays femnism movement but doesn't want to be screamed at' http://t.co/R7pVTSdUmA,0
+8468,screamed,"Trumann, Arkansas",26 people have screamed right in my ear this week at camp. TWENTY-SIX! And we still have 1/2 day left. #CedarGlade2015,0
+8471,screamed,18 Û¢ CC,Some kids going to leadership camp came into my work today asking for the bathroom and my inner ASB kid screamed a lot. I miss camp ??,0
+8472,screamed,"North Carolina, USA",Vacation update: my great aunt just killed a spider with her bare hand after I screamed in fear. #fierce,1
+8473,screamed,,Not because i want to cheat or anything. Just feels good to vent to my twitter without a txt being screamed at lol,0
+8475,screamed,,i'm sorry i'm so wild in 1d shows like in my wwa show niall started singing steal my girl I literally screamed shut the fuck up,0
+8476,screamed,1D | 5SOS | AG,I JUST SCREAMED IN 57 LANGUAGES THIS IS SO GOOD https://t.co/ldjet9tfMk,0
+8477,screamed,PA.USA,I SCREAMED AT THE END OAMSGAJAGAHAHAH IM LAIGHIGN #OTRAMETLIFE http://t.co/eTkBW1RCrv,0
+8478,screamed,"m3, k, a, d",I have never screamed so loud https://t.co/PC3h1NE4G0,0
+8480,screamed,pissing off antis,I SCREAMED 'WHATS A CHONCe' http://t.co/GXYivsWki7,0
+8483,screamed,'SAN ANTONIOOOOO',@Real_Liam_Payne I SCREAMED AT THE TOP OF MY LUNGS WHEN YOU SAID YOU GUYS WOULD COME BACK TO S.A SO KEEP YOUR PROMISE #AddTexasToNext1DTour,0
+8484,screamed,,@ThatWitchEm @EmmaChosenOne @JessieNovoaRP @Jessie_Novoa_ @Liana_Novoa why you screamed,0
+8486,screamed,sisterhood,@ArianaGrande I literally walked out of the concert and screamed MY SOUL HAS BEEN BLESSED,0
+8487,screamed,3000 miles from everyone,I just screamed what the fuck is a hond,0
+8489,screamed,livin in a plastic world,I JUST SCREAMED @toddyrockstar http://t.co/JDtPirnm76,1
+8490,screamed,with Doflamingo,//kinda screamed >_< https://t.co/MSUY4qTPk9,0
+8491,screamed,,i dont even remember slsp happening i just remember being like wtf and then the lights turned off and everyone screamed for the encore,0
+8494,screaming,,Love waking up to my dad screaming at me ??????,0
+8496,screaming,,If you are quiet enough you can literally hear the phandom screaming at the tyler tweet,0
+8497,screaming,"21, Porto",I'M SCREAMING AND FANGIRLING OH MY GOD https://t.co/WdVQlEWYBs,0
+8498,screaming,access to njh/5 and cth/4,during drag me down last night I was screaming 'shell of a mannequin' instead of 'shell of a man' and I think everyone hated me there,0
+8500,screaming,tx,@camilacabello97 Internally and externally screaming,1
+8502,screaming,,*CUE THE JARIANA STANS SCREAMING,0
+8503,screaming,,@BizzleMahomie SCREAMING,0
+8504,screaming,tx,@camilacabello97 NOW IM INTERNALLY SCREAMING,0
+8505,screaming,Massachusetts ,@estellasrevenge the first time i went swiming in it i was basically screaming WHY DOES IT SMELL/TASTE SO BAD,0
+8506,screaming,rio de janeiro | brazil,SCREAMING @MariahCarey @ArianaGrande http://t.co/xxZD1nmb1i,0
+8507,screaming,,Lhh silent screaming was mastered https://t.co/BIexWDlDWC,0
+8508,screaming,"Moore, OK",@noahshack he's hot & he can sing I'm screaming??????,0
+8509,screaming,Û¢OlderCandyBloomÛ¢,/ it's fine baby I was screaming at the TV x https://t.co/JwDfPYG3NT,0
+8510,screaming,,"Harshness Follows Us a
+Better Day
+by Sarah C
+Racing thoughts with screaming sirens
+Pacing back and forth for... http://t.co/ProNtOuo91",0
+8511,screaming,Justin and Ariana follow,MY FAVS I'M SCREAMING SO FUCKING LOUD http://t.co/cP7c1cH0ZU,0
+8512,screaming,[@blackparavde is my frankie],@tyleroakley IM SCREAMING,0
+8513,screaming,Daddy Kink Central,@Scalpium SCREAMING,0
+8514,screaming,,CAMILA'S DOING A FOLLOW SPREE TONIGHT IM SCREAMING OF HAPPINESS,0
+8515,screaming,"Wakefield, West Yorkshire",@stvmlly Sorry for screaming at you and @Safferoonicle from the car I just kinda 'I KNOW THOSE PEOPLE LET'S YELL!' :/,0
+8516,screaming,Pittsburgh,My Dad a screaming coach always gave his vocal chords quite the workout on the field. http://t.co/axVQ80RbYJ #FunnyDadCoach,0
+8517,screaming,Namjoon's pants,'[+54 -9] How do people not know who Kendall Jenner is? She has 6 times the Instagram followers of GD' SCREAMING LMAO,0
+8518,screaming,"Mogadishu, New Jersey",@MissDaOh and if she had a screaming baby you would have loved that so much more,0
+8520,screaming,All around the world,@ArianaGrande @justinbieber I'M SCREAMING OMG #IDOLS #22DAYS #WDYM,0
+8522,screaming, Jariana Town,@justinbieber @ArianaGrande Can you hear me screaming !!!!!,0
+8523,screaming,NYC,@KamKasteIIano @BluntedJayt FUCKING SCREAMING !,0
+8524,screaming,Honeymoon ̣ve.,@ArianaGrande @justinbieber All the loves be screaming at this one ??????,0
+8526,screaming,"Aveiro, Portugal","Hey there lonely girl
+Did you have to tell your friends
+About the way I got you screaming my name?",0
+8528,screaming,,"#NoChillLukeHammings
+IM SCREAMING",1
+8530,screaming,,@danisnotonfire if you follow me I will go into town and advertise your youtube channel by screaming and walking around with a sign. Pls??,0
+8531,screaming,justin & ari follow || tvd,@justinbieber @ArianaGrande SCREAMING,0
+8533,screaming,UK,@blanksocietyx @emmerdale IM SCREAMING HES MY FAVOURITE,0
+8536,screaming,,@justinbieber @ArianaGrande IM SCREAMING,0
+8538,screaming,9/1/13,SCREAMING IN 22 DIFFERENT LANGUAGES http://t.co/rDfaAKKbNJ,0
+8539,screaming,JDB/LJC/AGB/TW/PLL,@justinbieber I AM SCREAMING HELL YES AHHHH OMG http://t.co/y678XsNvJ6,0
+8540,screaming,nap queen,like little boy you better sit your ass down stop screaming at my mother stop pulling your hair & crying like a 3 year old & grow tf up,0
+8541,screaming,amsterdayum 120615 062415,@ArianaGrande @justinbieber OMGGGG IM SCREAMING,0
+8542,screams,lesa * she/her,@TromboneTristan OOOOOHSHIT OOOHSHIT SCREAMS hell I LOVE,0
+8543,screams,Griffin :3,@DaneMillar1 *screams 666*,0
+8545,screams,xiumin's nonexistent solos,//screams in the distance// http://t.co/Cfe9HUQN0h,1
+8546,screams,,When you on the phone and @Worstoverdose screams 'jaileens caked up on the phone' so everyone looks at you ????????????,0
+8547,screams,marvel | books | hp | tmr,*screams in 25 different languages*,0
+8550,screams,"Pennsylvania, USA",*screams internally*,0
+8551,screams,blackfalds.,*screams* http://t.co/PU7C4Hhbxj,0
+8553,screams,"San Juan, Puerto Rico",@HimeRuisu I'm going to ram your ass so hard I'll have to shove your face on the pillows to muffle your screams of pain and pleasure~,0
+8555,screams,,I come downstairs trying to look as normal as possible in front of my mom and Rhiannon screams 'HUNGOVER???? Huh???' Uhmmmm no ????????,0
+8556,screams,New Jersey,He hit a tailor fucking made double play and Kay screams he was robbed of a hit.,0
+8557,screams,,"Apparently my face screams
+'Get me emotionally attached and then cheat on me'",0
+8558,screams,Freddy Fazbears pizzeria,@drag0nking0201 *Screams*don't scare me and its Animatronics,0
+8559,screams,,Gets on battlefield 3 screams into Mic at cunts,0
+8560,screams,BrasÌ_lia,~Still echoes of their screams~,0
+8561,screams,POFFIN,in every bts song jimin screams,0
+8562,screams,#Gladiator Û¢860Û¢757Û¢,Casually on the phone with Jasmine while she cries and screams about a spider,0
+8567,screams,W.I.T.S Academy,@RealJaxClone *screams*,0
+8570,screams,,"IS THE UPDATE RLY LIFE NOW IS IT IS It/Screams
+vibrates i cant handle",0
+8571,screams,Where ever i please,"@saku_uchiha_ @Ya_Boi_Luke
+
+Screams and gets a face full of Saku genitals",0
+8572,screams,,@heyot6 Im not home. I need to watch. [Screams],0
+8574,screams,,In light of recent events all I would like to say is *screams for five years*,0
+8575,screams,,So @LawsonOfficial just followed me and I cannot contain my screams of joy! #Thankyou! ??????????,0
+8576,screams,,@4Tiles @ZacB_ my dell tablet screams with win10,0
+8577,screams,"Melbourne, Australia.",@OllyMursAus I do feel sorry for him! He is not a piece of meat! He is a nice guy... People don't need to rush him and screams in his face!,1
+8578,screams,Sheffield/Leeds,I agree with certain cultural appropriation things but honestly if u looked at my house it screams appropriation bc Buddhas and stuff-,1
+8579,screams,PLFD cuh..,This Looney Tunes-Blake Griffin commercial screams their making a Space Jam 2,0
+8580,screams,lost in history,"SCREAMS. WHERE IS EVERYONE.
+
+oh wait school
+
+ok
+
+im ok",0
+8581,screams,"Ontario, Canada",Aw man. 'Apollo Crews' just screams 'we can't think of a name for this black guy quick name some and mash them together',0
+8582,screams,,@QueenWendy_ go to sleep before someone screams at us??????,0
+8584,screams,5-Feb,When you go to a concert and someone screams in your ear... Does it look like I wanna loose my hearing anytime soon???,1
+8585,screams,United States,@wisdc & obama supports death2USA .. http://t.co/serARcNrbY,0
+8586,screams,"Florida, USA",The little girl next to me sees the spot lights in the sky and screams ' mom! Look I see Angels in the sky!' ????,1
+8587,screams,labyrinthia,@harveymaine AAAA ok lemme move to another roomr so no one hears my gay ass screams,0
+8589,screams,??+ ... ??+,* Screams *,0
+8591,screams,texas,SCREAMS AT MY OWN MOTHER http://t.co/gBEpdi0WzT,0
+8595,seismic,garowe puntland somalia,Oil and Gas Exploration http://t.co/PckF0nl2yN,1
+8596,seismic,"Oakland, CA",Man is reading a list of famous musicians who oppose nuclear power...wow powerful evidence. They must know a lot about seismic risks....,0
+8598,seismic,,SEISMIC RISK: a COMPARISON between 2 case studies: CALABRIA AND MALTA http://t.co/HmRtqEykyI,1
+8599,seismic,Third rock from the Sun,@hebrooon u better learn derivative of formula seismic rather than thinking about things like that or you are a things like that? Haha,0
+8606,seismic,Lives in London,Exploration takes seismic shift in #Gabon to #Somalia http://t.co/kLtIt88AS3,1
+8607,seismic,,29% of #oil and #gas organizations have no real-time insight on #cyber threats. See how #EY can help http://t.co/qamgvQAFzc,0
+8608,seismic,Somalia,Exploration takes seismic shift in Gabon to Somalia - WorldOil (subscription) http://t.co/kqVEVuutDJ #??????? #Somalia,0
+8609,seismic,,The 08/06/2015 AlabamaQuake seismic summary w/ #earthquake #news & history http://t.co/zM6VcZqvWk http://t.co/DKNlZNom6n,1
+8610,seismic,"Lakewood, Tennessee",'Seismic' Apple TV service to stream 25 channels across all d... http://t.co/zqMtrBKaS0 | https://t.co/YEqq3BZX3g http://t.co/kmVrZaSXY4,0
+8612,seismic,Smash Manor/Kanto,@marek1330 *Zar cringes at the blows but doesn't let Marek go* *He uses Seismic Toss,0
+8613,seismic,,SEISMIC AUDIO SA-15T SA15T Padded Black Speaker COVERS (2) - Qty of 1 = 1 Pair! http://t.co/2jbIbeib9G http://t.co/p5KtaqW5QG,0
+8615,seismic,,#Sismo DETECTADO #JapÌ_n [Report 1] 01:01:56 Okinawa Island region M4.0 Depth 10km Maximum seismic intensity 3 JST #??,1
+8618,seismic,,ON THE USE OF PERFORATED METAL SHEAR PANEL SFOR SEISMIC-RESISTANT APPLICATIONS http://t.co/cX5OjH2Dr4,0
+8620,seismic,??????,[Report 5] 18:22:45 Ibaraki Prefecture offing M5.5 Depth 60km Maximum seismic intensity 4 #Earthquake,1
+8621,seismic,,Thanks Benson & Clegg for the #follow! Check out our #maps at http://t.co/btdjGWeKqx,0
+8622,seismic,,On Thursday at 00:25 we updated our #kml of 2D and 3D #seismic exploration vessels. #offshore #oil http://t.co/btdjGWeKqx,0
+8623,seismic,Somalia,Oil and Gas Exploration Takes Seismic Shift in Gabon to Somalia - Bloomberg http://t.co/bEKrPjnYHs #??????? #Somalia,1
+8624,seismic,"Bokaro Steel City, Jharkhand","@kakajambori ??
+U control the future of india..
+Yor Subject: Exploration or seismic Maintenance( Electrical or Mechanical)",0
+8625,seismic,,#Sismo DETECTADO #JapÌ_n [Report 3] 01:02:17 Okinawa Island region M3.8 Depth 10km Maximum seismic intensity 3 JST #??,1
+8627,seismic,"Hatteras, North Carolina",Agency seeks comments on seismic permits http://t.co/9Vd6x4WDOY,0
+8628,seismic,412 NW 5th Ave. Portland OR,Still no plans? Don't worry we got you covered. Plenty of Seismic IPA and Seismic Squeeze Radler to help... http://t.co/A8nMdkd3rV,0
+8631,seismic,"Madison, Wisconsin, USA",#OilandGas Exploration Takes Seismic Shift in #Gabon to #Somalia http://t.co/oHHolJ9vEV via @business,1
+8633,seismic,"Mogadishu, Somalia","Exploration Takes Seismic Shift in #Gabon to #Somalia
+http://t.co/Ltf6jL5keU http://t.co/Zlq8tHcTkW",1
+8635,seismic,the azure cloud,New post from @SeismicSoftware: 3 Major Challenges of Channel Sales Enablement http://t.co/kWMRCEkVTF,0
+8636,seismic,"Perenjori, WA",Panoramic Resources cuts jobs after seismic event http://t.co/mUwmfJGzYh,1
+8637,seismic,UK,ENGLAND EAST COAST. Dogger Bank Westward. 1. Seismic survey in progress by M/V Western Regent towing a 8400 metre long cable within areaÛ_,0
+8638,seismic,,A subcontractor working for French seismic survey group CGG has been kidnapped in Cairo and is held by Islamic State the company said on WÛ_,1
+8639,seismic,,The Art World's Seismic Shift Back to the Oddball - Observer http://t.co/W0xR5gP8cW,0
+8640,seismic,,#Sismo DETECTADO #JapÌ_n 06:32:43 Miyagi Estimated seismic intensity 0 JST #??,1
+8642,sinkhole,Unknown ,"Sinkhole Selfies: You Wont Believe What's In The Brooklyn Sinkhole!:
+ Sinkhole Selfies: You Wont Belie... http://t.co/A3b5n3rcr5",0
+8643,sinkhole,,MRW when a sinkhole opens up beneath my friends and I... #gif #funny #lol #comedy #iFunny #video #image #RT http://t.co/XiYdYfptru,1
+8644,sinkhole,"Atlanta(ish), GA",Talk on GOZ is fantastic. Most interesting fact so far is that they manually bought all the .ru domains to sinkhole rather than seek co-op.,0
+8646,sinkhole,Trinidad and Tobago,nothing surprises me anymore and i am sure there is more to come... http://t.co/zdpvQmEezS,0
+8647,sinkhole,Above the snake line - #YoNews,Large sinkhole swallows entire pond in Lowndes County Georgia: Large sinkholeÛ_ http://t.co/bCLDQmMEHg #Occasion2B,1
+8648,sinkhole,San Diego,10News ? Water main break disrupts trolley service http://t.co/pAug7a68i0,1
+8650,sinkhole,"Haddonfield, NJ",Sinkhole closes Falmer Drive in Bethlehem Township http://t.co/6TVVlG2fNi,1
+8651,sinkhole,,A sinkhole grows in Brooklyn: six-meter crater swallows street http://t.co/gkPrvzQ6lk,1
+8653,sinkhole,Canada,@Azimel 'Screaming Mad Scientist deceased after tumbling over heels and falling into sinkhole during investigation',0
+8654,sinkhole,NY,Gaping sinkhole opens up in Brooklyn New York http://t.co/0xA6FCjyec,1
+8655,sinkhole,ill yorker,ÛÏ@FDNY: This morning #FDNY responded to a sinkhole in #Brooklyn. Units remain on-scene with @NYCBuildings & others. http://t.co/M78ir0IK01Û,1
+8656,sinkhole,Newcastle,"150-Foot Sinkhole Opens in Lowndes County Residential Area
+WCTV-35 minutes ago",1
+8657,sinkhole,Above the snake line - #YoNews,Large sinkhole swallows entire pond in Lowndes County Georgia http://t.co/wKPzp1JCAu #YoNews,1
+8658,sinkhole,"White Plains, NY",I've been trying to write a theological short story about a monster living in a sinkhole. Then I heard about Brooklyn. #accidentalprophecy,0
+8659,sinkhole,,Sinkhole Selfies: You Wont Believe What's In The Brooklyn Sinkhole! http://t.co/3gLYOyf6Oc,0
+8660,sinkhole,B&B near Alton Towers,@MoorlandsChmbr Loads of stuff going on recently. See the blog at http://t.co/XVcO7sLxhW #sinkhole #piling http://t.co/jbVmGeg522,0
+8661,sinkhole,,150-Foot Sinkhole Opens in Lowndes County Residential Area http://t.co/0YAxrJICRR,1
+8662,sinkhole,Alger-New York-San Francisco,#SanDiego #News Sinkhole Disrupts Downtown Trolley Service: The incident happened Wed... http://t.co/RVMMuT3GvC #Algeria #???????,1
+8663,sinkhole,,beforeitsnews : A sinkhole grows in Brooklyn: six-meter crater swallows street Û_ http://t.co/QWo7q1AMh8) http://t.co/esRkmazEq9,1
+8664,sinkhole,,Massive Sinkhole Emerges In Brooklyn http://t.co/n3Ow73Oasw http://t.co/Gs9bmplbHH,1
+8665,sinkhole,Êwagger!ÌominicanÌ÷,#LoMasVisto THOUSANDS OF HIPSTERS FEARED LOST: Giant Sinkhole Devours Brooklyn Intersectio... http://t.co/qwtk1b2fMC #CadenaDeSeguidores,1
+8667,sinkhole,"Haddonfield, NJ",150-Foot Sinkhole Opens In Lowndes County Residential Area http://t.co/cBAxCuBA0h,1
+8668,sinkhole,USA,Sinkhole Disrupts Downtown Trolley Service #SanDiego - http://t.co/9tb82ZMr2X,1
+8669,sinkhole,,Sinkhole swallows Brooklyn intersection ÛÒ video http://t.co/1yBE5mgZL4 http://t.co/7Zog3DpdU9,1
+8670,sinkhole,hell,i could die by falling in a sinkhole and i'd still be blamed for it,0
+8673,sinkhole,Texas af,Damn that sinkhole on sunset????,1
+8674,sinkhole,San Diego California 92101,Water main break disrupts trolley service http://t.co/kff8ojrZP4 #sandiego http://t.co/JoB4GGtpAl,1
+8676,sinkhole,"San Diego, CA",RT twit_san_diego 'Possible sinkhole disrupts trolley service: A depression in a portion of asphalt in downtown SaÛ_ http://t.co/ANrIOMbHQN',1
+8677,sinkhole,Hinterestland,"Sinkhole Selfies: You Wont Believe What's In The Brooklyn Sinkhole!:
+ Sinkhole Sel... http://t.co/OYY9MGW7HN @hinterestin #funny",0
+8680,sinkhole,"Evansville, IN",Some Evansville residents told to limit water usage due to sinkhole construction: Some Evansville residents haveÛ_ http://t.co/SJNyFszCu1,1
+8681,sinkhole,Greenpoint,@DavidCovucci We can't because a sinkhole swallowed every taco place in the neighborhood,0
+8683,sinkhole,In the potters hands,Sinkhole on west side damaging cars via @WEWS http://t.co/S7grbZNwlr,1
+8684,sinkhole,"Haddonfield, NJ",Georgia sinkhole closes road swallows whole pond http://t.co/cPEQv52LNA,1
+8685,sinkhole,"ÌÏT: 42.910975,-78.865828",Does that sewer look like it's sinking to you? Is this what happens pre-sinkhole???? and I'm going insane http://t.co/heIekfcHdM,0
+8686,sinkhole,Newcastle,"Sinkhole leaking sewage opens in housing estate
+Irish Independent-3 Aug 2015",1
+8688,sinkhole,,A random hole just broke out in the street ?? http://t.co/dWU8QqYs0v,0
+8689,sinkhole,"San Diego, CA",#MTSAlert Orange & Blue Line riders: Expect delays downtown due to a sinkhole that's developed in the vicinity of 4th & C Street.,1
+8690,sinkhole,,There's a sinkhole in Brooklyn ?!,1
+8691,sinkhole,,Share Large sinkhole swallows entire pond in Lowndes County Georgia A largeÛ_ http://t.co/HvBJ30aj9s #YoNews,1
+8692,sinking,"Cypress, CA 90630",Do you feel like you are sinking in low self-image? Take the quiz: http://t.co/JvjALYg2n1 http://t.co/qXMWELJbc0,0
+8693,sinking,Sacramento,After a Few Years Afloat Pension Plans Start Sinking Again http://t.co/4cEEuzWHvf,1
+8694,sinking,,Do you feel like you are sinking in unhappiness? Take the quiz: http://t.co/OrJb3j803F http://t.co/MWdHXYfrag,0
+8695,sinking,"Vancouver, British Columbia",With a sinking music video tv career Brooke Hogan should be THANKING her Dad for the free publicity...although I doubt it will help her.,0
+8696,sinking,,@supernovalester I feel so bad for them. I can literally feel that feeling of your heart sinking bc you didn't get anyone ugh jfc,0
+8697,sinking,North East Unsigned Radio,#nowplaying Sinking Fast - Now or Never on North East Unsigned Radio listen at http://t.co/QymAlttvZp,0
+8698,sinking,Every Where in the World,that horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time,1
+8699,sinking,Memphis,Nigga car sinking but he snapping it up for fox 13. #priorities http://t.co/9StLKH59Fb,0
+8700,sinking,,@abandonedpics You should delete this one it's not an abbandoned nor sinking. ThatÛªs the darsena of the Castello scaligero di Sirmione.,0
+8702,sinking,,that horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time,0
+8704,sinking,,4 equipment ego break upon dig your family internet hoke excepting versus a sinking term: dfLJEV,1
+8705,sinking,,Currency transgress before payday-prison ward sinking-fund payment unsecured loan: jBUmZQpK,0
+8706,sinking,,?that horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time,0
+8708,sinking,,If you're lost and alone or you're sinking like a stone carry onnnn,0
+8709,sinking,"Fountain Valley, CA",Lying Clinton sinking! Donald Trump singing: Let's Make America Great Again! https://t.co/zv60cHjclF,0
+8710,sinking,Canada,"@AP
+ Too slow report the sinking boat in the Mediterranean sea what a shame",1
+8711,sinking,,We walk the plank of a sinking ship,0
+8712,sinking,,The Sinking Ship (@sinkingshipindy): Scarlet Lane Lenore is on replacing Stone Saison (@StoneBrewingCo),0
+8714,sinking,,that horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time,0
+8715,sinking,,In the movie 'Titanic' Jack and Rose both could have stayed on the wooden beam without it sinking.,0
+8717,sinking,"Michigan, USA",Û¢Û¢If your lost & alone or your sinking like a stone carry onå¡å¡,0
+8718,sinking,,If there's a chance will get a gander of the sinking ship that is #TNA too. Can't help but appease my morbid curiosity. #DestinationIMPACT,0
+8720,sinking,"Sacramento, CA",So happy to be exercised of the demon of @ATT. Price kept rising service kept sinking. #goodbye,0
+8721,sinking,Liverpool,Do you feel like you are sinking in low self-image? Take the quiz: http://t.co/bJoJVM0pjX http://t.co/wHOc7LHb5F,1
+8722,sinking,Haarlem,INVESTMENT NEWS Keurig Green Mountain Inc. Third-Quarter Earnings: Shares Sinking After-Hours - Stocks in the NewÛ_ http://t.co/GtdNW1SpVi,0
+8723,sinking,,@WCCORosen did Lloyds of London insure your bet with @CoryCove #sinking #twins,0
+8724,sinking,Queensland,Sinking the Slipper or Putting the Boot In http://t.co/b1bx0ERuep,0
+8726,sinking,HOMRA.,"In your eyes I see the hope
+I once knew.
+I'm sinking.
+I'm sinking
+away from you.
+Don't turn around
+you'll see...
+
+You can make it.",0
+8727,sinking,,That horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time.,0
+8728,sinking,"Ciudad AutÌ_noma de Buenos Aires, Argentina",'I'm sinking down in the darkest dream so deep so cold this pain inside of me my love for you is more dan I can bear' Jota Esse??,0
+8729,sinking,,Sinking carb consultative assembly plans could subconscious self live straight a leading way of escape: XkDrx,0
+8732,sinking,"Not where I want to be, yet",This is Lara she likes sinking her teeth into my flesh and clawing my arms ?????? http://t.co/J43NWkX0X3,0
+8733,sinking,London,Spent too many hours sinking into the wonderfully created worlds of Mafia and Mafia II in my life. Excited for another installment.,0
+8734,sinking,"Duval, WV 25573, USA ?",Do you feel like you are sinking in unhappiness? Take the quiz: http://t.co/BTjPEO0Bto http://t.co/ClyJ32L333,0
+8735,sinking,,That horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time,1
+8736,sinking,,ITS JUST NOW SINKING IN THIS IS THE LAST EPISODE MY HEART HURTS SO BAD,0
+8737,sinking,London,Slowly sinking wasting ?? @edsheeran,0
+8738,sinking,Rhyme Or Reason?,The #Tribe just keeps sinking everyday it seems faster. As for this year it's been a titanic disaster.,1
+8739,sinking,MA,that horrible sinking feeling when youÛªve been at home on your phone for a while and you realise its been on 3G this whole time,1
+8740,sinking,hey Georgia,each time we try we always end up sinking,0
+8741,sinking,Coventry,Do you feel like you are sinking in unhappiness? Take the quiz: http://t.co/t0c1F2lEdv http://t.co/u0MeXO4Uhh,0
+8742,siren,nc,I just made a weird high pitched noise and then I heard a siren ofnsixjks ??????,0
+8743,siren,,Today is Corii Siren's birthday! Spoil her now: http://t.co/l3GizRUCy4 #wishlist http://t.co/HgEDwxTDJN,0
+8744,siren,kenya,'@Ma3Route: Haha jam imeshika hapa garden city mats bumper to bumper with AAR ambulance.we decide to chill via @BonnieG434' piga siren kijan,0
+8745,siren,My subconscious,@stacedemon oh shit!,0
+8746,siren,London,Big Love @IbeyiOfficial https://t.co/OlnK1TI1NM,0
+8747,siren, New England,'Amateur Night' Actress Reprises Role for 'Siren' - HorrorMovies.ca #horror http://t.co/W9Cd6OFfcj,1
+8750,siren,,Lol '@j2bone: *cousin ' @Foxy__Siren: Coursing* '@WEYREY_gidi: Now they are causing Di Maria.. LOL'',0
+8751,siren,,What. The. Fuck. https://t.co/Nv7rK63Pgc,0
+8752,siren,"UAE,Sharjah/ AbuDhabi",I'm more into the healing/reviving side of the game rather than better attacking so for now Siren > all other characters (except new girl).,0
+8753,siren,"Tampa, FL",A demoness with the voice of an angel. Like a siren's call beckoning me to the void. Don't ?? on thisÛ_ https://t.co/nPS3xpBKaQ,0
+8754,siren,New York,WHELEN MODEL 295SS-100 SIREN AMPLIFIER POLICE EMERGENCY VEHICLE - Full read by eBay http://t.co/A5iwUS8EVQ http://t.co/gI82N2JuWn,0
+8755,siren,The Web,http://t.co/a0v1ybySOD Its the best time of day!! åÊ @Siren_Voice is #liveonstreamate!,0
+8757,siren,Paris.,? #nowplaying SONG TO THE SIREN - JOHN FRUSCIANTE (2009) http://t.co/00cY9vXEFF,0
+8758,siren,Am International,So when r u getting married'@Foxy__Siren: Oh finally Jennifer Aniston got married??????... I'm so happy for her ??????',0
+8759,siren,Team Slytherin,Super sweet and beautiful :) https://t.co/TUi9uwBvVp,0
+8760,siren,Michel Delving.,Apparently they're going to have a WW2 siren to announce something. Not sure if that's fun or dull bc the WW2 siren is a v monotonous sound.,0
+8761,siren,Hame,There's a weird siren going off here...I hope Hunterston isn't in the process of blowing itself to smithereens...,1
+8762,siren,Brizzle City !,@tomarse99 they all are intending to go. Just waiting for winds to drop. Siren just gone off to signal they allowed to leave arena.none gone,1
+8763,siren,,Internet firms to be subject to new cybersecurity rules in EU... http://t.co/lafTJ2GyLY,0
+8766,siren,??? Dreamz,I don't think I've forgiven Angelina Jolie yet sef????,0
+8767,siren,??? Dreamz,Coursing* '@WEYREY_gidi: Now they are causing Di Maria.. LOL',0
+8768,siren,,I added a video to a @YouTube playlist http://t.co/612BsbVw8K siren 1 gameplay/walkthrough part 1,0
+8770,siren,texasss,@optich3cz #askH3cz i'm jealous now. Bc i wanted a elgato hd for my bday so i can record videos but i didnt have the money for it.,0
+8774,siren,Diamondville,Look at them'@Ayhoka_: Co happy bn too long'@Foxy__Siren: Oh finally Jennifer Aniston got married??????... I'm so happy for her ??????'',0
+8775,siren,"Massachusetts, USA",@EnvySeven My beautiful Aquarius queenmy Siren of the cliffs and pretenses of overtures.Please sing this phantom songfor you alone shall,0
+8776,siren,,"Pharma overloaded with a loud cry like an emergency siren.
+
+...fucking.",0
+8777,siren,The TARDIS,@Siren_Song21 my pc account got hacked. Someone tried to pull out over 1200 bucks which wasn't there Now I have an nsf & no idea who or why,0
+8778,siren,,Don't argue cheap now. You're better than that. ??,0
+8780,siren,,The real question is why is the tornado siren going off in Dyersburg?,1
+8781,siren,"California, USA","Can you save
+Can you save my
+Can you save my heavydirtysoul?",0
+8782,siren,,Siren Test complete :: The test has concluded,0
+8783,siren,"Honolulu,Hawaii ",Serephina the Siren <3 http://t.co/k6UEtsnLHT,0
+8784,siren,Everywhere,@LA_Siren Thanks for joining the foot. @VVorm,0
+8785,siren,,Outdoor Siren Test 2pm :: The FGCU Siren will be tested at 2pm today. Another message will be sent when the test is concluded.,0
+8786,siren,Flipadelphia,@SoonerMagic_ I mean I'm a fan but I don't need a girl sounding off like a damn siren,1
+8787,siren,,I hate this damn Milwaukee IndyFest. All the cars sound like a really long tornado siren going off and it woke me up from my nap,0
+8788,siren,,Any new games coming soon @BreachGamingORG ?,0
+8789,siren,The American Wasteland (MV),@FEVWarrior -with the screeching siren accompanying it just before he walked out.,0
+8790,siren,"Charlotte, NC",This cop seriously just turned on their siren to get through traffic and turned it right back off like wtf,0
+8791,siren,high way 99,u know the music good when you hear the siren and you get chills,0
+8793,sirens,,Reasons I should have gone to Warped today: tony played issues showed up sleeping w sirens played attila is there issues issues issues,1
+8795,sirens,... -.- -.--,"Thu Aug 06 2015 01:20:32 GMT+0000 (UTC)
+#millcityio #20150613
+theramin sirens",1
+8797,sirens,Canada Eh! ,@RAYCHIELOVESU On the block we hear sirens& stories of kids getting Lemonade only to see their life get minute made. we talking semi paid,0
+8799,sirens,Ohio,A segment of the V/H/S anthology series is getting the feature film treatment:... http://t.co/LqJMuAxJUU,0
+8800,sirens,828??864??803,@_DANGdaddy the sirens are telling you to get ready to TURN UP???????? http://t.co/qAQqrJv9gU,0
+8801,sirens,"Nomad, USA",Fuck Sleeping With Sirens.,0
+8802,sirens,they/them ,my dad said I look thinner than usual but really im over here like http://t.co/bnwyGx6luh,1
+8804,sirens,Greater Los Angeles Bearia,Rappers stop sampling police sirens and start sampling whale song.????,0
+8805,sirens,,Yay for sirens,0
+8806,sirens,victoria moẓo ,To ouvindo sleeping with sirens awn,0
+8808,sirens,"Denver, CO",#SirensIcebreaker What is one fantasy work about a diverse heroine that you think everyone should read? https://t.co/HplJUr0OBo,0
+8810,sirens,"Seattle, WA",@KIRO7Seattle Just saw a Bomb Squad car heading north on Elliott with sirens on - any word on where they're headed??,1
+8812,sirens,they/them ,'I know a dill pickle when I taste one' -me,0
+8815,sirens,Sydney,Marketforce Perth named winner of Sirens round 2 for 'iiNet NBN Buffering Cat Shark' radio spot http://t.co/GGPERGLVKi,0
+8816,sirens,Hollywood,@TravelElixir Any idea what's going on? I hear no sirens but this damn helo is flying so low my apt is shaking!,1
+8817,sirens,miami x dallas ,Lets Goooooooo http://t.co/fZ5eW4iHmB,0
+8823,sirens,"Hamburg, DE",A new favorite: Midfield General Disco Sirens House Edm Version Soni Soner by @sonisoner https://t.co/DEvffPTCVj on #SoundCloud,0
+8825,sirens,"Nanaimo, BC, Canada",Photoset: hakogaku: ?åÊI am a kurd. i was born on a battlefield. raised on a battlefield. gunfire sirens... http://t.co/obp595W7tm,1
+8829,sirens,,@iK4LEN Sirens was cancelled.,0
+8830,sirens,"Decatur, GA",'If you looking for my niggas you can follow the sirens.' ????,0
+8831,sirens,"Los Angles, CA",What's going on in Hollywood? #abc7eyewitness @ABC7 helicopters and sirens. #HometownGlory,0
+8832,sirens,az,"connor franta: damn sirens I hope everyone is okay.
+
+dan howell: can you PLEASE get MURDERED on ANOTHER STREET",1
+8835,sirens,Crato - CE ,Gostei de um vÌ_deo @YouTube de @christinartnd http://t.co/bwe9kJCEPt Sleeping with Sirens Postcards and Polaroids acoustic cover,0
+8836,sirens,Philippines,A Rocket To The Moon ? Sleeping With Sirens ?A Rocket To The Moon ????????????,0
+8837,sirens,Australia,MarketforceÛªs ÛÏCat SharkÛ wins Sirens round two http://t.co/6F9aFQL6WP #radio #news,0
+8838,sirens,,I added a video to a @YouTube playlist http://t.co/f2TqMFh1Yb Cher Lloyd - Sirens,0
+8839,sirens,,sleeping with sirens vai vir pra sp,0
+8840,sirens,"Ventura, Ca",Kyle is one of the last people I would expect to like Sleeping with Sirens.,0
+8841,sirens,,It's 'Run From Sirens' by 'Half Hour Hotel' @halfhourhotel @Edgarsgift. 'Premium Promotion' OFFER http://t.co/zRN30A78ir,0
+8842,smoke,,What's wrong with just a lil smoke and good conversation ????,0
+8843,smoke,,@LifeAintFairKid if I did I'd smoke you up brooo!,0
+8844,smoke,"Arlington, TX",I barely smoke with people i solo all my blunts,0
+8846,smoke,Rio de Janeiro,smoke whatever you got,0
+8848,smoke,"MedellÌ_n, Antioquia",Smoke the Weed - Snoop Lion Ft. Collie Buddz,0
+8850,smoke,,And all you girls that smoke.... have you notice that you started to lose ALOT OF WEIGHT ??? HMMM Don't know body want no thin girl tf,0
+8851,smoke,,Smoke with me baby and lay with me baby and laugh with me baby I just want the simple things,0
+8852,smoke,,IM GONNA GET NAKED AND SMOKE MY CIGARETTE someone call me radneck or is it just too hot in here,0
+8853,smoke,BrowardCounty // Florida ,SMOKE ALOT OF WEED LIKE FUCK KIDNEYS PUT A DUTCH IN ME,0
+8854,smoke,,@SidelineSavage what like a pipe made of peanut butter or a pipe you can smoke peanut butter out of?,0
+8855,smoke,,I want to smoke ??,0
+8856,smoke,,In 2014 I will only smoke crqck if I becyme a mayor. This includes Foursquare.,0
+8857,smoke,"Houston, TX",when you burp and smoke comes out,0
+8858,smoke,,if you're dating someone who doesn't let you smoke leave them and date someone who also smokes. trust me. ??,0
+8859,smoke,Soufside,niggas selling weed just so they can smoke & stay high. YALL NIGGA IN THE WAY..,0
+8860,smoke,,I wanna drink a little smoke a little,0
+8862,smoke,,Smoke ave streets hottest youngins,0
+8863,smoke,"Dalston, Hackney",@PianoHands You don't know because you don't smoke. The way to make taxis and buses come is to light a cigarette to smoke while you wait.,1
+8864,smoke,,[55436] 1950 LIONEL TRAINS SMOKE LOCOMOTIVES WITH MAGNE-TRACTION INSTRUCTIONS http://t.co/xEZBs3sq0y http://t.co/C2x0QoKGlY,0
+8865,smoke,,@Sammysosita smoke a blunt & get through it.. no more ciggs for you.,0
+8866,smoke,WORLDWI$E ,I smoke toooooo much lmao I was scared to text this number bck but now it all makes sense lol,0
+8869,smoke,atlanta,@TheTshirtKid I'm tryna smoke that MF out,0
+8871,smoke,,Be Trynna smoke TJ out but he a hoe,0
+8872,smoke,,@BillMcCabe sky looks clear.... No smoke from the fires. Enjoy your time in Tahoe. One of my favorite places!,1
+8875,smoke,3.28.15|7.20.15|7.25.15,So does Austin smoke too since he agreed to that name or what? ÛÓ Lol no http://t.co/UmZKC9AzWd,0
+8878,smoke,cigarknub@gmail.com,Smoke it all http://t.co/79upYdCeMp,0
+8880,smoke,Ktx,I get to smoke my shit in peace,1
+8881,smoke,,If you wanna smoke cigs that's your own problem but when your breath smells like an old ash tray.. that's fucking disgusting,0
+8883,smoke,PSA Nursing ,@bre_morrow neither of them even smoke so I dk what was going on lol,0
+8885,smoke,"Narnia, Maryland",Smoke eat sleep,0
+8886,smoke,,I miss Josie cause I wanna smoke splifs and go to taco bell ??,0
+8887,smoke,"Winnipeg, MB, Canada",Mental/Twitter Note: Make sure my smoke alarm battery is up to snuff at all times or face many twitter reminders of changing my battery.,0
+8888,smoke,Indonesia,@TeamAtoWinner no.. i mean when is mino said that he doesn't smoke? u mention it before.. :)),0
+8890,smoke,"Bronx, NY",I just wanna smoke some weed and get some commas,0
+8892,snowstorm,"Dallas, TX",'Snowstorm' 36'x36' oil on canvas (2009) http://t.co/RCZAlRU05o #art #painting,0
+8893,snowstorm,Wakefield MA,Manuel hoping for an early Buffalo snowstorm so his accuracy improves.,1
+8896,snowstorm,,Hi yall this poem is called is the one about the snowstorm when we meet in space and that one time it rained. Thx. Ur watching disney chann,0
+8899,snowstorm,New Jersey,For some reason knocking on someone's door at 3am in a snowstorm while wearing footed pajamas is not the best way to get into their bathroom,0
+8900,snowstorm,"Huntington, WV","sorry-I built a fire by my desk already. RT@irishirr
+@MChapmanWSAZ @WSAZ_Brittany @kellyannwx ..please maintain that snowstorm til I arrive.",0
+8902,snowstorm,"South, USA",Sassy city girl country hunk stranded in Smoky Mountain snowstorm #AoMS http://t.co/nkKcTttsD9 #ibooklove #bookboost,1
+8903,snowstorm,Manchester,@Groupon_UK it won't let me as you don't follow me,0
+8905,snowstorm,"Hampshire, UK",New #photo Oak in a snowstorm http://t.co/HK9Yf72OVA taken in #winter on the #SouthDowns #Hampshire #photography #art #tree #treeporn,1
+8906,snowstorm,"Louisiana, USA",you're the snowstorm I'm purified. the darkest fairy tale in the pale moonlight.,0
+8907,snowstorm,New York,Mini Lalaloopsy Dolls Seed Sunburst June Seashore Sweater Snowstorm Autumn Spice - Full reÛ_ http://t.co/nyty7fCQo6 http://t.co/hyypsPN0yQ,0
+8908,snowstorm,Australia,@Habbo bring back games from the past. Snowstorm. Tic tac toe. Battleships. Fast food. Matchwood.,1
+8912,snowstorm,"South, USA",Sassy city girl country hunk stranded in Smoky Mountain snowstorm #AoMS http://t.co/ZDJ2hyF6RO #ibooklove #bookboost,0
+8913,snowstorm,,"@dirk_trossen
+
+I've still got some of the snowstorm/hailstorm!",1
+8914,snowstorm,London,Can you list 5 reasons why a London #TubeStrike is better than a Snowstorm? Read here... http://t.co/PNaQXPrweg,0
+8916,snowstorm,This Is Paradise. Relax. ,"ÛÏ@LordBrathwaite: Everyone Here: Ahh I hate snow!
+
+Me: Lol u call this a snowstorm..?
+
+#growingupincoloradoÛ",1
+8920,snowstorm,Deployed in the Middle East,@CacheAdvance besides your nasty thunderstorm or snowstorm nah. Can't say that I have.,0
+8921,snowstorm,"Brooklyn, NY",'Cooler than Freddie Jackson sippin' a milkshake in a snowstorm',0
+8923,snowstorm,"Raleigh, NC",Transportation panel showing a video of a pileup of 18-wheelers in a snowstorm in WY. Crash crash crash ÛÏMake it stop!Û #AMSsummer,1
+8924,snowstorm,"South, USA",Sassy city girl country hunk stranded in Smoky Mountain snowstorm #AoMS http://t.co/HDJS9RNtJ4 #ibooklove #bookboost,1
+8926,snowstorm,,@PyrBliss ah I remember those days. In a snowstorm too.,1
+8927,snowstorm,teh internets,Picking up a man in a bar is like a snowstorm you never know when he's coming how many inches you'll get or how long'll he'll stay.,0
+8931,snowstorm,"Neath, South Wales",#NowPlaying Last Smoke Before The Snowstorm by Benjamin Francis Leftwich - hopefully new album coming soon :) ? http://t.co/5kjy8G0i4y,0
+8933,snowstorm,Mountains,New #photo Oak in a snowstorm http://t.co/JhSCGDA2G8 on the #SouthDowns #Hampshire #Winter #photography #art #tree #treescape #treeporn,0
+8934,snowstorm,Porthcawl,I liked a @YouTube video http://t.co/z8Cp77lVza Boeing 737 takeoff in snowstorm. HD cockpit view + ATC audio - Episode 18,1
+8935,snowstorm,In the spirit world,Photo: mothernaturenetwork: What is thundersnow? Hearing thunder during a snowstorm is extremely uncommon.... http://t.co/eYdAPauPvG,1
+8936,snowstorm,Western New York,#LakeEffect #Snowstorm Twill Denim Jackets *** ALL MY PROCEEDS FOR ITEMS WITH THIS DESIGN WILL GOÛ_ https://t.co/TxTpx4umqH,1
+8938,snowstorm,Mpela'zwe ,LRT refer to the lyrics to hear Big Boi explain why heÛªs as cool as ÛÏsippinÛª a milkshake in a snowstorm' lame bars but effective at the time,0
+8939,snowstorm,"Austin, TX",@PrablematicLA @Adweek I'm actually currently dressed for a snowstorm...despite being in the middle of a Texas summer. Thanks office A/C.,1
+8941,snowstorm,Italy,Snowstorm planned outside #Rome's St Mary Major tonight - annual occasion artificial snow remembering summer snow in 358 AD on same spot.,0
+8942,storm,,FINALLY a storm,0
+8944,storm,,#gamefeed Warcraft 3-Inspired Mode Likely Hitting Heroes of the Storm: Let's go back to the beginning. http://t.co/gx1kZ3C2Tc #VideoGame,0
+8945,storm,"State College, Pa",Typhoon Soudelor was captured in this incredible NASA photo on it's way to Taiwan! http://t.co/dGGm5b0w4L http://t.co/eYr2Xx5l1p,1
+8946,storm,,So this storm just came out of no where. .fuck me its cool,1
+8947,storm,Somewhere Only We Know ?,omfg.... I just woke up again....,0
+8948,storm,,New on Ebay UK Star Wars Storm Trooper Pop! Vinyl Bobble Head Figure POP Funko http://t.co/KJbXIeypma http://t.co/ENPjCfMa8L,0
+8949,storm,"Chicago, IL","How to prepare your #property for a #storm:
+
+http://t.co/KhYqQsi6My http://t.co/G6Vs3XEinb",1
+8952,storm,,kesabaran membuahkan hasil indah pada saat tepat! life isn't about waiting for the storm to pass it's about learning to dance in the rain.,1
+8953,storm,mind ya business,@Jenniferarri_ comeeeee! ...but why is it bout to storm tho,1
+8955,storm,nor*cal,RT @tonyhsieh: 'The person who dances with you in the rain will most likely walk with you in the storm.' -Anonymous,0
+8956,storm,,The Secrets Of The Storm Vortex The Lightning Catcher Book Û_ : http://t.co/OIyWrzL79Z .,0
+8957,storm,,Is it bad to say that I'm kinda afraid of storms and we are in a storm???? help,1
+8959,storm,"West Palm Beach, Florida",Looks like a perfect storm-free evening coming up. Check out the outdoor happenings featured at http://t.co/hUzrHgmkSY #EventsPalmBeach.,1
+8961,storm,"Atlanta, GA",Crazy storm hit and I'm trapped inside a Hobby Lobby AMA http://t.co/8qc8Bcxoko,1
+8962,storm,philly,"It's okay I welcome the rain.
+Gave you all the storm that you could weather.",0
+8963,storm,,Nike Golf Storm Fit Golf Jacket Black Medium http://t.co/jvAI5Vkmsy: #SportingGoods http://t.co/Nr8JjmpmoS,0
+8965,storm,Mackem in Bolton,Every time I buy a bag for life I think I've got 3 days left to live.,0
+8966,storm,,What tropical storm? #guillermo by hawaiianpaddlesports http://t.co/LgPgAjgomY http://t.co/FKd1mBTB68,1
+8967,storm,"Wilmington, NC",New item: Pillow Covers ANY SIZE Pillow Cover Grey Pillow Pillows Premier Prints Lulu Storm Grey by MyPillowStudio Û_ http://t.co/M4pqkKeEVC,0
+8968,storm,"Johns Creek, GA",this storm????,0
+8969,storm, New Delhi ,@johngreen storm and silence by @RobThier_EN,0
+8970,storm,,A Warcraft 3-inspired mode is likely coming to Heroes of the Storm http://t.co/wz55NBYAO3 http://t.co/L7pMDmeJs1 http://t.co/mDP2nI1pQU,0
+8971,storm,"Raleigh, NC",The Storm Prediction Center has expanded the 'Slight Risk' area to include more of central NC. #TWCNews #ncwx http://t.co/DgBeH5L9DS,1
+8972,storm, Alberta,'Calgarians stunned by storm insurance companies busy handling calls' #abstorm http://t.co/fkFa9vSssZ,1
+8973,storm,#BossNation!,Finna storm. Fuck my back boutta start hurting like a mf ??????,0
+8974,storm,pittsboro,Ready for this storm,1
+8976,storm,"Charlotte, NC",Severe T-storm Warning for Union County ~3:45pm. Top threats include heavy rain lightning & damaging winds. http://t.co/XWOevMK0aA,1
+8978,storm,NC || OR,ice cream + cupcake wars + storm = content sara,0
+8979,storm,Espa̱a - Spain - Espagne,"NASAHurricane? EASTERN PACIFIC *Full Update* Satellite Sees Formation of Eastern Pacific's Tropical Storm Hilda
+ThÛ_ http://t.co/KsXTo8NKNl",1
+8980,storm,#PhanTrash,The sky's clear the storm has passed but it's still raining in my head,0
+8983,storm,Desert Storm?? |BCHS|,Happy birthday @lesley_mariiee ?? I miss you so much & i hope you have a great birthday!!????,0
+8985,storm,"Cleveland, OH - San Diego, CA",#NASA announced that a massive #solar storm is headed straight for us: http://t.co/CM5u55MiOl,1
+8986,storm,"Ottawa, Ontario",My last two weather pics from the storm on August 2nd. People packed up real fast after the temp dropped and winds picked up.,1
+8987,storm,Santiago de Chile,Doves - The Storm + Greatest Denier (Electric Proms Pt4) http://t.co/xjTpV4OydL,1
+8989,storm,,TodayÛªs storm will pass; let tomorrowÛªs light greet you with a kiss. Bask in this loving warmth; let your soul return to bliss.,1
+8992,stretcher,Camaqụ/Pelotas,"Somebody get the doctor I'm feelin' pretty poor. Somebody get the stretcher
+before I hit the floor",0
+8993,stretcher,,@Coach_Keith44 @HannoMottola @TRPreston01 @mlrydalch no but a stretcher would have been nice.,0
+8994,stretcher,,Free Ebay Sniping RT? http://t.co/B231Ul1O1K Lumbar Extender Back Stretcher Excellent Condition!! ?Please Favorite & Share,0
+8996,stretcher,Taylor Swift,@Stretcher @invalid @Grazed @Rexyy @Towel I see the programme (:,0
+8998,stretcher,Oklahoma City,Dan Hughes was taken off on a stretcher after Danielle Robinson collided @OU_WBBall hope they are both ok he called SOME games over years,0
+8999,stretcher,NYC,FERNO would appreciate if everyone in EMS could dust off their engineering degree & inspect all stretcher components. http://t.co/GTEd6LDwho,0
+9000,stretcher,Austin/Los Angeles,Stretcher brought out for Vampiro. Cut to commercial isn't a good sign. #UltimaLucha #LuchaUnderground,0
+9001,stretcher,Florida,How to restore vinyl siding and make it look new again http://t.co/MHL7Pfr7kb http://t.co/lou8lbLA1f,0
+9002,stretcher,Taylor Swift,@Stretcher @Rexyy @invalid @Towel let's have babies??!,0
+9005,stretcher,U.S.A and Canada,organic natural horn stretcher expander earrings body jewelry with painting in tribal ... http://t.co/NvZdilRfgj http://t.co/u9Cd0txE7Z,0
+9006,stretcher,In a crazy genius mind,NO WAYS!!! A video for 'Stretcher'?! @Ofentse_Tsie,0
+9007,stretcher,hatena bookmark,*New!* Stretcher in 5 min https://t.co/q5MDsNbCMh (by FUJIWARA Shunichiro 2015-08-05) [Technology],0
+9008,stretcher,,@PLlolz @Grazed @Stretcher @invalid @witter @Towel still a lot,0
+9009,stretcher,,"How to Freeze Fruits and Veggies
+http://t.co/MET0mtpr3S",0
+9012,stretcher,Florida,Homemade frozen yogurt pops? Have you had luck making them? http://t.co/YzaZF4CEOa http://t.co/X5RC5Nuamh,0
+9016,stretcher,,The '1pack 2pack 3pack' line is on fleek if Stretcher is fire.,0
+9018,stretcher,,Sweater Stretcher http://t.co/naTz5iPV1x http://t.co/leaEBy6cR2,0
+9020,stretcher,Docker container,ÛÏStretcher in 5 min // Speaker DeckÛ http://t.co/fBLNiFda1C,0
+9022,stretcher,,@invalid @Grazed @Towel @Stretcher @PLlolz @witter I can't stop,0
+9023,stretcher,"Asheville, NC",I should have known better than to think I'd get anything done after a 2 hour capoeira class. Stretcher-bearer!,0
+9025,stretcher,Taylor Swift,@Grazed @invalid @Stretcher @Rexyy @Towel 'Ben favorited',0
+9026,stretcher,DMV,He's being put on a stretcher ?? don't want to see that.,0
+9027,stretcher,philly ,Lately I been stressing make me wanna put a fuck nigga on a stretcher!,0
+9028,stretcher,south africa eastern cape,Mxaaaa South Africans Just Can't Appreciate Effort #Stretcher Was Not That Bad Stop Hating,0
+9029,stretcher,"Amazon Seller , Propagandist",Keep shape your shoes ??#Amazon #foot #adjust #shape #shoe Mini Shoe Tree Stretcher Shaper Width Extender Adjustable http://t.co/8cPcz2xoHb,1
+9030,stretcher,??,Stretcher in 5 min // Speaker Deck http://t.co/0YO2l38OZr,0
+9031,stretcher,,Lately I've been under pressure make me wanna put a fuck niqqa on a stretcher,0
+9033,stretcher,,Stretcher-bearers were soldiers whose job was to follow behind the advance and bring the wounded back into their... http://t.co/yeRcT4J244,0
+9034,stretcher,NJ/NY/NM/NE/ND,Scary stuff in San Antonio. Stars head coach Dan Hughes was run into on the sidelines and fell over chairs onto the floor. Stretcher now out,1
+9038,stretcher,Florida,How to restore vinyl siding and make it look new again http://t.co/rDxzsL5EAC http://t.co/QwijRRiYIf,0
+9039,stretcher,,@DareToTaha nah but thinking of getting a stretcher in my foreskin what u think?,0
+9040,stretcher,,@Stretcher @witter @Rexyy @Towel show me a picture of it,1
+9041,stretcher,3???2???????,ÛÏStretcher in 5 min // Speaker DeckÛ http://t.co/7qPG80uD7v,0
+9042,structural%20failure,"Berlin, Germany",1) 'Investigators say a Virgin Galactic spaceship crash was caused by structural failure after the co-pilot unlocked a braking system early',1
+9044,structural%20failure,Canada,SpaceX Founder Musk: Structural Failure Took Down Falcon 9 http://t.co/LvIzO9CSSR,1
+9045,structural%20failure,"San Francisco, CA",@lizbon @KidicalMassDC It's more of a structural breakdown. Or maybe a patience failure on their part.,0
+9047,structural%20failure,,Virgin galactic crash: early unlocking of brakes triggered structural failure http://t.co/Kp1hDchfNZ,1
+9051,structural%20failure,,VIDEO: Virgin Galactic crash: Brakes blamed: Investigators have said a Virgin Galactic spaceship crash was caused by structural failureÛ_,1
+9052,structural%20failure,"Cimahi,West Java,Indonesia",Investigators have said a Virgin Galactic spaceship crash was caused by structural failure after the co-pilot ... http://t.co/imAWVMzs3A,1
+9053,structural%20failure,Bukittinggi ?? Sumatera Barat,Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the... http://t.co/FPrt7NwrOt,1
+9054,structural%20failure,Asia,Rightways: Building structural integrity & failure: problems inspections repair http://t.co/vz1irH0Nmm via @rightwaystan,0
+9055,structural%20failure,,@SirTitan45 Mega mood swing on a 24 hr schedule. Isn't that how structural failure occurs?,0
+9057,structural%20failure,Stateless Global Citizen,The result of failure in correcting structural problems with West's financial markets collapse https://t.co/DvieABlOFz,1
+9058,structural%20failure,india,3. excessive engine failure rate significant maintenance constantly emerging structural defects. Phew that's a lot I say.,0
+9059,structural%20failure,USA,Virgin galactic crash: early unlocking of brakes triggered structural failure - Irish Examiner http://t.co/ocMCvfDZkv,1
+9060,structural%20failure,San Francisco,[CLIP] Top-down coercion - The structural weakness ensuring government failure http://t.co/gNORIjnSVa,0
+9061,structural%20failure,,Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the coÛ_,1
+9062,structural%20failure,Halton Region,We offer #preventative services such as cabling and bracing to stop structural failure of your trees. Call 905-877-8591 to book yours. #CTS,0
+9064,structural%20failure,Asia,Rightways: Building structural integrity & failure: inspections damages defects testing repair http://t.co/vz1irH0Nmm via @rightwaystan,1
+9067,structural%20failure,"Los Angeles, Calif.",NTSB: Virgin Galactic's SpaceshipTwo crash due to structural failure when braking system unlocked early http://t.co/EYSbLYX6L6 via @KPCC @AP,1
+9071,structural%20failure,Indonesia,Investigators have said a Virgin Galactic spaceship crash was caused by structural failure after the co-pilot ... http://t.co/PnhPLJHo8E,1
+9072,structural%20failure,,Investigators rule catastrophic structural failure resulted in 2014 ... http://t.co/AdZ8kbuRt7,1
+9074,structural%20failure,Bukittinggi ?? Sumatera Barat,Investigators have said a Virgin Galactic spaceship crash was caused by structural failure after the co-pilot ... http://t.co/WC69XAJIs4,1
+9075,structural%20failure,,Investigators have said a Virgin Galactic spaceship crash was caused by structural failure after the co-pilot unlocked a braking system,1
+9077,structural%20failure,,@sirtophamhat @SCynic1 @NafeezAhmed @jeremyduns and of course you don't have to melt the steel in order to cause structural failure.,0
+9078,structural%20failure,"Washington, D.C.",CAP: 'the DRIVE Act represents the failure of Senate Republicans to address the structural shortfalls plaguing the Highway Trust Fund',0
+9079,structural%20failure,,Photo: Failure in structural integrity affects us all. Whether it is a barn raised upon a faulty concrete... http://t.co/cDxE5VMzOj,0
+9080,structural%20failure,Warm Heart Of Africa,@sabcnewsroom sabotage!I rule out structural failure,0
+9081,structural%20failure,"ÌÏT: 27.9136024,-81.6078532",'@CatoInstitute: The causes of federal failure are deeply structural and they will not be easily solved: http://t.co/H2XcaX4jbU',0
+9082,structural%20failure,,Slums are a manifestation state failure to provide housing to citizens. Illegality discourse confounds structural problems. #stopevictions,1
+9083,structural%20failure,,Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the... http://t.co/BgRAb7lK8D,1
+9084,structural%20failure,"VÌ_sterÌ´s, Sweden",@whvholst @leashless And this is a structural problem rather than just a failure of competence by traditional soc democratic parties.,0
+9085,structural%20failure,Reality,"'Jet fuel cant melt steel'
+'The structural failure is illogical'
+'The second plane crashing into the building is fake'
+'It was a bomb'",1
+9086,structural%20failure,,Investigators rule catastrophic structural failure resulted in 2014 ... http://t.co/QU1IUg3E9r,1
+9087,structural%20failure,,Virgin galactic crash: early unlocking of brakes triggered structural failure: The crash of a Virgin Galactic ... http://t.co/x3VqxdouVT,1
+9088,structural%20failure,,Investigators rule catastrophic structural failure resulted in 2014 Virg.. Related Articles: http://t.co/Cy1LFeNyV8,1
+9089,structural%20failure,"Chicago, IL",NTSB: Virgin Galactic crash caused by structural failure triggered when brakes unlocked early http://t.co/iKnyOk9zZr http://t.co/QCKqcX4Hw9,1
+9090,structural%20failure,,Investigators say a fatal Virgin Galactic spaceship crash last year was caused by structural failure after the co-pilot unlocked a braking,1
+9093,suicide%20bomb,,@FoxNewsInsider All Obama is doing is giving a false time schedule on Iran testing there first bomb Bomb = Nuclear Suicide Vest,0
+9094,suicide%20bomb,Roadside,If you ever think you running out of choices in life rembr there's that kid that has no choice but wear a suicide bomb vest,0
+9095,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_,1
+9096,suicide%20bomb,"London/Lagos/FL ÌÏT: 6.6200132,",Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/1yB8SiZarG http://t.co/69iIzvyQYC,1
+9097,suicide%20bomb,,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/uWfvWMjepU http://t.co/pxONlrqUsm,1
+9098,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_,1
+9099,suicide%20bomb,,@AlfaPedia It might have come out ONLY too burst as a Bomb making him suicide bomber,1
+9100,suicide%20bomb,Lagos,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/uJNRGFAnGj http://t.co/TmIpEgQyeV,1
+9101,suicide%20bomb,Nigeria,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/pOL92mn8YZ,1
+9102,suicide%20bomb,,...//..// whao.. Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/tuVbR4lEP3,1
+9103,suicide%20bomb,The Land of MAss Stupidity,Look at the previous battles. Citizens were committing suicide so to not be under American control. The bomb was the only way. @NBCNews,1
+9106,suicide%20bomb,dorito land,she's a suicide bomb,0
+9107,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_,1
+9109,suicide%20bomb,Gidi,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/IUh718KCy0 http://t.co/9pQyx4xOOL,1
+9110,suicide%20bomb,Email: Lovethterry@gmail.com,See the 16yr old PKK suicide bomber who detonated bomb in Turkey Army trenchÛ_ http://t.co/ZdiEodWbog via @MsOreo_ http://t.co/V6nyLVdPeD,1
+9112,suicide%20bomb,,//./../.. Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/Sj57BoKsiB -/,1
+9113,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_,1
+9114,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_,1
+9116,suicide%20bomb,,//./../.. Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/fqSk7QCawO -/,1
+9118,suicide%20bomb,,recap/ Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/6jzCEdaYRG,1
+9119,suicide%20bomb,Homs- Syria,11 soldiers killed in ISIS suicide bomb in air base east Homs SYRIA NEWS | ZAMAN ALWSL - http://t.co/V8juC5eK1A #ISIS #Homs,1
+9120,suicide%20bomb,lagos. Unilag,16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/mGZslZz1wF,1
+9121,suicide%20bomb,,16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/5orTB8p51c,1
+9123,suicide%20bomb,Did anybody see me here ??,16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/n7Yst76ku3,1
+9124,suicide%20bomb,Worldwide,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/gnynJHnE6j http://t.co/1fuNEMes7M,1
+9126,suicide%20bomb,,wo Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/5v29w19tFX /'/'//,1
+9128,suicide%20bomb,Na waffi,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/FVXHoPdf3W,1
+9130,suicide%20bomb,,Iraq - Hashd Shaabi Theft ISIS Suicide Car bomb http://t.co/2AG9auABr3 #ISIS http://t.co/Qna4TUBnWh,1
+9131,suicide%20bomb,,ll//ll= Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/uoNEbAHH3h /,1
+9132,suicide%20bomb,GLOBAL,16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/mMkLapX2ok,1
+9134,suicide%20bomb,Nigeria,#GRupdates Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released --> http://t.co/fqcDPhccg7,1
+9135,suicide%20bomb,Nigeria,#Bestnaijamade: 16yr old PKK suicide bomber who detonated bomb in ... http://t.co/KSAwlYuX02 bestnaijamade bestnaijamade bestnaijamade beÛ_,1
+9137,suicide%20bomb,Worldwide,? 19th Day Since 17-Jul-2015 -- Nigeria: Suicide Bomb Attacks Killed 64 People; Blamed: Boko Haram [L.A. Times/AP] | http://t.co/O2cdKpSDfp,1
+9139,suicide%20bomb,Nigeria,16yr old boy pic PKK suicide bomber who detonated bomb in Turkey Army trench http://t.co/H3SXfV5mtC http://t.co/IEWDreNauK,1
+9141,suicide%20bomb,WorldWide,New post: Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/LWDcrPEhTN,1
+9142,suicide%20bomber,,Suicide bomber kills 15 in Saudi security site mosque http://t.co/ETyZY8GB2A #mercados,1
+9143,suicide%20bomber,,Suicide Bomber Kills 13 At Saudi Mosque http://t.co/oZ1DS3Xu0D #Saudi #Tripoli #Libya,1
+9144,suicide%20bomber,,Six people were killed Thursday when a Taliban suicide bomber detonated an explosives-rigged truck outside a police compound in eastern,1
+9145,suicide%20bomber,,ISIS claims responsibility for Saudi mosque suicide bombing http://t.co/Wpilp4mymf http://t.co/8NHD9iDaJs,1
+9146,suicide%20bomber,,Suicide bomber kills 15 in Saudi security site mosque http://t.co/AxhcLfErSU,1
+9148,suicide%20bomber,,#ISIS claims responsibility for Saudi suicide bombing http://t.co/jlMICJ6jE5,1
+9149,suicide%20bomber,Helsinki,Islamic State claims suicide bombing at Saudi Arabian mosque: Ten members of emergency service... http://t.co/mpOaEFQl6k via @josephjett,1
+9151,suicide%20bomber,Saudi Arabia,#saudiarabia 13 confirmed dead as suicide bomber attacks Saudi Arabian mosque - The I... http://t.co/LwAnE9vupg - http://t.co/CpQguFZB28,1
+9154,suicide%20bomber,,Suicide bomber kills 15 in Saudi security site mosque - Reuters Canada: Reuters CanadaSuicide bomber kills 15 ... http://t.co/Ktd5IG9M5o,1
+9156,suicide%20bomber,"Garden City, NY",Suicide bomber kills 15 in Saudi security site mosque http://t.co/YyTKP1Z5kG via @Reuters,1
+9157,suicide%20bomber,,News: 'Islamic State claims suicide bombing at Saudi Arabian mosque' http://t.co/vIJfNHl630,1
+9159,suicide%20bomber,Worldwide,"17 killed in SÛªArabia mosque suicide bombing
+
+A suicide bomber attacked a mosque in Aseer south-western Saudi... http://t.co/pMTQhiVsXX",1
+9161,suicide%20bomber,"19.600858, -99.047821",Mosque bombing strikes Saudi special forces; at least 15 people dead: A suicide bomber struck a mosque i... http://t.co/gigW51IZpK #news,1
+9162,suicide%20bomber,United States,Suicide bomber 'hits Saudi mosque' http://t.co/kE6DjxAnmm,1
+9164,suicide%20bomber,,Suicide bomber detonates in Saudi Arabia mosque 17 reportedly killed http://t.co/xycKgxZv9s,1
+9166,suicide%20bomber,,Suicide bomber kills 15 in Saudi security site mosque - A suicide bomber killed at least 15 people in an attack on... http://t.co/FY0r9o7Xsl,1
+9169,suicide%20bomber,Indonesia,Suicide bomber kills 15 in Saudi security site mosque - Reuters http://t.co/37DqvJHNCv,1
+9171,suicide%20bomber,,#?? #?? #??? #??? Suicide bomber kills 15 in Saudi security site mosque - Reuters http://t.co/LgpNe5HkaO,1
+9172,suicide%20bomber,,"@Abu_Baraa1 Suicide bomber targets Saudi mosque at least 13 dead - Suicide bomber targets Saudi mosque at least 13 dead
+This is ridiculous",1
+9173,suicide%20bomber,,http://t.co/9k1tqsAarM Suicide bomber kills 15 in Saudi security site mosque - Reuters http://t.co/Ev3nX9scx3,1
+9174,suicide%20bomber,,#deai #??? #??? #??? Suicide bomber kills 15 in Saudi security site mosque - Reuters http://t.co/SqydkslFzp,1
+9175,suicide%20bomber,africa,Suicide Bomber Kills More Than a Dozen in Saudi Mosque: Saudi Arabia have started experiencing some terrorist ... http://t.co/PIoY1O54f4,1
+9177,suicide%20bomber,Moscow,Suicide Bomber Kills 13 At SaudiåÊMosque http://t.co/h99bHB29xt,1
+9179,suicide%20bomber,,Suicide bomber kills 15 in Saudi security site mosque http://t.co/axK9XNo6Yz #mercados,1
+9180,suicide%20bomber,,IS claims suicide bombing against Saudi police: An Islamic State group suicide bomber on Thursday detonated an... http://t.co/Dn5Buo7GSK,1
+9181,suicide%20bomber,,@bbclaurak Why is no one talking about the risk of a suicide bomber hiding amongst the migrants stowing aboard the Eurotunnel trains?,1
+9182,suicide%20bomber,,I liked a @YouTube video from @noahj456 http://t.co/xntO3jMMTS GTA 5 - SUICIDE STICKY BOMBER (GTA 5 Online Funny Moments),0
+9183,suicide%20bomber,"Birmingham, United Kingdom",IS claims suicide bombing against Saudi police: RIYADH (AFP) - An Islamic State group suicide bomber on Thursd... http://t.co/IBypE1kaz5,1
+9185,suicide%20bomber,nigeria,Suicide Bomber Kills More Than a Dozen in Saudi Mosque: Saudi Arabia have started experiencing some terrorist ... http://t.co/GuAJ2t910b,1
+9187,suicide%20bomber,,Suicide bomber kills 15 in Saudi security site mosque #world #news,1
+9191,suicide%20bomber,,#?? #?? #??? #??? Suicide bomber kills 15 in Saudi security site mosque - Reuters http://t.co/txg7K2DO9v,1
+9192,suicide%20bombing,,I was taught at school in the 1970s that piracy slavery and suicide-bombing were purely historical. No one then expected them to re-occur,1
+9193,suicide%20bombing,,After a suicide bombing in Surṳ that killed 32 people Turkey launches airstrikes against ISIL and Kurdistan Workers' Party camps in Iraq.,1
+9194,suicide%20bombing,Australia,@daisycuttertz @GROGParty @Tony_Burke He's been having lessons in suicide bombing from his imam!,1
+9195,suicide%20bombing,"Minority Privilege, USA",@sonofbobBOB @Shimmyfab @trickxie usually I'd agree. Once the whole chopping heads off throwing gays off rooftops & suicide bombing start,1
+9197,suicide%20bombing,England,"Suicide bombing for Da'esh is (rightly) despicable. Suicide bombing for Ocalan/ Marxism?
+
+= They share 'our values'. https://t.co/Gs0km0vlgk",1
+9203,suicide%20bombing,,< 25 Dead In Kuwait Mosque Suicide Bombing Claimed By ISIS Offshoot on http://t.co/eTITgPSrUN,1
+9206,suicide%20bombing,,Suicide bombing is just the fear of dying alone,1
+9207,suicide%20bombing,,'Suicide bombing at [location named]...' #premonitions http://t.co/iIkSsJGBDn,1
+9208,suicide%20bombing,,@JewhadiTM It is almost amazing to think someone thought suicide bombing would actually be a good idea.,1
+9209,suicide%20bombing,Paris,13 security personnel killed in Iraq suicide bombing | http://t.co/IbAZRHlSUr http://t.co/B6wWq2nYQI,1
+9210,suicide%20bombing,USA,Turkish troops killed in Kurdish militant 'suicide attack' http://t.co/wD7s6S0vci,1
+9211,suicide%20bombing,,Remembering Rebecca Roga 40 of the Philippines. murdered by Hamas terrorists in the suicide bombing of Egged bus No. 361,1
+9212,suicide%20bombing,Istanbul,INFOGRAPHIC: At least 20 Turkish security officials killed in PKK and ISIS terror attacks since Suruc suicide bombing http://t.co/UvAOJzcYcZ,1
+9215,suicide%20bombing,,Malik Saadthe best police officer produced by KPdied in a suicide bombing on 27 Jan 2007he was more than a brother to me. #KPPolice.,1
+9216,suicide%20bombing,Chicago IL,bout to go suicide bombing http://t.co/ZoIPkPBD6o,1
+9217,suicide%20bombing,,< Suicide Bombing Of European Union Car Kills At Least Three In Kabul on http://t.co/o6aRmcgVbS,1
+9218,suicide%20bombing,Principality of Zeron,@RayquazaErk There are Christian terrorists to be sure but I don't suicide bombing is employed often as it is in Islamic groups.,1
+9219,suicide%20bombing,,Turkish troops killed in Kurdish militant 'suicide attack' http://t.co/nVP6wrKL1E,1
+9220,suicide%20bombing,USA,Turkish troops killed in Kurdish militant 'suicide attack' http://t.co/7cIbxls55f,1
+9221,suicide%20bombing,GCC,Alleged driver in #Kuwait attack 'joined Daesh just a day before the June 26 suicide bombing' he confesses in court http://t.co/Tmz6X1N2gQ,1
+9222,suicide%20bombing,On a beach ,@Haji_Hunter762 @MiddleEastEye maybe some muzzies will spontaneously combust! It's like Allah suicide bombing them as payback ????????,1
+9223,suicide%20bombing,Belgium,The number of security officials killed by PKK in terror attacks since the Suruc suicide bombing has reached 22 https://t.co/OpJwuNUvG8,1
+9225,suicide%20bombing,,'Suicide bombing at [location named]...' #premonitions http://t.co/iIkSsJGBDn,1
+9226,suicide%20bombing,Australia,Erdogan's Bloody Gambit: on July 20 a suicide bombing in Turkey took the lives of 31 socialists in Surṳ http://t.co/z6xAUIDRXu @Shareaholic,1
+9230,suicide%20bombing,Memphis,Kurd Suicide Attack Kills 2 Turkish Soldiers http://t.co/GHGHQm9e6d,1
+9231,suicide%20bombing,EARTH,@NBCPolitics RUSSIA AND THAT BACK FIRED NOW 2015 look what happened 911bombing of marine barracks suicide bombers attacks on world sites,1
+9232,suicide%20bombing,,meek mill should join isis since he loves suicide-bombing his career for no good reason,0
+9233,suicide%20bombing,Lagos,"Imagine a school where suicide bombing Is being taught the teachers would say to the students...
+
+'Please pay... http://t.co/zfiVVxYDZY",1
+9235,suicide%20bombing,USA,Turkish troops killed in Kurdish militant 'suicide attack' http://t.co/7old5MJWph,1
+9237,suicide%20bombing,Tokyo & Osaka,9) 'Without the bombing you would have to do hara-kiri you know commit suicide'. http://t.co/UO0aQk9KR8 Hiroshima 70 years ago.,1
+9238,suicide%20bombing,,Remembering Mordechai Yehuda Friedman 24 of Ramat Beit Shemesh; murdered by Hamas terrorists in the suicide bombing of Egged bus No. 361,1
+9239,suicide%20bombing,,Remembering Marlene Menahem 22 of Moshav Safsufa; murdered by Hamas terrorists in the suicide bombing of Egged bus No. 361,1
+9240,suicide%20bombing,,1 of the major reason of suicide bombing is the absence of sexual interactions.,1
+9242,sunk,mainly California,why wasn't this warship sunk? CNN: First on CNN: Iranian warship points weapon at U.S. helicopter official says http://t.co/hfZk09McEN,1
+9244,sunk,,literally just sunk in we got backty school in exactly a week :S :S :s,0
+9246,sunk,18 | 509 ,I peeped you frontin' I was in the jeepåÊsunk in the seat tinted with heat beats bumpin'.,0
+9247,sunk,,British diver Neil Anthony Fears found dead by the wreck of a steamship - Daily Mail http://t.co/QP3GVvfoFq,1
+9248,sunk,glasgow,Near them on the sand half sunk a shattered visage lies... http://t.co/0kCCG1BT06,1
+9249,sunk,New York,Aquarium Ornament Wreck Sailing Boat Sunk Ship Destroyer Fish Tank Cave Decor - Full read Û_ http://t.co/kNCm9jC8i9 http://t.co/swviAZSPHk,1
+9250,sunk,,@aphyr IÛªve been following you this longÛ_ Sunk cost fallacy or somethinÛª,0
+9251,sunk,,descended or sunk however it may be to the shadowed land beyond the crest of a striking cobra landing harshly upon his back; torch and,0
+9252,sunk,Bon Temps Louisiana,"So if I capsize on your thighs high tide B-5 you sunk my battleship
+>",0
+9253,sunk,,has NOT sunk in that i leave for school in a month,0
+9254,sunk,my house,It still hasn't sunk in that i will never see my nan again how has it been 2 months already ??,0
+9255,sunk,,Japan FUSO Class Battleship YAMASHIRO Naval Cover 1999 PHOTO Cachet SUNK WWII http://t.co/Aq5ZliM7l4 http://t.co/FvR9jDQ71a,1
+9257,sunk,Beacon Hills,'Blaaaaaaa' he said as he sunk his face into your stomach making it vibrate @ResoluteVanity,0
+9259,sunk,Derby,Hasn't quite sunk in that I saw Johnny Marr and Primal Scream all in the space of a few hours on Sunday,0
+9260,sunk,"West Coast, USA",@CodeMeW Were you opening regular or master packs? RT: soÛ_ sunkÛ_1 mil credits into light sideÛ_ didn't pullÛ_oneÛ_you sure about those odds?,0
+9262,sunk,"Gaborone, Botswana",Yup. Still hasn't sunk in. ?? https://t.co/Ii2SpVP89b,0
+9263,sunk,Bracknell,@SaintRobinho86 someone has to be at the bottom of every league. Tonight clearly demonstrated why the Lions are where they are - sunk!,1
+9264,sunk,"London, England",It still hasn't sunk in that I've actually met my Idol ????,0
+9265,sunk,{GoT | Modern AU | Lizz},@UntamedDirewolf 'I... Wow. Alright.' Sansa shook her head and blinked rapidly as the new information sunk in. 'I really don't know what--,0
+9266,sunk,"Cardiff, Wales",@BenAffleck i respected you and liked you for your talent. i guess i stil do but as a human being you've sunk low Mr.Affleck!,0
+9267,sunk,,Once upon a time the fact that I decided to go to university 7 hours away actually sunk in,0
+9268,sunk,NAIROBI KENYA ,#ArrestpastorNganga it so worrying 2 see how some police officers in Kenya have sunk to low to the point of collaborating with pick pockets,0
+9269,sunk,,@time4me_sews I know! It still hasn't quite sunk in :D,0
+9270,sunk,In your mind,The feeling of lonelyness has sunk into me strange depressing feeling.,0
+9271,sunk,,We may be just a week away from school but I don't think the idea of me being a senior has really sunk in yet,0
+9272,sunk,Virginia,im getting a car wow it hasn't sunk in,0
+9273,sunk,Essex,FOOTBALL IS BACK THIS WEEKEND ITS JUST SUNK IN ??????,0
+9275,sunk,oxford,One Direction is taking a break after this next album. My heart has sunk it hurts and I'm very upset. They deserve a break. My heart hurts,0
+9276,sunk,New York,Aquarium Ornament Wreck Sailing Boat Sunk Ship Destroyer Fish Tank Cave Decor - Full read Û_ http://t.co/nosA8JJjiN http://t.co/WUKvdavUJu,1
+9277,sunk,Wisconsin,The courtÛªs reputation and prestige has sunk ever lower and Prosser who has served on the court since 1998 has... http://t.co/H09nYdbzoV,0
+9278,sunk,NYC,<< his lip as he sunk into the bed his arms crossed behind his head as he watched his Captain do a number on his body. @ResoluteShield,0
+9280,sunk,,@ShekharGupta @mihirssharma high time TV channels realised what levels they have sunk for TRP and ads.it has become a mockery,0
+9281,sunk,Gloucester,@bonhomme37 wouldn't that have sunk the sub?,0
+9283,sunk,"San Jose, CA",Its like I never left. I just sunk to the background,0
+9286,sunk,i beg vines sorry ,@UnrealTouch fuck sake john Jesus my heart just sunk.,1
+9287,sunk,,@silverstar58200 I felt bad for Romero. He cared but mental stuff sunk his career. I worry same thing will happen to Hutch. #BlueJays,0
+9288,sunk,,Everything has sunk in except the fact that I am actually moving to the state of Colorado tomorrow. Been dreaming of it since I was a kid.??,0
+9289,sunk,"Ashburn, VA",Damn there's really no MLK center that hasn't sunk in yet,0
+9290,sunk,,The Seven Seas - Wreck of the Giannis D. sunk after hitting a submerged reef in theÛ_ http://t.co/Gn3WHNSFIb http://t.co/fWpOF5TwoC,1
+9292,survive,toledo,Hank Williams Jr. - 'Country Boys Can Survive' (Official Music Video) https://t.co/YOu7wn9xVs via @YouTube,0
+9293,survive,"Semarang, Indonesia",Parental experience may help coral offspring survive climate change: Preconditioning adult corals to increased... http://t.co/N9c3i9v8gO,0
+9294,survive,,@lucypalladino and I don't have any classes together and I'm not sure if I'll be able to survive,0
+9296,survive,,I have my final tomorrow ?????? . Ish is stressful but I'll survive,0
+9297,survive,United States,AHH forgot my headphones how am I supposed to survive a day without music AYHHHHHDJJFJRJJRDJJEKS,0
+9298,survive,Lincoln City Oregon,10 Ways To Survive and Escape Martial Law | World http://t.co/BiuEY7bUtS http://t.co/JWQYbe4ep1,0
+9300,survive,,How to Survive in the Markets http://t.co/LnzI7o166Y #oil #investing #money #trading #forex #gold #silver #business http://t.co/TmpFWjPI6I,0
+9301,survive,,So much shit has happened today wtf idk how I survive thruuu it all,1
+9303,survive,"Fountain City, IN ",Ended today's staff meeting with the teacher version of 'I Will Survive' #tootrue http://t.co/mCWD37IOF9,0
+9307,survive,"gaffney, sc ",how will I survive without dorrian,0
+9308,survive,,If I survive tonight. I wouldn't change one thing. ??,0
+9309,survive,,3 Things All Affiliate Marketers Need To Survive Online - Every affiliate marketer is always... http://t.co/kPMYqUJSUE,0
+9311,survive,"???????, Texas","DON'T MAKE FUN OF THEM FOR TRYING
+TO SURVIVE IN SUCH A RACIST ELITIST COUNTRY",0
+9313,survive,United States,We learn and grow and become stronger as we face and survive the trials through which we must pass. #ThomasSMonson #LDS #Mormon,0
+9314,survive,,A country Chim can survive!,1
+9315,survive,"Camberwell, Melbourne",I Will Survive by Gloria Gaynor (with Oktaviana Devi) ÛÓ https://t.co/HUkJZ1wT36,1
+9317,survive,Kansas,"Escaping her captors was the 1st step. Now she must survive a deadly storm & a wild-looking recluse.
+BETRAYED
+http://t.co/0Q040STkCV
+#books",1
+9319,survive,ava,In a dream you saw a way to survive and you were full of joy.,0
+9320,survive,,16 Stylishly Unique Houses That Might Help You Survive the Zombie Apocalypse | http://t.co/AU3DBCI7nf http://t.co/BOvJRF62T7,0
+9321,survive,nj/ny,It's going on three years that we have been separated. Sometimes you have to let a man know you will leave him. & that u can survive without,0
+9322,survive,Barbados,Now realized I honestly can't survive without these glasses now lol,0
+9324,survive,Back East in PA,Help me survive the zombie apocalypse at the Zombie Fun Run on November 15th. https://t.co/kgSwhSr7Mn #teamsurvivors #zombiefunrun2014,0
+9325,survive,? icon by @Hashiren_3 ?,@mochichiiiii @hikagezero IT'S IMPOSSIBLE FOR ME TOO WW like i can't survive a day without meat wew,0
+9329,survive,EveryWhere,:: Survive??,0
+9330,survive,Gotham City,You can't fight fate and you can't survive alone... I can't help but notice that almost seems like a definition of who I am...,0
+9332,survive,,@DDNewsLive @NitishKumar and @ArvindKejriwal can't survive without referring @@narendramodi . Without Mr Modi they are BIG ZEROS,0
+9333,survive,,@adriennetomah how did people survive like that?!,0
+9334,survive,Trapped in my Conscience ,Like it affects every level of life you're expecting me to buy everything and still survive with my limited pocket money,0
+9337,survive,,#Autoinsurance industry clueless on driverless cars : #healthinsurance http://t.co/YdEtWgRibk,1
+9338,survive,death star,If I survive I'll see you tomorrow,0
+9339,survive,,#Autoinsurance industry clueless on #driverlesscars : #Markets : #Money Times http://t.co/YdEtWgRibk,0
+9341,survive,,Suicide of a Superpower : Will America Survive To 2025? by Patrick J. Buchana... http://t.co/eMTwirknyq http://t.co/M9K08OaZve,0
+9342,survived,London,Survived another tube strike with the last person at office reaching home. We are getting better at navigating strikes!,0
+9343,survived,,"Update: I survived. No canoe.
+
+May have been the fastest feed out in history though.",1
+9344,survived,,@TheDailyShow Mahalo nui loa for making my 20s. My generation could not have survived the (W.) Bush years without you. #JonVoyage #holomua,0
+9345,survived,"Texas, USA",@thoutaylorbrown I feel like accidents are just drawn to you but I'm happy you've survived all of them. Hope you're okay!!!,0
+9346,survived,"Brentwood,TN",Even when I was a kid haha super late but folks used to bash me for that shit I understand he survived cancer but he still cheated,0
+9347,survived,Auburn ,@taaylordarr THANK YOU!!! I survived ????,0
+9348,survived,NYC,Meet the man who survived both Hiroshima and Nagasaki http://t.co/PNSsIa5e46 http://t.co/LSVsYSpdxX,1
+9350,survived,"Harlem, NY or Chocolate City",Electricity cant stop scofield. Nigga survived a hotbox in SONA,0
+9351,survived,"Mumbai, Maharashtra",It's a miracle that mankind survived 70 years since one of the worst days in its history. All bets are off if it will survive the next 70.,1
+9355,survived,?,@TheSmallClark 'He'll kill me instead if he survived the shot. I don't exactly know. I fled the scene and pulled the trigger with---,1
+9360,survived,,Not even the Berlin wall survived the 80's I daubt they'll ever be a generation like the 80's @ChubyChux: ... http://t.co/71VdjHJnwV,0
+9361,survived,"Washington, USA",@rjkrraj @KarnakaranK @vimvith whether pressure or not NON wud not survived even if thalapathi didn't release,1
+9362,survived,,Not one character in the final destination series has ever survived ??,0
+9363,survived,,@Michael5SOS FUCKING LIVE HERE IM SURPRISED IVE SURVIVED THIS LONG,0
+9365,survived,Polmont ,Just burst out in actual tears of joy when Cain survived #SummerFate @emmerdale,0
+9367,survived,"Port Harcourt, Nigeria",Nigerian boxer ?who survived sessions with Klitschko becomes famous on YouTube http://t.co/JSZZQsT3XS,0
+9368,survived,"Predjama, Eslovenia.","[+]
+
+Such a lonely day
+And it's mine
+It's a day that I'm glad I survived ...
+
+??",0
+9371,survived,Pakistan,How would I have survived without the mute option on whatsapp!,0
+9372,survived,Tn,The 'twins' survived their first day of high school!! They're gonna have a great year!! #makinmemories 2015 http://t.co/gM8p0Bd8Mt,0
+9373,survived,,Well me and dad survived my driving ????????,0
+9374,survived,,By the grace of GOD I survived the 2am shift and im not that tired.,0
+9375,survived,South Asia,'Planted 390 years ago' it was moved to U-S. This Bonsai Survived Hiroshima But Its Story Was Nearly Lost http://t.co/jID4RO34gb via @NatGeo,1
+9376,survived,,Only one man Tsutomi Yamaguchi is said to have survived both atomic bomb blasts at #Hiroshima and #Nagasaki. #OTD http://t.co/DaalPeNZp0,1
+9377,survived,Reading a romance novel,I Survived A 12-Step Program for Sex Addiction - http://t.co/xsX26oo16s,0
+9378,survived,Glasgow,"Today your life could change forever - #Chronicillness can't be avoided - It can be survived
+
+Join #MyLifeStory >>> http://t.co/FYJWjDkM5I",0
+9380,survived,Bulgaria,Cute & all livin' the life then you zoom in on one's face and you have a meme ready: 'I've seen the Gates of Hell and survived',0
+9382,survived,U.K.,Well said Sir. My cousin was a POW. Brutally treated. Survived but never talked about it. The bombing was justified https://t.co/SuDkK1wEEZ,1
+9384,survived,Scotland,@PixelJanosz @Angelheartnight I remember now. There was a British man who survived both also. Can't remember his name though.,0
+9385,survived,,RT THR 'RT THRArchives: 1928: When Leo the MGM Lion Survived a Plane Crash #TBT http://t.co/Wpkl2qNiQW http://t.co/BD52FxDvhQ',1
+9386,survived,Puerto Rico,@duchovbutt @Starbuck_Scully @MadMakNY @davidduchovny yeah we survived 9 seasons and 2 movies. Let's hope for the good. There's hope ??????,0
+9387,survived,,There are people who plotted against me that are still wondering how I survived,0
+9388,survived,"Austin, TX",Survived Spanish!! @ Sweet Ritual https://t.co/inIqzfyioi,0
+9391,survived,,ÛÏ@BBCWomansHour: Setsuko Thurlow survived the #Hiroshima bomb. This is her story: http://t.co/cvjYML7KrM http://t.co/FpH01U3eIiÛ,1
+9393,survivors,AUSTRALIA-SOUTHAFRICA-CAMBODIA,The Cafe Run by Acid Attack Survivors in #India http://t.co/qmiF0bLwOa http://t.co/l6PIf3LpEn,1
+9395,survivors,,Dying with debt can be costly for survivors,0
+9396,survivors,,Hiroshima survivors fight nuclear industry in Brazil ̢?? video http://t.co/GLZmGBM7w0,1
+9397,survivors,,"Tricycle toddler atomic bomb
+http://t.co/ljeRYHItwh In a fraction of a second Our decisions change the landscape of humanity.",1
+9401,survivors,Port Williams NS,Patient-reported outcomes in long-term survivors of metastatic colorectal cancer - British Journal of Surgery http://t.co/5Yl4DC1Tqt,1
+9402,survivors,,Dear @POTUS In the name of humanityI apologized to #Hiroshima Survivors.R u ready to do so?#Japan #nuclearweapons http://t.co/TWykzN4rlC,1
+9403,survivors,,#coppednews Haunting memories drawn by survivors http://t.co/Wx11d69gEZ,1
+9404,survivors,"Chicago, IL","RT @kotowsa: South SudanÛªs war on women: survivors say rape has become 'just a normal thing'
+https://t.co/MexwoHd3TG http://t.co/gB46FiD2wE",1
+9405,survivors,"Dallas, TX ",Haunting memories drawn by survivors http://t.co/pRAro2OWia,1
+9406,survivors,"SÌ£o Paulo, Brasil",Hiroshima survivors fight nuclear industry in Brazil ÛÒ video http://t.co/E7SHtYLbnL,1
+9408,survivors,,Survivors remorse is good,0
+9410,survivors,,"#WorldNews
+ Fears over missing migrants in Med - BBC News - Home:
+Rescuers search for survivors after a boat carr.. http://t.co/iJoBZ3MZp0",1
+9411,survivors,,@MithiTennis @CrackedGem Which is why I want her to be better - which means death awaits her. Most of us aren't heroes we are survivors,0
+9414,survivors,WORLD,4 THOSE WHO CARE ABOUT SIBLING ABUSE SURVIVORS join the new family tree: http://t.co/LQD1WEfpQd http://t.co/GgnbVZoHWu,0
+9416,survivors,Stowmarket,Breaking news: Haunting memories drawn by survivors http://t.co/PCjBvrs7xw,1
+9417,survivors,"Philadelphia, Pennsylvania",Molecularly targeted cancer therapy for his #LungCancer gave Rocky his life back. http://t.co/TwI3pYm7Us http://t.co/qT8JMD9pI1,0
+9418,survivors,Texas,Violators of the new improved Reddit will be shot into the sun. Survivors will be hurled into a black hole and then nuked.,0
+9420,survivors,"Lake Monticello, VA",As Anniversary Nears Atomic Bomb Survivors Speak Out Against Nuclear Power - http://t.co/Uo8GrDAuAT,1
+9421,survivors,Sao Paulo,Hiroshima survivors fight nuclear industry in Brazil ÛÒ video http://t.co/uvM975yha2,1
+9422,survivors,Upstairs.,The second part which focuses on the survivors is really difficult to watch but at the same time is really powerful.,1
+9425,survivors,"WV, love the blue and gold",@Arovolturi3000 survived because of magic she is searching the wood for survivors outside of London,1
+9430,survivors,"Berlin, NY, DC, Malibu",@FedPorn I feel your pain. Survivors will look back on this period as most absurd in human history. Satire indistinguishable from reality.,1
+9431,survivors,,Û÷Faceless body belonged to my sisterÛª: #Hiroshima #Nagasaki #nuke survivors recall horrors 70 years on ÛÓ RT News http://t.co/918EQmTkrL,1
+9432,survivors,Shanghai,Survivors of Shanghai Ghetto reunite after 70 years - http://t.co/1Ki8LgVAy4 #Shanghai #China #??,0
+9434,survivors,Upstairs.,People with netflix there's a really good documentary about Hiroshima narrated by John Hurt. 2 Parter that interviews Pilots + Survivors.,0
+9435,survivors,Anywhere Safe,@LawfulSurvivor T-Dog had been holed up in an apartment store with several other survivors Glenn Morales Andrea Jacqui and Merle.--,1
+9436,survivors,"Marietta, GA",Stemming from my #Cubs talk- the team rosters 2 cancer survivors in @ARizzo44 & @JLester34...@Cubs fans: help another http://t.co/XGnjgLE9eQ,1
+9438,survivors,,Haunting memories drawn by survivors http://t.co/WJ7UjFs8Fd,1
+9439,survivors,Numenor,Haley Lu Richardson Fights for Water in The Last Survivors (Review) http://t.co/oObSCFOKtQ,0
+9441,survivors,,Remembrance http://t.co/ii4EwE1QIr #Hiroshima http://t.co/H3vUsqzyQo,1
+9445,terrorism,,"Truth...
+https://t.co/h6amECX5K7
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/B8iWRdxcm0",0
+9446,terrorism,everywhere,News786-UK Islamist Cleric Anjem Choudary Charged Under Terrorism Act: http://t.co/u7bBeNXWYK,1
+9448,terrorism,,@RobPulseNews @huyovoeTripolye Phillips should be charged for assisting terrorism. LDNR-terrorists' organizations. http://t.co/XwnJYsV9V9,1
+9449,terrorism,,"Truth...
+https://t.co/nXS3Z1kxiD
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/UDKMAdKuzY",1
+9450,terrorism,USA,Preacher faces UK terrorism charges http://t.co/daPlllFuqK,1
+9451,terrorism,"Salt Lake City, UT",Woman sneaks into airplane cockpit; terrorism not suspected http://t.co/1W58Ehv9S1 http://t.co/p8Ih0hni3l,1
+9452,terrorism,"Winston-Salem, NC",NC Senate follows House on legal action on terrorism damages - Winston http://t.co/2Y5MoRpugt,1
+9453,terrorism,,#Politics DemocracyÛªs hatred for hate: Û_ Dawabsha threaten to erode Israeli democracy. Homegrown terrorism ha... http://t.co/q8n5Tn8WME,1
+9454,terrorism,,"Truth...
+https://t.co/beJfTYgJIL
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/jlCZiDZ7Vu",0
+9455,terrorism,Earth 0,OMEGA MEN Writer Explores Terrorism Religion In an 'Epic KYLE RAYNER Story' https://t.co/utc7pdIdfo via @Newsarama,0
+9456,terrorism,"New Jersey, USA",Cross-border terrorism: Pakistan caught red-handed again http://t.co/uDj50J3MV4,1
+9457,terrorism,,CTD arrest three vital criminals from Orangi: KARACHI: Counter-Terrorism Department (CTD) of the Sindh Police ... http://t.co/Le4brduau9,1
+9458,terrorism,"Lancaster, CA",Still domestic terrorism https://t.co/GevRMBVznB,1
+9460,terrorism,,DireTube Information ÛÒ Egypt Cyprus and Greece agreed to fightåÊterrorism http://t.co/V6IjxCCD2I http://t.co/YSXhFWMGOD,1
+9463,terrorism,,"Does this apply to Muslims/terrorism?
+Or Catholicism/homophobia?",0
+9465,terrorism,Melbourne,Perspectives on Terrorism - Understanding Jihadi Proto-States: http://t.co/d5h4jif1y3,1
+9466,terrorism,,DHS Refuses to Call Chattanooga Û÷Islamic TerrorismÛª out of respect for MUSLIMS ... http://t.co/u8RGB51d22 via @po_st http://t.co/2tnu95VGFE,1
+9467,terrorism,,Pakistan's Supreme Court rules to allow military trials for suspects in terrorism cases http://t.co/ajpbdCalew,1
+9468,terrorism,Planet Earth,Domestic terrorism. No ifs ands or buts about it. YOU CREATED THIS @GOP http://t.co/hFgjgFGfeL,0
+9469,terrorism,"Reston, VA, USA",A good piece on Israeli incitement and Jewish terrorism by Beinart: http://t.co/OT2OOOEdts,1
+9470,terrorism,Jeddah_Saudi Arabia.,In #islam saving a person is equal in reward to saving all humans! Islam is the opposite of terrorism!,0
+9471,terrorism,"Tampa, FL",OMEGA MEN Writer Explores Terrorism Religion In an 'Epic KYLE RAYNER Story' http://t.co/Hr88CWxPGz #Newsarama,0
+9472,terrorism,Riyadh,In #islam saving a person is equal in reward to saving all humans! Islam is the opposite of terrorism!,1
+9474,terrorism,"toronto, ontario",@AdamNibloe Arrest report: Affiliation with Terrorism,1
+9480,terrorism,,"Truth...
+https://t.co/2Y4RGob7pj
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/mVes6VsSyN",1
+9481,terrorism,,Really cannot condemn an entire group based on the actions of a few.. A heart-warming unity against terrorism.. http://t.co/HHPvPaEL4n,1
+9482,terrorism,,"Truth...
+https://t.co/p5ZIcjUdXO
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/kZhB8zX6YC",1
+9484,terrorism,,@KurtSchlichter He's already done it by negotiating with the #1 state of terrorism in the World. What was his hurry in trying to get a deal,1
+9485,terrorism,,http://t.co/EQjCpWILVn: Articles In Saudi Press Reject Russian Initiative For Regional Alliance With Assad Regime To Fight Terrorism,0
+9486,terrorism,,"Truth...
+https://t.co/k44tL3rfMy
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/ipT0hoNoTI",0
+9488,terrorism,,Pakistan Supreme Court endorses military courts for terrorism cases http://t.co/sZeapuEuvy,1
+9489,terrorism,,Online Homeland security: An Appraisal of #PakistanÛªs #Anti-Terrorism #Act https://t.co/mRoSPd9878,0
+9490,terrorism,,"Truth...
+https://t.co/4ZQrsAQrRT
+#News
+#BBC
+#CNN
+#Islam
+#Truth
+#god
+#ISIS
+#terrorism
+#Quran
+#Lies http://t.co/6ar3UKvsxw",1
+9491,terrorism,"Bangalore City, India",Cross-border terrorism: Pakistan caught red-handed again - The Times of India http://t.co/uiqsfgZoOx,1
+9492,terrorist,,Captured terrorist Naved not registered as our citizen: Pakistan http://t.co/0FS9kSV5xK,1
+9493,terrorist,Iraq|Afghanistan| RSA |Baghdad,Natural lubrication !!!!!!!!!!!#MetroFmTalk,0
+9495,terrorist,peshawar pakistan ,@OfficialMqm you are terrorist,0
+9496,terrorist,,Signing a petition to seek mercy on a death punishment for a convivted terrorist is a job well done in India. But asking a foreign govt 1/n,1
+9499,terrorist,,HereÛªs how media in Pakistan covered the capture of terrorist Mohammed Naved http://t.co/3MtWh0jJns,1
+9500,terrorist,world,Update on Pulwama encounter that began earlier today: 2nd terrorist killed by security forces. Security forces... http://t.co/m5RjekVDDp,1
+9501,terrorist,,HereÛªs how media in Pakistan covered the capture of terrorist Mohammed Naved http://t.co/f7WqpCEkg2,0
+9502,terrorist,,Fresh encounter in Pulwama of J&K one terrorist killed others holed up inside a house http://t.co/oEf123l5Rc,1
+9503,terrorist,Beit El - Israel,'The Terrorist Tried to Get Out of the Car; I Shot Him' http://t.co/VSoxKbt6Nq,1
+9504,terrorist,,Me pulling over and fighting the hoes that called Zayn a terrorist http://t.co/FY30fV0Qbx,1
+9505,terrorist,"New Delhi, India",Udhampur terror attack: NIA takes over probe Pakistani terrorist quizzed; Pak denies link http://t.co/ogZJOkd7Sv #Elections #AcheDin #Û_,1
+9507,terrorist,,@narendramodi @bjpsamvad Hiroshima is now beautiful on the ashes of the old. So could be a terrorist Pakistan.,1
+9508,terrorist,Iraq|Afghanistan| RSA |Baghdad,Seek help warra #MetroFmTalk,0
+9509,terrorist,"Sanganer, Rajasthan",@rahulkanwal why Jammu is soft target for terrorist,1
+9510,terrorist,Loading...,Anyone missing their license plate? Two stolen ones found on terrorist's car... http://t.co/CWGCciw3V6,1
+9511,terrorist,Chennai,Pakistan Disowned Kasab Now Disowns Naved: State of Denial?: Naved the terrorist captured alive after anÛ_ http://t.co/HGDrK81sN4,1
+9513,terrorist,"BILASPUR,CHHATTISGARH,495001",The Pak terrorist who has been caught alive must be tried fast not delayed as KasabWe must send very hard message to Pak instead of Biryani,1
+9519,terrorist,Niall's arms,@ShipsXAnchors IDEK HOW IS THERE PEOPLE WHO ACTUALLY THINK HE'S A TERRORIST,0
+9520,terrorist,Canada,You May Know Me from Such Roles as Terrorist #4 http://t.co/xImPncZXtH,0
+9522,terrorist,proudly South African,@SwiftyCommissh @TaoistInsight @ImmortalTech Some jewish ppl agree tht Israel is a bully nd a terrorist state killin palestine kids nd women,1
+9524,terrorist,,@BarackObama Senator John McCainÛªs Whoops Moment : Photographed Chilling With ISISÛ_ http://t.co/JNrOMsE1Z2 @acmilan http://t.co/w6Yu7Qs4CV,0
+9525,terrorist,MAD as Hell,"RT AbbsWinston: #Zionist #Terrorist Demolish Tire Repair Shop Structure in #Bethlehem
+http://t.co/ph2xLI8nVe http://t.co/22fuxHn7El",1
+9526,terrorist,,Three Israeli soldiers wounded in West Bank terrorist attack - Haaretz http://t.co/u4gSBNU8wc,1
+9529,terrorist,,Three Israeli soldiers wounded in West Bank terrorist attack via /r/worldnews http://t.co/su4ZVWADj7,1
+9531,terrorist,MAD as Hell,RT AbbsWinston: #Zionist #Terrorist kidnapped 15 #Palestinians in overnight terror on Palestinian Villages Û_ http://t.co/J5mKcbKcov,1
+9533,terrorist,????? ???? ????,#UdhampurAgain 2 terrorist shot dead.. #Udhampur,1
+9537,terrorist,Florida,@lovemywife1983 @FoxNews like shedid on 9/11 4the public facts I am not a journalist the Bush's washard on stopping more than just terrorist,1
+9538,terrorist,Charleston S.C.,Isn't it ironic that on the anniversary of Hiroshima our current President is helping a terrorist nation acquire nuclear weapons. #TRAITOR,1
+9539,terrorist,MAD as Hell,RT AbbsWinston: #Zionist #Terrorist kidnapped 15 #Palestinians in overnight terror on Palestinian Villages Û_ http://t.co/J5mKcbKcov,1
+9540,terrorist,,Three Israeli soldiers wounded in West Bank terrorist attack via /r/worldnews http://t.co/9TyucdWh3g,1
+9541,terrorist,Iraq|Afghanistan| RSA |Baghdad,Don't say @ALIPAPER: women got problems this #keepingtheviginaclean thing is very interesting n less expensive #metrofmtalk',0
+9542,threat,Everywhere,Build and share your own custom applications all within @ThreatConnect w/ TC Exchange http://t.co/hRL4XNJ9K7 #infosec #DFIR #ThreatIntel,0
+9547,threat,,Is this the end of AustraliaÛªs best burger? http://t.co/te5tDLyIMN via @newscomauHQ,0
+9548,threat,Hyrule,@KingGerudo_ to the largest moblin's he'd leaving the biggest one for Red and fired. With one strike already the threat was reduced -->,0
+9550,threat,front row at a show,WHITE AMERICANS ARE THE BIGGEST THREAT IN THE WORLD. DUH https://t.co/7PaOvYzTtw,0
+9551,threat,"Ohio, USA",The few I warned about .. Were just as I expected.. They are a threat to his soul,0
+9552,threat,"London, UK","Generational Û÷British schismÛª over privacy threat of drones http://t.co/dqtMTPqmBR
+ #drones #privacy http://t.co/dMsnYPtscY",0
+9553,threat,"Arlington, VA",Get access to the most extensive sources of threat information right out of the box. Then easily add your own internal intelligence. #BHUSA,0
+9554,threat,God.Family.Money,If a nigga was a threat then that boy ah be thru ????,0
+9555,threat,Everywhere,Purple Heart Vet Finds Jihad Threat on His Car at Mall: ÛÏAll of you Islamaphobe vets... http://t.co/hWnyXXKczz,0
+9556,threat,"Kwajalein/Virginia/Dayton, OH",@dmassa5 Definite triple crown threat. Him and Harper both.,1
+9557,threat,"Bi̱an,Laguna",Meek Mill responds to Drake۪s OVO Fest set with wedgie threat http://t.co/qqSKYbARNg,1
+9559,thunder,"Enfield, UK",Illusoria Icarus nowplaying check out http://t.co/E2WgREIcmZ,0
+9562,thunder,"Atlanta, GA",Am I hearing thunder or trucks?,0
+9563,thunder,"South Carolina, USA",The worst part is seeing lightning and trying to guess when the thunder will crack,0
+9564,thunder,,This thunder is beautiful,0
+9565,thunder,"Enfield, UK",#PlayingNow #BLOODBOUND Seven Angels Media Stream http://t.co/dlY6rUuSqK,0
+9566,thunder,"Decatur, GA",@KristyLeeMusic brings her Alabama thunder back to the Attic SEPTEMBER 26! Tickets: https://t.co/B7ZwEVsrGO,0
+9567,thunder,,@DevinJoslyn thunder and lighting ????,0
+9568,thunder,London,Okay maybe not as extreme as thunder and lightning but pretty much all other types! #FIFA16 https://t.co/ETuuYISLHw,0
+9569,thunder,"Atlanta, Georgia USA",@ATL_Events and thunder :-o,0
+9571,thunder,Gander NF,Random wind gust just came through #Gander. Probably some convection outflow. Haven't heard any thunder yet but a few spits of rain #nlwx,1
+9572,thunder,"Leeds, England",@LightUmUpBeast never watched pres think hes a dick like thunder though,0
+9574,thunder,,@OriginalFunko @Spencers THUNDER BUDDYS!!!! THUNDER BUDDYS!!!!,1
+9575,thunder,,@OriginalFunko @Spencers THUNDER BUDDYS!,0
+9576,thunder,"New York, USA",Waldo Thunder 12U Cooperstown Dreams Park 2015 dedicated to #JoeStrong #GoKitGo http://t.co/eSK4yvzvaP,0
+9577,thunder,,The one thing I like about here is thunder .. Heheh,0
+9579,thunder,nowhere,Super loud thunder woke me up from my very nice nap,0
+9580,thunder,,Heavy rain frequent thunder and gusty winds moving into parts of Uptown and Midtown. http://t.co/KQJevYqzLV - CN http://t.co/HmWhob7prs,1
+9581,thunder,,Ebay Snipe RT? http://t.co/SlQnph34Nt Lego Power Miners Set 8960 Thunder Driller Boxed. ?Please Favorite & Share,0
+9582,thunder,,Thunder lightening torrential rain and a power cut!,1
+9583,thunder,,THIS IS RELAXING! #thunder #SoothMySlumber #WATERMELOANN #populardemand w/ @Soak... (Vine by @thewebbeffect19) https://t.co/F0QIRS5lJA,0
+9585,thunder,"Palm Desert, CA",The Flash And The Thunder by WC Quick on Amazon Kindle and soon in PRINT at Amazon Books via Create... http://t.co/oS1WjRvx5c via @weebly,0
+9586,thunder,,The thunder shook my house woke my sister and made car alarms go off ????,1
+9589,thunder,,I hear lightening and see thunder,1
+9590,thunder,,I was over here dreaming peacefully then that loud ass thunder wanted to scare me. ??,1
+9591,thunder,,My brother is crying cause the thunder lmao,0
+9592,thunder,,That was the l9udest thunder I've ever heard,0
+9593,thunder,"Palma, Islas Baleares",@AsimTanvir @NemesisK_PES @KevR_7 Snow? Thunder and lightning?,1
+9594,thunder,,thunder is legit,0
+9595,thunder,??,"Oh shit its rly sheeting
+Aaaaaand there's the thunder and lightning
+I missed summer storms",1
+9596,thunder,IndiLand ,My mama scared of the thunder ????,0
+9597,thunder,"Accra,Ghana","Please please u gotta listen to @leonalewis # essenceOfMe and thunder it's major
+#she's #back ????????",0
+9598,thunder,Baydestrian,suddenly it's off & on gloomy & thunder so loud it shakes the windows? Not ever on the Bay Area. Miss me w/that lol http://t.co/x4eCGGvnSN,1
+9600,thunder,"Macon, GA",#thunder outside my house this afternoon #gawx ??????????????????,1
+9602,thunder,,L B #Oklahoma #Thunder DURANT NBA ADIDAS OKLAHOMA CITY THUNDER YOUTH LARGE SWINGMAN JERSEY RETAIL $75 #NBA #Durant http://t.co/T81oayjoWC,0
+9603,thunder,,Did I just hear thunder? ??????,0
+9605,thunder,,Thunder???,0
+9606,thunder,,I love the sound of thunder rumbling across the mountains.,0
+9607,thunder,gamertag: bexrayandvav ,@HaydnExists so glad i saved them all at once then didnÛªt want you stealing my thunder :P,1
+9608,thunderstorm,"Tulsa, Oklahoma",Severe Thunderstorm Warning for Oklahoma County until 10:30pm. Radar here: http://t.co/2HV2y2M2oZ #okwx,1
+9609,thunderstorm,,NIggas playing in the thunderstorm.. 'HOPE THE LORR BLESS EM' ????,1
+9610,thunderstorm,,Advice from Noah: Dont go running in a thunderstorm,0
+9611,thunderstorm,Jupiter,#usNWSgov Special Weather Statement issued August 05 at 10:40PM EDT by NWS: ...STRONG THUNDERSTORM WILL IMPACT... http://t.co/TQ1rUQD4LG,1
+9612,thunderstorm,,Severe Thunderstorm Warning issued August 05 at 9:31PM CDT until August 05 at 10:15PM CDT by NWS http://t.co/h9i6moZAsK,1
+9613,thunderstorm,United States,OUN cancels Severe Thunderstorm Warning for Lincoln Logan Oklahoma [OK] http://t.co/bTi8JAMFiu #WX,1
+9616,thunderstorm,Jupiter,#usNWSgov Severe Weather Statement issued August 05 at 10:38PM EDT by NWS: ...THE SEVERE THUNDERSTORM WARNING ... http://t.co/EpzgG4uqJI,1
+9617,thunderstorm,USA,@museawayfic @beenghosting @xylodemon ok ok what if I make the close quarters an abandoned cabin in the woods IN A THUNDERSTORM,1
+9618,thunderstorm,,@RachelRofe tired it' 5:36 am. Woke up to a thunderstorm lightning and rain. How are you?,0
+9619,thunderstorm,Sydney,Beautiful lightning as seen from plane window http://t.co/5CwUyLnFUm http://t.co/1tyYqFz13D,0
+9620,thunderstorm,"El Dorado, Arkansas",NWS has Continued a Severe Thunderstorm Warning for Oklahoma-OK until 10:30 PM,1
+9625,thunderstorm,East Coast,THE NATIONAL WEATHER SERVICE IN LITTLE ROCK HAS ISSUED A * SEVERE THUNDERSTORM WARNING FOR... VAN BUREN COUNTY IN Û_ http://t.co/KJsvW06GBV,1
+9627,thunderstorm,"Asheville, NC",iNWS Alert SPSGSP from 8/5/2015 10:40 PM to 11:15 PM EDT for Pickens County: STRONG THUNDERSTORM WILL IMPACT... http://t.co/LdcwKyuaFf,1
+9629,thunderstorm,"Oklahoma City, OK",Severe Thunderstorm Warnings have been cancelled in central Oklahoma. Still expect 50 mph winds penny sized hail,1
+9632,thunderstorm,WORDLDWIDE,"Conditions for Paris FR at 4:00 am CEST: Current Conditions:
+Fair 68 FForecast:
+Thu - Sunny. High: 87 Low: 61
+Fri - PM Thunderstorm...",0
+9634,thunderstorm,73101,Severe Weather Statement issued August 05 at 9:33PM CDT by NWS: ...THE SEVERE THUNDERSTORM WARN... http://t.co/1EOf1Wxnpj #Skywarn #OKwx,1
+9636,thunderstorm,,Severe Thunderstorm Warning including Russellville AR Clarksville AR Dardanelle AR until 10:15 PM CDT http://t.co/n844h1ASPj,1
+9638,thunderstorm,,RT @LivingSafely: NWS posts Severe #Thunderstorm Warnings for parts of #AR #NC #OK. Seek strong shelter if at risk: http://t.co/kEa5l3b1AE,1
+9639,thunderstorm,Oklahoma City,Severe Thunderstorm Warning for Oklahoma County until 10:30pm. http://t.co/RsdkWZRc8g #okwx,1
+9640,thunderstorm,,Falling asleep to the sounds to thousands of River Plate fans in the stadium and a thunderstorm. #VivaArgentina,0
+9642,thunderstorm,South Carolina,Strong Thunderstorm 4 Miles East of Pickens Moving NE At 20 MPH. Pea Size Hail and Wind Gusts Up to 40 MPH... #scwx http://t.co/TsaLetFtkt,1
+9643,thunderstorm,"Tornado Alley, USA ",Severe Thunderstorm Warning for Oklahoma County in OK until 10:30pm CDT. #okwx,1
+9644,thunderstorm,,OUN continues Severe Thunderstorm Warning for Oklahoma [OK] till 10:30 PM CDT http://t.co/oIM6Po8XCu,1
+9645,thunderstorm,"Nicoma Park, OK",Severe Thunderstorm Warning including Midwest City OK Del City OK Choctaw OK until 10:30 PM CDT http://t.co/ogxSY4GWD1,1
+9646,thunderstorm,"Memphis, TN",Severe Thunderstorm pictures from across the Mid-South http://t.co/UZWLgJQzNS,1
+9650,thunderstorm,"Lethbridge, Alberta, Canada",[HIGH PRIORITY] SEVERE THUNDERSTORM WATCH ENDED Issued for Lethbridge [Updated: Aug 05th 20:29 MDT] http://t.co/yqYiwjN8eZ,1
+9651,thunderstorm,,A STRONG THUNDERSTORM WILL AFFECT CENTRAL HALIFAX COUNTY THROUGH 1145 PM EDT for Halifax [VA] till 11:45 PM EDT http://t.co/MjSTefgGU5,1
+9652,thunderstorm,Helsinki,"Thunderstorm in Helsinki
+#thunder #lightning #lightningstrike #thunderstorm #nature #HelsinkiÛ_ https://t.co/rJJXUcX5PM",1
+9653,thunderstorm,Killafornia made me ,9:35 pm. Thunderstorm. No rain. 90 degrees. This weather weird.,1
+9654,thunderstorm,"Lethbridge, AB, Canada",Wed 20:30: Mainly cloudy. 60 percent chance of showers this evening with risk of a thunderstorm. Low 10.,0
+9655,thunderstorm,"El Dorado, Arkansas",NWS has issued a Severe Thunderstorm Warning for Oklahoma-OK until 10:30 PM,1
+9656,thunderstorm,NC,I need a thunderstorm please!,0
+9657,thunderstorm,,#usNWSgov Severe Weather Statement issued August 05 at 10:38PM EDT by NWS: ...THE SEVERE THUNDERSTORM WARNING ... http://t.co/7HuEN4rWrn,1
+9659,tornado,God is Love. ,My room looks like a tornado passed through it and my OCD is not having it.,0
+9660,tornado,cognitive dissonance town,@soonergrunt better than tornado!,0
+9661,tornado,I O W A,@BrrookkllyynnR came through like a tornado and destroyed me. such beautiful words,0
+9663,tornado,"Gurgaon, Haryana. ",#TornadoGiveaway åÊ #thebookclub åÊ Join in!! http://t.co/LjOMCTUZFy https://t.co/2zGVSLOX5p,0
+9664,tornado,Wherever I'm sent,@ticklemeshawn @evebrigid I'll bet I do,0
+9665,tornado,,Lily Xo is a sexy cowgirl out in the sticks http://t.co/qew4c5M1xd View and download video,0
+9666,tornado,,Blonde teen Courtney Laudner teases in her panties http://t.co/qew4c5M1xd View and download video,0
+9667,tornado,Austin,73rd GOODE Water Ski National Championships will go on as planned next week http://t.co/PgKBT3MBAp. (Event w/ damage from a tornado on Mon),1
+9669,tornado,Midwest,(AR) Severe Thunderstorm Warning issued August 05 at 9:12PM CDT until August 05 at 9:45PM CDT by NWS http://t.co/AYfdjeB7Hy #arwx,1
+9670,tornado,Canada,Second tornado confirmed in SundayÛªs storm http://t.co/Ffnzit7kgN,1
+9672,tornado,,Dakota Skye gets horny with some porn then gets her juicy pussy pounded http://t.co/qew4c5M1xd View and download video,0
+9673,tornado,Midwest,(OK) Severe Thunderstorm Warning issued August 05 at 8:29PM CDT until August 05 at 9:15PM CDT by NWS http://t.co/O8X4M5eR6b #okwx,1
+9674,tornado,"Asheville, NC",I liked a @YouTube video http://t.co/itnKBxgWLH Lexi Belle for Oklahoma tornado victims,1
+9675,tornado,"Fort Knox, KY 40121",@SakhalinTribune Calgary area tornado warnings end as thunderstorms move eastward,1
+9678,tornado,Los Angeles,Guys he can run so fast he creates a tornado WITHOUT BREAKING A SWEAT. He makes Superman look like a slowpoke. He can be a POC.,0
+9680,tornado,california,I'm a tornado looking for a soul to take,0
+9681,tornado,Toronto,Environment Canada confirms 2nd tornado touched down last weekend åÈ http://t.co/x8zqbwNfO1,1
+9683,tornado,"San Antonio, TX",Pizza and beer in a tornado in Austin. Windy af right now,1
+9684,tornado,Providence RI / Lisnaskea ,Still can't get over the thunderstorm/tornado we were woken up to yesterday. Half the street is still in the dark! http://t.co/Y8h5v1j2y7,1
+9686,tornado,"Dindigul,TamilNadu.","@kunalkapoor Photo of the Day: Storm
+Chaser
+http://t.co/4WJy7seHmw
+#photography #pod",1
+9687,tornado,,Heather Night and Ava Sparxxx enjoy a wild teen threesome http://t.co/qew4c5M1xd View and download video,0
+9688,tornado,,Brunette beauty Night A stretches out on a victorian sofa http://t.co/qew4c5M1xd View and download video,0
+9690,tornado,,@Rebelmage2 I'm glad you got away XD But My 'be safe' was in reference to a tornado near calgary and drum heller at around 4 :O,1
+9691,tornado,,Marley Brinx gives a striptease and then spreads her legs for a pussy pounding http://t.co/qew4c5M1xd View and download video,0
+9695,tornado,,Weak but distinct rotation fully condenses near Villa Ridge MO today near MCV center. A 'sub-tornado?' Video: https://t.co/Fd9DzspuGk,1
+9697,tornado,,@Ayshun_Tornado then don't,0
+9698,tornado,,Brunette teen Giselle Locke teases at home http://t.co/qew4c5M1xd View and download video,0
+9699,tornado,canada,Calgary area tornado warnings end as thunderstorms move eastward - CBC.ca: CBC.ca Calgary area tornado warnings endÛ_ http://t.co/ST9jPZ8Y24,1
+9701,tornado,khartoum sudan,A tornado flew around my room before you came,0
+9702,tornado,Naperville,Illinois Tornado Slipped Under The Radar Emergency Officials Say http://t.co/P4KOfYtkdx,1
+9703,tornado, ,Maybe that's what happens when a tornado meets a volcano,1
+9704,tornado,,I feel like a tornado http://t.co/iZJK6kpWiZ,1
+9705,tornado,,@Toocodtodd Hey @wyattb23 let's challenge then to a tornado tag tlc match. Winner take all.,0
+9706,tornado,"Kentucky, USA",Tornado has to make the playoffs. They have 3 guys with 20+homers already and they just added Tulowitzki and Price,0
+9707,tornado,,Pretty teen Hayden Ryan poses and strips out of her purple top http://t.co/qew4c5M1xd View and download video,0
+9708,tragedy,"New Delhi, India",Rly tragedy in MP: Some live to recount horror http://t.co/TTb9oiL8R2 #TopStories #India timesofindia,1
+9709,tragedy,,shit is hard to get over but sometimes the tragedy means it's over soulja..,1
+9710,tragedy,,Maaaaan I love Love Without Tragedy by @rihanna I wish she made the whole song,0
+9712,tragedy,New Jersey/New York,There is no greater tragedy than becoming comfortable with where you are in life.,0
+9714,tragedy,#SandraBland,Don't forget tragedy ?????????????? https://t.co/GaJTUGAUi7,0
+9715,tragedy,,'you canÛªt research collective memory' The 1st Rule of writing diverse should be don't touch another group's tragedy https://t.co/PHFoEozYPS,0
+9716,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/72ix7vM87w,1
+9717,tragedy,'Merica,'Sometimes God uses sorrowful tragedy to set the stage for glorious redemption.' -David Platt Run forÛ_ https://t.co/86V81dv00E,0
+9718,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/Calk5nv5Vc,1
+9719,tragedy,"Pennsylvania, USA",@HomeworldGym @thisisperidot D: What? That's a tragedy. You have a wonderful nose,0
+9722,tragedy,"Harper Woods, MI","A real life tragedy:
+Monica's hair on any given season of Friends",0
+9723,tragedy,India,Railways caught unawares by MP tragedy; Accident spot never marked as 'vulnerable' - Times ofÛ_ http://t.co/cEdCUgEuWs #News,1
+9724,tragedy,"San Diego, CA",The tragedy of life is not that it ends so soon but that we wait so long to begin it. ~ W.M. Lewis #quotes,0
+9728,tragedy,,Railways caught unawares by MP tragedy; Accident spot never marked as Û÷vulnerableÛª http://t.co/UB1JZskmRc,1
+9729,tragedy,dubai ,"@TOIIndiaNews ofcourse
+
+Just 8 minute b4 tragedy another train had crossed this place
+
+N a flash flood caued washing of tracks..",1
+9730,tragedy,,#ModiMinistry Rly tragedy in MP: Some live to recount horror http://t.co/s43wE7Oe2i,1
+9731,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/vScPGMsJXY,1
+9732,tragedy,staggering on tenement roofs,@tanehisicoates even the second half has that great Greek Tragedy laced monologue by Charlize. coulda been so much more.,0
+9733,tragedy,,This is a tragedy: I added the wrong book to my TBR list now I can't find the right one. This is what comes of browsing just on gr homepage.,0
+9734,tragedy,Canada,DTN India: Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water... http://t.co/WK63tm34a0,1
+9736,tragedy,Silicon Valley,@sriramk @DLin71 @pmarca Tragedy of commons pertains to public ownership. Not property rights based markets. The opposite of what you say.,0
+9737,tragedy,,#breakingnews Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into wa... http://t.co/eYOrBmF3O3,1
+9738,tragedy,houston,@itss_selenaluna like a beautiful ass tragedy lol,1
+9739,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/0Xh758OnUP,1
+9741,tragedy,Orlando ,Back home they mad cause I chill with the white boys .,0
+9744,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/CaR5QEUVHH,1
+9745,tragedy,,Robert Gagnon reviews the catastrophe of imposing same-sex marriage and how Christians should respond http://t.co/HIpklxpHnp,1
+9746,tragedy,"Noida, NCR, India",Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called myÛ_ http://t.co/gDjTzkpCHK,1
+9749,tragedy,M̩xico,"I'm gunning down romance
+It never did a thing for me
+But heartache and misery
+Ain't nothing but a tragedy http://t.co/jhUPOgbvs8",0
+9750,tragedy,India,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called my daughters and said t...,1
+9752,tragedy,NYC / International,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/ZkgQSpwYj3,1
+9753,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/21hsrrqZOu,1
+9754,tragedy,,Rly tragedy in MP: Some live to recount horror: ÛÏWhen I saw coaches of my train plunging into water I called ... http://t.co/xtlJz7BjgL,1
+9755,tragedy,Jamaica,Rt hirochii0: There is no country that making fun of Hiroshima 's tragedy but Korea. http://t.co/And1Btizao #Indonesia #Malaysia #Jamaica #Û_,1
+9756,tragedy,"Los Angeles, CA",Can't find my ariana grande shirt this is a fucking tragedy,0
+9757,tragedy,America,@CSAresu American Tragedy http://t.co/SDmrzGErYX,1
+9759,trapped,"PA, USA","Leitchfield KY:
+
+ Bella Edward & Rosalie need rescue/adoption/local foster home(s)/sponsorships.
+
+ Trapped &... http://t.co/Ajay0sNPlg",1
+9760,trapped,"London, England",@almusafirah_ you feel trapped innit ??,0
+9761,trapped,call me peach or sam lo,IM TRAPPED IN THE DAMN GAS PUMP THERE ARE TWO SUVS ON EITHER SIDE FUCK YOU DICKHEADS,0
+9762,trapped,"LITTLETON, CO, USA, TERRAN",Photo: prettyboyshyflizzy: Lol she trapped them into that so beautifully http://t.co/FKXCsztezB,0
+9763,trapped,Orlando,Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Hollywood movie about trapped miners starring... http://t.co/KK8cnppZMk,0
+9764,trapped,shoujo hell ,@onihimedesu the whole city is trapped! You can't leave the city! This was supposed to be a normal sports manga wit a love triangle (c),1
+9765,trapped,10 Steps Ahead. Cloud 9,Bomb head? Explosive decisions dat produced more dead children than dead bodies trapped tween buildings on that day in September there,1
+9766,trapped,central chazifornia,salute to all the kids still trapped in adult bodies.,0
+9769,trapped,,@BattleRoyaleMod when they die they just get teleported into somewhere middle of ocean and stays trapped in there unless they decides 2/6,0
+9770,trapped,,Hollywood movie about trapped miners released in Chile http://t.co/YeLJPQHmEd,0
+9771,trapped,,Hollywood movie about trapped miners released in #Chile http://t.co/r18aUtnLSd #ZippedNews http://t.co/CNqaE9foj6,0
+9772,trapped,New York City,"Billionaires have a plan to free half a billion dollars trapped in Venezuela for two years @BlakeSchmidt reports.
+
+http://t.co/gbqTc7Sp9C",0
+9774,trapped,Utah,Hollywood movie about trapped miners released in Chile,0
+9775,trapped,????s ?? ????Ìø????Ì¡a,(?EudryLantiqua?) Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Holly... http://t.co/us1DMdXZVb (?EudryLantiqua?),1
+9776,trapped,T E X A S | wwat 8.24.14,I feel like that episode of Victorious when they all got trapped in an RV and almost died of heat stroke #MTVHottest One Direction,0
+9778,trapped,,#entertainment Hollywood movie about trapped miners released in Chile: SANTIAGO Chile (AP) ÛÓ The Hollyw... http://t.co/C22ecVl4Hw #news,0
+9779,trapped,worldwide,Hollywood Movie About Trapped Miners Released in Chile http://t.co/EXQKmlg4NJ,0
+9780,trapped,876 Jamrock.,Literally trapped in my room Cuz my bathroom being remodeled. The only exit is through a window,1
+9782,trapped,,@dramaa_llama but otherwise i will stay trapped as the worst lilourry stan ever AND without zarry what am I left with? NARRY. NO THANKS.,0
+9783,trapped,Puerto Rico,Hollywood Movie About Trapped Miners Released in Chile http://t.co/qkrLtrd39B,1
+9785,trapped,,trapped in its disappearance,0
+9787,trapped,"Georgia, USA",I trapped this cat in my room and it's going insane but it's not leaving it's too pretty! http://t.co/gRLxUrko8D,0
+9788,trapped,å_å_Los Mina Cityã¢,Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Hollywood movie about trapped miners starring... http://t.co/x8moYeVjsJ,0
+9790,trapped,,Hollywood Movie About Trapped Miners Released in Chile http://t.co/Fk1vyh5QLk #newsdict #news #Chile,0
+9791,trapped,"St Louis, MO",@BoyInAHorsemask its a panda trapped in a dogs body,1
+9794,trapped,,Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Hollywood movie about trapped miners starring... http://t.co/tyyfG4qQvM,1
+9795,trapped,WORLDWIDE!,#NZ Hollywood movie about trapped miners released in Chile http://t.co/0aJIsA5531 #HugoMatz,0
+9796,trapped,"Greensburg, PA",Did you know @lilithsaintcrow had a new release this week? BLOOD CALL 'An ancient evil has been trapped...' http://t.co/eSwNSetFtf Û_,0
+9797,trapped,,Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Hollywood movie about trapped miners starring... http://t.co/0f8XA4Ih1U,1
+9800,trapped,Like us on Face ,Hollywood Movie About Trapped Miners Released in Chile: 'The 33' Hollywood movie about trapped miners starring... http://t.co/3Yu26V19zh,0
+9801,trapped,,Hollywood movie about trapped miners released in Chile http://t.co/JJL89F9O3V,0
+9806,trapped,Florida,Hollywood movie about trapped miners released in Chile http://t.co/xe0EE1Fzfh,0
+9808,trauma,,Photo: lavenderpoetrycafe: Trauma memories are encoded in images as trauma is a more sensory than cognitive... http://t.co/DMb6xP966D,1
+9810,trauma,"Montgomery County, MD",in response to trauma Children of Addicts develop a defensive self - one that decreases vulnerability. (3,0
+9812,trauma,"Cambridge, Massachusetts, U.S.",Your brain is particularly vulnerable to trauma at two distinct ages http://t.co/KnBv2YtNWc @qz @TaraSwart @vivian_giang,0
+9813,trauma,"Detroit, MI",#NissanNews : Trauma Alert and 1 Child Among 6 Hospitalized After 2-Car Wreck on A1A Near Bing's Landing: The ... http://t.co/9dWyJqvFY4,1
+9815,trauma,LOCAL ATLANTA NEWS 4/28/00 - 4/28/15 FREELANCER,@RaabChar_28 @DrPhil @MorganLawGrp How do you self-inflict a wound to your side and blunt force trauma not consistent with fall dimensions?!,0
+9816,trauma,Your notifications,games that I really hope to see in AGDQ: Trauma Center Second Opinion Kororinpa Marble Mania TLoZ Oracle of Ages Metroid II,0
+9818,trauma,,@crazyindapeg @VETS78734 completely understandable considering the trauma #ptsdchat,0
+9819,trauma,"Methville, CA",Trauma Team needs to come to the American E-shop.,0
+9820,trauma,I rap to burn shame.,@PTSD_Chat Yes. I feel the root of that is Shame - which can be found in the rubble of most trauma. #PTSDchat,1
+9822,trauma,,Hiroshima: They told me to paint my story: Eighty-nine year old man recalls the terror and the trauma when the... http://t.co/spE7U8t40K,1
+9823,trauma,"Houston, TX",Photo: lavenderpoetrycafe: The Forgotten History of Sexual Trauma Hysteria was an affliction seen primarily... http://t.co/U2eS0Uk1u3,1
+9826,trauma,,Trauma injuries involving kids and sport usually cycling related - CBC.ca http://t.co/0dQjereTXU,1
+9828,trauma,,Butt Trauma Extraordinaire,1
+9829,trauma,Los Angeles New York,Author Interview Michele Rosenthal-author of Your Life After Trauma.,0
+9830,trauma,www.aprylpooley.com,A1: I started writing when I couldn't talk about my trauma in therapy it was the only way I could communicate #gravitychat,0
+9831,trauma,,@AshGhebranious civil rights continued in the 60s. And what about trans-generational trauma? if anything we should listen to the Americans.,0
+9832,trauma," Little Rock, AR",@thetimepast @saalon I have childhood trauma more resolved than theirs. Actual trauma. Fricken babies.,0
+9833,trauma,The Jewfnited State,"Why #Marijuana Is Critical For Research in Treating #PTSD
+
+http://t.co/T6fuAhFp7p
+#hempoil #cannabis #marijuanaÛ_ http://t.co/RhE7dXM7Ey",0
+9834,trauma,,Blood Memory: Intragenerational Trauma and the Death of Sandra Bland http://t.co/ZWeyGpHpf7,1
+9835,trauma,"Minneapolis, MN",Both kids got haircuts w minimal trauma. Clearly that calls for wine,0
+9836,trauma,Gumptown,@ARobotLegion so be it. You can't tell an oppressed group of people how to react to trauma. That would be stupid and ignorant.,0
+9837,trauma,,I need to plan a trip to Cleveland soon! ??,0
+9838,trauma,"Nashville, TN",Esteemed journalist recalls tragic effects of unaddressed #childhood #trauma. @keithboykin @RandallPinkston @pozarmy http://t.co/GXq1Auzb18,1
+9841,trauma,World,Trauma can happen anywhere -- school home etc. -- at any time. Learn the ABC's of trauma and how to parent... Û_ http://t.co/fMj8MXJY8a,1
+9842,trauma,,What is the role of usg in paeds major trauma imaging decision tool? #FOAMed #FOAMcc,0
+9846,trauma,The Triskelion,It partially has something to do with my trauma as well. But that's a long story and honestly I don't like to talk about it.,0
+9849,trauma,"Texas, USA",@mustachemurse @dateswhitecoats the truth. I pulled a 16 out. And apparently a 22 in the crazy adult trauma. And they mocked me for the 22.,0
+9850,trauma,Minneapolis/St. Paul,"Simmering beneath #NHL good times the league's own concussion issues @PioneerPress
+
+http://t.co/zl7FhUCxHL",0
+9853,trauma,,Today was trauma on top of trauma on top of trauma in Richmond so I know work is going to be crazy the next two days,0
+9854,trauma,"Chicago, Illinois",80 @UChicago faculty members pushing university to overturn ban of trauma center protesters http://t.co/ta1yqclpSc http://t.co/xToHI1HexY,1
+9857,trauma,Colorado,What happens to us as sexual trauma #survivors defines us as much as we agree with the perpetrators who hurt us.,0
+9858,traumatised,London,Traumatised after seeing a baby literally fall out of that lady. She only went for a wee great catch! #oneborn,0
+9859,traumatised,Ireland,Back in Ireland v. sad/traumatised as is freezing and not beautiful Parisian summer to which have become accustomed.,0
+9860,traumatised,Kirkwall,WHY THE DEEP ROADS THO HAHAHAHA IM SO TRAUMATISED BY THE DEEP ROADS LOLOL,0
+9861,traumatised,,I'm so traumatised.,0
+9862,traumatised,uk,go easy on her paul the poor woman has been traumatised by a cake #GBBO,0
+9864,traumatised,Sweden,@Ruddyyyyyy @JamieGriff97 Jamie is too traumatised to answer http://t.co/VzgslEPkkH,0
+9865,traumatised,"Portsmouth, UK",I'm that traumatised that I can't even spell properly! Excuse the typos!,0
+9866,traumatised,cork,@AnnmarieRonan @niamhosullivanx I can't watch tat show its like a horror movie to me I get flashbacks an everything #traumatised,0
+9868,traumatised,Scotland,@PyramidHead76 one good thing came out of watching the film. Was too traumatised to watch show so started Halt & Catch Fire on Amazon. :D,1
+9869,traumatised,dublin ,@ianokavo96 he's still traumatised,0
+9870,traumatised,ELVY,Think I'm traumatised for life,0
+9872,traumatised,"Hackney, London",America like South Africa is a traumatised sick country - in different ways of course - but still messed up.,0
+9873,traumatised,,...the kids at the orphanage were obviously not too traumatised. http://t.co/DjA4relcnS,0
+9874,traumatised,,@MPRnews 600!!! WOW!!! that's a lot of traumatised kids!!!!!,0
+9875,traumatised,South Africa,Yessum I'm traumatised ??,0
+9877,traumatised,Tunbridge Wells,@PerkPearl that's just not on. I'd be traumatised are you OK? The car has gone and now for #GBBO and relax.....,0
+9878,traumatised,lowestoft,@vienna_butcher ITS NOT FUNNY IM TRAUMATISED,0
+9880,traumatised,,@wrongdejavu I'm traumatised,0
+9881,traumatised,,@malabamiandsons she's proper traumatised that pepper is 'dead' I can't wait to see her face,0
+9883,traumatised,,@disneyIrh so traumatised im ???? http://t.co/TATZfK63Ch,1
+9884,traumatised,North East / Middlesbrough ,Sending a snapchat to the wrong person instead of your brother about the toilet ?? ?? ???? #snapchatselfie #wrongperson #traumatised,0
+9885,traumatised,,@EMILY4EVEREVER haha it's alright..but more than twice is just stupid ;) he's traumatised ????,0
+9886,traumatised,London,I'm so sad Kids Company has closed. After all the talk thousands of traumatised young people will suffer. But... http://t.co/efg8RtH9Rb,0
+9887,traumatised,,@Jude_Mugabi not that all abortions get you traumatised. At times you are okay with the decision due to reasons like rape,0
+9888,traumatised,Londonstan,"ÛÏ@_keits: @LIVA_GOTTA get a gold chain you'll understandÛ
+
+One boy gave me one and my neck went green It traumatised me",0
+9889,traumatised,,@CiaraMcKendry mine came on the day after my data renewed this month i was traumatised,0
+9890,traumatised,"Tring, UK",A traumatised dog that was found buried up to its head in dirt in France is now in safe hands. This is such a... http://t.co/AGQo1479xM,0
+9894,traumatised,Stage with Trey Songz,A spider has legit just run across my chest. Traumatised. For. Life.,0
+9896,traumatised,,@VickyBrush LOL! I was a traumatised child. On Wednesday @jimmyfallon releases topic for Thursday hashtag game. This is this weeks. Xoxo,0
+9897,traumatised,,I'm slightly traumatised after this week's one born!,0
+9898,traumatised,"Hampstead, London.",@KushWush I'm still traumatised by your driving. Having flashbacks of the lane hogging ??,0
+9901,traumatised,Tamworth,@cwheate hahaha I'm half traumatised half hoping my labour is that easy ??,0
+9905,traumatised,,I'm traumatised???? @megancoopy @laurathorne97 http://t.co/MeSqTVdu63,0
+9906,traumatised,,@ArgentaElite haha traumatised !!!! Hell no I want a job ?? xxx,0
+9907,traumatised,,@brookesddl I am traumatised the lil shit nearly hopped in the bloody shower with me,0
+9909,trouble,"Kawartha Lakes, Ontario, Canad",Budget? Oh I am in trouble... but yes I would agree. #VarageSale @Candace_Dx,0
+9910,trouble,"Gold Coast, Australia",19 Things You'll Understand If You Have Trouble Talking to People http://t.co/sHaZNLMsFE,0
+9911,trouble,,Having trouble understanding the rotations within a left-leaning Red Black Tree.: My class is currently learni... http://t.co/wGl4LUbnw1,0
+9912,trouble,YA MOTHA BED,@lucysforsale funny cause my dumb ass was the young one to get n trouble the most lol,1
+9915,trouble,Atlanta,A man a woman Romance & South Afrikaan Trouble - on # sale PreOrder #theBargain - http://t.co/UMl5jZTmcB,0
+9916,trouble,Canada,@canagal Good to hear it's back.. that storm's been given you guys trouble though :( ^SJ,1
+9918,trouble,"Indiana, USA",@BadAstronomer ...I have a lot of trouble getting both students and adults to understand that the moon is farther away than they think.,0
+9919,trouble,,Noel back up,0
+9920,trouble,Illumination ,Trouble trouble when I don't get my way ????,0
+9921,trouble,Bathtub de Bett ,@smoak_queen 'I'm going to be in so much trouble.',0
+9923,trouble,Chasing My Dreams w/Jass??,@JusstdoitGirl never said it was a problem and shit working tryna stay out of trouble wbu big homie,0
+9925,trouble,"Boston, MA",@comcastcares hey it's happing again. Any trouble shooting steps for when this happens?,0
+9930,trouble,NYC,@annajhm @JCOMANSE @paul_staubs @rslm72254 @blanktgt You must've got in trouble ??that's why you have #Fartanxiety now????,0
+9931,trouble,,OH MY GOD RYANS IN TROUBLE http://t.co/ADIp0UnXHU,1
+9932,trouble,"Rochester Hills, MI",Live updates: Boyd gets out of trouble in 5th http://t.co/3ugfpwMY2x via @detroitnews,0
+9933,trouble,"Davis, California",Strawberries are in big trouble. Scientists race to find solution. http://t.co/MqydXRLae7 http://t.co/EpJjkB4Be9,1
+9934,trouble,Displaced Son of TEXAS!,ÛÏ@YMcglaun: @JulieKragt @WildWestSixGun You're a lot safer that way.Ûyeah a lot more stable & if I get in trouble I have a seat right there,0
+9935,trouble,,The trouble in one of Buffett's favorite sectors http://t.co/J4dqPFLMkR,0
+9937,trouble,?,When there's trouble you know who to caaaaaall,0
+9938,trouble,on twitter ,why is it trouble@niallhariss / @simply_vain live on http://t.co/iAhJj0agq6,0
+9940,trouble,,@cspan #Prez. Mr. President you are the biggest terrorist and trouble maker in the world. You create terrorist you sponsor terrorist.,1
+9941,trouble,,The worst voice I can ever hear is the 'Nikki your in trouble' voice from my mom,0
+9942,trouble,,@_charleyisqueen Yeah well maybe if the barber didn't cut my hair too short on top I wouldn't of gone through the egg trouble????,0
+9943,trouble,,Love how I don't get in any trouble for having people over and the house still being trashed,0
+9944,trouble,Wolverhampton,@KerryKatona7 hello wud u kindly consider following me bak please I'm never any trouble lol many thanks :-),0
+9945,trouble,North Carolina ,@TJ_Robertson2 no bc we always got in trouble for laughing too much ??,0
+9946,trouble,Manila City,@charlieputh that song have a Cool beat like Nothing But Trouble,0
+9948,trouble,"Palo Alto, CA",Reddit's new content policy shows that maybe Reddit can't have it all http://t.co/YO3T8qho9h via @nkulw http://t.co/8oDTzMvqaR,0
+9949,trouble,USA,@astros stunningly poor defense it's not all on the pitcher. If our bats are MIA like the top of 1st inning this team is in trouble.,0
+9950,trouble,,@PrinceofFencing frickin summer and its humidity building up and causing trouble,0
+9952,trouble,,If you have trouble getting motivated remember that time is going to pass and that regret is going to make its way around - Matthew Donnelly,0
+9953,trouble,,Nothing but trouble - Lil Wayne & Charlie Puth????????,0
+9955,trouble,"Washington, DC",Trouble with mental fog? Consider these tests: http://t.co/XAerMBMvlv,0
+9958,tsunami,,I feel so lucky rn,0
+9960,tsunami,,So did we have a hurricane tornado tsunami? Someone please tell me what the hell happened #nopower,1
+9961,tsunami,in the Word of God,@helene_yancey GodsLove & #thankU my sister Helene for RT of NEW VIDEO http://t.co/cybKsXHF7d The Coming Apocalyptic US Earthquake & Tsunami,1
+9963,tsunami,in the Word of God,@freefromwolves GodsLove & #thankU brother Danny for RT of NEW VIDEO http://t.co/cybKsXHF7d The Coming Apocalyptic US Earthquake & Tsunami,0
+9965,tsunami,"Washington, DC",I'm at Baan Thai / Tsunami Sushi in Washington DC https://t.co/Udp10FRXrL,0
+9967,tsunami,,she keep it wet like tsunami.,0
+9971,tsunami,"Louavul, KY",#BBShelli seems pretty sure she's the one that's going to stay! #BB17,0
+9972,tsunami,,"Crptotech tsunami and banks.
+ http://t.co/KHzTeVeDja #Banking #tech #bitcoing #blockchain",1
+9973,tsunami,,#sing #tsunami Beginners #computer tutorial.: http://t.co/ukQYbhxMQI Everyone Wants To Learn To Build A Pc. Re http://t.co/iDWS2ZgYsa,0
+9974,tsunami,IG : Sincerely_TSUNAMI,It's my senior year I just wanna go all out,0
+9976,tsunami,Kleenex factory,An optical illusion - clouds rolling in over the mountains looks like a Tsunami - Geneva - Switzerland http://t.co/EyEVZIoPg1,1
+9978,tsunami,??????????????,Earthquake and tsunami that occurred in Japan 'free speech' is also swallowed. http://t.co/TJyyFT6NV0,1
+9979,tsunami,,Tsunami - DVBBS & Borgeous (Arceen Festival Trap Remix) https://t.co/743JoqazrT via @YouTube,0
+9980,tsunami,,#sing #tsunami Beginners #computer tutorial.: http://t.co/ia44ncZLif Everyone Wants To Learn To Build A Pc. Re http://t.co/oGTuV1pLhT,0
+9982,tsunami,Land Of The Kings,@tsunami_esh ?? hey Esh,0
+9983,tsunami,"Winter Park, Colorado",'Anyway' the old lady went on 'I have something to ask of you - and you alone.' THE COMING TSUNAMI http://t.co/tYeWZf3hqA,0
+9984,tsunami,,6 Trends Are Driving a Data Tsunami for Startups http://t.co/sjh0HsRp4s #startup,0
+9985,tsunami,The Netherlands,"?#FUKUSHIMA?#TEPCO?
+Mountains of debris from the Japanese tsunami have floated to the West Coast
+http://t.co/y518jYrZav",1
+9986,tsunami,#ODU,@TSUNAMI_nopeach ?????? I'm weak af,0
+9987,tsunami,ona block w/ my BOY ??,Man my stomach feel like a tsunami ??.,0
+9988,tsunami,"East Islip, NY",@slone did the First World War Ever Truly End? The Ripples Are With Still and have been compound into low level Tsunami,1
+9989,tsunami,but i love kaylen ??,I hope this tsunami clears b4 i have to walk outside to my car ????,1
+9990,tsunami,COMING SOON,@tsunami_esh ESH PLEASE OKAY!,0
+9991,tsunami,in the Word of God,@author_mike Amen today is the Day of Salvation. THX brother Mike for your great encouragement. - http://t.co/cybKsXHF7d Coming US Tsunami,1
+9992,tsunami,,and i dont get waves of missing you anymore theyre more like tsunami tides in my eyesss,1
+9994,tsunami,"Austin, TX",Dr. Jim & the tsunami: The latest New Yorker warned us in no uncertain terms. Haven't you heard? The tsunami's... http://t.co/1RrEO2jG9u,0
+9995,tsunami,"Gotham City,USA",I don't get waves of missing you anymore... They're more like tsunami tides in my eyes,0
+9998,tsunami,,@Kamunt Holy crap it's been forever since I saw this movie but the nostalgia wave just hit me like a tsunami! Thank youuu!,0
+10000,tsunami,,I liked a @YouTube video http://t.co/0h7OUa1pns Call of Duty: Ghosts - Campanha - EP 6 'Tsunami',0
+10001,tsunami,Hawaii,Meet Brinco your own personal earthquake snd tsunami early warning beacon. http://t.co/NXkUM9h7wD,1
+10003,tsunami,BROKE NIGGAS DREAM!!,I want some tsunami take out,0
+10004,tsunami,in the Word of God,@GreenLacey GodsLove & #thankU my sister for RT of NEW VIDEO http://t.co/cybKsXHF7d The Coming Apocalyptic US Earthquake & Tsunami,0
+10005,tsunami,,All of this energy,0
+10006,tsunami,,@Eric_Tsunami worry about yourself,0
+10008,twister,,It's alil twister at Tha end to! I was like oh nah ??,1
+10009,twister,"Calgary, Alberta",Gail and Russell saw lots of hail at their Dalroy home - they have video of twister 1/2 mile from their home #yyc http://t.co/3VfKEdGrsO,1
+10010,twister,,Want Twister Tickets AND A CHANCE AT A VIP EXPERIENCE To See SHANIA!!! CLICK HERE: http://t.co/964dk4rwwe,0
+10011,twister,Everywhere,Just stop fucking saying ÛÏa whole Û÷notherÛ. It just sounds fucking stupid. You fucking mean ÛÏa whole otherÛ. Not a fucking tongue-twister.,0
+10012,twister,"Las Vegas, NV ","950. If a landslide tumbles down todayI'm on your side
+
+And if a twister sweeps it all away-
+
+YOU'RE ON YOUR OWN BITCH!*runs into distance*",1
+10013,twister,United States,love 106.1 The Twister @1061thetwister and Maddie and Tae #OKTXDUO,0
+10014,twister,,Brain twister homefolks are opinionated over against proposal modernized canada: oMw,0
+10016,twister,Detroit,Crazy Mom Threw Teen Daughter a NUDE Twister Sex Party According To Her Friend59 more pics http://t.co/t94LNfwf34 http://t.co/roCyyEI2dM,0
+10017,twister,Geneva,The Sharper Image Viper 24' Hardside Twister (Black) http://t.co/FXk3zsj2PE,0
+10018,twister,,Twister was fun https://t.co/qCT6fb8wOn,0
+10020,twister,,Brain twister let drop up telly structuring cast: EDcXO,0
+10021,twister,London,I'm in bed eating a twister and drinking a cup of tea. I am not dunking the twister in the tea. That would be well weird.,0
+10023,twister,å¡å¡Midwest Û¢Û¢,@sarahmcpants @JustJon I'll give him a titty twister,0
+10025,twister,,Last Second OutBid RT? http://t.co/lBPX8buCnv 2 - Catlow C720 Twister Swivels 3/4' 3dc Fuel Line Made In Usa ?Please Favorite & Shar,0
+10027,twister,,Reasons brain twister oneself should discount redesigning yours website: ItrAWcWB,0
+10028,twister,,"Check out 'Want Twister Tickets AND A VIP EXPERIENCE To See SHANIA? CLICK HERE:' at http://t.co/3GEROQ49o1
+I would Love Love Love!! To win",0
+10029,twister,"Riverdale, GA ",This is my jam: Riser by Dierks Bentley @1061TheTwister ? #iHeartRadio #NowPlaying http://t.co/zQoScQD64h http://t.co/yLvVF139BB,0
+10030,twister,,Bulgarian Tittie Twister By NoEmotion Produced By EDK PathFinders (HD) M...: http://t.co/9ODqryJncF via YouTube,0
+10031,twister,,@ellenfromnowon 7-speed nexus shifter å£9! (For community cargo bike?) http://t.co/rjPjBwVfck,0
+10032,twister,"Calgary, Alberta",Anyone wanna come over and watch Twister with me? #toosoon :-),0
+10034,twister,NY,Crazy Mom Threw Teen Daughter a NUDE Twister Sex Party According To Her Friend50 =>http://t.co/Hy5Pbe12TM http://t.co/c1nJpLi5oR,1
+10035,twister,"Plano,TX",@briannafrost Twister with Bill Paxton and Helen Hunt!,0
+10036,twister,,@carolinagutierr grande twister!!!,0
+10037,twister,"Midwest City, OK",HAPPY 24 TWISTER!!! Thank you for all the laughs sticking by my side no matter what and also forÛ_ https://t.co/ttq9IlHp8W,0
+10038,twister,,"'How many men would a human hew if a human could hew men?'
+
+-popular tongue twister among woodchucks",0
+10039,twister,,I liked a @YouTube video http://t.co/Cj76K0YaYj EXTREME PAINT TWISTER,0
+10040,twister,,Tornadoes: El Nino may give Canada's twister season a boost #Toronto http://t.co/agyCutKBnN,1
+10041,twister,"Lisbon, Portugal",@ElianaRaquel Like GG was BAD in the end... But at least I cared a little when GG was Dan. Cause it was a twister. I don't know Wilden IDC,0
+10042,twister,Galapa / AtlÌÁntico,You are listening to LLEGASTE TU - TWISTER EL REY,0
+10044,twister,,White Twister Black shift knob M6x1.00 Thread Size http://t.co/SqpshAWs0w http://t.co/udlEbH88uZ,0
+10045,twister,,TWISTER DANCE Game Dance Console Instructions Cable 5 Pre Loaded Songs http://t.co/BcsXyEc4ji http://t.co/DfXI76kvX0,0
+10047,twister,,@rodarmer21 10 dolla says wicked twister won't be running,0
+10048,twister,STL ?NOLA,Wish I had a personal hair twister,0
+10049,twister,,Does the opening scene of Harry Potter and the Order of the Phoenix remind anyone else of the movie Twister? Just me? Okay,0
+10050,twister,instagram: bribriony,Drunk twister is so hard ????,0
+10052,twister,Long Island,@mrsbinker @EmilioRivera48 @davidlabrava Mine are Diesel and Twister both small for the breed but very strong! I have a beautiful pug too,0
+10054,twister,Downtown Oklahoma City,@TheBuffShow @TheTwisterOkc My boyfriend wants too see @ShaniaTwain too! #TwisterLovesShania ?????? http://t.co/O61h2tAaE4,0
+10055,twister,,Some curls come out so pretty and some look like I just finished shooting the movie Twister,0
+10056,twister,london,Am now repped by the fantastic Laura Milne @TheJonesesVoice for all your liguistic needs. And that's some tongue twister tweets,0
+10057,twister,"Seattle native in Prescott, AZ",@jrlallo My narrator will have to say 'chemically interesting lavatory' for DB5. Not quite the tongue twister but certainly odd. :P,0
+10058,typhoon,,#Breaking144 Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declarat... http://t.co/M8CIKs60BX #AceNewsDesk,1
+10059,typhoon,Savage States of America,Map: Typhoon Soudelor's predicted path as it approaches Taiwan; expected to make landfall over southern China by SÛ_ http://t.co/JDVSGVhlIs,1
+10060,typhoon,"Calgary, AB, Canada",Find out how your fund was used for Typhoon Haiyan in the Philippines. See @DevPeace Haiyan Relief Funds Report http://t.co/JwxrX1LsqO,1
+10061,typhoon,Whole World ,Global precipitation measurement satellite captures 3-D image of Typhoon Soudelor - NASAHurricane. Visit: http://t.co/sQN4girdvZ,1
+10064,typhoon,"Ibadan,Oyo state",Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/UsVyHdG9OG,1
+10066,typhoon,USA,#breaking #news Global precipitation measurement satellite captures 3-D image of Typhoon Soudelor - @NASAHurricane http://t.co/20DNcthr4D,1
+10067,typhoon,ngapain?,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/Q3DtOqO04c,1
+10069,typhoon,"Tema,Accra",Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/qjuU0wcWPx,1
+10070,typhoon,phuket thailand,@FoxNews let me report it to u people instead Mr.Obama just declares CNMI federal disaster area post typhoon soudelor. U guys 2slow2report.,1
+10071,typhoon,,abcnews - Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern... http://t.co/mg5eAJElul,1
+10072,typhoon,,Typhoon Soudelor: When will it hit Taiwan ÛÒ and how bad will it be? #GeneralNews http://t.co/cWZHgEzAJ4,1
+10073,typhoon,,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/9i6CrCRq2m,1
+10074,typhoon,,RT_America: RT RT_com: Eye of Super Typhoon Soudelor seen from space (TIME-LAPSE) https://t.co/FC3BxRtHPG http://t.co/BIU4koWGlz,1
+10075,typhoon,USA,Typhoon Soudelor taking dead aim at Taiwan http://t.co/3Ac5wuy1R0,1
+10076,typhoon,"Houston, TX",Global precipitation measurement satellite captures 3-D image of Typhoon Soudelor - @NASAHurricane http://t.co/iGCEtuMkcW,1
+10077,typhoon,Unites States,Obama Declares Disaster for Typhoon-Devastated Saipan http://t.co/CanEyTtwEV #international,1
+10079,typhoon,,nbanews Soudelor Typhoon Soudelor is taking dead aim at Taiwan and is expected to make landfall Friday according to the Joint TyphoonÛ_,1
+10080,typhoon,REPUBLICA DOMINICANA,(#LosDelSonido) Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Ma... (#IvanBerroa),1
+10081,typhoon,New York ,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/PC8BvufLFJ,1
+10082,typhoon,"Santiago,Rep̼blica Dominicana",Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/BHZr9UgUs2,1
+10083,typhoon,,Obama Declares Disaster for Typhoon-Devastated Saipan,1
+10084,typhoon,,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/VTS9CAyiBC,1
+10085,typhoon,,Price of vegetables rises on Typhoon Soudelor concerns http://t.co/GeI58Vhbw6,1
+10087,typhoon,"Wilmington, Delaware",Map: Typhoon Soudelor's predicted path as it approaches Taiwan; expected to make landfall over southern China by... http://t.co/YvaFI3zuJx,1
+10088,typhoon,,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians after typhoon hits US territory,1
+10089,typhoon,iamdigitalent.com,Photos: Typhoon Soudelor Has Its Aim Set on Taiwan andåÊChina http://t.co/3OG66NfSIG,1
+10090,typhoon,Evergreen Colorado,Satellite Spies Super Typhoon Soudelor from Space (Photo) http://t.co/VBhu2t8wgB,0
+10091,typhoon,"Washington, DC",Massive Typhoon heads toward Taiwan. http://t.co/Na2Ey64Vsg,1
+10092,typhoon,india,A GPM satellite 'bullseye' in Typhoon Soudelor http://t.co/7vcEzi6CbB,1
+10093,typhoon,SWMO,Global precipitation measurement satellite captures 3-D image of Typhoon Soudelor - @NASAHurricane http://t.co/MvSRjd4X3D,1
+10098,typhoon,"anzio,italy",Map: Typhoon Soudelor's predicted path as it approaches Taiwan; expected to make landfall over southern China by SÛ_ http://t.co/0XCb7yeqmw,1
+10099,typhoon,,A GPM satellite 'bullseye' in Typhoon Soudelor http://t.co/piVeUPiRKY,1
+10100,typhoon,,"4Yygb mhtw4fnet
+
+Thousands evacuated as Taiwan prepares for strongest typhoon of 2015 - ABC Online",1
+10101,typhoon,The Peach State,I think a Typhoon just passed through here lol,1
+10102,typhoon,,Please recover from the Typhoon. ????,1
+10105,typhoon,NYC :) Ex- #Islamophobe,#ABCNews Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for No... http://t.co/DOBZc3piTM #World,1
+10106,typhoon,Dhaka,Obama Declares Disaster for Typhoon-Devastated Saipan: Obama signs disaster declaration for Northern Marians a... http://t.co/lEYJwNnAH8,1
+10107,typhoon,"Halifax, Nova Scotia",Typhoon Soudelor taking dead aim at Taiwan http://t.co/sA5CDWVDXt,1
+10109,upheaval,"Deadend, UK",Buddha was 'man for his time' - massive urbanisation and social upheaval also challenged Brahmans dominance ('Genius of the Ancient World').,0
+10110,upheaval,Oregon,A look at state actions a year after Ferguson's upheaval http://t.co/GZEkQWzijq,0
+10111,upheaval,"Washington, D.C.",USW: 'The damage from abandoning the deal could well create a new level of uncertainty...economic upheaval & military unrest',0
+10112,upheaval,,R'lyeh by Upheaval http://t.co/829n4HJHOL,0
+10113,upheaval,,A look at state actions a year after FergusonÛªs upheaval http://t.co/G5ZsRU0zVQ,0
+10114,upheaval,Jamaica,Series finale of #TheGame :( It survived so much upheaval but the audience got so much good story.,0
+10115,upheaval,USA,Newberg upheaval: Jacque Betz responds 'looking forward to the day' she can answerÛ_ http://t.co/LzasR05ljo #news http://t.co/IeMxGSE2BE,0
+10116,upheaval,Chester,Save the upset and stress of upheaval and let us help keep #elderly people independent! #companionship #care #Chester @chestertweetsuk,0
+10117,upheaval,"eBooks, North America","Medieval Upheaval (Hardy Boys: The Secret Files Book 18)
+Franklin W. Dixon - Aladdin - Kindle Edition. http://t.co/braoUBgEC2",0
+10118,upheaval,Sydney & Worldwide,Upheaval high note for bush opera http://t.co/aWPU0gaE0b #Sydney #News #Aus,0
+10119,upheaval,"Auckland, New Zealand",An indepth look at the new world of work and how young people businesses and economies are coping with huge upheaval http://t.co/aYP6zVHm2A,0
+10120,upheaval,NYC,Ancient Mayan Tablet with Hieroglyphics Honors Lowly King http://t.co/xh4dZ1gpyw http://t.co/g0hsyH7YaV,0
+10121,upheaval,"Scotts Valley, CA",In depth: the new world of work and how young people businesses and economies are coping with huge upheaval http://t.co/0blKwCuPZq via @ft,0
+10124,upheaval,Oregon,A look at state actions a year after Ferguson's upheaval http://t.co/TBQsqtmqV4,0
+10125,upheaval,IG/SC:bjfordiani,"But...! Oh!
+
+How rich the soil?!
+
+How wonderful the upheaval!?
+
+-@ENTERSHIKARI",0
+10126,upheaval,,Tt kettlebell upheaval blueprint over chris lopez hindsight: JhmNYe,0
+10127,upheaval,,"How long O Lord (Study 3)
+ The sixth seal opens the events of Revelation 12. The political upheaval in the Roman... http://t.co/GW0CXoOJyV",1
+10129,upheaval,,Loan Upheaval Is The Way In Which Oneself Can Save Your House Leaving out Being Foreclosed On...TEJc,0
+10130,upheaval,"Wisconsin, USA",Ancient Mayan Tablet Found in Jungle Temple http://t.co/qp6q8RS8ON,1
+10132,upheaval,,Acquire your postexistence straight a elevation in addition to upheaval ideas yet perquisite: bRZjc,0
+10136,upheaval,"East Aurora, NY",#Tigers Wonder how much the upheaval with team is affecting different players tonight?,0
+10137,upheaval,Woosley,Ancient Mayan Tablet with Hieroglyphics Honors Lowly King http://t.co/Im6m4XAeN2,0
+10138,upheaval,,Ancient Mayan Tablet with Hieroglyphics Honors Lowly King http://t.co/WqIKqx9E3w,0
+10139,upheaval,"London, UK",Diageo's CEO stresses that a board revolt at United Spirits has not impacted Indian operations http://t.co/gfs7UsulgQ,0
+10140,upheaval,Costa Rica,RT '@LiveScience: Ancient Mayan Tablet with Hieroglyphics Honors Lowly King: http://t.co/dpgdnaoY4p http://t.co/4fCJFDKdZS,0
+10141,upheaval,"Hamilton, Ontario CA",Ancient Mayan Tablet with Hieroglyphics Honors Lowly King: A 1600-year-old Mayan stone tablet describing the ... http://t.co/GLPFu0Uriz,0
+10142,upheaval,maryland,A Look at State Actions a Year after FergusonÛªs Upheaval https://t.co/M4tuI0P9nT MD is mentioned in the last group for a 'reporting' bill,1
+10143,upheaval,Attock,Ancient Mayan Tablet found via http://t.co/LmUMzkLtln http://t.co/yebxxAryBF http://t.co/SRRUqfffr6 http://t.co/CadzxAgMSI,0
+10144,upheaval,"Atlanta, GA",August 5: Your daily horoscope: A relationship upheaval over the next few months may be disruptive but in the ... http://t.co/gk4uNPZNhN,0
+10146,upheaval,INDIA,Lyf needs quality and a certain sense of security. Being with a person you can't trust can only cause stress and emotional upheaval.,0
+10147,upheaval,"Milwaukee, WI",A Look at State Actions a Year After #Ferguson's Upheaval http://t.co/qwSbVfLPE1,1
+10149,upheaval,,The Great Upheaval By Winik Jay http://t.co/Ef4swP9SXZ http://t.co/Nb7MAAAOfs,0
+10150,upheaval,"CPT & JHB, South Africa",To navigate inevitable upheaval internal audit must lead the way http://t.co/je86VetDxh,0
+10151,upheaval,"London, UK",Diageo's CEO stresses that a board revolt at United Spirits has not impacted Indian operations http://t.co/STPOdA901U,0
+10152,upheaval,Oregon and Washington,Newberg upheaval: Jacque Betz responds 'looking forward to the day' she can answer questions #orcot #orpol http://t.co/dazQaMOO0C,0
+10153,upheaval,Karachi,"@nytimes
+Due to upheaval created by the west in Iraq Syria Libya etc.",1
+10156,upheaval,Connecticut,A look at state actions a year after Ferguson's upheaval http://t.co/vXUFtVT9AU,1
+10157,upheaval,"Perth, Western Australia",@abcnews UK scandal of 2009 caused major upheaval to Parliamentary expenses with subsequent sackings and prison. What are we waiting for?,0
+10159,violent%20storm,UK,Terrifying POV footage captures violent landing from inside a passenger jet during a storm in Amsterdam http://t.co/NqXQYI70W4 #travel,1
+10163,violent%20storm,Yuuko-san's shop,Rather violent storm. Possibility of no stream tonight.,1
+10164,violent%20storm,"Watertown, Mass.",Violent Storm Causes Damage Flooding in Watertown - http://t.co/3ZASZ6wxjJ,1
+10168,violent%20storm,Toronto,"Thunder pounds north goes black
+a deep bruise on the sky's chest
+wind cries its pain.
+A summer storm has a tough life
+short violent.",1
+10169,violent%20storm,,#stormchase Violent Record Breaking EF-5 El Reno Oklahoma Tornado Nearly Runs Over ... - http://t.co/3SICroAaNz http://t.co/I27Oa0HISp,1
+10171,violent%20storm,,#Amsterdam POV video captures violent landing at Amsterdam Airport Schiphol during a st... http://t.co/AlUMrGl40e http://t.co/8h2KCTFB8I,1
+10172,violent%20storm,,Storm batters Auckland and Northland: A violent overnight storm has battered Auckland and Northland uprooting... http://t.co/enrPGRgtTs,1
+10173,violent%20storm,Worldwide,"Violent Forces Radio: Now Playing Agony - Storm of the apocalypse
+TuneIn Player @ http://t.co/XsSgEdSbH4",0
+10174,violent%20storm,,'@NASASolarSystem: Jupiter's Great Red Spot is a violent storm larger than the entire Earth. http://t.co/2lBTshXI3c http://t.co/0jmKdTcYmJ',0
+10175,violent%20storm,"Chicago, IL",After a violent afternoon storm more severe weather heads for Chicago tonight. Details ----> http://t.co/6Peeip4y7W,1
+10176,violent%20storm,Milky Way galaxy ,Jupiter's Great Red Spot is a violent storm larger than the entire Earth. http://t.co/I5k3VjICMG http://t.co/cizJAFnm4E,0
+10177,violent%20storm,,I don't understand 'taking' ANY life as a trophy. It's violent killing. http://t.co/NEqW47E1uj #CecilTheLion #BADChoices #BANTROPHYHUNTING,1
+10179,violent%20storm,Worldwide,"Violent Forces Radio: Now Playing Acid Storm - Scourgue Of The Gods
+TuneIn Player @ http://t.co/XsSgEdSbH4",1
+10182,violent%20storm,us,"U.S.PACIFIC COMMAND.
+I can see it!
+They gave their all in the peace unity festival
+It disappears when freedom
+A Violent Storm hit Sea",1
+10183,violent%20storm,??? ???? ?f glory. ?,@Skarletan åÇ the storm. A violent swell of emotions then nothing.,0
+10184,violent%20storm,Your Six,@Vickie627 Desert Storm was an unqualified victory a treaty was signed. Under Clinton the situation only got worse and more violent. #tcot,1
+10186,violent%20storm,South Africa,POV footage captures violent landing from inside plane during storm http://t.co/kxewlHH7Uw,1
+10187,violent%20storm,Costa Rica,RT '@NASASolarSystem: Jupiter's Red Spot is a violent storm larger than the entire Earth: http://t.co/i0Tvl15CoZ http://t.co/IgtXhapO0K,0
+10189,violent%20storm,,@TeaFrystlik -- causing the entire sky around their battle to darken to a violent storm as an ungodly powerful bolt of lightning struck at--,0
+10191,violent%20storm,,Dramatic Video Shows Plane Landing During Violent Storm - http://t.co/oQ0LnF2Yug http://t.co/tZDBcGpSAg,1
+10192,violent%20storm,"ÌÏT: 1.50225,103.742992",Dramatic Video Shows Plane Landing During Violent Storm http://t.co/XRgPdlSWfD,1
+10193,violent%20storm,"Newcastle, OK",I think that none of us know the impact we have on the lives of those around us. Even the slightest stirring can create a violent storm.,0
+10194,violent%20storm,United Kingdom,POV video captures violent landing at Amsterdam Airport Schiphol during a storm ... http://t.co/fkv5qXDcy3,1
+10195,violent%20storm,,Storm blitzes Traverse City disrupts Management Briefing Seminars: A violent summer storm blitzed through Tra... http://t.co/NKAW9EZqGg,1
+10197,violent%20storm,Oshawa/Toronto,This is one violent and belligerent storm. I'm enjoying watching it unfold,1
+10198,violent%20storm,"Very SW CA, USA....Draenor",@iateyourfood yikes. Poor pup. What a weird violent storm.,1
+10199,violent%20storm,,A brief violent storm swept through the Chicago area Sunday afternoon leading to one death and an evacuation of Lollapalooza and more,1
+10201,violent%20storm,New Zealand,Storm batters top half of North Island: A violent overnight storm has battered the upper North Island uprootin... http://t.co/fHVOkmpheD,1
+10202,violent%20storm,Kenya,Slow clap for this pilot. Dramatic Video Shows Plane Landing During Violent Storm http://t.co/CgVUY3RcxO,1
+10203,violent%20storm,,If you were the NWS wth a rotating storm w/ a report of a 'HUGE' / 'MASSIVE' / 'VIOLENT' tornado what would you do? https://t.co/J3dI85IST5,1
+10204,violent%20storm,Barbados,Dramatic Video Shows Plane Landing During Violent Storm http://t.co/rJ9gkJKJJn,1
+10206,violent%20storm,Amsterdam & Worldwide,POV video captures violent landing at Amsterdam Airport Schiphol during a storm - Daily Mail http://t.co/seShqN5DSK #Amsterdam #News,1
+10207,violent%20storm,3rd Eye Chakra,"Violent video: Ukraine rioters brutally beat police storm local admin building
+WE'RE ALL FIGHTING BACK http://t.co/Byj5Dfa2rv",1
+10208,volcano,"Perth, Australia",Jetstar and Virgin forced to cancel Bali flights again because of ash from Mount Raung volcano http://t.co/jTJoFLtMS4,1
+10209,volcano, ? ??????? ? ( ?? å¡ ? ? ? å¡),"nside a Dragon's belly. Or an ice cave under
+a volcano in Kamchatka | Photography by
+å©Daniel Korzhonov
+http://t.co/8T36HWgoqd",1
+10210,volcano,USA,"Japan Aogashima Volcano. By Unknown - Check It Out! http://t.co/OegFQBIqIq
+ #Aogashima #Japan #photography #Volcano",1
+10212,volcano,ARGENTINA,#Earthquake #Sismo M 1.9 - 5km S of Volcano Hawaii: Time2015-08-06 01:04:01 UTC2015-08-05 15:04:01 -10:00 at ... http://t.co/eTswuoD3oM,1
+10213,volcano,,Maailiss: Diaporama : sixpenceee: Karymsky Lake is a crater lake located in the Karymsky volcanoåÊinåÊRussia. With aÛ_ http://t.co/4o460Fm8HN,0
+10214,volcano,Earth,1.94 earthquake occurred 5km S of Volcano Hawaii at 01:04 UTC! #earthquake #Volcano http://t.co/auf4J4Owj1,1
+10215,volcano,,1.9 #Earthquake in 5Km S Of Volcano Hawaii #iPhone users download the Earthquake app for more information http://t.co/V3aZWOAmzK,1
+10217,volcano,,Eruption of Indonesian volcano sparks transport chaos: In this picture done from video Mount Raung inÛ_ http://t.co/7muG2kAhL7 ?,1
+10218,volcano,,http://t.co/Ns1AgGFNxz #shoes Asics GT-II Super Red 2.0 11 Ronnie Fieg Kith Red White 3M x gel grey volcano 2 http://t.co/oD250zshFy,0
+10220,volcano,"Hawaii, USA",USGS reports a M1.94 #earthquake 5km S of Volcano Hawaii on 8/6/15 @ 1:04:01 UTC http://t.co/Njd28pg9Xv #quake,1
+10222,volcano,"Hawaii, USA",USGS EQ: M 1.9 - 5km S of Volcano Hawaii: Time2015-08-06 01:04:01 UTC2015-08-05 15:04:01 -10:00 a... http://t.co/3rrGHT4ewp #EarthQuake,1
+10223,volcano,,#USGS M 1.9 - 5km S of Volcano Hawaii: Time2015-08-06 01:04:01 UTC2015-08-05 15:04:01 -10:00 at epicenter... http://t.co/dIsrwhQGym #SM,1
+10224,volcano,,@MrMikeEaton @Muazimus_Prime hill hill mountain volcano of hell mountain hill hil.,1
+10226,volcano,Paris,Diaporama : sixpenceee: Karymsky Lake is a crater lake located in the Karymsky volcanoåÊinåÊRussia. With a... http://t.co/7uf7TSt9Zx,0
+10229,volcano,,M1.94 [01:04 UTC]?5km S of Volcano Hawaii. http://t.co/zDtoyd8EbJ,1
+10231,volcano,"California, USA",http://t.co/3nUiH6pkUi #shoes Asics GT-II Super Red 2.0 11 Ronnie Fieg Kith Red White 3M x gel grey volcano 2 http://t.co/2ufCC6gH3m,0
+10234,volcano,"Ted&Qz Inc, Ireland, Europe",@songhey89 well I'm also gay but girls like some too. So. I predict tsunami & volcano & earthquakes. A gift from God? Am Christian but,0
+10236,volcano,Santiago de Cmpostela Galicia,I added a video to a @YouTube playlist http://t.co/y2Mt6v13E8 Doc: Volcanoes and Earthquakes - Inside the Volcano,1
+10237,volcano,Massachusetts,Not only does he know the latest research the kiddo's GI specialist sang the volcano number from Inside Out. Now THAT is whole person care.,1
+10239,volcano,"cleveland, oh",@alextucker VOLCANO BOWL DRINK,1
+10241,volcano,Northern Colorado,Brian Shaw + J.J. Hickson + Kenneth Faried trying to defend LaMarcus Aldridge was A BLOOD VOLCANO http://t.co/20TWGPmM7d,0
+10243,volcano,"West Coast, Cali USA",The Architect Behind Kanye WestÛªs Volcano https://t.co/MUSBIk7EJf,0
+10244,volcano,Indonesia,Zeal is a volcano the peak of which the grass of indecisiveness does not grow,1
+10245,volcano,,@lexi_purduee the volcano by it ??????,0
+10246,volcano,right here,@volcano_tornado live somewhere else for a while and Da Mill ain't too bad son! #perspective,1
+10247,volcano,,#Sismo M 1.9 - 5km S of Volcano Hawaii: Time2015-08-06 01:04:01 UTC2015-08-05 15:04:01 -10:00 at ep... http://t.co/RTUeTdfBqb #CSismica,1
+10249,volcano,,This LA Startup Is So Hot that Their Flowers Come Straight from a Volcano http://t.co/R3PDdjPiEe via @LATechWatch,0
+10250,war%20zone,"nashville, tn ",Sitting still in the #CityofMemphis traffic is like sitting in a war zone! They don't move for the Police.. They don't care,0
+10251,war%20zone,Incognito,Zone of the Enders MGS2 God of War. RT @D_PageXXI: Quote this with your favorite PS2 game,0
+10252,war%20zone,,Bedroom clean bathroom clean laundry done .. Shit was looking like a war zone in here ??,0
+10253,war%20zone,Somewhere else...,This bed looks like a war zone.,0
+10255,war%20zone,"Columbia, SC",Thank you to @scegnews! Our neighborhood looks like a war zone but we had power back in 4 hours!,1
+10256,war%20zone,In a graveyard ,Rip mama but I'm still thuggin cause the world is a war zone,0
+10258,war%20zone,"Downtown Churubusco, Indiana",Camping in a war zone with roving raccoons toughens city slicker http://t.co/oJuS08yZrq,0
+10259,war%20zone,"California, USA",GEARS OF WAR 1!(preview member) Come chat! XB1! Welcome to the DANGER zone!: http://t.co/6SdgZ5DXNt,0
+10260,war%20zone,,They turned Jasmines house into a war zone. ?? #LittleWomenLA,0
+10263,war%20zone,Louisiana,Sundays during football seasonfrom about 9 am - 11 pm women shouldn't even log onshit be a complete war zone,0
+10264,war%20zone,,mama I'm still thugging the world is a war zone,0
+10265,war%20zone,Host of #MindMoversPodcast,the war on drugs has turned the U.S. into a WAR zone.,1
+10268,war%20zone,The D,#DebateQuestionsWeWantToHear If U start another war would U B willing 2 go 2 the war-zone yourself or send UR sons and/or daughters 2 fight?,1
+10269,war%20zone,Still. ??S.A.N.D.O.S??,Mama I'm still thuggin the world is a war zone my homies is inmate and most of em dead wrong.,0
+10270,war%20zone,,#WorldWatchesFerguson #Florida @GovJayNixon @clairecmc How dare you turn our streets into a war zone -a war against CITIZENS?,1
+10272,war%20zone,We're All Mad Here,Packing for CT aka my room looks like a war zone,0
+10273,war%20zone,Southern California,@kasiakosek the drive sucks in my case because I know my desk looks like a war zone and then everyone goes into the 'I need this' mode,0
+10274,war%20zone,,Looks and sounds like a war zone,1
+10275,war%20zone,,How do people bake without turning their kitchen into a war zone of eggs and flour,0
+10276,war%20zone,,Greedy had me in the war zone ! Lmao,0
+10278,war%20zone,,@RobertONeill31 Getting hit by a foul ball while sitting there is hardly a freak accident. It's a war zone.,0
+10280,war%20zone,"New Hampshire, USA",#GrowingupBlack walking past chicken frying was like entering a war zone.,0
+10283,war%20zone,ca(NADA) ,THIS IS A ONE DIRECTION CONCERT NOT A WAR ZONE WHAT IS THIS #OTRAMETLIFE http://t.co/PtY9HRCUZH,1
+10284,war%20zone,T-Ville,Looks like a war zone outside. What's going on?,1
+10286,weapon,Pennsylvania,70 years ago today the U.S. dropped a nuclear weapon on Japan. Here are some articles that share my opinion on that decisionÛ_,1
+10287,weapon,//RP\ ot @Mort3mer\\,-honey you ain't no angel. You like to scream these words as a weapon. Well go ahead take your best shot woman. I wanna leave you it's,0
+10288,weapon,?????,Abe government said the missiles were not 'weapon' so JSDF could provide them to the ally when collective self defense right was exercised.,1
+10289,weapon,"BROOKLYN, NYC",Please allow me to reiterate it's not the weapon it's the mindset of the individual! #professional #help! -LEGION! https://t.co/2lGTZkwMqW,1
+10290,weapon,,Fur Leather Coats sprite & weapon of choice was a lifestyle chosen back in '02 http://t.co/N9SNJMEVI6,0
+10291,weapon,,@RogueWatson Nothing wrong with that. The Lethal Weapon series is great. Yes they're ALL great.,0
+10293,weapon,åÊ(?Û¢`?Û¢å«)??,@junsuisengen changing my weapon!,0
+10294,weapon,New York 2099,@DwarfOnJetpack I guess I can say you and me might have one thing in common my biological father made me this way to be his weapon,0
+10295,weapon,?,FUCK NUCLEAR WEAPON,0
+10296,weapon,,Cat Of Nine Irons XII: This nightmarishly brutal weapon is used in ritualistic country club de http://t.co/xpFmR368uF http://t.co/nmAUMYdKe1,1
+10297,weapon,Massachusetts,BUT I will be uploading these videos ASAP so you guys get to see the new weapon types in action!,0
+10299,weapon,,GUN FIREARM WEAPON VECTOR CLIP ART FOR VINYL SIGN CUTTER RIFLE GUNS WEAPONS http://t.co/sdOgEF3kFT http://t.co/x0giy85BS8,0
+10301,weapon,"Halifax, NS, Canada",@RosemaryTravale Do we all use the same weapon? 'cause we might be screwed XD,0
+10302,weapon,"UK,singer,songwriter,?2 act",@Weapon_X_music hey guys thanks for a rock in my world and for the follow????????,0
+10303,weapon,"kediri,,jawa timur","@muttatek m believe my 'blue' not isis kwwwkwwwk
+Without weapon 'blue' will hug me jiahahahha
+Yeyeulala....",0
+10304,weapon,MI - CA,Iranian warship points weapon at U.S. helicopter official says http://t.co/SnqfHpYm3O #tcot,1
+10305,weapon,Central Florida,BREAKING: Obama Officials GAVE Muslim Terrorist the Weapon Used in Texas Attack http://t.co/RJcaxjp4oS,1
+10306,weapon,"Des Moines, IA",I... I might buy my esoteric weapon for astrologian...,0
+10307,weapon,,@abcnews A nuclear bomb is a terrible weapon!!,1
+10308,weapon,,Pulse rifles after weapon tuning? http://t.co/UwObuUW2mK,0
+10310,weapon,Washington DC,Rare insight into #terror and How to fight it http://t.co/t6OBVWaPhW #Cameroon #USA #Whitehouse #ES #FR #Nigeria #UK #Africa #DE #CA #AU #JP,1
+10313,weapon,,Back to back like I'm on the cover of lethal weapon,0
+10314,weapon,"California, United States",#InsaneLimits #plugin enabled @' =TPS= | TDM | 400T | HARDCORE | LOCKER | WEAPON RULES' using 3 limits,0
+10315,weapon,?????,Abe's government made clear that grenades were not 'weapon.',1
+10316,weapon,,only weapon im scared off is karma,0
+10317,weapon,"CT, USA",@Camilla_33 @CrayKain Hate to shatter your delusions but a hatchet is a deadly weapon justifying lethal force. #gunsense,0
+10318,weapon,,Even if u have your weapon and your badge we gonna put them choppas on your ass????,1
+10320,weapon,www.twitch.tv/PKSparkxx,"Slosher is GOAT. Freaking love that weapon. Can't wait to do an episode of Splatdown with it.
+
+Switching to the Splatling Gun now.",0
+10321,weapon,statesboro/vidalia,@ThatRussianMan you're too busy finishing those weapon designs,0
+10322,weapon,"New Jersey, usually",So yeah splatoon is still lots of fun and default splattershot jr is still the only weapon layout I'm good at,0
+10323,weapon,"Manchester, England",'Education is the most powerful weapon which you can use to change the world.' Nelson #Mandela #quote http://t.co/QR1L2JYUEZ,0
+10325,weapon,"Haveli, Maharashtra",@SalmanMyDarling I will watch your dub again it will be 100 % again ???? I also have other 3 ..will use one weapon today :p,0
+10327,weapon,"Slateport City, Hoenn",@Snazzychipz OMG... WHAT IS THE SUB WEAPON,0
+10329,weapon,,Weapon's catalogue~,0
+10330,weapon,jayankondacholapuram.tamilnadu,That day remember the nuclear weapon power......Hiroshima 70th,1
+10331,weapon,"New York, NY",03/08/11: Police stop a 41-year-old in the Bronx citing 'casing a victim or location.' No weapon is found.,1
+10332,weapon,Denver Colorado. Fun Times,"Lol
+Look how tough some people talk that live in some of the most gang infested cities in America
+Your mouth isn't a weapon
+You fucking wimp",1
+10333,weapon,,I'm servicin in my section I'm lurkin I'm with my weapon,0
+10334,weapon,Not Of This World,Iranian warship points weapon at American helicopter... http://t.co/cgFZk8Ha1R,1
+10335,weapons,ohio,@danagould @WaynesterAtl I agree with background checks. I just think guns or weapons in general are the great equalizer.,0
+10336,weapons,"California, United States",#Kick Hendrixonfire @'=BLACKCATS= | BIG NOOB CONQUEST | MIXED MAPS | ALL WEAPONS' for violated K/DR Limit /Server max 3,0
+10337,weapons,Proud @BuckMasonUSA supporter!,Agreed there - especially on automatic weapons. There's no legitimate reason for needing one @Argus_99 @HeidiA1438,1
+10338,weapons,"Odawara, Japan","The thing with rules is break it once it becomes easier the next time.
+http://t.co/hGb1mc3IRk https://t.co/6ysXGhc8gz",0
+10339,weapons,"Houston, TX",I'm sorry but if you have to resort to weapons to settle something you're a pussy win or lose take your shit like a man & leave it at that,1
+10340,weapons,"Ely, Cambridgeshire",Incredulous at continued outcry of welfare being a waste of taxpayers money but never similar objection to å£100bn on nuclear weapons,1
+10341,weapons,,Since the chemical-weapons 'red line' warning on 20 August 2012 LCC have confirmed that at least 96355 people have been killed in #Syria.,1
+10342,weapons,"GrC Founder, 8,000 Subscribers",Weapons stolen from National Guard Armory in New Albany still missing #Gunsense http://t.co/lKNU8902JE,0
+10344,weapons,Beirut/Toronto,Friendly reminder that the only country to ever use nuclear weapons is the U.S. And it was against civilians. https://t.co/7QrEPylLUK,1
+10345,weapons,Los Angeles ,Hello Twitter i need some book bloggers and interviews regarding my book Weapons Formed Against Me #ineedexposure,0
+10348,weapons,,I liked a @YouTube video from @dannyonpc http://t.co/AAuIzGGc9Q Battlefield Hardline - 11 NEW WEAPONS - New map - Throwingknifes!,0
+10349,weapons,England,Hiroshima and Nagasaki I remember all those killed in alleged US war crimes using nuclear weapons https://t.co/NDxrK2NCLN #USWarCrimes,1
+10350,weapons,Incognito,WOOOOOOO RT @GameRant: Call of Duty: Black Ops 3 eSports Mode Lets Players Ban Weapons http://t.co/76EHHmQQ6R http://t.co/umtffA9JjB,0
+10351,weapons,,A thought on not dismantling our weapons 'yet' http://t.co/vn0acCF6D4,0
+10352,weapons,Regalo Island,Weapons: Twin Knives #OjouBot,0
+10355,weapons,,@NRO Except when ordered not to carry unauthorized weapons while on duty or in military uniforms. THATS THE RULE FOOL,1
+10358,weapons,,Ukraine argues for US weapons during Pelosi's visit to Kiev http://t.co/jnN0kRNXvY http://t.co/5LOiWuyv5r,1
+10359,weapons,california | oregon | peru |,@DorisMatsui thank you for supporting the President. The #IranDeal takes nuclear weapons out of the hands of Iran and keeps everyone safer.,0
+10360,weapons,N. California USA,Mere sight of a gun makes police ÛÒ and public ÛÒ more aggressive experts say http://t.co/N4NEUIyt2k,0
+10361,weapons,Multinational *****,"@JamesMelville Some old testimony of weapons used to promote conflicts
+Tactics - corruption & infiltration of groups
+https://t.co/cyU8zxw1oH",0
+10364,weapons,,Your Router is One of the Latest DDoS Attack Weapons http://t.co/vXxMvgtzvg #phone #gaming #tv #news,0
+10365,weapons,rural ohio (fuck),@eyecuts @Erasuterism I love 96 Gal Deco to death even if it's a bit trickier to be great with. Glad more weapons are getting Splash Wall,1
+10366,weapons,??????,#Battlefield 1942 forgotten hope secret weapons,1
+10367,weapons,West,WWII Memories Plus Lessons of Hiroshima We Still Need Nuclear Weapons http://t.co/xbMm7ITe9q #denver #billings #rapidcity #seattle #cheyenne,1
+10368,weapons,"Vermont, USA",I think this is my plan for retirement. Check out the weapons of mass instruction! #bookmobile #libraries #reading http://t.co/L2NMywrmq2,0
+10369,weapons,,#bigbrother #ch4 The X-37b's big brother revealed: Boeing bags $6.6m contract to design ... - Daily Mail http://t.co/0migwcmtJe,0
+10371,weapons,"Hawthorne, NE",PM Abe pledged to make every effort to seek a world without nuclear weapons. http://t.co/CBXnHhZ6kD,1
+10372,weapons,,@david_hurn @ToKTeacher Why is there something in place to prevent skynet? Because perhaps there should be! http://t.co/73Umw2iGRZ,0
+10374,weapons,??? ?????????????,I will adamantly opposed to nuclear weapons.,1
+10375,weapons,Rocky Mountains,WWII Memories Plus Lessons of Hiroshima We Still Need Nuclear Weapons http://t.co/MTgFx3efIv #denver #billings #rapidcity #seattle #cheyenne,1
+10376,weapons,"( ?å¡ ?? ?å¡), ",I liked a @YouTube video from @dannyonpc http://t.co/AD38KWoGlh Battlefield Hardline - 11 NEW WEAPONS - New map - Throwingknifes!,0
+10377,weapons,,@kirstiealley @_AnimalAdvocate Or pay it for a photo safari no weapons allowed. Otherwise=they just like to kill something.,0
+10378,weapons,Kernow,"Slightly doesn't help that he has Suh and Wake in practice. But think he will get there. A lot of weapons! #FinsUp
+http://t.co/i1EeUxxZ3A",0
+10379,weapons,,@Glosblue66 no idea what this means. Look at our violent crime rate without weapons. Ban guns we become like Mexico not Australia,0
+10380,weapons,London,Death certificates safes weapons and Teslas: DEF CON 23 #Security http://t.co/KMDQm3NlnS,0
+10381,weapons,"Nottingham, England",I liked a @YouTube video from @dannyonpc http://t.co/PyVRPrNhOP Battlefield Hardline - 11 NEW WEAPONS - New map - Throwingknifes!,0
+10382,weapons,California,"Navy: No charges against officer for weapons violations in Chattanooga attack
+ http://t.co/hddBMU2ycA",1
+10383,weapons,The Netherlands,'The Reagan Administration had arranged for Israeli weapons to be sent to the Guatemalan Army http://t.co/4fYNQ1hWWb,1
+10384,weapons,St. Louis,In memory of the victims of Hiroshima and Nagasaki. Never again! Ban nuclear weapons! : https://t.co/J3cIRXjFa6,1
+10385,whirlwind,"Holly, MI",Hey all you love birds! We have been getting submissions for the Whirlwind Wedding Wars and they are so fantastic! Keep sending them guys!,0
+10387,whirlwind,Somewhere between here & there,"I stand alone
+don't piss and moan
+about my choices made
+If I must reap the whirlwind so be it
+I'll do so with demeanor calm and staid",0
+10390,whirlwind,CHICAGO,A quarter whirlwind. They don't see it coming.,1
+10392,whirlwind,Frostburg,HELP I'M IN A WHIRLWIND OF NOSTALGIA,0
+10393,whirlwind,,Sitting in a cafe enjoying a bite and cramming for my meeting during my whirlwind 14-hours in NYC! https://t.co/TO0BPiEymS,0
+10394,whirlwind,Thailand,Weather forecast for Thailand A Whirlwind is coming ...2 september https://t.co/rUKjYjG9oQ,1
+10395,whirlwind,Canterbury kent,Only been back 10 & a whirlwind has hit jaiden started open his present straight away didn't even get chance get in & sit down lol,0
+10396,whirlwind,,"life can wild when...
+you're caught in a whirlwind ??",1
+10398,whirlwind,The Sun's Corona,It was a whirlwind love affair that began over back fat and grew into much more.,0
+10399,whirlwind,140920-21 & 150718-19 BEIJING,Eyes smile. Pretty smile. Good hair. Miss Luhan in exo. ???????? http://t.co/y7O55by36f,0
+10401,whirlwind,London,NEW YORK: A whirlwind day of activities in New York. Breakfast at the Millennium Hotel United Nations Plaza. Lunch... http://t.co/laYZBA9y8h,0
+10402,whirlwind,World,PawSox owners public return from whirlwind trip to Durham - Knoxville News Sentinel http://t.co/9ckggGYvOU http://t.co/u0vdBrXfia,0
+10405,whirlwind,"Harbour Heights, FL",@DrMartyFox In the U.S. government and Libs made evil good and good evil. We will reap the whirlwind. Lord have mercy on us.,0
+10406,whirlwind,New York,Back from Seattle Tacoma and Portland. Whirlwind! http://t.co/qwHINBni8e,1
+10407,whirlwind,Sheff/Bangor/Salamanca/Madrid,@VixMeldrew sounds like a whirlwind life!,0
+10409,whirlwind,Stamford & Cork (& Shropshire),I moved to England five years ago today. What a whirlwind of time it has been! http://t.co/eaSlGeA1B7,1
+10410,whirlwind,,Whirlwind Medusa Audio Snake: 16 microphone inputs 0 returns 150 ft http://t.co/mxkAlMQpdb http://t.co/8KZnhtYtt9,1
+10411,whirlwind,140920-21 & 150718-19 BEIJING,"{INFO} Baekhyun and Suho will be attending the Idol Sports Championship on August 10th
+Cr: SYJEXO
+ http://t.co/oAZjPwUeYR",0
+10412,whirlwind,#KaumElite;#F?VOR;#SMOFC,@byuwnbeki The sad eyes and tacit stories in your heart that night in which the whirlwind was raging,1
+10413,whirlwind,"Orlando, FL",My #mantra this morning!! Heading out to Make a whirlwind trip down southÛ_ https://t.co/geht4sKI86,0
+10414,whirlwind,"Nairobi, Kenya",Whirlwind that has lasted for more than an hour and still strong. A standstill in parts of middle east.,1
+10415,whirlwind,Richardson TX,???? throwback Thurs ?? ???? Will You Still Love Me Tomorrow http://t.co/wmoyibWEc1 ?? @LucyMayOfficial ?? ?? #Whirlwind http://t.co/0rsverLzTm,0
+10416,whirlwind,,Last Second OutBid RT? http://t.co/KrNW0Wxhe5 30pcs 12mm Ab Resin Flower Whirlwind Flatback Rhinestone Wedding Decoration ?Please Fa,0
+10418,whirlwind,"London, Sydney",Two hours to get to a client meeting. Whirlwind of emotions with this #tubestrike,1
+10419,whirlwind,Las Vegas,Whirlwind Head Scissor on @alexhammerstone @kttape ktfounder #RemyMarcel #FroFroFroÛ_ https://t.co/B19z8Vi3td,0
+10420,whirlwind,,Feel like I've got no control of anything that goes on in my life at the minute. #whirlwind #drained,1
+10421,whirlwind,Internet,Richard returns after whirlwind few days http://t.co/L8W30WFW3R #MLB,1
+10422,whirlwind,Florida,Set a new record.... 7 states in 4 days. I don't even know where I am when I wake up anymore. What a whirlwind! Loving every minute though.,0
+10423,whirlwind,Pittsburgh,reap the whirlwind,0
+10424,whirlwind,Where I Need To Be,@TheEmoBrago back doing another jitsu making a hexagon on the ground as you laid there.* 64 palms of whirlwind * I yelled as air began to +,0
+10426,whirlwind,"Here, unless there. ",@ckosova Read Whirlwind about this subject amongst others. The bomb saved millions of lives yes that's true.,1
+10427,whirlwind,Manchester,In @edfringe? We highly recommend @M00NF00L #Titania @Summerhallery A whirlwind reimagining /Shakespeare's Midsummer https://t.co/iIAIGZkbnJ,0
+10428,whirlwind,NEPA/570,The Whirlwind! Scourge of Europe! RT @whedonesque Or you could just watch the Fanged Four http://t.co/Q0JHDcU6Ly,0
+10429,whirlwind,,Whirlwind weekend #1 starts in 12 hours #cantwaittoplayinminneapolis,0
+10430,whirlwind,"pettyville, usa",this week has been a whirlwind but this is exactly what i imagined the nyc version of my career to be like,0
+10431,whirlwind,Phila.,MY GIRL GOT A GIRLFRIEND CHEVY BLUE LIKE WHIRLWIND.,0
+10432,whirlwind,"brooklyn, NYC",#picthis http://t.co/br7gmMh5Ek ÛÓ And IÛªm off! Thank you so much #Toronto. It has been such a whirlwind of amazingness. So glad I finallÛ_,0
+10433,whirlwind,Atlanta - FAU class of '18,This past week has been an absolute whirlwind.... Athens bound,1
+10434,whirlwind,"Bristol, England",WIN: Lisowski whitewashes the Whirlwind 5-0 in round 2 of Shanghai Masters Quals! | http://t.co/MLigPUHVOh #snooker http://t.co/TcS2Cd5y6y,1
+10436,wild%20fires,Houston,As wild fires blacken northern California parched Harris County becomes tinder box. https://t.co/i2lwTy5YuP,1
+10439,wild%20fires,Twitterville,Collection of Articals and Video of West Coast Wild Fires by @ABC http://t.co/qd3DSSFWUE,1
+10441,wild%20fires,,My brother-n-law riooooos got the call to head up north and fight the wild fires. Dudes a beast atÛ_ https://t.co/463P0yS0Eb,1
+10443,wild%20fires,Eastern Iowa,Several wild fires have burned a lot of land in California. Here is one of the larger fires. http://t.co/2M1gNeaiFl http://t.co/UQh85MiP0v,1
+10444,wild%20fires,"Los Angeles, CA",Map shows where all of California's wild#fires are burning: This map created by CAL FIREÛ_ http://t.co/0x8jAQToWM http://t.co/m1RoSi2Wcs,1
+10445,wild%20fires,,Some great footage of STRONG work from San Bernardino County Fire who is also working the wild fires right now.... http://t.co/QCYQHvn2Ha,1
+10446,wild%20fires,,God forbid this is true #California has enough problems with severe #drought & #wild fires. http://t.co/CMsgexM4FC #Nuclear Power #SanOnofre,1
+10448,wild%20fires,"Fort Walton Beach, FL",Firefighters Headed To California To Fight Wild Fires http://t.co/J2PYkYo0EN,1
+10449,wild%20fires,USA,#FOXDebateQuestions: To what degree has Obama's efforts to institute Sharia Law exacerbated the California wild fires?,1
+10450,wild%20fires,"Dallas, TX",PRAYERS FOR MY COUSIN! He's in California helping with the wild fires.,1
+10451,wild%20fires,"Toronto, Bob-Lo, Miami Beach",Catastrophic wild fires threatening U.S. Mid west & Republicans fighting new climate change rules I guess this is the ultimate in Darwinism,1
+10455,wild%20fires,"North Carolina, USA",@Jennife29916207 I was thinking about you today when I was reading about the wild fires,1
+10456,wild%20fires,planet earth,@cnni @PrisonPlanet Climate Change CNN weather 'specialist' warning:wild fires rain flooding noting about the sun? http://t.co/0sZwlWL9qU,1
+10457,wild%20fires,"Los Angeles, CA",@SenFeinstein Thanks Sen. Feinstein now hurry home because California is a huge uncontrolled wild fire. Lightening is starting new fires.,1
+10458,wild%20fires,nap central,Wild fires freak me the fuck out. Like hell no,1
+10461,wild%20fires,"Olathe, KS",Man! What I would give to be in CA right now to help with the wild fires.,1
+10462,wild%20fires,Madrid,In Europe nature is kind while in US they have tornados hurricanes wild fires earthquakes flash floods mega snow droughts.,1
+10464,wild%20fires,"Johannesburg, South Africa",They should just have load shedding permanently and we will all just live like we in the wild and have camp fires cook with fire etc,0
+10466,wild%20fires,"Hartford, Connecticut",Firefighters from Connecticut are headed to California to fight wild fires http://t.co/QWpUxPyWbF http://t.co/8jlXZ6fkxy,1
+10467,wild%20fires,New Jersey ,These wild fires out west are crazy.,1
+10468,wild%20fires,"Cedar Island, Clinton CT 06413",DEEP crew to help with California wild fires http://t.co/QKz2Sp06xn via @thedayct,1
+10470,wild%20fires,,@aria_ahrary @TheTawniest The out of control wild fires in California even in the Northern part of the state. Very troubling.,1
+10471,wild%20fires,,Full Episode: WN 08/02/15: California Wild Fires Force 12000 to Evacuate #Worldnews http://t.co/9ikhdyHVnC,1
+10472,wild%20fires,"West Vancouver, B.C.",Man selling WILD MORELS at Ambleside Farmr Mart.Sun.-MUSHROOM forageSECRET IS TO KNOW WHAT TREES they grow under & BEST AFTER FOREST FIRES,0
+10473,wild%20fires,"London, UK",@randerson62 Watching news of wild fires and hope all is ok.,1
+10478,wild%20fires,Indiana,"'Your love will surely come find us
+Like blazing wild fires singing Your name'",0
+10479,wild%20fires,,@EnzasBargains A5 Donated some fruit snacks & handi wipes to our fire fighters battling wild fires! #ProfitToThePeople,1
+10481,wild%20fires,,Wild land fires.. Here I come. ??????,1
+10482,wild%20fires,Canada,@WBCShirl2 Yes God doessnt change he says not to rejoice over the fall of people or calamities like wild fires ect you wanna be punished?,0
+10483,wild%20fires,,My heart goes out to all those effected by the wild fires in Cali????,1
+10484,wild%20fires,United States of America,Wild fires in California... Must be Global Warming. Can't just be extreme heat combined with dry foliage ignited by some douchebag hiker.,1
+10485,wildfire,"Tucson, AZ",Does the #FingerRockFire make you wonder 'am I prepared for a wildfire'. Find out at http://t.co/eX8A5JYZm5 #azwx http://t.co/DeEeKobmXa,1
+10486,wildfire,,"kc5kH mhtw4fnet
+
+Crews gaining on huge Northern California wildfire - CBS News",1
+10487,wildfire,Get our App,Fire in Pisgah National Forest grows to 375 acres - WSOC Charlotte http://t.co/djUfkRrtFt,1
+10488,wildfire,,Route Complex AM Fire Update (Route Complex Wildfire): FIRE UPDATE: ROUTE COMPLEX Thursday Morning Aug... http://t.co/nS5lBS5ZUp #CAFire,1
+10489,wildfire,,Parker Ridge Fact Sheet Aug 6 2015 (Parker Ridge Wildfire): Information Phone: 208-267-6773 Email: pa... http://t.co/ezEIsaSm0C #IDFire,1
+10490,wildfire,Vail Valley,We should all have a fire safety plan. RT @Matt_Kroschel: MOCK WILDFIRE near #Vail as agencies prepare for the worst. http://t.co/SWwyLRk0fv,0
+10492,wildfire,Amsterdam | San Francisco,'Some hearths they burn like a wildfire' https://t.co/of3td6DGLb by Bees Knees,1
+10496,wildfire,Australia,NowPlaying GT & Wildfire feat. Freaks In Love Feels Like It Should (Original Mix) Massive Dance Radio ListenLive: http://t.co/ANoDGXZR3E,0
+10498,wildfire,,Drones Under Fire: Officials Offer $75000 Reward Leading To Pilots Who Flew Over Wildfire http://t.co/d2vEppeh8S #photography #arts,1
+10499,wildfire,"Ashland, Oregon",Be ember aware! http://t.co/LZmL1xB2nH,1
+10500,wildfire,Worldwide,California wildfire destroys more homes but crews advance http://t.co/7XQ8JrtL7I Free tool online http://t.co/J90dT2qnXb,1
+10502,wildfire,,#IDFire Parker Ridge Fact Sheet Aug 6 2015 (Parker Ridge Wildfire): Information Phone: 208-267-6773 Email: pa... http://t.co/ZggpaCjP7D,1
+10503,wildfire,"Riverside, California.",Is LA at Risk for a Giant Wildfire? - Which Way L.A.? on KCRW http://t.co/6AgMkx2WW4,1
+10505,wildfire,"Oakland, CA",California is battling its scariest 2015 wildfire so far. http://t.co/Lec1vmS7x2,1
+10506,wildfire,,Wildfire Burns On California U.s. China Economic Net Û_ : http://t.co/U2dO2mC2ri http://t.co/3oM3xw6CZ8,1
+10508,wildfire,"Ottawa, Canada",Dr. Bengston on #wildfire management: ÛÏnumbers and size of fires areas affected and costs of fighting them all show upward trend.Û #smem,1
+10511,wildfire,USA,The Latest: Washington #Wildfire misses town; evacuations end - KHQ Right Now http://t.co/aNlhW2IzkZ,1
+10513,wildfire,"Columbus, OH",I honestly wonder what it is that I had to do so wrong to lose everyone.,0
+10515,wildfire,Around the world,PHOTOS: The Rocky Fire has grown into California's most destructive wildfire this year. http://t.co/h9v4HoWtiP http://t.co/8IcSesHbj3,1
+10516,wildfire,Washington State,Wildfire near Columbia River town is 50 percent contained http://t.co/gzGpWSqyMW #FireNews #WA http://t.co/ay49MTYyL8,1
+10517,wildfire,,! Residents Return To Destroyed Homes As Washington Wildfire Burns on http://t.co/UcI8stQUg1,1
+10518,wildfire,"California, USA",California is battling its scariest 2015 wildfire so far - the Rocky Fire http://t.co/sPT54KfA9Q,1
+10519,wildfire,,Solitude Fire Update August 6 2015 (Solitude Wildfire): Summary: This lightning-caused fire is being ... http://t.co/4eSbsA8InT #UTFire,1
+10520,wildfire,Lancaster California,The Latest: More homes razed by Northern California wildfire - LancasterOnline http://t.co/ph7wllKRfI #Lancaster,1
+10521,wildfire,,Reuters Top News: PHOTOS: The Rocky Fire has grown into California's most ... - http://t.co/qwrRfDGXCc #NewsInTweets http://t.co/sstj2bEpqn,1
+10522,wildfire,,This machine really captured my attention. #helicopter #firefighting #wildfire #oregon #easternoregonÛ_ https://t.co/V6qxnFHRxF,1
+10523,wildfire,?? Cloud Mafia ??,@_wildfire__ ???? Bruh that's the lady from Mulan!!,0
+10524,wildfire,,For those impacted by the #CalWildfires here are some great recovery tips to help you in the aftermath http://t.co/wwxbGuBww5,1
+10525,wildfire,,#IDFire Cherokee Road and Road 22 (Three Sisters Wildfire): There are two roads closed to the general public: ... http://t.co/UORXfF0NfX,1
+10527,wildfire,"Eddyville, Oregon 97343",Oregon's biggest wildfire slows growth http://t.co/P0GoS5URXG via @katunews,1
+10529,wildfire,,Media Release - Firefighters Ask Hikers to Sign-in at Local Trailheads (Parker Ridge Wildfire): Parker... http://t.co/ABlz20mgzv #IDFire,1
+10533,wildfire,USA,The Latest: #Wildfire destroys more homes but crews advance - WQOW TV News 18 http://t.co/Hj26SFDdfI,1
+10534,wildfire,"Bakersfield, California",#California #wildfire destroys more homes but crews advance. http://t.co/2PPzGpxybi http://t.co/dS9khKffwc,1
+10535,windstorm,"Galveston, Texas",For sixth year in a row premium costs for windstorm insurance to climb. This time by 5 percent. #GalvNews https://t.co/Cm9TvE2Vsq,0
+10536,windstorm,,Windstorm lastingness perquisite - acquiesce in a twister retreat: ZiUW http://t.co/iRt4kkgsJx,1
+10537,windstorm,Chicago,'My Fifty Online Dates and why I'm still single' by Michael Windstorm $2.99 B&N http://t.co/dde8GXaQrp #nook #books #TheBachelorette,0
+10540,windstorm,"Palm Beach County, FL",Reality Training: Train falls off elevated tracks during windstorm http://t.co/JIOMnrCygT #Paramedic #EMS,1
+10541,windstorm,,Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/ei8QqhrEgZ #insurance,0
+10543,windstorm,,IJ: Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/h132iuL7MU,1
+10544,windstorm,"Victoria, BC",*looks outside at the windstorm* niiiice,1
+10545,windstorm,,Texas Seeks Comment on Rules for Changes to WindstormåÊInsurer http://t.co/92fwtObi3U,1
+10546,windstorm,Georgia ? Tennessee,When I breathe it sounds like a windstorm. Haha cool,0
+10548,windstorm,,WindStorm WSVR1686B Cover for V-Hull Runabout Boat including euro-style with wi http://t.co/8Prnhrhb2T http://t.co/OAhLtHRozY,0
+10550,windstorm,"Lagos, Nigeria",NEMA Ekiti distributed relief materials to affected victims of Rain/Windstorm disaster at Ode-Ekiti in Gbonyin LGA.,1
+10551,windstorm,Puerto Rico,Reality Training: Train falls off elevated tracks during windstorm http://t.co/etgQf28MgE,1
+10552,windstorm,,#Insurance Texas Seeks Comment on Rules for Changes to Windstorm Insurer: The Texas Department of Insurance is... http://t.co/byvUBg0WyE,1
+10553,windstorm,"Gettysburg, PA",#NowPlaying School Of Seven Bells - Windstorm #WZBT,0
+10554,windstorm,"Austin, Texas",Windstorm board OKs rate hike before change http://t.co/AI6kwOrBbT #politics #txlege #twia,0
+10555,windstorm,,Reality Training: Train falls off elevated tracks during windstorm http://t.co/wAL4FrTfKa #fire #ems,1
+10557,windstorm,Florida USA,One thing I wanna see before I die> #Trump standing in a good windstorm with no hat on!!! #Hardball,0
+10558,windstorm,"Hermitage, PA",@chriscesq The average GOP voter would go to a big-tent circus in a hailstorm/windstorm no? :-),0
+10559,windstorm,,@charlesadler Ian Lee's word is like 'A fart in a windstorm'. Such a browner.,0
+10560,windstorm,"Jakarta, Indonesia",Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/BP6MfJHARS,0
+10561,windstorm,Puerto Rico,Reality Training: Train falls off elevated tracks during windstorm http://t.co/qzRciNaF5z,1
+10562,windstorm,"San Diego, CA",Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/BNNIdfZWbd,0
+10563,windstorm,"calgary,ab",My precious olive tree lost this battle...another crazy windstorm in #yyc! @weathernetwork http://t.co/N00DVXEga2,1
+10564,windstorm,"Newton, NJ 07860",Shirley Caesar - Windstorm http://t.co/KoCH8SLasQ #nowplaying #listenlive,0
+10565,windstorm,,If you find your patio table umbrella and chairs flipped over and suspect foul play (instead of windstorm) you may be a suspense writer.,0
+10566,windstorm,she/her/your majesty/empress,I like the weird ones like Rain of Mystical or Windstorm or Ocean Waves https://t.co/gCdxYdBSc4,0
+10567,windstorm,,A fierce windstorm can't take place without da calm/stillness of the eye/center so w/ that said ur internal aspects weigh more than external,0
+10568,windstorm,,NW Michigan #WindStorm (Sheer) Recovery Updates: Leelanau & Grand Traverse - State of Emergency 2b extended http://t.co/OSKfyj8CK7 #BeSafe,1
+10570,windstorm,Houston,New roof and hardy up..Windstorm inspection tomorrow http://t.co/kKeH8qCgc3,0
+10571,windstorm,,School Of Seven Bells - Windstorm http://t.co/E1kbluDwh5 #nowplaying,0
+10573,windstorm,LYNBROOK,#Insurance: Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/rb02svlpPu,0
+10574,windstorm,Argus Industries \m/666\m/,Damn...was wondering where my drone ended up after the freak windstorm...?? https://t.co/dHgGxo7Mcc,1
+10575,windstorm,,@blakeshelton DON'T be a FART ??in a WINDSTORM.FOLLOW ME ALREADY. JEEZ.,1
+10576,windstorm,"Friendswood, TX",TWIA board approves 5 percent rate hike: The Texas Windstorm Insurance Association (TWIA) Board of Directors v... http://t.co/esEMjRn5cC,0
+10578,windstorm,"Sugar Land, TX",Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/BZ07c9WthX via @ijournal,0
+10580,windstorm,(a) property of the universe,the windstorm blew thru my open window and now my bong is in pieces just another example of nature's indifference to human suffering,0
+10581,windstorm,Chicago,'My Fifty Online Dates and why I'm still single' by Michael Windstorm $2.99 Amazon http://t.co/5KohO39oJE #kindle #datingtips #goodreads,0
+10582,windstorm,Home is where we park it!,@rangerkaitimay had major windstorm thunder and some rain down here near Jackson...calm now.,1
+10583,windstorm,"Webster, TX",TWIA board approves 5 percent rate hike: The Texas Windstorm Insurance Association (TWIA) Board of Directors v... http://t.co/TWPl0NL8cx,1
+10584,windstorm,,Texas Seeks Comment on Rules for Changes to Windstorm Insurer http://t.co/XQIadG9H2w http://t.co/yPEElMjdZY,0
+10585,wounded,,Gunmen kill four in El Salvador bus attack: Suspected Salvadoran gang members killed four people and wounded s... http://t.co/r8k6rXw6D6,1
+10587,wounded,"Maracay y Nirgua, Venezuela",Police Officer Wounded Suspect Dead After Exchanging Shots http://t.co/XxFk4KHbIw,1
+10588,wounded,North Cack/919,I also loved 'Bury my heart at wounded knee' too! #TheGame,0
+10589,wounded,"Scottsdale, AZ",The whole food stamp gov. assistance program needs to be retooled for wounded veterans retirees and handicapped only. #NoMoreHandouts,0
+10590,wounded,United States,Gunmen open fire on bus near El Salvador's capital killing 4 a week after gang attacks killed 8 bus drivers: http://t.co/Pz56zJSsfT bitÛ_,1
+10591,wounded,"Paterson, New Jersey ",Officer Wounded Suspect Killed in Exchange of Gunfire: Richmond police officer wounded suspect killed in exc... http://t.co/crCN8rwvKj,1
+10592,wounded,New York,One man fatally shot another wounded on Vermont Street #Buffalo - http://t.co/KakY4mpCO4,1
+10593,wounded,Venezuela,Richmond police officer wounded suspect killed http://t.co/m9d2ElImZI,1
+10596,wounded,"Victoria, Canada",Twilight's Encore (Wounded Hearts Book 3) by Jacquie Biggar http://t.co/ZnpTdIcQxE via @amazon #KindleCountdown #Sale #MFRWauthor #MGTAB,0
+10598,wounded,FILM OUT LATE 2015,"Prince Phillip said of the numbers of those murdered by the British at Amritsar...
+
+ÛÏThatÛªs a bit exaggerated it must include the woundedÛ.",1
+10599,wounded,"Miami,Fla",California cops have sketch of gunman who killed one wounded two deputies via the @FoxNews app http://t.co/3Ife1zsop7,1
+10600,wounded,santo domingo,Police Officer Wounded Suspect Dead After Exchanging Shots: Richmond police officer wounded suspect killed after exchange of gunfire,1
+10601,wounded,"Illinois, USA",Let's not forget our wounded female veterans. http://t.co/rZ7fbr10xw,1
+10603,wounded,Worldwide - Global,Gunmen kill four in El Salvador bus attack: Suspected Salvadoran gang members killed four people and wounded s... http://t.co/CNtwB6ScZj,1
+10605,wounded,,"Have you ever seen the President
+who killed your wounded child?
+Or the man that crashed your sister's plane
+claimin' he was sent of God?",0
+10606,wounded,USA,One man fatally shot another wounded on Vermont Street #Buffalo - http://t.co/8ACDF4Zui6,1
+10607,wounded,"Suva, Fiji Islands.",GENERAL AUDIENCE: On Wounded Families | ZENIT - The World Seen From Rome http://t.co/hFvnyfT78C,0
+10608,wounded,,DESCRIPTIONS OF 'WOUNDED CATS BEING 'EXCITING' http://t.co/BJycRGfH5y,0
+10609,wounded,,Love is the weapon for this wounded generation <3,0
+10610,wounded,,@AsterPuppet wounded and carried her back to where his brothers and sisters were and entered the air ship to go back to Academia,0
+10611,wounded,Americas Newsroom,Police officer wounded suspect dead after exchanging shots: RICHMOND Va. (AP) ÛÓ A Richmond police officer wa... http://t.co/Y0qQS2L7bS,1
+10612,wounded,,Police Officer Wounded Suspect Dead After Exchanging Shots - http://t.co/iPHaZV47g7,1
+10613,wounded,USA,Police Officer Wounded Suspect Dead After Exchanging Shots http://t.co/brE2lGmn7C #ABC #News #AN247,1
+10615,wounded,Yogya Berhati Nyaman,@wocowae Police Officer Wounded Suspect Dead After Exchanging Shots http://t.co/oiOeCbsh1f ushed,1
+10616,wounded,"Washington, D.C.",The Police Chief assured the crowd that this officer-related shooting would be investigated: http://t.co/KMXzhO5TFM. http://t.co/AlBvDNwJtg,1
+10620,wounded,,Police Officer Wounded Suspect Dead After Exchanging Shots: Richmond police officer wounded suspect killed a... http://t.co/5uFTRXPpV0,1
+10621,wounded,"Brooklyn, NY",I'm liable to sound like a wounded animal during sex if the ?? is good lol,0
+10622,wounded,worldwide,Officer Wounded Suspect Killed in Exchange of Gunfire: Richmond police officer wounded suspect killed in exc... http://t.co/zDHwRN6cZc,1
+10623,wounded,,Police Officer Wounded Suspect Dead After Exchanging Shots,1
+10625,wounded,,Officer wounded suspect killed in exchange of gunfire: Richmond police say an officer has been wounded and a ... http://t.co/HwOrB1N6vN,1
+10626,wounded,"Fredericksburg, Virginia",.@wwp is serving more than 75k veterans. 52k OIF/OEF vets have physical wounds; many more have invisible ones http://t.co/sHHLV4dPlz #client,1
+10627,wounded,"England, United Kingdom",[#Latestnews] Police officer wounded suspect dead after exchanging shots: RICHMOND Va. (AP) ÛÓ A Richmond pol... http://t.co/ia1HnGnHVB,1
+10628,wounded,USA,ABC News: Police Officer Wounded Suspect Dead After Exchanging Shots. More #news - http://t.co/AzovGv4SB6,1
+10629,wounded,,National free root beer float day is tomorrow at A&W from 2pm-close!! Help support the Wounded Warrior Project with donations!! :),0
+10630,wounded,Wherever I'm needed,-- small bag from the bottom the wounded hero shakes it. A Senzu Bean falls from it. GohanÛªs surprised. Shakes the pouch once more but --,0
+10631,wounded,Yogya Berhati Nyaman,@wocowae Officer Wounded Suspect Killed in Exchange of Gunfire http://t.co/QI2BDvkab7 ushed,1
+10632,wounded,"Paterson, New Jersey ",Police Officer Wounded Suspect Dead After Exchanging Shots: Richmond police officer wounded suspect killed a... http://t.co/w0r8EAOKA0,1
+10636,wounds,Charlotte ,Gunshot wound #9 is in the bicep. The only one of the ten wounds that is not in the chest/torso area. #KerrickTrial #JonathanFerrell,1
+10637,wounds,"Sale, England",@CharlesDagnall He's getting 50 here I think. Salt. Wounds. Rub. In.,0
+10640,wounds,"Newcastle, England ",Nout like rubbin salt in the wounds dad.. ?????? http://t.co/M8UfjDtlsm,0
+10641,wounds,Kashmir!,Read ~ THE UNHEALED WOUNDS OF AN UNENDING CONFLICT #Kashmir #Pakistan #India http://t.co/sAF9MoSkSN #EndOccupation #EndConflict #FreeKashmir,1
+10644,wounds,,We would become the mirrors that reflected each other's most private wounds and desires.,0
+10647,wounds,Kashmir!,Acc to the study conducted by SKIMS morethan 50% population in #Kashmir suffer psychiatric disorders http://t.co/sAF9MoSkSN #KashmirConflict,1
+10648,wounds,in my head,You are equally as scared cause this somehow started to heal you fill your wounds that you once thought were permanent.,0
+10650,wounds,Earth,RT @DianneG: Gunshot wound #9 is in the bicep. only 1 of the 10 wounds that is not in the chest/torso area. #KerrickTrial #JonathanFerrell,0
+10651,wounds,,"white ppl bruise easily.. where ur bullet wounds at ??
+
+https://t.co/6vyYER6PY0",0
+10655,wounds,"Rutherfordton, NC",Help yourself or those you love who suffer from self-esteem wounds. You can today! http://t.co/tu6ScRSXVG http://t.co/iDhj4JBQ05,0
+10656,wounds,Lake Highlands,Crack in the path where I wiped out this morning during beach run. Surface wounds on left elbow and right knee. http://t.co/yaqRSximph,0
+10657,wounds,"Charlotte, N.C.",Dr. Owen says four of Ferrell's ten bullet wounds were 'rapidly lethal' #KerrickTrial #TWCNewsCLT http://t.co/nNBEXhKlHr,1
+10658,wounds,"iPhone: 33.104393,-96.628624",@mattmosley post a pic of your wounds please,0
+10659,wounds,,11 puncture wounds,0
+10660,wounds,United States,Having your wounds kissed by Someone who doesn't see them as disasters in your soul but rather cracks to pour their love into is amazing.,0
+10662,wounds,The American Wasteland (MV),@FEVWarrior -in the Vault that could take a look at those wounds of yours if you'd like to go to one of these places first.' Zarry has had-,0
+10663,wounds,,Cutting for some celebrety and then posting the wounds online is a no-go.,0
+10665,wounds,"Cleveland, OH",If time heals all wounds how come the belly button stays the same?,0
+10666,wounds,Cape Town,and I thought my surgical wounds were healed!!! this weather ain't helping either ):,0
+10667,wounds,,Woodlawn Shooting Wounds 79-Year-Old Woman Teen - Woodlawn - http://t.co/nu3XXn55vS Chicago http://t.co/XNGrfNQSx3,1
+10669,wounds,"KADUNA, NIGERIA",It is not always friendship when kisses show up neither is it always enemity that shows up when wounds show up. #BishopFred,0
+10671,wounds,Shady Pines ,I keep scrolling to find out what he said or did....but there seems to be no exact starting point. Wounds run deep. : /,0
+10672,wounds,"Wales, United Kingdom",@BritishBakeOff This has opened up old baked alaskan shaped wounds. Too soon GBBO too soon... #neverforget,0
+10673,wounds, Alex/Mika/Leo|18|he/she/they,@ego_resolution im glad. My gay can heal 1000 wounds,0
+10675,wounds,North Carolina,Court back in session. Testimony continues with med. examiner discussing gunshot wounds #KerrickTrial,0
+10676,wounds,?Gangsta OC / MV RP; 18+.?,@IcyMagistrate ÛÓher upper armÛÒ those /friggin/ icicle projectilesÛÒ and leg from various other wounds the girl looks like a miniature moreÛÓ,1
+10677,wounds,Earth: Senseless nonsense,Explosion in Gaza Strip kills four wounds 30; cause unknown http://t.co/GopSiCP8bm via @Reuters,1
+10678,wounds,"Tampa, FL",@NicolaClements4 IÛªm not sure that covering my head in wounds and scabs is the solution ;),0
+10679,wounds,Not Steven Yeun / AMC.,@DauntedPsyche - Man gently dabbed the cotton rag across each one of his wounds; the pain a lot more worse than Glenn had ever -,0
+10680,wounds,"cody, austin follows ?*?","Crawling in my skin
+These wounds they will not hea",1
+10681,wounds,"Paterson, New Jersey ",Driver rams car into Israeli soldiers wounds 3: military: A driver rammed a car into a group of Israeli soldi... http://t.co/oBSZ45ybAJ,1
+10682,wounds,,Sorrower - Fresh Wounds Over Old Scars (2015 Death Metal) http://t.co/L056yj2IOi http://t.co/uTMWMjiRty,1
+10684,wounds,Charlotte,ME says many of these wounds could be fatal some rather quickly others slower and a couple not lethal at all. #KerrickTrial,0
+10685,wreck,moss chamber b,@Squeaver just hangin out in star buck watchin my boy wreck this septic tank,0
+10686,wreck,,@Captainn_Morgan car wreck ??,1
+10687,wreck,,I am a wreck,0
+10688,wreck,1/10 Taron squad,Season 3 of New Girl was such a emotional train wreck I just wanted to cry laugh and eat a lot of ice cream,0
+10689,wreck,,wreck? wreck wreck wreck wreck wreck wreck wreck wreck wreck wreck wreck wreck?,0
+10690,wreck,Argentina,Did I drink too much? Am I losing touch? Did I build a ship to wreck?,0
+10691,wreck, ?currently writing a book?,"I'm a friggin wreck destiel sucks (read the vine description)
+https://t.co/MKX6Ux4OZt",0
+10692,wreck,"Lebanon, Tennessee",Watertown Gazette owner charged in wreck http://t.co/JHc2RT0V9F,1
+10693,wreck,Pratt-on-Wye,How many cars do those cyclists wreck going past scratching with pedals. They should be banned #c4news,0
+10695,wreck,"Somerset, UK",LARGE SHIP WRECK FISH TANK ORNAMENT FOR SALE LARGE SHIP WRECK FISH TANK AQUA...http://t.co/scGhL0Piq6,0
+10696,wreck,"Victoria, BC",@Memenaar But the design decision to 'Let's make something fresh and beautiful and wonderful and then WRECK IT' is kindof odd in restrospect,0
+10698,wreck,United States,@_PokemonCards_ @IceQueenFroslas why did they have to wreck it with ON SALE HERE ;-;,0
+10700,wreck,,Ranking #artectura #pop2015 #Nå¼36 Florence + The Machine - Ship To Wreck https://t.co/9LE0B19lVF #music #playlist #YouTube,0
+10702,wreck,,the sunset boys wreck my bed original 1979 usa gimp label vinyl 7' 45 newave http://t.co/X0QLgwoyMT http://t.co/hQNx8qMeG3,1
+10704,wreck,"Atlanta, Georgia",#Trump debate will be most highly watched show tonight even among progressives. I too will watch hoping for a spectacular flaming wreck.,0
+10705,wreck,"SF Bay Area, California / Greater Phoenix, AZ",Anyone know if Fox ÛÏNewsÛ will be live-streaming tonightÛªs Republican debate online? I want to watch the train wreck.,0
+10706,wreck,Baltimore,@girlthatsrio have my uncles wreck their shit,0
+10707,wreck,"Alabama, USA",First wreck today. So so glad me and mom are okay. Could've been a lot worse. So happy the lord was with us today ??????,0
+10708,wreck,,I'm an emotional wreck right now.,0
+10709,wreck,,My emotions are a train wreck. My body is a train wreck. I'm a wreck,0
+10710,wreck,new york,act my age was a MESS everyone was so wild it was so fun my videos a wreck,0
+10711,wreck,Primum non nocere,@GeorgeFoster72 and The Wreck of the Edmund Fitzgerald,1
+10712,wreck,"Orlando, FL",GOP debate drinking game. For anyone looking for a bit of fun while watching this train wreck. http://t.co/W3Rga0nkOm http://t.co/0TZsQe8ESD,0
+10715,wreck,,Wreck with road blockage Woodward Avenue Northbound at Davison in M.S. #shoalstraffic,1
+10718,wreck,"Arlington, TX",Got in a car wreck. The car in front of me didn't put their blinker on :-))) but it really does feel great outside so lol,0
+10720,wreck,"Gwersyllt, Wales",Don't think I Can take anymore emotional wreck watching @emmerdale #SummerFate @MikeParrActor @MissCharleyWebb,0
+10721,wreck,Greenville,The court system is truly broken indeed! But then its no surprise based on who it's run by! http://t.co/uU64wfg17m,0
+10722,wreck,"Greenville, S.C.",Greer man dies in wreck http://t.co/n2qZbMZuly,1
+10723,wreck,United States,AmazonDeals: Skylanders Trap Team: Flip Wreck Character Pack - down 4.53% ($0.45) to $9.49 from $9.94 #Sale http://t.co/pMbuzfGIn3,0
+10724,wreck,"Innsmouth, Mass.",A staged locomotive wreck what could possibly go wrong? http://t.co/Ei9x4H8tHm,0
+10726,wreck,,i still don't see the point of a frozen sequel like where's the wreck it ralph sequel,0
+10727,wreck,709?,I still need to finish the lover but I'm watching this other drama for 8 hours now and I'm an emotional wreck so the lover needs to wait,0
+10729,wreck,Norwich,Omg if Cain dies i will be an emotional wreck #emmerdale,1
+10730,wreck,,@TitorTau The Loretta Lynch one was fuckin' HI-LARIOUS to watch in realtime. It was like a train wreck of fact-checking and ombudsmanship.,0
+10731,wreck,Canada BC,@raineishida lol...Im just a nervous wreck :P,0
+10732,wreck,"Plano, IL",Amazon Prime Day: 12 quick takeaways from AmazonÛªs magnificent train wreck - http://t.co/DBDwtOcGXF,0
+10733,wreck,scumbernauld,I'm an emotional wreck watching emmerdale,0
+10735,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/SfAKQNveta,1
+10736,wreckage,Tokyo,Wreckage Confirmed As Part of Missing Malaysia Airlines Flight MH370 http://t.co/yoPeYPJkb2 (VICE News),1
+10737,wreckage,,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/gRh7zLK979,1
+10739,wreckage,Sydney,MH370 victim's family furious the media was told about wreckage confirmation first http://t.co/carMqiVkwU,1
+10741,wreckage,,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/cs8mYAunA4,1
+10743,wreckage,WorldWide,#Australia #News ; RT janeenorman: 'High probability' aircraft wreckage is from #MH370 according to Deputy Prime Û_ http://t.co/cdOHgnJmsT,1
+10744,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/v5Ogr3F5N9,1
+10745,wreckage,khanna,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/4xB4ZwyhCt,1
+10746,wreckage,,KUALA LUMPUR (Reuters) - A piece of a wing that washed up on an Indian Ocean island beach last week was part of the wreckage of Malaysian A,1
+10747,wreckage,,#science Now that a piece of wreckage from flight MH370 has been confirmed on R̩union Island is it possible t... http://t.co/uqva3dfbCA,1
+10748,wreckage,Africa,Malaysia PM confirms wreckage belongs to MH370 http://t.co/kacrlpjC0l http://t.co/YjJbNTcaZY,1
+10749,wreckage,,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/KfzvMXj9ST,1
+10750,wreckage,"Mumbai, Maharashtra",Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/pTeVY815mt,1
+10751,wreckage,Bangkok,CIA plot! *rolling eyes* RT @ajabrown: Chinese relatives of MH370 victims say reunion island wreckage was planted http://t.co/wmNb5ITa5P,1
+10752,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/4sf0rgn8Wo,1
+10753,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/leDmVEZCoL,1
+10754,wreckage,Punjab,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM,1
+10755,wreckage,,"Related News:
+
+Plane Wreckage Found Is Part Of Missing MH370 Malaysia Prime Minister?Says
+ - World - BuzzFeed | http://t.co/qSiPL1C9Fa",1
+10759,wreckage,Southern California,Malaysian prime minister says Reunion Island wreckage is from MH370: http://t.co/bpTZAMjl2K via @slate,1
+10760,wreckage,,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/LjylxZ1fBi,1
+10763,wreckage,,The first piece of wreckage from the first-ever lost Boeing 777 which vanished back in early March along with the 239 people on board has,1
+10764,wreckage,"Dublin City, Ireland",Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/VAZpG0ftmU,1
+10765,wreckage,iTunes,#science Now that a piece of wreckage from flight MH370 has been confirmed on R̩union Island is it possible t... http://t.co/qNVXJ2pAlJ,1
+10766,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/DtFSWNJZIL,1
+10767,wreckage,uk,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/EdEKrmqTpQ,1
+10768,wreckage,,"Wreckage is MH370: Najib
+http://t.co/iidKC0jSBx #MH370 #najibrazak #MalaysiaAirlines",1
+10769,wreckage,"No ID, No VOTE!!!",Check out 'Malaysia Confirms Plane Wreckage Is From Flight MH370' at http://t.co/UB3woZ2UT1,1
+10770,wreckage,iTunes,#science Now that a piece of wreckage from flight MH370 has been confirmed on R̩union Island is it possible t... http://t.co/Z2vDGIyOwf,1
+10771,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM,1
+10772,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/2Jr3Yo55dr,1
+10774,wreckage,,Wreckage 'conclusively confirmed' as from MH370: Malaysia PM http://t.co/Rp2DxFKHDQ | https://t.co/akmIHLRIs1,1
+10775,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/KuKmAL605a,1
+10776,wreckage,India,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM,1
+10777,wreckage,,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/yi54XRHQGB,1
+10779,wreckage,Maharashtra,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/MSsq0sVnBM,1
+10780,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/nn6Y0fD3l0,1
+10782,wreckage,"New Delhi,India",Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/1YIxFG1Hdy,1
+10783,wreckage,"Xi'an, China",Wreckage 'conclusively confirmed' as from missing flight MH370 via @YahooNewsDigest,1
+10784,wreckage,Mumbai,Wreckage 'Conclusively Confirmed' as From MH370: Malaysia PM: Investigators and the families of those who were... http://t.co/5EBpYbFH4D,1
+10785,wrecked,"Brooklyn, NY",Wrecked an hour on YouTube with @julian_lage @GrantGordy & @RossMartin7 and now it's practice time again.,0
+10786,wrecked,Robin Hood's County ,late night mcdonalds with friends = hilarious although my car is wrecked and there's half a steak pastie in the industrial estate,0
+10787,wrecked,,good luck to everyone who has school soon but your sleeping schedule is wrecked beyond repair,0
+10788,wrecked,United States,I wonder how times someone has wrecked trying to do the 'stare and drive' move from 2 Fast 2 Furious,0
+10789,wrecked,Pennsylvania,Four hundred wrecked cars (costing $100 apiece) were purchased for the making of this 1986 film - http://t.co/DTdidinQyF,0
+10790,wrecked,,Cramer: IgerÛªs 3 words that wrecked DisneyÛªs stock ÛÒåÊCNBC http://t.co/PnlucERp0x,0
+10793,wrecked,,Poor Liv and I getting our phones wrecked on the same day @oliviaapalmerr #thatswhatfriendsarefor,0
+10794,wrecked,,On the freeway to Africa til I wrecked my Audi,0
+10795,wrecked,"Santa Cruz, CA","Israel wrecked my home. Now it wants my land.
+https://t.co/g0r3ZR1nQj",1
+10798,wrecked,,#news Cramer: Iger's 3 words that wrecked Disney's stock http://t.co/SF5JdNvdw9 #til_now #CNBC,0
+10799,wrecked,,James Kunstler: How bad architecture wrecked cities http://t.co/Ac6I3tE8mT #residualincome #mlm http://t.co/Wq0JLsHW1g,0
+10800,wrecked,Milwaukee County,http://t.co/DeQQOpSP4f: Iger's 3 words that wrecked Disney's stock http://t.co/LbKvFqRpgT http://t.co/3rVa5uvt0P,0
+10802,wrecked,"Click the link below, okay ",The Twitter update pretty much wrecked the app,0
+10803,wrecked,,You wrecked me. Never felt so low in my life. But it's okay God got me,0
+10805,wrecked,probably not home,coleslaw #wrecked http://t.co/sijNBmCZIJ,0
+10808,wrecked,,"300K exotic car wrecked in train accident
+http://t.co/J49xEuj7Ps",1
+10809,wrecked,,The twins pitcher's ego is now WRECKED,0
+10810,wrecked,6,@Tunes_WGG lol. U got wrecked,0
+10811,wrecked,,you wrecked my whole world,0
+10812,wrecked,,I wrecked my stomach help,0
+10813,wrecked,,@__ohhmyjoshh @stevenrulles he not gonna be thinking that when he gets his shit wrecked on the first day of school ??,0
+10814,wrecked,,Wrecked tired but not gonna be asleep before 3??,0
+10815,wrecked,United States,http://t.co/qVx0VQTPz0 Cramer: Iger's 3 words that wrecked Disney's stock http://t.co/vuWBSrSnrY,0
+10817,wrecked,At your back,Wrecked emotions.,0
+10818,wrecked,,The Riddler would be the best early-exit primary presidential wannabe ever all certain of his chances until he gets wrecked by a rich guy,0
+10819,wrecked,"Livingston, MT",@marynmck That's beyond adorable. I hope it won't be wrecked now that it's been noticed ...,0
+10821,wrecked,California,Cramer: Iger's 3 words that wrecked Disney's stock http://t.co/3G79prAyYc #cnbc #topnews,0
+10822,wrecked, Glasgow ,@Caitsroberts see U the night wee bArra to get absolutely wrecked ????,0
+10823,wrecked,"Manhattan, NY",@Kirafrog @mount_wario Did you get wrecked again?,1
+10824,wrecked,"Denton, Texas",Had an awesome time gettin wrecked at bowling last night! http://t.co/Da9lZtOn1c,0
+10825,wrecked,Global,Cramer: 3 words that wrecked DIS stock - http://t.co/ud7XObYUa1,0
+10826,wrecked,TN,On the bright side I wrecked http://t.co/uEa0txRHYs,0
+10827,wrecked,,He just wrecked all of you http://t.co/y46isyZkC8,0
+10829,wrecked,#NewcastleuponTyne #UK,@widda16 ... He's gone. You can relax. I thought the wife who wrecked her cake was a goner mind lol #whoops,0
+10830,wrecked,,@jt_ruff23 @cameronhacker and I wrecked you both,0
+10831,wrecked,"Vancouver, Canada",Three days off from work and they've pretty much all been wrecked hahaha shoutout to my family for that one,0
+10832,wrecked,London ,#FX #forex #trading Cramer: Iger's 3 words that wrecked Disney's stock http://t.co/7enNulLKzM,0
+10833,wrecked,Lincoln,@engineshed Great atmosphere at the British Lion gig tonight. Hearing is wrecked. http://t.co/oMNBAtJEAO,0
+10834,wrecked,,Cramer: Iger's 3 words that wrecked Disney's stock - CNBC http://t.co/N6RBnHMTD4,0
+10835,,,Pic of 16yr old PKK suicide bomber who detonated bomb in Turkey Army trench released http://t.co/aaWZXykLES http://t.co/RsMvgDxRiv,1
+10837,,,These boxes are ready to explode! Exploding Kittens finally arrived! gameofkittens #explodingkittensÛ_ https://t.co/TFGrAyuDC5,0
+10839,,,Calgary Police Flood Road Closures in Calgary. http://t.co/RLN09WKe9g,1
+10840,,,#Sismo DETECTADO #JapÌ_n 15:41:07 Seismic intensity 0 Iwate Miyagi JST #?? http://t.co/gMoUl9zQ2Q,1
+10841,,,Sirens everywhere!,0
+10842,,,BREAKING: #ISIS claims responsibility for mosque attack in Saudi Arabia that killed 13 http://t.co/VZ640XOSwj http://t.co/m2HpnOAK8b,1
+10843,,,Omg earthquake,1
+10844,,,SEVERE WEATHER BULLETIN No. 5 FOR: TYPHOON ÛÏ#HannaPHÛ (SOUDELOR) TROPICAL CYCLONE: WARNING ISSUED AT 5:00 PM 06... http://t.co/tHhjJw51PE Û_,1
+10846,,,Heat wave warning aa? Ayyo dei. Just when I plan to visit friends after a year.,1
+10847,,,An IS group suicide bomber detonated an explosives-packed vest in a mosque inside a Saudi special forces headquarters killing 15 people.,1
+10848,,,I just heard a really loud bang and everyone is asleep great,0
+10849,,,A gas thing just exploded and I heard screams and now the whole street smells of gas ... ??,1
+10850,,,NWS: Flash Flood Warning Continued for Shelby County until 08:00 PM Wednesday. http://t.co/nZ7ACKRrJi #tnwx,1
+10851,,,RT @LivingSafely: #NWS issues Severe #Thunderstorm Warnings for parts of #AR #NC #OK. Expect more trauma cases: http://t.co/FWqfCKNCQW,1
+10852,,,#??? #?? #??? #??? MH370: Aircraft debris found on La Reunion is from missing Malaysia Airlines ... http://t.co/5B7qT2YxdA,1
+10853,,,Father-of-three Lost Control of Car After Overtaking and Collided #BathAndNorthEastSomerset http://t.co/fa3FcnlN86,1
+10854,,,1.3 #Earthquake in 9Km Ssw Of Anza California #iPhone users download the Earthquake app for more information http://t.co/V3aZWOAmzK,1
+10855,,,Evacuation order lifted for town of Roosevelt: http://t.co/EDyfo6E2PU http://t.co/M5KxLPKFA1,1
+10859,,,#breaking #LA Refugio oil spill may have been costlier bigger than projected http://t.co/5ueCmcv2Pk,1
+10860,,,a siren just went off and it wasn't the Forney tornado warning ??,1
+10862,,,Officials say a quarantine is in place at an Alabama home over a possible Ebola case after developing symptoms... http://t.co/rqKK15uhEY,1
+10863,,,#WorldNews Fallen powerlines on G:link tram: UPDATE: FIRE crews have evacuated up to 30 passengers who were tr... http://t.co/EYSVvzA7Qm,1
+10864,,,on the flip side I'm at Walmart and there is a bomb and everyone had to evacuate so stay tuned if I blow up or not,1
+10866,,,Suicide bomber kills 15 in Saudi security site mosque - Reuters via World - Google News - Wall ... http://t.co/nF4IculOje,1
+10867,,,#stormchase Violent Record Breaking EF-5 El Reno Oklahoma Tornado Nearly Runs Over ... - http://t.co/3SICroAaNz http://t.co/I27Oa0HISp,1
+10869,,,Two giant cranes holding a bridge collapse into nearby homes http://t.co/STfMbbZFB5,1
+10870,,,@aria_ahrary @TheTawniest The out of control wild fires in California even in the Northern part of the state. Very troubling.,1
+10871,,,M1.94 [01:04 UTC]?5km S of Volcano Hawaii. http://t.co/zDtoyd8EbJ,1
+10872,,,Police investigating after an e-bike collided with a car in Little Portugal. E-bike rider suffered serious non-life threatening injuries.,1
+10873,,,The Latest: More Homes Razed by Northern California Wildfire - ABC News http://t.co/YmY4rSkQ3d,1
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/data/train.csv.zip b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/train.csv.zip
new file mode 100644
index 00000000..71c7fc69
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/data/train.csv.zip differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/ReadME.md b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/ReadME.md
new file mode 100644
index 00000000..2f7c2bce
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/ReadME.md
@@ -0,0 +1 @@
+This file contains images used in the home ReadMe file!
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (254).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (254).png
new file mode 100644
index 00000000..6a1cb37d
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (254).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (255).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (255).png
new file mode 100644
index 00000000..9321e845
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (255).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (257).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (257).png
new file mode 100644
index 00000000..b70277fa
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (257).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (258).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (258).png
new file mode 100644
index 00000000..b6133b58
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (258).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (259).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (259).png
new file mode 100644
index 00000000..383c474c
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (259).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (263).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (263).png
new file mode 100644
index 00000000..7d3b644a
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (263).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (265).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (265).png
new file mode 100644
index 00000000..4e21d2d4
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (265).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (269).png b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (269).png
new file mode 100644
index 00000000..98edef78
Binary files /dev/null and b/natural-language-processing-with-disaster-tweets-kaggle-competition/images/Screenshot (269).png differ
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-kale.ipynb b/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-kale.ipynb
new file mode 100644
index 00000000..f672ae62
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-kale.ipynb
@@ -0,0 +1,1823 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "IvufQ90W_ILK",
+ "tags": []
+ },
+ "source": [
+ "### Basic Intro \n",
+ "\n",
+ "In this competition, you’re challenged to build a machine learning model that predicts which Tweets are about real disasters and which one’s aren’t.\n",
+ "\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "EG9UlaLI_ILQ",
+ "tags": []
+ },
+ "source": [
+ "## What's in this kernel?\n",
+ "- Basic EDA\n",
+ "- Data Cleaning\n",
+ "- Baseline Model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Z7CAwrRLgliq",
+ "tags": []
+ },
+ "source": [
+ "# Unzipping the file"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "OypqduLZ_ILS",
+ "tags": []
+ },
+ "source": [
+ "### Importing required Libraries."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 45,
+ "metadata": {
+ "tags": [
+ "block:"
+ ]
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Defaulting to user installation because normal site-packages is not writeable\n",
+ "Requirement already satisfied: seaborn in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 1)) (0.11.2)\n",
+ "Requirement already satisfied: nltk in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 2)) (3.6.7)\n",
+ "Requirement already satisfied: sklearn in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 3)) (0.0)\n",
+ "Requirement already satisfied: collection in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 4)) (0.1.6)\n",
+ "Requirement already satisfied: gensim in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 5)) (4.1.2)\n",
+ "Requirement already satisfied: keras in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 6)) (2.6.0)\n",
+ "Requirement already satisfied: tensorflow in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 7)) (2.6.2)\n",
+ "Requirement already satisfied: pyspellchecker in /home/jovyan/.local/lib/python3.6/site-packages (from -r requirements.txt (line 8)) (0.6.3)\n",
+ "Collecting zipfile36\n",
+ " Downloading zipfile36-0.1.3-py3-none-any.whl (20 kB)\n",
+ "Collecting wget\n",
+ " Downloading wget-3.2.zip (10 kB)\n",
+ " Preparing metadata (setup.py) ... \u001b[?25ldone\n",
+ "\u001b[?25hRequirement already satisfied: pandas>=0.23 in /usr/local/lib/python3.6/dist-packages (from seaborn->-r requirements.txt (line 1)) (1.1.5)\n",
+ "Requirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.6/dist-packages (from seaborn->-r requirements.txt (line 1)) (1.5.4)\n",
+ "Requirement already satisfied: matplotlib>=2.2 in /usr/local/lib/python3.6/dist-packages (from seaborn->-r requirements.txt (line 1)) (3.3.4)\n",
+ "Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/dist-packages (from seaborn->-r requirements.txt (line 1)) (1.19.5)\n",
+ "Requirement already satisfied: joblib in /usr/local/lib/python3.6/dist-packages (from nltk->-r requirements.txt (line 2)) (1.1.0)\n",
+ "Requirement already satisfied: click in /usr/local/lib/python3.6/dist-packages (from nltk->-r requirements.txt (line 2)) (7.1.2)\n",
+ "Requirement already satisfied: regex>=2021.8.3 in /home/jovyan/.local/lib/python3.6/site-packages (from nltk->-r requirements.txt (line 2)) (2022.3.15)\n",
+ "Requirement already satisfied: tqdm in /home/jovyan/.local/lib/python3.6/site-packages (from nltk->-r requirements.txt (line 2)) (4.64.0)\n",
+ "Requirement already satisfied: scikit-learn in /usr/local/lib/python3.6/dist-packages (from sklearn->-r requirements.txt (line 3)) (0.23.2)\n",
+ "Requirement already satisfied: smart-open>=1.8.1 in /home/jovyan/.local/lib/python3.6/site-packages (from gensim->-r requirements.txt (line 5)) (5.2.1)\n",
+ "Requirement already satisfied: dataclasses in /usr/local/lib/python3.6/dist-packages (from gensim->-r requirements.txt (line 5)) (0.8)\n",
+ "Requirement already satisfied: opt-einsum~=3.3.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (3.3.0)\n",
+ "Requirement already satisfied: wrapt~=1.12.1 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (1.12.1)\n",
+ "Requirement already satisfied: google-pasta~=0.2 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (0.2.0)\n",
+ "Requirement already satisfied: typing-extensions~=3.7.4 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (3.7.4.3)\n",
+ "Requirement already satisfied: h5py~=3.1.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (3.1.0)\n",
+ "Requirement already satisfied: protobuf>=3.9.2 in /usr/local/lib/python3.6/dist-packages (from tensorflow->-r requirements.txt (line 7)) (3.19.3)\n",
+ "Requirement already satisfied: six~=1.15.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (1.15.0)\n",
+ "Requirement already satisfied: wheel~=0.35 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (0.37.1)\n",
+ "Requirement already satisfied: clang~=5.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (5.0)\n",
+ "Requirement already satisfied: grpcio<2.0,>=1.37.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow->-r requirements.txt (line 7)) (1.43.0)\n",
+ "Requirement already satisfied: gast==0.4.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (0.4.0)\n",
+ "Requirement already satisfied: flatbuffers~=1.12.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (1.12)\n",
+ "Requirement already satisfied: termcolor~=1.1.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow->-r requirements.txt (line 7)) (1.1.0)\n",
+ "Requirement already satisfied: keras-preprocessing~=1.1.2 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (1.1.2)\n",
+ "Requirement already satisfied: astunparse~=1.6.3 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (1.6.3)\n",
+ "Requirement already satisfied: tensorflow-estimator<2.7,>=2.6.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (2.6.0)\n",
+ "Requirement already satisfied: tensorboard<2.7,>=2.6.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorflow->-r requirements.txt (line 7)) (2.6.0)\n",
+ "Requirement already satisfied: absl-py~=0.10 in /usr/local/lib/python3.6/dist-packages (from tensorflow->-r requirements.txt (line 7)) (0.11.0)\n",
+ "Requirement already satisfied: cached-property in /home/jovyan/.local/lib/python3.6/site-packages (from h5py~=3.1.0->tensorflow->-r requirements.txt (line 7)) (1.5.2)\n",
+ "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn->-r requirements.txt (line 1)) (2.8.2)\n",
+ "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn->-r requirements.txt (line 1)) (1.3.1)\n",
+ "Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn->-r requirements.txt (line 1)) (8.4.0)\n",
+ "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn->-r requirements.txt (line 1)) (3.0.6)\n",
+ "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=2.2->seaborn->-r requirements.txt (line 1)) (0.11.0)\n",
+ "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23->seaborn->-r requirements.txt (line 1)) (2021.3)\n",
+ "Requirement already satisfied: requests<3,>=2.21.0 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (2.27.1)\n",
+ "Requirement already satisfied: werkzeug>=0.11.15 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (2.0.3)\n",
+ "Requirement already satisfied: google-auth-oauthlib<0.5,>=0.4.1 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (0.4.6)\n",
+ "Requirement already satisfied: tensorboard-data-server<0.7.0,>=0.6.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (0.6.1)\n",
+ "Requirement already satisfied: google-auth<2,>=1.6.3 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (1.35.0)\n",
+ "Requirement already satisfied: setuptools>=41.0.0 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (59.6.0)\n",
+ "Requirement already satisfied: tensorboard-plugin-wit>=1.6.0 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (1.8.1)\n",
+ "Requirement already satisfied: markdown>=2.6.8 in /home/jovyan/.local/lib/python3.6/site-packages (from tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (3.3.6)\n",
+ "Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.6/dist-packages (from scikit-learn->sklearn->-r requirements.txt (line 3)) (3.0.0)\n",
+ "Requirement already satisfied: importlib-resources in /usr/local/lib/python3.6/dist-packages (from tqdm->nltk->-r requirements.txt (line 2)) (5.4.0)\n",
+ "Requirement already satisfied: rsa<5,>=3.1.4 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.3->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (4.8)\n",
+ "Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.3->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (0.2.8)\n",
+ "Requirement already satisfied: cachetools<5.0,>=2.0.0 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.3->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (4.2.4)\n",
+ "Requirement already satisfied: requests-oauthlib>=0.7.0 in /usr/local/lib/python3.6/dist-packages (from google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (1.3.0)\n",
+ "Requirement already satisfied: importlib-metadata>=4.4 in /usr/local/lib/python3.6/dist-packages (from markdown>=2.6.8->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (4.8.3)\n",
+ "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from requests<3,>=2.21.0->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (1.26.8)\n",
+ "Requirement already satisfied: charset-normalizer~=2.0.0 in /usr/local/lib/python3.6/dist-packages (from requests<3,>=2.21.0->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (2.0.10)\n",
+ "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.6/dist-packages (from requests<3,>=2.21.0->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (2021.10.8)\n",
+ "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests<3,>=2.21.0->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (3.3)\n",
+ "Requirement already satisfied: zipp>=3.1.0 in /usr/local/lib/python3.6/dist-packages (from importlib-resources->tqdm->nltk->-r requirements.txt (line 2)) (3.6.0)\n",
+ "Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /usr/local/lib/python3.6/dist-packages (from pyasn1-modules>=0.2.1->google-auth<2,>=1.6.3->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (0.4.8)\n",
+ "Requirement already satisfied: oauthlib>=3.0.0 in /usr/local/lib/python3.6/dist-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.7,>=2.6.0->tensorflow->-r requirements.txt (line 7)) (3.1.1)\n",
+ "Building wheels for collected packages: wget\n",
+ " Building wheel for wget (setup.py) ... \u001b[?25ldone\n",
+ "\u001b[?25h Created wheel for wget: filename=wget-3.2-py3-none-any.whl size=9675 sha256=7494539bc3322689677bdc668e46be6e09fc409ca4c7942e315d8d83afb78000\n",
+ " Stored in directory: /home/jovyan/.cache/pip/wheels/90/1d/93/c863ee832230df5cfc25ca497b3e88e0ee3ea9e44adc46ac62\n",
+ "Successfully built wget\n",
+ "Installing collected packages: zipfile36, wget\n",
+ "Successfully installed wget-3.2 zipfile36-0.1.3\n",
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "pip install -r requirements.txt"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "# Importing Libraries"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "BfxrbE88_ILS",
+ "outputId": "b71ee66f-a5d2-46ad-924a-d4f1ea986aa5",
+ "tags": [
+ "imports"
+ ]
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "[nltk_data] Downloading package stopwords to /home/jovyan/nltk_data...\n",
+ "[nltk_data] Package stopwords is already up-to-date!\n",
+ "[nltk_data] Downloading package punkt to /home/jovyan/nltk_data...\n",
+ "[nltk_data] Package punkt is already up-to-date!\n"
+ ]
+ }
+ ],
+ "source": [
+ "import pandas as pd\n",
+ "import matplotlib.pyplot as plt\n",
+ "import seaborn as sns\n",
+ "import numpy as np\n",
+ "import nltk\n",
+ "nltk.download('stopwords')\n",
+ "nltk.download('punkt')\n",
+ "from nltk.corpus import stopwords\n",
+ "from nltk.util import ngrams\n",
+ "from sklearn.feature_extraction.text import CountVectorizer\n",
+ "from collections import defaultdict\n",
+ "from collections import Counter\n",
+ "plt.style.use('ggplot')\n",
+ "stop=set(stopwords.words('english'))\n",
+ "import re\n",
+ "from nltk.tokenize import word_tokenize\n",
+ "import gensim\n",
+ "import string\n",
+ "from keras.preprocessing.text import Tokenizer\n",
+ "from keras.preprocessing.sequence import pad_sequences\n",
+ "from tqdm import tqdm\n",
+ "from keras.models import Sequential\n",
+ "from keras.layers import Embedding,LSTM,Dense,SpatialDropout1D\n",
+ "from keras.initializers import Constant\n",
+ "from sklearn.model_selection import train_test_split\n",
+ "from tensorflow.keras.optimizers import Adam\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {
+ "id": "zVmloKw7_ILV",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "import os\n",
+ "#os.listdir('../input/glove-global-vectors-for-word-representation/glove.6B.100d.txt')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "2Ut5Ko9G_ILW",
+ "tags": []
+ },
+ "source": [
+ "## Load data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 143
+ },
+ "id": "I8aHh7_l_ILW",
+ "outputId": "0f90d9ba-0307-4917-d128-cbb3b49b77fa",
+ "tags": [
+ "block:load_data"
+ ]
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " id \n",
+ " keyword \n",
+ " location \n",
+ " text \n",
+ " target \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " Our Deeds are the Reason of this #earthquake M... \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 4 \n",
+ " NaN \n",
+ " NaN \n",
+ " Forest fire near La Ronge Sask. Canada \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 5 \n",
+ " NaN \n",
+ " NaN \n",
+ " All residents asked to 'shelter in place' are ... \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id keyword location text \\\n",
+ "0 1 NaN NaN Our Deeds are the Reason of this #earthquake M... \n",
+ "1 4 NaN NaN Forest fire near La Ronge Sask. Canada \n",
+ "2 5 NaN NaN All residents asked to 'shelter in place' are ... \n",
+ "\n",
+ " target \n",
+ "0 1 \n",
+ "1 1 \n",
+ "2 1 "
+ ]
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "tweet= pd.read_csv('./data/train.csv')\n",
+ "test=pd.read_csv('./data/test.csv')\n",
+ "tweet.head(3)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "WX64jB83_ILX",
+ "outputId": "314e9aad-8fb4-4c60-cb5d-3f91027a024c",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "There are 7613 rows and 5 columns in train\n",
+ "There are 3263 rows and 4 columns in train\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('There are {} rows and {} columns in train'.format(tweet.shape[0],tweet.shape[1]))\n",
+ "print('There are {} rows and {} columns in train'.format(test.shape[0],test.shape[1]))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ebUgRyjU_ILY",
+ "tags": []
+ },
+ "source": [
+ "## Class distribution"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KrbMbAtc_ILZ",
+ "tags": []
+ },
+ "source": [
+ "Before we begin with anything else,let's check the class distribution.There are only two classes 0 and 1."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 337
+ },
+ "id": "7nfbgY5l_ILa",
+ "outputId": "e06bfc19-14a8-4c5d-af3b-6434a97af380",
+ "tags": [
+ "block:",
+ "prev:load_data"
+ ]
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/home/jovyan/.local/lib/python3.6/site-packages/seaborn/_decorators.py:43: FutureWarning: Pass the following variables as keyword args: x, y. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation.\n",
+ " FutureWarning\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'samples')"
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "x=tweet.target.value_counts()\n",
+ "sns.barplot(x.index,x)\n",
+ "plt.gca().set_ylabel('samples')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "P-nrzD3F_ILa",
+ "tags": []
+ },
+ "source": [
+ "ohh,as expected ! There is a class distribution.There are more tweets with class 0 ( No disaster) than class 1 ( disaster tweets)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "b_ZgxS9Y_ILb",
+ "tags": []
+ },
+ "source": [
+ "## Exploratory Data Analysis of tweets"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bwdYFByW_ILb",
+ "tags": []
+ },
+ "source": [
+ "First,we will do very basic analysis,that is character level,word level and sentence level analysis."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KDzMFkEa_ILb",
+ "tags": []
+ },
+ "source": [
+ "### Number of characters in tweets"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 356
+ },
+ "id": "GPRFNeTn_ILc",
+ "outputId": "40b4b4a3-2cb7-46df-8547-ccf2b6f5cd0e",
+ "tags": [
+ "block:eda_data",
+ "prev:load_data"
+ ]
+ },
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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QXh4OHJycu57v4i6gy1btuDEiRM4ePBgq/eys7MxdOjQFud7uri44OGHH0Z2dvY9tXP27FkMGTIEjo6O0rJHHnkEDg4O7X7m0UcfxVNPPYVHHnkEM2bMwF//+ldcuXKlxTrvv/8+Ro8eDRcXF9jZ2WHNmjUtzhvraOxsy72MIaNGjepsF7QwZswYWFhYICkpCceOHUP//v3xwgsvID09HZWVlUhISICvry+sra2lmiIjI1vUNHToUADAhQsXUFxcjIKCAqxatarFOlOmTAEA6fBtW+7n/4cHhYWpCyDjeemll/CrX/0K//nPf3D06FFMmTIFM2bMwJ49e1BTU4PJkydj/PjxiI2NhYuLCwDA29tbOpHczc0N58+fx9GjR5GQkIC33noLq1evxjfffAMPD48222xqagIAnDx5EjY2Ni3eu/MqoJ9zsmlAQABCQ0Nx9uxZVFZW4oknnkBAQAASEhLQ2NiIAQMGYODAgVJNQ4YMwf79+1tt51aNTU1NmDRpEmJiYlqtc7dBHGgepFesWIGvvvoK//3vf/GnP/0JMTEx+MMf/nDf+0dkzgYPHow//OEPWL16Nb788ktTl9OCUqnEl19+idTUVMTHx+Pf//43wsLC8Mknn+Dpp5/GJ598gqVLlyI8PBx+fn6wt7fHJ5980uLcpbuNne3p7BiiVCrRp0+f+9o3KysrjB07FkeOHIGlpSUCAgLg7OyMhx9+GElJSUhISMCvf/3rFjWtXr26zXNY+/btK51H9de//hVPPvlkq3VuP5f1Tvfz/8MDw9RTZtSxqqoqYWlp2epQoI+Pz10PBd7pn//8pwAgKioqRFpamgAgnWMkhBAnTpwQAERsbGybn6+trRUODg4iKipKCCHEli1bhLu7e4t1Lly4IACIzz///K77BEDs3r37ruu014YQ///ww+9//3sxdepUIUTzIQCtVit+85vftDjMuHPnTmFjYyMKCwvbbee1114T7u7u4saNG+2u869//UsAEA0NDXet+Q9/+IN47LHHOto1om7l9kOBQghRVFQk7O3txZo1azp9KPCjjz4SQnT+d+nWocCysjJp2ZkzZ+56KLAtTz31lJg5c6YQQohly5aJJ554osX7CxcuvOuhydvHTiGEGDJkiHjttddarNOZMSQ2NlYolcp2379dW20I0Xx6xKOPPip8fHzEvn37hBBCLF++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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "fig,(ax1,ax2)=plt.subplots(1,2,figsize=(10,5))\n",
+ "tweet_len=tweet[tweet['target']==1]['text'].str.len()\n",
+ "ax1.hist(tweet_len,color='red')\n",
+ "ax1.set_title('disaster tweets')\n",
+ "tweet_len=tweet[tweet['target']==0]['text'].str.len()\n",
+ "ax2.hist(tweet_len,color='green')\n",
+ "ax2.set_title('Not disaster tweets')\n",
+ "fig.suptitle('Characters in tweets')\n",
+ "plt.show()\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kMl21V0z_ILc",
+ "tags": []
+ },
+ "source": [
+ "The distribution of both seems to be almost same.120 t0 140 characters in a tweet are the most common among both."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "6TeqztFR_ILd",
+ "tags": []
+ },
+ "source": [
+ "### Number of words in a tweet"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 356
+ },
+ "id": "v7SANwhp_ILd",
+ "outputId": "70e79903-970e-4735-8246-00acb2753453",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAlYAAAFTCAYAAAD7gEIxAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAAA3NElEQVR4nO3deXhU5d3G8XtISEL21dgJa1ispqiURFCWIEQoom3cqCJWapHaVDa1BakKFtEgYmiQVgWNirZW3tZofVu1MRAQxCYmCIIQCEuRiCELMQtLluf9g4t5GZOQACczE/h+rstL5sxZfudkzpM7z3nOHJsxxggAAADnrJO7CwAAADhfEKwAAAAsQrACAACwCMEKAADAIgQrAAAAixCsAAAALEKwAtBu5s2bp4kTJ57xcnFxcVqzZo31BQFAOyNYAReQp556SmPHjnWa1rdv32anvfnmm64szcnWrVs1YsSIdt/OpEmT9Mgjj7T7dk61Zs0ade3a1aXbBOA6BCvgAjJ8+HBt2LBBDQ0NkqSvv/5adXV1KigocJq2a9cuDR8+/IzWXV9fb3m9ANDREKyAC0hCQoLq6uq0adMmSdK6det07bXX6pJLLnGa1rt3b9ntdhUXF+vHP/6xwsPD1adPHy1fvtyxrnnz5unWW2/VxIkTFRwcrFdeeUV79uxRYmKigoKCdN1116m0tNQx/9GjRzVx4kRFREQoNDRUCQkJ+uabb5qts2fPnsrKynJsZ/z48frZz36moKAgxcXFKS8vr8V9nD59urp166bg4GANHDhQ69ata3a+F198UW+88YaefvppBQYG6sYbb1RGRoZuvPFGxzx9+/bVbbfd5njdrVs3x3Havn27rrvuOoWHh+uSSy7RW2+95Zjv2LFjeuihh9S9e3dFR0frvvvu05EjR1RTU6OxY8equLhYgYGBCgwMVHFxcYv7AqDjIVgBFxAfHx8NGjRIa9eulSStXbtWw4YN09ChQ52mneytuv3229W1a1cVFxfrf/7nfzRnzhxlZ2c71vfOO+/o1ltv1eHDh3XnnXdqwoQJGjhwoEpLS/Xoo4/q1Vdfdcz76quvqrKyUvv371dZWZmef/55denSpU11v/vuu7r99tt1+PBh/fjHP9b999/f4rwJCQnatGmTysvLNWHCBN122206evRok/mmTJmiO++8U7/97W9VXV2tf/zjH0pMTNS6devU2Nio4uJiHT9+XJ988okkaffu3aqurtbll1+umpoaXXfddZowYYJKSkr05ptvKiUlRdu2bZMkzZ49W4WFhdq0aZN27dqlAwcO6Pe//70CAgL0r3/9S3a7XdXV1aqurpbdbm/TMQDQMRCsgAtMYmKiI0StW7dOw4YN07Bhw5ymJSYmav/+/Vq/fr0WLlwoPz8/XXnllZo8ebJee+01x7quvvpqJScnq1OnTjp06JByc3M1f/58+fr6avjw4U69P507d1ZZWZl27dolLy8vDRw4UMHBwW2qeejQobr++uvl5eWlu+66S59//nmL857sFfP29taDDz6oY8eOaceOHW3aTmxsrIKCgrRp0yatXbtWY8aMkd1u1/bt25WTk6Nhw4apU6dOeu+999SzZ0/9/Oc/l7e3twYMGKBbbrlFq1atkjFGL774otLS0hQeHq6goCDNmTPHrWPWALiOt7sLAOBaw4cP17Jly1ReXq5Dhw6pb9++io6O1t13363y8nJ98cUXGj58uIqLix3B4KQePXo4XYbr1q2b49/FxcUKCwtTQECA0/z79++XJN11113av3+/o+dp4sSJWrBggTp37txqzRdffLHj3/7+/jp69Kjq6+vl7d20CXvmmWf00ksvqbi4WDabTd9++63TJcnWJCYmas2aNdq1a5cSExMVGhqqnJwcffLJJ0pMTJQk7du3T59++qlCQ0Mdy9XX1+uuu+7SoUOHVFtbq4EDBzreM8Y4xrABOL/RYwVcYK6++mpVVlZq+fLlGjJkiCQpODhYdrtdy5cvl91uV69evWS321VeXq6qqirHsv/9738VExPjeG2z2Rz//t73vqeKigrV1NQ4zX9S586dNXfuXG3btk0bNmzQe++959T7ZYV169bp6aef1ltvvaWKigodPnxYISEhMsY0O/+p9Z90Mlid7LlLTExUTk6OcnJyHMGqW7duSkxM1OHDhx3/VVdX609/+pMiIyPVpUsXbd261fFeZWWlqqurW9wmgPMHwQq4wHTp0kXx8fF69tlnNWzYMMf0oUOH6tlnn3WMr+rWrZuuueYaPfzwwzp69Kg2b96sl156qcXvperRo4fi4+M1d+5cHT9+XB9//LH+8Y9/ON5fvXq1tmzZooaGBgUHB6tz587q1MnaJqiqqkre3t6KiopSfX29fv/73+vbb79tcf7o6Gjt3r3baVpiYqJWr16tI0eOqGvXrho2bJjef/99lZWVacCAAZKkG264QYWFhVq5cqXq6upUV1en3Nxcffnll+rUqZPuvfdezZw5UyUlJZKkAwcO6IMPPnBss6ysTJWVlZbuOwDPQLACLkCJiYkqKSnR0KFDHdOGDRumkpISp69Z+Mtf/qK9e/fKbrfrpptu0uOPP66kpKQW1/vnP/9Zn376qcLDw/X444/rZz/7meO9gwcP6tZbb1VwcLAuvfRSJSYm6q677rJ0v8aMGaMf/ehH6tevn3r06CE/Pz+ny5Xf9Ytf/ELbtm1TaGiokpOTJUn9+vVTYGCgI3QGBwcrNjZWQ4YMkZeXlyQpKChIH374od58803Z7XZdfPHFmjVrlo4dOyZJWrhwofr06aPBgwcrODhYSUlJjnFe3//+93XHHXcoNjZWoaGh3BUInGdspqU+cgAAAJwReqwAAAAsQrACAACwCMEKAADAIgQrAAAAixCsAAAALEKwAgAAsAjBCgAAwCIEKwAAAIsQrDqwefPmqU+fPi2+BoDzUc+ePfXEE0+0+BpwJ4LVeeShhx7Sxo0bXba9J554Qj179uzw22ir119/nQfo4oI1adIk2Ww2/fa3v3Wa/tVXX8lms2nNmjVtXpfV51Jubq5mzpxp2fpa06dPH82bN6/Db6OtkpKSNGnSJHeX0WEQrM4jgYGBioyMdHcZZ+X48ePuLgFAK/z8/JSenq59+/a5uxQnUVFRCggIcHcZZ8wYo7q6OneXAYsRrDqIo0eP6le/+pVCQkIUFhamX/3qV44Hvp703UuBX331lW655RZFRkbKz89PsbGxWrRokeP9P//5zxo0aJBCQkIUGRmpcePGqbCw0GmdTz75pGJjY+Xr66uoqCiNGTNGR44c0SuvvKJHH31U+/btk81mk81mc/x1VVdXp3nz5qlXr17y8/NTXFycXnjhBaf12mw2paena8KECQoJCWn2YbwtbeOll15S165dHfPt2bNHNptNEydOdExbvny57Ha74/U333yjSZMmKSoqSkFBQRoyZIjWrl3rtL1du3bplltuUWhoqMLCwjR69Ght2bJFkrRmzRpHjSdrOfkX3Mcff6whQ4YoKChIQUFBuuKKK/TBBx80/4MEOrBrrrlGV1xxhebMmXPa+Xbs2KFx48YpMDBQgYGBuvHGG7Vr1y5Jpz+XmvP555/rmmuuka+vr/r27au33nqryTzfvRT4zjvvaMCAAfL391doaKiuuuoqFRQUSDoRZu6991717t1bXbp0UWxsrObMmePUnp6u7RwxYoSKior0+OOPO+rfu3evpNO3IdKJNs3b21urV6/WgAED5Ovrq6ysrCb709I2hg0bpt/97neO+ebOnSubzea0jiFDhujhhx92vP73v/+tIUOGqEuXLoqJidHPf/5zlZWVOW3vzTff1JVXXik/Pz/17NlTDzzwgGpqaiSd6Kn86KOP9OqrrzpqOdk72dLvhwueQYcwY8YMExUVZTIzM82XX35pHnzwQRMUFGR69+7tmGfu3LlOr2+88UYzatQoU1BQYPbs2WOys7PNn//8Z8f7L7/8snn33XfNrl27TH5+vrnxxhtNnz59zLFjx4wxxvztb38zQUFB5t133zX79u0zBQUFJi0tzdTW1pra2loza9Ys07VrV/P111+br7/+2lRVVRljjLn77rtN//79zQcffGB2795t3nzzTRMSEmJWrFjh2LYkEx4ebpYuXWp27dplCgsLm+xzS9soKioyksz27duNMcasWLHCREVFGbvd7lj29ttvNxMmTHCs59JLLzU333yzyc3NNTt37jRPPPGE8fHxMdu2bTPGGHPw4EETHR1t7rvvPrN582azfft2c//995vw8HBTUlJijh07Zp577jkjyVHL4cOHTV1dnQkLCzMzZ840hYWFprCw0Pz97383a9euPeefOeBJ7r77bjNq1Cizdu1aY7PZTG5urjHGmP379xtJZvXq1caYE+db9+7dzciRI01eXp7Jy8szI0aMML179zbHjh1r8VxqTm1trbHb7Wbs2LFm06ZNZsOGDSY+Pt506dLFzJ8/3zFfjx49HK+//vpr07lzZ7Nw4UKze/dus23bNvPGG2+YzZs3G2OMaWhoMHPmzDEbN240e/bsMe+88465+OKLzWOPPeZY3+nazrKyMtOzZ0/z4IMPOuqvr69vtQ0xxpiMjAxjs9lMQkKCyc7ONkVFRY73TtXSNh599FEzePBgx3xDhw41UVFR5uGHHzbGGFNVVWU6d+5sPvzwQ2OMMR999JHp0qWLSU9PN4WFheY///mPGTFihBk+fLhpbGx01BQaGmpee+01U1RUZHJyckz//v3NxIkTjTHGHD582AwbNsyMHz/eUcuxY8dO+/vhQkew6gCqq6uNr6+vefHFF52mDxw48LTB6vLLLzdz585t83bKysqMJPPxxx8bY4x59tlnTd++fc3x48ebnX/+/PmmR48eTtN2795tbDab+fLLL52mP/744+aKK65wvJZk7rnnnlZram4bxpxoSJctW2aMMWbChAnmscceM0FBQY7tRkdHO4JcRkaGiYmJMXV1dU7ruPbaa8306dONMSeO3aBBg5zeb2xsNLGxsSYtLc0YY8zKlSvNd/8WKS8vd/qlApyvTgYrY4xJTk42iYmJxpimwWrFihWmS5cu5tChQ45lDx48aPz8/Myrr75qjGn+XGrO8uXLTUBAgCkvL3dM27Jli5HUYrDKz883ksyePXvavG/PPvus6dOnj+N1a21n7969m7zfljYkIyPDSGrTH17NbWP16tXG29vbfPvtt6ampsb4+PiYZ555xrHdf/7zn8bHx8cRbhITE82sWbOc1rFv3z4jyRQUFBhjThy7P/3pT07z5OTkGEmO4z5q1Chz9913O83T2u+HCxmXAjuAoqIiHTt2TNdcc43T9KFDh552uRkzZujJJ5/UoEGDNGvWrCaXvjZt2qSbbrpJvXr1UlBQkLp37y5JjvET48ePV11dnXr06KFJkyZp5cqVqqqqOu028/LyZIxRfHy84zJAYGCgnnzySe3cudNp3quuuqpN+9+ca6+9VtnZ2ZKk1atXa8yYMRo2bJiys7O1detWffPNNxo5cqSkEwNbDx48qNDQUKea1q1b56gpNzdXn332mdP7QUFB2rt3b5O6TxUWFqbJkydrzJgxGjt2rFJTU7Vjx46z3i+gI1i4cKHWr1+vd999t8l7W7du1WWXXeY03jM6OlqXXHKJtm7dekbb2bZtmy699FKFhYU5pv3gBz9QSEhIi8tcfvnlGjNmjH7wgx/opptu0h/+8Aft37/faZ7ly5dr0KBBio6OVmBgoB5++GGncWOttZ3NOZM2JCEhoa2HwMnVV18tb29v5eTkaN26derRo4fuuusu5efnq6qqStnZ2Ro8eLC6dOniqGnJkiVONV122WWSpJ07d+rQoUPat2+fHnjgAad5xo4dK0mOy7fNOZvfDxcKb3cXgPbz85//XD/60Y/0/vvva/Xq1Ro7dqxuuukmvf7666qtrdXo0aM1dOhQZWRkKDo6WpIUFxfnGEgeExOj7du3a/Xq1crOztb8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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "fig,(ax1,ax2)=plt.subplots(1,2,figsize=(10,5))\n",
+ "tweet_len=tweet[tweet['target']==1]['text'].str.split().map(lambda x: len(x))\n",
+ "ax1.hist(tweet_len,color='red')\n",
+ "ax1.set_title('disaster tweets')\n",
+ "tweet_len=tweet[tweet['target']==0]['text'].str.split().map(lambda x: len(x))\n",
+ "ax2.hist(tweet_len,color='green')\n",
+ "ax2.set_title('Not disaster tweets')\n",
+ "fig.suptitle('Words in a tweet')\n",
+ "plt.show()\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "pEgUshSi_ILe",
+ "tags": []
+ },
+ "source": [
+ "### Average word length in a tweet"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 480
+ },
+ "id": "CVXe5YTx_ILe",
+ "outputId": "7feaae49-1c61-4038-fc3f-7cd24a3c3bf7",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/home/jovyan/.local/lib/python3.6/site-packages/seaborn/distributions.py:2619: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).\n",
+ " warnings.warn(msg, FutureWarning)\n",
+ "/home/jovyan/.local/lib/python3.6/site-packages/seaborn/distributions.py:2619: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).\n",
+ " warnings.warn(msg, FutureWarning)\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Text(0.5, 0.98, 'Average word length in each tweet')"
+ ]
+ },
+ "execution_count": 9,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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jSoqKlRAQIB67bXXmjx/zjnnqNTUVKWUUo899pjze6WUGjx4sHrsscdaXUZxcbEC1OrVq5VSSs2ePVv16dNH1dXVNXv+E088oVJSUpo8t2/fPqVpmtqxY0eT5x9//HE1ZMgQ52NA3Xzzza2OTQhhvBtvvFGNHz9eKaXUpEmT1JgxY5RSSh08eFAB6ttvv1VKKfXGG2+ooKAgdfToUee1+fn5KjAwUM2fP18ppdQ777yjWvOn8/XXX1chISGqpKTE+dyWLVsUoJ544gnncykpKc7HGzduVIDav39/q1/b7NmzVVpamvPxmerP1NTUU44/9thjatSoUU2e03Vd9e7dWz3//PNKKaXmzZunALVy5cpWxyZcQ7o+hVvt3buX2tpaMjIymjx//vnnt3jNfffdx9NPP82oUaN46KGHWLlyZZPjWVlZ/OIXv6BXr16EhoaSnJwM4Bx7cu2112Kz2UhJSeGmm27inXfe4fjx46eN88cff0QpRXp6urPLw2q18vTTT7Nnz54m544cObLVr18I4V3+9re/sWbNGj755JNTjm3bto2BAwc2GTMbHx9Pv3792LZtW5vK2b59OwMGDCAyMtL53FlnnUV4eHiL1wwePJhLLrmEs846i1/84he88MILHDx4sMk5r7/+OqNGjSI+Ph6r1cr06dObjLs7U/3ZnMzMTDZs2NCk7gsNDSUnJ+eU+m/EiBGtfQuEi0iiJrzO1KlTyc3N5Y477iAvL4/LLruMG264AYCqqiomTpyIpmnMmzeP9evXk5mZiaZpzoH93bt3Z+fOnbz55pvExcXxxBNP0K9fv1MqvMYaujDXrl1LVlaW82vr1q389NNPTc71xYG/Qoh6ffv25fbbb+ehhx7CbrcbHU4TZrOZ//73vyxfvpwRI0awZMkS+vbty6effgrA+++/z913382UKVP4/PPP2bRpE3/+85+bDOo/Xf3ZEl3XGT9+fJO6Lysri127djWZIWo2mwkMDHTLaxctk0RNuFVqair+/v6sXbu2yfNr1qw57XXdunVj6tSpvP3228ydO5eFCxdSXl7Ojh07OHr0KE899RRjx45lwIABlJaWopRqcn1AQACXXnopf//739myZQtVVVV89NFHAPj7++NwOJqcf8455wBw4MAB0tLSmnylpqZ28F0QQniTxx57jCNHjvDaa681eX7QoEFs376doqIi53MFBQXs2rWLs846C6ivP4BT6pCTDRw4kB07dnDs2DHnc9u2baOsrOy012maxsiRI3nkkUdYuXIlY8aMYd68eQCsXLmSYcOG8cADD3DOOefQp08f52SAxlqqPxviPzn29PR0tm3bRo8ePU6p/xrGpwnjSKIm3CokJIQ77riDGTNm8Mknn7Br1y7++Mc/smvXrhavmTZtGp9//jl79+5l27ZtfPjhhyQlJREaGkpKSgoBAQG8+OKL7N27l2+++Ybf/e53TdY1mjt3Lq+//jqbN28mNzeXhQsXcvz4cQYOHAhAr169yM/P5/vvv6eoqIiqqirS0tK4+eabufXWW3nnnXfIzs5m8+bNvPnmm/ztb39z+/skhPCc2NhYHn74Yf7xj380ef66664jNjaWKVOmsHHjRjZs2MCvfvUrunfvzpQpU4D6+gPgk08+4ejRo1RUVDRbxnXXXUdoaCg33HADmzdv5ocffuDmm29ucfIB1LfoP/HEE6xbt44DBw7wzTff8NNPPznrrn79+rFlyxY+/vhj9u7dywsvvMCHH37Y5B6nqz8b4l+zZg0HDhygqKgIXdeZNm0aDoeDq666ilWrVpGTk8Pq1at59NFHT/mQLQxg9CA50flVVVWp2267TYWFhamwsDB16623qocffrjFyQR33XWX6tOnjwoMDFRRUVHqZz/7mdq6davz+Pvvv6/S0tJUQECAGjp0qFqxYoUym81q3rx5SimllixZos4991wVERGhgoKC1KBBg9Qbb7zhvL6urk79+te/VpGRkQpwDqy12+3qb3/7m+rXr5/y8/NT0dHR6sILL1SLFy92Xguod955x43vlhDC1RpPJmhQXV2tkpKSmkwmUEqpnTt3qssuu0yFhISokJAQdfnll6s9e/Y0ufZ3v/udio2NVYC68cYbWyx348aNavTo0crf31/17t1bvffee00mDyjVdDLB1q1b1WWXXabi4+OVv7+/Sk5OVg8++KCqra1VStXXXbfddpuKjIxUoaGh6te//rV68cUXm0xuOFP9mZmZqYYNG6YCAwObTFzIyclR1113nYqJiXGWff3116t9+/YppeonE5jN5ta/6cJlNKVO6jMSQgghhBBeQbo+hRBCCCG8lCRqQgghhBBeShI1IYQQQggvJYmaEEIIIYSXkkRNCCGEEMJLSaImhBBCCOGlLEYH4C5Hjhzp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PfccABUVFTz//PMcPXqU2NhY7r//fqxW6ynXrlixgg8//BCAyZMnM3bsWJeU/84777BhwwYsFgvx8fHcddddhDSzRdiZfk7tLX/x4sV88803hIXVLwjy61//muHDh59y7Zm2MGpv+c8//zxHjhwBoKqqiuDgYJ555plTru3o62/pd82TP/+uzhvqu8aMqvtOZkRd2JjR9eKZYvFkHXm6ODxZV54pFk/Vm05u61T1ASUlJWrv3r1KKaWqqqrUvffeqw4ePNjknK1bt6q//vWvbovhrrvuUmVlZS0e37Bhg3rqqaeUrutq165davr06S6PweFwqP/7v/9ThYWFTZ539Wvftm2b2rt3r3rggQecz73zzjtq6dKlSimlli5dqt55551Trjt+/Li6++671fHjx5t874rys7KylN1ud8bSXPlKnfnn1N7yFy1apD7++OPTXudwONS0adNUfn6+stls6sEHHzzl/2l7y29s/vz56v3332/2WEdff0u/a578+Xd13lDfNeYNdd/JPFUXNmZ0vXimWDxZR54uDk/WlWeKpTF31psNunTXZ2RkpPMTWlBQEN27d3fpquGu8OOPP3LhhReiaRp9+/alsrKS0tJSl5axZcsWEhISiI2Ndel9TzZw4MBTPhVmZmYyZswYAMaMGUNmZuYp12VlZTF48GCsVitWq5XBgweTlZXlkvKHDBmC+cT2SX379nXrz7+58luj8RZGFovFuYWRK8tXSvH9999z3nnntfm+rdHS75onf/5dnS/Ud415ou47mafqwsaMrhfPFIsn68jTxdEarqorWxuLu+vNBl2667OxwsJC9u/f3+waR7t37+YPf/gDkZGR/OY3vyGp0XZDrvDUU08BcPHFFzNhwoQmx0pKSohptH1VdHQ0JSUlREZGuqz8NWvWtPgfzd2vvayszPlaIiIiKCsrO+Wck7fwcfU2PA2WL19ORkZGi8dP93PqiC+//JKVK1fSu3dvfvvb355SKbRmC6OO2rFjB+Hh4XTr1vLGyK56/Y1/17zp59+VGFnfNWZ03XcyI+vCxrz198KoOrKBN9SVjXmq3pREDaipqeG5557jpptuIjg4uMmxXr168fLLLxMYGMjGjRt55pln+Oc//+mysp944gmioqIoKyvjySefJDExkYEDB7rs/mdit9vZsGED11133SnH3P3aT6Zp2mk39XWnDz/8ELPZzAUXXNDscXf9nCZOnOgc67Jo0SLefvtt7rrrrg7ft61O9wcKXPf6T/e7ZuTPvysxsr5rzOi672TeVBc25i2/F0bVkQ28pa5szFP1Zpfu+oT6X87nnnuOCy64gFGjRp1yPDg4mMDAQACGDx+Ow+GgvLzcZeU3bCcTHh7OiBEjyM7OPuV4UVGR83Fz29d0xKZNm+jVqxcRERGnHHP3a4f6193QnVFaWuocKNpYW7bhaY8VK1awYcMG7r333hYrxDP9nNorIiICk8mEyWRi/Pjx7N27t9myz7SFUUc4HA7Wr19/2k/Krnj9zf2uecPPvysxur5rzOi672RG14WNedvvhZF1ZANvqCsb81S9CV08UVNK8eqrr9K9e3euuOKKZs85duwY6sRSc9nZ2ei6TmhoaLPntlVNTQ3V1dXO73/66SeSk5ObnJOens7KlStRSrF7926Cg4M91u3pztfeID09ne+++w6A7777jhEjRpxyztChQ9m8eTMVFRVUVFSwefNmhg4d6pLys7Ky+Pjjj3nooYcICAho9pzW/Jzaq/GYm/Xr1zfbndKaLYw6YsuWLSQmJjbpMmjMFa+/pd81o3/+XYnR9V1j3lD3nczourAxb/q9MLqObOANdWVjnqg3G3TpBW937tzJn//8Z5KTk52fEn796187P8VNnDiRL774gq+++gqz2Yy/vz+//e1v6devn0vKLygo4NlnnwXqs/Pzzz+fyZMn89VXXznLV0oxd+5cNm/ejL+/P3fddRepqakuKb+mpoa77rqLOXPmOLtAGpft6tf+j3/8g+3bt3P8+HHCw8O59tprGTFiBM8//zxFRUVNpqHv3buXr7/+mjvuuAOoHxuxdOlSoH4a+rhx41xS/tKlS7Hb7c6xDn369OG2226jpKSEf/3rX0yfPr3Fn5Mryt+2bRs5OTlomkZsbCy33XYbkZGRTcoH2LhxI/Pnz3duYeSq8i+66CJeeukl+vTpw8SJE53nuvr1t/S71qdPH4/9/Ls6o+u7xoyu+07m6bqwMaPrxTPF4sk68nRxeLKuPFMsnqo3G3TpRE0IIYQQwpt16a5PIYQQQghvJomaEEIIIYSXkkRNCCGEEMJLSaImhBBCCOGlJFETQgghhPBSkqgJIYQQQngpSdSET7j77rv56aefvOY+QgjRWlJ/iY6QRE0IIYQQwkvJgrfC67344ousXr0ai8WCyWTi6quvZsCAAbz99tscOnSI2NhYbrrpJgYNGsSuXbv4+9//zt/+9jdiYmLIycnh8ccf58knn+TDDz885T5XXXWV0S9PCNGJSf0lOkwJ4QPuuusutXnzZqWUUsXFxWrq1Klqw4YNyuFwqM2bN6upU6eqsrIypZRS7777rpo5c6aqra1VDzzwgPrvf//b7H2EEMITpP4SHSFdn8LnrFy5kmHDhjF8+HBMJhODBw8mNTWVjRs3AnDNNddQVVXF9OnTiYqK4pJLLjE4YiGEqCf1l2gri9EBCNFWRUVF/PDDD2zYsMH5nMPhYNCgQQBYLBbGjh3LvHnzuPHGG50bUAshhNGk/hJtJYma8DnR0dFccMEF3HHHHc0eLykp4YMPPmDs2LG8/fbb/PWvf8XPz8/DUQohxKmk/hJtJV2fwidERERQWFgIwAUXXMCGDRvIyspC13Xq6urYtm0bxcXFKKV46aWXGDduHHfeeSeRkZEsWrSo2fsIIYQnSP0lOkJmfQqfkJmZyZtvvkl1dTWTJ09mwIABLFiwgAMHDmAymUhLS+PWW29l/fr1fPvtt/z1r3/FYrFQUlLCH/7wBx588EEGDBhwyn2uvPJKo1+aEKKTk/pLdIQkakIIIYQQXkq6PoUQQgghvJQkakIIIYQQXkoSNSGEEEIILyWJmhBCCCGEl5JETQghhBDCS0miJoQQQgjhpSRRE0IIIYTwUpKoCSGEEEJ4KUnUhBBCCCG81P8Dwfow9SI639QAAAAASUVORK5CYII=\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "fig,(ax1,ax2)=plt.subplots(1,2,figsize=(10,5))\n",
+ "word=tweet[tweet['target']==1]['text'].str.split().apply(lambda x : [len(i) for i in x])\n",
+ "sns.distplot(word.map(lambda x: np.mean(x)),ax=ax1,color='red')\n",
+ "ax1.set_title('disaster')\n",
+ "word=tweet[tweet['target']==0]['text'].str.split().apply(lambda x : [len(i) for i in x])\n",
+ "sns.distplot(word.map(lambda x: np.mean(x)),ax=ax2,color='green')\n",
+ "ax2.set_title('Not disaster')\n",
+ "fig.suptitle('Average word length in each tweet')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {
+ "id": "6NRUZcUo_ILf",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "def create_corpus(target):\n",
+ " corpus=[]\n",
+ " \n",
+ " for x in tweet[tweet['target']==target]['text'].str.split():\n",
+ " for i in x:\n",
+ " corpus.append(i)\n",
+ " return corpus"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "nwxtu1Sm_ILf",
+ "tags": []
+ },
+ "source": [
+ "### Common stopwords in tweets"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "GxyIXyPe_ILf",
+ "tags": []
+ },
+ "source": [
+ "First we will analyze tweets with class 0."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {
+ "id": "wD2Z8SC__ILg",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "corpus=create_corpus(0)\n",
+ "\n",
+ "dic=defaultdict(int)\n",
+ "for word in corpus:\n",
+ " if word in stop:\n",
+ " dic[word]+=1\n",
+ " \n",
+ "top=sorted(dic.items(), key=lambda x:x[1],reverse=True)[:10] \n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 286
+ },
+ "id": "1T2dSQXK_ILg",
+ "outputId": "1712a0cc-34c5-43af-881c-403b8929014d",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 12,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "x,y=zip(*top)\n",
+ "plt.bar(x,y)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Dr55rAMk_ILg",
+ "tags": []
+ },
+ "source": [
+ "Now,we will analyze tweets with class 1."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 282
+ },
+ "id": "Hl4hcagJ_ILh",
+ "outputId": "ec6b8a74-0432-4d09-bdd1-1cbba1d90442",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 13,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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oUAgoOzsbLlcLiUmJio1NVUnTpyQ1+tVSUmJHA6Hjh07pt/97nc6f/680tLSVFxcrMzMzJj2smDBAm3dulVNTU364x//eMM++tKuXbv0zjvvSJKKior08ccf65133lF2drYefvhhzZkzp0/rS9KvfvUrtba26tKlS5o1a1afXuHw+X0/efJkSZdv/idJjz76qB588MGY1rvR2BYsWKBZs2apoaFBCQkJWrlypTIyMtTc3KwXX3xR58+fV15env76179q69atMevl2n2dl5endevWafz48Tpy5IjcbreeeeYZJSQkxKzmb3/72/DxVFhYqEOHDqm5uVmJiYlavHixvvzlL2v79u06deqUmpub5fF4tGzZspjVv+LK/7O2tjZVVFSoq6tLPT09WrRoke6///6Y1/u8a4+BU6dOaefOnRo5cqRGjBgRv8mVscipU6fM8uXLjTHGHDx40Hzve98zLS0tJhQKmdWrV5tDhw6ZS5cumZ/+9Kemvb3dGGPM3r17zaZNm2Ley/z582/ZR1/68MMPzfLly825c+fMuXPnTGlpqTl27JgpLi4Oj7s/dHR0GGOMuXDhglm+fLk5c+ZMn9X6/L5/7733zC9+8QsTCoVMW1ubWbJkiQkGgzGtd6Oxffvb3zaBQMAYY8zWrVvNjh07jDHGlJWVmdraWmOMMW+++Wb42IiFm+3r73znO+b48ePGGGPWr19v6urqYlbziivH0yuvvGK2b99ujDHmwIED5umnnzbGGPOHP/zBPPPMM+bChQsxr33FlZ/lzp07zZ/+9CdjjDGhUMh0dXX1Wc0rbnQMxHLfRqvfb608kIwZM0Yej0eSNGrUKDU3NyspKUknTpzQL3/5S0mX7wwa61n+nfQxYcKEPqv3wQcfaPr06brnnnskSdOnT9ehQ4f6rN7N7N69O3zDvZaWFn366adKTU3t87offPCBHnroIQ0aNEgZGRmaOHGiPvzww5h+UPBGY3O5XJo2bZokyev16l//+pck6fDhw1qxYoUkacaMGdq2bVvM+rjZvh4yZIhGjRoV7uX06dMxq3mjHq6M7ytf+Yo6OzvV1dUlScrNzY3pXxg3c9999+k3v/mNuru7NX369PDY+9KNjoGBwOrQ/8IXvhD+96BBg9TT0yNJGj58uNauXRv3Pu5mTU1NOnDggJ577jklJibqZz/7mS5duhTvtmLiZmNzOp3h03aDBg266jx2X5/Ou9a1x9zFixf7tf4ViYmJ/VJn4sSJ+vnPf66GhgZt2rRJc+bMUUFBQZ/VG8jHt1Vv5N577706d+7cLdfJzs7WmTNndOTIEUlSd3e3Tpw40R/t9ZsJEyYoEAjowoULOn/+vAKBQJ+f37xWV1eXkpOTlZiYqI8//lhHjx7t03qf3/f333+/3nvvPfX09OjMmTM6dOiQxowZE7NakY5t/Pjx2rt3ryTpH//4R8z6kAbGvp4wYYL+/ve/S7ochqmpqUpKSurXHk6fPq2MjAz5fD7NnDlTx48f79N6NzsGXC6Xuru7+7T27Vg1009NTdX48eO1YsUKJSQkKD09/bp1XC6XVqxYoaqqKnV1dSkUCmnWrFkD6nYRveX1elVYWKjVq1dLuvzm3ujRo/u1hylTpuhvf/ubSktL9aUvfUljx47t03qf3/dTpkzRyJEjtXLlSknS/PnzlZGREbNakY7t+9//vl588UX95S9/UV5eXsz6kG68r5OTk2Na43bmzZunzZs36+mnn1ZiYqJ++MMf9mt96fIvmzfeeENOp1P33HOPfvSjH/VpvZsdAzNnztTKlSs1evTouL2Ra9XVOwBgO6tO7wCA7Qh9ALAIoQ8AFiH0AcAihD4AWITQBwCLEPoAYJH/AZ8ymjzCQezSAAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "\n",
+ "\n",
+ "corpus=create_corpus(1)\n",
+ "\n",
+ "dic=defaultdict(int)\n",
+ "for word in corpus:\n",
+ " if word in stop:\n",
+ " dic[word]+=1\n",
+ "\n",
+ "top=sorted(dic.items(), key=lambda x:x[1],reverse=True)[:10] \n",
+ " \n",
+ "\n",
+ "\n",
+ "x,y=zip(*top)\n",
+ "plt.bar(x,y)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "UaqkbAMx_ILh",
+ "tags": []
+ },
+ "source": [
+ "In both of them,\"the\" dominates which is followed by \"a\" in class 0 and \"in\" in class 1."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "QxQNuTVe_ILh",
+ "tags": []
+ },
+ "source": [
+ "### Analyzing punctuations."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "MgkVXm4X_ILi",
+ "tags": []
+ },
+ "source": [
+ "First let's check tweets indicating real disaster."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 337
+ },
+ "id": "3fJJLs_C_ILi",
+ "outputId": "2882472e-95c0-44f1-dda9-794d43257ed8",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 14,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(10,5))\n",
+ "corpus=create_corpus(1)\n",
+ "\n",
+ "dic=defaultdict(int)\n",
+ "import string\n",
+ "special = string.punctuation\n",
+ "for i in (corpus):\n",
+ " if i in special:\n",
+ " dic[i]+=1\n",
+ " \n",
+ "x,y=zip(*dic.items())\n",
+ "plt.bar(x,y)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "plgBvyxS_ILi",
+ "tags": []
+ },
+ "source": [
+ "Now,we will move on to class 0."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 337
+ },
+ "id": "e_1ffbrD_ILi",
+ "outputId": "d721a57b-9bb1-4271-ef9e-631f074801c4",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(10,5))\n",
+ "corpus=create_corpus(0)\n",
+ "\n",
+ "dic=defaultdict(int)\n",
+ "import string\n",
+ "special = string.punctuation\n",
+ "for i in (corpus):\n",
+ " if i in special:\n",
+ " dic[i]+=1\n",
+ " \n",
+ "x,y=zip(*dic.items())\n",
+ "plt.bar(x,y,color='green')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "EQYD1pao_ILj",
+ "tags": []
+ },
+ "source": [
+ "### Common words ?"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {
+ "id": "L6y5aUjS_ILj",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "\n",
+ "counter=Counter(corpus)\n",
+ "most=counter.most_common()\n",
+ "x=[]\n",
+ "y=[]\n",
+ "for word,count in most[:40]:\n",
+ " if (word not in stop) :\n",
+ " x.append(word)\n",
+ " y.append(count)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 282
+ },
+ "id": "z5YAMS8Y_ILj",
+ "outputId": "08fe71ae-23ec-4ba5-ade3-ebf90e6a1ac6",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 17,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "sns.barplot(x=y,y=x)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "u3tZhA9d_ILk",
+ "tags": []
+ },
+ "source": [
+ "Lot of cleaning needed !"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "8_PnwdSs_ILk",
+ "tags": []
+ },
+ "source": [
+ "### Ngram analysis"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "tAIgaAvE_ILk",
+ "tags": []
+ },
+ "source": [
+ "we will do a bigram (n=2) analysis over the tweets.Let's check the most common bigrams in tweets."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {
+ "id": "N15pbWGx_ILk",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "def get_top_tweet_bigrams(corpus, n=None):\n",
+ " vec = CountVectorizer(ngram_range=(2, 2)).fit(corpus)\n",
+ " bag_of_words = vec.transform(corpus)\n",
+ " sum_words = bag_of_words.sum(axis=0) \n",
+ " words_freq = [(word, sum_words[0, idx]) for word, idx in vec.vocabulary_.items()]\n",
+ " words_freq =sorted(words_freq, key = lambda x: x[1], reverse=True)\n",
+ " return words_freq[:n]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 337
+ },
+ "id": "-McUR_eY_ILk",
+ "outputId": "a341561b-f94c-4fe2-ea77-8481508a3872",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 19,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(10,5))\n",
+ "top_tweet_bigrams=get_top_tweet_bigrams(tweet['text'])[:10]\n",
+ "x,y=map(list,zip(*top_tweet_bigrams))\n",
+ "sns.barplot(x=y,y=x)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "OgTvY4ZA_ILl",
+ "tags": []
+ },
+ "source": [
+ "We will need lot of cleaning here.."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "f2YFV_JY_ILl",
+ "tags": []
+ },
+ "source": [
+ "## Data Cleaning\n",
+ "As we know,twitter tweets always have to be cleaned before we go onto modelling.So we will do some basic cleaning such as spelling correction,removing punctuations,removing html tags and emojis etc.So let's start."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "giSY7dMs_ILl",
+ "outputId": "70649954-fe83-4897-b49a-956426d87fbb",
+ "tags": [
+ "block:preprocess_data",
+ "prev:eda_data"
+ ]
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(10876, 5)"
+ ]
+ },
+ "execution_count": 20,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df=pd.concat([tweet,test])\n",
+ "df.shape"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "qIOyVrSB_ILm",
+ "tags": []
+ },
+ "source": [
+ "### Removing urls"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {
+ "id": "VaEIZCtG_ILm",
+ "tags": [
+ "block:",
+ "prev:pre",
+ "prev:preprocess_data"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "def remove_URL(text):\n",
+ " url = re.compile(r'https?://\\S+|www\\.\\S+')\n",
+ " return url.sub(r'',text)\n",
+ "\n",
+ "df['text']=df['text'].apply(lambda x : remove_URL(x))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "MJnMSv_C_ILm",
+ "tags": []
+ },
+ "source": [
+ "### Removing HTML tags"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {
+ "id": "UrB9R_Fe_ILn",
+ "tags": [
+ "block:"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "def remove_html(text):\n",
+ " html=re.compile(r'<.*?>')\n",
+ " return html.sub(r'',text)\n",
+ "df['text']=df['text'].apply(lambda x : remove_html(x))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1c20CxzO_ILn",
+ "tags": []
+ },
+ "source": [
+ "### Removing Emojis"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {
+ "id": "G5EHnHOC_ILo",
+ "tags": [
+ "block:"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "# Reference : https://gist.github.com/slowkow/7a7f61f495e3dbb7e3d767f97bd7304b\n",
+ "def remove_emoji(text):\n",
+ " emoji_pattern = re.compile(\"[\"\n",
+ " u\"\\U0001F600-\\U0001F64F\" # emoticons\n",
+ " u\"\\U0001F300-\\U0001F5FF\" # symbols & pictographs\n",
+ " u\"\\U0001F680-\\U0001F6FF\" # transport & map symbols\n",
+ " u\"\\U0001F1E0-\\U0001F1FF\" # flags (iOS)\n",
+ " u\"\\U00002702-\\U000027B0\"\n",
+ " u\"\\U000024C2-\\U0001F251\"\n",
+ " \"]+\", flags=re.UNICODE)\n",
+ " return emoji_pattern.sub(r'', text)\n",
+ "\n",
+ "df['text']=df['text'].apply(lambda x: remove_emoji(x))\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "YoiLOdZe_ILo",
+ "tags": []
+ },
+ "source": [
+ "### Removing punctuations"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {
+ "id": "C4hZZQBV_ILp",
+ "tags": [
+ "block:",
+ "prev:preprocess_data"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "def remove_punct(text):\n",
+ " table=str.maketrans('','',string.punctuation)\n",
+ " return text.translate(table)\n",
+ "\n",
+ "df['text']=df['text'].apply(lambda x : remove_punct(x))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "uNkNHy7W_ILp",
+ "tags": []
+ },
+ "source": [
+ "### Spelling Correction\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "DAjtB__8_ILp",
+ "tags": []
+ },
+ "source": [
+ "Even if I'm not good at spelling I can correct it with python :) I will use `pyspellcheker` to do that."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "## Corpus Creation"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "QWKIMprt_ILr",
+ "outputId": "e2c533cf-3700-4df4-b4c0-a41428e4a5b0",
+ "tags": [
+ "block:corpus_creation",
+ "prev:preprocess_data"
+ ]
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|██████████| 10876/10876 [00:02<00:00, 4629.46it/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "def create_corpus(df):\n",
+ " corpus=[]\n",
+ " for tweet in tqdm(df['text']):\n",
+ " words=[word.lower() for word in word_tokenize(tweet) if((word.isalpha()==1) & (word not in stop))]\n",
+ " corpus.append(words)\n",
+ " return corpus\n",
+ "corpus=create_corpus(df)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "## Download Glove"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "rUdI7CrYfsOc",
+ "outputId": "23e87b84-e26e-4b41-af73-7565eabee6a6",
+ "tags": [
+ "block:"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "# download files\n",
+ "import wget\n",
+ "import zipfile\n",
+ "wget.download(\"http://nlp.stanford.edu/data/glove.6B.zip\", './glove.6B.zip')\n",
+ " \n",
+ "with zipfile.ZipFile(\"glove.6B.zip\", 'r') as zip_ref:\n",
+ " zip_ref.extractall(\"./\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "## Embedding Step"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "metadata": {
+ "id": "vvY4lcdn_ILr",
+ "tags": [
+ "block:embedding_step",
+ "prev:corpus_creation"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "embedding_dict={}\n",
+ "with open(\"./glove.6B.100d.txt\",'r') as f:\n",
+ " for line in f:\n",
+ " values=line.split()\n",
+ " word=values[0]\n",
+ " vectors=np.asarray(values[1:],'float32')\n",
+ " embedding_dict[word]=vectors\n",
+ "f.close()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 31,
+ "metadata": {
+ "id": "tIqnmcc6_ILr",
+ "tags": [
+ "block:"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "MAX_LEN=50\n",
+ "tokenizer_obj=Tokenizer()\n",
+ "tokenizer_obj.fit_on_texts(corpus)\n",
+ "sequences=tokenizer_obj.texts_to_sequences(corpus)\n",
+ "\n",
+ "tweet_pad=pad_sequences(sequences,maxlen=MAX_LEN,truncating='post',padding='post')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 32,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "B4n1eHMp_ILs",
+ "outputId": "2c027b1c-6dfe-41af-89ce-663e38c227e9",
+ "tags": [
+ "block:"
+ ]
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Number of unique words: 20342\n"
+ ]
+ }
+ ],
+ "source": [
+ "word_index=tokenizer_obj.word_index\n",
+ "print('Number of unique words:',len(word_index))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "MBONMhCm_ILs",
+ "outputId": "3ce6f1b4-802f-43d7-cd0b-14a79fe9346c",
+ "tags": [
+ "block:"
+ ]
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|██████████| 20342/20342 [00:00<00:00, 310979.08it/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "num_words=len(word_index)+1\n",
+ "embedding_matrix=np.zeros((num_words,100))\n",
+ "\n",
+ "for word,i in tqdm(word_index.items()):\n",
+ " if i > num_words:\n",
+ " continue\n",
+ " \n",
+ " emb_vec=embedding_dict.get(word)\n",
+ " if emb_vec is not None:\n",
+ " embedding_matrix[i]=emb_vec\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Sh1bYaFO_ILs",
+ "tags": []
+ },
+ "source": [
+ "## Baseline Model"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "metadata": {
+ "id": "0ox_ger4_ILs",
+ "tags": [
+ "block:final_model",
+ "prev:embedding_step"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "model=Sequential()\n",
+ "\n",
+ "embedding=Embedding(num_words,100,embeddings_initializer=Constant(embedding_matrix),\n",
+ " input_length=MAX_LEN,trainable=False)\n",
+ "\n",
+ "model.add(embedding)\n",
+ "model.add(SpatialDropout1D(0.2))\n",
+ "model.add(LSTM(64, dropout=0.2, recurrent_dropout=0.2))\n",
+ "model.add(Dense(1, activation='sigmoid'))\n",
+ "\n",
+ "\n",
+ "optimzer=Adam(learning_rate=1e-5)\n",
+ "\n",
+ "model.compile(loss='binary_crossentropy',optimizer=optimzer,metrics=['accuracy'])\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 35,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "gNcE-6N0_ILt",
+ "outputId": "77f6865e-3642-410b-a263-a75060e0431a",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Model: \"sequential\"\n",
+ "_________________________________________________________________\n",
+ "Layer (type) Output Shape Param # \n",
+ "=================================================================\n",
+ "embedding (Embedding) (None, 50, 100) 2034300 \n",
+ "_________________________________________________________________\n",
+ "spatial_dropout1d (SpatialDr (None, 50, 100) 0 \n",
+ "_________________________________________________________________\n",
+ "lstm (LSTM) (None, 64) 42240 \n",
+ "_________________________________________________________________\n",
+ "dense (Dense) (None, 1) 65 \n",
+ "=================================================================\n",
+ "Total params: 2,076,605\n",
+ "Trainable params: 42,305\n",
+ "Non-trainable params: 2,034,300\n",
+ "_________________________________________________________________\n"
+ ]
+ }
+ ],
+ "source": [
+ "model.summary()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "metadata": {
+ "id": "7-iK95sN_ILt",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "train=tweet_pad[:tweet.shape[0]]\n",
+ "final_test=tweet_pad[tweet.shape[0]:]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 37,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "-wNkHpK__ILt",
+ "outputId": "0d287614-192a-425d-a6a3-a1eb6b757e0a",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Shape of train (6471, 50)\n",
+ "Shape of Validation (1142, 50)\n"
+ ]
+ }
+ ],
+ "source": [
+ "X_train,X_test,y_train,y_test=train_test_split(train,tweet['target'].values,test_size=0.15)\n",
+ "print('Shape of train',X_train.shape)\n",
+ "print(\"Shape of Validation \",X_test.shape)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "## Training Model"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "gIFqAxRP_ILt",
+ "outputId": "1228be0f-5fe5-4df1-e48f-7707f81bf6ef",
+ "tags": [
+ "block:train_model",
+ "prev:final_model"
+ ]
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Epoch 1/5\n",
+ "1618/1618 - 118s - loss: 0.6912 - accuracy: 0.5670 - val_loss: 0.6862 - val_accuracy: 0.5841\n",
+ "Epoch 2/5\n",
+ "1618/1618 - 114s - loss: 0.6043 - accuracy: 0.6840 - val_loss: 0.5433 - val_accuracy: 0.7671\n",
+ "Epoch 3/5\n",
+ "1618/1618 - 112s - loss: 0.5460 - accuracy: 0.7456 - val_loss: 0.5189 - val_accuracy: 0.7785\n",
+ "Epoch 4/5\n",
+ "1618/1618 - 112s - loss: 0.5329 - accuracy: 0.7535 - val_loss: 0.5038 - val_accuracy: 0.7846\n",
+ "Epoch 5/5\n",
+ "1618/1618 - 111s - loss: 0.5153 - accuracy: 0.7645 - val_loss: 0.4931 - val_accuracy: 0.7881\n"
+ ]
+ }
+ ],
+ "source": [
+ "history=model.fit(X_train,y_train,batch_size=4,epochs=5,validation_data=(X_test,y_test),verbose=2)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5VdeRpW6_ILu",
+ "tags": []
+ },
+ "source": [
+ "## Making our submission"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 39,
+ "metadata": {
+ "id": "C2nwzCGZ_ILu",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "sample_sub=pd.read_csv('./data/sample_submission.csv')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 40,
+ "metadata": {
+ "id": "skzE80GX_ILu",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "y_pre=model.predict(final_test)\n",
+ "y_pre=np.round(y_pre).astype(int).reshape(3263)\n",
+ "sub=pd.DataFrame({'id':sample_sub['id'].values.tolist(),'target':y_pre})\n",
+ "sub.to_csv('submission.csv',index=False)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 41,
+ "metadata": {
+ "id": "vhkRPayj_ILu",
+ "outputId": "cbbca861-390f-4040-9830-79bb6a34e967",
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " id \n",
+ " target \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 2 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 3 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 9 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 11 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id target\n",
+ "0 0 1\n",
+ "1 2 1\n",
+ "2 3 1\n",
+ "3 9 1\n",
+ "4 11 1"
+ ]
+ },
+ "execution_count": 41,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "sub.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "tags": []
+ },
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "name": "nlp-getting-started.ipynb",
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "kubeflow_notebook": {
+ "autosnapshot": true,
+ "docker_image": "gcr.io/arrikto/jupyter-kale-py36@sha256:dd3f92ca66b46d247e4b9b6a9d84ffbb368646263c2e3909473c3b851f3fe198",
+ "experiment": {
+ "id": "new",
+ "name": "trial-with-kale"
+ },
+ "experiment_name": "trial-with-kale",
+ "katib_metadata": {
+ "algorithm": {
+ "algorithmName": "grid"
+ },
+ "maxFailedTrialCount": 3,
+ "maxTrialCount": 12,
+ "objective": {
+ "objectiveMetricName": "",
+ "type": "minimize"
+ },
+ "parallelTrialCount": 3,
+ "parameters": []
+ },
+ "katib_run": false,
+ "pipeline_description": "An NLP pipeline for disaster detection using tweets",
+ "pipeline_name": "nlp-getting-started",
+ "snapshot_volumes": true,
+ "steps_defaults": [
+ "label:access-ml-pipeline:true",
+ "label:access-rok:true"
+ ],
+ "volume_access_mode": "rwm",
+ "volumes": [
+ {
+ "annotations": [],
+ "mount_point": "/home/jovyan",
+ "name": "nlp-getting-started-kale-workspace-6tp8v",
+ "size": 20,
+ "size_type": "Gi",
+ "snapshot": false,
+ "type": "clone"
+ }
+ ]
+ },
+ "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.6.9"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-kfp.ipynb b/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-kfp.ipynb
new file mode 100644
index 00000000..714d3e14
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-kfp.ipynb
@@ -0,0 +1,615 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Defaulting to user installation because normal site-packages is not writeable\n",
+ "Requirement already satisfied: kfp in /home/jovyan/.local/lib/python3.6/site-packages (1.8.11)\n",
+ "Collecting kfp\n",
+ " Using cached kfp-1.8.12.tar.gz (301 kB)\n",
+ " Preparing metadata (setup.py) ... \u001b[?25ldone\n",
+ "\u001b[?25hRequirement already satisfied: absl-py<2,>=0.9 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.11.0)\n",
+ "Requirement already satisfied: PyYAML<6,>=5.3 in /usr/local/lib/python3.6/dist-packages (from kfp) (5.4.1)\n",
+ "Requirement already satisfied: google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5 in /usr/local/lib/python3.6/dist-packages (from kfp) (1.31.5)\n",
+ "Requirement already satisfied: google-cloud-storage<2,>=1.20.0 in /usr/local/lib/python3.6/dist-packages (from kfp) (1.44.0)\n",
+ "Requirement already satisfied: kubernetes<19,>=8.0.0 in /usr/local/lib/python3.6/dist-packages (from kfp) (12.0.1)\n",
+ "Requirement already satisfied: google-api-python-client<2,>=1.7.8 in /usr/local/lib/python3.6/dist-packages (from kfp) (1.12.8)\n",
+ "Requirement already satisfied: google-auth<2,>=1.6.1 in /usr/local/lib/python3.6/dist-packages (from kfp) (1.35.0)\n",
+ "Requirement already satisfied: requests-toolbelt<1,>=0.8.0 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.9.1)\n",
+ "Requirement already satisfied: cloudpickle<3,>=2.0.0 in /home/jovyan/.local/lib/python3.6/site-packages (from kfp) (2.0.0)\n",
+ "Requirement already satisfied: kfp-server-api<2.0.0,>=1.1.2 in /usr/local/lib/python3.6/dist-packages (from kfp) (1.7.1)\n",
+ "Requirement already satisfied: jsonschema<4,>=3.0.1 in /usr/local/lib/python3.6/dist-packages (from kfp) (3.2.0)\n",
+ "Requirement already satisfied: tabulate<1,>=0.8.6 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.8.9)\n",
+ "Requirement already satisfied: click<9,>=7.1.2 in /usr/local/lib/python3.6/dist-packages (from kfp) (7.1.2)\n",
+ "Requirement already satisfied: Deprecated<2,>=1.2.7 in /usr/local/lib/python3.6/dist-packages (from kfp) (1.2.13)\n",
+ "Requirement already satisfied: strip-hints<1,>=0.1.8 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.1.10)\n",
+ "Requirement already satisfied: docstring-parser<1,>=0.7.3 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.13)\n",
+ "Requirement already satisfied: kfp-pipeline-spec<0.2.0,>=0.1.13 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.1.13)\n",
+ "Requirement already satisfied: protobuf<4,>=3.13.0 in /usr/local/lib/python3.6/dist-packages (from kfp) (3.19.3)\n",
+ "Requirement already satisfied: fire<1,>=0.3.1 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.4.0)\n",
+ "Requirement already satisfied: dataclasses in /usr/local/lib/python3.6/dist-packages (from kfp) (0.8)\n",
+ "Requirement already satisfied: uritemplate<4,>=3.0.1 in /usr/local/lib/python3.6/dist-packages (from kfp) (3.0.1)\n",
+ "Requirement already satisfied: typer<1.0,>=0.3.2 in /usr/local/lib/python3.6/dist-packages (from kfp) (0.4.0)\n",
+ "Requirement already satisfied: typing-extensions<4,>=3.7.4 in /home/jovyan/.local/lib/python3.6/site-packages (from kfp) (3.7.4.3)\n",
+ "Requirement already satisfied: pydantic<2,>=1.8.2 in /usr/local/lib/python3.6/dist-packages (from kfp) (1.9.0)\n",
+ "Requirement already satisfied: six in /home/jovyan/.local/lib/python3.6/site-packages (from absl-py<2,>=0.9->kfp) (1.15.0)\n",
+ "Requirement already satisfied: wrapt<2,>=1.10 in /home/jovyan/.local/lib/python3.6/site-packages (from Deprecated<2,>=1.2.7->kfp) (1.12.1)\n",
+ "Requirement already satisfied: termcolor in /usr/local/lib/python3.6/dist-packages (from fire<1,>=0.3.1->kfp) (1.1.0)\n",
+ "Requirement already satisfied: google-auth-httplib2>=0.0.3 in /usr/local/lib/python3.6/dist-packages (from google-api-python-client<2,>=1.7.8->kfp) (0.1.0)\n",
+ "Requirement already satisfied: httplib2<1dev,>=0.15.0 in /usr/local/lib/python3.6/dist-packages (from google-api-python-client<2,>=1.7.8->kfp) (0.20.2)\n",
+ "Requirement already satisfied: setuptools>=40.3.0 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.1->kfp) (59.6.0)\n",
+ "Requirement already satisfied: cachetools<5.0,>=2.0.0 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.1->kfp) (4.2.4)\n",
+ "Requirement already satisfied: rsa<5,>=3.1.4 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.1->kfp) (4.8)\n",
+ "Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.1->kfp) (0.2.8)\n",
+ "Requirement already satisfied: requests<3.0.0dev,>=2.18.0 in /usr/local/lib/python3.6/dist-packages (from google-cloud-storage<2,>=1.20.0->kfp) (2.27.1)\n",
+ "Requirement already satisfied: google-cloud-core<3.0dev,>=1.6.0 in /usr/local/lib/python3.6/dist-packages (from google-cloud-storage<2,>=1.20.0->kfp) (2.2.1)\n",
+ "Requirement already satisfied: google-resumable-media<3.0dev,>=1.3.0 in /usr/local/lib/python3.6/dist-packages (from google-cloud-storage<2,>=1.20.0->kfp) (2.1.0)\n",
+ "Requirement already satisfied: importlib-metadata in /usr/local/lib/python3.6/dist-packages (from jsonschema<4,>=3.0.1->kfp) (4.8.3)\n",
+ "Requirement already satisfied: pyrsistent>=0.14.0 in /usr/local/lib/python3.6/dist-packages (from jsonschema<4,>=3.0.1->kfp) (0.18.0)\n",
+ "Requirement already satisfied: attrs>=17.4.0 in /usr/local/lib/python3.6/dist-packages (from jsonschema<4,>=3.0.1->kfp) (20.3.0)\n",
+ "Requirement already satisfied: python-dateutil in /usr/local/lib/python3.6/dist-packages (from kfp-server-api<2.0.0,>=1.1.2->kfp) (2.8.2)\n",
+ "Requirement already satisfied: urllib3>=1.15 in /usr/local/lib/python3.6/dist-packages (from kfp-server-api<2.0.0,>=1.1.2->kfp) (1.26.8)\n",
+ "Requirement already satisfied: certifi in /usr/local/lib/python3.6/dist-packages (from kfp-server-api<2.0.0,>=1.1.2->kfp) (2021.10.8)\n",
+ "Requirement already satisfied: websocket-client!=0.40.0,!=0.41.*,!=0.42.*,>=0.32.0 in /usr/local/lib/python3.6/dist-packages (from kubernetes<19,>=8.0.0->kfp) (1.2.3)\n",
+ "Requirement already satisfied: requests-oauthlib in /usr/local/lib/python3.6/dist-packages (from kubernetes<19,>=8.0.0->kfp) (1.3.0)\n",
+ "Requirement already satisfied: wheel in /home/jovyan/.local/lib/python3.6/site-packages (from strip-hints<1,>=0.1.8->kfp) (0.37.1)\n",
+ "Requirement already satisfied: pytz in /usr/local/lib/python3.6/dist-packages (from google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5->kfp) (2021.3)\n",
+ "Requirement already satisfied: googleapis-common-protos<2.0dev,>=1.6.0 in /usr/local/lib/python3.6/dist-packages (from google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5->kfp) (1.54.0)\n",
+ "Requirement already satisfied: packaging>=14.3 in /usr/local/lib/python3.6/dist-packages (from google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5->kfp) (21.3)\n",
+ "Requirement already satisfied: google-crc32c<2.0dev,>=1.0 in /usr/local/lib/python3.6/dist-packages (from google-resumable-media<3.0dev,>=1.3.0->google-cloud-storage<2,>=1.20.0->kfp) (1.3.0)\n",
+ "Requirement already satisfied: pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2 in /usr/local/lib/python3.6/dist-packages (from httplib2<1dev,>=0.15.0->google-api-python-client<2,>=1.7.8->kfp) (3.0.6)\n",
+ "Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /usr/local/lib/python3.6/dist-packages (from pyasn1-modules>=0.2.1->google-auth<2,>=1.6.1->kfp) (0.4.8)\n",
+ "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0dev,>=2.18.0->google-cloud-storage<2,>=1.20.0->kfp) (3.3)\n",
+ "Requirement already satisfied: charset-normalizer~=2.0.0 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0dev,>=2.18.0->google-cloud-storage<2,>=1.20.0->kfp) (2.0.10)\n",
+ "Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.6/dist-packages (from importlib-metadata->jsonschema<4,>=3.0.1->kfp) (3.6.0)\n",
+ "Requirement already satisfied: oauthlib>=3.0.0 in /usr/local/lib/python3.6/dist-packages (from requests-oauthlib->kubernetes<19,>=8.0.0->kfp) (3.1.1)\n"
+ ]
+ }
+ ],
+ "source": [
+ "!pip install kfp --upgrade "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "# Import kubeflow pipeline libraries\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import kfp\n",
+ "import kfp.components as comp\n",
+ "import kfp.dsl as dsl\n",
+ "from kfp.components import InputPath, OutputPath"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "## Download Dataset"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "#Download data\n",
+ "def download_data(download_link: str, data_path: OutputPath(str)):\n",
+ " import zipfile\n",
+ " import wget\n",
+ " import os\n",
+ "\n",
+ " if not os.path.exists(data_path):\n",
+ " os.makedirs(data_path)\n",
+ "\n",
+ " # download files\n",
+ " wget.download(download_link.format(file='train'), f'{data_path}/train_csv.zip')\n",
+ " wget.download(download_link.format(file='test'), f'{data_path}/test_csv.zip')\n",
+ " \n",
+ " with zipfile.ZipFile(f\"{data_path}/train_csv.zip\",\"r\") as zip_ref:\n",
+ " zip_ref.extractall(data_path)\n",
+ " \n",
+ " with zipfile.ZipFile(f\"{data_path}/test_csv.zip\",\"r\") as zip_ref:\n",
+ " zip_ref.extractall(data_path)\n",
+ " \n",
+ " return(print('Done!'))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "download_op = kfp.components.create_component_from_func(download_data,base_image=\"python:3.7\", packages_to_install=['wget', 'zipfile36'])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "tags": []
+ },
+ "source": [
+ "# Load Data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def load_data(data_path:comp.InputPath(str),load_data_path: comp.OutputPath()):\n",
+ " import pandas as pd\n",
+ " import os, pickle\n",
+ " \n",
+ " train_data_path = data_path + '/train.csv'\n",
+ " test_data_path = data_path + '/test.csv'\n",
+ " tweet_df= pd.read_csv(train_data_path)\n",
+ " test_df=pd.read_csv(test_data_path)\n",
+ " df=pd.concat([tweet_df,test_df])\n",
+ " \n",
+ " #creating the preprocess directory\n",
+ " os.makedirs(load_data_path, exist_ok = True)\n",
+ " \n",
+ " # join train and test together\n",
+ " ntrain = tweet_df.shape[0]\n",
+ " ntest = test_df.shape[0]\n",
+ " with open(f'{load_data_path}/df', 'wb') as f:\n",
+ " pickle.dump((ntrain, df, tweet_df), f)\n",
+ " return(print('Done!'))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "load_data_step = kfp.components.create_component_from_func(\n",
+ " func=load_data,\n",
+ " output_component_file='load_data_component.yaml', # This is optional. It saves the component spec for future use.\n",
+ " base_image='python:3.7',\n",
+ " packages_to_install=['pandas','pickle5'])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def preprocess_data(load_data_path:comp.InputPath(str), preprocess_data_path:comp.OutputPath(str)):\n",
+ " \n",
+ " import re\n",
+ " import pandas as pd\n",
+ " import os, pickle\n",
+ " import string\n",
+ " \n",
+ " #loading the train data\n",
+ " with open(f'{load_data_path}/df', 'rb') as f:\n",
+ " ntrain, df, tweet_df = pickle.load(f)\n",
+ " \n",
+ " \n",
+ " def remove_URL(text):\n",
+ " url = re.compile(r'https?://\\S+|www\\.\\S+')\n",
+ " return url.sub(r'',text)\n",
+ " def remove_html(text):\n",
+ " html=re.compile(r'<.*?>')\n",
+ " return html.sub(r'',text)\n",
+ " def remove_emoji(text):\n",
+ " emoji_pattern = re.compile(\"[\"\n",
+ " u\"\\U0001F600-\\U0001F64F\" # emoticons\n",
+ " u\"\\U0001F300-\\U0001F5FF\" # symbols & pictographs\n",
+ " u\"\\U0001F680-\\U0001F6FF\" # transport & map symbols\n",
+ " u\"\\U0001F1E0-\\U0001F1FF\" # flags (iOS)\n",
+ " u\"\\U00002702-\\U000027B0\"\n",
+ " u\"\\U000024C2-\\U0001F251\"\n",
+ " \"]+\", flags=re.UNICODE)\n",
+ " return emoji_pattern.sub(r'', text)\n",
+ " def remove_punct(text):\n",
+ " table=str.maketrans('','',string.punctuation)\n",
+ " return text.translate(table)\n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " df['text'] = df['text'].apply(lambda x : remove_URL(x))\n",
+ " df['text'] = df['text'].apply(lambda x: remove_html(x))\n",
+ " df['text'] = df['text'].apply(lambda x: remove_emoji(x))\n",
+ " df['text'] = df['text'].apply(lambda x: remove_punct(x))\n",
+ "\n",
+ " \n",
+ " #creating the preprocess directory\n",
+ " os.makedirs(preprocess_data_path, exist_ok = True)\n",
+ " \n",
+ " with open(f'{preprocess_data_path}/df', 'wb') as f:\n",
+ " pickle.dump((ntrain, df, tweet_df), f)\n",
+ " return(print('Done!'))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "preprocess_data_step = kfp.components.create_component_from_func(preprocess_data, packages_to_install=['pandas', 'regex', 'pickle5'], output_component_file='preprocess_data_component.yaml')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def corpus_creation(preprocess_data_path: comp.InputPath(str), corpus_path: comp.OutputPath(str)):\n",
+ " import os, pickle\n",
+ " import pandas as pd\n",
+ " import nltk\n",
+ " nltk.download('stopwords')\n",
+ " nltk.download('punkt')\n",
+ " from nltk.corpus import stopwords\n",
+ " from nltk.util import ngrams\n",
+ " from nltk.tokenize import word_tokenize\n",
+ " stop=set(stopwords.words('english'))\n",
+ " from tqdm import tqdm\n",
+ " \n",
+ " with open(f'{preprocess_data_path}/df', 'rb') as f:\n",
+ " ntrain, df, tweet_df = pickle.load(f)\n",
+ " \n",
+ " def create_corpus(df):\n",
+ " corpus=[]\n",
+ " for tweet in tqdm(df['text']):\n",
+ " words=[word.lower() for word in word_tokenize(tweet) if((word.isalpha()==1) & (word not in stop))]\n",
+ " corpus.append(words)\n",
+ " return corpus\n",
+ " \n",
+ " #creating the preprocess directory\n",
+ " os.makedirs(corpus_path, exist_ok = True)\n",
+ " \n",
+ " corpus=create_corpus(df)\n",
+ " with open(f'{corpus_path}/corpus', 'wb') as f:\n",
+ " pickle.dump((corpus,tweet_df), f)\n",
+ " return(print('Done!'))\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "corpus_creation_step = kfp.components.create_component_from_func(corpus_creation, packages_to_install=['pandas', 'pickle5', 'nltk','tqdm'], output_component_file='corpus_creation_component.yaml')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def embedding_step(download_link_glove: str,corpus_path: comp.InputPath(str), embedded_path: comp.OutputPath(str)):\n",
+ " \n",
+ " import os, pickle\n",
+ " import pandas as pd\n",
+ " import zipfile\n",
+ " import wget\n",
+ " import os\n",
+ " from keras.preprocessing.text import Tokenizer\n",
+ " from keras.utils import pad_sequences\n",
+ " import numpy as np\n",
+ " from tqdm import tqdm\n",
+ " \n",
+ " with open(f'{corpus_path}/corpus', 'rb') as f:\n",
+ " corpus, tweet_df = pickle.load(f)\n",
+ " \n",
+ " if not os.path.exists(embedded_path):\n",
+ " os.makedirs(embedded_path)\n",
+ " # download files\n",
+ " wget.download(download_link_glove, f'{embedded_path}/glove.6B.zip')\n",
+ " \n",
+ " with zipfile.ZipFile(f'{embedded_path}/glove.6B.zip', 'r') as zip_ref:\n",
+ " zip_ref.extractall(embedded_path)\n",
+ " \n",
+ " embedding_dict={}\n",
+ " \"\"\"path_to_glove_file = os.path.join(\n",
+ " os.path.expanduser(\"~\"), f\"{embedded_path}/glove.6B.100d.txt\"\n",
+ " )\"\"\"\n",
+ " with open(f\"{embedded_path}/glove.6B.100d.txt\",'r') as f:\n",
+ " for line in f:\n",
+ " values=line.split()\n",
+ " word=values[0]\n",
+ " vectors=np.asarray(values[1:],'float32')\n",
+ " embedding_dict[word]=vectors\n",
+ " f.close()\n",
+ " \n",
+ " MAX_LEN=50\n",
+ " tokenizer_obj=Tokenizer()\n",
+ " tokenizer_obj.fit_on_texts(corpus)\n",
+ " sequences=tokenizer_obj.texts_to_sequences(corpus)\n",
+ " \n",
+ " tweet_pad=pad_sequences(sequences,maxlen=MAX_LEN,truncating='post',padding='post')\n",
+ " word_index=tokenizer_obj.word_index\n",
+ " num_words=len(word_index)+1\n",
+ " embedding_matrix=np.zeros((num_words,100))\n",
+ "\n",
+ " for word,i in tqdm(word_index.items()):\n",
+ " if i > num_words:\n",
+ " continue\n",
+ "\n",
+ " emb_vec=embedding_dict.get(word)\n",
+ " if emb_vec is not None:\n",
+ " embedding_matrix[i]=emb_vec\n",
+ " \n",
+ " with open(f'{embedded_path}/embedding', 'wb') as f:\n",
+ " pickle.dump((embedding_matrix, num_words, tweet_pad, tweet_df, MAX_LEN), f)\n",
+ " return(print('Done!'))\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "embedding_creation_step = kfp.components.create_component_from_func(embedding_step, packages_to_install=['pandas', 'zipfile36', 'wget','tqdm','keras','numpy','tensorflow', 'pickle5'], output_component_file='embedding_component.yaml')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def model_building_and_training(embedded_path: comp.InputPath(str), model_path: comp.OutputPath(str)):\n",
+ " \n",
+ " import os, pickle;\n",
+ " import pandas as pd\n",
+ " import numpy as np\n",
+ " from keras.models import Sequential\n",
+ " from keras.layers import Embedding,LSTM,Dense,SpatialDropout1D\n",
+ " from keras.initializers import Constant\n",
+ " from sklearn.model_selection import train_test_split\n",
+ " from tensorflow.keras.optimizers import Adam\n",
+ " \n",
+ " with open(f'{embedded_path}/embedding', 'rb') as f:\n",
+ " embedding_matrix, num_words, tweet_pad, tweet_df, MAX_LEN = pickle.load(f)\n",
+ " \n",
+ " train=tweet_pad[:tweet_df.shape[0]]\n",
+ " final_test=tweet_pad[tweet_df.shape[0]:]\n",
+ " X_train,X_test,y_train,y_test=train_test_split(train,tweet_df['target'].values,test_size=0.15)\n",
+ " \n",
+ " #defining model\n",
+ " model=Sequential()\n",
+ "\n",
+ " embedding=Embedding(num_words,100,embeddings_initializer=Constant(embedding_matrix),\n",
+ " input_length=MAX_LEN,trainable=False)\n",
+ "\n",
+ " model.add(embedding)\n",
+ " model.add(SpatialDropout1D(0.2))\n",
+ " model.add(LSTM(64, dropout=0.2, recurrent_dropout=0.2))\n",
+ " model.add(Dense(1, activation='sigmoid'))\n",
+ "\n",
+ "\n",
+ " optimzer=Adam(learning_rate=1e-5)\n",
+ " \n",
+ " #Compiling the classifier model with Adam optimizer\n",
+ " model.compile(loss='binary_crossentropy',optimizer=optimzer,metrics=['accuracy'])\n",
+ " \n",
+ " #fitting the model\n",
+ " history=model.fit(X_train,y_train,batch_size=4,epochs=5,validation_data=(X_test,y_test),verbose=2)\n",
+ "\n",
+ " #evaluate model\n",
+ " test_loss, test_acc = model.evaluate(np.array(X_test), np.array(y_test), verbose=0)\n",
+ " print(\"Test_loss: {}, Test_accuracy: {} \".format(test_loss,test_acc))\n",
+ " \n",
+ " #creating the preprocess directory\n",
+ " os.makedirs(model_path, exist_ok = True)\n",
+ " \n",
+ " #saving the model\n",
+ " model.save(f'{model_path}/model.h5')\n",
+ " \n",
+ " #dumping other values\n",
+ " with open(f'{model_path}/values', 'wb') as f:\n",
+ " pickle.dump((test_loss, test_acc), f)\n",
+ " return(print('Done!'))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model_building_step = kfp.components.create_component_from_func(model_building_and_training, packages_to_install=['pandas', 'zipfile36', 'wget','tqdm','keras','numpy','tensorflow','sklearn','pickle5'], output_component_file='model_creation_component.yaml')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "@dsl.pipeline(\n",
+ " name='Trial pipeline',\n",
+ " description='An example pipeline that performs pd formation and plotting class distibution.'\n",
+ ")\n",
+ "def trial_pipeline(\n",
+ " download_link: str,\n",
+ " data_path: str,\n",
+ " load_data_path: str, \n",
+ " preprocess_data_path: str,\n",
+ " corpus_path:str,\n",
+ " download_link_glove:str,\n",
+ " model_path:str,\n",
+ "):\n",
+ " download_container = download_op(download_link)\n",
+ " output1 = load_data_step(download_container.output)\n",
+ " output2 = preprocess_data_step(output1.output)\n",
+ " output3 = corpus_creation_step(output2.output)\n",
+ " output4 = embedding_creation_step(download_link_glove, output3.output)\n",
+ " output5 = model_building_step(output4.output)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# replace download_link with the repo link where the data is stored https:github-repo/data-dir/{file}.csv.zip?raw=true\n",
+ "download_link = 'https://github.com/AnkitRai-22/natural-language-processing-with-disaster-tweets-kaggle-competition/blob/main/data/{file}.csv.zip?raw=true'\n",
+ "data_path = \"/mnt\"\n",
+ "load_data_path = \"load\"\n",
+ "preprocess_data_path = \"preprocess\"\n",
+ "corpus_path = \"corpus\",\n",
+ "download_link_glove = \"http://nlp.stanford.edu/data/glove.6B.zip\"\n",
+ "model_path = \"model\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "Experiment details ."
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ "Run details ."
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/plain": [
+ "RunPipelineResult(run_id=ba2fe0ed-6351-4b8c-bd7b-649fea61a5d9)"
+ ]
+ },
+ "execution_count": 24,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "client = kfp.Client()\n",
+ "arguments = {\"download_link\": download_link,\n",
+ " \"data_path\": data_path,\n",
+ " \"load_data_path\": load_data_path,\n",
+ " \"preprocess_data_path\": preprocess_data_path,\n",
+ " \"corpus_path\":corpus_path,\n",
+ " \"download_link_glove\":download_link_glove,\n",
+ " \"model_path\":model_path,\n",
+ " }\n",
+ "client.create_run_from_pipeline_func(trial_pipeline, arguments=arguments)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "kubeflow_notebook": {
+ "autosnapshot": true,
+ "docker_image": "gcr.io/arrikto/jupyter-kale-py36@sha256:dd3f92ca66b46d247e4b9b6a9d84ffbb368646263c2e3909473c3b851f3fe198",
+ "experiment": {
+ "id": "",
+ "name": ""
+ },
+ "experiment_name": "",
+ "katib_metadata": {
+ "algorithm": {
+ "algorithmName": "grid"
+ },
+ "maxFailedTrialCount": 3,
+ "maxTrialCount": 12,
+ "objective": {
+ "objectiveMetricName": "",
+ "type": "minimize"
+ },
+ "parallelTrialCount": 3,
+ "parameters": []
+ },
+ "katib_run": false,
+ "pipeline_description": "",
+ "pipeline_name": "",
+ "snapshot_volumes": true,
+ "steps_defaults": [
+ "label:access-ml-pipeline:true",
+ "label:access-rok:true"
+ ],
+ "volume_access_mode": "rwm",
+ "volumes": [
+ {
+ "annotations": [],
+ "mount_point": "/home/jovyan",
+ "name": "nlp-getting-started-vanilla-final-workspace-wwnkd",
+ "size": 14,
+ "size_type": "Gi",
+ "snapshot": false,
+ "type": "clone"
+ }
+ ]
+ },
+ "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.6.9"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-orig.ipynb b/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-orig.ipynb
new file mode 100644
index 00000000..b22e5769
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/natural-language-processing-with-disaster-tweets-orig.ipynb
@@ -0,0 +1 @@
+{"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.8.0"}},"nbformat_minor":4,"nbformat":4,"cells":[{"cell_type":"markdown","source":"### Basic Intro \n\nIn this competition, you’re challenged to build a machine learning model that predicts which Tweets are about real disasters and which one’s aren’t.\n\n","metadata":{}},{"cell_type":"markdown","source":"## What's in this kernel?\n- Basic EDA\n- Data Cleaning\n- Baseline Model","metadata":{}},{"cell_type":"markdown","source":"### Importing required Libraries.","metadata":{}},{"cell_type":"code","source":"import pandas as pd\nimport matplotlib.pyplot as plt\nimport seaborn as sns\nimport numpy as np\nfrom nltk.corpus import stopwords\nfrom nltk.util import ngrams\nfrom sklearn.feature_extraction.text import CountVectorizer\nfrom collections import defaultdict\nfrom collections import Counter\nplt.style.use('ggplot')\nstop=set(stopwords.words('english'))\nimport re\nfrom nltk.tokenize import word_tokenize\nimport gensim\nimport string\nfrom keras.preprocessing.text import Tokenizer\nfrom keras.preprocessing.sequence import pad_sequences\nfrom tqdm import tqdm\nfrom keras.models import Sequential\nfrom keras.layers import Embedding,LSTM,Dense,SpatialDropout1D\nfrom keras.initializers import Constant\nfrom sklearn.model_selection import train_test_split\nfrom keras.optimizers import Adam\n\n","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"import os\n#os.listdir('../input/glove-global-vectors-for-word-representation/glove.6B.100d.txt')","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"## Loading the data and getting basic idea ","metadata":{}},{"cell_type":"code","source":"tweet= pd.read_csv('../input/nlp-getting-started/train.csv')\ntest=pd.read_csv('../input/nlp-getting-started/test.csv')\ntweet.head(3)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"print('There are {} rows and {} columns in train'.format(tweet.shape[0],tweet.shape[1]))\nprint('There are {} rows and {} columns in train'.format(test.shape[0],test.shape[1]))","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"## Class distribution","metadata":{}},{"cell_type":"markdown","source":"Before we begin with anything else,let's check the class distribution.There are only two classes 0 and 1.","metadata":{}},{"cell_type":"code","source":"x=tweet.target.value_counts()\nsns.barplot(x.index,x)\nplt.gca().set_ylabel('samples')","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"ohh,as expected ! There is a class distribution.There are more tweets with class 0 ( No disaster) than class 1 ( disaster tweets)","metadata":{}},{"cell_type":"markdown","source":"## Exploratory Data Analysis of tweets","metadata":{}},{"cell_type":"markdown","source":"First,we will do very basic analysis,that is character level,word level and sentence level analysis.","metadata":{}},{"cell_type":"markdown","source":"### Number of characters in tweets","metadata":{}},{"cell_type":"code","source":"fig,(ax1,ax2)=plt.subplots(1,2,figsize=(10,5))\ntweet_len=tweet[tweet['target']==1]['text'].str.len()\nax1.hist(tweet_len,color='red')\nax1.set_title('disaster tweets')\ntweet_len=tweet[tweet['target']==0]['text'].str.len()\nax2.hist(tweet_len,color='green')\nax2.set_title('Not disaster tweets')\nfig.suptitle('Characters in tweets')\nplt.show()\n","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"The distribution of both seems to be almost same.120 t0 140 characters in a tweet are the most common among both.","metadata":{}},{"cell_type":"markdown","source":"### Number of words in a tweet","metadata":{}},{"cell_type":"code","source":"fig,(ax1,ax2)=plt.subplots(1,2,figsize=(10,5))\ntweet_len=tweet[tweet['target']==1]['text'].str.split().map(lambda x: len(x))\nax1.hist(tweet_len,color='red')\nax1.set_title('disaster tweets')\ntweet_len=tweet[tweet['target']==0]['text'].str.split().map(lambda x: len(x))\nax2.hist(tweet_len,color='green')\nax2.set_title('Not disaster tweets')\nfig.suptitle('Words in a tweet')\nplt.show()\n","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Average word length in a tweet","metadata":{}},{"cell_type":"code","source":"fig,(ax1,ax2)=plt.subplots(1,2,figsize=(10,5))\nword=tweet[tweet['target']==1]['text'].str.split().apply(lambda x : [len(i) for i in x])\nsns.distplot(word.map(lambda x: np.mean(x)),ax=ax1,color='red')\nax1.set_title('disaster')\nword=tweet[tweet['target']==0]['text'].str.split().apply(lambda x : [len(i) for i in x])\nsns.distplot(word.map(lambda x: np.mean(x)),ax=ax2,color='green')\nax2.set_title('Not disaster')\nfig.suptitle('Average word length in each tweet')","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"def create_corpus(target):\n corpus=[]\n \n for x in tweet[tweet['target']==target]['text'].str.split():\n for i in x:\n corpus.append(i)\n return corpus","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Common stopwords in tweets","metadata":{}},{"cell_type":"markdown","source":"First we will analyze tweets with class 0.","metadata":{}},{"cell_type":"code","source":"corpus=create_corpus(0)\n\ndic=defaultdict(int)\nfor word in corpus:\n if word in stop:\n dic[word]+=1\n \ntop=sorted(dic.items(), key=lambda x:x[1],reverse=True)[:10] \n","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"x,y=zip(*top)\nplt.bar(x,y)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"Now,we will analyze tweets with class 1.","metadata":{}},{"cell_type":"code","source":"corpus=create_corpus(1)\n\ndic=defaultdict(int)\nfor word in corpus:\n if word in stop:\n dic[word]+=1\n\ntop=sorted(dic.items(), key=lambda x:x[1],reverse=True)[:10] \n \n\n\nx,y=zip(*top)\nplt.bar(x,y)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"In both of them,\"the\" dominates which is followed by \"a\" in class 0 and \"in\" in class 1.","metadata":{}},{"cell_type":"markdown","source":"### Analyzing punctuations.","metadata":{}},{"cell_type":"markdown","source":"First let's check tweets indicating real disaster.","metadata":{}},{"cell_type":"code","source":"plt.figure(figsize=(10,5))\ncorpus=create_corpus(1)\n\ndic=defaultdict(int)\nimport string\nspecial = string.punctuation\nfor i in (corpus):\n if i in special:\n dic[i]+=1\n \nx,y=zip(*dic.items())\nplt.bar(x,y)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"Now,we will move on to class 0.","metadata":{}},{"cell_type":"code","source":"plt.figure(figsize=(10,5))\ncorpus=create_corpus(0)\n\ndic=defaultdict(int)\nimport string\nspecial = string.punctuation\nfor i in (corpus):\n if i in special:\n dic[i]+=1\n \nx,y=zip(*dic.items())\nplt.bar(x,y,color='green')","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Common words ?","metadata":{}},{"cell_type":"code","source":"\ncounter=Counter(corpus)\nmost=counter.most_common()\nx=[]\ny=[]\nfor word,count in most[:40]:\n if (word not in stop) :\n x.append(word)\n y.append(count)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"sns.barplot(x=y,y=x)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"Lot of cleaning needed !","metadata":{}},{"cell_type":"markdown","source":"### Ngram analysis","metadata":{}},{"cell_type":"markdown","source":"we will do a bigram (n=2) analysis over the tweets.Let's check the most common bigrams in tweets.","metadata":{}},{"cell_type":"code","source":"def get_top_tweet_bigrams(corpus, n=None):\n vec = CountVectorizer(ngram_range=(2, 2)).fit(corpus)\n bag_of_words = vec.transform(corpus)\n sum_words = bag_of_words.sum(axis=0) \n words_freq = [(word, sum_words[0, idx]) for word, idx in vec.vocabulary_.items()]\n words_freq =sorted(words_freq, key = lambda x: x[1], reverse=True)\n return words_freq[:n]","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"plt.figure(figsize=(10,5))\ntop_tweet_bigrams=get_top_tweet_bigrams(tweet['text'])[:10]\nx,y=map(list,zip(*top_tweet_bigrams))\nsns.barplot(x=y,y=x)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"We will need lot of cleaning here..","metadata":{}},{"cell_type":"markdown","source":"## Data Cleaning\nAs we know,twitter tweets always have to be cleaned before we go onto modelling.So we will do some basic cleaning such as spelling correction,removing punctuations,removing html tags and emojis etc.So let's start.","metadata":{}},{"cell_type":"code","source":"df=pd.concat([tweet,test])\ndf.shape","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Removing urls","metadata":{}},{"cell_type":"code","source":"example=\"New competition launched :https://www.kaggle.com/c/nlp-getting-started\"","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"def remove_URL(text):\n url = re.compile(r'https?://\\S+|www\\.\\S+')\n return url.sub(r'',text)\n\nremove_URL(example)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"df['text']=df['text'].apply(lambda x : remove_URL(x))","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Removing HTML tags","metadata":{}},{"cell_type":"code","source":"example = \"\"\"\"\"\"","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"def remove_html(text):\n html=re.compile(r'<.*?>')\n return html.sub(r'',text)\nprint(remove_html(example))","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"df['text']=df['text'].apply(lambda x : remove_html(x))","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Romoving Emojis","metadata":{}},{"cell_type":"code","source":"# Reference : https://gist.github.com/slowkow/7a7f61f495e3dbb7e3d767f97bd7304b\ndef remove_emoji(text):\n emoji_pattern = re.compile(\"[\"\n u\"\\U0001F600-\\U0001F64F\" # emoticons\n u\"\\U0001F300-\\U0001F5FF\" # symbols & pictographs\n u\"\\U0001F680-\\U0001F6FF\" # transport & map symbols\n u\"\\U0001F1E0-\\U0001F1FF\" # flags (iOS)\n u\"\\U00002702-\\U000027B0\"\n u\"\\U000024C2-\\U0001F251\"\n \"]+\", flags=re.UNICODE)\n return emoji_pattern.sub(r'', text)\n\nremove_emoji(\"Omg another Earthquake 😔😔\")","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"df['text']=df['text'].apply(lambda x: remove_emoji(x))\n","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Removing punctuations","metadata":{}},{"cell_type":"code","source":"def remove_punct(text):\n table=str.maketrans('','',string.punctuation)\n return text.translate(table)\n\nexample=\"I am a #king\"\nprint(remove_punct(example))","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"df['text']=df['text'].apply(lambda x : remove_punct(x))","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"### Spelling Correction\n","metadata":{}},{"cell_type":"markdown","source":"Even if I'm not good at spelling I can correct it with python :) I will use `pyspellcheker` to do that.","metadata":{}},{"cell_type":"code","source":"!pip install pyspellchecker","metadata":{"_kg_hide-output":true,"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"from spellchecker import SpellChecker\n\nspell = SpellChecker()\ndef correct_spellings(text):\n corrected_text = []\n misspelled_words = spell.unknown(text.split())\n for word in text.split():\n if word in misspelled_words:\n corrected_text.append(spell.correction(word))\n else:\n corrected_text.append(word)\n return \" \".join(corrected_text)\n \ntext = \"corect me plese\"\ncorrect_spellings(text)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"#df['text']=df['text'].apply(lambda x : correct_spellings(x)#)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"## GloVe for Vectorization","metadata":{}},{"cell_type":"markdown","source":"Here we will use GloVe pretrained corpus model to represent our words.It is available in 3 varieties :50D ,100D and 200 Dimentional.We will try 100 D here.","metadata":{}},{"cell_type":"code","source":"\ndef create_corpus(df):\n corpus=[]\n for tweet in tqdm(df['text']):\n words=[word.lower() for word in word_tokenize(tweet) if((word.isalpha()==1) & (word not in stop))]\n corpus.append(words)\n return corpus\n \n ","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"corpus=create_corpus(df)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"embedding_dict={}\nwith open('../input/glove-global-vectors-for-word-representation/glove.6B.100d.txt','r') as f:\n for line in f:\n values=line.split()\n word=values[0]\n vectors=np.asarray(values[1:],'float32')\n embedding_dict[word]=vectors\nf.close()","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"MAX_LEN=50\ntokenizer_obj=Tokenizer()\ntokenizer_obj.fit_on_texts(corpus)\nsequences=tokenizer_obj.texts_to_sequences(corpus)\n\ntweet_pad=pad_sequences(sequences,maxlen=MAX_LEN,truncating='post',padding='post')","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"word_index=tokenizer_obj.word_index\nprint('Number of unique words:',len(word_index))","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"num_words=len(word_index)+1\nembedding_matrix=np.zeros((num_words,100))\n\nfor word,i in tqdm(word_index.items()):\n if i > num_words:\n continue\n \n emb_vec=embedding_dict.get(word)\n if emb_vec is not None:\n embedding_matrix[i]=emb_vec\n ","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"## Baseline Model","metadata":{}},{"cell_type":"code","source":"model=Sequential()\n\nembedding=Embedding(num_words,100,embeddings_initializer=Constant(embedding_matrix),\n input_length=MAX_LEN,trainable=False)\n\nmodel.add(embedding)\nmodel.add(SpatialDropout1D(0.2))\nmodel.add(LSTM(64, dropout=0.2, recurrent_dropout=0.2))\nmodel.add(Dense(1, activation='sigmoid'))\n\n\noptimzer=Adam(learning_rate=1e-5)\n\nmodel.compile(loss='binary_crossentropy',optimizer=optimzer,metrics=['accuracy'])\n\n","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"model.summary()","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"train=tweet_pad[:tweet.shape[0]]\ntest=tweet_pad[tweet.shape[0]:]","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"X_train,X_test,y_train,y_test=train_test_split(train,tweet['target'].values,test_size=0.15)\nprint('Shape of train',X_train.shape)\nprint(\"Shape of Validation \",X_test.shape)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"history=model.fit(X_train,y_train,batch_size=4,epochs=15,validation_data=(X_test,y_test),verbose=2)","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":"## Making our submission","metadata":{}},{"cell_type":"code","source":"sample_sub=pd.read_csv('../input/nlp-getting-started/sample_submission.csv')","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"y_pre=model.predict(test)\ny_pre=np.round(y_pre).astype(int).reshape(3263)\nsub=pd.DataFrame({'id':sample_sub['id'].values.tolist(),'target':y_pre})\nsub.to_csv('submission.csv',index=False)\n","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"code","source":"sub.head()","metadata":{"trusted":true},"execution_count":null,"outputs":[]},{"cell_type":"markdown","source":" if you like this kernel,please do an upvote. ","metadata":{"trusted":true}},{"cell_type":"code","source":"","metadata":{"trusted":true},"execution_count":null,"outputs":[]}]}
\ No newline at end of file
diff --git a/natural-language-processing-with-disaster-tweets-kaggle-competition/requirements.txt b/natural-language-processing-with-disaster-tweets-kaggle-competition/requirements.txt
new file mode 100644
index 00000000..e172b5c2
--- /dev/null
+++ b/natural-language-processing-with-disaster-tweets-kaggle-competition/requirements.txt
@@ -0,0 +1,10 @@
+seaborn
+nltk
+sklearn
+collection
+gensim
+keras
+tensorflow
+pyspellchecker
+wget
+zipfile36