-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs_test_generated.arff
More file actions
1058 lines (1055 loc) · 261 KB
/
blogs_test_generated.arff
File metadata and controls
1058 lines (1055 loc) · 261 KB
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
@relation 'C__Bachelor2014_RodeParel2014_BoWeka_blogstrain-weka.filters.unsupervised.attribute.StringToWordVector-R1-W1000-prune-rate-1.0-C-T-I-N0-stemmerweka.core.stemmers.NullStemmer-M1-O-tokenizerweka.core.tokenizers.WordTokenizer -delimiters \" \\r\\n\\t.,;:\\\'\\\"()?!\"'
@attribute @@class@@ {F,M}
@attribute & numeric
@attribute * numeric
@attribute - numeric
@attribute -- numeric
@attribute //www numeric
@attribute 00 numeric
@attribute 1 numeric
@attribute 10 numeric
@attribute 11 numeric
@attribute 12 numeric
@attribute 15 numeric
@attribute 2 numeric
@attribute 20 numeric
@attribute 2004 numeric
@attribute 3 numeric
@attribute 30 numeric
@attribute 4 numeric
@attribute 5 numeric
@attribute 6 numeric
@attribute 7 numeric
@attribute 8 numeric
@attribute 9 numeric
@attribute = numeric
@attribute > numeric
@attribute A numeric
@attribute AND numeric
@attribute After numeric
@attribute All numeric
@attribute Also numeric
@attribute America numeric
@attribute American numeric
@attribute And numeric
@attribute Anyway numeric
@attribute Are numeric
@attribute As numeric
@attribute At numeric
@attribute BORED numeric
@attribute Bored numeric
@attribute Bush numeric
@attribute But numeric
@attribute By numeric
@attribute Can numeric
@attribute D numeric
@attribute Day numeric
@attribute Do numeric
@attribute Don numeric
@attribute English numeric
@attribute Even numeric
@attribute First numeric
@attribute For numeric
@attribute Friday numeric
@attribute From numeric
@attribute God numeric
@attribute Good numeric
@attribute Have numeric
@attribute He numeric
@attribute Hello numeric
@attribute Here numeric
@attribute Hey numeric
@attribute His numeric
@attribute How numeric
@attribute However numeric
@attribute I numeric
@attribute If numeric
@attribute Im numeric
@attribute In numeric
@attribute Is numeric
@attribute It numeric
@attribute Its numeric
@attribute John numeric
@attribute July numeric
@attribute Just numeric
@attribute Kerry numeric
@attribute Last numeric
@attribute Let numeric
@attribute Like numeric
@attribute Love numeric
@attribute Man numeric
@attribute Maybe numeric
@attribute Me numeric
@attribute Monday numeric
@attribute More numeric
@attribute Mr numeric
@attribute My numeric
@attribute New numeric
@attribute No numeric
@attribute Not numeric
@attribute Now numeric
@attribute O numeric
@attribute Of numeric
@attribute Oh numeric
@attribute Ok numeric
@attribute On numeric
@attribute One numeric
@attribute Or numeric
@attribute Our numeric
@attribute P numeric
@attribute People numeric
@attribute S numeric
@attribute Saturday numeric
@attribute She numeric
@attribute So numeric
@attribute Some numeric
@attribute Sometimes numeric
@attribute Sunday numeric
@attribute THE numeric
@attribute TV numeric
@attribute That numeric
@attribute The numeric
@attribute Then numeric
@attribute There numeric
@attribute These numeric
@attribute They numeric
@attribute This numeric
@attribute To numeric
@attribute Today numeric
@attribute U numeric
@attribute We numeric
@attribute Well numeric
@attribute What numeric
@attribute When numeric
@attribute Which numeric
@attribute While numeric
@attribute Who numeric
@attribute Why numeric
@attribute Will numeric
@attribute With numeric
@attribute YOU numeric
@attribute Yeah numeric
@attribute Yes numeric
@attribute Yo numeric
@attribute You numeric
@attribute Your numeric
@attribute a numeric
@attribute able numeric
@attribute about numeric
@attribute above numeric
@attribute across numeric
@attribute act numeric
@attribute actually numeric
@attribute add numeric
@attribute after numeric
@attribute afternoon numeric
@attribute again numeric
@attribute against numeric
@attribute age numeric
@attribute ago numeric
@attribute air numeric
@attribute all numeric
@attribute almost numeric
@attribute alone numeric
@attribute along numeric
@attribute alot numeric
@attribute already numeric
@attribute also numeric
@attribute although numeric
@attribute always numeric
@attribute am numeric
@attribute amazing numeric
@attribute an numeric
@attribute and numeric
@attribute another numeric
@attribute answer numeric
@attribute any numeric
@attribute anymore numeric
@attribute anyone numeric
@attribute anything numeric
@attribute anyway numeric
@attribute anyways numeric
@attribute are numeric
@attribute area numeric
@attribute around numeric
@attribute as numeric
@attribute ask numeric
@attribute asked numeric
@attribute asking numeric
@attribute asleep numeric
@attribute ass numeric
@attribute at numeric
@attribute ate numeric
@attribute away numeric
@attribute awesome numeric
@attribute b numeric
@attribute baby numeric
@attribute back numeric
@attribute bad numeric
@attribute band numeric
@attribute basically numeric
@attribute be numeric
@attribute beach numeric
@attribute beautiful numeric
@attribute became numeric
@attribute because numeric
@attribute become numeric
@attribute bed numeric
@attribute been numeric
@attribute beer numeric
@attribute before numeric
@attribute begin numeric
@attribute beginning numeric
@attribute behind numeric
@attribute being numeric
@attribute believe numeric
@attribute best numeric
@attribute better numeric
@attribute between numeric
@attribute big numeric
@attribute birthday numeric
@attribute bit numeric
@attribute black numeric
@attribute blog numeric
@attribute blood numeric
@attribute blue numeric
@attribute body numeric
@attribute book numeric
@attribute books numeric
@attribute bored numeric
@attribute boring numeric
@attribute both numeric
@attribute bought numeric
@attribute bout numeric
@attribute box numeric
@attribute boy numeric
@attribute break numeric
@attribute bring numeric
@attribute brother numeric
@attribute brought numeric
@attribute bunch numeric
@attribute bus numeric
@attribute business numeric
@attribute busy numeric
@attribute but numeric
@attribute buy numeric
@attribute by numeric
@attribute c numeric
@attribute call numeric
@attribute called numeric
@attribute calls numeric
@attribute came numeric
@attribute camp numeric
@attribute can numeric
@attribute cannot numeric
@attribute cant numeric
@attribute car numeric
@attribute care numeric
@attribute case numeric
@attribute catch numeric
@attribute caught numeric
@attribute cause numeric
@attribute certain numeric
@attribute chance numeric
@attribute change numeric
@attribute changed numeric
@attribute check numeric
@attribute child numeric
@attribute children numeric
@attribute church numeric
@attribute city numeric
@attribute class numeric
@attribute clean numeric
@attribute close numeric
@attribute coffee numeric
@attribute cold numeric
@attribute college numeric
@attribute com numeric
@attribute come numeric
@attribute comes numeric
@attribute coming numeric
@attribute comment numeric
@attribute comments numeric
@attribute company numeric
@attribute completely numeric
@attribute computer numeric
@attribute continue numeric
@attribute control numeric
@attribute conversation numeric
@attribute cool numeric
@attribute cos numeric
@attribute could numeric
@attribute couldn numeric
@attribute country numeric
@attribute couple numeric
@attribute course numeric
@attribute coz numeric
@attribute crap numeric
@attribute crazy numeric
@attribute cry numeric
@attribute cut numeric
@attribute cute numeric
@attribute cuz numeric
@attribute d numeric
@attribute dad numeric
@attribute damn numeric
@attribute dance numeric
@attribute dark numeric
@attribute date numeric
@attribute day numeric
@attribute days numeric
@attribute de numeric
@attribute dead numeric
@attribute deal numeric
@attribute dear numeric
@attribute death numeric
@attribute decided numeric
@attribute definitely numeric
@attribute den numeric
@attribute did numeric
@attribute didn numeric
@attribute didnt numeric
@attribute die numeric
@attribute different numeric
@attribute dinner numeric
@attribute do numeric
@attribute does numeric
@attribute doesn numeric
@attribute dog numeric
@attribute doing numeric
@attribute don numeric
@attribute done numeric
@attribute dont numeric
@attribute don’t numeric
@attribute door numeric
@attribute down numeric
@attribute dream numeric
@attribute drink numeric
@attribute drive numeric
@attribute driving numeric
@attribute due numeric
@attribute dun numeric
@attribute dunno numeric
@attribute during numeric
@attribute e numeric
@attribute each numeric
@attribute early numeric
@attribute easy numeric
@attribute eat numeric
@attribute eating numeric
@attribute either numeric
@attribute else numeric
@attribute email numeric
@attribute end numeric
@attribute ended numeric
@attribute enjoy numeric
@attribute enough numeric
@attribute entire numeric
@attribute especially numeric
@attribute etc numeric
@attribute even numeric
@attribute evening numeric
@attribute ever numeric
@attribute every numeric
@attribute everyday numeric
@attribute everyone numeric
@attribute everything numeric
@attribute exactly numeric
@attribute except numeric
@attribute excited numeric
@attribute expect numeric
@attribute experience numeric
@attribute eyes numeric
@attribute face numeric
@attribute fact numeric
@attribute fall numeric
@attribute family numeric
@attribute far numeric
@attribute fast numeric
@attribute fat numeric
@attribute father numeric
@attribute favorite numeric
@attribute fear numeric
@attribute feel numeric
@attribute feeling numeric
@attribute feelings numeric
@attribute feels numeric
@attribute fell numeric
@attribute felt numeric
@attribute few numeric
@attribute fight numeric
@attribute figure numeric
@attribute film numeric
@attribute finally numeric
@attribute find numeric
@attribute fine numeric
@attribute finish numeric
@attribute finished numeric
@attribute first numeric
@attribute floor numeric
@attribute following numeric
@attribute food numeric
@attribute for numeric
@attribute forever numeric
@attribute forget numeric
@attribute form numeric
@attribute forward numeric
@attribute found numeric
@attribute four numeric
@attribute free numeric
@attribute friend numeric
@attribute friends numeric
@attribute from numeric
@attribute front numeric
@attribute fuck numeric
@attribute fucking numeric
@attribute full numeric
@attribute fun numeric
@attribute funny numeric
@attribute future numeric
@attribute game numeric
@attribute games numeric
@attribute gave numeric
@attribute gay numeric
@attribute get numeric
@attribute gets numeric
@attribute getting numeric
@attribute girl numeric
@attribute girls numeric
@attribute give numeric
@attribute given numeric
@attribute giving numeric
@attribute glad numeric
@attribute go numeric
@attribute god numeric
@attribute goes numeric
@attribute going numeric
@attribute gone numeric
@attribute gonna numeric
@attribute good numeric
@attribute got numeric
@attribute gotta numeric
@attribute gotten numeric
@attribute great numeric
@attribute group numeric
@attribute guess numeric
@attribute guy numeric
@attribute guys numeric
@attribute had numeric
@attribute haha numeric
@attribute hair numeric
@attribute haiz numeric
@attribute half numeric
@attribute hand numeric
@attribute hands numeric
@attribute hang numeric
@attribute happen numeric
@attribute happened numeric
@attribute happens numeric
@attribute happy numeric
@attribute hard numeric
@attribute has numeric
@attribute hate numeric
@attribute have numeric
@attribute haven numeric
@attribute having numeric
@attribute he numeric
@attribute head numeric
@attribute hear numeric
@attribute heard numeric
@attribute heart numeric
@attribute hehe numeric
@attribute hell numeric
@attribute help numeric
@attribute her numeric
@attribute here numeric
@attribute hey numeric
@attribute high numeric
@attribute him numeric
@attribute himself numeric
@attribute his numeric
@attribute history numeric
@attribute hit numeric
@attribute hold numeric
@attribute home numeric
@attribute hope numeric
@attribute hopefully numeric
@attribute hoping numeric
@attribute hot numeric
@attribute hour numeric
@attribute hours numeric
@attribute house numeric
@attribute how numeric
@attribute however numeric
@attribute http numeric
@attribute huge numeric
@attribute human numeric
@attribute hurt numeric
@attribute i numeric
@attribute idea numeric
@attribute ideas numeric
@attribute if numeric
@attribute ill numeric
@attribute im numeric
@attribute important numeric
@attribute in numeric
@attribute information numeric
@attribute inside numeric
@attribute instead numeric
@attribute interesting numeric
@attribute internet numeric
@attribute into numeric
@attribute is numeric
@attribute isn numeric
@attribute it numeric
@attribute its numeric
@attribute job numeric
@attribute just numeric
@attribute juz numeric
@attribute keep numeric
@attribute kept numeric
@attribute kid numeric
@attribute kids numeric
@attribute kill numeric
@attribute kind numeric
@attribute kinda numeric
@attribute knew numeric
@attribute know numeric
@attribute known numeric
@attribute knows numeric
@attribute la numeric
@attribute large numeric
@attribute last numeric
@attribute late numeric
@attribute lately numeric
@attribute later numeric
@attribute laugh numeric
@attribute lazy numeric
@attribute le numeric
@attribute learn numeric
@attribute learned numeric
@attribute least numeric
@attribute leave numeric
@attribute leaving numeric
@attribute left numeric
@attribute less numeric
@attribute lesson numeric
@attribute let numeric
@attribute lets numeric
@attribute life numeric
@attribute light numeric
@attribute like numeric
@attribute liked numeric
@attribute line numeric
@attribute link numeric
@attribute list numeric
@attribute listen numeric
@attribute listening numeric
@attribute little numeric
@attribute live numeric
@attribute lives numeric
@attribute living numeric
@attribute ll numeric
@attribute lol numeric
@attribute long numeric
@attribute longer numeric
@attribute look numeric
@attribute looked numeric
@attribute looking numeric
@attribute looks numeric
@attribute lor numeric
@attribute lose numeric
@attribute lost numeric
@attribute lot numeric
@attribute lots numeric
@attribute love numeric
@attribute loved numeric
@attribute luck numeric
@attribute lunch numeric
@attribute m numeric
@attribute mad numeric
@attribute made numeric
@attribute make numeric
@attribute makes numeric
@attribute making numeric
@attribute mama numeric
@attribute man numeric
@attribute many numeric
@attribute married numeric
@attribute matter numeric
@attribute may numeric
@attribute maybe numeric
@attribute me numeric
@attribute mean numeric
@attribute means numeric
@attribute meant numeric
@attribute meet numeric
@attribute meeting numeric
@attribute men numeric
@attribute message numeric
@attribute met numeric
@attribute mi numeric
@attribute middle numeric
@attribute might numeric
@attribute mind numeric
@attribute mine numeric
@attribute minute numeric
@attribute minutes numeric
@attribute miss numeric
@attribute mom numeric
@attribute moment numeric
@attribute money numeric
@attribute month numeric
@attribute months numeric
@attribute mood numeric
@attribute more numeric
@attribute morning numeric
@attribute most numeric
@attribute mother numeric
@attribute mouth numeric
@attribute move numeric
@attribute moved numeric
@attribute movie numeric
@attribute movies numeric
@attribute moving numeric
@attribute much numeric
@attribute music numeric
@attribute must numeric
@attribute my numeric
@attribute myself numeric
@attribute n numeric
@attribute name numeric
@attribute near numeric
@attribute need numeric
@attribute needed numeric
@attribute needs numeric
@attribute never numeric
@attribute new numeric
@attribute news numeric
@attribute next numeric
@attribute nice numeric
@attribute night numeric
@attribute no numeric
@attribute normal numeric
@attribute not numeric
@attribute note numeric
@attribute nothing numeric
@attribute now numeric
@attribute number numeric
@attribute o numeric
@attribute of numeric
@attribute off numeric
@attribute office numeric
@attribute often numeric
@attribute oh numeric
@attribute ok numeric
@attribute okay numeric
@attribute old numeric
@attribute on numeric
@attribute once numeric
@attribute one numeric
@attribute ones numeric
@attribute online numeric
@attribute only numeric
@attribute open numeric
@attribute or numeric
@attribute order numeric
@attribute other numeric
@attribute others numeric
@attribute our numeric
@attribute out numeric
@attribute outside numeric
@attribute over numeric
@attribute own numeric
@attribute p numeric
@attribute page numeric
@attribute pain numeric
@attribute paper numeric
@attribute parents numeric
@attribute part numeric
@attribute party numeric
@attribute pass numeric
@attribute past numeric
@attribute pay numeric
@attribute peace numeric
@attribute people numeric
@attribute perfect numeric
@attribute person numeric
@attribute personal numeric
@attribute phone numeric
@attribute pick numeric
@attribute picture numeric
@attribute pictures numeric
@attribute place numeric
@attribute plan numeric
@attribute play numeric
@attribute played numeric
@attribute playing numeric
@attribute please numeric
@attribute point numeric
@attribute pool numeric
@attribute poor numeric
@attribute possible numeric
@attribute post numeric
@attribute power numeric
@attribute ppl numeric
@attribute pretty numeric
@attribute probably numeric
@attribute problem numeric
@attribute problems numeric
@attribute public numeric
@attribute put numeric
@attribute question numeric
@attribute questions numeric
@attribute quite numeric
@attribute r numeric
@attribute rain numeric
@attribute ran numeric
@attribute random numeric
@attribute rather numeric
@attribute re numeric
@attribute read numeric
@attribute reading numeric
@attribute ready numeric
@attribute real numeric
@attribute realize numeric
@attribute realized numeric
@attribute really numeric
@attribute reason numeric
@attribute recently numeric
@attribute red numeric
@attribute relationship numeric
@attribute remember numeric
@attribute rest numeric
@attribute return numeric
@attribute ride numeric
@attribute right numeric
@attribute road numeric
@attribute rock numeric
@attribute room numeric
@attribute run numeric
@attribute running numeric
@attribute s numeric
@attribute sad numeric
@attribute said numeric
@attribute same numeric
@attribute sat numeric
@attribute saw numeric
@attribute say numeric
@attribute saying numeric
@attribute says numeric
@attribute scared numeric
@attribute school numeric
@attribute second numeric
@attribute see numeric
@attribute seeing numeric
@attribute seem numeric
@attribute seemed numeric
@attribute seems numeric
@attribute seen numeric
@attribute self numeric
@attribute send numeric
@attribute sense numeric
@attribute sent numeric
@attribute seriously numeric
@attribute set numeric
@attribute several numeric
@attribute sex numeric
@attribute shall numeric
@attribute share numeric
@attribute she numeric
@attribute shit numeric
@attribute shopping numeric
@attribute short numeric
@attribute should numeric
@attribute show numeric
@attribute shower numeric
@attribute sick numeric
@attribute side numeric
@attribute sign numeric
@attribute simple numeric
@attribute simply numeric
@attribute since numeric
@attribute single numeric
@attribute sister numeric
@attribute sit numeric
@attribute site numeric
@attribute sitting numeric
@attribute situation numeric
@attribute sleep numeric
@attribute small numeric
@attribute smile numeric
@attribute so numeric
@attribute some numeric
@attribute someone numeric
@attribute something numeric
@attribute sometimes numeric
@attribute somewhere numeric
@attribute song numeric
@attribute songs numeric
@attribute soon numeric
@attribute sorry numeric
@attribute sort numeric
@attribute soul numeric
@attribute sound numeric
@attribute space numeric
@attribute special numeric
@attribute spend numeric
@attribute spent numeric
@attribute stand numeric
@attribute start numeric
@attribute started numeric
@attribute starting numeric
@attribute starts numeric
@attribute state numeric
@attribute stay numeric
@attribute still numeric
@attribute stop numeric
@attribute store numeric
@attribute stories numeric
@attribute story numeric
@attribute straight numeric
@attribute strange numeric
@attribute street numeric
@attribute strong numeric
@attribute students numeric
@attribute study numeric
@attribute stuff numeric
@attribute stupid numeric
@attribute such numeric
@attribute sucks numeric
@attribute summer numeric
@attribute sun numeric
@attribute support numeric
@attribute suppose numeric
@attribute supposed numeric
@attribute sure numeric
@attribute sweet numeric
@attribute system numeric
@attribute t numeric
@attribute tO numeric
@attribute take numeric
@attribute taken numeric
@attribute takes numeric
@attribute taking numeric
@attribute talk numeric
@attribute talked numeric
@attribute talking numeric
@attribute tat numeric
@attribute teacher numeric
@attribute team numeric
@attribute tell numeric
@attribute telling numeric
@attribute test numeric
@attribute than numeric
@attribute thank numeric
@attribute thanks numeric
@attribute that numeric
@attribute thats numeric
@attribute the numeric
@attribute their numeric
@attribute them numeric
@attribute themselves numeric
@attribute then numeric
@attribute there numeric
@attribute these numeric
@attribute they numeric
@attribute thing numeric
@attribute things numeric
@attribute think numeric
@attribute thinking numeric
@attribute thinks numeric
@attribute this numeric
@attribute those numeric
@attribute though numeric
@attribute thought numeric
@attribute thoughts numeric
@attribute three numeric
@attribute through numeric
@attribute till numeric
@attribute time numeric
@attribute times numeric
@attribute tired numeric
@attribute to numeric
@attribute today numeric
@attribute together numeric
@attribute told numeric
@attribute tomorrow numeric
@attribute tonight numeric
@attribute too numeric
@attribute took numeric
@attribute top numeric
@attribute totally numeric
@attribute touch numeric
@attribute towards numeric
@attribute town numeric
@attribute training numeric
@attribute tried numeric
@attribute trip numeric
@attribute true numeric
@attribute trust numeric
@attribute truth numeric
@attribute try numeric
@attribute trying numeric
@attribute turn numeric
@attribute turned numeric
@attribute two numeric
@attribute type numeric
@attribute u numeric
@attribute under numeric
@attribute understand numeric
@attribute until numeric
@attribute up numeric
@attribute update numeric
@attribute upon numeric
@attribute ur numeric
@attribute urlLink numeric
@attribute us numeric
@attribute use numeric
@attribute used numeric
@attribute using numeric
@attribute usual numeric
@attribute usually numeric
@attribute ve numeric
@attribute very numeric
@attribute view numeric
@attribute visit numeric
@attribute voice numeric
@attribute w/ numeric
@attribute wait numeric
@attribute waiting numeric
@attribute wake numeric
@attribute walk numeric
@attribute walked numeric
@attribute walking numeric
@attribute wanna numeric
@attribute want numeric
@attribute wanted numeric
@attribute wants numeric
@attribute war numeric
@attribute was numeric
@attribute wasn numeric
@attribute wat numeric
@attribute watch numeric
@attribute watched numeric
@attribute watching numeric
@attribute water numeric
@attribute way numeric
@attribute ways numeric
@attribute we numeric
@attribute web numeric
@attribute website numeric
@attribute week numeric
@attribute weekend numeric
@attribute weeks numeric
@attribute weird numeric
@attribute well numeric
@attribute went numeric
@attribute were numeric
@attribute what numeric
@attribute whatever numeric
@attribute when numeric
@attribute where numeric
@attribute whether numeric
@attribute which numeric
@attribute while numeric
@attribute white numeric
@attribute who numeric
@attribute whole numeric
@attribute why numeric
@attribute wif numeric
@attribute wife numeric
@attribute will numeric
@attribute win numeric
@attribute wish numeric
@attribute with numeric
@attribute within numeric
@attribute without numeric
@attribute woke numeric
@attribute woman numeric
@attribute women numeric
@attribute won numeric
@attribute wonder numeric
@attribute wonderful numeric
@attribute word numeric
@attribute words numeric
@attribute work numeric
@attribute worked numeric
@attribute working numeric
@attribute works numeric
@attribute world numeric
@attribute worth numeric
@attribute would numeric
@attribute wouldn numeric
@attribute write numeric
@attribute writing numeric
@attribute written numeric
@attribute wrong numeric
@attribute wrote numeric
@attribute www numeric
@attribute y numeric
@attribute ya numeric
@attribute yea numeric
@attribute yeah numeric
@attribute year numeric
@attribute years numeric
@attribute yes numeric
@attribute yesterday numeric
@attribute yet numeric
@attribute you numeric