Datasets:
File size: 252,954 Bytes
ae914c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 | index,sentence,tokens,answer
0,De la noche a la mañana,"['De', 'la', 'noche', 'a', 'la', 'mañana']","['O', 'O', 'O', 'O', 'O', 'O']"
1,"Yo muriéndome de estrés por sicología y Nadjarie : Chilea Nati , todo va a estar bien .. Como ella puede con esa tranquilidad","['Yo', 'muriéndome', 'de', 'estrés', 'por', 'sicología', 'y', 'Nadjarie', ':', 'Chilea', 'Nati', ',', 'todo', 'va', 'a', 'estar', 'bien', '..', 'Como', 'ella', 'puede', 'con', 'esa', 'tranquilidad']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
2,RT @_CollegeHumor_ : Whoever said high school is the best 4 years of your life lied bc college is definitely about 200x better,"['RT', '@_CollegeHumor_', ':', 'Whoever', 'said', 'high', 'school', 'is', 'the', 'best', '4', 'years', 'of', 'your', 'life', 'lied', 'bc', 'college', 'is', 'definitely', 'about', '200x', 'better']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
3,"We 're so happy even when we 're smiling out of fear , lets go down to the tennis court and talk it out 🎶🎶","['We', ""'re"", 'so', 'happy', 'even', 'when', 'we', ""'re"", 'smiling', 'out', 'of', 'fear', ',', 'lets', 'go', 'down', 'to', 'the', 'tennis', 'court', 'and', 'talk', 'it', 'out', '🎶🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
4,RT @jvnpe : Cant get the taste of you out of my tongue,"['RT', '@jvnpe', ':', 'Cant', 'get', 'the', 'taste', 'of', 'you', 'out', 'of', 'my', 'tongue']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
5,Now my life is sweet like cinnamon,"['Now', 'my', 'life', 'is', 'sweet', 'like', 'cinnamon']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
6,Canela se come hasta un esquimalito 😂,"['Canela', 'se', 'come', 'hasta', 'un', 'esquimalito', '😂']","['B-PER', 'O', 'O', 'O', 'O', 'B-PROD', 'O']"
7,Que aburrida estoyyyyyyyyy !! !! !! !!,"['Que', 'aburrida', 'estoyyyyyyyyy', '!!', '!!', '!!', '!!']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
8,RT @athvna : The neighborhood https://t.co/xxJCYu8h8i,"['RT', '@athvna', ':', 'The', 'neighborhood', 'https://t.co/xxJCYu8h8i']","['O', 'O', 'O', 'O', 'O', 'O']"
9,RT @etrenche : No confio en tw y sus videos alrededor de mi familia,"['RT', '@etrenche', ':', 'No', 'confio', 'en', 'tw', 'y', 'sus', 'videos', 'alrededor', 'de', 'mi', 'familia']","['O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
10,RT @HorrorNightsORL : #HHN25 will feature MORE NIGHTS than ever – a record-breaking 30 nights from Sept 18-Nov . 1 . http://t.co/vcXzNVzJwU,"['RT', '@HorrorNightsORL', ':', '#HHN25', 'will', 'feature', 'MORE', 'NIGHTS', 'than', 'ever', '–', 'a', 'record-breaking', '30', 'nights', 'from', 'Sept', '18-Nov', '.', '1', '.', 'http://t.co/vcXzNVzJwU']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
11,Hace 14 años fue el día más feliz de mi vida . Ya el bebé de casa está … https://t.co/QM6nQJ9rP8,"['Hace', '14', 'años', 'fue', 'el', 'día', 'más', 'feliz', 'de', 'mi', 'vida', '.', 'Ya', 'el', 'bebé', 'de', 'casa', 'está', '…', 'https://t.co/QM6nQJ9rP8']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
12,#domirrique ños #Movie Trabaja duro para que el fruto se vea .. . CONGRATS @moluskein https://t.co/sgn4Ygwyvg,"['#domirrique', 'ños', '#Movie', 'Trabaja', 'duro', 'para', 'que', 'el', 'fruto', 'se', 'vea', '..', '.', 'CONGRATS', '@moluskein', 'https://t.co/sgn4Ygwyvg']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
13,Y seguimos esperando,"['Y', 'seguimos', 'esperando']","['O', 'O', 'O']"
14,Tengo un hambre bellaquísimo .,"['Tengo', 'un', 'hambre', 'bellaquísimo', '.']","['O', 'O', 'O', 'O', 'O']"
15,ASI o MAS Claro . #respeto #honor #trabajo #teamwork #apoyen #noseancodos #noseantaca ños http://t.co/ZFw504Encf,"['ASI', 'o', 'MAS', 'Claro', '.', '#respeto', '#honor', '#trabajo', '#teamwork', '#apoyen', '#noseancodos', '#noseantaca', 'ños', 'http://t.co/ZFw504Encf']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
16,"RT @pame_555 : @AngieEstilo Feliz Inicio de semana , disfruta del Lunes . No te compliques , disfruta . No te quejes , aprende . No te enojes , .. .","['RT', '@pame_555', ':', '@AngieEstilo', 'Feliz', 'Inicio', 'de', 'semana', ',', 'disfruta', 'del', 'Lunes', '.', 'No', 'te', 'compliques', ',', 'disfruta', '.', 'No', 'te', 'quejes', ',', 'aprende', '.', 'No', 'te', 'enojes', ',', '..', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
17,RT @vyctordelrey : daddy in pink https://t.co/IzdM13xGa7,"['RT', '@vyctordelrey', ':', 'daddy', 'in', 'pink', 'https://t.co/IzdM13xGa7']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
18,"RT @DanielWestpr : @natashairoman Si porque el atletico gano super justo ayer , jugando super buen futbol * noten sarcasmo *","['RT', '@DanielWestpr', ':', '@natashairoman', 'Si', 'porque', 'el', 'atletico', 'gano', 'super', 'justo', 'ayer', ',', 'jugando', 'super', 'buen', 'futbol', '*', 'noten', 'sarcasmo', '*']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
19,@vmartinez_reyes JAJAJAJAJAJAJAJA la yegua 😂😂😂,"['@vmartinez_reyes', 'JAJAJAJAJAJAJAJA', 'la', 'yegua', '😂😂😂']","['O', 'O', 'O', 'O', 'O']"
20,RT @llanera_sheila : Aprendí a crecer y ver las cosas como son . https://t.co/1HuIirUt56,"['RT', '@llanera_sheila', ':', 'Aprendí', 'a', 'crecer', 'y', 'ver', 'las', 'cosas', 'como', 'son', '.', 'https://t.co/1HuIirUt56']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
21,"@prado_yamil yo cogí Cibi con una profe super sweet que da bonos cc y es super chilin , se llama Norma Cruz","['@prado_yamil', 'yo', 'cogí', 'Cibi', 'con', 'una', 'profe', 'super', 'sweet', 'que', 'da', 'bonos', 'cc', 'y', 'es', 'super', 'chilin', ',', 'se', 'llama', 'Norma', 'Cruz']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'I-PER']"
22,RT @nicomarie96 : Basically . https://t.co/IJ4NvwaaiZ,"['RT', '@nicomarie96', ':', 'Basically', '.', 'https://t.co/IJ4NvwaaiZ']","['O', 'O', 'O', 'O', 'O', 'O']"
23,RT @asvl12 : https://t.co/UZFZF4T27A,"['RT', '@asvl12', ':', 'https://t.co/UZFZF4T27A']","['O', 'O', 'O', 'O']"
24,THANKS MY LOVE .. . HAPPY DAY MUAH . — Good morning . Rise and grind . @teamlagatita http://t.co/MuIoQsv7jo,"['THANKS', 'MY', 'LOVE', '..', '.', 'HAPPY', 'DAY', 'MUAH', '.', '—', 'Good', 'morning', '.', 'Rise', 'and', 'grind', '.', '@teamlagatita', 'http://t.co/MuIoQsv7jo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
25,RT @TIME : Photos : Fatal shootings and explosions rock Paris https://t.co/UAY2lTqXhX https://t.co/TqO19IgXGy,"['RT', '@TIME', ':', 'Photos', ':', 'Fatal', 'shootings', 'and', 'explosions', 'rock', 'Paris', 'https://t.co/UAY2lTqXhX', 'https://t.co/TqO19IgXGy']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O']"
26,"RT @cristinaa_fern : #ConversacionesDeMujeres +¿ Cómo estas vestida ? -Estoy bien fancy . +Ahora me tengo que cambiar cabrona , yo estoy bie …","['RT', '@cristinaa_fern', ':', '#ConversacionesDeMujeres', '+¿', 'Cómo', 'estas', 'vestida', '?', '-Estoy', 'bien', 'fancy', '.', '+Ahora', 'me', 'tengo', 'que', 'cambiar', 'cabrona', ',', 'yo', 'estoy', 'bie', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
27,RT @tayaranrusi : when u get your license suspended but u got a dog so its ok https://t.co/Qcw5XedMnK,"['RT', '@tayaranrusi', ':', 'when', 'u', 'get', 'your', 'license', 'suspended', 'but', 'u', 'got', 'a', 'dog', 'so', 'its', 'ok', 'https://t.co/Qcw5XedMnK']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
28,RT @cruzfran03 : El concert de De La Ghetto va a estar bien cabron,"['RT', '@cruzfran03', ':', 'El', 'concert', 'de', 'De', 'La', 'Ghetto', 'va', 'a', 'estar', 'bien', 'cabron']","['O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'I-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O']"
29,@_kidrichh Estoy bien y espero que tú también 😌,"['@_kidrichh', 'Estoy', 'bien', 'y', 'espero', 'que', 'tú', 'también', '😌']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
30,Yo todavia escucho las canciones viejas de JB y me motivo,"['Yo', 'todavia', 'escucho', 'las', 'canciones', 'viejas', 'de', 'JB', 'y', 'me', 'motivo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O']"
31,RT @HorrorNightsORL : Shot an announcement video inside our archive room today ! You 'll see it soon !,"['RT', '@HorrorNightsORL', ':', 'Shot', 'an', 'announcement', 'video', 'inside', 'our', 'archive', 'room', 'today', '!', 'You', ""'ll"", 'see', 'it', 'soon', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
32,RT @AmorSabio_ : Yo cuando estoy en la cocina . https://t.co/SfKXC1qVBW,"['RT', '@AmorSabio_', ':', 'Yo', 'cuando', 'estoy', 'en', 'la', 'cocina', '.', 'https://t.co/SfKXC1qVBW']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
33,#gspartylatino 5 de Diciembre https://t.co/Pv1dkvhq1K #elvacilondelagatita https://t.co/eag6gx3Mkn,"['#gspartylatino', '5', 'de', 'Diciembre', 'https://t.co/Pv1dkvhq1K', '#elvacilondelagatita', 'https://t.co/eag6gx3Mkn']","['O', 'B-TIME', 'I-TIME', 'I-TIME', 'O', 'O', 'O']"
34,Lo que yo tengo es un sueño tan cabrón https://t.co/zlspIslTdB,"['Lo', 'que', 'yo', 'tengo', 'es', 'un', 'sueño', 'tan', 'cabrón', 'https://t.co/zlspIslTdB']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
35,I dont want to hear it if its something that you dont mean 🎶,"['I', 'dont', 'want', 'to', 'hear', 'it', 'if', 'its', 'something', 'that', 'you', 'dont', 'mean', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
36,El que habla nunca sabe y el que sabe nunca habla .,"['El', 'que', 'habla', 'nunca', 'sabe', 'y', 'el', 'que', 'sabe', 'nunca', 'habla', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
37,RT @EatNutritious : The struggle is so real 😭 http://t.co/CgMoKQLwM6,"['RT', '@EatNutritious', ':', 'The', 'struggle', 'is', 'so', 'real', '😭', 'http://t.co/CgMoKQLwM6']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
38,@zapi_z jajaja ya mami me cocinó y eso 🙍🏽 pero pa la prox yo quieroooo,"['@zapi_z', 'jajaja', 'ya', 'mami', 'me', 'cocinó', 'y', 'eso', '🙍🏽', 'pero', 'pa', 'la', 'prox', 'yo', 'quieroooo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
39,Nunca habia estado tan cagada en mi vida,"['Nunca', 'habia', 'estado', 'tan', 'cagada', 'en', 'mi', 'vida']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
40,Jajaja ese video,"['Jajaja', 'ese', 'video']","['O', 'O', 'O']"
41,RT @vegetta777 : Espero que haya alguna solución @elcorteingles si no .. . Me pondré el disco alegría y me imaginaré las películas https://t.c …,"['RT', '@vegetta777', ':', 'Espero', 'que', 'haya', 'alguna', 'solución', '@elcorteingles', 'si', 'no', '..', '.', 'Me', 'pondré', 'el', 'disco', 'alegría', 'y', 'me', 'imaginaré', 'las', 'películas', 'https://t.c', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
42,@ashleylaughbox 😬😬😬,"['@ashleylaughbox', '😬😬😬']","['O', 'O']"
43,RT @alisha_amber : Quiero bebeeeeL .,"['RT', '@alisha_amber', ':', 'Quiero', 'bebeeeeL', '.']","['O', 'O', 'O', 'O', 'O', 'O']"
44,Edwin dice mide 5'11 y aqui esta parándose en puntitos para llegar una pulgada más . .. Lol https://t.co/FxfGKU2SOI,"['Edwin', 'dice', 'mide', ""5'11"", 'y', 'aqui', 'esta', 'parándose', 'en', 'puntitos', 'para', 'llegar', 'una', 'pulgada', 'más', '.', '..', 'Lol', 'https://t.co/FxfGKU2SOI']","['B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
45,RT @lauracarreras93 : I can n't wait to have my own place .,"['RT', '@lauracarreras93', ':', 'I', 'can', ""n't"", 'wait', 'to', 'have', 'my', 'own', 'place', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
46,Yo creo que jamas habia llorado tanto en un episodio,"['Yo', 'creo', 'que', 'jamas', 'habia', 'llorado', 'tanto', 'en', 'un', 'episodio']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
47,😔😔😔 https://t.co/TSc7ANe4Qj,"['😔😔😔', 'https://t.co/TSc7ANe4Qj']","['O', 'O']"
48,"Nice to nice know you , lets do it again 🎧","['Nice', 'to', 'nice', 'know', 'you', ',', 'lets', 'do', 'it', 'again', '🎧']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
49,@Homeboy_Jefe wtf ? You 're trying to travel ? Where u trying to go ..,"['@Homeboy_Jefe', 'wtf', '?', 'You', ""'re"", 'trying', 'to', 'travel', '?', 'Where', 'u', 'trying', 'to', 'go', '..']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
50,Verte se ha vuelto necesario .,"['Verte', 'se', 'ha', 'vuelto', 'necesario', '.']","['O', 'O', 'O', 'O', 'O', 'O']"
51,"Saaaach , en lo mismo de nuevo","['Saaaach', ',', 'en', 'lo', 'mismo', 'de', 'nuevo']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
52,"estaba trabajando y se fue la luz 7 veces , jurau","['estaba', 'trabajando', 'y', 'se', 'fue', 'la', 'luz', '7', 'veces', ',', 'jurau']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
53,#Repost cubalicious23 with repostapp . ・・・ Omg .. . que no haria ?? ?? 😉😉 Me pareció curioso .. .. Qué … https://t.co/W0dQZ2WJnV,"['#Repost', 'cubalicious23', 'with', 'repostapp', '.', '・・・', 'Omg', '..', '.', 'que', 'no', 'haria', '??', '??', '😉😉', 'Me', 'pareció', 'curioso', '..', '..', 'Qué', '…', 'https://t.co/W0dQZ2WJnV']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
54,@jose_luis_nunez imma run,"['@jose_luis_nunez', 'imma', 'run']","['O', 'O', 'O']"
55,RT @JordiWild : Número 1 de los 40 Criminales ya @Kronnomc,"['RT', '@JordiWild', ':', 'Número', '1', 'de', 'los', '40', 'Criminales', 'ya', '@Kronnomc']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
56,@teresa_perez7 bueno yo me acabo de enterar que hay examen de precalculo mañana y acabo de llegar a casa,"['@teresa_perez7', 'bueno', 'yo', 'me', 'acabo', 'de', 'enterar', 'que', 'hay', 'examen', 'de', 'precalculo', 'mañana', 'y', 'acabo', 'de', 'llegar', 'a', 'casa']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
57,@RickyHdzChele Ricky en tu foto te ves flaco . Please vamos a representar la realidad como es .,"['@RickyHdzChele', 'Ricky', 'en', 'tu', 'foto', 'te', 'ves', 'flaco', '.', 'Please', 'vamos', 'a', 'representar', 'la', 'realidad', 'como', 'es', '.']","['O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
58,RT @PresLovell : Maybe next time 😀 https://t.co/PVtuWYXHX0,"['RT', '@PresLovell', ':', 'Maybe', 'next', 'time', '😀', 'https://t.co/PVtuWYXHX0']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
59,El vlog de hoy : GENTE NO YOUTUBER https://t.co/uGdei4X7me,"['El', 'vlog', 'de', 'hoy', ':', 'GENTE', 'NO', 'YOUTUBER', 'https://t.co/uGdei4X7me']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
60,"Y sigo recorriendo tu piel , fumando y bebiendo rosé 🎶","['Y', 'sigo', 'recorriendo', 'tu', 'piel', ',', 'fumando', 'y', 'bebiendo', 'rosé', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
61,@fairy0821 de seguro están libres ! Gobierno al fin !,"['@fairy0821', 'de', 'seguro', 'están', 'libres', '!', 'Gobierno', 'al', 'fin', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
62,Odio ver noticias asi 😭,"['Odio', 'ver', 'noticias', 'asi', '😭']","['O', 'O', 'O', 'O', 'O']"
63,Que rico es quitarse los tacos,"['Que', 'rico', 'es', 'quitarse', 'los', 'tacos']","['O', 'O', 'O', 'O', 'O', 'O']"
64,@lily_ortiz9012 tu hermano esta gigante jajajaja,"['@lily_ortiz9012', 'tu', 'hermano', 'esta', 'gigante', 'jajajaja']","['O', 'O', 'O', 'O', 'O', 'O']"
65,¿ Vacaciones sin música ? Nah . Tráela JBL FLIP 3 Speaker a donde sea . Consiguelo aquí : https://t.co/5QherKvlrR https://t.co/Hu02Lk8jbB,"['¿', 'Vacaciones', 'sin', 'música', '?', 'Nah', '.', 'Tráela', 'JBL', 'FLIP', '3', 'Speaker', 'a', 'donde', 'sea', '.', 'Consiguelo', 'aquí', ':', 'https://t.co/5QherKvlrR', 'https://t.co/Hu02Lk8jbB']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
66,A adam levine le quedan tan cabrones los tatuajes 😻😻😻,"['A', 'adam', 'levine', 'le', 'quedan', 'tan', 'cabrones', 'los', 'tatuajes', '😻😻😻']","['O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
67,RT @rafrruko : Nati 🙌🙌🙌,"['RT', '@rafrruko', ':', 'Nati', '🙌🙌🙌']","['O', 'O', 'O', 'B-PER', 'O']"
68,RT @BobeOficial : Las super chapiadorasss 😂 http://t.co/wkdJsPQ39l,"['RT', '@BobeOficial', ':', 'Las', 'super', 'chapiadorasss', '😂', 'http://t.co/wkdJsPQ39l']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
69,Quiero una batida o helado,"['Quiero', 'una', 'batida', 'o', 'helado']","['O', 'O', 'O', 'O', 'O']"
70,""" Can we do this all night ? ""","['""', 'Can', 'we', 'do', 'this', 'all', 'night', '?', '""']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
71,"Count goles , not data . Watch #ElClasico live , without using your data on go90 . https://t.co/Au4uXYJCh3 https://t.co/NKf9XzBMh5","['Count', 'goles', ',', 'not', 'data', '.', 'Watch', '#ElClasico', 'live', ',', 'without', 'using', 'your', 'data', 'on', 'go90', '.', 'https://t.co/Au4uXYJCh3', 'https://t.co/NKf9XzBMh5']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
72,#Repost @winebarelcorte with repostapp . ・・・ Hoy ven a disfrutar del Grupo @chiang_music #WineBar 🍷 & … https://t.co/k9qGQOu81x,"['#Repost', '@winebarelcorte', 'with', 'repostapp', '.', '・・・', 'Hoy', 'ven', 'a', 'disfrutar', 'del', 'Grupo', '@chiang_music', '#WineBar', '🍷', '&', '…', 'https://t.co/k9qGQOu81x']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
73,@Flor_CDS02 yo quiero esa tazaaa !! !! :(,"['@Flor_CDS02', 'yo', 'quiero', 'esa', 'tazaaa', '!!', '!!', ':(']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
74,@nandogabriel26 Exactooo .,"['@nandogabriel26', 'Exactooo', '.']","['O', 'O', 'O']"
75,RT @LoriGarciia : Friends are meant to have different principles than you . It makes your friendship so much more complicated but so much mor …,"['RT', '@LoriGarciia', ':', 'Friends', 'are', 'meant', 'to', 'have', 'different', 'principles', 'than', 'you', '.', 'It', 'makes', 'your', 'friendship', 'so', 'much', 'more', 'complicated', 'but', 'so', 'much', 'mor', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
76,Ya temprano con los mejores deseos para Ti Familia .. .. .. Tu parte de 60 mil a las : 25 De cada … http://t.co/2pU8hUy4Pl,"['Ya', 'temprano', 'con', 'los', 'mejores', 'deseos', 'para', 'Ti', 'Familia', '..', '..', '..', 'Tu', 'parte', 'de', '60', 'mil', 'a', 'las', ':', '25', 'De', 'cada', '…', 'http://t.co/2pU8hUy4Pl']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
77,"@alimaccc02 Igual , mi amor . Textea .","['@alimaccc02', 'Igual', ',', 'mi', 'amor', '.', 'Textea', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
78,fue por primera vez al gym en como un mes https://t.co/xnUoCcq6GT,"['fue', 'por', 'primera', 'vez', 'al', 'gym', 'en', 'como', 'un', 'mes', 'https://t.co/xnUoCcq6GT']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
79,@Ms_Prisci JAJAJAJAJJA ey ey la que dijo rata fue ashley i just agreed,"['@Ms_Prisci', 'JAJAJAJAJJA', 'ey', 'ey', 'la', 'que', 'dijo', 'rata', 'fue', 'ashley', 'i', 'just', 'agreed']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O']"
80,@aogl13 ya sabes que día es ?? ?,"['@aogl13', 'ya', 'sabes', 'que', 'día', 'es', '??', '?']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
81,RT @KeshaRose : ❤ @zedd #truecolors spoke to me so deeply I had to spread the beautiful message of personal empowerment https://t.co/3yPuwWD …,"['RT', '@KeshaRose', ':', '❤', '@zedd', '#truecolors', 'spoke', 'to', 'me', 'so', 'deeply', 'I', 'had', 'to', 'spread', 'the', 'beautiful', 'message', 'of', 'personal', 'empowerment', 'https://t.co/3yPuwWD', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
82,RT @fernanrodrigg : Que rico es llegar a mi cama,"['RT', '@fernanrodrigg', ':', 'Que', 'rico', 'es', 'llegar', 'a', 'mi', 'cama']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
83,Eto 'o 😱,"['Eto', ""'o"", '😱']","['B-PER', 'I-PER', 'O']"
84,Mom to be : otra forma de decir Está en embarazo . She ’s a mom to be of a baby girl .,"['Mom', 'to', 'be', ':', 'otra', 'forma', 'de', 'decir', 'Está', 'en', 'embarazo', '.', 'She', '’s', 'a', 'mom', 'to', 'be', 'of', 'a', 'baby', 'girl', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
85,"@LincolnJCM We really do n't know how well we say things , it takes time to recognize a sound , can you find someone who can give you feedback ?","['@LincolnJCM', 'We', 'really', 'do', ""n't"", 'know', 'how', 'well', 'we', 'say', 'things', ',', 'it', 'takes', 'time', 'to', 'recognize', 'a', 'sound', ',', 'can', 'you', 'find', 'someone', 'who', 'can', 'give', 'you', 'feedback', '?']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
86,"RT @saocopapi : HAPPY BIRTHDAY a mi mejor amiga , mi partner in crime , mi hermana , te amo cc y no te cambio x nada best wishes Nattt 😘👯 http :/ …","['RT', '@saocopapi', ':', 'HAPPY', 'BIRTHDAY', 'a', 'mi', 'mejor', 'amiga', ',', 'mi', 'partner', 'in', 'crime', ',', 'mi', 'hermana', ',', 'te', 'amo', 'cc', 'y', 'no', 'te', 'cambio', 'x', 'nada', 'best', 'wishes', 'Nattt', '😘👯', 'http', ':/', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O']"
87,@SebaLoSabe btw ya no es messenger esto aqui ( 8 ) jjaja ya hay 🎶🎶,"['@SebaLoSabe', 'btw', 'ya', 'no', 'es', 'messenger', 'esto', 'aqui', '(', '8', ')', 'jjaja', 'ya', 'hay', '🎶🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
88,"@adrianadanner @mayri_8 no , Brava es una discoteca y ella dijo que está en una tienda","['@adrianadanner', '@mayri_8', 'no', ',', 'Brava', 'es', 'una', 'discoteca', 'y', 'ella', 'dijo', 'que', 'está', 'en', 'una', 'tienda']","['O', 'O', 'O', 'O', 'B-ORG', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
89,I 'm so tired ! Tengo sueñoooo de a maiz I wanna go to sleep pero blahhh gotta wait for my love to call me pa poder dormir agusto :(,"['I', ""'m"", 'so', 'tired', '!', 'Tengo', 'sueñoooo', 'de', 'a', 'maiz', 'I', 'wanna', 'go', 'to', 'sleep', 'pero', 'blahhh', 'gotta', 'wait', 'for', 'my', 'love', 'to', 'call', 'me', 'pa', 'poder', 'dormir', 'agusto', ':(']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
90,"Pa ' los que le gusta en la pared , en lo oscuro .","['Pa', ""'"", 'los', 'que', 'le', 'gusta', 'en', 'la', 'pared', ',', 'en', 'lo', 'oscuro', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
91,"RT @CaraballoAure : No tengo deseos de estudiar , que cojones","['RT', '@CaraballoAure', ':', 'No', 'tengo', 'deseos', 'de', 'estudiar', ',', 'que', 'cojones']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
92,@luisgalifa tu vas para mayaaa ?,"['@luisgalifa', 'tu', 'vas', 'para', 'mayaaa', '?']","['O', 'O', 'O', 'O', 'B-LOC', 'O']"
93,El sexto sentido y la intuición NUNCA me fallan 😌😌😌,"['El', 'sexto', 'sentido', 'y', 'la', 'intuición', 'NUNCA', 'me', 'fallan', '😌😌😌']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
94,Pórtate mal pero solo conmigo .,"['Pórtate', 'mal', 'pero', 'solo', 'conmigo', '.']","['O', 'O', 'O', 'O', 'O', 'O']"
95,RT @__kcbez : quiero un masaje full body,"['RT', '@__kcbez', ':', 'quiero', 'un', 'masaje', 'full', 'body']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
96,La mejor vestida para mi de los Latin billboards @belindapop gusto verte otra vez mi chica guapa y de … https://t.co/GirihuEuaV,"['La', 'mejor', 'vestida', 'para', 'mi', 'de', 'los', 'Latin', 'billboards', '@belindapop', 'gusto', 'verte', 'otra', 'vez', 'mi', 'chica', 'guapa', 'y', 'de', '…', 'https://t.co/GirihuEuaV']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-EVENT', 'I-EVENT', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
97,RT @Goals4Dudes : Black & wood grain yacht https://t.co/6XB7kewiSq,"['RT', '@Goals4Dudes', ':', 'Black', '&', 'wood', 'grain', 'yacht', 'https://t.co/6XB7kewiSq']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
98,RT @IsamarJoan : Mine is the total opposite .. . https://t.co/Ir9PHLHlu7,"['RT', '@IsamarJoan', ':', 'Mine', 'is', 'the', 'total', 'opposite', '..', '.', 'https://t.co/Ir9PHLHlu7']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
99,RT @JandroRamos12 : El futuro cast de Teen Mom https://t.co/yKMxpwesTe,"['RT', '@JandroRamos12', ':', 'El', 'futuro', 'cast', 'de', 'Teen', 'Mom', 'https://t.co/yKMxpwesTe']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-TITLE', 'I-TITLE', 'O']"
100,Gay-ish,['Gay-ish'],['O']
101,RT @LuisJoel2297 : Este cabron mato la liga en halloween ! 😂😂 https://t.co/witdMyGlwV,"['RT', '@LuisJoel2297', ':', 'Este', 'cabron', 'mato', 'la', 'liga', 'en', 'halloween', '!', '😂😂', 'https://t.co/witdMyGlwV']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
102,I guess I get what I deserve,"['I', 'guess', 'I', 'get', 'what', 'I', 'deserve']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
103,playita rica http://t.co/JZka45WmQG,"['playita', 'rica', 'http://t.co/JZka45WmQG']","['O', 'O', 'O']"
104,Next time I get a 2x20 nd ferria ima hit shakeys machin,"['Next', 'time', 'I', 'get', 'a', '2x20', 'nd', 'ferria', 'ima', 'hit', 'shakeys', 'machin']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
105,RT @niportalatin : Me siguen llegando mensajes de un app ahi wtfffffff,"['RT', '@niportalatin', ':', 'Me', 'siguen', 'llegando', 'mensajes', 'de', 'un', 'app', 'ahi', 'wtfffffff']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
106,"@veromolina08 Ahhhhh , me avisas jajajaja 🌼","['@veromolina08', 'Ahhhhh', ',', 'me', 'avisas', 'jajajaja', '🌼']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
107,RT @AccWithNoSense : If your boyfriend does n't send you texts like these you 're the side bitch https://t.co/y2V7TkdufW,"['RT', '@AccWithNoSense', ':', 'If', 'your', 'boyfriend', 'does', ""n't"", 'send', 'you', 'texts', 'like', 'these', 'you', ""'re"", 'the', 'side', 'bitch', 'https://t.co/y2V7TkdufW']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
108,Eso es en el tapón con @wisinyyandel en el ipod !!,"['Eso', 'es', 'en', 'el', 'tapón', 'con', '@wisinyyandel', 'en', 'el', 'ipod', '!!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
109,RT @paublancss : ¿ QUIÉNES SOMOS ? http://t.co/Ot7dFg5UIR,"['RT', '@paublancss', ':', '¿', 'QUIÉNES', 'SOMOS', '?', 'http://t.co/Ot7dFg5UIR']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
110,Mañana intentaremos arreglar lo de jugar al H1Z1 !! Y ya os diré mi impresión sobre el juego ajaj ! Buenas noches zombers !! ❤ ️😍✌️💪,"['Mañana', 'intentaremos', 'arreglar', 'lo', 'de', 'jugar', 'al', 'H1Z1', '!!', 'Y', 'ya', 'os', 'diré', 'mi', 'impresión', 'sobre', 'el', 'juego', 'ajaj', '!', 'Buenas', 'noches', 'zombers', '!!', '❤', '️😍✌️💪']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
111,RT @UberFacts : Today is Square Root Day ! https://t.co/6nbHKmpfzc,"['RT', '@UberFacts', ':', 'Today', 'is', 'Square', 'Root', 'Day', '!', 'https://t.co/6nbHKmpfzc']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
112,""" @Lesambam : @aristeodgo95 oh gosh babe/ . \ thank you ❤ ️ your the bestest of the best ❤ ️ I love yoooooou ❤ ️ "" De Nada TeAmoPrincesa ♥","['""', '@Lesambam', ':', '@aristeodgo95', 'oh', 'gosh', 'babe/', '.', '\\', 'thank', 'you', '❤', '️', 'your', 'the', 'bestest', 'of', 'the', 'best', '❤', '️', 'I', 'love', 'yoooooou', '❤', '️', '""', 'De', 'Nada', 'TeAmoPrincesa', '♥']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
113,RT @gastaliturrisss : #NotBlessed https://t.co/JkFQzB8C27,"['RT', '@gastaliturrisss', ':', '#NotBlessed', 'https://t.co/JkFQzB8C27']","['O', 'O', 'O', 'O', 'O']"
114,"Hoy en el #Almuerzos desde Shower Doors #elVacilondelaGatita El es el jefe , No sabe español y yo … https://t.co/gIKDqzz2fp","['Hoy', 'en', 'el', '#Almuerzos', 'desde', 'Shower', 'Doors', '#elVacilondelaGatita', 'El', 'es', 'el', 'jefe', ',', 'No', 'sabe', 'español', 'y', 'yo', '…', 'https://t.co/gIKDqzz2fp']","['O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
115,"Pick up the pace : Acelerarse The class was easy , but it slowly picked up the pace and got harder .","['Pick', 'up', 'the', 'pace', ':', 'Acelerarse', 'The', 'class', 'was', 'easy', ',', 'but', 'it', 'slowly', 'picked', 'up', 'the', 'pace', 'and', 'got', 'harder', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
116,Me encanta quemarme los cachetes ☺ ️,"['Me', 'encanta', 'quemarme', 'los', 'cachetes', '☺', '️']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
117,@AnibalTornes @claudia_bea103 jajajajaj #deep,"['@AnibalTornes', '@claudia_bea103', 'jajajajaj', '#deep']","['O', 'O', 'O', 'O']"
118,On to the next one,"['On', 'to', 'the', 'next', 'one']","['O', 'O', 'O', 'O', 'O']"
119,"@marcuuuuss_ ojuuu ! pero sí , inspirarse es como un atajo legal para llegar a encontrar tu propio estilo al final del camino ☺ ️","['@marcuuuuss_', 'ojuuu', '!', 'pero', 'sí', ',', 'inspirarse', 'es', 'como', 'un', 'atajo', 'legal', 'para', 'llegar', 'a', 'encontrar', 'tu', 'propio', 'estilo', 'al', 'final', 'del', 'camino', '☺', '️']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
120,RT @Christianmigue : Dragon 's Breath ( World 's Longest Zip Line over water ) Labadee HAITI 🇭🇹 https://t.co/pZLFBNBQET,"['RT', '@Christianmigue', ':', 'Dragon', ""'s"", 'Breath', '(', 'World', ""'s"", 'Longest', 'Zip', 'Line', 'over', 'water', ')', 'Labadee', 'HAITI', '🇭🇹', 'https://t.co/pZLFBNBQET']","['O', 'O', 'O', 'B-TITLE', 'I-TITLE', 'I-TITLE', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-OTHER', 'B-LOC', 'O', 'O']"
121,It 's not possible for me not to care,"['It', ""'s"", 'not', 'possible', 'for', 'me', 'not', 'to', 'care']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
122,"Hay Mi Madre !! ! Peter pam , esta Botao #elvacilondelagatita #Miami El Nuevo Zol 106.7 fm http://t.co/sB6ViUt9ZF","['Hay', 'Mi', 'Madre', '!!', '!', 'Peter', 'pam', ',', 'esta', 'Botao', '#elvacilondelagatita', '#Miami', 'El', 'Nuevo', 'Zol', '106.7', 'fm', 'http://t.co/sB6ViUt9ZF']","['O', 'O', 'O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'B-ORG', 'I-ORG', 'I-ORG', 'I-ORG', 'I-ORG', 'O']"
123,salir de la bañera a esta hora no es buena idea,"['salir', 'de', 'la', 'bañera', 'a', 'esta', 'hora', 'no', 'es', 'buena', 'idea']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
124,Gracias por los regalitos que me habeis dado zombers ! ❤ ️😍 http://t.co/JC29xTv1i8,"['Gracias', 'por', 'los', 'regalitos', 'que', 'me', 'habeis', 'dado', 'zombers', '!', '❤', '️😍', 'http://t.co/JC29xTv1i8']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
125,Avi 🙆🏼,"['Avi', '🙆🏼']","['O', 'O']"
126,RT @CsiErika : Hoy comenzamos el dia con 1 super sonrisa ! Mi #ootd @Michaelkors y mis zapatitos @chiffino @angieestilo @unnuevodia http://t …,"['RT', '@CsiErika', ':', 'Hoy', 'comenzamos', 'el', 'dia', 'con', '1', 'super', 'sonrisa', '!', 'Mi', '#ootd', '@Michaelkors', 'y', 'mis', 'zapatitos', '@chiffino', '@angieestilo', '@unnuevodia', 'http://t', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
127,@WalkingDead_AMC this episode is too much ! #walkingdead,"['@WalkingDead_AMC', 'this', 'episode', 'is', 'too', 'much', '!', '#walkingdead']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
128,ESTOS CABRONESAS YO VOY A DEJAR DE VER ESTA MIERDA DE SERIEEE,"['ESTOS', 'CABRONESAS', 'YO', 'VOY', 'A', 'DEJAR', 'DE', 'VER', 'ESTA', 'MIERDA', 'DE', 'SERIEEE']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
129,@Victor_Luis77 👸👸👸👸,"['@Victor_Luis77', '👸👸👸👸']","['O', 'O']"
130,“ @CMCtiempo : Tal vez mirando esta imagen compuesta les d una idea d lo q esta sucediendo con el Invest 94L . http://t.co/yh26bVy4 ” EN SERIO !?,"['“', '@CMCtiempo', ':', 'Tal', 'vez', 'mirando', 'esta', 'imagen', 'compuesta', 'les', 'd', 'una', 'idea', 'd', 'lo', 'q', 'esta', 'sucediendo', 'con', 'el', 'Invest', '94L', '.', 'http://t.co/yh26bVy4', '”', 'EN', 'SERIO', '!?']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
131,RT @buckatlist : An afternoon in this tropical lagoon would be perfect 🌍🌳 https://t.co/fDvCbqhwQf,"['RT', '@buckatlist', ':', 'An', 'afternoon', 'in', 'this', 'tropical', 'lagoon', 'would', 'be', 'perfect', '🌍🌳', 'https://t.co/fDvCbqhwQf']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
132,"RT @Babalawa : Mi exsuegra dándole like a mis fotos . Lo sé , cariño , no hay dos como yo . Lamento mi perdida en su familia también . NOT .","['RT', '@Babalawa', ':', 'Mi', 'exsuegra', 'dándole', 'like', 'a', 'mis', 'fotos', '.', 'Lo', 'sé', ',', 'cariño', ',', 'no', 'hay', 'dos', 'como', 'yo', '.', 'Lamento', 'mi', 'perdida', 'en', 'su', 'familia', 'también', '.', 'NOT', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
133,"Igual sale un poquito más tarde el vlog . A las seis fijo que no está , pero PASIENSIA PLS ❤ ️","['Igual', 'sale', 'un', 'poquito', 'más', 'tarde', 'el', 'vlog', '.', 'A', 'las', 'seis', 'fijo', 'que', 'no', 'está', ',', 'pero', 'PASIENSIA', 'PLS', '❤', '️']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
134,Y con las ganas de volverte a ver,"['Y', 'con', 'las', 'ganas', 'de', 'volverte', 'a', 'ver']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
135,@_marielmj 😂,"['@_marielmj', '😂']","['O', 'O']"
136,"RT @G_Eazy : We just want it aaaaalllll , and some extra too","['RT', '@G_Eazy', ':', 'We', 'just', 'want', 'it', 'aaaaalllll', ',', 'and', 'some', 'extra', 'too']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
137,RT @gerany05 : 💓💓💓 https://t.co/SgtrXdd7ta,"['RT', '@gerany05', ':', '💓💓💓', 'https://t.co/SgtrXdd7ta']","['O', 'O', 'O', 'O', 'O']"
138,Una aventura es mas divertida si huele a peligro,"['Una', 'aventura', 'es', 'mas', 'divertida', 'si', 'huele', 'a', 'peligro']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
139,We lit the whole world up before we blew it up,"['We', 'lit', 'the', 'whole', 'world', 'up', 'before', 'we', 'blew', 'it', 'up']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
140,@mariasofia_14 no va a llegar como quiera 😂,"['@mariasofia_14', 'no', 'va', 'a', 'llegar', 'como', 'quiera', '😂']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
141,@13gsgs QUE TU HABLAS ? TOBY SIEMPRE FUE EL MISMO,"['@13gsgs', 'QUE', 'TU', 'HABLAS', '?', 'TOBY', 'SIEMPRE', 'FUE', 'EL', 'MISMO']","['O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O']"
142,"I do n't wanna go there . No quiero ( hacerlo/hablar ) . Person 1 : Sorry about what I said . P2 forget about it , I do n't wanna go there .","['I', 'do', ""n't"", 'wanna', 'go', 'there', '.', 'No', 'quiero', '(', 'hacerlo/hablar', ')', '.', 'Person', '1', ':', 'Sorry', 'about', 'what', 'I', 'said', '.', 'P2', 'forget', 'about', 'it', ',', 'I', 'do', ""n't"", 'wanna', 'go', 'there', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
143,RT @AnnaHyrule : @Kronnomc luego el de pocoyo y caillou pero en versión flamenco-rap .,"['RT', '@AnnaHyrule', ':', '@Kronnomc', 'luego', 'el', 'de', 'pocoyo', 'y', 'caillou', 'pero', 'en', 'versión', 'flamenco-rap', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-TITLE', 'O', 'B-TITLE', 'O', 'O', 'O', 'O', 'O']"
144,RT @maryc_torreblan : @AngieEstilo #yeeeiii yo igual y con tus consejos estare guapisima y tus lentes estan divine !! !,"['RT', '@maryc_torreblan', ':', '@AngieEstilo', '#yeeeiii', 'yo', 'igual', 'y', 'con', 'tus', 'consejos', 'estare', 'guapisima', 'y', 'tus', 'lentes', 'estan', 'divine', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
145,@nmsv_13 yo te acompañaría 🙋🏽🙋🏽🙋🏽,"['@nmsv_13', 'yo', 'te', 'acompañaría', '🙋🏽🙋🏽🙋🏽']","['O', 'O', 'O', 'O', 'O']"
146,"En el silencio de mi habitación , aún siento el murmullo de tu voz 🎶","['En', 'el', 'silencio', 'de', 'mi', 'habitación', ',', 'aún', 'siento', 'el', 'murmullo', 'de', 'tu', 'voz', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
147,@arelyyy_090812 Dont be lying,"['@arelyyy_090812', 'Dont', 'be', 'lying']","['O', 'O', 'O', 'O']"
148,Las hermanas uresti 's resivimos MK for Christmas !!! ya saven k nos gusta lo bueno ! ;),"['Las', 'hermanas', 'uresti', ""'s"", 'resivimos', 'MK', 'for', 'Christmas', '!!!', 'ya', 'saven', 'k', 'nos', 'gusta', 'lo', 'bueno', '!', ';)']","['O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
149,RT @fiImart : robbers ( 2014 ) https://t.co/MM3fyhi3gL,"['RT', '@fiImart', ':', 'robbers', '(', '2014', ')', 'https://t.co/MM3fyhi3gL']","['O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O']"
150,Quiero un husky 😍,"['Quiero', 'un', 'husky', '😍']","['O', 'O', 'O', 'O']"
151,But first .. . Coffee,"['But', 'first', '..', '.', 'Coffee']","['O', 'O', 'O', 'O', 'O']"
152,Jajajajajajjajajajaja no puede seeeer,"['Jajajajajajjajajajaja', 'no', 'puede', 'seeeer']","['O', 'O', 'O', 'O']"
153,"Is @HARDROCK someday coming back to San Juan , Puerto Rico ? Some of my 1st dates with my hubby were there , in old San Juan #ComeBack","['Is', '@HARDROCK', 'someday', 'coming', 'back', 'to', 'San', 'Juan', ',', 'Puerto', 'Rico', '?', 'Some', 'of', 'my', '1st', 'dates', 'with', 'my', 'hubby', 'were', 'there', ',', 'in', 'old', 'San', 'Juan', '#ComeBack']","['O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'B-LOC', 'I-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'I-LOC', 'O']"
154,"RT @_KarynaSoto : Para mí no es nada de atractivo una persona que esté en la jodeera fumando , bebiendo y jangueando descontroladamente todo …","['RT', '@_KarynaSoto', ':', 'Para', 'mí', 'no', 'es', 'nada', 'de', 'atractivo', 'una', 'persona', 'que', 'esté', 'en', 'la', 'jodeera', 'fumando', ',', 'bebiendo', 'y', 'jangueando', 'descontroladamente', 'todo', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
155,RT @MarinasDiamonds : Just found out the world does n't revolve around me . Shocked & upset .,"['RT', '@MarinasDiamonds', ':', 'Just', 'found', 'out', 'the', 'world', 'does', ""n't"", 'revolve', 'around', 'me', '.', 'Shocked', '&', 'upset', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
156,@TransitoPR Tapón hacia la carretera 5 horrible,"['@TransitoPR', 'Tapón', 'hacia', 'la', 'carretera', '5', 'horrible']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
157,"RT @_paocuevas : Quieres vacilar ? Pues vacilamos , pero hablemos claro desde el principio .","['RT', '@_paocuevas', ':', 'Quieres', 'vacilar', '?', 'Pues', 'vacilamos', ',', 'pero', 'hablemos', 'claro', 'desde', 'el', 'principio', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
158,RT @Ailen52644603 : Amo tus raps ♡ @Kronnomc https://t.co/BvyJbRNmlL,"['RT', '@Ailen52644603', ':', 'Amo', 'tus', 'raps', '♡', '@Kronnomc', 'https://t.co/BvyJbRNmlL']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
159,Super listo con todos los niños en Miami @ponchodeanda #ELFACTORX audicioenes !! !! Traje y camisa #Reiss http://t.co/gfYWqrg5GO,"['Super', 'listo', 'con', 'todos', 'los', 'niños', 'en', 'Miami', '@ponchodeanda', '#ELFACTORX', 'audicioenes', '!!', '!!', 'Traje', 'y', 'camisa', '#Reiss', 'http://t.co/gfYWqrg5GO']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
160,"RT @LifeWithAlcohol : Friend : "" I do n't feel like drinking today "" Me : https://t.co/bJz3XlugDR","['RT', '@LifeWithAlcohol', ':', 'Friend', ':', '""', 'I', 'do', ""n't"", 'feel', 'like', 'drinking', 'today', '""', 'Me', ':', 'https://t.co/bJz3XlugDR']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
161,RT @alexandrarosado : Necesito a @dccsierra de vuelta en mi vida,"['RT', '@alexandrarosado', ':', 'Necesito', 'a', '@dccsierra', 'de', 'vuelta', 'en', 'mi', 'vida']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
162,RT @nogguera : 📸 https://t.co/D2bSKrzYsD,"['RT', '@nogguera', ':', '📸', 'https://t.co/D2bSKrzYsD']","['O', 'O', 'O', 'O', 'O']"
163,"RT @SincerelyTumblr : When memories hit you , it hurts .","['RT', '@SincerelyTumblr', ':', 'When', 'memories', 'hit', 'you', ',', 'it', 'hurts', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
164,XDD @JordiWild no se le puede llamar coche hasta que conquista las calles del bronx . Postata : Eminem burlao . 😎,"['XDD', '@JordiWild', 'no', 'se', 'le', 'puede', 'llamar', 'coche', 'hasta', 'que', 'conquista', 'las', 'calles', 'del', 'bronx', '.', 'Postata', ':', 'Eminem', 'burlao', '.', '😎']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O']"
165,¡ WOW ! ¡ Enhorabuena ! ¡ Que alegría ! https://t.co/3TvQLlmQm1,"['¡', 'WOW', '!', '¡', 'Enhorabuena', '!', '¡', 'Que', 'alegría', '!', 'https://t.co/3TvQLlmQm1']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
166,@Vengodelanada y si te dije nena aunque se que no te gusta 😋,"['@Vengodelanada', 'y', 'si', 'te', 'dije', 'nena', 'aunque', 'se', 'que', 'no', 'te', 'gusta', '😋']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
167,I 'll send an SOS to the world,"['I', ""'ll"", 'send', 'an', 'SOS', 'to', 'the', 'world']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
168,Toda la familia De Laura son De Guerrero 😂 ❤ ️ Dicen que they shit money Oy Esa Manda 😂,"['Toda', 'la', 'familia', 'De', 'Laura', 'son', 'De', 'Guerrero', '😂', '❤', '️', 'Dicen', 'que', 'they', 'shit', 'money', 'Oy', 'Esa', 'Manda', '😂']","['O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
169,@quique0469 jajaja sike .. . Metio un cojon si .. . Pero tiro cc y se veia que estaba fatigau cc,"['@quique0469', 'jajaja', 'sike', '..', '.', 'Metio', 'un', 'cojon', 'si', '..', '.', 'Pero', 'tiro', 'cc', 'y', 'se', 'veia', 'que', 'estaba', 'fatigau', 'cc']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
170,Se te perdio algo que hace rato te veo mirando,"['Se', 'te', 'perdio', 'algo', 'que', 'hace', 'rato', 'te', 'veo', 'mirando']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
171,La PC cumple 33 años y su evolución no ha parado http://t.co/IXERoEW1ed,"['La', 'PC', 'cumple', '33', 'años', 'y', 'su', 'evolución', 'no', 'ha', 'parado', 'http://t.co/IXERoEW1ed']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
172,@13gsgs @pollypocketpc Que bestia,"['@13gsgs', '@pollypocketpc', 'Que', 'bestia']","['O', 'O', 'O', 'O']"
173,RT @emmavreyes : senior year : id cry but i dont have time,"['RT', '@emmavreyes', ':', 'senior', 'year', ':', 'id', 'cry', 'but', 'i', 'dont', 'have', 'time']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
174,Que antojos de iHop,"['Que', 'antojos', 'de', 'iHop']","['O', 'O', 'O', 'B-LOC']"
175,I just used Shazam to discover Bed Of Roses by Bon Jovi . My favorite band ever !! ! @BonJovi Love ! love them !! ! https://t.co/bkwrdUGMmW,"['I', 'just', 'used', 'Shazam', 'to', 'discover', 'Bed', 'Of', 'Roses', 'by', 'Bon', 'Jovi', '.', 'My', 'favorite', 'band', 'ever', '!!', '!', '@BonJovi', 'Love', '!', 'love', 'them', '!!', '!', 'https://t.co/bkwrdUGMmW']","['O', 'O', 'O', 'B-PROD', 'O', 'O', 'B-TITLE', 'I-TITLE', 'I-TITLE', 'O', 'B-GROUP', 'I-GROUP', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
176,Pasándola súper bien !! @NEGROPR76 #SanSe15 #YardaGasolina http://t.co/D1DTIm7ZJ7,"['Pasándola', 'súper', 'bien', '!!', '@NEGROPR76', '#SanSe15', '#YardaGasolina', 'http://t.co/D1DTIm7ZJ7']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
177,no puedo con este dolor en serio,"['no', 'puedo', 'con', 'este', 'dolor', 'en', 'serio']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
178,Fuckkkkkk,['Fuckkkkkk'],['O']
179,@andreavicdu que video ?! ?! Te mato,"['@andreavicdu', 'que', 'video', '?!', '?!', 'Te', 'mato']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
180,Por fa ! https://t.co/gD01aBZzkq,"['Por', 'fa', '!', 'https://t.co/gD01aBZzkq']","['O', 'O', 'O', 'O']"
181,RT @_leithmarie : craving some pad thai 4 realz right now,"['RT', '@_leithmarie', ':', 'craving', 'some', 'pad', 'thai', '4', 'realz', 'right', 'now']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
182,RT @CuriosaImagenes : Recuerda sonreír demuestra que eres más fuerte que tus problemas . http://t.co/D8vS2fys5l,"['RT', '@CuriosaImagenes', ':', 'Recuerda', 'sonreír', 'demuestra', 'que', 'eres', 'más', 'fuerte', 'que', 'tus', 'problemas', '.', 'http://t.co/D8vS2fys5l']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
183,RT @xcwrjx : maldita vagancia sal de mi cuerpo ya,"['RT', '@xcwrjx', ':', 'maldita', 'vagancia', 'sal', 'de', 'mi', 'cuerpo', 'ya']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
184,"RT @NattBanks : "" tweet not found "" MIRA PUÑETA YO LO ESTOY VIENDO","['RT', '@NattBanks', ':', '""', 'tweet', 'not', 'found', '""', 'MIRA', 'PUÑETA', 'YO', 'LO', 'ESTOY', 'VIENDO']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
185,"RT @emily16rivera : Ahora menos me voy a dormir , me puse hasta hyper","['RT', '@emily16rivera', ':', 'Ahora', 'menos', 'me', 'voy', 'a', 'dormir', ',', 'me', 'puse', 'hasta', 'hyper']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
186,RT @GVG222 : #todosmenosOlga no se le rompió una chancleta en la uni,"['RT', '@GVG222', ':', '#todosmenosOlga', 'no', 'se', 'le', 'rompió', 'una', 'chancleta', 'en', 'la', 'uni']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
187,🌻🌻🌻,['🌻🌻🌻'],['O']
188,Lo único bueno que me trajo la gastritis es que mami se dio cuenta de todo el stress que realmente tengo y ahora no me mete presión .,"['Lo', 'único', 'bueno', 'que', 'me', 'trajo', 'la', 'gastritis', 'es', 'que', 'mami', 'se', 'dio', 'cuenta', 'de', 'todo', 'el', 'stress', 'que', 'realmente', 'tengo', 'y', 'ahora', 'no', 'me', 'mete', 'presión', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
189,RT @anvlogia : * heterosexual https://t.co/1sFf6RBj2c,"['RT', '@anvlogia', ':', '*', 'heterosexual', 'https://t.co/1sFf6RBj2c']","['O', 'O', 'O', 'O', 'O', 'O']"
190,RT @ZaidelyYarie : Me tomaría un chocolate caliente con queso de papa 😋,"['RT', '@ZaidelyYarie', ':', 'Me', 'tomaría', 'un', 'chocolate', 'caliente', 'con', 'queso', 'de', 'papa', '😋']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
191,http://t.co/WCK9e9iQNl,['http://t.co/WCK9e9iQNl'],['O']
192,RT @michaelrm___ : Si es rubia mejor .,"['RT', '@michaelrm___', ':', 'Si', 'es', 'rubia', 'mejor', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
193,👸🏽 Nati,"['👸🏽', 'Nati']","['O', 'B-PER']"
194,Alguien que sepa hacer intros con transparencias a nivel profesional para un nuevo proyecto que tenemos en mente @ZarcortGame y yo ? :D,"['Alguien', 'que', 'sepa', 'hacer', 'intros', 'con', 'transparencias', 'a', 'nivel', 'profesional', 'para', 'un', 'nuevo', 'proyecto', 'que', 'tenemos', 'en', 'mente', '@ZarcortGame', 'y', 'yo', '?', ':D']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
195,"RT @pame_555 : @AngieEstilo vNunca te des por vencido , las grandes cosas llevan tiempo . Feliz inicio de semana y excelente lunes a sonreir ☺","['RT', '@pame_555', ':', '@AngieEstilo', 'vNunca', 'te', 'des', 'por', 'vencido', ',', 'las', 'grandes', 'cosas', 'llevan', 'tiempo', '.', 'Feliz', 'inicio', 'de', 'semana', 'y', 'excelente', 'lunes', 'a', 'sonreir', '☺']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
196,La gente quiere que yo venda un ovario para que yo compre un ticket al juego de National Marquette Day .,"['La', 'gente', 'quiere', 'que', 'yo', 'venda', 'un', 'ovario', 'para', 'que', 'yo', 'compre', 'un', 'ticket', 'al', 'juego', 'de', 'National', 'Marquette', 'Day', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-EVENT', 'I-EVENT', 'I-EVENT', 'O']"
197,"RT @WorldStarFunny : "" Ay dat shit week cuh- OH SHIT "" https://t.co/xo69yfrvZb","['RT', '@WorldStarFunny', ':', '""', 'Ay', 'dat', 'shit', 'week', 'cuh-', 'OH', 'SHIT', '""', 'https://t.co/xo69yfrvZb']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
198,Mañana juega Chivas !!! :),"['Mañana', 'juega', 'Chivas', '!!!', ':)']","['O', 'O', 'B-GROUP', 'O', 'O']"
199,Ay bendito,"['Ay', 'bendito']","['O', 'O']"
200,@Obeldavis 🏄🏽,"['@Obeldavis', '🏄🏽']","['O', 'O']"
201,RT @GMA : Happy #NationalSuperheroDay ! https://t.co/0nrHEdZjaT,"['RT', '@GMA', ':', 'Happy', '#NationalSuperheroDay', '!', 'https://t.co/0nrHEdZjaT']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
202,Gateeee,['Gateeee'],['O']
203,"RT @SexualGif : #GrowingUpWithAngerIssues having a side conversation with yourself to keep calm "" ITS OKKK "" , "" Be nice "" , "" do n't do it "" https://t …","['RT', '@SexualGif', ':', '#GrowingUpWithAngerIssues', 'having', 'a', 'side', 'conversation', 'with', 'yourself', 'to', 'keep', 'calm', '""', 'ITS', 'OKKK', '""', ',', '""', 'Be', 'nice', '""', ',', '""', 'do', ""n't"", 'do', 'it', '""', 'https://t', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
204,About to throw myself down the stairs after reading this syllabus .,"['About', 'to', 'throw', 'myself', 'down', 'the', 'stairs', 'after', 'reading', 'this', 'syllabus', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
205,RT @Geellyy : Yo me desenamoro y me enamoro de la misma persona diez veces al día . 😹💘,"['RT', '@Geellyy', ':', 'Yo', 'me', 'desenamoro', 'y', 'me', 'enamoro', 'de', 'la', 'misma', 'persona', 'diez', 'veces', 'al', 'día', '.', '😹💘']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
206,"Amo demasiado que me soben la espalda , maldita ricura","['Amo', 'demasiado', 'que', 'me', 'soben', 'la', 'espalda', ',', 'maldita', 'ricura']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
207,Lista para empezar el mejor fin de semana luciendo super chic ? !! !! ! Escoge to look favorito y adquierelo ya !! !! http://t.co/flUw78FIG6,"['Lista', 'para', 'empezar', 'el', 'mejor', 'fin', 'de', 'semana', 'luciendo', 'super', 'chic', '?', '!!', '!!', '!', 'Escoge', 'to', 'look', 'favorito', 'y', 'adquierelo', 'ya', '!!', '!!', 'http://t.co/flUw78FIG6']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
208,@EnriqueXiques Yikes ! Data consumption can be tricky . What type of device does she have ? What does she regularly use it for ? ~ IA,"['@EnriqueXiques', 'Yikes', '!', 'Data', 'consumption', 'can', 'be', 'tricky', '.', 'What', 'type', 'of', 'device', 'does', 'she', 'have', '?', 'What', 'does', 'she', 'regularly', 'use', 'it', 'for', '?', '~', 'IA']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
209,Its official 🎉,"['Its', 'official', '🎉']","['O', 'O', 'O']"
210,Olvidé decirle a mis amigas más close de la iupi que iba para allá ayer y me odiaron un poco .,"['Olvidé', 'decirle', 'a', 'mis', 'amigas', 'más', 'close', 'de', 'la', 'iupi', 'que', 'iba', 'para', 'allá', 'ayer', 'y', 'me', 'odiaron', 'un', 'poco', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
211,Farewell ✨,"['Farewell', '✨']","['O', 'O']"
212,@_shedopeee jaja porque :(,"['@_shedopeee', 'jaja', 'porque', ':(']","['O', 'O', 'O', 'O']"
213,@JPelirrojo @skydivemadrid alaaaa 😍,"['@JPelirrojo', '@skydivemadrid', 'alaaaa', '😍']","['O', 'O', 'O', 'O']"
214,""" @juliatoro3 : @arianaasalgado @esangie023 😂😂😂😂 perfect summary 👌 "" jajajjajaa being accurate since ' 96","['""', '@juliatoro3', ':', '@arianaasalgado', '@esangie023', '😂😂😂😂', 'perfect', 'summary', '👌', '""', 'jajajjajaa', 'being', 'accurate', 'since', ""'"", '96']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
215,RT @teenagernotes : Dragged her ass to hell and back https://t.co/xWgYtHz9kk,"['RT', '@teenagernotes', ':', 'Dragged', 'her', 'ass', 'to', 'hell', 'and', 'back', 'https://t.co/xWgYtHz9kk']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
216,RT @LightConceptsPR : @tv_pedromoreno en la alfombra roja de @50MasBellos #Etro estilismo @AngieEstilo #Zapatos @gucci @peopleenespanol http …,"['RT', '@LightConceptsPR', ':', '@tv_pedromoreno', 'en', 'la', 'alfombra', 'roja', 'de', '@50MasBellos', '#Etro', 'estilismo', '@AngieEstilo', '#Zapatos', '@gucci', '@peopleenespanol', 'http', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
217,Yo me doy risita en verdad,"['Yo', 'me', 'doy', 'risita', 'en', 'verdad']","['O', 'O', 'O', 'O', 'O', 'O']"
218,Take me to your love shack .,"['Take', 'me', 'to', 'your', 'love', 'shack', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
219,@mayarodriguez96 @dccsierra obvs,"['@mayarodriguez96', '@dccsierra', 'obvs']","['O', 'O', 'O']"
220,¡¡ NUEVO VÍDEO !! Esta vez venimos con un #MeloSaurus con muchas risas . MUCHAS . Un RT se agradece ! https://t.co/WoaXkNjhZA,"['¡¡', 'NUEVO', 'VÍDEO', '!!', 'Esta', 'vez', 'venimos', 'con', 'un', '#MeloSaurus', 'con', 'muchas', 'risas', '.', 'MUCHAS', '.', 'Un', 'RT', 'se', 'agradece', '!', 'https://t.co/WoaXkNjhZA']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
221,Lol https://t.co/ldSIwxswDf,"['Lol', 'https://t.co/ldSIwxswDf']","['O', 'O']"
222,RT @Paloma_GomezM : @YellowMellowMG Y sobretodo NO DESPEDIRLO ese mismo día . Y con voz de ultratumba . Con eso ya lo gozas .,"['RT', '@Paloma_GomezM', ':', '@YellowMellowMG', 'Y', 'sobretodo', 'NO', 'DESPEDIRLO', 'ese', 'mismo', 'día', '.', 'Y', 'con', 'voz', 'de', 'ultratumba', '.', 'Con', 'eso', 'ya', 'lo', 'gozas', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
223,"Titanic will never get old , such a great movie ! </3","['Titanic', 'will', 'never', 'get', 'old', ',', 'such', 'a', 'great', 'movie', '!', '</3']","['B-TITLE', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
224,#Friendshipgoals https://t.co/tbi8M0LloW,"['#Friendshipgoals', 'https://t.co/tbi8M0LloW']","['O', 'O']"
225,My brother was like next time que venga Te Lo Presento 😂👌,"['My', 'brother', 'was', 'like', 'next', 'time', 'que', 'venga', 'Te', 'Lo', 'Presento', '😂👌']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
226,Buenos dias !! 😁☀️☀️ https://t.co/1owChwLUsW,"['Buenos', 'dias', '!!', '😁☀️☀️', 'https://t.co/1owChwLUsW']","['O', 'O', 'O', 'O', 'O']"
227,Ya Ready y despegamos a las 6Am #elVacilondelaGatita #MorningShow https://t.co/AxO7YFr5Rx,"['Ya', 'Ready', 'y', 'despegamos', 'a', 'las', '6Am', '#elVacilondelaGatita', '#MorningShow', 'https://t.co/AxO7YFr5Rx']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
228,RT @jaffet_96 : JAJAJAJAJAJSJAJAJA https://t.co/la4cx0ePzn,"['RT', '@jaffet_96', ':', 'JAJAJAJAJAJSJAJAJA', 'https://t.co/la4cx0ePzn']","['O', 'O', 'O', 'O', 'O']"
229,When bitches try to get on your level but they are not royalty . #MakeWayBitch #ImTheQueen,"['When', 'bitches', 'try', 'to', 'get', 'on', 'your', 'level', 'but', 'they', 'are', 'not', 'royalty', '.', '#MakeWayBitch', '#ImTheQueen']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
230,RT @okaymauricio : self improvement should be a daily goal,"['RT', '@okaymauricio', ':', 'self', 'improvement', 'should', 'be', 'a', 'daily', 'goal']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
231,No group in the world cup is an easy group !! And of course mexico had to be in the brazilian group !! God dammit . -__-,"['No', 'group', 'in', 'the', 'world', 'cup', 'is', 'an', 'easy', 'group', '!!', 'And', 'of', 'course', 'mexico', 'had', 'to', 'be', 'in', 'the', 'brazilian', 'group', '!!', 'God', 'dammit', '.', '-__-']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-GROUP', 'O', 'O', 'O', 'O', 'O', 'B-OTHER', 'O', 'O', 'B-OTHER', 'O', 'O', 'O']"
232,@linamariejusti dejame ser okaaayyy 😫😫😫,"['@linamariejusti', 'dejame', 'ser', 'okaaayyy', '😫😫😫']","['O', 'O', 'O', 'O', 'O']"
233,"Buscando soluciones , salidas y nuevas opciones","['Buscando', 'soluciones', ',', 'salidas', 'y', 'nuevas', 'opciones']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
234,"Segunda vez que se me parte el labio en lo que va de mes , joy","['Segunda', 'vez', 'que', 'se', 'me', 'parte', 'el', 'labio', 'en', 'lo', 'que', 'va', 'de', 'mes', ',', 'joy']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
235,@13gsgs OMG ❤ ️ https://t.co/iOgZr1dWRI,"['@13gsgs', 'OMG', '❤', '️', 'https://t.co/iOgZr1dWRI']","['O', 'O', 'O', 'O', 'O']"
236,RT @anacecilia4013 : Let 's stay together you and me boy,"['RT', '@anacecilia4013', ':', 'Let', ""'s"", 'stay', 'together', 'you', 'and', 'me', 'boy']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
237,Lo mutuo llega lejos .,"['Lo', 'mutuo', 'llega', 'lejos', '.']","['O', 'O', 'O', 'O', 'O']"
238,Vagon Chicano 🎧💕,"['Vagon', 'Chicano', '🎧💕']","['B-GROUP', 'I-GROUP', 'O']"
239,Hapoy #Halloween #ElvacilonDeLaGatita #Onair #MorningShow http://t.co/9uat0hfeYJ,"['Hapoy', '#Halloween', '#ElvacilonDeLaGatita', '#Onair', '#MorningShow', 'http://t.co/9uat0hfeYJ']","['O', 'O', 'O', 'O', 'O', 'O']"
240,RT @malikvenner : frank ocean - thinkin bout you 🎷 https://t.co/ex1wnqm5K3,"['RT', '@malikvenner', ':', 'frank', 'ocean', '-', 'thinkin', 'bout', 'you', '🎷', 'https://t.co/ex1wnqm5K3']","['O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'B-TITLE', 'I-TITLE', 'I-TITLE', 'O', 'O']"
241,@MartinDiaz5614 😍😍😍😍😍😍 te amoo,"['@MartinDiaz5614', '😍😍😍😍😍😍', 'te', 'amoo']","['O', 'O', 'O', 'O']"
242,Baby let your fantasies unwind . We can do what you want to do .,"['Baby', 'let', 'your', 'fantasies', 'unwind', '.', 'We', 'can', 'do', 'what', 'you', 'want', 'to', 'do', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
243,RT @caroladejesuss : Shit happens but a bottle of wine always helps,"['RT', '@caroladejesuss', ':', 'Shit', 'happens', 'but', 'a', 'bottle', 'of', 'wine', 'always', 'helps']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
244,Feliz 5 de mayo Familia !! !! #elvacilondelaGatita https://t.co/AY8SxLoBcS,"['Feliz', '5', 'de', 'mayo', 'Familia', '!!', '!!', '#elvacilondelaGatita', 'https://t.co/AY8SxLoBcS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
245,Necesito un perrito en mi vida .,"['Necesito', 'un', 'perrito', 'en', 'mi', 'vida', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
246,@hectorgfigueroa que popular,"['@hectorgfigueroa', 'que', 'popular']","['O', 'O', 'O']"
247,RT @adabatidora : mañana empieza mi senior year 🔥,"['RT', '@adabatidora', ':', 'mañana', 'empieza', 'mi', 'senior', 'year', '🔥']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
248,RT @PuertoRicoPUR : ¡ VICTORIA PARA PUERTO RICO ! #PUR vence 77-73 a Filipinas en #FIBAWorldCup2014 #Spain2014 #OrgulloBoricua 🏀⚪🔵🔴👏 http://t .…,"['RT', '@PuertoRicoPUR', ':', '¡', 'VICTORIA', 'PARA', 'PUERTO', 'RICO', '!', '#PUR', 'vence', '77-73', 'a', 'Filipinas', 'en', '#FIBAWorldCup2014', '#Spain2014', '#OrgulloBoricua', '🏀⚪🔵🔴👏', 'http://t', '.…']","['O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
249,"Justas 2015 🎉😜 @ Ponce , Puerto Rico https://t.co/ecAWRIyNUK","['Justas', '2015', '🎉😜', '@', 'Ponce', ',', 'Puerto', 'Rico', 'https://t.co/ecAWRIyNUK']","['O', 'O', 'O', 'O', 'B-LOC', 'O', 'B-LOC', 'I-LOC', 'O']"
250,Martín se ha guillao hoy complaciendome 🙌,"['Martín', 'se', 'ha', 'guillao', 'hoy', 'complaciendome', '🙌']","['B-PER', 'O', 'O', 'O', 'O', 'O', 'O']"
251,@TransitoPR Tapón en la # 2s frente al Fondo por la luz .,"['@TransitoPR', 'Tapón', 'en', 'la', '#', '2s', 'frente', 'al', 'Fondo', 'por', 'la', 'luz', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
252,como odio que me jodan todo despues de planificar .. .,"['como', 'odio', 'que', 'me', 'jodan', 'todo', 'despues', 'de', 'planificar', '..', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
253,No se siente viernes !! !,"['No', 'se', 'siente', 'viernes', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O']"
254,@javiidiaz06 xoxoxoxoxoxoxox,"['@javiidiaz06', 'xoxoxoxoxoxoxox']","['O', 'O']"
255,Que mal cuerpo me deja la noticia de Christina Grimmie T_T una estrella youtuber nos deja . D.E.P,"['Que', 'mal', 'cuerpo', 'me', 'deja', 'la', 'noticia', 'de', 'Christina', 'Grimmie', 'T_T', 'una', 'estrella', 'youtuber', 'nos', 'deja', '.', 'D.E.P']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
256,Buenos diiiiiiiasss ! Wiii ! ☀️☀️😁,"['Buenos', 'diiiiiiiasss', '!', 'Wiii', '!', '☀️☀️😁']","['O', 'O', 'O', 'O', 'O', 'O']"
257,@teresa_perez7 como tu tumbas una cancha ?,"['@teresa_perez7', 'como', 'tu', 'tumbas', 'una', 'cancha', '?']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
258,RT @ElNuevoDia : Christian Vázquez recibe el llamado de Boston - https://t.co/cmZBaFjEVx https://t.co/1rgehJiK9y,"['RT', '@ElNuevoDia', ':', 'Christian', 'Vázquez', 'recibe', 'el', 'llamado', 'de', 'Boston', '-', 'https://t.co/cmZBaFjEVx', 'https://t.co/1rgehJiK9y']","['O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O']"
259,"Cosa cabrona , ah","['Cosa', 'cabrona', ',', 'ah']","['O', 'O', 'O', 'O']"
260,RT @Franki2998 : a mi como que nunca me ha gustado mi segundo nombre,"['RT', '@Franki2998', ':', 'a', 'mi', 'como', 'que', 'nunca', 'me', 'ha', 'gustado', 'mi', 'segundo', 'nombre']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
261,""" Fuck my life . Fuck it hard "" -Brianna","['""', 'Fuck', 'my', 'life', '.', 'Fuck', 'it', 'hard', '""', '-Brianna']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER']"
262,Ahora es Q es !! Café contra Merch !! !,"['Ahora', 'es', 'Q', 'es', '!!', 'Café', 'contra', 'Merch', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
263,"Diria que me desmotive pero no fue así , tu me desmotivaste .","['Diria', 'que', 'me', 'desmotive', 'pero', 'no', 'fue', 'así', ',', 'tu', 'me', 'desmotivaste', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
264,@rafrruko yo no,"['@rafrruko', 'yo', 'no']","['O', 'O', 'O']"
265,"RT @D1ARugby : It 's been a few years , but @liferugby is once again your #D1ARugby National Champion ! https://t.co/zxKbIYbcAz","['RT', '@D1ARugby', ':', 'It', ""'s"", 'been', 'a', 'few', 'years', ',', 'but', '@liferugby', 'is', 'once', 'again', 'your', '#D1ARugby', 'National', 'Champion', '!', 'https://t.co/zxKbIYbcAz']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
266,"RT @yadirawrx : ESTUDIANTES ! No pierdan la calma , la prensa querrá tildarlos de rebeldes , demuestren q la violencia no es necesaria . #11Reci …","['RT', '@yadirawrx', ':', 'ESTUDIANTES', '!', 'No', 'pierdan', 'la', 'calma', ',', 'la', 'prensa', 'querrá', 'tildarlos', 'de', 'rebeldes', ',', 'demuestren', 'q', 'la', 'violencia', 'no', 'es', 'necesaria', '.', '#11Reci', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
267,"¿ Quieres algo ? Entonces ve y haz que pase , porque la única cosa que cae del cielo es la lluvia . http://t.co/sx4dWIWBvZ","['¿', 'Quieres', 'algo', '?', 'Entonces', 've', 'y', 'haz', 'que', 'pase', ',', 'porque', 'la', 'única', 'cosa', 'que', 'cae', 'del', 'cielo', 'es', 'la', 'lluvia', '.', 'http://t.co/sx4dWIWBvZ']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
268,Maldita sea cuando le fallas a las personas que amas .,"['Maldita', 'sea', 'cuando', 'le', 'fallas', 'a', 'las', 'personas', 'que', 'amas', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
269,"Guanica , guanica is on my mind 🤘🏻","['Guanica', ',', 'guanica', 'is', 'on', 'my', 'mind', '🤘🏻']","['B-LOC', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O']"
270,@sanluispotoyees Wow ! This took my breath away ♥ You looked wonderful love ♥ no cabe duda que eres toda una Bella mujer ;) ♥,"['@sanluispotoyees', 'Wow', '!', 'This', 'took', 'my', 'breath', 'away', '♥', 'You', 'looked', 'wonderful', 'love', '♥', 'no', 'cabe', 'duda', 'que', 'eres', 'toda', 'una', 'Bella', 'mujer', ';)', '♥']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
271,RT @gaea__ : I could fuck with you for infinity,"['RT', '@gaea__', ':', 'I', 'could', 'fuck', 'with', 'you', 'for', 'infinity']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
272,@saocopapi jajajajajajajajajajjaa,"['@saocopapi', 'jajajajajajajajajajjaa']","['O', 'O']"
273,@ariannebobe jajajajajajaj confia q no,"['@ariannebobe', 'jajajajajajaj', 'confia', 'q', 'no']","['O', 'O', 'O', 'O', 'O']"
274,RT @BFAds : Why is today the best day ever ? Because it is #NationalBeerDay of course ! https://t.co/U1dShKMpQo,"['RT', '@BFAds', ':', 'Why', 'is', 'today', 'the', 'best', 'day', 'ever', '?', 'Because', 'it', 'is', '#NationalBeerDay', 'of', 'course', '!', 'https://t.co/U1dShKMpQo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
275,RT @esthimarie : Ay dios @natigvila espero que ese avión no se haya caído de verdad porque no hemos saciado nada de ti 😳,"['RT', '@esthimarie', ':', 'Ay', 'dios', '@natigvila', 'espero', 'que', 'ese', 'avión', 'no', 'se', 'haya', 'caído', 'de', 'verdad', 'porque', 'no', 'hemos', 'saciado', 'nada', 'de', 'ti', '😳']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
276,"Run , run lost boy","['Run', ',', 'run', 'lost', 'boy']","['O', 'O', 'O', 'O', 'O']"
277,RT @basicdrugs : i like those people you can joke around with and have so much fun with and then have a deep conversation with and it ’s not …,"['RT', '@basicdrugs', ':', 'i', 'like', 'those', 'people', 'you', 'can', 'joke', 'around', 'with', 'and', 'have', 'so', 'much', 'fun', 'with', 'and', 'then', 'have', 'a', 'deep', 'conversation', 'with', 'and', 'it', '’s', 'not', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
278,@MartinDiaz5614 @MotivacionesF ok 😼,"['@MartinDiaz5614', '@MotivacionesF', 'ok', '😼']","['O', 'O', 'O', 'O']"
279,"New #indiemusic for you , thanks to #MusicaUnsigned ! Presenting @BandaRadial's new single : http://t.co/dt1hsPpEQI http://t.co/Txh0zY936U","['New', '#indiemusic', 'for', 'you', ',', 'thanks', 'to', '#MusicaUnsigned', '!', 'Presenting', ""@BandaRadial's"", 'new', 'single', ':', 'http://t.co/dt1hsPpEQI', 'http://t.co/Txh0zY936U']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
280,Fun in the water and sun #hugoboss #extremesailing #miami #ocean #picstitch http://t.co/isDOsRzcRa,"['Fun', 'in', 'the', 'water', 'and', 'sun', '#hugoboss', '#extremesailing', '#miami', '#ocean', '#picstitch', 'http://t.co/isDOsRzcRa']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
281,"RT @ashleylaughbox : Adults , stop blaming my generation for YOUR failed dreams .","['RT', '@ashleylaughbox', ':', 'Adults', ',', 'stop', 'blaming', 'my', 'generation', 'for', 'YOUR', 'failed', 'dreams', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
282,Cosi chula,"['Cosi', 'chula']","['O', 'O']"
283,RT @natyloca2122 : Accurate af https://t.co/PmCn0dT24v,"['RT', '@natyloca2122', ':', 'Accurate', 'af', 'https://t.co/PmCn0dT24v']","['O', 'O', 'O', 'O', 'O', 'O']"
284,"RT @RubiuZftCelo : Cuando el profesor te suspende con un 4 , 9 @YellowMellowMG https://t.co/ytf8acTv0C","['RT', '@RubiuZftCelo', ':', 'Cuando', 'el', 'profesor', 'te', 'suspende', 'con', 'un', '4', ',', '9', '@YellowMellowMG', 'https://t.co/ytf8acTv0C']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
285,RT @alechirino_ : Pudiste ser pero no fuiste,"['RT', '@alechirino_', ':', 'Pudiste', 'ser', 'pero', 'no', 'fuiste']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
286,@lorraine_otero si supieras quien fue,"['@lorraine_otero', 'si', 'supieras', 'quien', 'fue']","['O', 'O', 'O', 'O', 'O']"
287,RT @TwatBibIe : Here 's a Camel that laughs like Peter Griffin . https://t.co/tPXah4vU4h,"['RT', '@TwatBibIe', ':', 'Here', ""'s"", 'a', 'Camel', 'that', 'laughs', 'like', 'Peter', 'Griffin', '.', 'https://t.co/tPXah4vU4h']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O']"
288,RT @TheGirICode : preach http://t.co/hGFBl9AR74,"['RT', '@TheGirICode', ':', 'preach', 'http://t.co/hGFBl9AR74']","['O', 'O', 'O', 'O', 'O']"
289,Características de un Leo en el AMOR http://t.co/kTsDfsU0p9,"['Características', 'de', 'un', 'Leo', 'en', 'el', 'AMOR', 'http://t.co/kTsDfsU0p9']","['O', 'O', 'O', 'B-OTHER', 'O', 'O', 'O', 'O']"
290,@javieer124 hahaha,"['@javieer124', 'hahaha']","['O', 'O']"
291,Buenos dias Zombers !! Hoy toca grabar un poquito y adelantar trabajo !! 😝,"['Buenos', 'dias', 'Zombers', '!!', 'Hoy', 'toca', 'grabar', 'un', 'poquito', 'y', 'adelantar', 'trabajo', '!!', '😝']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
292,RT @gabiwalabi : At&t sin señal perfectooooo,"['RT', '@gabiwalabi', ':', 'At&t', 'sin', 'señal', 'perfectooooo']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
293,RT @RashelDiaz : Mi look de hoy !! Gracias a @AngieEstilo http://t.co/OqasoVmkJV,"['RT', '@RashelDiaz', ':', 'Mi', 'look', 'de', 'hoy', '!!', 'Gracias', 'a', '@AngieEstilo', 'http://t.co/OqasoVmkJV']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
294,"Prefiero ver twitter despues de un temblor , Como le encanta a la gente meter la politica en todo . Hasta los deportes .","['Prefiero', 'ver', 'twitter', 'despues', 'de', 'un', 'temblor', ',', 'Como', 'le', 'encanta', 'a', 'la', 'gente', 'meter', 'la', 'politica', 'en', 'todo', '.', 'Hasta', 'los', 'deportes', '.']","['O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
295,Jugamos tan cabronnnnn,"['Jugamos', 'tan', 'cabronnnnn']","['O', 'O', 'O']"
296,"RT @NBA : KD & Russ : Combined 63p , 16r , 14a on 20/34 FG in 3Q's of work thus far in dominant @okcthunder performance on TNT ! https://t.co/xK …","['RT', '@NBA', ':', 'KD', '&', 'Russ', ':', 'Combined', '63p', ',', '16r', ',', '14a', 'on', '20/34', 'FG', 'in', ""3Q's"", 'of', 'work', 'thus', 'far', 'in', 'dominant', '@okcthunder', 'performance', 'on', 'TNT', '!', 'https://t.co/xK', '…']","['O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-ORG', 'O', 'O', 'O']"
297,Madre mía qué juegazo el Uncharted 4 . Estoy disfrutando como una niña . 😍,"['Madre', 'mía', 'qué', 'juegazo', 'el', 'Uncharted', '4', '.', 'Estoy', 'disfrutando', 'como', 'una', 'niña', '.', '😍']","['O', 'O', 'O', 'O', 'O', 'B-PROD', 'I-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
298,RT @CommonWhiteGirI : Disgusting http://t.co/PuKeQvxHXH,"['RT', '@CommonWhiteGirI', ':', 'Disgusting', 'http://t.co/PuKeQvxHXH']","['O', 'O', 'O', 'O', 'O']"
299,""" Abre un estacionamiento tipo motel "" en Suiza , según @primerahora . El mega saludo !","['""', 'Abre', 'un', 'estacionamiento', 'tipo', 'motel', '""', 'en', 'Suiza', ',', 'según', '@primerahora', '.', 'El', 'mega', 'saludo', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
300,@Mariska is so inspiring definitely could be almost everybody 's #wcw @theviewtv,"['@Mariska', 'is', 'so', 'inspiring', 'definitely', 'could', 'be', 'almost', 'everybody', ""'s"", '#wcw', '@theviewtv']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
301,"RT @ejro_ : Te dicen "" ya ni me hablas "" les hablas y te escriben seco , mira vete pal carajo en serio , ajajaj","['RT', '@ejro_', ':', 'Te', 'dicen', '""', 'ya', 'ni', 'me', 'hablas', '""', 'les', 'hablas', 'y', 'te', 'escriben', 'seco', ',', 'mira', 'vete', 'pal', 'carajo', 'en', 'serio', ',', 'ajajaj']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
302,RT @valentinapavo : #1 rule : do n't waste my time,"['RT', '@valentinapavo', ':', '#1', 'rule', ':', 'do', ""n't"", 'waste', 'my', 'time']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
303,RT @things_orange : WHY IS SHE FAKE EATING THAT ORANGE IM CRYING https://t.co/rBKWhJTUwo,"['RT', '@things_orange', ':', 'WHY', 'IS', 'SHE', 'FAKE', 'EATING', 'THAT', 'ORANGE', 'IM', 'CRYING', 'https://t.co/rBKWhJTUwo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
304,Nadie se bajo en las islas o estaban bien drunk q no se acuerdan por donde se sale en el 0 !! !,"['Nadie', 'se', 'bajo', 'en', 'las', 'islas', 'o', 'estaban', 'bien', 'drunk', 'q', 'no', 'se', 'acuerdan', 'por', 'donde', 'se', 'sale', 'en', 'el', '0', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
305,@mememecaigo esta eres tu .. . https://t.co/ZdyzyKk1EY,"['@mememecaigo', 'esta', 'eres', 'tu', '..', '.', 'https://t.co/ZdyzyKk1EY']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
306,La niña que está sentada al lado mio apesta a mierda,"['La', 'niña', 'que', 'está', 'sentada', 'al', 'lado', 'mio', 'apesta', 'a', 'mierda']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
307,"Voy a ase !! ! un Rap hablando sobre "" pa ke quieres sabeh eso jaja saludos "" ok no .","['Voy', 'a', 'ase', '!!', '!', 'un', 'Rap', 'hablando', 'sobre', '""', 'pa', 'ke', 'quieres', 'sabeh', 'eso', 'jaja', 'saludos', '""', 'ok', 'no', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
308,@Efrarivera24 pataboom patabajo,"['@Efrarivera24', 'pataboom', 'patabajo']","['O', 'O', 'O']"
309,@erika_be0 @massofrancisco i love you moreeeeeee eriksss,"['@erika_be0', '@massofrancisco', 'i', 'love', 'you', 'moreeeeeee', 'eriksss']","['O', 'O', 'O', 'O', 'O', 'O', 'B-PER']"
310,"La mitad de los stories son de Brava , la otra mitad son de Pj","['La', 'mitad', 'de', 'los', 'stories', 'son', 'de', 'Brava', ',', 'la', 'otra', 'mitad', 'son', 'de', 'Pj']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER']"
311,"You say the word , and I say goodbye","['You', 'say', 'the', 'word', ',', 'and', 'I', 'say', 'goodbye']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
312,"@josalequi estudia un sonido por dia , repite las palabras y cuando tengas las vocales sigue con dipt , luego puedes hablar con un teacher","['@josalequi', 'estudia', 'un', 'sonido', 'por', 'dia', ',', 'repite', 'las', 'palabras', 'y', 'cuando', 'tengas', 'las', 'vocales', 'sigue', 'con', 'dipt', ',', 'luego', 'puedes', 'hablar', 'con', 'un', 'teacher']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
313,@FlordeMariaF I attest to that ! Feel the same but we can do it !,"['@FlordeMariaF', 'I', 'attest', 'to', 'that', '!', 'Feel', 'the', 'same', 'but', 'we', 'can', 'do', 'it', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
314,"Buenos Dias ya de regreso a Miami despues de haber estado en Puerto Rico , New York y Las Vegas ! Good to be home ! ✈️👗👠🎉👏","['Buenos', 'Dias', 'ya', 'de', 'regreso', 'a', 'Miami', 'despues', 'de', 'haber', 'estado', 'en', 'Puerto', 'Rico', ',', 'New', 'York', 'y', 'Las', 'Vegas', '!', 'Good', 'to', 'be', 'home', '!', '✈️👗👠🎉👏']","['O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'B-LOC', 'I-LOC', 'O', 'B-LOC', 'I-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
315,RT @WAKEUPPEOPL3 : Woah .. Powerful https://t.co/tOR2Jpo9zc,"['RT', '@WAKEUPPEOPL3', ':', 'Woah', '..', 'Powerful', 'https://t.co/tOR2Jpo9zc']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
316,"El saludo a cafre q está Sentada en le medio del pasillo d PLZ dándole Baby Food al bebe , nena hay Mesas !","['El', 'saludo', 'a', 'cafre', 'q', 'está', 'Sentada', 'en', 'le', 'medio', 'del', 'pasillo', 'd', 'PLZ', 'dándole', 'Baby', 'Food', 'al', 'bebe', ',', 'nena', 'hay', 'Mesas', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
317,Gigi es bella pero su voz esta fataaaaal,"['Gigi', 'es', 'bella', 'pero', 'su', 'voz', 'esta', 'fataaaaal']","['B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
318,""" @everygirI : Me tonight http://t.co/9r2oIjsmoI""very accurate","['""', '@everygirI', ':', 'Me', 'tonight', 'http://t.co/9r2oIjsmoI""very', 'accurate']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
319,RT @andyturri : yo no puedo estar molesto con alguien por mas de 5 mins,"['RT', '@andyturri', ':', 'yo', 'no', 'puedo', 'estar', 'molesto', 'con', 'alguien', 'por', 'mas', 'de', '5', 'mins']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
320,#felizdiadelasmadres a la mejor madre que Dios me dio . #tqm Mami #happymothersday #mymom #ilovemymom … https://t.co/9Q7H1dss1o,"['#felizdiadelasmadres', 'a', 'la', 'mejor', 'madre', 'que', 'Dios', 'me', 'dio', '.', '#tqm', 'Mami', '#happymothersday', '#mymom', '#ilovemymom', '…', 'https://t.co/9Q7H1dss1o']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
321,Apoya lo de aquí .,"['Apoya', 'lo', 'de', 'aquí', '.']","['O', 'O', 'O', 'O', 'O']"
322,RT @_hxnata : Dejemos que la luna bese al sol . https://t.co/ZG6A0UsqYa,"['RT', '@_hxnata', ':', 'Dejemos', 'que', 'la', 'luna', 'bese', 'al', 'sol', '.', 'https://t.co/ZG6A0UsqYa']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
323,Mari : ven a comer conmigo Yo : no quiero Mari : pues cágate encima,"['Mari', ':', 'ven', 'a', 'comer', 'conmigo', 'Yo', ':', 'no', 'quiero', 'Mari', ':', 'pues', 'cágate', 'encima']","['B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O']"
324,Me encantan los nenes altos 😍👌,"['Me', 'encantan', 'los', 'nenes', 'altos', '😍👌']","['O', 'O', 'O', 'O', 'O', 'O']"
325,RT @DoltYourseIf : I would retweet this a million times if I could ☺ ️👌 http://t.co/XFJgs85y6U,"['RT', '@DoltYourseIf', ':', 'I', 'would', 'retweet', 'this', 'a', 'million', 'times', 'if', 'I', 'could', '☺', '️👌', 'http://t.co/XFJgs85y6U']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
326,RT @lina_bernier : Los recuerdos desvelan más que el café,"['RT', '@lina_bernier', ':', 'Los', 'recuerdos', 'desvelan', 'más', 'que', 'el', 'café']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
327,RT @reIatabIe : me 2 months ago : lmao no trump is not gonna win people are n't THAT stupid me now : https://t.co/uB8SFAvS5j,"['RT', '@reIatabIe', ':', 'me', '2', 'months', 'ago', ':', 'lmao', 'no', 'trump', 'is', 'not', 'gonna', 'win', 'people', 'are', ""n't"", 'THAT', 'stupid', 'me', 'now', ':', 'https://t.co/uB8SFAvS5j']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
328,RT @StevStiffler : I 'm fed up https://t.co/8gxZmD2E93,"['RT', '@StevStiffler', ':', 'I', ""'m"", 'fed', 'up', 'https://t.co/8gxZmD2E93']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
329,@crystal_jaimes lmao that was too low ! U is mean .,"['@crystal_jaimes', 'lmao', 'that', 'was', 'too', 'low', '!', 'U', 'is', 'mean', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
330,Lo único que me tranquiliza es que en dos semanas voy a estar tirada en una playa en Virgen Gorda 🙍🏽,"['Lo', 'único', 'que', 'me', 'tranquiliza', 'es', 'que', 'en', 'dos', 'semanas', 'voy', 'a', 'estar', 'tirada', 'en', 'una', 'playa', 'en', 'Virgen', 'Gorda', '🙍🏽']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O']"
331,@MartinDiaz5614 @tbhyourratchet a ti ❤ ️,"['@MartinDiaz5614', '@tbhyourratchet', 'a', 'ti', '❤', '️']","['O', 'O', 'O', 'O', 'O', 'O']"
332,Me acoste temprano y ahora no me puedo dormir 😒,"['Me', 'acoste', 'temprano', 'y', 'ahora', 'no', 'me', 'puedo', 'dormir', '😒']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
333,"RT @aisavve : Mira , vámonos pa ' la playa . A tirarnos el picnic en cualquier montaña , a ver las estrellas .. . Literalmente cualquier cosa .","['RT', '@aisavve', ':', 'Mira', ',', 'vámonos', 'pa', ""'"", 'la', 'playa', '.', 'A', 'tirarnos', 'el', 'picnic', 'en', 'cualquier', 'montaña', ',', 'a', 'ver', 'las', 'estrellas', '..', '.', 'Literalmente', 'cualquier', 'cosa', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
334,@polita1 2/2 Nuestros clientes tienen la facilidad de monitorear su uso de data con estos simples pasos : http://t.co/eTilZZ9erm ~ IA,"['@polita1', '2/2', 'Nuestros', 'clientes', 'tienen', 'la', 'facilidad', 'de', 'monitorear', 'su', 'uso', 'de', 'data', 'con', 'estos', 'simples', 'pasos', ':', 'http://t.co/eTilZZ9erm', '~', 'IA']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
335,#PremiosVlogger #PV25 ¿ RT porfis ? 😍😘 Z4E !,"['#PremiosVlogger', '#PV25', '¿', 'RT', 'porfis', '?', '😍😘', 'Z4E', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
336,RT @fabstractt : can n't keep my hands to myself i mean i could .. . but why would i want to ?,"['RT', '@fabstractt', ':', 'can', ""n't"", 'keep', 'my', 'hands', 'to', 'myself', 'i', 'mean', 'i', 'could', '..', '.', 'but', 'why', 'would', 'i', 'want', 'to', '?']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
337,RT @CasandraSophia1 : No te creo JAJA https://t.co/n8stTEkEub,"['RT', '@CasandraSophia1', ':', 'No', 'te', 'creo', 'JAJA', 'https://t.co/n8stTEkEub']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
338,RT @TransitoPR : RT@ Legolas : Alerta Caraizo y Plata ! Acaban d anunciar multa residencial $250 y comercial $750 por mal uso agua ! ( via Móvi …,"['RT', '@TransitoPR', ':', 'RT@', 'Legolas', ':', 'Alerta', 'Caraizo', 'y', 'Plata', '!', 'Acaban', 'd', 'anunciar', 'multa', 'residencial', '$250', 'y', 'comercial', '$750', 'por', 'mal', 'uso', 'agua', '!', '(', 'via', 'Móvi', '…']","['O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'B-LOC', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
339,@AlanTorres8484 lmao your already know k soy experta en eso !! Ha,"['@AlanTorres8484', 'lmao', 'your', 'already', 'know', 'k', 'soy', 'experta', 'en', 'eso', '!!', 'Ha']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
340,"RT @CauseWereGuys : Well , well , well https://t.co/1mhiKEK6Se","['RT', '@CauseWereGuys', ':', 'Well', ',', 'well', ',', 'well', 'https://t.co/1mhiKEK6Se']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
341,RT @UnivisionSports : Participa en la quiniela del gran torneo de @VerizonLatino ahora http://t.co/uBtje2IA3S http://t.co/90HqBZw1Q6,"['RT', '@UnivisionSports', ':', 'Participa', 'en', 'la', 'quiniela', 'del', 'gran', 'torneo', 'de', '@VerizonLatino', 'ahora', 'http://t.co/uBtje2IA3S', 'http://t.co/90HqBZw1Q6']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
342,El dia esta cabrooooonnn,"['El', 'dia', 'esta', 'cabrooooonnn']","['O', 'O', 'O', 'O']"
343,😻😻😻 never happier http://t.co/c8ja6MJD3u by luludurand #phhhoto http://t.co/9KUn1Zx2gu,"['😻😻😻', 'never', 'happier', 'http://t.co/c8ja6MJD3u', 'by', 'luludurand', '#phhhoto', 'http://t.co/9KUn1Zx2gu']","['O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O']"
344,"RT @lucianojorge01 : Cuando me voy de pecho con mi crush y me dice "" tu no me gustas "" : https://t.co/x4YvFDQ6x6","['RT', '@lucianojorge01', ':', 'Cuando', 'me', 'voy', 'de', 'pecho', 'con', 'mi', 'crush', 'y', 'me', 'dice', '""', 'tu', 'no', 'me', 'gustas', '""', ':', 'https://t.co/x4YvFDQ6x6']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
345,@javiidiaz06 yo máj,"['@javiidiaz06', 'yo', 'máj']","['O', 'O', 'O']"
346,@NEGROPR76 @EddaTH1 #relax #DisneyMagic http://t.co/iT3UaAP8jx,"['@NEGROPR76', '@EddaTH1', '#relax', '#DisneyMagic', 'http://t.co/iT3UaAP8jx']","['O', 'O', 'O', 'O', 'O']"
347,"SPM makes me reflect on life ... I 've come a long way from my "" Gangster "" years .. I may not be much but I proved many teachers & ppl wrong !","['SPM', 'makes', 'me', 'reflect', 'on', 'life', '...', 'I', ""'ve"", 'come', 'a', 'long', 'way', 'from', 'my', '""', 'Gangster', '""', 'years', '..', 'I', 'may', 'not', 'be', 'much', 'but', 'I', 'proved', 'many', 'teachers', '&', 'ppl', 'wrong', '!']","['B-GROUP', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
348,RT @Ninelconde : Que paso con la convivencia ? @prensadanna @jacobyebale @angieestilo http://t.co/pHTYLInG,"['RT', '@Ninelconde', ':', 'Que', 'paso', 'con', 'la', 'convivencia', '?', '@prensadanna', '@jacobyebale', '@angieestilo', 'http://t.co/pHTYLInG']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
349,No doy segundas oportunidades y punto .,"['No', 'doy', 'segundas', 'oportunidades', 'y', 'punto', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
350,RT @Ocruz19Bryan : Hahaha https://t.co/ngy2QxBjvY,"['RT', '@Ocruz19Bryan', ':', 'Hahaha', 'https://t.co/ngy2QxBjvY']","['O', 'O', 'O', 'O', 'O']"
351,RT @rrodz_7 : Hoy doy gracias por ti aunque no lo creas .,"['RT', '@rrodz_7', ':', 'Hoy', 'doy', 'gracias', 'por', 'ti', 'aunque', 'no', 'lo', 'creas', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
352,No vuelvo,"['No', 'vuelvo']","['O', 'O']"
353,RT @KardashianReact : Is this what heaven looks like http://t.co/kMPTC8ZtHV,"['RT', '@KardashianReact', ':', 'Is', 'this', 'what', 'heaven', 'looks', 'like', 'http://t.co/kMPTC8ZtHV']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
354,See my PHHHOTO … https://t.co/wHrVbP1dfi,"['See', 'my', 'PHHHOTO', '…', 'https://t.co/wHrVbP1dfi']","['O', 'O', 'O', 'O', 'O']"
355,Uno de mis quotes favoritos https://t.co/07kT9Pk7do,"['Uno', 'de', 'mis', 'quotes', 'favoritos', 'https://t.co/07kT9Pk7do']","['O', 'O', 'O', 'O', 'O', 'O']"
356,RT @beavchistoteles : You should make time for the people you care for . Soon enough they 'll be gone .,"['RT', '@beavchistoteles', ':', 'You', 'should', 'make', 'time', 'for', 'the', 'people', 'you', 'care', 'for', '.', 'Soon', 'enough', 'they', ""'ll"", 'be', 'gone', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
357,@zapi_z yo la amo demasiado mano wowww,"['@zapi_z', 'yo', 'la', 'amo', 'demasiado', 'mano', 'wowww']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
358,RT @brisadeideas : #Acci ónPoéticaUPRRP https://t.co/shLqQ9Kyb5,"['RT', '@brisadeideas', ':', '#Acci', 'ónPoéticaUPRRP', 'https://t.co/shLqQ9Kyb5']","['O', 'O', 'O', 'O', 'O', 'O']"
359,"Pues nada niños que acabo de editar el mejor vlog de toda mi historia en YouTube . Lo tendréis más tarde de las seis , pero vais a flipar .","['Pues', 'nada', 'niños', 'que', 'acabo', 'de', 'editar', 'el', 'mejor', 'vlog', 'de', 'toda', 'mi', 'historia', 'en', 'YouTube', '.', 'Lo', 'tendréis', 'más', 'tarde', 'de', 'las', 'seis', ',', 'pero', 'vais', 'a', 'flipar', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
360,"Se que no estoy en Kinder , pero como le digo a un niño que no quiero ser su amiga ? 🙄😂","['Se', 'que', 'no', 'estoy', 'en', 'Kinder', ',', 'pero', 'como', 'le', 'digo', 'a', 'un', 'niño', 'que', 'no', 'quiero', 'ser', 'su', 'amiga', '?', '🙄😂']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
361,RT @antonmattei_ : AHORA LLEGARON LOS VIENTOSSSS,"['RT', '@antonmattei_', ':', 'AHORA', 'LLEGARON', 'LOS', 'VIENTOSSSS']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
362,RT @axelorhe : Te quisiera tener aqui conmigo,"['RT', '@axelorhe', ':', 'Te', 'quisiera', 'tener', 'aqui', 'conmigo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
363,"Es que no era suficiente con ir a comer , teniamos que venir a hacer brownies . Mis mejores amigas y yo somos unas gordas 🙄😂","['Es', 'que', 'no', 'era', 'suficiente', 'con', 'ir', 'a', 'comer', ',', 'teniamos', 'que', 'venir', 'a', 'hacer', 'brownies', '.', 'Mis', 'mejores', 'amigas', 'y', 'yo', 'somos', 'unas', 'gordas', '🙄😂']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
364,@Marialepanda ts,"['@Marialepanda', 'ts']","['O', 'O']"
365,"@EliZaIBQ mess up significa muchas cosas , allí significa algo así como hmmm "" joderle la vida "" sorry , sorry , no encuentro otra palabra :)","['@EliZaIBQ', 'mess', 'up', 'significa', 'muchas', 'cosas', ',', 'allí', 'significa', 'algo', 'así', 'como', 'hmmm', '""', 'joderle', 'la', 'vida', '""', 'sorry', ',', 'sorry', ',', 'no', 'encuentro', 'otra', 'palabra', ':)']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
366,@VivianaG_M except my grades,"['@VivianaG_M', 'except', 'my', 'grades']","['O', 'O', 'O', 'O']"
367,😂😂😂😂😂😂😂 https://t.co/iSzSPeRy4O,"['😂😂😂😂😂😂😂', 'https://t.co/iSzSPeRy4O']","['O', 'O']"
368,RT @Cashewlex : ESTO CON LOS PANAS 🔥 https://t.co/5XVgnhYHDP,"['RT', '@Cashewlex', ':', 'ESTO', 'CON', 'LOS', 'PANAS', '🔥', 'https://t.co/5XVgnhYHDP']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
369,RT @natashairoman : @Obeldavis qué locos jajajajaja,"['RT', '@natashairoman', ':', '@Obeldavis', 'qué', 'locos', 'jajajajaja']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
370,Hoy mis miércoles son de @Discoverymujer a las 8pm #MDB con Mis consejos de moda ! TE ESPERO !,"['Hoy', 'mis', 'miércoles', 'son', 'de', '@Discoverymujer', 'a', 'las', '8pm', '#MDB', 'con', 'Mis', 'consejos', 'de', 'moda', '!', 'TE', 'ESPERO', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
371,RT @bubbleviciouss : 😌✨🌈 https://t.co/RJRP4By1Ed,"['RT', '@bubbleviciouss', ':', '😌✨🌈', 'https://t.co/RJRP4By1Ed']","['O', 'O', 'O', 'O', 'O']"
372,"@Antifas_4ever Recuerda q aprendí por oído , y no recomiendo mucho las reglas de grámatica . Cuando es leave y después una acción yo ...","['@Antifas_4ever', 'Recuerda', 'q', 'aprendí', 'por', 'oído', ',', 'y', 'no', 'recomiendo', 'mucho', 'las', 'reglas', 'de', 'grámatica', '.', 'Cuando', 'es', 'leave', 'y', 'después', 'una', 'acción', 'yo', '...']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
373,"Va .. @LuzuVlogs si si , el sol no brillará de la misma manera y las flores no olerán igual , pero de que color se pone un pitufo ahorcado ? 😂😝😜","['Va', '..', '@LuzuVlogs', 'si', 'si', ',', 'el', 'sol', 'no', 'brillará', 'de', 'la', 'misma', 'manera', 'y', 'las', 'flores', 'no', 'olerán', 'igual', ',', 'pero', 'de', 'que', 'color', 'se', 'pone', 'un', 'pitufo', 'ahorcado', '?', '😂😝😜']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
374,i wanna take a bite of that and its not even my birthday,"['i', 'wanna', 'take', 'a', 'bite', 'of', 'that', 'and', 'its', 'not', 'even', 'my', 'birthday']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
375,@fairy0821 siempreeee .. ..,"['@fairy0821', 'siempreeee', '..', '..']","['O', 'O', 'O', 'O']"
376,RT @BabyAnimaI : please keep retweeting this so we can get these horrible collars banned !! http://t.co/eo2jx2OEq4,"['RT', '@BabyAnimaI', ':', 'please', 'keep', 'retweeting', 'this', 'so', 'we', 'can', 'get', 'these', 'horrible', 'collars', 'banned', '!!', 'http://t.co/eo2jx2OEq4']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
377,Viendo entrevista #BarackObama,"['Viendo', 'entrevista', '#BarackObama']","['O', 'O', 'O']"
378,RT @dccsierra : Jajajajajajajajajjajajaja este bebe es un chiste https://t.co/bAYWnlZIgB,"['RT', '@dccsierra', ':', 'Jajajajajajajajajjajajaja', 'este', 'bebe', 'es', 'un', 'chiste', 'https://t.co/bAYWnlZIgB']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
379,Le he cogido el gustito a la leche de almendra 😍,"['Le', 'he', 'cogido', 'el', 'gustito', 'a', 'la', 'leche', 'de', 'almendra', '😍']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
380,"@mariasofia_14 ew no , no pa ' tanto","['@mariasofia_14', 'ew', 'no', ',', 'no', 'pa', ""'"", 'tanto']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
381,@mememecaigo @PattyB_14 me more bae :),"['@mememecaigo', '@PattyB_14', 'me', 'more', 'bae', ':)']","['O', 'O', 'O', 'O', 'O', 'O']"
382,Empezé la noche con $240 y ya voy por $172,"['Empezé', 'la', 'noche', 'con', '$240', 'y', 'ya', 'voy', 'por', '$172']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
383,RT @lizzy_israel : you ever just https://t.co/OFHMRh2xTA,"['RT', '@lizzy_israel', ':', 'you', 'ever', 'just', 'https://t.co/OFHMRh2xTA']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
384,Oversized t-shirts for sleeping are the best .,"['Oversized', 't-shirts', 'for', 'sleeping', 'are', 'the', 'best', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
385,holograms are annoying,"['holograms', 'are', 'annoying']","['O', 'O', 'O']"
386,I saw you 👀,"['I', 'saw', 'you', '👀']","['O', 'O', 'O', 'O']"
387,RT @soymiruta : Ignorando a las personas tóxicas en mi vida . Ya eso lo sufrí bastante . Ahora es el tiempo de La Paz y la Libertad .,"['RT', '@soymiruta', ':', 'Ignorando', 'a', 'las', 'personas', 'tóxicas', 'en', 'mi', 'vida', '.', 'Ya', 'eso', 'lo', 'sufrí', 'bastante', '.', 'Ahora', 'es', 'el', 'tiempo', 'de', 'La', 'Paz', 'y', 'la', 'Libertad', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
388,@AlanTorres8484 ay perdon ... saliste mas cabron k yo !! Wait jk,"['@AlanTorres8484', 'ay', 'perdon', '...', 'saliste', 'mas', 'cabron', 'k', 'yo', '!!', 'Wait', 'jk']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
389,"“ @SoloQuotes : Jamás olvides que cumplir una meta , es lograr tus propias expectativas .. . Y no las de otros sobre ti . ” Siempre Adelante !","['“', '@SoloQuotes', ':', 'Jamás', 'olvides', 'que', 'cumplir', 'una', 'meta', ',', 'es', 'lograr', 'tus', 'propias', 'expectativas', '..', '.', 'Y', 'no', 'las', 'de', 'otros', 'sobre', 'ti', '.', '”', 'Siempre', 'Adelante', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
390,De intentar nunca me canso así muera en el intento .,"['De', 'intentar', 'nunca', 'me', 'canso', 'así', 'muera', 'en', 'el', 'intento', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
391,"Mi ex pareja fue buena , solo no funciono y punto .","['Mi', 'ex', 'pareja', 'fue', 'buena', ',', 'solo', 'no', 'funciono', 'y', 'punto', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
392,Estamos perdidos con todo y GPS #almuerzaconlaGatita #ElvacilondelaGatita https://t.co/Hl5Bqs1ZIC,"['Estamos', 'perdidos', 'con', 'todo', 'y', 'GPS', '#almuerzaconlaGatita', '#ElvacilondelaGatita', 'https://t.co/Hl5Bqs1ZIC']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
393,RT @JJeralyne : Que te cojan así es tan rico http://t.co/FusRYA5vkg,"['RT', '@JJeralyne', ':', 'Que', 'te', 'cojan', 'así', 'es', 'tan', 'rico', 'http://t.co/FusRYA5vkg']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
394,No puedo meterme a insta 😟,"['No', 'puedo', 'meterme', 'a', 'insta', '😟']","['O', 'O', 'O', 'O', 'O', 'O']"
395,RT @aabialv : @nicomarie96 @Obeldavis @natashairoman 😅😅😅😅😅😅😂,"['RT', '@aabialv', ':', '@nicomarie96', '@Obeldavis', '@natashairoman', '😅😅😅😅😅😅😂']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
396,RT @Giomarie0813 : rico rico https://t.co/29EOLa6t92,"['RT', '@Giomarie0813', ':', 'rico', 'rico', 'https://t.co/29EOLa6t92']","['O', 'O', 'O', 'O', 'O', 'O']"
397,RT @NeryGodoyMusic : Quiero tiempo libre para ver a mi gran amigo @Kronnomc y mi prinsesa @KatiaLisob 😭,"['RT', '@NeryGodoyMusic', ':', 'Quiero', 'tiempo', 'libre', 'para', 'ver', 'a', 'mi', 'gran', 'amigo', '@Kronnomc', 'y', 'mi', 'prinsesa', '@KatiaLisob', '😭']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
398,@fernanrodrigg JAJAJAJAJA tu me tirarías del carro,"['@fernanrodrigg', 'JAJAJAJAJA', 'tu', 'me', 'tirarías', 'del', 'carro']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
399,El vlog de hoy es una locura : NO OS HE CONTADO UNA COSA https://t.co/TTHkckm35F,"['El', 'vlog', 'de', 'hoy', 'es', 'una', 'locura', ':', 'NO', 'OS', 'HE', 'CONTADO', 'UNA', 'COSA', 'https://t.co/TTHkckm35F']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
400,"We are the new americana , high on legal marijuana , raised on Biggie and Nirvana 🎶","['We', 'are', 'the', 'new', 'americana', ',', 'high', 'on', 'legal', 'marijuana', ',', 'raised', 'on', 'Biggie', 'and', 'Nirvana', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-GROUP', 'O', 'B-GROUP', 'O']"
401,Bueno el nene ya abrió su regalo !!,"['Bueno', 'el', 'nene', 'ya', 'abrió', 'su', 'regalo', '!!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
402,RT @_jeihelis_ : Then we could be in love https://t.co/DygOZCn6x4,"['RT', '@_jeihelis_', ':', 'Then', 'we', 'could', 'be', 'in', 'love', 'https://t.co/DygOZCn6x4']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
403,Gracias por decirlo ! @AnnaHyrule alguien con algo de sentido común en twitter ! Eso es porque piensan que no lo vemos .. . XD,"['Gracias', 'por', 'decirlo', '!', '@AnnaHyrule', 'alguien', 'con', 'algo', 'de', 'sentido', 'común', 'en', 'twitter', '!', 'Eso', 'es', 'porque', 'piensan', 'que', 'no', 'lo', 'vemos', '..', '.', 'XD']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
404,"Hahahahaha yo era "" la conejita "" vpc 😂😂 https://t.co/oukoGYxJiK","['Hahahahaha', 'yo', 'era', '""', 'la', 'conejita', '""', 'vpc', '😂😂', 'https://t.co/oukoGYxJiK']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
405,RT @GuyCodes : I need a dog like this https://t.co/cDlAQMxhQD,"['RT', '@GuyCodes', ':', 'I', 'need', 'a', 'dog', 'like', 'this', 'https://t.co/cDlAQMxhQD']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
406,"De dónde salió este , pfttt","['De', 'dónde', 'salió', 'este', ',', 'pfttt']","['O', 'O', 'O', 'O', 'O', 'O']"
407,@isatpc web md siempre es buenisimo para crear un trauma en mi 👏🏽,"['@isatpc', 'web', 'md', 'siempre', 'es', 'buenisimo', 'para', 'crear', 'un', 'trauma', 'en', 'mi', '👏🏽']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
408,@javiidiaz06 lo pensaré 😂,"['@javiidiaz06', 'lo', 'pensaré', '😂']","['O', 'O', 'O', 'O']"
409,La Gatita en el Concierto de Gente de Zona con Los Miami Marlins http://t.co/usLw7WWkMN,"['La', 'Gatita', 'en', 'el', 'Concierto', 'de', 'Gente', 'de', 'Zona', 'con', 'Los', 'Miami', 'Marlins', 'http://t.co/usLw7WWkMN']","['B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'B-GROUP', 'I-GROUP', 'I-GROUP', 'O', 'O', 'B-GROUP', 'I-GROUP', 'O']"
410,Daaaaaamn https://t.co/V14Lks80fI,"['Daaaaaamn', 'https://t.co/V14Lks80fI']","['O', 'O']"
411,"Yo no planeo , dejo que surja .","['Yo', 'no', 'planeo', ',', 'dejo', 'que', 'surja', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
412,RT @FactSoup : Do you ever wish you had a second chance to meet someone again for the first time ?,"['RT', '@FactSoup', ':', 'Do', 'you', 'ever', 'wish', 'you', 'had', 'a', 'second', 'chance', 'to', 'meet', 'someone', 'again', 'for', 'the', 'first', 'time', '?']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
413,RT @lesliem_11 : -1 mes para NY 💕✈️🗽,"['RT', '@lesliem_11', ':', '-1', 'mes', 'para', 'NY', '💕✈️🗽']","['O', 'O', 'O', 'B-TIME', 'I-TIME', 'O', 'B-LOC', 'O']"
414,RT @zmvr21 : Demasiada diría yo * 😂😂 https://t.co/cVJeouBk50,"['RT', '@zmvr21', ':', 'Demasiada', 'diría', 'yo', '*', '😂😂', 'https://t.co/cVJeouBk50']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
415,Pretty accurate https://t.co/iSemSDEjB3,"['Pretty', 'accurate', 'https://t.co/iSemSDEjB3']","['O', 'O', 'O']"
416,"RT @SoyFrederick : Yo no subo fotos a las redes con nadie , hasta que sepa que vale la pena . No pa ' borrarla a la semana porque no funcionó .","['RT', '@SoyFrederick', ':', 'Yo', 'no', 'subo', 'fotos', 'a', 'las', 'redes', 'con', 'nadie', ',', 'hasta', 'que', 'sepa', 'que', 'vale', 'la', 'pena', '.', 'No', 'pa', ""'"", 'borrarla', 'a', 'la', 'semana', 'porque', 'no', 'funcionó', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
417,RT @SexualGif : I 've been looking for this video for so long http://t.co/JNbFxVTinA,"['RT', '@SexualGif', ':', 'I', ""'ve"", 'been', 'looking', 'for', 'this', 'video', 'for', 'so', 'long', 'http://t.co/JNbFxVTinA']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
418,RT @RubiusFtG4T0 : @YellowMellowMG AJSHSKALSKS ESTOY ASI http://t.co/PtHwurGZf4,"['RT', '@RubiusFtG4T0', ':', '@YellowMellowMG', 'AJSHSKALSKS', 'ESTOY', 'ASI', 'http://t.co/PtHwurGZf4']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
419,"@nrosadol @BryannD18 JAJAJA PORQUE SERA QUE TODOS LOS PRO NO SALEN DE AVIONES , TRAS DE RUBIO TONTO .","['@nrosadol', '@BryannD18', 'JAJAJA', 'PORQUE', 'SERA', 'QUE', 'TODOS', 'LOS', 'PRO', 'NO', 'SALEN', 'DE', 'AVIONES', ',', 'TRAS', 'DE', 'RUBIO', 'TONTO', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
420,RT @BrianaaLeeRc : You know you 're doing something right when you look good naked .,"['RT', '@BrianaaLeeRc', ':', 'You', 'know', 'you', ""'re"", 'doing', 'something', 'right', 'when', 'you', 'look', 'good', 'naked', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
421,"El vlog de hoy , pequeñas cunetas absorbentes : TENEMOS UN ACCIDENTE !! https://t.co/idHvXqMQoa","['El', 'vlog', 'de', 'hoy', ',', 'pequeñas', 'cunetas', 'absorbentes', ':', 'TENEMOS', 'UN', 'ACCIDENTE', '!!', 'https://t.co/idHvXqMQoa']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
422,@GiaVq rexville,"['@GiaVq', 'rexville']","['O', 'O']"
423,Back to basics .,"['Back', 'to', 'basics', '.']","['O', 'O', 'O', 'O']"
424,RT @_CollegeHumor_ : FAVORITE CANDY 🍫🍬🍭 http://t.co/OYTDx08ur0,"['RT', '@_CollegeHumor_', ':', 'FAVORITE', 'CANDY', '🍫🍬🍭', 'http://t.co/OYTDx08ur0']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
425,😳,['😳'],['O']
426,dile ahí https://t.co/88z1KAaYRO,"['dile', 'ahí', 'https://t.co/88z1KAaYRO']","['O', 'O', 'O']"
427,"AY , PUÑETAAAAAAAAAA","['AY', ',', 'PUÑETAAAAAAAAAA']","['O', 'O', 'O']"
428,Hoy yo no voy a dormir . Que felicidad,"['Hoy', 'yo', 'no', 'voy', 'a', 'dormir', '.', 'Que', 'felicidad']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
429,Muero de sueño,"['Muero', 'de', 'sueño']","['O', 'O', 'O']"
430,La Gatita de El Zol 106.7 Fm Entrevista con Charytín y Felipe http://t.co/6ALhntNdNp http://t.co/diKqUdVr2q,"['La', 'Gatita', 'de', 'El', 'Zol', '106.7', 'Fm', 'Entrevista', 'con', 'Charytín', 'y', 'Felipe', 'http://t.co/6ALhntNdNp', 'http://t.co/diKqUdVr2q']","['B-PER', 'I-PER', 'O', 'B-ORG', 'I-ORG', 'I-ORG', 'O', 'O', 'O', 'B-PER', 'O', 'B-PER', 'O', 'O']"
431,Antes del descanso :/,"['Antes', 'del', 'descanso', ':/']","['O', 'O', 'O', 'O']"
432,@crystal_jaimes yeah I know but I cant help it ... lmao aver cuando,"['@crystal_jaimes', 'yeah', 'I', 'know', 'but', 'I', 'cant', 'help', 'it', '...', 'lmao', 'aver', 'cuando']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
433,Uno cambia tantoooooo desde senior year hasta el primer año de universidad,"['Uno', 'cambia', 'tantoooooo', 'desde', 'senior', 'year', 'hasta', 'el', 'primer', 'año', 'de', 'universidad']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
434,Cuando lees en los comentarios que muchos fans se emocionaron con la canción es como .. . Buah ! Me emociono yo ! 😍😍 ❤,"['Cuando', 'lees', 'en', 'los', 'comentarios', 'que', 'muchos', 'fans', 'se', 'emocionaron', 'con', 'la', 'canción', 'es', 'como', '..', '.', 'Buah', '!', 'Me', 'emociono', 'yo', '!', '😍😍', '❤']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
435,@yaraesc jajajajajajaj queeeee,"['@yaraesc', 'jajajajajajaj', 'queeeee']","['O', 'O', 'O']"
436,RT @rushsmith : ya hemos actuado . @clubmediafest http://t.co/IFvARKuBXf,"['RT', '@rushsmith', ':', 'ya', 'hemos', 'actuado', '.', '@clubmediafest', 'http://t.co/IFvARKuBXf']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
437,Tengo un dolor de piernas asquerosoooo,"['Tengo', 'un', 'dolor', 'de', 'piernas', 'asquerosoooo']","['O', 'O', 'O', 'O', 'O', 'O']"
438,Castigala dale un latigasoooo,"['Castigala', 'dale', 'un', 'latigasoooo']","['O', 'O', 'O', 'O']"
439,I forgot how nice it was .. .,"['I', 'forgot', 'how', 'nice', 'it', 'was', '..', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
440,It 's like let 's lay down & watch a move time 😌 ❤ ️,"['It', ""'s"", 'like', 'let', ""'s"", 'lay', 'down', '&', 'watch', 'a', 'move', 'time', '😌', '❤', '️']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
441,"Yo no compito , yo soy el dueño de la competencia .","['Yo', 'no', 'compito', ',', 'yo', 'soy', 'el', 'dueño', 'de', 'la', 'competencia', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
442,I do n't want to leave home without your love,"['I', 'do', ""n't"", 'want', 'to', 'leave', 'home', 'without', 'your', 'love']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
443,@alanessexy i knooow 😩,"['@alanessexy', 'i', 'knooow', '😩']","['O', 'O', 'O', 'O']"
444,RT @juaniPra1 : At Brava https://t.co/vqk6eDFw52,"['RT', '@juaniPra1', ':', 'At', 'Brava', 'https://t.co/vqk6eDFw52']","['O', 'O', 'O', 'O', 'O', 'O']"
445,"No he tenido mucho apetito en estos días y busque en google "" loss of apetite "" y aparentemente tengo pancreatic cancer .","['No', 'he', 'tenido', 'mucho', 'apetito', 'en', 'estos', 'días', 'y', 'busque', 'en', 'google', '""', 'loss', 'of', 'apetite', '""', 'y', 'aparentemente', 'tengo', 'pancreatic', 'cancer', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-OTHER', 'I-OTHER', 'O']"
446,Now its my fault #classic,"['Now', 'its', 'my', 'fault', '#classic']","['O', 'O', 'O', 'O', 'O']"
447,@pollypocketpc eso es madrugar HAAHAHAHA,"['@pollypocketpc', 'eso', 'es', 'madrugar', 'HAAHAHAHA']","['O', 'O', 'O', 'O', 'O']"
448,"RT @xavi_vr : FELIZ DIA DEL AMOR , estoy soltero pero que me den amor","['RT', '@xavi_vr', ':', 'FELIZ', 'DIA', 'DEL', 'AMOR', ',', 'estoy', 'soltero', 'pero', 'que', 'me', 'den', 'amor']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
449,RT @ssalga1 : #Las3amigas #3MexicansInMiami @angieestilo @andyescalona http://t.co/GBnp3Mt1Ts,"['RT', '@ssalga1', ':', '#Las3amigas', '#3MexicansInMiami', '@angieestilo', '@andyescalona', 'http://t.co/GBnp3Mt1Ts']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
450,Questions that haunt me http://t.co/UpMWFlcqdm,"['Questions', 'that', 'haunt', 'me', 'http://t.co/UpMWFlcqdm']","['O', 'O', 'O', 'O', 'O']"
451,Que acepte eso y todo lo demás . https://t.co/MFpxkljHWj,"['Que', 'acepte', 'eso', 'y', 'todo', 'lo', 'demás', '.', 'https://t.co/MFpxkljHWj']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
452,"RT @CoralCarroCruz : Después de estos 4 largos años , quiero agradecerle a Wikihow por ayudarme a pasar high school y ser mi soporte emociona …","['RT', '@CoralCarroCruz', ':', 'Después', 'de', 'estos', '4', 'largos', 'años', ',', 'quiero', 'agradecerle', 'a', 'Wikihow', 'por', 'ayudarme', 'a', 'pasar', 'high', 'school', 'y', 'ser', 'mi', 'soporte', 'emociona', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
453,Como me encojona la gente aprovechada,"['Como', 'me', 'encojona', 'la', 'gente', 'aprovechada']","['O', 'O', 'O', 'O', 'O', 'O']"
454,RT @AkiraBladeTQ : @Kronnomc Gracias por saludarme :D Te amo <3 Estoy afuera esperandote >.< no me puedo quedar mucho : c pero te amo <3,"['RT', '@AkiraBladeTQ', ':', '@Kronnomc', 'Gracias', 'por', 'saludarme', ':D', 'Te', 'amo', '<3', 'Estoy', 'afuera', 'esperandote', '>.<', 'no', 'me', 'puedo', 'quedar', 'mucho', ':', 'c', 'pero', 'te', 'amo', '<3']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
455,this is why I love my dad 😍😘 http://t.co/VIHlfXXpYx,"['this', 'is', 'why', 'I', 'love', 'my', 'dad', '😍😘', 'http://t.co/VIHlfXXpYx']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
456,@PMGA_ rolinpin pichea,"['@PMGA_', 'rolinpin', 'pichea']","['O', 'O', 'O']"
457,Ella no quiere flores ni que la enamoren,"['Ella', 'no', 'quiere', 'flores', 'ni', 'que', 'la', 'enamoren']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
458,Bout to have only one foot el,"['Bout', 'to', 'have', 'only', 'one', 'foot', 'el']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
459,@tamararosario02 BAD TRIP,"['@tamararosario02', 'BAD', 'TRIP']","['O', 'O', 'O']"
460,#Repost chiangmusic Cantantes 🎤 edarte29 @ginochiang76 @diegoch_21 Regala a Mamá en su día el … https://t.co/aDw9ySF5Lj,"['#Repost', 'chiangmusic', 'Cantantes', '🎤', 'edarte29', '@ginochiang76', '@diegoch_21', 'Regala', 'a', 'Mamá', 'en', 'su', 'día', 'el', '…', 'https://t.co/aDw9ySF5Lj']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
461,RT @femaIism : I 'M CRYING https://t.co/HRvLHXIu7F,"['RT', '@femaIism', ':', 'I', ""'M"", 'CRYING', 'https://t.co/HRvLHXIu7F']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
462,RT @wolfxmobz : THE STUPIDEST THING THAT EVER HAPPENED IN 2014 https://t.co/zQYXGlu1DF,"['RT', '@wolfxmobz', ':', 'THE', 'STUPIDEST', 'THING', 'THAT', 'EVER', 'HAPPENED', 'IN', '2014', 'https://t.co/zQYXGlu1DF']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
463,Feeling blue : Estar deprimido My dog was feeling a little blue today .,"['Feeling', 'blue', ':', 'Estar', 'deprimido', 'My', 'dog', 'was', 'feeling', 'a', 'little', 'blue', 'today', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
464,RT @LaNuevaInc : Entiéndanlo carajo https://t.co/VZogqMuJES,"['RT', '@LaNuevaInc', ':', 'Entiéndanlo', 'carajo', 'https://t.co/VZogqMuJES']","['O', 'O', 'O', 'O', 'O', 'O']"
465,Good morning #streetsyle #mystyle Jacket #bcbg @bcbgmaxazria shirt @topshop boots #stewartwiseman bag … http://t.co/6XaAbNJBAL,"['Good', 'morning', '#streetsyle', '#mystyle', 'Jacket', '#bcbg', '@bcbgmaxazria', 'shirt', '@topshop', 'boots', '#stewartwiseman', 'bag', '…', 'http://t.co/6XaAbNJBAL']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
466,Diles que tu me quieres me activa cc .,"['Diles', 'que', 'tu', 'me', 'quieres', 'me', 'activa', 'cc', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
467,X2 https://t.co/A7LhXrBeEb,"['X2', 'https://t.co/A7LhXrBeEb']","['O', 'O']"
468,@blackpresii duh,"['@blackpresii', 'duh']","['O', 'O']"
469,RT @worddiction : http://t.co/9w1Fcj76tF,"['RT', '@worddiction', ':', 'http://t.co/9w1Fcj76tF']","['O', 'O', 'O', 'O']"
470,"@Loulogio_Pi lo fuerte es que es por cómo se pronuncia R2D2 en inglés .. . "" ar tu di tu "" 😐","['@Loulogio_Pi', 'lo', 'fuerte', 'es', 'que', 'es', 'por', 'cómo', 'se', 'pronuncia', 'R2D2', 'en', 'inglés', '..', '.', '""', 'ar', 'tu', 'di', 'tu', '""', '😐']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
471,GTA and chill,"['GTA', 'and', 'chill']","['O', 'O', 'O']"
472,Puñeta si me vas a fallar hazlo antes de que empiece a enchularme .,"['Puñeta', 'si', 'me', 'vas', 'a', 'fallar', 'hazlo', 'antes', 'de', 'que', 'empiece', 'a', 'enchularme', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
473,Por tw cualquiera es atrevido,"['Por', 'tw', 'cualquiera', 'es', 'atrevido']","['O', 'O', 'O', 'O', 'O']"
474,Que cojones oyeee,"['Que', 'cojones', 'oyeee']","['O', 'O', 'O']"
475,"Niños , el vlog de la vuelta de NY , lo subiré el lunes . Voy a intentar descansar este fin de semana , o moriré . AIÓ . 😑💤","['Niños', ',', 'el', 'vlog', 'de', 'la', 'vuelta', 'de', 'NY', ',', 'lo', 'subiré', 'el', 'lunes', '.', 'Voy', 'a', 'intentar', 'descansar', 'este', 'fin', 'de', 'semana', ',', 'o', 'moriré', '.', 'AIÓ', '.', '😑💤']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
476,Si no me fallaran todo fuera un éxito .,"['Si', 'no', 'me', 'fallaran', 'todo', 'fuera', 'un', 'éxito', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
477,@fabiolapabon jajajaj llamaa,"['@fabiolapabon', 'jajajaj', 'llamaa']","['O', 'O', 'O']"
478,RT @mariasofia_14 : Lit . https://t.co/70jaWmQFBc,"['RT', '@mariasofia_14', ':', 'Lit', '.', 'https://t.co/70jaWmQFBc']","['O', 'O', 'O', 'O', 'O', 'O']"
479,RT @NicRendon : https://t.co/EIByz5ItHj,"['RT', '@NicRendon', ':', 'https://t.co/EIByz5ItHj']","['O', 'O', 'O', 'O']"
480,@Guera_Unica tu haces lo mismo y todavia busco !! lol cx,"['@Guera_Unica', 'tu', 'haces', 'lo', 'mismo', 'y', 'todavia', 'busco', '!!', 'lol', 'cx']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
481,"Alonso , Valentina y Paula bajo las influencias de su tía super cool ( Nati)💕 https://t.co/eKITIWFXnt","['Alonso', ',', 'Valentina', 'y', 'Paula', 'bajo', 'las', 'influencias', 'de', 'su', 'tía', 'super', 'cool', '(', 'Nati)💕', 'https://t.co/eKITIWFXnt']","['B-PER', 'O', 'B-PER', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O']"
482,Me : ' Ama me duele mi estomago y me siento mareado :( Mom : Estara embarazada @sanluispotoyees Me : NO !! Mom : Los hombres presienten asi aveces,"['Me', ':', ""'"", 'Ama', 'me', 'duele', 'mi', 'estomago', 'y', 'me', 'siento', 'mareado', ':(', 'Mom', ':', 'Estara', 'embarazada', '@sanluispotoyees', 'Me', ':', 'NO', '!!', 'Mom', ':', 'Los', 'hombres', 'presienten', 'asi', 'aveces']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
483,It 's been all Bayern second half,"['It', ""'s"", 'been', 'all', 'Bayern', 'second', 'half']","['O', 'O', 'O', 'O', 'B-GROUP', 'O', 'O']"
484,@VivianaG_M @nicolevazquez28 https://t.co/c2LUNN2jb3,"['@VivianaG_M', '@nicolevazquez28', 'https://t.co/c2LUNN2jb3']","['O', 'O', 'O']"
485,@rafrruko dañaste mi tuit sentimental,"['@rafrruko', 'dañaste', 'mi', 'tuit', 'sentimental']","['O', 'O', 'O', 'O', 'O']"
486,RT @Addrryy : https://t.co/nxwkjUW2Nd,"['RT', '@Addrryy', ':', 'https://t.co/nxwkjUW2Nd']","['O', 'O', 'O', 'O']"
487,Mineee 😍 https://t.co/SYaUFK4nd5,"['Mineee', '😍', 'https://t.co/SYaUFK4nd5']","['O', 'O', 'O']"
488,Y yo que pensé que 11 sería fácil .. .,"['Y', 'yo', 'que', 'pensé', 'que', '11', 'sería', 'fácil', '..', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
489,Check out this outfit !! Blusa estampada de chiffon Collar negro Pulseras plateadas Pulsera blanca http://t.co/gCgLmwEWsd,"['Check', 'out', 'this', 'outfit', '!!', 'Blusa', 'estampada', 'de', 'chiffon', 'Collar', 'negro', 'Pulseras', 'plateadas', 'Pulsera', 'blanca', 'http://t.co/gCgLmwEWsd']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
490,Estos prepas de este año están difíciles .,"['Estos', 'prepas', 'de', 'este', 'año', 'están', 'difíciles', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
491,"“ @bobbypulido425 : Feliz cumpleaños @normusic We 're getting old .. . ” Mmm not my friend , but someone else yes !! !!","['“', '@bobbypulido425', ':', 'Feliz', 'cumpleaños', '@normusic', 'We', ""'re"", 'getting', 'old', '..', '.', '”', 'Mmm', 'not', 'my', 'friend', ',', 'but', 'someone', 'else', 'yes', '!!', '!!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
492,Mi amor por los frappés de La Frutera es algo extremo,"['Mi', 'amor', 'por', 'los', 'frappés', 'de', 'La', 'Frutera', 'es', 'algo', 'extremo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
493,Tengo 17 días para pasar una clase de un semestre,"['Tengo', '17', 'días', 'para', 'pasar', 'una', 'clase', 'de', 'un', 'semestre']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
494,RT @ZarcortGame : Solo en patreon ! https://t.co/Glu2IVyrR7 https://t.co/7zOXCwsHiD,"['RT', '@ZarcortGame', ':', 'Solo', 'en', 'patreon', '!', 'https://t.co/Glu2IVyrR7', 'https://t.co/7zOXCwsHiD']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
495,Para no perder la costumbre 😘 #Placita https://t.co/mzbX6kadRY,"['Para', 'no', 'perder', 'la', 'costumbre', '😘', '#Placita', 'https://t.co/mzbX6kadRY']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
496,"Discutiendo con ineptos que no aportan tres carajos , Señooooor , es demasiada la paciencia que necesito","['Discutiendo', 'con', 'ineptos', 'que', 'no', 'aportan', 'tres', 'carajos', ',', 'Señooooor', ',', 'es', 'demasiada', 'la', 'paciencia', 'que', 'necesito']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
497,@blackpresii pendejo fui yo que te pregunté mamau,"['@blackpresii', 'pendejo', 'fui', 'yo', 'que', 'te', 'pregunté', 'mamau']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
498,RT @myboycrush : this is my favorite video to ever exist https://t.co/6vCSqsKdH8,"['RT', '@myboycrush', ':', 'this', 'is', 'my', 'favorite', 'video', 'to', 'ever', 'exist', 'https://t.co/6vCSqsKdH8']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
499,ok let 's take a break,"['ok', 'let', ""'s"", 'take', 'a', 'break']","['O', 'O', 'O', 'O', 'O', 'O']"
500,Donde Esta todo el mundo ?! SJ esta vacío !! !,"['Donde', 'Esta', 'todo', 'el', 'mundo', '?!', 'SJ', 'esta', 'vacío', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O']"
501,Queremos premiarte por ser parte de Salhua Clothing ! Para ganarte tu gift card de $70.00 sólo debes … https://t.co/kURGriOi2c,"['Queremos', 'premiarte', 'por', 'ser', 'parte', 'de', 'Salhua', 'Clothing', '!', 'Para', 'ganarte', 'tu', 'gift', 'card', 'de', '$70.00', 'sólo', 'debes', '…', 'https://t.co/kURGriOi2c']","['O', 'O', 'O', 'O', 'O', 'O', 'B-ORG', 'I-ORG', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
502,Me ha gustado un vídeo de @YouTube de @chiwy8yt ( http://t.co/kv6hNiBd20 - ¡ ESTÁIS LOCOS ! | Analizando Retos-game absurdos |,"['Me', 'ha', 'gustado', 'un', 'vídeo', 'de', '@YouTube', 'de', '@chiwy8yt', '(', 'http://t.co/kv6hNiBd20', '-', '¡', 'ESTÁIS', 'LOCOS', '!', '|', 'Analizando', 'Retos-game', 'absurdos', '|']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
503,RT @yaydeliz : Tranqui que yo también se pichar 😘,"['RT', '@yaydeliz', ':', 'Tranqui', 'que', 'yo', 'también', 'se', 'pichar', '😘']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
504,RT @cee_gonz : ¿ Me llevas un año ? ¡ WOW ! Cuán mayor eres . ¿ Quieres una silla de ruedas y un pamper ? Ya que eres tan viejo y superior a mi . E …,"['RT', '@cee_gonz', ':', '¿', 'Me', 'llevas', 'un', 'año', '?', '¡', 'WOW', '!', 'Cuán', 'mayor', 'eres', '.', '¿', 'Quieres', 'una', 'silla', 'de', 'ruedas', 'y', 'un', 'pamper', '?', 'Ya', 'que', 'eres', 'tan', 'viejo', 'y', 'superior', 'a', 'mi', '.', 'E', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
505,RT @FlTFAM : Killer leg workout https://t.co/OOKsk0MQyR,"['RT', '@FlTFAM', ':', 'Killer', 'leg', 'workout', 'https://t.co/OOKsk0MQyR']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
506,no tengo sueño,"['no', 'tengo', 'sueño']","['O', 'O', 'O']"
507,@Abducid0 estaba pensando en eso orita,"['@Abducid0', 'estaba', 'pensando', 'en', 'eso', 'orita']","['O', 'O', 'O', 'O', 'O', 'O']"
508,@reIatabIe @massofrancisco KAJAJAJAJAJJAJAJAJ COSAS QUE YO HARIA,"['@reIatabIe', '@massofrancisco', 'KAJAJAJAJAJJAJAJAJ', 'COSAS', 'QUE', 'YO', 'HARIA']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
509,JAJAJAJAJ https://t.co/au7Tj1b3Pl,"['JAJAJAJAJ', 'https://t.co/au7Tj1b3Pl']","['O', 'O']"
510,Y que mi corazón siempre tuyo sera,"['Y', 'que', 'mi', 'corazón', 'siempre', 'tuyo', 'sera']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
511,RT @ObviousOstrich : A dog is always a dog unless it is a cat .,"['RT', '@ObviousOstrich', ':', 'A', 'dog', 'is', 'always', 'a', 'dog', 'unless', 'it', 'is', 'a', 'cat', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
512,RT @Wizdomly : #m_eye_nd #wizdomly https://t.co/yAzHmerYGO,"['RT', '@Wizdomly', ':', '#m_eye_nd', '#wizdomly', 'https://t.co/yAzHmerYGO']","['O', 'O', 'O', 'O', 'O', 'O']"
513,Woooojuuu baby @NEGROPR76 ya tenemos lavadora !! Siguen las bendicioneS !! Gracias !! !,"['Woooojuuu', 'baby', '@NEGROPR76', 'ya', 'tenemos', 'lavadora', '!!', 'Siguen', 'las', 'bendicioneS', '!!', 'Gracias', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
514,"RT @YoMedicoOficial : Coranzón latiendo , Cirugía cardíaca . https://t.co/O584mQJUyh","['RT', '@YoMedicoOficial', ':', 'Coranzón', 'latiendo', ',', 'Cirugía', 'cardíaca', '.', 'https://t.co/O584mQJUyh']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
515,RT @KryssiaPaniagua : Esto de estar en sequia me tiene mal mal mal mal mal,"['RT', '@KryssiaPaniagua', ':', 'Esto', 'de', 'estar', 'en', 'sequia', 'me', 'tiene', 'mal', 'mal', 'mal', 'mal', 'mal']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
516,😂😂😂😘😘 https://t.co/Yqu88hhbRw,"['😂😂😂😘😘', 'https://t.co/Yqu88hhbRw']","['O', 'O']"
517,No sé ni para que pregunto 😂 @lorraine_otero https://t.co/Tdunccwi4F,"['No', 'sé', 'ni', 'para', 'que', 'pregunto', '😂', '@lorraine_otero', 'https://t.co/Tdunccwi4F']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
518,I need taco bell,"['I', 'need', 'taco', 'bell']","['O', 'O', 'O', 'O']"
519,Buenos días mundo .,"['Buenos', 'días', 'mundo', '.']","['O', 'O', 'O', 'O']"
520,RT @SoDamnTrue : Her life is my dream life https://t.co/xKm7ZxxQQI,"['RT', '@SoDamnTrue', ':', 'Her', 'life', 'is', 'my', 'dream', 'life', 'https://t.co/xKm7ZxxQQI']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
521,RT @RUINER : LMFAOOOOO https://t.co/RY10wALhGV,"['RT', '@RUINER', ':', 'LMFAOOOOO', 'https://t.co/RY10wALhGV']","['O', 'O', 'O', 'O', 'O']"
522,@esangie023 WHAT ?,"['@esangie023', 'WHAT', '?']","['O', 'O', 'O']"
523,"RT @akaVrimzey : "" Es vacilando jaja "" esa es la excusa pa por siacaso te guayas 😂😂😂😂 https://t.co/ghjBecSHwQ","['RT', '@akaVrimzey', ':', '""', 'Es', 'vacilando', 'jaja', '""', 'esa', 'es', 'la', 'excusa', 'pa', 'por', 'siacaso', 'te', 'guayas', '😂😂😂😂', 'https://t.co/ghjBecSHwQ']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
524,Extrañando este personaje #YaMismo https://t.co/LHVlHov2RG,"['Extrañando', 'este', 'personaje', '#YaMismo', 'https://t.co/LHVlHov2RG']","['O', 'O', 'O', 'O', 'O']"
525,""" this is another chance for us to get it right . "" Happy New Year","['""', 'this', 'is', 'another', 'chance', 'for', 'us', 'to', 'get', 'it', 'right', '.', '""', 'Happy', 'New', 'Year']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
526,@TransitoPR tenías q llegar a laS 9am como yo !,"['@TransitoPR', 'tenías', 'q', 'llegar', 'a', 'laS', '9am', 'como', 'yo', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
527,RT @dencelpr14 : 👌 https://t.co/ZqSTI7NYNU,"['RT', '@dencelpr14', ':', '👌', 'https://t.co/ZqSTI7NYNU']","['O', 'O', 'O', 'O', 'O']"
528,RT @feminismfranta : 16 . SEX https://t.co/ak82URdXb1,"['RT', '@feminismfranta', ':', '16', '.', 'SEX', 'https://t.co/ak82URdXb1']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
529,"by @jessicacediel "" Familia ! Aquí les comparto algo de mi visita a Sábado Gigante ! Gracias Don … http://t.co/UadC8YOpDX","['by', '@jessicacediel', '""', 'Familia', '!', 'Aquí', 'les', 'comparto', 'algo', 'de', 'mi', 'visita', 'a', 'Sábado', 'Gigante', '!', 'Gracias', 'Don', '…', 'http://t.co/UadC8YOpDX']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
530,La haría acampar con mis amistades este verano .,"['La', 'haría', 'acampar', 'con', 'mis', 'amistades', 'este', 'verano', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
531,"@camibeatriz13 a mi no me importa na de taylor tbh , es mas encuentro hasta ridiculo que la gente se molestara por eso","['@camibeatriz13', 'a', 'mi', 'no', 'me', 'importa', 'na', 'de', 'taylor', 'tbh', ',', 'es', 'mas', 'encuentro', 'hasta', 'ridiculo', 'que', 'la', 'gente', 'se', 'molestara', 'por', 'eso']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
532,no quiero ir a la clase de la 1 😩,"['no', 'quiero', 'ir', 'a', 'la', 'clase', 'de', 'la', '1', '😩']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
533,Me creo graciosa .,"['Me', 'creo', 'graciosa', '.']","['O', 'O', 'O', 'O']"
534,@chelita1123 omg I 'm done with you Un Dia Te cuento / . - 😂👌,"['@chelita1123', 'omg', 'I', ""'m"", 'done', 'with', 'you', 'Un', 'Dia', 'Te', 'cuento', '/', '.', '-', '😂👌']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
535,En PR se estaba matando por 26millones y en Orlando la loto esta en $250 Millones !! !! A jugar !! !,"['En', 'PR', 'se', 'estaba', 'matando', 'por', '26millones', 'y', 'en', 'Orlando', 'la', 'loto', 'esta', 'en', '$250', 'Millones', '!!', '!!', 'A', 'jugar', '!!', '!']","['O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
536,RT @UnivisionSports : ! GOOOOL ! En apenas 2 minutos del inicio del partido #Messi anotó el 1er gol de #ARG . Revívelo aquí @VerizonLatino http …,"['RT', '@UnivisionSports', ':', '!', 'GOOOOL', '!', 'En', 'apenas', '2', 'minutos', 'del', 'inicio', 'del', 'partido', '#Messi', 'anotó', 'el', '1er', 'gol', 'de', '#ARG', '.', 'Revívelo', 'aquí', '@VerizonLatino', 'http', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
537,RT @cntrvrsial : buenos días https://t.co/dmBIWwHkGu,"['RT', '@cntrvrsial', ':', 'buenos', 'días', 'https://t.co/dmBIWwHkGu']","['O', 'O', 'O', 'O', 'O', 'O']"
538,RT @Jeansel4 : Yo daré lo que tu des .,"['RT', '@Jeansel4', ':', 'Yo', 'daré', 'lo', 'que', 'tu', 'des', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
539,RT @LovableNotebook : Do n't waste your time stressing about things you can n't change .,"['RT', '@LovableNotebook', ':', 'Do', ""n't"", 'waste', 'your', 'time', 'stressing', 'about', 'things', 'you', 'can', ""n't"", 'change', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
540,"* Yo a las 11am * "" Voy a adelantar todo lo que tenga y salir de eso "" * Yo a las 9pm * "" Me importa un carajo , no voy a hacer naaaaa ""","['*', 'Yo', 'a', 'las', '11am', '*', '""', 'Voy', 'a', 'adelantar', 'todo', 'lo', 'que', 'tenga', 'y', 'salir', 'de', 'eso', '""', '*', 'Yo', 'a', 'las', '9pm', '*', '""', 'Me', 'importa', 'un', 'carajo', ',', 'no', 'voy', 'a', 'hacer', 'naaaaa', '""']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
541,@sergiojahell 2/2 Subscríbase en Mi Verizon para recibir notificaciones y lo mantendremos informado . http://t.co/obUiQ35APL ~ AS,"['@sergiojahell', '2/2', 'Subscríbase', 'en', 'Mi', 'Verizon', 'para', 'recibir', 'notificaciones', 'y', 'lo', 'mantendremos', 'informado', '.', 'http://t.co/obUiQ35APL', '~', 'AS']","['O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
542,@soytiton anda nena ! Jaja yo estoy por las mañanas,"['@soytiton', 'anda', 'nena', '!', 'Jaja', 'yo', 'estoy', 'por', 'las', 'mañanas']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
543,@LaughWithAshley uoeno I love arizonas <3 @DrinkAriZona,"['@LaughWithAshley', 'uoeno', 'I', 'love', 'arizonas', '<3', '@DrinkAriZona']","['O', 'O', 'O', 'O', 'B-GROUP', 'O', 'O']"
544,"Mano , tengo tanta gente linda en mi vida . Los quiero mucho 💖 HAPPY THANKSGIVING .","['Mano', ',', 'tengo', 'tanta', 'gente', 'linda', 'en', 'mi', 'vida', '.', 'Los', 'quiero', 'mucho', '💖', 'HAPPY', 'THANKSGIVING', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-TIME', 'O']"
545,"@veromolina08 Million Years Ago es para no parar de llorar nunca , y ver tu vida en un flashback bien cabron , me mata","['@veromolina08', 'Million', 'Years', 'Ago', 'es', 'para', 'no', 'parar', 'de', 'llorar', 'nunca', ',', 'y', 'ver', 'tu', 'vida', 'en', 'un', 'flashback', 'bien', 'cabron', ',', 'me', 'mata']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
546,RT @rrubenedgardo : te cuesta $0.00 ser leal,"['RT', '@rrubenedgardo', ':', 'te', 'cuesta', '$0.00', 'ser', 'leal']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
547,@chelita1123 @princessstacy_ You Know What Stacy Go Fuck Yourself 😭😂 I Take Ruben & Campeon 😍😍😍😍😍😍😍 ❤ ️,"['@chelita1123', '@princessstacy_', 'You', 'Know', 'What', 'Stacy', 'Go', 'Fuck', 'Yourself', '😭😂', 'I', 'Take', 'Ruben', '&', 'Campeon', '😍😍😍😍😍😍😍', '❤', '️']","['O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'B-PER', 'O', 'O', 'O']"
548,You know you 're a fatass when you cant wait for the food to get cold so you burn your entire mouth,"['You', 'know', 'you', ""'re"", 'a', 'fatass', 'when', 'you', 'cant', 'wait', 'for', 'the', 'food', 'to', 'get', 'cold', 'so', 'you', 'burn', 'your', 'entire', 'mouth']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
549,@MartinDiaz5614 estabamos a esa hora ayer jajajaja,"['@MartinDiaz5614', 'estabamos', 'a', 'esa', 'hora', 'ayer', 'jajajaja']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
550,QUE CONCIERTOOO MÁSSS CABRONNNNNNN @NataliaJimenez,"['QUE', 'CONCIERTOOO', 'MÁSSS', 'CABRONNNNNNN', '@NataliaJimenez']","['O', 'O', 'O', 'O', 'O']"
551,"RT @itsGirICode : When they 're read receipts off , but you know they always on there phone https://t.co/bmY6lyBqCO","['RT', '@itsGirICode', ':', 'When', 'they', ""'re"", 'read', 'receipts', 'off', ',', 'but', 'you', 'know', 'they', 'always', 'on', 'there', 'phone', 'https://t.co/bmY6lyBqCO']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
552,Una mini Melo flipanding . https://t.co/cuuCHHJeoD,"['Una', 'mini', 'Melo', 'flipanding', '.', 'https://t.co/cuuCHHJeoD']","['O', 'O', 'O', 'O', 'O', 'O']"
553,@Carrabbas @markevitts what is that dish Call ? It looks great !,"['@Carrabbas', '@markevitts', 'what', 'is', 'that', 'dish', 'Call', '?', 'It', 'looks', 'great', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
554,RT @KronnoZMx : Aqui les dejo el link de descargar del nuevo album de Kronno zomber - Yo soy un rap player 🙈 https://t.co/L0TVkFcYnd vía @HHG …,"['RT', '@KronnoZMx', ':', 'Aqui', 'les', 'dejo', 'el', 'link', 'de', 'descargar', 'del', 'nuevo', 'album', 'de', 'Kronno', 'zomber', '-', 'Yo', 'soy', 'un', 'rap', 'player', '🙈', 'https://t.co/L0TVkFcYnd', 'vía', '@HHG', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
555,RT @ComedyPosts : my mom likes to play this game called yell from 3 rooms away & get upset when i can n’t hear her,"['RT', '@ComedyPosts', ':', 'my', 'mom', 'likes', 'to', 'play', 'this', 'game', 'called', 'yell', 'from', '3', 'rooms', 'away', '&', 'get', 'upset', 'when', 'i', 'can', 'n’t', 'hear', 'her']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
556,RT @greymvr : Yo en Sams y Cotsco cuando estan dando muestras : https://t.co/8KgEevCvaD,"['RT', '@greymvr', ':', 'Yo', 'en', 'Sams', 'y', 'Cotsco', 'cuando', 'estan', 'dando', 'muestras', ':', 'https://t.co/8KgEevCvaD']","['O', 'O', 'O', 'O', 'O', 'B-ORG', 'O', 'B-ORG', 'O', 'O', 'O', 'O', 'O', 'O']"
557,"My boyfriend is n't allowed to hug other chicks , you better pet that hoe on the head like a dog . Hahah oh shit its oficial .. @crystal_jaimes","['My', 'boyfriend', 'is', ""n't"", 'allowed', 'to', 'hug', 'other', 'chicks', ',', 'you', 'better', 'pet', 'that', 'hoe', 'on', 'the', 'head', 'like', 'a', 'dog', '.', 'Hahah', 'oh', 'shit', 'its', 'oficial', '..', '@crystal_jaimes']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
558,Siento que tengo pesas de 25 lbs en cada uno de mis muslos,"['Siento', 'que', 'tengo', 'pesas', 'de', '25', 'lbs', 'en', 'cada', 'uno', 'de', 'mis', 'muslos']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
559,@comolamarca jajaja si mano pero hacia unas cosas algarete,"['@comolamarca', 'jajaja', 'si', 'mano', 'pero', 'hacia', 'unas', 'cosas', 'algarete']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
560,@karindlg82 2/2 Aquí le mando un acceso directo con la forma para ver si sus números son elegibles . Gracias http://t.co/uEYr1YNQvG ~ AS,"['@karindlg82', '2/2', 'Aquí', 'le', 'mando', 'un', 'acceso', 'directo', 'con', 'la', 'forma', 'para', 'ver', 'si', 'sus', 'números', 'son', 'elegibles', '.', 'Gracias', 'http://t.co/uEYr1YNQvG', '~', 'AS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
561,Back to basis 🔙 !! Blusa azul $ 20.00 porque es hora de darle más color a tu clóset . Pedidos 096 8807 384 http://t.co/hHjUK3xSEX,"['Back', 'to', 'basis', '🔙', '!!', 'Blusa', 'azul', '$', '20.00', 'porque', 'es', 'hora', 'de', 'darle', 'más', 'color', 'a', 'tu', 'clóset', '.', 'Pedidos', '096', '8807', '384', 'http://t.co/hHjUK3xSEX']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
562,RT @reIatabIe : what did i just watch 😳😳 http://t.co/R7QrlMzYLU,"['RT', '@reIatabIe', ':', 'what', 'did', 'i', 'just', 'watch', '😳😳', 'http://t.co/R7QrlMzYLU']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
563,Queriendo estar contigo en cualquier parte fuera de PR .,"['Queriendo', 'estar', 'contigo', 'en', 'cualquier', 'parte', 'fuera', 'de', 'PR', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O']"
564,@KikeOficial_ algo así,"['@KikeOficial_', 'algo', 'así']","['O', 'O', 'O']"
565,RT @LifeTraveIing : I want this right now . https://t.co/Q0DdGsSn7c,"['RT', '@LifeTraveIing', ':', 'I', 'want', 'this', 'right', 'now', '.', 'https://t.co/Q0DdGsSn7c']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
566,"RT @guanyin_ : ‼️‼️‼️‼️‼️‼️‼️‼️ 💖 Necesitan un hogar , favor de compartir y dm para información . Son satitos ( adoptaron al crema ) 💖 https://t …","['RT', '@guanyin_', ':', '‼️‼️‼️‼️‼️‼️‼️‼️', '💖', 'Necesitan', 'un', 'hogar', ',', 'favor', 'de', 'compartir', 'y', 'dm', 'para', 'información', '.', 'Son', 'satitos', '(', 'adoptaron', 'al', 'crema', ')', '💖', 'https://t', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
567,@mayarodriguez96 @saocopapi @luisgierbolini5 @rjtorito14 @edu_fuertes1 @TommyBalsera,"['@mayarodriguez96', '@saocopapi', '@luisgierbolini5', '@rjtorito14', '@edu_fuertes1', '@TommyBalsera']","['O', 'O', 'O', 'O', 'O', 'O']"
568,Parece un pastor un domingo,"['Parece', 'un', 'pastor', 'un', 'domingo']","['O', 'O', 'O', 'O', 'O']"
569,"RT @niftyvibe : When you stop chasing , they start noticing .","['RT', '@niftyvibe', ':', 'When', 'you', 'stop', 'chasing', ',', 'they', 'start', 'noticing', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
570,RT @ltsChuckBass : I 'm so happy Lily and Rufus are dating irl http://t.co/bwvj7v8DAp,"['RT', '@ltsChuckBass', ':', 'I', ""'m"", 'so', 'happy', 'Lily', 'and', 'Rufus', 'are', 'dating', 'irl', 'http://t.co/bwvj7v8DAp']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'B-PER', 'O', 'O', 'O', 'O']"
571,You and I,"['You', 'and', 'I']","['O', 'O', 'O']"
572,"@Svalero_ ¡ Hola Sergio ! Por el momento solo tenemos información sobre equipo y servicios en Estados Unidos , ¿ tiene cuenta con nosotros ? ~ MH","['@Svalero_', '¡', 'Hola', 'Sergio', '!', 'Por', 'el', 'momento', 'solo', 'tenemos', 'información', 'sobre', 'equipo', 'y', 'servicios', 'en', 'Estados', 'Unidos', ',', '¿', 'tiene', 'cuenta', 'con', 'nosotros', '?', '~', 'MH']","['O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
573,"El vlog de hoy , pequeñas mascarillas faciales : QUÉ ESTOY HACIENDO ?! https://t.co/7bOdYtJIrv","['El', 'vlog', 'de', 'hoy', ',', 'pequeñas', 'mascarillas', 'faciales', ':', 'QUÉ', 'ESTOY', 'HACIENDO', '?!', 'https://t.co/7bOdYtJIrv']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
574,"Your name across my heart , written in gold , a permanent mark 🎶","['Your', 'name', 'across', 'my', 'heart', ',', 'written', 'in', 'gold', ',', 'a', 'permanent', 'mark', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
575,RT @ikerine98 : Me he tomado la molestia de hacerte una foto de perfil tambien @Kronnomc xD espero que te guste crack ! ;) https://t.co/Pj0lV …,"['RT', '@ikerine98', ':', 'Me', 'he', 'tomado', 'la', 'molestia', 'de', 'hacerte', 'una', 'foto', 'de', 'perfil', 'tambien', '@Kronnomc', 'xD', 'espero', 'que', 'te', 'guste', 'crack', '!', ';)', 'https://t.co/Pj0lV', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
576,RT @SexualGif : I saw this and loved it . https://t.co/P24OdVYWAA,"['RT', '@SexualGif', ':', 'I', 'saw', 'this', 'and', 'loved', 'it', '.', 'https://t.co/P24OdVYWAA']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
577,RT @Shaquille_alamo : Nunca cambies un amor verdadero por una atracción del momento .,"['RT', '@Shaquille_alamo', ':', 'Nunca', 'cambies', 'un', 'amor', 'verdadero', 'por', 'una', 'atracción', 'del', 'momento', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
578,"RT @Kronno_Fans : ESPERO QUE MI CAMISETA PERSONALIZADA OS GUSTE A LOS DOS , OS QUIERO MUCHOOOOOOOO @KatiaLisob @Kronnomc https://t.co/042b8Ns …","['RT', '@Kronno_Fans', ':', 'ESPERO', 'QUE', 'MI', 'CAMISETA', 'PERSONALIZADA', 'OS', 'GUSTE', 'A', 'LOS', 'DOS', ',', 'OS', 'QUIERO', 'MUCHOOOOOOOO', '@KatiaLisob', '@Kronnomc', 'https://t.co/042b8Ns', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
579,"Something came up : Algo surgió ( Un problema ) Sorry , something came up and I can n't make it to the party","['Something', 'came', 'up', ':', 'Algo', 'surgió', '(', 'Un', 'problema', ')', 'Sorry', ',', 'something', 'came', 'up', 'and', 'I', 'can', ""n't"", 'make', 'it', 'to', 'the', 'party']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
580,@adriboni2015 vamo a bebeeeeel,"['@adriboni2015', 'vamo', 'a', 'bebeeeeel']","['O', 'O', 'O', 'O']"
581,Found La Murga by Willie Colón with #Shazam . http://t.co/hLoKLWXnYG,"['Found', 'La', 'Murga', 'by', 'Willie', 'Colón', 'with', '#Shazam', '.', 'http://t.co/hLoKLWXnYG']","['O', 'B-TITLE', 'I-TITLE', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O']"
582,Piel morena lo que uno necesita .,"['Piel', 'morena', 'lo', 'que', 'uno', 'necesita', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
583,Me tiraría al cine de nuevo aunque sea sola .,"['Me', 'tiraría', 'al', 'cine', 'de', 'nuevo', 'aunque', 'sea', 'sola', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
584,RT @SuperheroFeed : My heart . https://t.co/O4D8m46S7u,"['RT', '@SuperheroFeed', ':', 'My', 'heart', '.', 'https://t.co/O4D8m46S7u']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
585,“ @AidaPhillips : I think there should be a #HugYourPublicistDay what do u think ? @AngieEstilo @karentsierra ( cont ) http://t.co/6bsRRzlpuq”YES,"['“', '@AidaPhillips', ':', 'I', 'think', 'there', 'should', 'be', 'a', '#HugYourPublicistDay', 'what', 'do', 'u', 'think', '?', '@AngieEstilo', '@karentsierra', '(', 'cont', ')', 'http://t.co/6bsRRzlpuq”YES']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
586,RT @biebsft4idiots : If this is n't me .. . https://t.co/UyRo9yXZHl,"['RT', '@biebsft4idiots', ':', 'If', 'this', 'is', ""n't"", 'me', '..', '.', 'https://t.co/UyRo9yXZHl']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
587,Buenos dias !! ☀️☀️ 😁 tengo tanto sueño que pagaba un dia mas de hotel con tal de dormir un poco mas .. . 💤 😴 https://t.co/A6SMTSmLJc,"['Buenos', 'dias', '!!', '☀️☀️', '😁', 'tengo', 'tanto', 'sueño', 'que', 'pagaba', 'un', 'dia', 'mas', 'de', 'hotel', 'con', 'tal', 'de', 'dormir', 'un', 'poco', 'mas', '..', '.', '💤', '😴', 'https://t.co/A6SMTSmLJc']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
588,@elizaaaabethhh_ De Nada :),"['@elizaaaabethhh_', 'De', 'Nada', ':)']","['O', 'O', 'O', 'O']"
589,Cuando será el día que no tenga alergia,"['Cuando', 'será', 'el', 'día', 'que', 'no', 'tenga', 'alergia']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
590,@aleeisaabeel da fuq ? no te creo,"['@aleeisaabeel', 'da', 'fuq', '?', 'no', 'te', 'creo']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
591,RT @PatriiDrummer : @YellowMellowMG creo que mi novia me va a dejar por tu single . #PhantomLimb,"['RT', '@PatriiDrummer', ':', '@YellowMellowMG', 'creo', 'que', 'mi', 'novia', 'me', 'va', 'a', 'dejar', 'por', 'tu', 'single', '.', '#PhantomLimb']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
592,"Definitivamente yo estoy para tener algo serio , el vacilon me canso .","['Definitivamente', 'yo', 'estoy', 'para', 'tener', 'algo', 'serio', ',', 'el', 'vacilon', 'me', 'canso', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
593,I 'm so sick of that same old love the kind that breaks your heart .,"['I', ""'m"", 'so', 'sick', 'of', 'that', 'same', 'old', 'love', 'the', 'kind', 'that', 'breaks', 'your', 'heart', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
594,Si yo I Stacy nos conosimos pos Fue Por Algo (; !!! 😂😂,"['Si', 'yo', 'I', 'Stacy', 'nos', 'conosimos', 'pos', 'Fue', 'Por', 'Algo', '(;', '!!!', '😂😂']","['O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
595,RT @pacifiedtears : please ٩ ( ^ᴗ^ ) ۶ https://t.co/5M20Uzk1cJ,"['RT', '@pacifiedtears', ':', 'please', '٩', '(', '^ᴗ^', ')', '۶', 'https://t.co/5M20Uzk1cJ']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
596,"RT @GabrielMangual : #ConversacionesDeMujeres "" Loca , tírale . Que nos pague shots . ""","['RT', '@GabrielMangual', ':', '#ConversacionesDeMujeres', '""', 'Loca', ',', 'tírale', '.', 'Que', 'nos', 'pague', 'shots', '.', '""']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
597,* llorando * https://t.co/vbGFQsA9S4,"['*', 'llorando', '*', 'https://t.co/vbGFQsA9S4']","['O', 'O', 'O', 'O']"
598,RT @athvna : https://t.co/oWMfTSqJ8X,"['RT', '@athvna', ':', 'https://t.co/oWMfTSqJ8X']","['O', 'O', 'O', 'O']"
599,@spensal6 es que tu no viste los snapchats 😂😂😂,"['@spensal6', 'es', 'que', 'tu', 'no', 'viste', 'los', 'snapchats', '😂😂😂']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O']"
600,@sanluispotoyees De Nada Princesa ♥ I 'm so lucky to have such a gorgeous girlfriend like you ♥,"['@sanluispotoyees', 'De', 'Nada', 'Princesa', '♥', 'I', ""'m"", 'so', 'lucky', 'to', 'have', 'such', 'a', 'gorgeous', 'girlfriend', 'like', 'you', '♥']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
601,""" @caralbowen : im so lonely its beyond a joke ""","['""', '@caralbowen', ':', 'im', 'so', 'lonely', 'its', 'beyond', 'a', 'joke', '""']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
602,@fabiolapabon jajajaj este video siempre me la explota,"['@fabiolapabon', 'jajajaj', 'este', 'video', 'siempre', 'me', 'la', 'explota']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
603,"@elchicopoeta85 ¡ Qué tal ! Nos encantaría tenerlo como cliente . Tenemos teléfonos de contrato , EDGE y prepago ¿ Ya aplico para una cuenta ? ~ AS","['@elchicopoeta85', '¡', 'Qué', 'tal', '!', 'Nos', 'encantaría', 'tenerlo', 'como', 'cliente', '.', 'Tenemos', 'teléfonos', 'de', 'contrato', ',', 'EDGE', 'y', 'prepago', '¿', 'Ya', 'aplico', 'para', 'una', 'cuenta', '?', '~', 'AS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
604,GOOOOOL DE CRUZ AZUL 💙⚽️,"['GOOOOOL', 'DE', 'CRUZ', 'AZUL', '💙⚽️']","['O', 'O', 'B-GROUP', 'I-GROUP', 'O']"
605,RT @yaroldis6 : quiero un enchule que valga la pena,"['RT', '@yaroldis6', ':', 'quiero', 'un', 'enchule', 'que', 'valga', 'la', 'pena']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
606,Tengo que estudiar pero no encuentro ganas .,"['Tengo', 'que', 'estudiar', 'pero', 'no', 'encuentro', 'ganas', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
607,Los verdaderos amigos siempre ven la realidad de la persona que te gusta o te interesa .,"['Los', 'verdaderos', 'amigos', 'siempre', 'ven', 'la', 'realidad', 'de', 'la', 'persona', 'que', 'te', 'gusta', 'o', 'te', 'interesa', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
608,Hay que inventarse nuevos jangueos,"['Hay', 'que', 'inventarse', 'nuevos', 'jangueos']","['O', 'O', 'O', 'O', 'O']"
609,"RT @alzhng : "" I always knew this day would come We 'd be standing one by one With our future in our hands So many dreams so many plans . ""","['RT', '@alzhng', ':', '""', 'I', 'always', 'knew', 'this', 'day', 'would', 'come', 'We', ""'d"", 'be', 'standing', 'one', 'by', 'one', 'With', 'our', 'future', 'in', 'our', 'hands', 'So', 'many', 'dreams', 'so', 'many', 'plans', '.', '""']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
610,RT @Alondraslt : yo no puedo ver a la gente llorar porque me dan ganas de reír 😐,"['RT', '@Alondraslt', ':', 'yo', 'no', 'puedo', 'ver', 'a', 'la', 'gente', 'llorar', 'porque', 'me', 'dan', 'ganas', 'de', 'reír', '😐']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
611,Fulfillment : Realización The #1 Fulfillment Factor : Do What You Love Every Day,"['Fulfillment', ':', 'Realización', 'The', '#1', 'Fulfillment', 'Factor', ':', 'Do', 'What', 'You', 'Love', 'Every', 'Day']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
612,"RT @worIds : milos , greece https://t.co/9KLKc1MlNl","['RT', '@worIds', ':', 'milos', ',', 'greece', 'https://t.co/9KLKc1MlNl']","['O', 'O', 'O', 'B-LOC', 'I-LOC', 'I-LOC', 'O']"
613,No Tengo Que ser Venezolana .. . Tampoco Tener Familia en Cuba .. . No tengo Que Visitar Ucrania .. . Para … http://t.co/trqgFc9ssU,"['No', 'Tengo', 'Que', 'ser', 'Venezolana', '..', '.', 'Tampoco', 'Tener', 'Familia', 'en', 'Cuba', '..', '.', 'No', 'tengo', 'Que', 'Visitar', 'Ucrania', '..', '.', 'Para', '…', 'http://t.co/trqgFc9ssU']","['O', 'O', 'O', 'O', 'B-OTHER', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O']"
614,Whenever you 're around I always seem to smile 🎶,"['Whenever', 'you', ""'re"", 'around', 'I', 'always', 'seem', 'to', 'smile', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
615,"RT @Zic__Zac : Yo antes no sabía mucho lo que es eso extrañar , desde que no estás aprendí , gracias por eso .. . y por lo del amor .","['RT', '@Zic__Zac', ':', 'Yo', 'antes', 'no', 'sabía', 'mucho', 'lo', 'que', 'es', 'eso', 'extrañar', ',', 'desde', 'que', 'no', 'estás', 'aprendí', ',', 'gracias', 'por', 'eso', '..', '.', 'y', 'por', 'lo', 'del', 'amor', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
616,RT @NicRendon : Voy a hacer un go fund me para hacerme las tetas,"['RT', '@NicRendon', ':', 'Voy', 'a', 'hacer', 'un', 'go', 'fund', 'me', 'para', 'hacerme', 'las', 'tetas']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
617,Tb 💕 http://t.co/2231EfxJod,"['Tb', '💕', 'http://t.co/2231EfxJod']","['O', 'O', 'O']"
618,@Noel_Ocasio okc #NBAFinals,"['@Noel_Ocasio', 'okc', '#NBAFinals']","['O', 'O', 'O']"
619,Estas nauseas me tienen mal 😩,"['Estas', 'nauseas', 'me', 'tienen', 'mal', '😩']","['O', 'O', 'O', 'O', 'O', 'O']"
620,RT @carlasvibes : http://t.co/LXanQI08x7,"['RT', '@carlasvibes', ':', 'http://t.co/LXanQI08x7']","['O', 'O', 'O', 'O']"
621,Prepita pendejo va a venir a joderme a mí . Mere .,"['Prepita', 'pendejo', 'va', 'a', 'venir', 'a', 'joderme', 'a', 'mí', '.', 'Mere', '.']","['B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
622,@porexpan @SaraBlanc0 @OMGlobalNews -OSCAR MAYER ! -Sí ! 😃,"['@porexpan', '@SaraBlanc0', '@OMGlobalNews', '-OSCAR', 'MAYER', '!', '-Sí', '!', '😃']","['O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O']"
623,RT @caroisabel4 : Los detalles más simples y pequeños hacen una diferencia DEMASIADO grande .,"['RT', '@caroisabel4', ':', 'Los', 'detalles', 'más', 'simples', 'y', 'pequeños', 'hacen', 'una', 'diferencia', 'DEMASIADO', 'grande', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
624,"by @andyescalona "" #MuyPronto #pr óximamente #soloPorSLS #sueltalasopa #telemundo El bombón derretido … http://t.co/yML2rfbffl","['by', '@andyescalona', '""', '#MuyPronto', '#pr', 'óximamente', '#soloPorSLS', '#sueltalasopa', '#telemundo', 'El', 'bombón', 'derretido', '…', 'http://t.co/yML2rfbffl']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
625,Besitos soplaus como balsa,"['Besitos', 'soplaus', 'como', 'balsa']","['O', 'O', 'O', 'O']"
626,""" @iKickShit_DUDE : There comes a point when you have to choose between turning the page and closing the book . ""","['""', '@iKickShit_DUDE', ':', 'There', 'comes', 'a', 'point', 'when', 'you', 'have', 'to', 'choose', 'between', 'turning', 'the', 'page', 'and', 'closing', 'the', 'book', '.', '""']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
627,@MartinDiaz5614 https://t.co/d9nVBTv6at,"['@MartinDiaz5614', 'https://t.co/d9nVBTv6at']","['O', 'O']"
628,@tamararosario02 @Santos7RM SoOoOo cute 🎇,"['@tamararosario02', '@Santos7RM', 'SoOoOo', 'cute', '🎇']","['O', 'O', 'O', 'O', 'O']"
629,RT @lorenaisabel02 : It 's complicated https://t.co/txsAm2NCkQ,"['RT', '@lorenaisabel02', ':', 'It', ""'s"", 'complicated', 'https://t.co/txsAm2NCkQ']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
630,Si solo los iphones fueran así https://t.co/hBQhFo8FqO,"['Si', 'solo', 'los', 'iphones', 'fueran', 'así', 'https://t.co/hBQhFo8FqO']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
631,"No falta el entretenimiento ... sin duda I cant complain , life is good :D","['No', 'falta', 'el', 'entretenimiento', '...', 'sin', 'duda', 'I', 'cant', 'complain', ',', 'life', 'is', 'good', ':D']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
632,Es demasiado temprano pa ' que me estén llamando,"['Es', 'demasiado', 'temprano', 'pa', ""'"", 'que', 'me', 'estén', 'llamando']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
633,Que pasara cuando nos encontremosssss,"['Que', 'pasara', 'cuando', 'nos', 'encontremosssss']","['O', 'O', 'O', 'O', 'O']"
634,The biggest event in Texas is coming >>> Super Bowl .,"['The', 'biggest', 'event', 'in', 'Texas', 'is', 'coming', '>>>', 'Super', 'Bowl', '.']","['O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'B-EVENT', 'I-EVENT', 'O']"
635,I think I know why my gf posts ugly pics of me .. cuz last time she said k when she posts cute pics of me her friends were favoriting em .. hm,"['I', 'think', 'I', 'know', 'why', 'my', 'gf', 'posts', 'ugly', 'pics', 'of', 'me', '..', 'cuz', 'last', 'time', 'she', 'said', 'k', 'when', 'she', 'posts', 'cute', 'pics', 'of', 'me', 'her', 'friends', 'were', 'favoriting', 'em', '..', 'hm']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
636,UNCHARTED 4 RAP | ¿ CARA O CRUZ ? | KRONNO ZOMBER | ( Videoclip Oficial ) https://t.co/C4ZqmvS2Dn vía @YouTube,"['UNCHARTED', '4', 'RAP', '|', '¿', 'CARA', 'O', 'CRUZ', '?', '|', 'KRONNO', 'ZOMBER', '|', '(', 'Videoclip', 'Oficial', ')', 'https://t.co/C4ZqmvS2Dn', 'vía', '@YouTube']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
637,"RT @ValeriaMatta18 : Nobody but you , body but me , body us , bodies together","['RT', '@ValeriaMatta18', ':', 'Nobody', 'but', 'you', ',', 'body', 'but', 'me', ',', 'body', 'us', ',', 'bodies', 'together']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
638,@Lesambam yo mas tho guacha berrinchuda y caprichosaaa aunque seas bien chantajista pero asi me encantas guashiya hermosaaa ♥♥♥,"['@Lesambam', 'yo', 'mas', 'tho', 'guacha', 'berrinchuda', 'y', 'caprichosaaa', 'aunque', 'seas', 'bien', 'chantajista', 'pero', 'asi', 'me', 'encantas', 'guashiya', 'hermosaaa', '♥♥♥']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
639,""" I envy you , I 've never been able to meet me ""","['""', 'I', 'envy', 'you', ',', 'I', ""'ve"", 'never', 'been', 'able', 'to', 'meet', 'me', '""']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
640,RT @belindapop : Recuerden que esta noche comienza #ElFactorX por @mundofox 7pm/6c no te lo pierdas ! @chinoynacho @angelicamaria @ponchodea …,"['RT', '@belindapop', ':', 'Recuerden', 'que', 'esta', 'noche', 'comienza', '#ElFactorX', 'por', '@mundofox', '7pm/6c', 'no', 'te', 'lo', 'pierdas', '!', '@chinoynacho', '@angelicamaria', '@ponchodea', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
641,RT @elena_g05 : Yo quiero las Jimmy Choo :)) RT @claudiafashions Starting the day ! Comensando el dia #photoshoot .. . @RenEmilioDesign htt .. .,"['RT', '@elena_g05', ':', 'Yo', 'quiero', 'las', 'Jimmy', 'Choo', ':))', 'RT', '@claudiafashions', 'Starting', 'the', 'day', '!', 'Comensando', 'el', 'dia', '#photoshoot', '..', '.', '@RenEmilioDesign', 'htt', '..', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'I-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
642,@Inmotion_us @grupointocable @jassolis gracias #meyber x el cd !! !!,"['@Inmotion_us', '@grupointocable', '@jassolis', 'gracias', '#meyber', 'x', 'el', 'cd', '!!', '!!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
643,“ @milesalcedoo : @AngieEstilo wow !! Me encanta que @paurubio te eacogiera para que le hicieras sus botas #orgullomexicano muaaaaaaa ” ❤ u primis,"['“', '@milesalcedoo', ':', '@AngieEstilo', 'wow', '!!', 'Me', 'encanta', 'que', '@paurubio', 'te', 'eacogiera', 'para', 'que', 'le', 'hicieras', 'sus', 'botas', '#orgullomexicano', 'muaaaaaaa', '”', '❤', 'u', 'primis']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
644,Una Melo con un traje para la zodiac haciendo rebotar una piedra en el agua delante del glaciar . ☄ https://t.co/f4pLdog7LX,"['Una', 'Melo', 'con', 'un', 'traje', 'para', 'la', 'zodiac', 'haciendo', 'rebotar', 'una', 'piedra', 'en', 'el', 'agua', 'delante', 'del', 'glaciar', '.', '☄', 'https://t.co/f4pLdog7LX']","['O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
645,Neneee no me des mute wtf https://t.co/3DIKhc8lul,"['Neneee', 'no', 'me', 'des', 'mute', 'wtf', 'https://t.co/3DIKhc8lul']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
646,RT @mariasofia_14 : Ultima semana en la high .,"['RT', '@mariasofia_14', ':', 'Ultima', 'semana', 'en', 'la', 'high', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
647,Encontrar en la revista nuestra denim shirt .. 😍 junto a nuestro sweet dress #revistamariela #allyouneedisecuador https://t.co/ODHsHRKIND,"['Encontrar', 'en', 'la', 'revista', 'nuestra', 'denim', 'shirt', '..', '😍', 'junto', 'a', 'nuestro', 'sweet', 'dress', '#revistamariela', '#allyouneedisecuador', 'https://t.co/ODHsHRKIND']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
648,Parece mentira .. . que haya subido video hoy y que en estos momentos esté editando vídeo para subir mañana YOUTUBERS LIFE ! 😍😍 ❤,"['Parece', 'mentira', '..', '.', 'que', 'haya', 'subido', 'video', 'hoy', 'y', 'que', 'en', 'estos', 'momentos', 'esté', 'editando', 'vídeo', 'para', 'subir', 'mañana', 'YOUTUBERS', 'LIFE', '!', '😍😍', '❤']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
649,"But now I know , I 'm better sleeping on my own 🎶","['But', 'now', 'I', 'know', ',', 'I', ""'m"", 'better', 'sleeping', 'on', 'my', 'own', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
650,Just found out that beer pong is called chupa chela in spanish lmao,"['Just', 'found', 'out', 'that', 'beer', 'pong', 'is', 'called', 'chupa', 'chela', 'in', 'spanish', 'lmao']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
651,"RT @upsmellow : "" si todos me ven por la calle gritan breaking rap "" @Kronnomc https://t.co/LxJEDtGN52","['RT', '@upsmellow', ':', '""', 'si', 'todos', 'me', 'ven', 'por', 'la', 'calle', 'gritan', 'breaking', 'rap', '""', '@Kronnomc', 'https://t.co/LxJEDtGN52']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
652,RT @SexualGif : Oh 👀 https://t.co/ECWtRDNSxZ,"['RT', '@SexualGif', ':', 'Oh', '👀', 'https://t.co/ECWtRDNSxZ']","['O', 'O', 'O', 'O', 'O', 'O']"
653,Si no puedes guiar una guagua pq la tienes !!,"['Si', 'no', 'puedes', 'guiar', 'una', 'guagua', 'pq', 'la', 'tienes', '!!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
654,Bk a esta hora >>>,"['Bk', 'a', 'esta', 'hora', '>>>']","['B-ORG', 'O', 'O', 'O', 'O']"
655,@stephi_san gross,"['@stephi_san', 'gross']","['O', 'O']"
656,RT @RomaynGagaloo : Judge asks the Twin Towers if they tried ' avoiding the planes ' https://t.co/CT8vgao5sy,"['RT', '@RomaynGagaloo', ':', 'Judge', 'asks', 'the', 'Twin', 'Towers', 'if', 'they', 'tried', ""'"", 'avoiding', 'the', 'planes', ""'"", 'https://t.co/CT8vgao5sy']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
657,RT @BryanFuller : BREAKING EPISODE 4 OF #HANNIBAL SEASON 3,"['RT', '@BryanFuller', ':', 'BREAKING', 'EPISODE', '4', 'OF', '#HANNIBAL', 'SEASON', '3']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
658,@nadjarie ay endito,"['@nadjarie', 'ay', 'endito']","['O', 'O', 'O']"
659,"Watching @TheRock in Fast Five , Nothing Better !! !","['Watching', '@TheRock', 'in', 'Fast', 'Five', ',', 'Nothing', 'Better', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
660,"RT @amandacurbelo2 : Yo no tengo problema con comenzar la conversación , despues que tu me la sigas","['RT', '@amandacurbelo2', ':', 'Yo', 'no', 'tengo', 'problema', 'con', 'comenzar', 'la', 'conversación', ',', 'despues', 'que', 'tu', 'me', 'la', 'sigas']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
661,Esta cayendo nievecita 🌨☃❄️,"['Esta', 'cayendo', 'nievecita', '🌨☃❄️']","['O', 'O', 'O', 'O']"
662,Me right now 😊 https://t.co/INpptlcTWw,"['Me', 'right', 'now', '😊', 'https://t.co/INpptlcTWw']","['O', 'O', 'O', 'O', 'O']"
663,RT @BestofCapricorn : #Capricorn's dont like fake shit . Grow up or go home .,"['RT', '@BestofCapricorn', ':', ""#Capricorn's"", 'dont', 'like', 'fake', 'shit', '.', 'Grow', 'up', 'or', 'go', 'home', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
664,@fairy0821 Omg ! Estoy bien chillin así q whatever !! ! Ya estamos en el tapón,"['@fairy0821', 'Omg', '!', 'Estoy', 'bien', 'chillin', 'así', 'q', 'whatever', '!!', '!', 'Ya', 'estamos', 'en', 'el', 'tapón']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
665,El mejor primo lo tengo yo . @ralbso me va a hacer té para ayudarme a estudiar 💕,"['El', 'mejor', 'primo', 'lo', 'tengo', 'yo', '.', '@ralbso', 'me', 'va', 'a', 'hacer', 'té', 'para', 'ayudarme', 'a', 'estudiar', '💕']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
666,@carlosj629 jajajajajajajaja si pero esta dificil,"['@carlosj629', 'jajajajajajajaja', 'si', 'pero', 'esta', 'dificil']","['O', 'O', 'O', 'O', 'O', 'O']"
667,RT @antonmattei_ : Ya yo estoy loca por trabajar I can n't be broke all the time,"['RT', '@antonmattei_', ':', 'Ya', 'yo', 'estoy', 'loca', 'por', 'trabajar', 'I', 'can', ""n't"", 'be', 'broke', 'all', 'the', 'time']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
668,@luisgierbolini5 @mayarodriguez96 @saocopapi @rjtorito14 @edu_fuertes1 @TommyBalsera es que lo mato,"['@luisgierbolini5', '@mayarodriguez96', '@saocopapi', '@rjtorito14', '@edu_fuertes1', '@TommyBalsera', 'es', 'que', 'lo', 'mato']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
669,RT @andyescalona : Feliz día 😄 el #look hoy #SLS #styling @angieestilo & @beatrizmiami http://t.co/YESR9KvXN9,"['RT', '@andyescalona', ':', 'Feliz', 'día', '😄', 'el', '#look', 'hoy', '#SLS', '#styling', '@angieestilo', '&', '@beatrizmiami', 'http://t.co/YESR9KvXN9']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
670,Otro de Nuestros Salones #ChicModel http://t.co/KAGkFWDiq8 http://t.co/ONJuhdA7Tr,"['Otro', 'de', 'Nuestros', 'Salones', '#ChicModel', 'http://t.co/KAGkFWDiq8', 'http://t.co/ONJuhdA7Tr']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
671,RT @javiidiaz06 : Me gustaria que a mi me gustara leer ..,"['RT', '@javiidiaz06', ':', 'Me', 'gustaria', 'que', 'a', 'mi', 'me', 'gustara', 'leer', '..']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
672,Pizza d guaguita !! !! ! Despues d 5 gasolinas estamos relax !! !! Sorry a todos los q estan doblando ropa . ..,"['Pizza', 'd', 'guaguita', '!!', '!!', '!', 'Despues', 'd', '5', 'gasolinas', 'estamos', 'relax', '!!', '!!', 'Sorry', 'a', 'todos', 'los', 'q', 'estan', 'doblando', 'ropa', '.', '..']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
673,But the heart wants it wants,"['But', 'the', 'heart', 'wants', 'it', 'wants']","['O', 'O', 'O', 'O', 'O', 'O']"
674,RT @cristinabonaga : Nos vemos esta tarde a las 19:00 en @FLMadrid con @ektorjoker https://t.co/RW08pDlAYi,"['RT', '@cristinabonaga', ':', 'Nos', 'vemos', 'esta', 'tarde', 'a', 'las', '19:00', 'en', '@FLMadrid', 'con', '@ektorjoker', 'https://t.co/RW08pDlAYi']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
675,Como yo no hay nadie .,"['Como', 'yo', 'no', 'hay', 'nadie', '.']","['O', 'O', 'O', 'O', 'O', 'O']"
676,@NEGROPR76 Y nooss vamosss otra vez !! ! Próximo trip DONE !! Woooho,"['@NEGROPR76', 'Y', 'nooss', 'vamosss', 'otra', 'vez', '!!', '!', 'Próximo', 'trip', 'DONE', '!!', 'Woooho']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
677,Estoy bien motiva ' pa ' salir .,"['Estoy', 'bien', 'motiva', ""'"", 'pa', ""'"", 'salir', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
678,Heads up : Alerta/Cuidado ( en un juego/deporte ) Heads up ! Watch out for the baseball !,"['Heads', 'up', ':', 'Alerta/Cuidado', '(', 'en', 'un', 'juego/deporte', ')', 'Heads', 'up', '!', 'Watch', 'out', 'for', 'the', 'baseball', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
679,RT @jvnpe : Night-drives and chill ?,"['RT', '@jvnpe', ':', 'Night-drives', 'and', 'chill', '?']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
680,"Maldita cabrona , ojalá le piquen una teta https://t.co/bDdXC5BIK4","['Maldita', 'cabrona', ',', 'ojalá', 'le', 'piquen', 'una', 'teta', 'https://t.co/bDdXC5BIK4']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
681,RT @linamariejusti : Esta semanita se tiene que acabar YA,"['RT', '@linamariejusti', ':', 'Esta', 'semanita', 'se', 'tiene', 'que', 'acabar', 'YA']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
682,@umpaaa te juro que si fueras mañana a la uni te llevo,"['@umpaaa', 'te', 'juro', 'que', 'si', 'fueras', 'mañana', 'a', 'la', 'uni', 'te', 'llevo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
683,"RT @JordiWild : Kronno esa mano pa 'rriba , donde pueda verla ! https://t.co/zgiJOhIfEy","['RT', '@JordiWild', ':', 'Kronno', 'esa', 'mano', 'pa', ""'rriba"", ',', 'donde', 'pueda', 'verla', '!', 'https://t.co/zgiJOhIfEy']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
684,"RT @jchaltiwanger : Now that @POTUS has officially endorsed @HillaryClinton and is going to bring his popularity to her campaign , the whole …","['RT', '@jchaltiwanger', ':', 'Now', 'that', '@POTUS', 'has', 'officially', 'endorsed', '@HillaryClinton', 'and', 'is', 'going', 'to', 'bring', 'his', 'popularity', 'to', 'her', 'campaign', ',', 'the', 'whole', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
685,Porque no pude haber tenido un mejor trabajo en mi senior year 💗 https://t.co/ScSiZOrxgI,"['Porque', 'no', 'pude', 'haber', 'tenido', 'un', 'mejor', 'trabajo', 'en', 'mi', 'senior', 'year', '💗', 'https://t.co/ScSiZOrxgI']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
686,"RT @BBCWorld : Bernie Sanders says people want "" real change "" , after he beat Clinton by "" huge margin "" https://t.co/wH0AownvmH https://t.co/mi …","['RT', '@BBCWorld', ':', 'Bernie', 'Sanders', 'says', 'people', 'want', '""', 'real', 'change', '""', ',', 'after', 'he', 'beat', 'Clinton', 'by', '""', 'huge', 'margin', '""', 'https://t.co/wH0AownvmH', 'https://t.co/mi', '…']","['O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
687,@rafrruko que en ves de estar en casa tranquilas estamos comprando un pez,"['@rafrruko', 'que', 'en', 'ves', 'de', 'estar', 'en', 'casa', 'tranquilas', 'estamos', 'comprando', 'un', 'pez']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
688,@lafincadigital Yo le puedo ayudar a tomar su pago con mucho gusto . Por favor mándeme un MD para poder ayudarle con eso y más . Gracias . ~ AS,"['@lafincadigital', 'Yo', 'le', 'puedo', 'ayudar', 'a', 'tomar', 'su', 'pago', 'con', 'mucho', 'gusto', '.', 'Por', 'favor', 'mándeme', 'un', 'MD', 'para', 'poder', 'ayudarle', 'con', 'eso', 'y', 'más', '.', 'Gracias', '.', '~', 'AS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
689,El único q le ha sacodo sangré a @FloydMayweather fue @RealMiguelCotto,"['El', 'único', 'q', 'le', 'ha', 'sacodo', 'sangré', 'a', '@FloydMayweather', 'fue', '@RealMiguelCotto']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
690,"RT @yaxiann92 : "" Déjame darme un shot y te digo "" https://t.co/bZjujIPurs","['RT', '@yaxiann92', ':', '""', 'Déjame', 'darme', 'un', 'shot', 'y', 'te', 'digo', '""', 'https://t.co/bZjujIPurs']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
691,@TransitoPR causa del tapón : están cambiando el carril reversible .. .,"['@TransitoPR', 'causa', 'del', 'tapón', ':', 'están', 'cambiando', 'el', 'carril', 'reversible', '..', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
692,"RT @Flor_CDS02 : En el noticiero pasaron esto del hotel y habia un chico , que tenia un carte que decia KRONNO ZOMBER @Kronnomc HAY INFECTADO …","['RT', '@Flor_CDS02', ':', 'En', 'el', 'noticiero', 'pasaron', 'esto', 'del', 'hotel', 'y', 'habia', 'un', 'chico', ',', 'que', 'tenia', 'un', 'carte', 'que', 'decia', 'KRONNO', 'ZOMBER', '@Kronnomc', 'HAY', 'INFECTADO', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
693,🎧 It 's like i got this music in my body saying it 's gonna be alright 🎶 Falda $ 19.90 Blusa $ 24.70 Vinchas $3.50 http://t.co/QxSnoUw8Es,"['🎧', 'It', ""'s"", 'like', 'i', 'got', 'this', 'music', 'in', 'my', 'body', 'saying', 'it', ""'s"", 'gonna', 'be', 'alright', '🎶', 'Falda', '$', '19.90', 'Blusa', '$', '24.70', 'Vinchas', '$3.50', 'http://t.co/QxSnoUw8Es']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
694,RT @GVG222 : #TodosMenosPriscilla no dejamos las llaves encerrà,"['RT', '@GVG222', ':', '#TodosMenosPriscilla', 'no', 'dejamos', 'las', 'llaves', 'encerrà']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
695,RT @alexgstg : Las universidades deberian ser 5 pagos faciles de $19.99,"['RT', '@alexgstg', ':', 'Las', 'universidades', 'deberian', 'ser', '5', 'pagos', 'faciles', 'de', '$19.99']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
696,"OFF LEASE ONLY "" LA GATITA DEALS OF THE WEEK "" http://t.co/boUPNtqsup via @lagatitadelzol","['OFF', 'LEASE', 'ONLY', '""', 'LA', 'GATITA', 'DEALS', 'OF', 'THE', 'WEEK', '""', 'http://t.co/boUPNtqsup', 'via', '@lagatitadelzol']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
697,"RT @RealPorta : He estado reviviendo canciones del pasado . Estoy más que orgulloso de lo que he vivido , de lo que soy y de todo .. . https://…","['RT', '@RealPorta', ':', 'He', 'estado', 'reviviendo', 'canciones', 'del', 'pasado', '.', 'Estoy', 'más', 'que', 'orgulloso', 'de', 'lo', 'que', 'he', 'vivido', ',', 'de', 'lo', 'que', 'soy', 'y', 'de', 'todo', '..', '.', 'https://…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
698,@Alannys_Joann ?,"['@Alannys_Joann', '?']","['O', 'O']"
699,Berbatov 😁,"['Berbatov', '😁']","['B-PER', 'O']"
700,Hay que rierse y pichar .,"['Hay', 'que', 'rierse', 'y', 'pichar', '.']","['O', 'O', 'O', 'O', 'O', 'O']"
701,"RT @haze300 : Quiero que el mundo reconosca mi talento , straight outta Puerto Rico 🇵🇷 http://t.co/U262R63o4d","['RT', '@haze300', ':', 'Quiero', 'que', 'el', 'mundo', 'reconosca', 'mi', 'talento', ',', 'straight', 'outta', 'Puerto', 'Rico', '🇵🇷', 'http://t.co/U262R63o4d']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'O']"
702,Y vamos a seguirrrrr 🎉👏🏽 https://t.co/KMaIUvaEu8,"['Y', 'vamos', 'a', 'seguirrrrr', '🎉👏🏽', 'https://t.co/KMaIUvaEu8']","['O', 'O', 'O', 'O', 'O', 'O']"
703,RT @brendathaliaaa : La menstruación fue creada por el diablo,"['RT', '@brendathaliaaa', ':', 'La', 'menstruación', 'fue', 'creada', 'por', 'el', 'diablo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
704,@NEGROPR76 Te Amo,"['@NEGROPR76', 'Te', 'Amo']","['O', 'O', 'O']"
705,"Si yo tuviera un dolar por cada Tratado de París que hay en la historia , sería millonaria .","['Si', 'yo', 'tuviera', 'un', 'dolar', 'por', 'cada', 'Tratado', 'de', 'París', 'que', 'hay', 'en', 'la', 'historia', ',', 'sería', 'millonaria', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
706,RT @guanyin_ : https://t.co/BGsUKKsE3j,"['RT', '@guanyin_', ':', 'https://t.co/BGsUKKsE3j']","['O', 'O', 'O', 'O']"
707,Si te cojo te llevo pa casa .,"['Si', 'te', 'cojo', 'te', 'llevo', 'pa', 'casa', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
708,"RT @OMGFacts : This Genius Turned A Piece Of Old , Useless Furniture Into The Ultimate Home Accessory https://t.co/pcQkqWx4zv","['RT', '@OMGFacts', ':', 'This', 'Genius', 'Turned', 'A', 'Piece', 'Of', 'Old', ',', 'Useless', 'Furniture', 'Into', 'The', 'Ultimate', 'Home', 'Accessory', 'https://t.co/pcQkqWx4zv']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
709,Se me olvidó que había una conveción de puertorriqueños en la biblioteca en el dia de hoy #CabronesDejenmeEstudiar #Silencio,"['Se', 'me', 'olvidó', 'que', 'había', 'una', 'conveción', 'de', 'puertorriqueños', 'en', 'la', 'biblioteca', 'en', 'el', 'dia', 'de', 'hoy', '#CabronesDejenmeEstudiar', '#Silencio']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
710,"Super mi friend . Miss u , you always rock . Hope to see u soon . Besote @nickverreos1 @tvguidenetwork @cnn @cnni","['Super', 'mi', 'friend', '.', 'Miss', 'u', ',', 'you', 'always', 'rock', '.', 'Hope', 'to', 'see', 'u', 'soon', '.', 'Besote', '@nickverreos1', '@tvguidenetwork', '@cnn', '@cnni']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
711,I roll with scary crew come out of wars berly bruised putting mutherfuhkers on the daily news !!,"['I', 'roll', 'with', 'scary', 'crew', 'come', 'out', 'of', 'wars', 'berly', 'bruised', 'putting', 'mutherfuhkers', 'on', 'the', 'daily', 'news', '!!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
712,Wao no puedo con ella .. .,"['Wao', 'no', 'puedo', 'con', 'ella', '..', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
713,@andres5palacios whattt ??,"['@andres5palacios', 'whattt', '??']","['O', 'O', 'O']"
714,"There ’s always room for improvement : Siempre se puede mejorar . Do n’t worry , there ’s always room for improvement .","['There', '’s', 'always', 'room', 'for', 'improvement', ':', 'Siempre', 'se', 'puede', 'mejorar', '.', 'Do', 'n’t', 'worry', ',', 'there', '’s', 'always', 'room', 'for', 'improvement', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
715,Llevo media hora tirada en mi cama en toalla,"['Llevo', 'media', 'hora', 'tirada', 'en', 'mi', 'cama', 'en', 'toalla']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
716,@esangiecarajo no digas eso .. . eventualmente no vamos a tener nada de que hablar jajajaj,"['@esangiecarajo', 'no', 'digas', 'eso', '..', '.', 'eventualmente', 'no', 'vamos', 'a', 'tener', 'nada', 'de', 'que', 'hablar', 'jajajaj']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
717,"RT @YahBoyObito : "" We 're going to win the finals BELIEVE IT "" 😂😂 https://t.co/oMI4VKXFod","['RT', '@YahBoyObito', ':', '""', 'We', ""'re"", 'going', 'to', 'win', 'the', 'finals', 'BELIEVE', 'IT', '""', '😂😂', 'https://t.co/oMI4VKXFod']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
718,RT @Drakee_YMCMB : Always be thankful .. life could be worse,"['RT', '@Drakee_YMCMB', ':', 'Always', 'be', 'thankful', '..', 'life', 'could', 'be', 'worse']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
719,"@TamySchreiber Espero q te ayuden MUCHO , no te olvides desarrollar el hábito de aprender algo por 10 min TODOS los días have a good one :)","['@TamySchreiber', 'Espero', 'q', 'te', 'ayuden', 'MUCHO', ',', 'no', 'te', 'olvides', 'desarrollar', 'el', 'hábito', 'de', 'aprender', 'algo', 'por', '10', 'min', 'TODOS', 'los', 'días', 'have', 'a', 'good', 'one', ':)']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
720,"Carajo , tengo hambreeee","['Carajo', ',', 'tengo', 'hambreeee']","['O', 'O', 'O', 'O']"
721,"@isabelmarie05 es mala , en casa Hera se bebió todas las cervezas","['@isabelmarie05', 'es', 'mala', ',', 'en', 'casa', 'Hera', 'se', 'bebió', 'todas', 'las', 'cervezas']","['O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O']"
722,RT @GonzalezSabe : Buenos días cabrones,"['RT', '@GonzalezSabe', ':', 'Buenos', 'días', 'cabrones']","['O', 'O', 'O', 'O', 'O', 'O']"
723,@METEMAZO gracias Luis :-) Un abrazo,"['@METEMAZO', 'gracias', 'Luis', ':-)', 'Un', 'abrazo']","['O', 'O', 'B-PER', 'O', 'O', 'O']"
724,"RT @RelatableQuote : when he breaks your heart , but then you realize who you are https://t.co/yXMZQwEtxY","['RT', '@RelatableQuote', ':', 'when', 'he', 'breaks', 'your', 'heart', ',', 'but', 'then', 'you', 'realize', 'who', 'you', 'are', 'https://t.co/yXMZQwEtxY']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
725,RT @LaLenta_ : Ciencias/Humanidades http://t.co/BdED64iy6z,"['RT', '@LaLenta_', ':', 'Ciencias/Humanidades', 'http://t.co/BdED64iy6z']","['O', 'O', 'O', 'O', 'O']"
726,Mi bellaquera no la activa cualquiera .,"['Mi', 'bellaquera', 'no', 'la', 'activa', 'cualquiera', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
727,She is kind of ( 31 ) about her look ( 31 : descuidada ),"['She', 'is', 'kind', 'of', '(', '31', ')', 'about', 'her', 'look', '(', '31', ':', 'descuidada', ')']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
728,RT @pedrocapo : A los huelebichos https://t.co/s6rmUJrVNp,"['RT', '@pedrocapo', ':', 'A', 'los', 'huelebichos', 'https://t.co/s6rmUJrVNp']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
729,"Tengo un piquete , si te pegas te quema .","['Tengo', 'un', 'piquete', ',', 'si', 'te', 'pegas', 'te', 'quema', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
730,Conteo regresivo !! !! 3dias !! ! @NEGROPR76,"['Conteo', 'regresivo', '!!', '!!', '3dias', '!!', '!', '@NEGROPR76']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
731,I just wanna run through cities,"['I', 'just', 'wanna', 'run', 'through', 'cities']","['O', 'O', 'O', 'O', 'O', 'O']"
732,"Jajajja estoy de acuerdo bro ! Me parece "" la hora perfecta "" para ir a sobar !! @elyas360 jajaj ✌🏻️","['Jajajja', 'estoy', 'de', 'acuerdo', 'bro', '!', 'Me', 'parece', '""', 'la', 'hora', 'perfecta', '""', 'para', 'ir', 'a', 'sobar', '!!', '@elyas360', 'jajaj', '✌🏻️']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
733,"One more night , one last goodbye 🎶","['One', 'more', 'night', ',', 'one', 'last', 'goodbye', '🎶']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
734,RT @CommonWhiteGirI : #growingupwiththickhair when someone tells you they wish they had hair like yours http://t.co/SDQnNUkhKB,"['RT', '@CommonWhiteGirI', ':', '#growingupwiththickhair', 'when', 'someone', 'tells', 'you', 'they', 'wish', 'they', 'had', 'hair', 'like', 'yours', 'http://t.co/SDQnNUkhKB']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
735,Tengo mis metas claras y me enfocaré en ellas .,"['Tengo', 'mis', 'metas', 'claras', 'y', 'me', 'enfocaré', 'en', 'ellas', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
736,RT @hilda_cordova3 : Cada vez falta menosss 💃🏽 https://t.co/3xklVGluqq,"['RT', '@hilda_cordova3', ':', 'Cada', 'vez', 'falta', 'menosss', '💃🏽', 'https://t.co/3xklVGluqq']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
737,Las cosas que hago por mis mejores amigas 😂,"['Las', 'cosas', 'que', 'hago', 'por', 'mis', 'mejores', 'amigas', '😂']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
738,Mariela 's Christmas present from Esthi and Nati 🐶🎅🏼 https://t.co/Y1eREaWPKw,"['Mariela', ""'s"", 'Christmas', 'present', 'from', 'Esthi', 'and', 'Nati', '🐶🎅🏼', 'https://t.co/Y1eREaWPKw']","['B-PER', 'O', 'B-TIME', 'O', 'O', 'B-PER', 'O', 'B-PER', 'O', 'O']"
739,I was going thru my pictures and I found a video donde me esta cantando la de La Diferiencia . .. haha funny stuff !! :D #priceless,"['I', 'was', 'going', 'thru', 'my', 'pictures', 'and', 'I', 'found', 'a', 'video', 'donde', 'me', 'esta', 'cantando', 'la', 'de', 'La', 'Diferiencia', '.', '..', 'haha', 'funny', 'stuff', '!!', ':D', '#priceless']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
740,#MiamifamilyEvent #elvacilondelagatita https://t.co/jPf2SorKOV,"['#MiamifamilyEvent', '#elvacilondelagatita', 'https://t.co/jPf2SorKOV']","['O', 'O', 'O']"
741,"Would you mind giving me directions to the party ? ( Would you mind , muy usado )","['Would', 'you', 'mind', 'giving', 'me', 'directions', 'to', 'the', 'party', '?', '(', 'Would', 'you', 'mind', ',', 'muy', 'usado', ')']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
742,@giovaavictoriaa what is this jeezus,"['@giovaavictoriaa', 'what', 'is', 'this', 'jeezus']","['O', 'O', 'O', 'O', 'B-PER']"
743,c 'est la vie !! !! #BabyEva #babyangieyguerejo https://t.co/CWiCpE9pxS,"['c', ""'est"", 'la', 'vie', '!!', '!!', '#BabyEva', '#babyangieyguerejo', 'https://t.co/CWiCpE9pxS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
744,@GVG222 😂 https://t.co/cKMfdMZ3cv,"['@GVG222', '😂', 'https://t.co/cKMfdMZ3cv']","['O', 'O', 'O']"
745,Según algunos estudios .. . JAJAJAJA https://t.co/ZjNr5mXeQR,"['Según', 'algunos', 'estudios', '..', '.', 'JAJAJAJA', 'https://t.co/ZjNr5mXeQR']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
746,"Me vine a enterar que la gente decía "" en la madre "" este semestre . Juro que jamás antes lo había escuchado en serio .","['Me', 'vine', 'a', 'enterar', 'que', 'la', 'gente', 'decía', '""', 'en', 'la', 'madre', '""', 'este', 'semestre', '.', 'Juro', 'que', 'jamás', 'antes', 'lo', 'había', 'escuchado', 'en', 'serio', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
747,"RT @paomarie_ : "" Eres mia "" * https://t.co/2Q2spgU3YD","['RT', '@paomarie_', ':', '""', 'Eres', 'mia', '""', '*', 'https://t.co/2Q2spgU3YD']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
748,RT @gevicil : Mood https://t.co/qujf9wYM43,"['RT', '@gevicil', ':', 'Mood', 'https://t.co/qujf9wYM43']","['O', 'O', 'O', 'O', 'O']"
749,Good defense !!!,"['Good', 'defense', '!!!']","['O', 'O', 'O']"
750,RT @lexi4prez : we cannot go from the Obamas to the Purge family not on my watch https://t.co/Nnner9zHZp,"['RT', '@lexi4prez', ':', 'we', 'cannot', 'go', 'from', 'the', 'Obamas', 'to', 'the', 'Purge', 'family', 'not', 'on', 'my', 'watch', 'https://t.co/Nnner9zHZp']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-GROUP', 'I-GROUP', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
751,It was a wrap 5am ! #tumequemas #weplayhard #weworkhard beatrizstylist @chinoynacho #stylistduo … http://t.co/TY9fjAFEz0,"['It', 'was', 'a', 'wrap', '5am', '!', '#tumequemas', '#weplayhard', '#weworkhard', 'beatrizstylist', '@chinoynacho', '#stylistduo', '…', 'http://t.co/TY9fjAFEz0']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
752,""" Vete de pecho . "" Miraaa , esa mierda no es fácil .","['""', 'Vete', 'de', 'pecho', '.', '""', 'Miraaa', ',', 'esa', 'mierda', 'no', 'es', 'fácil', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
753,RT @dariiana_ortiz : @k_albrechtt 👇👇👇👇👇 https://t.co/Jsu53sqSYp,"['RT', '@dariiana_ortiz', ':', '@k_albrechtt', '👇👇👇👇👇', 'https://t.co/Jsu53sqSYp']","['O', 'O', 'O', 'O', 'O', 'O']"
754,RT @30SecondJams : GET THIS DUDE FAMOUS https://t.co/j2k8Y87TDZ,"['RT', '@30SecondJams', ':', 'GET', 'THIS', 'DUDE', 'FAMOUS', 'https://t.co/j2k8Y87TDZ']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
755,Te quiero hacer barbaridades .,"['Te', 'quiero', 'hacer', 'barbaridades', '.']","['O', 'O', 'O', 'O', 'O']"
756,RT @artificaIly : https://t.co/xkno7yiBEh,"['RT', '@artificaIly', ':', 'https://t.co/xkno7yiBEh']","['O', 'O', 'O', 'O']"
757,"RT @eseaefe : For once in my life , let me get what i want .","['RT', '@eseaefe', ':', 'For', 'once', 'in', 'my', 'life', ',', 'let', 'me', 'get', 'what', 'i', 'want', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
758,@fairy0821 jajja pa variar tu sabes !! !,"['@fairy0821', 'jajja', 'pa', 'variar', 'tu', 'sabes', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
759,Hay que buscarse el dinero como sea pero sin hacer lo ilegal .,"['Hay', 'que', 'buscarse', 'el', 'dinero', 'como', 'sea', 'pero', 'sin', 'hacer', 'lo', 'ilegal', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
760,"@Skyrichardd ½ Nosotros manejamos 4 sistemas operativos , basado en las necesidades del cliente hacemos una recomendación . ~ AS","['@Skyrichardd', '½', 'Nosotros', 'manejamos', '4', 'sistemas', 'operativos', ',', 'basado', 'en', 'las', 'necesidades', 'del', 'cliente', 'hacemos', 'una', 'recomendación', '.', '~', 'AS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
761,Gracias @sandyc1067 ruthzuniga @jessilebelle106 y Betziris Forty . Hoy marcaron vidas ! https://t.co/X6sAcdrGQ4,"['Gracias', '@sandyc1067', 'ruthzuniga', '@jessilebelle106', 'y', 'Betziris', 'Forty', '.', 'Hoy', 'marcaron', 'vidas', '!', 'https://t.co/X6sAcdrGQ4']","['O', 'O', 'B-PER', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'O']"
762,"En todas las fotos yo salgo mirando pa ' la pinga , pero que se joda","['En', 'todas', 'las', 'fotos', 'yo', 'salgo', 'mirando', 'pa', ""'"", 'la', 'pinga', ',', 'pero', 'que', 'se', 'joda']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
763,RT @GVG222 : #todosmenosPriscilla #todosmenosGenesis no le dan multa por hacer un get,"['RT', '@GVG222', ':', '#todosmenosPriscilla', '#todosmenosGenesis', 'no', 'le', 'dan', 'multa', 'por', 'hacer', 'un', 'get']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
764,What is up moufous ?,"['What', 'is', 'up', 'moufous', '?']","['O', 'O', 'O', 'O', 'O']"
765,RT @theangelsvs : Taylor & Sara for VS Holiday 2015 https://t.co/Y4a7MPTNrs,"['RT', '@theangelsvs', ':', 'Taylor', '&', 'Sara', 'for', 'VS', 'Holiday', '2015', 'https://t.co/Y4a7MPTNrs']","['O', 'O', 'O', 'B-PER', 'O', 'B-PER', 'O', 'O', 'B-PROD', 'O', 'O']"
766,OCHOAAAAAA WHYYYYY,"['OCHOAAAAAA', 'WHYYYYY']","['B-PER', 'O']"
767,RT @NiykeeHeaton : #tb https://t.co/REguPvHYMT,"['RT', '@NiykeeHeaton', ':', '#tb', 'https://t.co/REguPvHYMT']","['O', 'O', 'O', 'O', 'O']"
768,If people really knew me they would probably already stopped talking to me 😯 !!! OTC,"['If', 'people', 'really', 'knew', 'me', 'they', 'would', 'probably', 'already', 'stopped', 'talking', 'to', 'me', '😯', '!!!', 'OTC']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
769,@borikua1977 ¡ Hola ! Contamos con cobertura extensa en Puerto Rico . ¿ Usted vive haya o está viajando ? ~ AS,"['@borikua1977', '¡', 'Hola', '!', 'Contamos', 'con', 'cobertura', 'extensa', 'en', 'Puerto', 'Rico', '.', '¿', 'Usted', 'vive', 'haya', 'o', 'está', 'viajando', '?', '~', 'AS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
770,RT @khuertas11 : 😂😂😂 se esmando https://t.co/DuEITRUP0k,"['RT', '@khuertas11', ':', '😂😂😂', 'se', 'esmando', 'https://t.co/DuEITRUP0k']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
771,@andreanicole411 voy para PR el jueves que viene 😁,"['@andreanicole411', 'voy', 'para', 'PR', 'el', 'jueves', 'que', 'viene', '😁']","['O', 'O', 'O', 'B-LOC', 'O', 'B-TIME', 'O', 'O', 'O']"
772,Freeloader : q toma ventaja de la generosidad de otros . My roommate is living off of my rent payments and food . She is such a freeloader,"['Freeloader', ':', 'q', 'toma', 'ventaja', 'de', 'la', 'generosidad', 'de', 'otros', '.', 'My', 'roommate', 'is', 'living', 'off', 'of', 'my', 'rent', 'payments', 'and', 'food', '.', 'She', 'is', 'such', 'a', 'freeloader']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
773,Corillooooo paco va a hacer Laundry #nuncapasa http://t.co/n0uL0fQeAF,"['Corillooooo', 'paco', 'va', 'a', 'hacer', 'Laundry', '#nuncapasa', 'http://t.co/n0uL0fQeAF']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
774,RT @agustina911911 : Mejorate kronno @Kronnomc https://t.co/0AaDv6SplN,"['RT', '@agustina911911', ':', 'Mejorate', 'kronno', '@Kronnomc', 'https://t.co/0AaDv6SplN']","['O', 'O', 'O', 'O', 'B-PER', 'O', 'O']"
775,No cago donde duermo,"['No', 'cago', 'donde', 'duermo']","['O', 'O', 'O', 'O']"
776,"Break a leg : Algo así como Buena suerte Good luck on your performance tonight , break a leg !","['Break', 'a', 'leg', ':', 'Algo', 'así', 'como', 'Buena', 'suerte', 'Good', 'luck', 'on', 'your', 'performance', 'tonight', ',', 'break', 'a', 'leg', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
777,@carlosdaniel13_ Clajeee avi .,"['@carlosdaniel13_', 'Clajeee', 'avi', '.']","['O', 'O', 'O', 'O']"
778,RT @gabyjim7 : Sinceramente extraño cc cc cc cc como todo era hace mas de 2 años atras,"['RT', '@gabyjim7', ':', 'Sinceramente', 'extraño', 'cc', 'cc', 'cc', 'cc', 'como', 'todo', 'era', 'hace', 'mas', 'de', '2', 'años', 'atras']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
779,Hace tiempo no iba a un jueguito,"['Hace', 'tiempo', 'no', 'iba', 'a', 'un', 'jueguito']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
780,RT @Karuchaabg : @YellowMellowMG en este momento me imagine tu cara asi xD https://t.co/6P6PuQRBKI,"['RT', '@Karuchaabg', ':', '@YellowMellowMG', 'en', 'este', 'momento', 'me', 'imagine', 'tu', 'cara', 'asi', 'xD', 'https://t.co/6P6PuQRBKI']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
781,"Nap celestial , carajo","['Nap', 'celestial', ',', 'carajo']","['O', 'O', 'O', 'O']"
782,RT @EdilSpicy : Arca y dela https://t.co/3VC2zREl83,"['RT', '@EdilSpicy', ':', 'Arca', 'y', 'dela', 'https://t.co/3VC2zREl83']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
783,RT @carlasofia01 : Un mal necesario,"['RT', '@carlasofia01', ':', 'Un', 'mal', 'necesario']","['O', 'O', 'O', 'O', 'O', 'O']"
784,RT @KardashianReact : Goals x1000 http://t.co/8R60jj5agJ,"['RT', '@KardashianReact', ':', 'Goals', 'x1000', 'http://t.co/8R60jj5agJ']","['O', 'O', 'O', 'O', 'O', 'O']"
785,RT @RealDarkHumor : Everytime https://t.co/SBHaCCnPWk,"['RT', '@RealDarkHumor', ':', 'Everytime', 'https://t.co/SBHaCCnPWk']","['O', 'O', 'O', 'O', 'O']"
786,Enchulá de los dos https://t.co/y7EqAHlw8a,"['Enchulá', 'de', 'los', 'dos', 'https://t.co/y7EqAHlw8a']","['O', 'O', 'O', 'O', 'O']"
787,@AZUCENACIERCO @unnuevodia #fashionfabulous justo te Iba a pedir foto ! Bella flaca !! !,"['@AZUCENACIERCO', '@unnuevodia', '#fashionfabulous', 'justo', 'te', 'Iba', 'a', 'pedir', 'foto', '!', 'Bella', 'flaca', '!!', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
788,"Nop , a menos que yo los use https://t.co/J96Qj7Eupj","['Nop', ',', 'a', 'menos', 'que', 'yo', 'los', 'use', 'https://t.co/J96Qj7Eupj']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
789,RT @sexuaI : How jenga was meant to be played 🙌 http://t.co/z6Y4tJ38pT,"['RT', '@sexuaI', ':', 'How', 'jenga', 'was', 'meant', 'to', 'be', 'played', '🙌', 'http://t.co/z6Y4tJ38pT']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
790,Zoooooombers estos meses se vienen temasos !! Y nuevas ideas !! Que ganitas !! 😝😝😝,"['Zoooooombers', 'estos', 'meses', 'se', 'vienen', 'temasos', '!!', 'Y', 'nuevas', 'ideas', '!!', 'Que', 'ganitas', '!!', '😝😝😝']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
791,RT @ashleylaughbox : Siguiendo el consejo de @Ms_Prisci : Quiero expresar que ella ya no me quiere pero que yo la sigo stalkeando por TW . :D,"['RT', '@ashleylaughbox', ':', 'Siguiendo', 'el', 'consejo', 'de', '@Ms_Prisci', ':', 'Quiero', 'expresar', 'que', 'ella', 'ya', 'no', 'me', 'quiere', 'pero', 'que', 'yo', 'la', 'sigo', 'stalkeando', 'por', 'TW', '.', ':D']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O']"
792,RT @TheMattEspinosa : i . love . stretching .,"['RT', '@TheMattEspinosa', ':', 'i', '.', 'love', '.', 'stretching', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
793,RT @saocopapi : fuga 1 de mayo palmas 😈,"['RT', '@saocopapi', ':', 'fuga', '1', 'de', 'mayo', 'palmas', '😈']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
794,Yo no confío ni en mis padres .,"['Yo', 'no', 'confío', 'ni', 'en', 'mis', 'padres', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
795,@marieeddd Por un momento pensé que estabas en serio jaja .,"['@marieeddd', 'Por', 'un', 'momento', 'pensé', 'que', 'estabas', 'en', 'serio', 'jaja', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
796,"I look dreadful : Luzco terrible . Thanks to the flu , I look dreadful .","['I', 'look', 'dreadful', ':', 'Luzco', 'terrible', '.', 'Thanks', 'to', 'the', 'flu', ',', 'I', 'look', 'dreadful', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
797,Gente si van a una Entrevista uSen ropa apropiada !! ! Esa es la 1era impresión q van a dar .,"['Gente', 'si', 'van', 'a', 'una', 'Entrevista', 'uSen', 'ropa', 'apropiada', '!!', '!', 'Esa', 'es', 'la', '1era', 'impresión', 'q', 'van', 'a', 'dar', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
798,Hoy cumplo 18 y mañana es mi graduación .. . El tiempo pasa demasiado rápido #RealityCheck,"['Hoy', 'cumplo', '18', 'y', 'mañana', 'es', 'mi', 'graduación', '..', '.', 'El', 'tiempo', 'pasa', 'demasiado', 'rápido', '#RealityCheck']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
799,RT @CommonWhiteGirI : David Beckham is an idol 👏 http://t.co/q5Ps0zzpRs,"['RT', '@CommonWhiteGirI', ':', 'David', 'Beckham', 'is', 'an', 'idol', '👏', 'http://t.co/q5Ps0zzpRs']","['O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O']"
800,Fucking parking de Garden Hills 💆🏽,"['Fucking', 'parking', 'de', 'Garden', 'Hills', '💆🏽']","['O', 'O', 'O', 'B-LOC', 'I-LOC', 'O']"
801,"Spandex , tejidos engomados y al cuerpo redefinen la tendencia urbana hacia lo gótico para este otoño .… http://t.co/1zNmRbAtHD","['Spandex', ',', 'tejidos', 'engomados', 'y', 'al', 'cuerpo', 'redefinen', 'la', 'tendencia', 'urbana', 'hacia', 'lo', 'gótico', 'para', 'este', 'otoño', '.…', 'http://t.co/1zNmRbAtHD']","['B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
802,RT @StevStiffler : Wait for it 😁 https://t.co/XK5qe3t3Gl,"['RT', '@StevStiffler', ':', 'Wait', 'for', 'it', '😁', 'https://t.co/XK5qe3t3Gl']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
803,RT @VictorOrtega120 : Ma va cabron y no me haces falta tu pa que lo dañes,"['RT', '@VictorOrtega120', ':', 'Ma', 'va', 'cabron', 'y', 'no', 'me', 'haces', 'falta', 'tu', 'pa', 'que', 'lo', 'dañes']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
804,nos perdimos por el carajo .. . #sos,"['nos', 'perdimos', 'por', 'el', 'carajo', '..', '.', '#sos']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
805,"RT @SofiaLuna222 : Este es mi vídeo bebé .. . Espero que lo mires , y que te guste ! He puesto sudor y lágrimas en el ! @Kronnomc https://t.co/f …","['RT', '@SofiaLuna222', ':', 'Este', 'es', 'mi', 'vídeo', 'bebé', '..', '.', 'Espero', 'que', 'lo', 'mires', ',', 'y', 'que', 'te', 'guste', '!', 'He', 'puesto', 'sudor', 'y', 'lágrimas', 'en', 'el', '!', '@Kronnomc', 'https://t.co/f', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
806,Estoy para que me visiten y hablar mierda .,"['Estoy', 'para', 'que', 'me', 'visiten', 'y', 'hablar', 'mierda', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
807,@hon_individuo Por causas extremadamente importantes !,"['@hon_individuo', 'Por', 'causas', 'extremadamente', 'importantes', '!']","['O', 'O', 'O', 'O', 'O', 'O']"
808,RT @girlposts : * hangs out with lana del rey once * https://t.co/EESuzi2rrG,"['RT', '@girlposts', ':', '*', 'hangs', 'out', 'with', 'lana', 'del', 'rey', 'once', '*', 'https://t.co/EESuzi2rrG']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'I-PER', 'I-PER', 'O', 'O', 'O']"
809,"@andres_romero17 P1 : I 've tried that twice before and it did n't work . P2 : try it again , third time 's a charm :)","['@andres_romero17', 'P1', ':', 'I', ""'ve"", 'tried', 'that', 'twice', 'before', 'and', 'it', 'did', ""n't"", 'work', '.', 'P2', ':', 'try', 'it', 'again', ',', 'third', 'time', ""'s"", 'a', 'charm', ':)']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
810,Le damos la Bienvenida a nuestras maxi faldas -MARTINAS-las faldas largas se imponen con un estilo … http://t.co/h2MNGQP1K0,"['Le', 'damos', 'la', 'Bienvenida', 'a', 'nuestras', 'maxi', 'faldas', '-MARTINAS-las', 'faldas', 'largas', 'se', 'imponen', 'con', 'un', 'estilo', '…', 'http://t.co/h2MNGQP1K0']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
811,demasiado amor para mis amigos 😍 http://t.co/8wpCzfeyN5,"['demasiado', 'amor', 'para', 'mis', 'amigos', '😍', 'http://t.co/8wpCzfeyN5']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
812,Si la pelicula de SOUTHPAW es un peliculón de por si .. . con la banda sonora de @Eminem es PHENOMENAL ! ❤ https://t.co/gI3fP5uw2m,"['Si', 'la', 'pelicula', 'de', 'SOUTHPAW', 'es', 'un', 'peliculón', 'de', 'por', 'si', '..', '.', 'con', 'la', 'banda', 'sonora', 'de', '@Eminem', 'es', 'PHENOMENAL', '!', '❤', 'https://t.co/gI3fP5uw2m']","['O', 'O', 'O', 'O', 'B-TITLE', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
813,I 'll pretend que estoy crudo and go get one 😁😊,"['I', ""'ll"", 'pretend', 'que', 'estoy', 'crudo', 'and', 'go', 'get', 'one', '😁😊']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
814,"RT @exv1995 : @Ms_Prisci ¡ QUÉ QUÉ ! ¡ Te estarás imaginando la pompiaera que tengo encima ! Jajajaja ¿ y usdes ? Háblame de eso , les irá cabrón !","['RT', '@exv1995', ':', '@Ms_Prisci', '¡', 'QUÉ', 'QUÉ', '!', '¡', 'Te', 'estarás', 'imaginando', 'la', 'pompiaera', 'que', 'tengo', 'encima', '!', 'Jajajaja', '¿', 'y', 'usdes', '?', 'Háblame', 'de', 'eso', ',', 'les', 'irá', 'cabrón', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
815,@camille_gon ahhh wao jajajaj,"['@camille_gon', 'ahhh', 'wao', 'jajajaj']","['O', 'O', 'O', 'O']"
816,RT @gomez_zayas : Today is mar chiquita day 😎,"['RT', '@gomez_zayas', ':', 'Today', 'is', 'mar', 'chiquita', 'day', '😎']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
817,Y algunas madres humanas ni le importan los hijos .. . y dicen q los animales o saben . https://t.co/dH4mTg789i,"['Y', 'algunas', 'madres', 'humanas', 'ni', 'le', 'importan', 'los', 'hijos', '..', '.', 'y', 'dicen', 'q', 'los', 'animales', 'o', 'saben', '.', 'https://t.co/dH4mTg789i']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
818,RT @tadanaa : Patillas es hermoso http://t.co/JJ1RNgXYAl,"['RT', '@tadanaa', ':', 'Patillas', 'es', 'hermoso', 'http://t.co/JJ1RNgXYAl']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
819,We are just a bunch of assholes trying to find our way,"['We', 'are', 'just', 'a', 'bunch', 'of', 'assholes', 'trying', 'to', 'find', 'our', 'way']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
820,Look de voy con colores llamativos para #primerimpacto @primerimpacto Orange dress #tibi n Purple … http://t.co/qgqTxKR00s,"['Look', 'de', 'voy', 'con', 'colores', 'llamativos', 'para', '#primerimpacto', '@primerimpacto', 'Orange', 'dress', '#tibi', 'n', 'Purple', '…', 'http://t.co/qgqTxKR00s']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
821,RT @AnnasLinensPR : Nuevo Shopper : ¡ Prepara tu hogar para las fiestas ! Ver Shopper : http://t.co/Hb27evloTf http://t.co/JKT7AX8fCq,"['RT', '@AnnasLinensPR', ':', 'Nuevo', 'Shopper', ':', '¡', 'Prepara', 'tu', 'hogar', 'para', 'las', 'fiestas', '!', 'Ver', 'Shopper', ':', 'http://t.co/Hb27evloTf', 'http://t.co/JKT7AX8fCq']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
822,"RT @Ashleyjdp : ¡ Maia ! Esta hermosura busca su forever home . Dale una oportunidad , optemos por la adopción ! https://t.co/aRuIxBVS53","['RT', '@Ashleyjdp', ':', '¡', 'Maia', '!', 'Esta', 'hermosura', 'busca', 'su', 'forever', 'home', '.', 'Dale', 'una', 'oportunidad', ',', 'optemos', 'por', 'la', 'adopción', '!', 'https://t.co/aRuIxBVS53']","['O', 'O', 'O', 'O', 'B-OTHER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
823,"la cabrona de mi prima acaba de poner una foto de sus nalgas , qué le pasa","['la', 'cabrona', 'de', 'mi', 'prima', 'acaba', 'de', 'poner', 'una', 'foto', 'de', 'sus', 'nalgas', ',', 'qué', 'le', 'pasa']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
824,@gegonzalezdiaz diablooo ese avi 😛😛 Qué durote estás coño .,"['@gegonzalezdiaz', 'diablooo', 'ese', 'avi', '😛😛', 'Qué', 'durote', 'estás', 'coño', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
825,El Perdedor // La Secta 💘,"['El', 'Perdedor', '//', 'La', 'Secta', '💘']","['O', 'O', 'O', 'O', 'O', 'O']"
826,Busquets en El Hormiguero ❤ ️,"['Busquets', 'en', 'El', 'Hormiguero', '❤', '️']","['O', 'O', 'O', 'O', 'O', 'O']"
827,@adrianadanner jajajajajajaja hawaina,"['@adrianadanner', 'jajajajajajaja', 'hawaina']","['O', 'O', 'O']"
828,De me atraes a me gusta hay una distancia bien cabrona .,"['De', 'me', 'atraes', 'a', 'me', 'gusta', 'hay', 'una', 'distancia', 'bien', 'cabrona', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
829,A veces a mi me da ganas de cambiarme mi apellido pal carajo,"['A', 'veces', 'a', 'mi', 'me', 'da', 'ganas', 'de', 'cambiarme', 'mi', 'apellido', 'pal', 'carajo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
830,""" @gabacristina : Pendejos como tu deben de tenerlo bien chiquito "" a n d a :O jajajaj dile ahi","['""', '@gabacristina', ':', 'Pendejos', 'como', 'tu', 'deben', 'de', 'tenerlo', 'bien', 'chiquito', '""', 'a', 'n', 'd', 'a', ':O', 'jajajaj', 'dile', 'ahi']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
831,"RT @_maeloo : la religión ha perdido valor , el arte solo lo aprecia su autor , el amor se transforma en dolor .","['RT', '@_maeloo', ':', 'la', 'religión', 'ha', 'perdido', 'valor', ',', 'el', 'arte', 'solo', 'lo', 'aprecia', 'su', 'autor', ',', 'el', 'amor', 'se', 'transforma', 'en', 'dolor', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
832,RT @TheFunnyVine : when you think you have your life together https://t.co/GmfuTewdkq,"['RT', '@TheFunnyVine', ':', 'when', 'you', 'think', 'you', 'have', 'your', 'life', 'together', 'https://t.co/GmfuTewdkq']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
833,Tweets buenos yendo pal draft porque a esta hora a nadie le importa .,"['Tweets', 'buenos', 'yendo', 'pal', 'draft', 'porque', 'a', 'esta', 'hora', 'a', 'nadie', 'le', 'importa', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
834,ya el semestre se va a acabar y todavía no supero lo bello que es este tipo,"['ya', 'el', 'semestre', 'se', 'va', 'a', 'acabar', 'y', 'todavía', 'no', 'supero', 'lo', 'bello', 'que', 'es', 'este', 'tipo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
835,"RT @carlosluis1515 : Mi futura hija está bien jodía , no hay break de que vaya a Punta Cana . Desde hoy no tiene permiso . Sobre mi fucking cad …","['RT', '@carlosluis1515', ':', 'Mi', 'futura', 'hija', 'está', 'bien', 'jodía', ',', 'no', 'hay', 'break', 'de', 'que', 'vaya', 'a', 'Punta', 'Cana', '.', 'Desde', 'hoy', 'no', 'tiene', 'permiso', '.', 'Sobre', 'mi', 'fucking', 'cad', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'I-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
836,"Entraré al TL cuando dejen de dar sus opiniones sociales y politicas . Ya que son todos expertos , tu sabes .","['Entraré', 'al', 'TL', 'cuando', 'dejen', 'de', 'dar', 'sus', 'opiniones', 'sociales', 'y', 'politicas', '.', 'Ya', 'que', 'son', 'todos', 'expertos', ',', 'tu', 'sabes', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
837,Que tu quiere' ?,"['Que', 'tu', ""quiere'"", '?']","['O', 'O', 'O', 'O']"
838,"“ @MrDamnHeTall12 : Tengo ganas de un Frappe de Don Frappe .. .. . 😧😋😋😋 ” - yo , todos los días .","['“', '@MrDamnHeTall12', ':', 'Tengo', 'ganas', 'de', 'un', 'Frappe', 'de', 'Don', 'Frappe', '..', '..', '.', '😧😋😋😋', '”', '-', 'yo', ',', 'todos', 'los', 'días', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-ORG', 'I-ORG', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
839,RT @_mjxv : Cuando me soban el pelo https://t.co/xAVQKjlRFK,"['RT', '@_mjxv', ':', 'Cuando', 'me', 'soban', 'el', 'pelo', 'https://t.co/xAVQKjlRFK']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
840,@javiidiaz06 hahahaha so difficult 💜,"['@javiidiaz06', 'hahahaha', 'so', 'difficult', '💜']","['O', 'O', 'O', 'O', 'O']"
841,"por qué el tren acaba de frenar en el mismo medio , no entiendo","['por', 'qué', 'el', 'tren', 'acaba', 'de', 'frenar', 'en', 'el', 'mismo', 'medio', ',', 'no', 'entiendo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
842,@fairy0821 Nena ya resucitó tu BB ?,"['@fairy0821', 'Nena', 'ya', 'resucitó', 'tu', 'BB', '?']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
843,@camilalaureanoo me odia . Dice que me ama pero eso es una falacia . No le crean . Repito : NO LE CREAN .,"['@camilalaureanoo', 'me', 'odia', '.', 'Dice', 'que', 'me', 'ama', 'pero', 'eso', 'es', 'una', 'falacia', '.', 'No', 'le', 'crean', '.', 'Repito', ':', 'NO', 'LE', 'CREAN', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
844,"Last weekend it was too hot to be in my room . This weekend I 'm in bed with 1 , 000 blankets on top of me . #Wisconsin","['Last', 'weekend', 'it', 'was', 'too', 'hot', 'to', 'be', 'in', 'my', 'room', '.', 'This', 'weekend', 'I', ""'m"", 'in', 'bed', 'with', '1', ',', '000', 'blankets', 'on', 'top', 'of', 'me', '.', '#Wisconsin']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
845,Todo el mundo cumple hoy 😂,"['Todo', 'el', 'mundo', 'cumple', 'hoy', '😂']","['O', 'O', 'O', 'O', 'O', 'O']"
846,no tener señal me tiene mal,"['no', 'tener', 'señal', 'me', 'tiene', 'mal']","['O', 'O', 'O', 'O', 'O', 'O']"
847,RT @virgenbellaca : Me desvelo en esa Luna . https://t.co/TYx6lSPKgF,"['RT', '@virgenbellaca', ':', 'Me', 'desvelo', 'en', 'esa', 'Luna', '.', 'https://t.co/TYx6lSPKgF']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
848,RT @DavidGatiitto : Jajajajajajajaja Mood : https://t.co/1wfuu0NCFE,"['RT', '@DavidGatiitto', ':', 'Jajajajajajajaja', 'Mood', ':', 'https://t.co/1wfuu0NCFE']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
849,Con @katialisob ^^ Preparados para San Valentín ? ❤ ️😝 https://t.co/JYdoHQOyQO,"['Con', '@katialisob', '^^', 'Preparados', 'para', 'San', 'Valentín', '?', '❤', '️😝', 'https://t.co/JYdoHQOyQO']","['O', 'O', 'O', 'O', 'O', 'B-TIME', 'I-TIME', 'O', 'O', 'O', 'O']"
850,Fallando en lo básico,"['Fallando', 'en', 'lo', 'básico']","['O', 'O', 'O', 'O']"
851,RT @XLNB : Homegirl did nothing but be confident in herself . This is not what you should do to a young woman finding herself http://t.co/U1a …,"['RT', '@XLNB', ':', 'Homegirl', 'did', 'nothing', 'but', 'be', 'confident', 'in', 'herself', '.', 'This', 'is', 'not', 'what', 'you', 'should', 'do', 'to', 'a', 'young', 'woman', 'finding', 'herself', 'http://t.co/U1a', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
852,EL LUNES HARÉ EL RECUENTO DE CUANTA GENTE ME VOTÓ ! XDD Me gustaría ver el PODER ZOMBER ! https://t.co/zaLa5KdOGx,"['EL', 'LUNES', 'HARÉ', 'EL', 'RECUENTO', 'DE', 'CUANTA', 'GENTE', 'ME', 'VOTÓ', '!', 'XDD', 'Me', 'gustaría', 'ver', 'el', 'PODER', 'ZOMBER', '!', 'https://t.co/zaLa5KdOGx']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
853,"@pipe_felo_ noup , sigo en la misma urba","['@pipe_felo_', 'noup', ',', 'sigo', 'en', 'la', 'misma', 'urba']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
854,@blackpresii dito,"['@blackpresii', 'dito']","['O', 'O']"
855,RT @fcko_15 : el sexo es lo único que mantiene esta crisis,"['RT', '@fcko_15', ':', 'el', 'sexo', 'es', 'lo', 'único', 'que', 'mantiene', 'esta', 'crisis']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
856,Keep up : Seguir el ritmo . You have to keep up or you 'll get left behind .,"['Keep', 'up', ':', 'Seguir', 'el', 'ritmo', '.', 'You', 'have', 'to', 'keep', 'up', 'or', 'you', ""'ll"", 'get', 'left', 'behind', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
857,RT @alimacvera : @Janelly15_ @Obeldavis @yaurel__ no todas son de farmacia querida 😉,"['RT', '@alimacvera', ':', '@Janelly15_', '@Obeldavis', '@yaurel__', 'no', 'todas', 'son', 'de', 'farmacia', 'querida', '😉']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
858,"@ZormanVideos @ZarcortGame te ha faltado matar a un pato pero si , eres el mas peligroso del mundo city ! XP","['@ZormanVideos', '@ZarcortGame', 'te', 'ha', 'faltado', 'matar', 'a', 'un', 'pato', 'pero', 'si', ',', 'eres', 'el', 'mas', 'peligroso', 'del', 'mundo', 'city', '!', 'XP']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
859,by @unnuevodia via photorepost_app #daytimeemmy #morningshow #Felicidades . Feliz de ser parte de este … http://t.co/2Le5RRiy8b,"['by', '@unnuevodia', 'via', 'photorepost_app', '#daytimeemmy', '#morningshow', '#Felicidades', '.', 'Feliz', 'de', 'ser', 'parte', 'de', 'este', '…', 'http://t.co/2Le5RRiy8b']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
860,“ @JavierCortez23 : No mas falta que pierde Chivas 😁 ” Si Va Perder (;,"['“', '@JavierCortez23', ':', 'No', 'mas', 'falta', 'que', 'pierde', 'Chivas', '😁', '”', 'Si', 'Va', 'Perder', '(;']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-GROUP', 'O', 'O', 'O', 'O', 'O', 'O']"
861,RT @BabyAnimalPics : GOALS 🐶🐶 https://t.co/mZmB6WeYhI,"['RT', '@BabyAnimalPics', ':', 'GOALS', '🐶🐶', 'https://t.co/mZmB6WeYhI']","['O', 'O', 'O', 'O', 'O', 'O']"
862,Hoy la inteligencia me falló,"['Hoy', 'la', 'inteligencia', 'me', 'falló']","['O', 'O', 'O', 'O', 'O']"
863,@javier_ruescas Lo que yo no entiendo es el por qué de todo eso . O trauma con booktuber y necesidad de venganza o retraso severo .,"['@javier_ruescas', 'Lo', 'que', 'yo', 'no', 'entiendo', 'es', 'el', 'por', 'qué', 'de', 'todo', 'eso', '.', 'O', 'trauma', 'con', 'booktuber', 'y', 'necesidad', 'de', 'venganza', 'o', 'retraso', 'severo', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
864,WTF !!,"['WTF', '!!']","['O', 'O']"
865,Me pinté las uñas para obligarme a seguir estudiando y no poder acostarme a dormir .,"['Me', 'pinté', 'las', 'uñas', 'para', 'obligarme', 'a', 'seguir', 'estudiando', 'y', 'no', 'poder', 'acostarme', 'a', 'dormir', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
866,JAJAJAJAJAJAJAAJJAJAJAJAJAJAJAJAJAJAJAJAJA BYEEE https://t.co/qaBtyJYTE4,"['JAJAJAJAJAJAJAAJJAJAJAJAJAJAJAJAJAJAJAJAJA', 'BYEEE', 'https://t.co/qaBtyJYTE4']","['O', 'O', 'O']"
867,Mi suerte esta cabrona,"['Mi', 'suerte', 'esta', 'cabrona']","['O', 'O', 'O', 'O']"
868,RT @irlpriincess : 87 . ITS SO TRUE THO https://t.co/9ml4t5gaLG,"['RT', '@irlpriincess', ':', '87', '.', 'ITS', 'SO', 'TRUE', 'THO', 'https://t.co/9ml4t5gaLG']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
869,RT @ingridbeapio : Fuck cancer,"['RT', '@ingridbeapio', ':', 'Fuck', 'cancer']","['O', 'O', 'O', 'O', 'O']"
870,@_shedopeee para una empresa de Auto Partes llevando deliveries a Talleres y Dealerships :),"['@_shedopeee', 'para', 'una', 'empresa', 'de', 'Auto', 'Partes', 'llevando', 'deliveries', 'a', 'Talleres', 'y', 'Dealerships', ':)']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
871,RT @xaviihiraldo : un año con la mujer te adoro @NissaDiazArias https://t.co/wVpjPuAZoP,"['RT', '@xaviihiraldo', ':', 'un', 'año', 'con', 'la', 'mujer', 'te', 'adoro', '@NissaDiazArias', 'https://t.co/wVpjPuAZoP']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
872,"RT @ldreyquotes : My boyfriend ’s really cool , but he ’s not as cool as me .","['RT', '@ldreyquotes', ':', 'My', 'boyfriend', '’s', 'really', 'cool', ',', 'but', 'he', '’s', 'not', 'as', 'cool', 'as', 'me', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
873,RT @maribel_12RC : @Ninelconde demasiado bella cada cambio de ropa fenomenal mi favorita de la noche . 🙆🙈😘 #PremiosJuventud,"['RT', '@maribel_12RC', ':', '@Ninelconde', 'demasiado', 'bella', 'cada', 'cambio', 'de', 'ropa', 'fenomenal', 'mi', 'favorita', 'de', 'la', 'noche', '.', '🙆🙈😘', '#PremiosJuventud']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
874,It 's a liberty walk saying goodbye to the people who tie you up,"['It', ""'s"", 'a', 'liberty', 'walk', 'saying', 'goodbye', 'to', 'the', 'people', 'who', 'tie', 'you', 'up']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
875,Dinero a las 8:35 prepárate para Ganar #elvacilondelaGatita #miami El Nuevo zol 106.7 fm,"['Dinero', 'a', 'las', '8:35', 'prepárate', 'para', 'Ganar', '#elvacilondelaGatita', '#miami', 'El', 'Nuevo', 'zol', '106.7', 'fm']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-ORG', 'I-ORG', 'I-ORG', 'I-ORG', 'I-ORG']"
876,Wow ! rugby .. . * wipes drool off her face * http://t.co/jGgQo75Gr0,"['Wow', '!', 'rugby', '..', '.', '*', 'wipes', 'drool', 'off', 'her', 'face', '*', 'http://t.co/jGgQo75Gr0']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
877,RT @rexpool : why is this me ? https://t.co/lei7CO2Fy1,"['RT', '@rexpool', ':', 'why', 'is', 'this', 'me', '?', 'https://t.co/lei7CO2Fy1']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
878,RT @Freitas16Camila : Hombres así deberían desaparecer del planeta https://t.co/TEix4pWaQ2,"['RT', '@Freitas16Camila', ':', 'Hombres', 'así', 'deberían', 'desaparecer', 'del', 'planeta', 'https://t.co/TEix4pWaQ2']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
879,quisiera un dollar por cada bobby pin en mi pelo,"['quisiera', 'un', 'dollar', 'por', 'cada', 'bobby', 'pin', 'en', 'mi', 'pelo']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
880,RT @AndreaIzaDuran : el deber como profesor es enseñar no clavar al estudiante,"['RT', '@AndreaIzaDuran', ':', 'el', 'deber', 'como', 'profesor', 'es', 'enseñar', 'no', 'clavar', 'al', 'estudiante']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
881,RT @SincerelyTumblr : my only goal in life is to be a hot mom with a Range Rover,"['RT', '@SincerelyTumblr', ':', 'my', 'only', 'goal', 'in', 'life', 'is', 'to', 'be', 'a', 'hot', 'mom', 'with', 'a', 'Range', 'Rover']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'I-PROD']"
882,""" @saocopapi : @arianaasalgado como se ponen gifs en tw omg "" asi los baje al celelular y pues no se salen asi .. . jajaja","['""', '@saocopapi', ':', '@arianaasalgado', 'como', 'se', 'ponen', 'gifs', 'en', 'tw', 'omg', '""', 'asi', 'los', 'baje', 'al', 'celelular', 'y', 'pues', 'no', 'se', 'salen', 'asi', '..', '.', 'jajaja']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
883,RT @ItsReginaG : I miss 2009 https://t.co/MIfo6r4ZX7,"['RT', '@ItsReginaG', ':', 'I', 'miss', '2009', 'https://t.co/MIfo6r4ZX7']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
884,RT @sryamilet : Queriendo esto ahora .. . https://t.co/M7YsCtkKx0,"['RT', '@sryamilet', ':', 'Queriendo', 'esto', 'ahora', '..', '.', 'https://t.co/M7YsCtkKx0']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
885,“ @yandiaflandia : hoy ordeñe 5 vacas pero me siento como si me ordeñaron a mi ” jajajajajaja Yandia wtf,"['“', '@yandiaflandia', ':', 'hoy', 'ordeñe', '5', 'vacas', 'pero', 'me', 'siento', 'como', 'si', 'me', 'ordeñaron', 'a', 'mi', '”', 'jajajajajaja', 'Yandia', 'wtf']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'O']"
886,RT @MindBlowing : handicap dog carries his blind and deaf friend around 😭😍 https://t.co/ON37qiQBCW,"['RT', '@MindBlowing', ':', 'handicap', 'dog', 'carries', 'his', 'blind', 'and', 'deaf', 'friend', 'around', '😭😍', 'https://t.co/ON37qiQBCW']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
887,Ninguno como los míos en Culebra .. https://t.co/Y6Auv3rwir,"['Ninguno', 'como', 'los', 'míos', 'en', 'Culebra', '..', 'https://t.co/Y6Auv3rwir']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
888,@cedecuizi kul,"['@cedecuizi', 'kul']","['O', 'O']"
889,Estoy loca por ver series nuevas,"['Estoy', 'loca', 'por', 'ver', 'series', 'nuevas']","['O', 'O', 'O', 'O', 'O', 'O']"
890,Ridicula ! Enfocate en trabajar y no el los demas ! Bitch ! No me arrepiento ! : p,"['Ridicula', '!', 'Enfocate', 'en', 'trabajar', 'y', 'no', 'el', 'los', 'demas', '!', 'Bitch', '!', 'No', 'me', 'arrepiento', '!', ':', 'p']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
891,"RT @alextasys : Cuando mami dice que tengo "" actitudes "" . http://t.co/oF9Vsf4Jcq","['RT', '@alextasys', ':', 'Cuando', 'mami', 'dice', 'que', 'tengo', '""', 'actitudes', '""', '.', 'http://t.co/oF9Vsf4Jcq']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
892,RT @colombia_rubius : Ya le regalaron la camisa de colombia a @YellowMellowMG https://t.co/PGJWWBvxcM,"['RT', '@colombia_rubius', ':', 'Ya', 'le', 'regalaron', 'la', 'camisa', 'de', 'colombia', 'a', '@YellowMellowMG', 'https://t.co/PGJWWBvxcM']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O']"
893,"JAJAJAJA @byAbeeL enhorabuena señor Abel , usted a conseguido entrar en MONSTERCHEF . 🙃🤓","['JAJAJAJA', '@byAbeeL', 'enhorabuena', 'señor', 'Abel', ',', 'usted', 'a', 'conseguido', 'entrar', 'en', 'MONSTERCHEF', '.', '🙃🤓']","['O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O']"
894,La persona que me logre enamorar se va a sacar la lotería conmigo .,"['La', 'persona', 'que', 'me', 'logre', 'enamorar', 'se', 'va', 'a', 'sacar', 'la', 'lotería', 'conmigo', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
895,@KoiSamsa @kenyaandkat @MCadepe @HollyMollyYT @gominuke pero wtf r u doin,"['@KoiSamsa', '@kenyaandkat', '@MCadepe', '@HollyMollyYT', '@gominuke', 'pero', 'wtf', 'r', 'u', 'doin']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
896,@fernanrodrigg 😚,"['@fernanrodrigg', '😚']","['O', 'O']"
897,"@rafrruko esos no nene , unos más lindos","['@rafrruko', 'esos', 'no', 'nene', ',', 'unos', 'más', 'lindos']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
898,@sanluispotoyees Ya Vez !!! I have all the right to get jealous ...,"['@sanluispotoyees', 'Ya', 'Vez', '!!!', 'I', 'have', 'all', 'the', 'right', 'to', 'get', 'jealous', '...']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
899,RT @DumbPeoplePosts : https://t.co/uwyCvmp7VP,"['RT', '@DumbPeoplePosts', ':', 'https://t.co/uwyCvmp7VP']","['O', 'O', 'O', 'O']"
900,""" Tits I miss you ""","['""', 'Tits', 'I', 'miss', 'you', '""']","['O', 'O', 'O', 'O', 'O', 'O']"
901,Man of steel .... omg he is so hot !!! ♡♡,"['Man', 'of', 'steel', '....', 'omg', 'he', 'is', 'so', 'hot', '!!!', '♡♡']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
902,RT @RJVC42 : Estas haciendo un part time como Payaso ? https://t.co/wSGGceFTFE,"['RT', '@RJVC42', ':', 'Estas', 'haciendo', 'un', 'part', 'time', 'como', 'Payaso', '?', 'https://t.co/wSGGceFTFE']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
903,RT @ItsMakeupHacks : I WANT IT https://t.co/9tTern8x81,"['RT', '@ItsMakeupHacks', ':', 'I', 'WANT', 'IT', 'https://t.co/9tTern8x81']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
904,RT @Medina23Gabby : Vale la pena esperar por lo que vale la pena querer,"['RT', '@Medina23Gabby', ':', 'Vale', 'la', 'pena', 'esperar', 'por', 'lo', 'que', 'vale', 'la', 'pena', 'querer']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
905,Victor manuelle- tiempo al tiempo ♡,"['Victor', 'manuelle-', 'tiempo', 'al', 'tiempo', '♡']","['B-PER', 'I-PER', 'O', 'O', 'O', 'O']"
906,"RT @lmci_13 : Abrázame y verás , que bien te sentirás y que mi corazón , siempre tuyo será 🎶 ❤ ️","['RT', '@lmci_13', ':', 'Abrázame', 'y', 'verás', ',', 'que', 'bien', 'te', 'sentirás', 'y', 'que', 'mi', 'corazón', ',', 'siempre', 'tuyo', 'será', '🎶', '❤', '️']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
907,you 're my perfect lullaby,"['you', ""'re"", 'my', 'perfect', 'lullaby']","['O', 'O', 'O', 'O', 'O']"
908,En serio me gusta cc como huele el dinero .,"['En', 'serio', 'me', 'gusta', 'cc', 'como', 'huele', 'el', 'dinero', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
909,https://t.co/K9JdVtLW2i,['https://t.co/K9JdVtLW2i'],['O']
910,RT @VSGoaIs : Seriously . https://t.co/yv0DsmYcgA,"['RT', '@VSGoaIs', ':', 'Seriously', '.', 'https://t.co/yv0DsmYcgA']","['O', 'O', 'O', 'O', 'O', 'O']"
911,RT @bobbypulido425 : #TodoMexicoEraTigre,"['RT', '@bobbypulido425', ':', '#TodoMexicoEraTigre']","['O', 'O', 'O', 'O']"
912,@javiidiaz06 @MartinDiaz5614 Martin pa ninguno pq este weekend es mio,"['@javiidiaz06', '@MartinDiaz5614', 'Martin', 'pa', 'ninguno', 'pq', 'este', 'weekend', 'es', 'mio']","['O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
913,RT @brutally : i 'm ready for sleepless summer nights,"['RT', '@brutally', ':', 'i', ""'m"", 'ready', 'for', 'sleepless', 'summer', 'nights']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
914,RT @cmclymer : Terrorism is n't a child who builds clocks . Terrorism is persecuting a child of color based on racist stereotypes . #IStandWi …,"['RT', '@cmclymer', ':', 'Terrorism', 'is', ""n't"", 'a', 'child', 'who', 'builds', 'clocks', '.', 'Terrorism', 'is', 'persecuting', 'a', 'child', 'of', 'color', 'based', 'on', 'racist', 'stereotypes', '.', '#IStandWi', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
915,RT @priscilla_rodz : MI GENTE PROXIMAMENTE VAMOS A ESTAR EMPEZANDO A VENDER TAQUILLAS PARA EL AFTER ASJ 2014 CON DE LA GHETTO . PENDIENTES …,"['RT', '@priscilla_rodz', ':', 'MI', 'GENTE', 'PROXIMAMENTE', 'VAMOS', 'A', 'ESTAR', 'EMPEZANDO', 'A', 'VENDER', 'TAQUILLAS', 'PARA', 'EL', 'AFTER', 'ASJ', '2014', 'CON', 'DE', 'LA', 'GHETTO', '.', 'PENDIENTES', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-EVENT', 'I-EVENT', 'B-TIME', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O']"
916,RT @mariasofia_14 : Quiero dips de la haciendaa,"['RT', '@mariasofia_14', ':', 'Quiero', 'dips', 'de', 'la', 'haciendaa']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
917,I hate it when my teacher tells me I do n't have a future .__. !! Like wtf no me Digas Eso 😝😭,"['I', 'hate', 'it', 'when', 'my', 'teacher', 'tells', 'me', 'I', 'do', ""n't"", 'have', 'a', 'future', '.__.', '!!', 'Like', 'wtf', 'no', 'me', 'Digas', 'Eso', '😝😭']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
918,Me niego a pararme de mi cama,"['Me', 'niego', 'a', 'pararme', 'de', 'mi', 'cama']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
919,@CarlosATrent 1/2 ¡ Hola ! Un placer ayudarlo . Tenemos un proceso en el cual su yerno autoriza para que usted tome posesión de su línea . ~ AS,"['@CarlosATrent', '1/2', '¡', 'Hola', '!', 'Un', 'placer', 'ayudarlo', '.', 'Tenemos', 'un', 'proceso', 'en', 'el', 'cual', 'su', 'yerno', 'autoriza', 'para', 'que', 'usted', 'tome', 'posesión', 'de', 'su', 'línea', '.', '~', 'AS']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
920,RT @Nataalia_Sofia : Los dips de la hacienda son la cosa mas ricaaaaaaaa,"['RT', '@Nataalia_Sofia', ':', 'Los', 'dips', 'de', 'la', 'hacienda', 'son', 'la', 'cosa', 'mas', 'ricaaaaaaaa']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
921,@fernanrodrigg algunas nadamas,"['@fernanrodrigg', 'algunas', 'nadamas']","['O', 'O', 'O']"
922,"RT @jriverad1 : Alguien que le diga por mi , que vuelva","['RT', '@jriverad1', ':', 'Alguien', 'que', 'le', 'diga', 'por', 'mi', ',', 'que', 'vuelva']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
923,"El vlog de hoy , pequeñas estalactitas : SIN ESTO NO SOY YO https://t.co/BA7PwXYr8R","['El', 'vlog', 'de', 'hoy', ',', 'pequeñas', 'estalactitas', ':', 'SIN', 'ESTO', 'NO', 'SOY', 'YO', 'https://t.co/BA7PwXYr8R']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
924,Yo puedo sobrevivir con café y agua,"['Yo', 'puedo', 'sobrevivir', 'con', 'café', 'y', 'agua']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
925,Nada ni nadie bregó conmigo,"['Nada', 'ni', 'nadie', 'bregó', 'conmigo']","['O', 'O', 'O', 'O', 'O']"
926,Que falta me hace mami 😭,"['Que', 'falta', 'me', 'hace', 'mami', '😭']","['O', 'O', 'O', 'O', 'O', 'O']"
927,Ajajja @JordiWild me parece que aun no sabes que estoy dos decivelios por encima ! 🎤 me llaman el eminem burlao de las batallas ! 😏,"['Ajajja', '@JordiWild', 'me', 'parece', 'que', 'aun', 'no', 'sabes', 'que', 'estoy', 'dos', 'decivelios', 'por', 'encima', '!', '🎤', 'me', 'llaman', 'el', 'eminem', 'burlao', 'de', 'las', 'batallas', '!', '😏']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-TITLE', 'I-TITLE', 'O', 'O', 'O', 'O', 'O']"
928,@marciaf_92 Ni te molestes . Mierda de serie .,"['@marciaf_92', 'Ni', 'te', 'molestes', '.', 'Mierda', 'de', 'serie', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
929,@Anagaby_123 no me tome ningunaaa 😭,"['@Anagaby_123', 'no', 'me', 'tome', 'ningunaaa', '😭']","['O', 'O', 'O', 'O', 'O', 'O']"
930,"RT @lorraine_otero : "" Puñeta este frío , mis tetas se me congelan "" @pollypocketpc","['RT', '@lorraine_otero', ':', '""', 'Puñeta', 'este', 'frío', ',', 'mis', 'tetas', 'se', 'me', 'congelan', '""', '@pollypocketpc']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
931,RT @AwkwardComedy : Me when I see dogs https://t.co/A6xxPrqie0,"['RT', '@AwkwardComedy', ':', 'Me', 'when', 'I', 'see', 'dogs', 'https://t.co/A6xxPrqie0']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
932,Faltas tu .,"['Faltas', 'tu', '.']","['O', 'O', 'O']"
933,@solfonse ohhh pues sorry 😃,"['@solfonse', 'ohhh', 'pues', 'sorry', '😃']","['O', 'O', 'O', 'O', 'O']"
934,RT @ArtDaiIy : Starred Freckles by Qinni https://t.co/LSlCPkvWtp,"['RT', '@ArtDaiIy', ':', 'Starred', 'Freckles', 'by', 'Qinni', 'https://t.co/LSlCPkvWtp']","['O', 'O', 'O', 'B-TITLE', 'I-TITLE', 'O', 'B-PER', 'O']"
935,@elizaaaabethhh_ that 's bcuz in our times trival was original & had good music 2 it then all the other djs le mezclaron techno music y blah,"['@elizaaaabethhh_', 'that', ""'s"", 'bcuz', 'in', 'our', 'times', 'trival', 'was', 'original', '&', 'had', 'good', 'music', '2', 'it', 'then', 'all', 'the', 'other', 'djs', 'le', 'mezclaron', 'techno', 'music', 'y', 'blah']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
936,"We can talk this through : Solucionarlo conversando Let ’s not fight , we can talk this through .","['We', 'can', 'talk', 'this', 'through', ':', 'Solucionarlo', 'conversando', 'Let', '’s', 'not', 'fight', ',', 'we', 'can', 'talk', 'this', 'through', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
937,Odio ser tan fkn insegura,"['Odio', 'ser', 'tan', 'fkn', 'insegura']","['O', 'O', 'O', 'O', 'O']"
938,RT @Adriana_sofia__ : so many important things that need our atenttion while we throw our knowledge away with people & things that are a dis …,"['RT', '@Adriana_sofia__', ':', 'so', 'many', 'important', 'things', 'that', 'need', 'our', 'atenttion', 'while', 'we', 'throw', 'our', 'knowledge', 'away', 'with', 'people', '&', 'things', 'that', 'are', 'a', 'dis', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
939,que bello el cielo 😻,"['que', 'bello', 'el', 'cielo', '😻']","['O', 'O', 'O', 'O', 'O']"
940,@MalliMeh woooooowww 😍,"['@MalliMeh', 'woooooowww', '😍']","['O', 'O', 'O']"
941,"@pollypocketpc NO MANO , YO TAMBIEN LO ESTOYYY 💖","['@pollypocketpc', 'NO', 'MANO', ',', 'YO', 'TAMBIEN', 'LO', 'ESTOYYY', '💖']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
942,No me puedo sentir peor,"['No', 'me', 'puedo', 'sentir', 'peor']","['O', 'O', 'O', 'O', 'O']"
943,"@CastroJohn008 Obligao , si lo escribí yo jaja .","['@CastroJohn008', 'Obligao', ',', 'si', 'lo', 'escribí', 'yo', 'jaja', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
944,Unlimited texts to Mexico and now double the data on our $45 prepaid smartphone plan : http://t.co/IxVXxpSQnJ http://t.co/W0zphdCkiK,"['Unlimited', 'texts', 'to', 'Mexico', 'and', 'now', 'double', 'the', 'data', 'on', 'our', '$45', 'prepaid', 'smartphone', 'plan', ':', 'http://t.co/IxVXxpSQnJ', 'http://t.co/W0zphdCkiK']","['O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O']"
945,Va a merecer muchísimo la pena la espera para infamous ya veréis zombers !,"['Va', 'a', 'merecer', 'muchísimo', 'la', 'pena', 'la', 'espera', 'para', 'infamous', 'ya', 'veréis', 'zombers', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
946,RT @AdventuresByDad : The lineup for this year 's @HorrorNightsORL at @UniversalORL #HHN24 is going to be amazing ! http://t.co/1acUAtFFUu,"['RT', '@AdventuresByDad', ':', 'The', 'lineup', 'for', 'this', 'year', ""'s"", '@HorrorNightsORL', 'at', '@UniversalORL', '#HHN24', 'is', 'going', 'to', 'be', 'amazing', '!', 'http://t.co/1acUAtFFUu']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
947,@javiidiaz06 la venden en el puesto !,"['@javiidiaz06', 'la', 'venden', 'en', 'el', 'puesto', '!']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
948,Que tu closet sea el lugar más inspirador de tu casa ! ⭐️🌟⭐️ #kimonos #salhuawoman #salhuaoutfit #AllYouNeedIsEcuador https://t.co/O2mMrFWRi4,"['Que', 'tu', 'closet', 'sea', 'el', 'lugar', 'más', 'inspirador', 'de', 'tu', 'casa', '!', '⭐️🌟⭐️', '#kimonos', '#salhuawoman', '#salhuaoutfit', '#AllYouNeedIsEcuador', 'https://t.co/O2mMrFWRi4']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
949,I just used Shazam to discover Kiliki Taka Ti by Toño Rosario . Recordando y Comenzando el fin de semana de party https://t.co/jegAwySKLN,"['I', 'just', 'used', 'Shazam', 'to', 'discover', 'Kiliki', 'Taka', 'Ti', 'by', 'Toño', 'Rosario', '.', 'Recordando', 'y', 'Comenzando', 'el', 'fin', 'de', 'semana', 'de', 'party', 'https://t.co/jegAwySKLN']","['O', 'O', 'O', 'B-PROD', 'O', 'O', 'B-TITLE', 'I-TITLE', 'I-TITLE', 'O', 'B-PER', 'I-PER', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
950,que rico es hablar español y que entiendan la frustracion,"['que', 'rico', 'es', 'hablar', 'español', 'y', 'que', 'entiendan', 'la', 'frustracion']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
951,esto me duele,"['esto', 'me', 'duele']","['O', 'O', 'O']"
952,procrastinating .. .,"['procrastinating', '..', '.']","['O', 'O', 'O']"
953,Qué hermosoooooo https://t.co/9dwO68sHnA,"['Qué', 'hermosoooooo', 'https://t.co/9dwO68sHnA']","['O', 'O', 'O']"
954,Boogy Man tambien recibiendo a los Ganadores del Arbolito de Navidad #Team ElNuevoZol 106.7 http://t.co/4qLAZNzMGE,"['Boogy', 'Man', 'tambien', 'recibiendo', 'a', 'los', 'Ganadores', 'del', 'Arbolito', 'de', 'Navidad', '#Team', 'ElNuevoZol', '106.7', 'http://t.co/4qLAZNzMGE']","['B-TITLE', 'I-TITLE', 'O', 'O', 'O', 'O', 'O', 'O', 'B-EVENT', 'I-EVENT', 'I-EVENT', 'O', 'B-ORG', 'I-ORG', 'O']"
955,"RT @olasdeamor : YO NO NACI PA QUE ME QUIERAN A MEDIAS NI CUANDO SE SIENTAN SOLOS CON SU MISERABLE VIDA , SORRY PERO VALGO DEMASIADOOOO COMO …","['RT', '@olasdeamor', ':', 'YO', 'NO', 'NACI', 'PA', 'QUE', 'ME', 'QUIERAN', 'A', 'MEDIAS', 'NI', 'CUANDO', 'SE', 'SIENTAN', 'SOLOS', 'CON', 'SU', 'MISERABLE', 'VIDA', ',', 'SORRY', 'PERO', 'VALGO', 'DEMASIADOOOO', 'COMO', '…']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
956,😂😂😂 https://t.co/bSeElgA2B3,"['😂😂😂', 'https://t.co/bSeElgA2B3']","['O', 'O']"
957,@blackpresii tú no me conoces,"['@blackpresii', 'tú', 'no', 'me', 'conoces']","['O', 'O', 'O', 'O', 'O']"
958,@javiidiaz06 jajajajajajaja na ' que ver 😂😂,"['@javiidiaz06', 'jajajajajajaja', 'na', ""'"", 'que', 'ver', '😂😂']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
959,PQ la gente buena se VA y los 0 a la izq y dere se Quedan ?! ?!,"['PQ', 'la', 'gente', 'buena', 'se', 'VA', 'y', 'los', '0', 'a', 'la', 'izq', 'y', 'dere', 'se', 'Quedan', '?!', '?!']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
960,Si tu eres un rapero ? Yo soy un ropero .. .. Cabesa ! @ZormanVideos @JordiWild,"['Si', 'tu', 'eres', 'un', 'rapero', '?', 'Yo', 'soy', 'un', 'ropero', '..', '..', 'Cabesa', '!', '@ZormanVideos', '@JordiWild']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
961,RT @TrueFitnessTips : Goal Stomach 😍🙏🏼 https://t.co/mYSYdejbvd,"['RT', '@TrueFitnessTips', ':', 'Goal', 'Stomach', '😍🙏🏼', 'https://t.co/mYSYdejbvd']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
962,RT @mariela_carolin : Con tanto que estudiar y con un sueño brutal,"['RT', '@mariela_carolin', ':', 'Con', 'tanto', 'que', 'estudiar', 'y', 'con', 'un', 'sueño', 'brutal']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
963,Me ha gustado un vídeo de @YouTube de @crypticwisdom ( https://t.co/MyMAYSThpC - Cryptic Wisdom - Throw In The Towel ( Official,"['Me', 'ha', 'gustado', 'un', 'vídeo', 'de', '@YouTube', 'de', '@crypticwisdom', '(', 'https://t.co/MyMAYSThpC', '-', 'Cryptic', 'Wisdom', '-', 'Throw', 'In', 'The', 'Towel', '(', 'Official']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
964,"RT @versacecum : I need like $ 145 , 958 , 939 , 928 . 95 for new clothes","['RT', '@versacecum', ':', 'I', 'need', 'like', '$', '145', ',', '958', ',', '939', ',', '928', '.', '95', 'for', 'new', 'clothes']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
965,RT @adam_krzos : Not even legal . https://t.co/UrrAoiX3na,"['RT', '@adam_krzos', ':', 'Not', 'even', 'legal', '.', 'https://t.co/UrrAoiX3na']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
966,Puedo jurar que he visto como 7 snapchats en este día de personas diciendo : wuju esto se ve malavilloso,"['Puedo', 'jurar', 'que', 'he', 'visto', 'como', '7', 'snapchats', 'en', 'este', 'día', 'de', 'personas', 'diciendo', ':', 'wuju', 'esto', 'se', 've', 'malavilloso']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
967,Pronto #ImagenModelingByLaGatita http://t.co/opfilTe0Co,"['Pronto', '#ImagenModelingByLaGatita', 'http://t.co/opfilTe0Co']","['O', 'O', 'O']"
968,"@Milyl15 it 's cus I 'm laying down lmao it 's like asking to knock out xD , ima wake up early too so I could make some ferria an hit the shop","['@Milyl15', 'it', ""'s"", 'cus', 'I', ""'m"", 'laying', 'down', 'lmao', 'it', ""'s"", 'like', 'asking', 'to', 'knock', 'out', 'xD', ',', 'ima', 'wake', 'up', 'early', 'too', 'so', 'I', 'could', 'make', 'some', 'ferria', 'an', 'hit', 'the', 'shop']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
969,Lo imposible solo existe en tu mente,"['Lo', 'imposible', 'solo', 'existe', 'en', 'tu', 'mente']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
970,RT @Ricardo_Arjona : Lo que nos pidan podemos .. .. . Mujeres . Feliz día .,"['RT', '@Ricardo_Arjona', ':', 'Lo', 'que', 'nos', 'pidan', 'podemos', '..', '..', '.', 'Mujeres', '.', 'Feliz', 'día', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
971,Good day !!,"['Good', 'day', '!!']","['O', 'O', 'O']"
972,@canellas_ jajajjajajaja 😂,"['@canellas_', 'jajajjajajaja', '😂']","['O', 'O', 'O']"
973,scott pilgrim vs . The world es la pelicula más random ever,"['scott', 'pilgrim', 'vs', '.', 'The', 'world', 'es', 'la', 'pelicula', 'más', 'random', 'ever']","['B-TITLE', 'I-TITLE', 'I-TITLE', 'I-TITLE', 'I-TITLE', 'I-TITLE', 'O', 'O', 'O', 'O', 'O', 'O']"
974,RT @WhitePpIStuff : #stopracism2016 https://t.co/JJSUc0UGVR,"['RT', '@WhitePpIStuff', ':', '#stopracism2016', 'https://t.co/JJSUc0UGVR']","['O', 'O', 'O', 'O', 'O']"
975,RT @kidzcolon : - ¿ Cómo era que se llamaba el negrito del bigote ? - Steve Harvey - https://t.co/Pe48sxk4O5,"['RT', '@kidzcolon', ':', '-', '¿', 'Cómo', 'era', 'que', 'se', 'llamaba', 'el', 'negrito', 'del', 'bigote', '?', '-', 'Steve', 'Harvey', '-', 'https://t.co/Pe48sxk4O5']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PER', 'I-PER', 'O', 'O']"
976,Y tu todavía con 18 😂😂😂 https://t.co/Scd2BtVCAf,"['Y', 'tu', 'todavía', 'con', '18', '😂😂😂', 'https://t.co/Scd2BtVCAf']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
977,@NataliaJimenez Pirilos,"['@NataliaJimenez', 'Pirilos']","['O', 'B-LOC']"
978,"RT @reIatabIe : A pet is n't a toy , or a item , a pet is member of a family , not a thing you can throw away http://t.co/ylZRIIaS21","['RT', '@reIatabIe', ':', 'A', 'pet', 'is', ""n't"", 'a', 'toy', ',', 'or', 'a', 'item', ',', 'a', 'pet', 'is', 'member', 'of', 'a', 'family', ',', 'not', 'a', 'thing', 'you', 'can', 'throw', 'away', 'http://t.co/ylZRIIaS21']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
979,"RT @brvvdley : permiso donde está la persona que me traiga café a la cama a estas horas junto con muchos besos , que es esto","['RT', '@brvvdley', ':', 'permiso', 'donde', 'está', 'la', 'persona', 'que', 'me', 'traiga', 'café', 'a', 'la', 'cama', 'a', 'estas', 'horas', 'junto', 'con', 'muchos', 'besos', ',', 'que', 'es', 'esto']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
980,RT @FRlENDSreaction : i can n't get over this https://t.co/InlBMdJWz0,"['RT', '@FRlENDSreaction', ':', 'i', 'can', ""n't"", 'get', 'over', 'this', 'https://t.co/InlBMdJWz0']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
981,When My Parents Tell Me To Get Revenge On People 😂😂 oh gosh,"['When', 'My', 'Parents', 'Tell', 'Me', 'To', 'Get', 'Revenge', 'On', 'People', '😂😂', 'oh', 'gosh']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
982,RT @StephanniieAnn : My lips ft yours .,"['RT', '@StephanniieAnn', ':', 'My', 'lips', 'ft', 'yours', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
983,Yo al levantarme y ver que somos 80.000 zombisitos en twitter ! 😱😱😱😲😍 http://t.co/cCAnyK1UCh,"['Yo', 'al', 'levantarme', 'y', 'ver', 'que', 'somos', '80.000', 'zombisitos', 'en', 'twitter', '!', '😱😱😱😲😍', 'http://t.co/cCAnyK1UCh']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-PROD', 'O', 'O', 'O']"
984,21st century probs https://t.co/7WsPI2sLSg,"['21st', 'century', 'probs', 'https://t.co/7WsPI2sLSg']","['O', 'O', 'O', 'O']"
985,Yaaaassss 💖 qué rico fue verlos . https://t.co/B6NecI9ySc,"['Yaaaassss', '💖', 'qué', 'rico', 'fue', 'verlos', '.', 'https://t.co/B6NecI9ySc']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
986,EL TAG EL YOUTUBER RAP | KRONNO ZOMBER | ( Videoclip Oficial ): https://t.co/3BreSfWL89 vía @YouTube,"['EL', 'TAG', 'EL', 'YOUTUBER', 'RAP', '|', 'KRONNO', 'ZOMBER', '|', '(', 'Videoclip', 'Oficial', '):', 'https://t.co/3BreSfWL89', 'vía', '@YouTube']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
987,RT @CavemanReacts : When the jehovah 's witness start to knock https://t.co/JA9P9VHBA8,"['RT', '@CavemanReacts', ':', 'When', 'the', 'jehovah', ""'s"", 'witness', 'start', 'to', 'knock', 'https://t.co/JA9P9VHBA8']","['O', 'O', 'O', 'O', 'O', 'B-PER', 'O', 'O', 'O', 'O', 'O', 'O']"
988,Eal https://t.co/CrHyce5GHN,"['Eal', 'https://t.co/CrHyce5GHN']","['O', 'O']"
989,Qué carajos yo habré hecho,"['Qué', 'carajos', 'yo', 'habré', 'hecho']","['O', 'O', 'O', 'O', 'O']"
990,No sé porque lo sigues pensando .,"['No', 'sé', 'porque', 'lo', 'sigues', 'pensando', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O']"
991,@nicolevazquez28 https://t.co/GOu284ghkq,"['@nicolevazquez28', 'https://t.co/GOu284ghkq']","['O', 'O']"
992,Trae mas champaña que los hipócritas están secos .,"['Trae', 'mas', 'champaña', 'que', 'los', 'hipócritas', 'están', 'secos', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
993,Y pensar que éramos como hermanas y ahora ni nos hablamos,"['Y', 'pensar', 'que', 'éramos', 'como', 'hermanas', 'y', 'ahora', 'ni', 'nos', 'hablamos']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
994,Y ASI se siente Y vive México #vivamexico #mexicanas #mexicanswag #mexicanas #misangre #adelitas … http://t.co/TApe0cUw4c,"['Y', 'ASI', 'se', 'siente', 'Y', 'vive', 'México', '#vivamexico', '#mexicanas', '#mexicanswag', '#mexicanas', '#misangre', '#adelitas', '…', 'http://t.co/TApe0cUw4c']","['O', 'O', 'O', 'O', 'O', 'O', 'B-LOC', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
995,Como y repito . https://t.co/IyRRO3YmWA,"['Como', 'y', 'repito', '.', 'https://t.co/IyRRO3YmWA']","['O', 'O', 'O', 'O', 'O']"
996,Zombers mañana video de assassins creed !! ! y el lunes si puedo otro rap mas :),"['Zombers', 'mañana', 'video', 'de', 'assassins', 'creed', '!!', '!', 'y', 'el', 'lunes', 'si', 'puedo', 'otro', 'rap', 'mas', ':)']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
997,@hectorgfigueroa jajajaja ah viteeee,"['@hectorgfigueroa', 'jajajaja', 'ah', 'viteeee']","['O', 'O', 'O', 'O']"
998,RT @Luli_Dorada : This gives me life https://t.co/RDrSFENULZ,"['RT', '@Luli_Dorada', ':', 'This', 'gives', 'me', 'life', 'https://t.co/RDrSFENULZ']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
999,RT @camibeatriz13 : Machitos de cartón : Busquen en RAE el significado de ser feminista . NADA TIENE QUE VER DEJARSE PELOS O NO . MADUREN .,"['RT', '@camibeatriz13', ':', 'Machitos', 'de', 'cartón', ':', 'Busquen', 'en', 'RAE', 'el', 'significado', 'de', 'ser', 'feminista', '.', 'NADA', 'TIENE', 'QUE', 'VER', 'DEJARSE', 'PELOS', 'O', 'NO', '.', 'MADUREN', '.']","['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-ORG', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']"
|