-
Notifications
You must be signed in to change notification settings - Fork 1
/
output_30000words_3000Topics.txt
3000 lines (3000 loc) · 279 KB
/
output_30000words_3000Topics.txt
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
Cluster 0 :: glider|motorized
Cluster 1 :: diamond|pearl|platinum|tin|diamonds|sands|oz|jewel|amber|gem|jade|gems|emerald
Cluster 2 :: brief|delivered|accompanied|delivering|exchanged|accompanying|accompany
Cluster 3 :: functional|structured|inferior|domains|complementary|peripheral|geographically|differentiate|analogous|differentiation|conserved|differentiated|hierarchical
Cluster 4 :: gilmore|ackerman|tad|devine|carmichael|carly|nair
Cluster 5 :: skaters|shooters|skated|jumpers|sprinters|sprints
Cluster 6 :: unfair|unfairly|biased|discriminatory|penalized|discriminate|discriminated|discriminating
Cluster 7 :: building|built|destroyed|abandoned|constructed|housed|erected|demolished|premises|dismantled|derelict
Cluster 8 :: 135|270|210|145|155|165|185|275|290|187|215|195|205|235|209|245|217
Cluster 9 :: pena|posada|palacio|guillen
Cluster 10 :: power|system|control|authority|controlled|internal|controls|regulatory|controlling|monopoly
Cluster 11 :: selected|selection|entries|selections|summaries|first-team|signings|rosters|panelists|filmography|alternates
Cluster 12 :: arab|turkey|egypt|saudi|arabia|kuwait|opec
Cluster 13 :: santa|fe|vista|clara|aurora|casa|rancho|laguna|corona|buena|alta|catalina|poly|isla|blanca
Cluster 14 :: 8.5|4.6|4.8|5.6|4.7|3.9|5.2|5.4|5.3|5.7|5.1|5.8|4.9|6.3|6.2|6.4|5.9|6.7|6.6|6.8|6.1|7.2|7.6|7.3|7.8|7.1|7.4|7.7|6.9|8.3|5.0|8.2|8.7|8.4|7.9|8.8|8.6|9.6|8.1|6.0|9.4|8.9|9.3|9.2|9.8|9.7|10.4|7.0|8.0|9.0
Cluster 15 :: subsidized|meager|allowances|rations|necessities|handouts|ration
Cluster 16 :: 1861|1867|1868|1848|1866|1850|1857|1859|1854|1855|1851|1856|1858|1840|1830|1852|1853|1847|1849|1846|1845|1837|1836|1841|1844|1832|1839|1838|1835|1842|1843|1834|1820|1831|1833|1825|1821|1824|1828|1829|1818|1826|1827|1819|1822|1817|1823
Cluster 17 :: high|each|less|level|light|usually|regular|fine|normal|extra|weight|typically|fixed|usual|normally|reserved|accommodate|lighter
Cluster 18 :: intensity|gravity|arc|atmospheric|measurements|velocity|particle|acceleration|cosmic|resonance|gravitational|kinetic|spectral|mach|illumination
Cluster 19 :: crack|drag|trap|squeeze|runaway|stall|lid|scaling|sow|choke|clamp|stalk
Cluster 20 :: finds|explains|discover|reveals|clues|discovering|clue
Cluster 21 :: dayton|klein|kessler|schwarz|heller|weil|cohn|deutsch|brill|wiener
Cluster 22 :: impress|preferring|tempted|emulate|dared|wisely|tempting|applaud|disappoint|redeem|indulge|aspire|imitate
Cluster 23 :: welcome|guests|invite|inviting|welcoming|patrons|entourage|greet|invites|entertain|eagerly|invitations|entertained|autograph|autographs|dine
Cluster 24 :: garcia|gonzalez|lopez|mario|sanchez|ivan|rafael|alberto|fernandez|felix|marcos|diaz|ruiz|guillermo|alejandro|romero|rios|vargas|ferrer|marcelo|jimenez|gustavo|ayala|ignacio|rodrigo|ochoa|marquez|nestor|agustin|ruslan|feliciano
Cluster 25 :: daniel|ben|benjamin|jan|levy|jacob
Cluster 26 :: easter|feast|nativity|supper|passover|crucifixion|epiphany
Cluster 27 :: recover|destroy|rid|heal|ruin|wipe|erase|destroys|dispose|reconstruct|rehabilitate|undo
Cluster 28 :: abdullah|karzai|aziz|hamid|badawi|raza|abul|gilani|surayud
Cluster 29 :: 0.25|0.05|0.10|0.15|0.50|0.75|0.20|0.30|1.00|0.40|0.60
Cluster 30 :: james|smith|jones|johnson|jackson|taylor|lewis|wilson|ray|allen|dean|anderson|clark|anthony|harris|kelly|robinson|moore|walker|ward|barry|foster|russell|baker|lawrence|roberts|marshall|franklin|parker|phillips|keith|cooper|butler|ralph|harrison|sullivan|brooks|duncan|harvey|carroll|coleman|leslie|fuller
Cluster 31 :: safety|charge|enforcement|duty|handle|complaints|handling|duties|routine|handled|scrutiny|handles
Cluster 32 :: chili|barbecue|peppers|sesame|salsa|spicy
Cluster 33 :: tech|giants|franchise|titans|wizards|pennant
Cluster 34 :: 50-year|reclusive|frail|60-year|39-year|41-year|42-year|43-year|44-year|retires|46-year|47-year|52-year|48-year|55-year|54-year|53-year|49-year|70-year|51-year|65-year|56-year|58-year|62-year|electrician|61-year|57-year|80-year|75-year|63-year|defector|72-year|burly|bureaucrat|73-year|59-year|64-year|76-year|66-year|71-year
Cluster 35 :: form|thus|particular|meaning|therefore|forms|function|exist|defined|functions|object|refers|element|expression|derived|e.g.|root|exists|i.e.|representation|whereas|domain|hence|relation|usage|corresponding|input|desired|so-called
Cluster 36 :: jude|hershey|littleton|woolmer|arden|pullman|worthington|kettering
Cluster 37 :: fan|competitor|joins|teamed|promoter|newcomer|creators|promoters|partnered|prodigy|kasparov|wrestled|teaming|superstars|upstart|rep|partnering
Cluster 38 :: straits|macao|macau|sar|hksar
Cluster 39 :: 9,000|11,000|13,000|18,000|14,000|16,000|17,000|45,000|22,000|65,000|7,500|37,000|28,000|21,000|24,000|23,000|26,000|55,000|27,000|19,000|36,000|32,000|8,500|33,000|38,000|85,000|42,000|34,000|31,000|47,000|12,500
Cluster 40 :: kit|kits|excel|layouts|updating|customized|instructional|personalized|manuals|essentials
Cluster 41 :: signed|passed|declared|draft|re|adopted|officially|formally|successfully|drafted|favour|unsuccessful|narrowly
Cluster 42 :: josef|alexei|nikolai|oleg|anatoly|valentin|gianni|chubais|konstantin|popov
Cluster 43 :: venus|davenport|serena|hingis|henin|clijsters|seles|martina|sharapova|mauresmo|capriati|justine|hardenne|steffi|amelie|kournikova|navratilova
Cluster 44 :: n.y.|penn|albany|syracuse|hartford|rochester|worcester|trenton|tacoma|akron|huntsville|bridgeport|marquette|harrisburg|nj|scranton|middletown|colgate|ithaca
Cluster 45 :: na|u|mo|hi|ne|ti|hum|gi|tha|av|je|ao|om|hla|pe
Cluster 46 :: roma|fiorentina|udinese|sampdoria|siena
Cluster 47 :: attacked|surrendered|besieged|retreating|overrun|disarmed|recaptured|bombarded|counterattack|retaliated|encircled|repelled|repulsed|regrouped|dislodge|confederates|mutineers
Cluster 48 :: cote|chiapas|d'ivoire|bissau|tome|kwazulu|bougainville
Cluster 49 :: steeply|sloping
Cluster 50 :: ames|hayward|baird|forrester|mead|meteorologist|elmer|aubrey|harriman|wilbur|shoemaker|huey|bea|shum
Cluster 51 :: weakened|strengthened|grip|weakening|weaken|footing|recovers|strengthens|lowers|eases|weakens
Cluster 52 :: ming|hui|yi|yao|feng|ching|yin|kuo|jian|chih|liao|quan|hou
Cluster 53 :: spit|mouths|noses|crooked|poke|scratching|tongues|rubbing|brushing|poking|rubbed|smack|sucking|elbows|screwed|brow
Cluster 54 :: father|son|brother|uncle|cousin|elder|grandfather|inherited|grandson|nephew|eldest|heir|descendant|paternal|brother-in-law|son-in-law|half-brother
Cluster 55 :: legs|shoulders|knees|muscles|limbs|toes|healed|hips|throats|ankles|amputated|wrists|thighs|crutches
Cluster 56 :: 101|105|115|103|102|104|108|106|112|107|111|109|113|114|118|122|117|116|121|119
Cluster 57 :: finn|sven|o'sullivan|rudi|marius|chappell|stoltenberg|solheim|gregor|rohan
Cluster 58 :: â|1948|1947|1949|1950|1956|1958|1946|1957|1955|1953|1954|1952|1939|1951|1936|1938|1937|1920|1930|1929|1935|1933|1934|1932|1928|1924|1927|1931|1922|1912|1923|1921|1925|1926|circa
Cluster 59 :: neglected|obsessed|profoundly|fascinated|restless|taboo|dysfunctional|psyche|preoccupied|immersed|blurred|conflicted|intertwined|steeped|charmed|tormented|haunts|captivated|intimately|fates
Cluster 60 :: columns|framed|hangs|engraved|pulpit|pictured|framing|etched|pedestal|effigy
Cluster 61 :: committed|actions|politically|innocent|commit|hostile|intent|motivated|engaging|committing|accountable
Cluster 62 :: canterbury|crusaders|otago|highlanders|waikato
Cluster 63 :: oo|hashim|ould|kabbah|massoud|abdelaziz|thaci
Cluster 64 :: uh|bah
Cluster 65 :: canal|inland|downstream|upstream|waterway|waterways
Cluster 66 :: embrace|rooted|aspirations|guiding|ideals|embracing|civilized|uniting|embodied|embraces|unifying|enlightened|coexistence|embodies|sensibilities|modernity|unites|redefine|prides|pluralism|peacemaker
Cluster 67 :: straight|tied|tie|trailing|snapped|tying|notched
Cluster 68 :: 24th|22nd|23rd|27th|26th|28th|29th|31st|42nd|35th|32nd|34th|33rd|36th|38th|43rd|37th|39th|45th|44th|41st|51st|49th|48th|47th
Cluster 69 :: successful|acting|alongside|promoted|performing|acted|credited|appearing|occasions|whilst|directing|professionally
Cluster 70 :: hampton|flint|stockton|denny|lansing|calhoun|kern|washburn|sutter|durant|ashby
Cluster 71 :: ambitious|conceived|scaled|envisioned|cornerstone|radically|groundwork|endeavor|envisions|envisaged|broadened|horizons|fruition|phasing
Cluster 72 :: touted|boasted|hallmark|mainstay|heralded
Cluster 73 :: 1.35|1.15|1.05|1.45|1.65|1.06|1.08|1.02|1.12|1.07|1.04|1.55|1.03|1.13|1.20|1.14|1.16|1.10|1.26|1.17|1.18|1.27|1.30|1.09|1.24|1.23|1.28|1.34|1.01|1.19|1.38|1.22|1.40|1.36|1.33|1.29|1.37|1.32|1.44|1.42|1.56|1.11|1.47|1.21|1.46|1.43|1.54|1.60|1.31|1.39
Cluster 74 :: brooklyn|queens|bronx|harlem|staten|nyc|chinatown|uptown
Cluster 75 :: cancer|breast|lung|alzheimer|prostate
Cluster 76 :: founder|directors|founding|architects|founders|pioneers|u.s.-based|inc|co-founder|co-founded|inventors
Cluster 77 :: creator|batman|vampire|trilogy|superman|protagonist|villain|flick|godfather|buffy|spider-man|slayer|tarzan|joker
Cluster 78 :: express|customer|competitors|spin|ups|tap|tips|rolls|offs|fedex
Cluster 79 :: intermittent|deluge|incessant|downpour
Cluster 80 :: growth|rate|higher|low|increase|rates|demand|increased|levels|reduce|increasing|reduced|output|increases|reduction|reducing|consumption|decrease|decreased|lowering
Cluster 81 :: frogs|owls|carp|crows|squirrels|wilt|horned|eels
Cluster 82 :: rhythm|tempo|rhythms|samba|drumming|unison|flamenco
Cluster 83 :: accomplices|apprehended|nabbed|swoop
Cluster 84 :: decorations|baskets|floral|beads|ornaments|decorate|plaques|wreaths
Cluster 85 :: enjoy|grace|comfort|pleasure|enjoying|spirits|enjoys|affection|hospitality|warmth|enjoyment|serenity
Cluster 86 :: guardians|monarchs|reigned|banished|ascended|reigns|pantheon|unchallenged|pariah|inquisition|purged|hermit|lapsed
Cluster 87 :: mouse|robot|bug|bugs|robots|worm|clone|clones|pod|pods
Cluster 88 :: has|new|been|_|now|country|american|here|times|far|today|become|already|america|working|nation|ever|recently|becoming
Cluster 89 :: donovan|gill|brendan|nolan|kris|mcbride|toby|thorn|wilkins|cory|lenny|jarvis|tobin|orr|damian|wendell|p.j.|donnelly|witt|kirkland|hartman|hobbs|beasley|jody|hanley|sanderson|bonner|delaney|gabe|mcfadden|mchale|dooley
Cluster 90 :: netherlands|switzerland|austria|belgium|luxembourg|malta|liechtenstein|andorra
Cluster 91 :: slept|asleep|woke|awake|waking|wakes|awakened|awoke|happiest
Cluster 92 :: cheney|lieberman|biden|pelosi|gephardt|mondale
Cluster 93 :: until|held|became|moved|served|worked|opened|returned|spent|joined|camp|completed|retired|entered|serving|shortly|returning|newly|settled|transferred|subsequently|joining|briefly|residence|afterwards|thereafter|sometime|proceeded
Cluster 94 :: cherry|banana|strawberry|coconut|citrus|peach|plum|mango|pineapple|fig|pear|raspberry|cranberry
Cluster 95 :: niger|cameroon|senegal|madagascar|mali|togo|faso|burkina|gabon|mauritania|benin|equatorial|zanzibar|andean|gambia|seychelles|comoros|asturias|tabasco
Cluster 96 :: publicity|spotlight|lately|wildly|accustomed|hype|relentlessly|rooting|hyped
Cluster 97 :: enron|citigroup|mae|freddie|aig|worldcom|stearns|fannie|madoff|jpmorgan|tyco|bailed|fdic
Cluster 98 :: berlusconi|prodi|silvio|romano|aznar|zapatero|barroso|dini|fini|gianfranco|d'alema
Cluster 99 :: allocation|supplemental|allocate|miscellaneous|supplementary|appropriation|earmarks|tenders|allocations|omnibus|h.r.|amt
Cluster 100 :: case|cases|evidence|claimed|claims|account|claim|accounts|claiming|disputed
Cluster 101 :: seizure|neglect|remedy|deed|termination|abandonment|lapse|insanity|redress|recourse|confiscation|tort|alteration|grievance
Cluster 102 :: zagreb|herzegovina|mostar|hercegovina
Cluster 103 :: lebanese|serbian|chechnya|croatian|chechen|georgian|rouge|khmer|grozny|chechens|ossetian
Cluster 104 :: mel|clint|eastwood|crowe|quentin|hanks|sylvester|downey|scorsese|travolta|niro|redford|tarantino|dicaprio|stallone|depp|caine|costner|coen
Cluster 105 :: great|art|works|modern|famous|notable|inspired|legend|legendary|renowned|well-known|famed|finest
Cluster 106 :: ring|shape|plate|shaped|outer|rings|plates|triangle|circular|cone|resemble|resembles|resembling|rectangular|motif|inverted
Cluster 107 :: method|methods|engineered|devised|formulated|formulation|devise|implements|modifying
Cluster 108 :: bratislava|ljubljana|hc
Cluster 109 :: human|source|critical|specific|effective|crucial|sensitive|essential|vital|useful|consistent|survival|credible|responses|timely
Cluster 110 :: beverly|carson|wilder|colbert|regis|wynn|melrose|ness|ripley|brinkley|casper
Cluster 111 :: dip|topping|dipping|dips|sizzling|bottomed
Cluster 112 :: 35|45|65|32|33|36|34|44|38|37|48|55|42|64|39|41|43|47|46|52|49|51|54|56|53|58|57|62|59|61
Cluster 113 :: growers|ranchers|conservationists|ranches|landless
Cluster 114 :: gerrard|drogba|lampard|nistelrooy|anelka|robben|giggs|scholes
Cluster 115 :: condition|treatment|patients|treated|patient|mental|treat|treating|diagnosis|medically|terminally|diagnose
Cluster 116 :: mexican|cuban|colombian|venezuelan|chilean|peruvian|rican|bolivian|guatemalan|kazakh|nicaraguan|panamanian
Cluster 117 :: greatest|remarkable|amazing|tremendous|incredible|feat|unbelievable|awesome|astonishing|accomplishment|phenomenal|astounding
Cluster 118 :: recognition|outstanding|contribution|extraordinary|achievement|distinguished|achievements|distinction|merit|exceptional|excellence|credentials|accomplishments|honorable|exemplary
Cluster 119 :: marine|airborne|auxiliary|commando|detachment|platoon|cadet|idf|sac|hq|gunner|medic|brig
Cluster 120 :: yankee|torre|piazza|ballpark|steinbrenner|fenway|dugout|dodger|maddon|piniella|scioscia|francona|russa|girardi
Cluster 121 :: aberdeen|dundee|motherwell|inverness|kilmarnock|thistle|hibernian|falkirk
Cluster 122 :: weapons|gun|assault|weapon|explosive|battery|lethal
Cluster 123 :: kerman|khorasan|khuzestan
Cluster 124 :: flooded|dumped|washed|drowned|submerged|choked|inundated|swallowed|swamped|floodwaters|felled
Cluster 125 :: functioning|stabilized|impacted|precarious|fragmented|redundant|unaffected|adversely|constrained|nonexistent|unsustainable|manageable|degraded|skewed|insulated|deficient|overheated|spotty|unbalanced|structurally
Cluster 126 :: ousted|thaksin|dictator|assassinated|ouster|pinochet|deposed|shinawatra|pardoned
Cluster 127 :: stanford|georgetown|rutgers|loyola|fordham|tulane|pepperdine
Cluster 128 :: gmt|0800|0000|2100|utc|0600|11:00|2200|0500|0700|0900|0100|0200|0400
Cluster 129 :: han|zhou|jin|zhao|yan|cao|shi|qin|jun|ye|qi|xiao|luo|bai|ren|jing|cai|bao|ning|gu|xia|xue|zhong|surnamed|xin|xian
Cluster 130 :: hijacked|hijackers|airliner|hijacking|hijacker|hijack|hijackings
Cluster 131 :: speech|comments|criticism|criticized|remarks|statements|responded|repeated|addressed|voiced|stern|responding|suggestions|suggestion|echoed|hinted|commenting|remark|criticisms|angrily|echoing
Cluster 132 :: protective|mask|masks|gloves|helmet|helmets|pads|tattoo|tattoos|donned|goggles
Cluster 133 :: gap|extending|spur|gaps|widening|narrowed|widened|expands|widen|splits|narrowing|narrower|broadening|widest|broadest|bridging|narrows|widens
Cluster 134 :: via|links|link|connected|connections|linking|connect|accessible|connecting|nearest|corridor|connects|gateway|motorway|connector
Cluster 135 :: dubbed|mini|newest|nicknamed|branded|outfit|infamous|pirate|styled|puppet|sleeper|puppets|fronted
Cluster 136 :: displaced|homeless|hungry|needy|starved|starving|livelihoods|traumatized|destitute|resettled|thirsty
Cluster 137 :: airing|daytime|airs|nightly|newscast|reruns|newscasts|simulcast|on-air|bulletins
Cluster 138 :: muslim|muslims|jews|christians|arabs|catholics|protestants|moslems
Cluster 139 :: authorities|issued|refused|ordered|rejected|sought|request|accept|accepted|demands|granted|demanded|failing|demanding|behalf|requested|permission|appealed|authorized|amnesty|deny|refusing|accepting|denying|assurances
Cluster 140 :: smoke|dust|cloud|clouds|ash|fog|haze|swirling|vent|mist|plume|shrouded|spewing|swirl|vents|plumes
Cluster 141 :: trent|hutchison|barr|hutchinson|redmond|coles|mcdermott|asa|lamont|packer|healey
Cluster 142 :: relay|heats|springboard|synchronized|seeding|relays|clocking|preliminaries
Cluster 143 :: canon|oriental|dominion|citadel|aero|spartan|forerunner|peking|benevolent|afro|msc|hellenic|triad|meiji|exponent
Cluster 144 :: successes|sensational|slew|exploits|notoriety|triumphs|penchant|chronicled|buffs|renown
Cluster 145 :: doubts|implications|heightened|urgency|dire|underscored|troubling|underlined|alarming|vulnerability|seriousness|perceptions|underscore|illustrates|repercussions|underscores|worrisome|geopolitical|underscoring|clouded|ramifications|predicament|underline|underlining|reinforces|overshadow|underlines|preoccupation|fragility
Cluster 146 :: calculated|equation|variable|probability|measurement|variables|parameters|calculate|calculation|proportional|approximate|equilibrium|calculating|corresponds|optimal|correlation|approximation|estimation|measurable|deviation|decomposition|variance|computed|compute
Cluster 147 :: year|2006|2000|2004|2005|2001|2003|2002|1998|1996|1999|1994|1997|1995|1993|1992|1991|1990
Cluster 148 :: dwelling|dwellings|nests
Cluster 149 :: moi|chiluba|mwanawasa|kaunda|mkapa|chissano|arap
Cluster 150 :: scott|miller|howard|recalled|carter|christopher|gordon|stewart|nelson|thompson|edwards|donald|douglas|campbell|adams|graham|ross|dick|wright|mitchell|perry|burns|warren|fred|colin|collins|evans|bradley|hughes|reid|reed|richardson|stevens|lloyd|cameron|glenn|bennett|robertson|harper|casey|palmer|burton|o'neill|webb|richards|elliott|kemp|garner
Cluster 151 :: substances|algae|poisonous|toxins|toxin
Cluster 152 :: escort|escorted|boarded|marshals|transports|escorting|escorts|ferried|ferrying
Cluster 153 :: street|manhattan|mall|courthouse|auditorium|waterfront|marriott|precinct|avenues|midtown|soho|hyatt|roundabout|showroom|promenade|concourse
Cluster 154 :: ami|uri|ser|shlomo|bot|mor
Cluster 155 :: literature|literary|poetry|scholar|writings|scholarly
Cluster 156 :: rebounds|bryant|o'neal|kobe|ewing|iverson|payton|rodman|barkley|shaquille|garnett|sprewell|odom|pippen|nowitzki|shaq|olajuwon|hardaway|marbury|camby|lebron|bibby|mcgrady|alonzo|gooden|horry|cassell|jamison|mutombo|starks|scottie|billups|artest
Cluster 157 :: change|process|term|means|changes|step|follow|steps|meant|solution|shift|transition|passage|reverse|introduce|pressing
Cluster 158 :: ford|toyota|honda|mercedes|bmw|renault|volvo|benz|porsche|audi|peugeot|lexus|subaru|psa|citroen|acura
Cluster 159 :: yankees|sox|dodgers|angels|mets|cardinals|rays|braves|cubs|mariners|rockies|astros|orioles|phillies|royals|marlins|padres|nl|brewers|jays|diamondbacks|expos
Cluster 160 :: natal|granada|regency|goa|soweto|bandung|transvaal
Cluster 161 :: microsoft|apple|google|yahoo|aol|amazon|browser|ebay|netscape|amazon.com|napster|compuserve|msn|skype
Cluster 162 :: outbreak|epidemic|malaria|outbreaks|famine|plague|cholera|ebola|epidemics
Cluster 163 :: jeopardy|rests|stumbling|headway|lifeline|squarely|unravel|stymied|hinges|juncture|hinge|snag|leveling|drags|unraveling|impediment|languishing|reverses|hinged|shatter
Cluster 164 :: confirmed|comment|anonymity|questioned|unclear|informed|confirm|questioning|interviewed|disclosed|confirmation|contacted|notified|whereabouts|confirming|spokesmen
Cluster 165 :: woods|mickelson|els|ernie|duval|montgomerie|langer|faldo|goosen|furyk|o'meara|ballesteros|olazabal|padraig|stricker
Cluster 166 :: clever|unconventional|storytelling|imaginative|knack|unorthodox|meticulous|inventive|shrewd|honed|motivational|skillful|deft|cunning|ingenious|deftly
Cluster 167 :: bjp|janata|bharatiya|dal|akp
Cluster 168 :: ac|juventus|serie|atletico|sevilla|villarreal|espanyol|betis
Cluster 169 :: petrol|stove|kerosene|heater|propane|transformer
Cluster 170 :: desperate|desperately|scrambling|scrambled|vain|scramble|takers|frantic|fend|rescuing|rescues|regroup|drown|hurried|injure|wayward|subdue
Cluster 171 :: plain|pleasant|hamlet|paradise|crossroads|surroundings|oasis|sleepy|smoky|tranquil
Cluster 172 :: circulating|popped|popping|laced|pops|bubbles|flea|filtered|chatter|circulate|buzzing|drip
Cluster 173 :: acceptable|technically|flawed|irrelevant|problematic|sensible|prudent|render|feasible|unrealistic|meaningless|theoretically|plausible|insignificant|imperfect|unsuitable|preferable|impractical|formality|conscientious|sane|workable|untested|unwise|deem|renders|untenable
Cluster 174 :: stick|loose|backs|sticking|bent|fold|splitting|wedge|50-50|tread|nosed
Cluster 175 :: pizza|burger|sandwich|butcher|hamburger|fries|taco|burgers|deli|kfc
Cluster 176 :: ceremony|reception|funeral|occasion|invitation|tribute|honored|blessing|farewell|ceremonial|dedication|courtesy|homage|banquet|swearing|solemn
Cluster 177 :: protest|rally|protests|staged|demonstrations|demonstration|boycott|rallies|protesting|marches
Cluster 178 :: very|too|little|look|always|bad|feel|seems|felt|bit|quite|seemed|looked|seem|pretty|looks|feeling|seeing|nice|fit|obviously|feels|definitely|comfortable|hardly|tired
Cluster 179 :: skipper|vaughan|mcgrath|ponting|warne|waugh|graeme|collingwood|gilchrist|stumps|lbw|flintoff|cairns|rounder|pietersen|lehmann|wicketkeeper|martyn|gough|swann|atherton|vettori|openers|symonds|hussey|alastair|harmison|bevan|trescothick
Cluster 180 :: dah|nuh|hahm|neh|beel
Cluster 181 :: color|colors|colored|pale|distinctive|colour|colours|tones|darker|shades|coloured|markings|palette
Cluster 182 :: jump|jumping|leap|dive|jumps|ascent|trajectory|leaps|dives|pendulum|glide|dizzying
Cluster 183 :: dissolved|dissolution|constituent|dissolve|assemblies|parliaments|unitary|dissolving
Cluster 184 :: check|checks|checked|searched|checking|searches|luggage|baggage|handlers
Cluster 185 :: dancer|troupe|ballroom|tango|cabaret|revue|vaudeville|stand-up|topless
Cluster 186 :: fruit|seeds|vegetables|varieties|fruits|vegetable|cultivated|herbs|edible|medicinal|pollen
Cluster 187 :: television|radio|tv|network|channel|broadcast|bbc|broadcasting|channels|fm|broadcasts|broadcasters
Cluster 188 :: sarah|alice|kate|rachel|lucy|rebecca|sally|dorothy|annie|jenny|holly|heather|hannah|lily|natalie|bonnie|elaine|maggie|debbie|molly|alison|tara|stella|cathy|esther|veronica|dolly|rosie|hurley|phyllis|gwen|sasha|leah|becky|polly|jenna|chloe|lillian|fiona|sheryl|bianca|gretchen|phoebe|minnie
Cluster 189 :: run|start|minutes|runs|starting|spot|starts|heading|tonight|walks|midway|halfway|kicks|outing
Cluster 190 :: gambling|dealings|insider|misuse|peddling|collusion
Cluster 191 :: presided|presiding|recess|attends|chairmanship|commencement|preside|conclave
Cluster 192 :: javier|raul|reyes|vicente|gutierrez|alvarez|navarro|padilla|suarez|garza|roque|fuentes|serrano|ismael|carrillo|pascual
Cluster 193 :: homework|preschool|chores|volunteering|extracurricular|mentors|mentoring|tutoring|arranges|caregivers
Cluster 194 :: dirt|gravel|quarry|asphalt|boulders
Cluster 195 :: lack|quality|superior|integrity|guidance|lacked|lacks|lacking|effectiveness|satisfaction|motivation|sensitivity|assurance|reliability|clarity|competence
Cluster 196 :: expressions|linguistic|phenomena|representations|meanings|distinctions|contexts|esoteric|manifestations|grammatical|kinship
Cluster 197 :: roche|nestle|elf|mittal|novartis|aventis|sanofi|elan
Cluster 198 :: company|based|business|private|management|firm|corporate|marketing
Cluster 199 :: biography|poem|illustrated|poems|manuscript|diary|essay|memoir|autobiography|mentions|memoirs|prose|biographical|treatise|unpublished|autobiographical|obituary|preface|novella
Cluster 200 :: tensions|tension|confrontation|standoff|intensified|escalating|escalated|defuse|flared|raged|simmering|intensifying|erupt|rages
Cluster 201 :: teammate|frenchman|spaniard|compatriot|dutchman|unseeded|countryman
Cluster 202 :: crisis|turmoil|troubles|plagued|woes|crises|crunch|lingering|fallout|deteriorating|worsening|deepening|worsened|reeling|mired|deepened|compounded|exacerbated|soured|beset|spiraling|malaise|plaguing
Cluster 203 :: andre|gerard|olivier|lionel|emmanuel|didier|thierry|frederic|christophe|julien|petit|guillaume|franck|baptiste|laporte|dimitri|sylvain|roux|fabien|lacroix
Cluster 204 :: acres|hectares|timber|farmland|fertile|plantations|orchards|pasture|pastures|acreage|arable
Cluster 205 :: reunion|reunited|sting|bye|usher|breakout|sequels|encore|reprise|auditioned|midseason|carte|reprised|tlc
Cluster 206 :: tung|kan|tsang|tsai|chuan|tseng|hsien|hsiung
Cluster 207 :: insects|snakes|bees|ants|butterflies|orchid|spiders|reptiles|fishes|lizards|nocturnal|orchids|nectar
Cluster 208 :: surfaces|mesh
Cluster 209 :: nokia|siemens|telekom|ericsson|alcatel|bertelsmann|ntt|handset
Cluster 210 :: cocktail|treats|culinary|humane|massage|specialties|immersion|delicacy|palate
Cluster 211 :: drivers|taxi|drunk|cab|speeding|motorists|occupants|pedestrians|minibus|motorbike|motorist|lorry
Cluster 212 :: uphold|creed|emancipation|upholding|affirm|affirming|holiness
Cluster 213 :: calif.|fla.|waco|mesa|ariz.|tucson|pasadena|fresno|albuquerque|wichita|monterey|glendale|sarasota|scottsdale|gainesville|n.m.|marietta|tempe|raton|clearwater|lakeland|peoria|topeka|bakersfield
Cluster 214 :: anticipate|anticipating|y2k|lag|foreseeable|underestimate|foresee|materialize|entail|factored|falter|foreseen|quantify|rectify
Cluster 215 :: 325|375|425|365|435
Cluster 216 :: list|considered|status|names|coverage|rare|recognized|represent|category|profile|designated|exception|additionally|lesser|unofficial|inclusion|exceptions
Cluster 217 :: nigerian|somali|lankan|bangladeshi
Cluster 218 :: advance|aim|multi|pursuit|advancing|eventual|poised|aiming|securing|steer|concerted|propel|gearing|unify
Cluster 219 :: ron|rick|bobby|armstrong|randy|wade|lance|sanders|riley|tracy|owens|reeves|allison|rusty|mccoy|nate|hackett|brock|darrell|wally|coughlin|famer|davey|keenan|orton
Cluster 220 :: likes|liked|remembered|dad|speaks|mom|recalls|loves|reminded|dear|q.|remembers|wondered|stranger|wonders|happily|cares|reminds|remarked|dreamed|fond|footsteps|remembering|hers|complains|hates|observes|quipped|liking|mum|grandma|boyhood|fondly|bothers|exclaimed|laments|messing
Cluster 221 :: surrounded|stones|rocks|lined|beneath|scattered|atop|underneath|surround|flanked|dotted|perched|ringed
Cluster 222 :: plymouth|oldham|peterborough|shrewsbury|colchester|swindon|hereford|chesterfield|crewe|guernsey|stockport|grimsby|argyle
Cluster 223 :: snyder|randall|gregg|lester|lamar|bartlett|bowen|stanton|haley|sampson|gus|cody|lockhart|cutler|grossman|upton|strickland|leavitt|jessie|paige|grady|dorsey|hodges|maloney|callahan|mathews|j.j.|lawton|blount|chaney|dickey|clements|maddox|leland|nellie|silas|mcdaniel|westbrook|dickerson
Cluster 224 :: begin|prepared|preparing|prepare|preparation|preparations|underway|slated|arrange|resumes|contingency|commence
Cluster 225 :: bnp|mdc|pf|zanu
Cluster 226 :: refugees|iraqis|afghans|iranians|pakistanis|egyptians|syrians|bosnians|ethiopians|returnees|gazans
Cluster 227 :: pain|stress|fever|mild|anxiety|fatigue|pains|headache|rash|headaches|discomfort|vomiting|nausea|irritation|coughing
Cluster 228 :: anchor|anchored|anchors|perch|lifeboat
Cluster 229 :: baghdad|kabul|kandahar|basra|fallujah|mosul|najaf|kirkuk|swat|helmand|anbar|karbala|tikrit|diyala|ramadi|herat|afar|samarra|khost|jalalabad|baquba|baqouba|balad
Cluster 230 :: ana|domingo|santo|paz|banda|cordoba|rua|luz
Cluster 231 :: baptist|methodist|presbyterian|lutheran|wesleyan|congregational|bethel|unitarian|adventist
Cluster 232 :: graphic|themes|presents|presentation|highlights|highlighted|highlight|overview|backdrop|incorporates|highlighting|discusses|chronology|thematic
Cluster 233 :: fresh|mixed|flat|solid|medium|soft|thin|smooth|balanced|greens|slim|stiff|lean|crisp|softer|softened
Cluster 234 :: freeport|cnooc|unocal
Cluster 235 :: pace|sharp|stable|steady|modest|robust|unexpectedly|durable|brisk
Cluster 236 :: tip|horn|rod|hook|cage|alley|cutter|bait|hooks
Cluster 237 :: leon|miranda|marta|hidalgo|benito|ocampo|dolores|figueroa|prado|newsom
Cluster 238 :: pound|kg|kilograms|ton|weighing|weighs|tonne|kilos|kilogram|lbs|kilo
Cluster 239 :: notation|coded|diagram|coding|typing|query|template|encoding|footnotes|pointers|diagrams|decimal
Cluster 240 :: lagos|cancun|bam|cebu|brasilia|phuket|acapulco|cabo|yucatan|tegucigalpa
Cluster 241 :: nasrallah|bakiyev|karimov|akayev|rajoelina|markovic
Cluster 242 :: imran
Cluster 243 :: acknowledge|speculated|speculate|concede|doubted|underestimated|speculating
Cluster 244 :: euro1|euro2|euro3|eur|euro4|euro5|euro7|euro6|euro8|euro10
Cluster 245 :: incentives|incentive|borrow|lend|leverage|balances|insure|defer|forgo|leeway
Cluster 246 :: welfare|medicare|insurers|medicaid|pensions|retirees|beneficiaries|insured|uninsured|californians|beneficiary|hmos|retiree|entitlement|hmo|subsidize|voucher|aarp|pensioners|delinquent
Cluster 247 :: habib|akram|issa|latif|mushtaq
Cluster 248 :: sanctuary|crescent|pilgrim|keepers|zoos|audubon|sanctuaries|beggars
Cluster 249 :: trapping|stifling|unfettered|shielded|glare|shielding|seeker
Cluster 250 :: injured|wounding|injuring|injures
Cluster 251 :: mtv|hbo|miniseries|tnt|specials|showtime|syndication|vh1
Cluster 252 :: indictment|affidavit|indictments|perjury|unsealed
Cluster 253 :: mai|sai|gia|clique|wat
Cluster 254 :: forests|habitat|environments|habitats|vegetation|freshwater|wetlands|fauna|soils|ecosystems|inhabit|grassland|wetland
Cluster 255 :: playoff|berth|clinched|clinch|clinching|berths
Cluster 256 :: hundred|thousand
Cluster 257 :: home|half|close|point|lost|side|almost|middle|reached|remain|reach|rest|remained|leaving|places|alone|remaining|managed|closer|reaching|elsewhere|stayed|entering|barely|quarters|closest
Cluster 258 :: freezing|withdrawals|tolls|cutoff|freezes|surcharge|shortening|warranty
Cluster 259 :: constitution|legislation|constitutional|referendum|amendment|veto|amendments|amend|rewrite|override|referendums|amending|abstentions
Cluster 260 :: zoellick|kantor|perino|ereli|charlene|barshefsky
Cluster 261 :: serve|choice|compete|chosen|choose|chose|preferred|favored|choices|select|prefer|choosing|prospective|preference|skip|opt|chooses|selecting|preferences|opting|whichever
Cluster 262 :: elementary|berkeley|uc|dartmouth|polytechnic|amherst|wellesley|claremont
Cluster 263 :: norman|leonard|gilbert|andrews|fitzgerald|mann|joyce|baldwin|hale|brooke|clifford|cooke|wills|wyatt|peck|melville|harlan|mortimer|bingham|wainwright|bancroft|wallis
Cluster 264 :: service|services|provide|access|commercial|provided|limited|additional|resources|facilities|provides|providing|transportation|existing|centers|extensive|communication|purposes
Cluster 265 :: published|magazine|article|page|edition|ad|publication|publishing|publisher|publications|publish|publishers|editions|reprinted
Cluster 266 :: skiers|everest|climbers|explorers|hikers|climber|mountaineers|mountaineering
Cluster 267 :: 0-0|1-2|1-3|0-1|0-2|0-3|0-4
Cluster 268 :: food|production|produced|natural|product|produce|fields|producing|producers|raw|produces|quantities|commercially|pulp|refined
Cluster 269 :: christie|conrad|bart|humphrey|shelley|sonia|pam|doris|judd|bullock|lois|katharine|ferris|reeve|blaine|christy|thurman|edna|grover|geraldine|o'toole
Cluster 270 :: floyd|byron|rodney|byrd|marvin|howell|roe|atkins|cochran|frazier|glover|garland|guthrie|haynes|whitaker|sheehan|billie|johnnie|lacy|kendrick|haggard|estes|crockett|ashe|mcneil|redding|redman|lowery|hatton|pate|bronson
Cluster 271 :: rocket|tank|tanks|rockets|propelled|launchers|launcher|scud
Cluster 272 :: apparent|intense|absence|extreme|considerable|difficulties|overcome|enormous|unprecedented|demonstrated|sudden|difficulty|lasting|unexpected|confusion|overwhelming|witnessed|setback|breakdown|spite|inability|coupled|enduring|morale|embarrassment|immense|setbacks|overcoming|sustaining
Cluster 273 :: 10th|18th|11th|12th|17th|16th|13th|15th|21st|14th|tenth|eleventh|twelfth
Cluster 274 :: telegraph|caller|telephoned|communicated|relayed|phoned|retracted
Cluster 275 :: spell|ashes|scoreboard|replay|fixture|spells|midweek|penultimate|fortnight|twickenham|pre-season|scorecard
Cluster 276 :: orchestras|conductors|ensembles
Cluster 277 :: center|san|los|angeles|atlanta|francisco|houston|miami|diego|austin|d.c.|orleans|l.a.
Cluster 278 :: chan|tan|chung|wong|chin|lim|lai|teng|lam|chow|leung|chong|jen|ting|kun|yung|ong|chou|fung|chiu|fong|kao|chia
Cluster 279 :: angle|vertical|axis|horizontal|angles|alternating|angular|radial|diagonal|perpendicular|transverse|longitudinal
Cluster 280 :: reinstated|magistrates|regents|cas|pcb|overruled|reprimanded|moot|arbitrator|impeached
Cluster 281 :: glimpse|insights|scant|impressions|firsthand|solace|reminders|fleeting|parting|negatives|glimpses|recollection|recollections|glimmer|snapshots|indelible
Cluster 282 :: rather|terms|certain|self|basis|subject|fair|simple|decisions|purpose|exercise|unusual|appropriate|proper|manner|proof|merely|reasonable|explanation|consideration|careful|symbolic|purely|transparent
Cluster 283 :: denied|previously|initially|admitted|insisted|reportedly|repeatedly|publicly|complained|defended|withdrew|privately|separately|withdrawn|secretly|admitting
Cluster 284 :: congressman|mitch|crist|jeb|dianne|condit|robb|barbour|rubio|carnahan|menendez|meek|landrieu|hoffa|kaine|mccollum|congresswoman|bustamante
Cluster 285 :: seeks|urges|agrees|warns|rejects|announces|prepares|welcomes|accepts|confirms|declares|defends|u.s|resigns|hails|awaits|quits|dismisses|clears|withdraws|suspends|assures|cancels|mulls
Cluster 286 :: slender|triangular|apex|hairs|underside|basal|hairy|elongated|spherical|cylindrical|snout|plumage|elliptical
Cluster 287 :: just|get|good|going|go|come|every|got|better|job|coming|getting|doing|chance|sure|gone|expect|lose|spend|tomorrow|gotten|hopefully
Cluster 288 :: title|champion|super|titles|trophy|reigning|crowned|champ
Cluster 289 :: revived|ceased|prominence|discontinued|mid-1990s|inception|2000s|mid-1980s|onwards|advent|short-lived|mid-1970s|onward|mid-1960s|mid-1950s
Cluster 290 :: issuing|deposit|certificates|issuance|receipt|coupon|approvals|prospectus
Cluster 291 :: monkeys|dinosaurs|mutant|apes|primates|homo
Cluster 292 :: envoy|mideast|albright|madeleine|holbrooke|bildt|ahtisaari|zinni|akashi
Cluster 293 :: contested|outright|overturned|disqualified|boycotted|rigged|rigging|invalid|hotly|contesting|annulled|boycotting|disqualification|overturning|plebiscite
Cluster 294 :: germany|poland|czechoslovakia
Cluster 295 :: summit|g8|g20|summits|g7|g-8|g-7|g-20
Cluster 296 :: division|1st|2nd|3rd|4th|5th|7th|6th|9th|8th
Cluster 297 :: conducted|conducting|investigative|conjunction|recruitment|assignments|conducts|directs|participates|hoc|specialised|referral|engages
Cluster 298 :: old|veteran|teenager|20-year|25-year|19-year|18-year|17-year|22-year|24-year|23-year|21-year|16-year|26-year|27-year|28-year|29-year|40-year|32-year|35-year|31-year|33-year|34-year|36-year|38-year|37-year|youngster|45-year|lanky
Cluster 299 :: junior|athletics|wrestling|competitions|volleyball|collegiate|polo|badminton|softball|competes|varsity|handball|squash|lacrosse|snooker|intercollegiate|cheerleading
Cluster 300 :: grabbed|basket|grab|stole|kicking|tossed|shoots|grabs|steals|grabbing|punching|rounding|netting|tossing|leaping|rushes|snaps|nifty
Cluster 301 :: mention|naming|addresses|explicit|explicitly|specifics|mentioning|purported|omitted|misstated
Cluster 302 :: plastic|bag|bags|boxes|stuffed|rack|cardboard|suitcase|wallet|backpack|racks|drawer|briefcase|suitcases
Cluster 303 :: freestyle|butterfly|medley|100m|200m|breaststroke|backstroke|400m|100-meter|50m|400-meter|speedskating|200-meter|steeplechase
Cluster 304 :: button|keys|lets|click|dial|zip|handy|edit|tab|sync|peek|clicking|clicks|clicked|browse
Cluster 305 :: restore|restoration|rebuild|prosperity|rebuilding|fragile|restoring|preserving|stewardship|normalcy
Cluster 306 :: ab|ba|jr|ch|dl|kc|sh|ata|cpr|ref|ns
Cluster 307 :: lyrics|melody|ballad|chord|groove|lyrical|melodies|ballads|melodic|rhymes|chords|funky|catchy|riff|intro|harmonies|soulful|riffs
Cluster 308 :: sudan|ethiopia|sudanese|algeria|yemen|khartoum|eritrea|sahara|djibouti
Cluster 309 :: beautiful|spectacular|sights|lovely|magnificent|glorious|spectacle|masterpiece|scenery|gorgeous|sparkling|dazzling|splendid|graceful|extravagant|breathtaking|exquisite|glittering|sublime|serene|panoramic|grandeur|splendor|grandiose
Cluster 310 :: juvenile|offenders|inmate|solitary|convicts|offender|juveniles|incarcerated|felons|abusers
Cluster 311 :: non|individual|membership|participate|promotion|participation|participating|collective|voluntary|sponsorship
Cluster 312 :: injection|injected|inject|injections|infusion|injecting|venom|swallowing
Cluster 313 :: intelligence|secret|agent|agents|fbi|cia|spy|inspector|detective|investigator|detectives|undercover|covert|dea|plame|atf|counterintelligence
Cluster 314 :: m.|s.|r.|p.|v.|g.|t.|k.|n.|y.
Cluster 315 :: loud|applause|cheers|laughter|ovation|rousing|whistles|boos|thunderous|loudest
Cluster 316 :: wells|sterling|fargo|hancock|peabody|eastman|darby|sag|tinker|lasalle|banc|babcock
Cluster 317 :: gb|sp|mod|mb|bn|rss|pv|kb
Cluster 318 :: singer|musician|guitarist|drummer|songwriter|vocalist|bassist|singer-songwriter|saxophonist|keyboardist|lyricist|arranger|trumpeter|guitarists
Cluster 319 :: attack|attacks|suicide|bombing|bombings|raid|bomber|bombers|airstrike
Cluster 320 :: fat|cholesterol|fats
Cluster 321 :: degrees|temperature|temperatures|celsius|fahrenheit|humidity
Cluster 322 :: michael|paul|peter|martin|frank|andrew|stephen|patrick|simon|walter|steven|jonathan|bernard|victor|nicholas|vincent|arnold|oliver|raymond|gregory|leo|adrian|mccarthy|denis|clement
Cluster 323 :: eds|updates|update|recasts|grafs|dateline|ams|retransmitting|recaps
Cluster 324 :: london|paris|frankfurt|amsterdam|zurich
Cluster 325 :: uttar|madhya|panchayat|mandal|haryana
Cluster 326 :: duchess|helena|brittany|countess|isabella|lorraine|blanche|constance|matilda|maud|selma|henrietta
Cluster 327 :: lane|glen|moss|kyle|heath|shannon|logan|joey|sutton|dawson|carlton|barton|clyde|lawson|tyrone|sharpe|galloway|wes|stokes|poole|bradshaw
Cluster 328 :: upscale|fashionable|chic|boutique|trendy|cosmopolitan|parisian|posh|fashions|clientele|boutiques
Cluster 329 :: cream|juice|lemon|sour|lime|ginger|peel|vanilla|paste|cinnamon|tart|zest
Cluster 330 :: havoc|withstand|heaviest|shocks|brunt|blizzard|jolt|snowstorm|battering|withstood|wreak
Cluster 331 :: inflammatory|suicidal|schizophrenia|paranoid|manic|atypical|psychotic
Cluster 332 :: charges|accused|charged|criminal|alleged|allegedly|conspiracy|suspicion|spying|implicated|espionage|complicity
Cluster 333 :: sciences|physics|chemistry|mathematics|astronomy
Cluster 334 :: fragments|caves|skeleton|unearthed|tombs|excavated|mounds|skeletons|neolithic|burials|footprints|exhumed
Cluster 335 :: breeders|thoroughbred|stud|sire|breeder|stallion|racehorse
Cluster 336 :: d|feinstein|lugar|waxman|grassley|durbin|baucus|domenici|hoyer|murtha|hagel|santorum|calif|conyers
Cluster 337 :: pole|trainer|rider|jockey|skier|racer|cyclist|sprinter|sitter
Cluster 338 :: chavez|fujimori|estrada|uribe|calderon|ernesto|alvaro|salinas|zedillo|menem|samper|beshir|pastrana|obrador|montesinos|evo|deby
Cluster 339 :: port|transport|routes|shipping|ports|airspace|terminals|ferries
Cluster 340 :: friend|fellow|colleagues|citizen|aide|colleague|mentor|servant|bodyguard|classmate|staffer|befriended
Cluster 341 :: gently|evenly|spoon|rub|discard|scrape|crumble|scraping|scatter|boils
Cluster 342 :: lap|runners|riders|raced|laps|podium|chasing|rode|cruising|racers|swam|leaderboard|skied|peloton
Cluster 343 :: mobile|cable|networks|wireless|providers|provider|subscribers|cellular|broadband|modem|subscriber|3g|connectivity|modems|gsm|dsl
Cluster 344 :: punched|pinned|bumped|fists|hoisted|overboard|shoved|handcuffs|stretcher|bolted|banged|chained|tripped|trampled|propped|yanked|outstretched
Cluster 345 :: deliberately|lied|intentionally|improperly|compromised|manipulated|cooperated|systematically|wrongly|falsely|misled|knowingly|disposed|discredited|scrutinized|interfered|misused|purposely|corrupted|unwittingly|deceived|selectively|obstructed
Cluster 346 :: performed|solo|string|collaboration|touring|trio|duo|toured|instrumental|quartet|jam|duet|line-up|collaborations|thrash
Cluster 347 :: industrials|tf|inched|ipc|firmed|sti
Cluster 348 :: priests|bishops|clergy|parishioners
Cluster 349 :: earthquake|quake|tsunami
Cluster 350 :: populist|preacher|firebrand
Cluster 351 :: deer|slaughter|herd|hog|herds|hogs|bison|feral
Cluster 352 :: lyon|monaco|marseille|bordeaux|toulouse|lille|germain|etienne|nantes|auxerre|rennes|metz|montpellier|grenoble|toulon|caen|sochaux|clermont|havre|lorient
Cluster 353 :: ii|iii|iv|vi|vii
Cluster 354 :: mechanism|arrangement|conversion|separation|binding|renewal|indirect|whereby|initiate|conditional|protocols|incorporation|linkage
Cluster 355 :: dishes|salad|pasta|sandwiches|noodles|spaghetti|salads|sauces|soups
Cluster 356 :: south|north|west|east|western
Cluster 357 :: islamic|hamas|militant|hezbollah|radical|extremists|jihad|islamist|extremist|fundamentalist|aqsa
Cluster 358 :: pakistani|egyptian|syrian|jordanian|kuwaiti|yemeni|bahraini
Cluster 359 :: sah|ay|hy|bur|dur
Cluster 360 :: imf|eurozone|oecd|iea
Cluster 361 :: streets|sidewalk|corridors|sidewalks|driveway|walkway|hallways|alleys
Cluster 362 :: fake|collecting|schemes|junk|unauthorized|fraudulent|billing|inflated|scam|collects|bogus|phony|copying|fictitious|unsolicited|faked|scams
Cluster 363 :: goal|scored|goals|score|scoring|assists|scorer|scorers
Cluster 364 :: rose|fell|closed|cents|dropped|gained|traded|jumped|climbed|slipped|shed|plunged|rallied|surged|edged|soared|tumbled|slid|slumped|dipped|retreated|rebounded
Cluster 365 :: mine|coal|mining|mines|miners|ore
Cluster 366 :: space|build|facility|memory|installed|solar|upgrade|installation|install|installations|installing|upgrades|purification|state-of-the-art
Cluster 367 :: involved|activities|crime|responsible|responsibility|linked|involving|acts|connection|conduct|involvement|engaged|dealing|involve
Cluster 368 :: 4-6|3-6|6-7|2-6|5-7|1-6
Cluster 369 :: como|nueva|este
Cluster 370 :: .....|-0|bbn|p.o.|eos|nytsf
Cluster 371 :: wife|daughter|married|husband|sister|diana|widow|grandmother|divorced|aunt|bride|granddaughter|niece|mistress|heiress|remarried|camilla|widowed
Cluster 372 :: syndrome|disorder|disorders|neurological|dementia|sclerosis|impairment|dysfunction|vascular|bipolar|renal|gastrointestinal
Cluster 373 :: ho|chi|fu|ping|tai|kung|hua|bi|mei
Cluster 374 :: mohamed|omar|hassan|ibrahim|abdel|saleh|saeed|nasser|khaled|khalid|salim|karim|saad|khalil|abdallah|salah|hamdan|mansour|youssef
Cluster 375 :: ira|palestine|plo|golan|pna
Cluster 376 :: puerto|rico|dominican|mexicans|cubans|elian|guadalupe|ricans
Cluster 377 :: peeled|peas|carrots|spinach|celery|broccoli
Cluster 378 :: avoiding|nasty|confusing|predictable|distraction|lame|annoying|avoids|eliminates|relish|pointless|clumsy|scapegoat|inconvenient|distracting|irritating|gambit
Cluster 379 :: transformed|nickname|arguably|ironically|famously|survives|persona|akin|beginnings|outsider|rumored|ostensibly|synonymous|evidenced|coincidentally|rarity|moniker|pedigree|exemplified|emblematic
Cluster 380 :: rabbi|moses|lang|bo|benny|amos|saul|moe|simeon|kara|judah|ezra|asher
Cluster 381 :: hats|striped
Cluster 382 :: areas|cities|rural|urban|communities|towns|villages|populated|countryside|localities|outlying|hamlets|neighbourhoods
Cluster 383 :: advanced|elements|unique|combination|creative|techniques|instruments|involves|technique|visual|component|sophisticated|experimental|instrument|array|innovative|combining|precision|combines
Cluster 384 :: cotton|silk|fur|cloth|wool|linen|hemp
Cluster 385 :: ibm|intel|dell|hp|oracle|packard|hewlett|cisco|compaq|lucent|xerox|microsystems
Cluster 386 :: chased|holed|sneak|gunpoint|hacked|frantically|whisked|cornered|strayed|sneaked|sneaking|intruders|intruder|swooped
Cluster 387 :: anthrax|contaminated|tainted|poisoning|contamination|asbestos|pesticide|arsenic|salmonella|dioxin
Cluster 388 :: nile|yangtze|mekong|himalayas|ganges|indus
Cluster 389 :: gdp|surplus|projected|projections|shortfall|projection|shrank|projecting|budgeted|viewership|cbo
Cluster 390 :: cleared|clearing|clearance|logging|cordon
Cluster 391 :: punish|isolate|prosper|deprive|sever|isolating|depriving|deems|harms
Cluster 392 :: prescription|medication|prescribed|medications|administer|prescriptions|prescribe|anesthesia|prescribing
Cluster 393 :: era|1980s|1990s|1970s|1960s|1950s|1930s|revival|1920s|1940s|post-war|heyday
Cluster 394 :: total|100|nearly|50|40|60|70|80|90|75
Cluster 395 :: racing|formula|gp|f1|irl|motorsport|constructors
Cluster 396 :: 20s|30s|70s|80s|60s|40s|50s|90s|sixties|twenties
Cluster 397 :: shimbun|asahi|nihon|yomiuri|keizai
Cluster 398 :: frames|ladder|weights|folding|mats|stool
Cluster 399 :: kafelnikov|rus|svetlana|dementieva|kuznetsova|davydenko|safina|nikolay|petrova|marat|zvonareva|youzhny|dinara|myskina
Cluster 400 :: wall|floor|windows|window|doors|ceiling|floors|ceilings
Cluster 401 :: secretariat|unesco|auspices|ec|sco|cis|intergovernmental|tripartite|cpa|troika
Cluster 402 :: column|globe|editors|headlines|commentary|syndicate|digest|gossip|columnists
Cluster 403 :: implementation|framework|implement|implemented|disarmament|timetable|implementing|roadmap
Cluster 404 :: bayern|bundesliga|bayer|dortmund|leverkusen|schalke|borussia|vfl|werder|wolfsburg|hertha|bochum|kaiserslautern|eintracht|vfb
Cluster 405 :: elias|antoine|alexandre|abel|eddy|samson|milo|vin|edmond|vidal|dubois|dumas|leblanc|norbert|menezes|bouchard|armand|schweitzer|lucien|aldo
Cluster 406 :: sergei|igor|andrei|yevgeny|dmitri|andrey
Cluster 407 :: suspicions|aroused|ire|dispel|unwelcome|apprehension
Cluster 408 :: degree|graduated|bachelor|graduating|diploma|cum|laude|bachelors
Cluster 409 :: synthesis|membrane|substrate|oxidation|acidic|reactive|synthesized|membranes|substrates
Cluster 410 :: vacation|cruises|vacations|honeymoon|itinerary|sightseeing
Cluster 411 :: seized|destroying|seize|capturing|arresting|seizing|divert|freeing|evade|surrendering|evading|confiscate|plunder|seizes
Cluster 412 :: named|established|&|founded|formed|centre|originally|usa|branch|columbia|operated|formerly|oldest|renamed|incorporated|relocated|headquartered|defunct|resides
Cluster 413 :: germans|turks|greeks|armenians
Cluster 414 :: angel|carmen|val|mia|dante|freddy|russo|zoe|bella|alba|rocco|tristan|coco|gabrielle|louie|aida|dina|dumont
Cluster 415 :: shanghai|shenzhen|guangzhou|tianjin|chongqing|nanjing|chengdu|dalian|xiamen|wuhan|hangzhou|shenyang|harbin|qingdao|xi'an|kunming|pudong|changchun|suzhou|zhuhai
Cluster 416 :: rue|ponte|almeida|reina
Cluster 417 :: pregnant|mothers|babies|infant|infants|newborn|unborn|toddlers|newborns
Cluster 418 :: mountain|falls|peak|peaks|slope
Cluster 419 :: gay|lesbian|homosexual|homosexuality|gays|homosexuals|lesbians|sexes|lgbt|heterosexual|parenthood|bisexual|transgender
Cluster 420 :: environment|environmental|climate|conservation|sustainable|preservation|ecological|ecology|ecosystem|biodiversity
Cluster 421 :: kah|ree|rah|toh|yuh|yoh|mur|kur
Cluster 422 :: 08|09|04|07|06|05|02|03|01
Cluster 423 :: familiar|describe|odd|casting|compare|sorts|curious|tended|judging|obscure|nowadays|portray|seldom|comparisons|overlooked|unfamiliar|invariably|commonplace|apt|overlook|influencing|characterize|ordinarily|interestingly|reliably|resonate
Cluster 424 :: politician|lawmaker|mp|tory|royalist|gael|parliamentarian|barrister|jurist|honourable|whig
Cluster 425 :: halt|stalled|resumption|restart|resuming|dismantling|halting|cessation|stalling|restarted|halts|restarting|disabling
Cluster 426 :: verse|verses|hymn|hymns|mantra|recited|ode|recite|reciting
Cluster 427 :: sense|faith|values|moral|belief|wisdom|insight|healing|essence|spirituality|truths
Cluster 428 :: tumor|tumors|cancers|lesions|ovarian|malignant|cancerous
Cluster 429 :: bulldogs|wildcats|huskies|cougars|spartans|wolverines|buffaloes|beavers|bobcats
Cluster 430 :: earth|discovery|moon|planet|mars|horizon|lunar|jupiter|eclipse|odyssey|comet|galileo|martian|lander
Cluster 431 :: laser|optical|sensor|compression|optics
Cluster 432 :: gesture|rejection|endorsement|denial|verbal|gestures|objection|declarations|implicit|denials|acknowledgment|resounding|tacit|emphatic|unequivocal|clearest|affirmation|terse|credence|belated
Cluster 433 :: shirt|pants|jacket|boots|jackets|jeans|shorts|socks|trousers|sweater|sweaters|denim|khaki
Cluster 434 :: criminals|killers|perpetrators|convict|murderers|culprit|culprits|premeditated|perpetrator
Cluster 435 :: items|brand|brands|sells|labels|specialty|merchandise|seller|marketed|packaging|cosmetics|packaged|distributes
Cluster 436 :: midnight|dawn|nights|noon|sunset|sunrise|o'clock|dusk|nightfall|sundown|daybreak
Cluster 437 :: display|images|objects|visible|elaborate|displayed|exhibit|displays|viewing|symbols|colorful|displaying|icons|illuminated|exhibiting
Cluster 438 :: character|true|image|reality|dream|vision|universal|legacy|beauty|personality|ultimate|universe|dreams|quest|destiny|illusion
Cluster 439 :: bill|congress|senate|lawmakers|congressional|legislature|senators|bipartisan|appropriations
Cluster 440 :: suv|cadillac|crossover|hybrids|suvs|dealership|minivan|dealerships|pickups|prius|taurus|sedans|midsize|hummer|minivans|camry|corolla
Cluster 441 :: bout|knockout|rematch|hoya
Cluster 442 :: interference|behaviour|refrain|intimidation|tolerate|suppress|tolerated|bullying|vigilance|overt|suppressing|coercion|agitation
Cluster 443 :: injury|leg|knee|ankle|hamstring|thigh|groin|sprained|ligament|ligaments
Cluster 444 :: sirius|tele|xm|directv
Cluster 445 :: central|capital|region|southern|northern|province|border|eastern|southeast|northwest|northeast|southwest|northeastern|northwestern|southeastern|southwestern|restive
Cluster 446 :: consumer|retail|employment|household|purchasing|utilities|inventory|wholesale
Cluster 447 :: ronaldo|beckham|maradona|zidane|cristiano|ronaldinho|messi|kaka|eto'o|pele|figo|tevez|zinedine|robinho|fabregas|rivaldo|romario
Cluster 448 :: storm|hurricane|tropical|storms|hurricanes|typhoon|cyclone|thunderstorms|landfall|tornadoes|cyclones|droughts|tsunamis
Cluster 449 :: trees|grows|bloom|flowering|vine|vines|weeds|shrubs|ornamental|shrub|grasses|leafy|stalks
Cluster 450 :: 12.5|9.5|10.5|11.5|13.5|14.5|17.5|12.7|15.5|16.5|18.5|22.5|19.5
Cluster 451 :: gothic|facade|nave|chancel|romanesque|façade
Cluster 452 :: mad|cat|duck|bite|pig|rat|rabbit|goat|bites|swallow|chick|bunny|tick|chew|bitten|puppy|hen|barking|ass|ticks
Cluster 453 :: marwan|atta|yousef|amer|hamed|sadat|barghouti|imad|shaikh|kamel|ramzi|amrozi|bilal|shahzad|mashaal|ansari|awad|uday|nasr
Cluster 454 :: arm|mouth|finger|ear|fingers|ears|tongue|toe|thumb|butt|lips|lip|cheek|heel
Cluster 455 :: 27.5|24.5|23.5|21.5|20.5|26.5|25.5|37.5
Cluster 456 :: contributes|catalyst|bio|energies|absorbing|stimulating|bonded|stimulated|conduit|channeled|generously|antidote|concentrates|devoting|byproduct
Cluster 457 :: weekends|sundays|weekday|saturdays|evenings|mornings|fridays|weekdays|mondays|afternoons|tuesdays|thursdays|wednesdays|chats
Cluster 458 :: burned|burnt|bulldozers|ablaze|torched|razed|gutted|extinguished|uprooted|stoned|barricaded|alight
Cluster 459 :: gen.|lt.|col.|maj.|capt.|sgt.|brig.|adm.|cmdr.|odierno
Cluster 460 :: musharraf|bhutto|anwar|sharif|mahathir|pervez|zardari|benazir|nawaz|hasina|chaudhry|rainsy|abiola
Cluster 461 :: insurer|aetna|nationsbank|citicorp|bancorp|ual
Cluster 462 :: wines|grapes|grape|blanc|noir|pinot|cabernet|sauvignon|chardonnay
Cluster 463 :: ritual|rituals|rite|communion|sabbath|rites|ordination|initiation|baptism|observance|liturgy|liturgical|cremation
Cluster 464 :: sparta|galatasaray|bk|fenerbahce|aris
Cluster 465 :: thriving|flourished|flourishing|subcontinent|thrived|empires|eras|prospered|blossomed
Cluster 466 :: who|family|life|children|young|lives|friends|parents|whom|couple|older|younger
Cluster 467 :: venetian|archaic|vernacular|insular
Cluster 468 :: vowel|nasal|vowels|syllable|consonants|consonant|syllables
Cluster 469 :: arbitrary|unlawful|intentional|lawful|indecent|disorderly
Cluster 470 :: program|development|efforts|project|joint|planning|aimed|establish|creation|partnership|initiative|establishment|sponsored|comprehensive|supports|pursue|aims|establishing|jointly|initiatives|initiated|cooperative|unified
Cluster 471 :: canton|basel|bern|weimar|zürich|cantons
Cluster 472 :: jakarta|bangkok|kuala|lumpur|nairobi|colombo|johannesburg|harare|dar|pretoria|durban|kampala|dakar|mombasa
Cluster 473 :: puzzled|jittery|startled|keenly|understandably|anxiously|baffled|dazed|spooked|bewildered|exasperated|fretted|perplexed|unimpressed
Cluster 474 :: loans|mortgage|bailout|lenders|default|mortgages|homeowners|subprime|lender|borrowers|foreclosures|defaults|bailouts|refinance
Cluster 475 :: heating|pump|cooling|vacuum|pumping|pumps|generators|megawatt
Cluster 476 :: meters|mile|metres|meter|ft|kilometer|metre|radius|nautical|kilometre
Cluster 477 :: forest|woodland|evergreen|woodlands|scrub|grasslands|deciduous
Cluster 478 :: signs|negative|trend|contrast|relative|reflect|tone|sentiment|reflected|mood|reflects|optimism|slight|favorable|reflecting|perception|evident|caution|reflection|expectation|prevailing|tempered|noticeable|muted
Cluster 479 :: landscape|terrain|mountainous|rugged|lush|densely|forested|picturesque|wooded|hilly|barren|pristine|swath|sparsely|inaccessible|topography|undeveloped|desolate|expanse|swaths
Cluster 480 :: petersburg|salem|alexandria|bartholomew|antioch
Cluster 481 :: formula_1|formula_2|formula_3|formula_4|parameter|polynomial|formula_5|formula_6|formula_7|formula_8|formula_9
Cluster 482 :: polish|ukrainian|hungarian|romanian|finnish|bulgarian|armenian|slovak|lithuanian|estonian|latvian|ussr|icelandic|slovenian|belarusian|moldovan|belarussian|ssr|czechoslovak|slovakian
Cluster 483 :: hatred|hostility|resentment|discontent|distrust|passions|bitterness|mistrust|animosity|frustrations|discord|anxieties|enmity|prejudices
Cluster 484 :: designed|introduction|designs|signature|custom|introducing|newer|settings|designing|incorporate|modeled|innovations|incorporating
Cluster 485 :: tougher|tightening|tighten|tightened|tighter|stringent|stricter|restrictive|curbs|loosen|restraints|loosening|stiffer|toughen
Cluster 486 :: 20003
Cluster 487 :: reversal|contraction|resurgence|reversing|dampened|softening|buoyant|cyclical|sharpest|upturn|tepid|upswing|offsetting|discounting|uptick
Cluster 488 :: wreck|wrecked|derailed|shipwreck|wrecks
Cluster 489 :: e|mail|messages|email|ip|nytimes.com|messaging|spam|queries|sms|pager|e-mail|sender
Cluster 490 :: manchester|arsenal|liverpool|newcastle|celtic|leeds|ham|portsmouth|southampton|aston|rovers|sunderland|gunners
Cluster 491 :: director|professor|dr.|assistant|principal|associate|administrator|advisor|curator|trustee|counselor|emeritus|prof.|librarian|adjunct
Cluster 492 :: carpet|glasses|fitting|canvas|polished|shiny|brightly|sleek|sturdy|chrome|curtains|oversized|gleaming|outfitted|bulky|grille
Cluster 493 :: ik|tur|kat|bree
Cluster 494 :: Åódź
Cluster 495 :: episodes|sitcom|dramas|documentaries|comedies|musicals|sitcoms|long-running|funniest|serials
Cluster 496 :: pond|marsh|brook|meadows|eden|laurel|meadow|moor|burrows|bog|fern|campground|gully
Cluster 497 :: island|sea|coast|bay|islands|ocean|waters|coastal|peninsula|cape|shore|harbor|mediterranean|beaches|seas|shores|coastline|coasts|canary|shoreline
Cluster 498 :: lineup|starter|pitching|pitches|pitchers|starters|bullpen|hitters|rookies|relievers|leaguers
Cluster 499 :: 10-year|30-year|15-year|12-year|olds|14-year|13-year|11-year|3-year|2-year|5-year|4-year|6-year|8-year|7-year|9-year
Cluster 500 :: fifa|icc|iaaf|fia|uci|fis|fina|wada|fiba|irb|isu|itf|fai
Cluster 501 :: p.m.|a.m.|pm|edt|est|8:30|7:30|9:30|10:30|5:30|6:30|4:30|2:30|3:30|11:30|1:30|12:30|est.
Cluster 502 :: people|men|americans|families|victims|citizens|individuals|relatives|ordinary|persons|elderly
Cluster 503 :: resolve|solve|cooperate|resolved|solved|peacefully|resolving|reconcile|diplomatically
Cluster 504 :: billboard|peaked|peaking
Cluster 505 :: 1.25|1.75|1.50|2.25|2.50|2.75|3.50|1.85|1.95|2.00|2.45|2.15|2.35|2.95
Cluster 506 :: cruiser|destroyers|cruisers|battleship|corvette|frigates|battleships|armada|gunboats
Cluster 507 :: dj|disambiguation|pal|aka|alias|pseudonym|mc|sid|muse|sim|sidekick|a.k.a.|combo|jock
Cluster 508 :: military|army|forces|force|troops|soldiers|armed|civilian|marines|commanders
Cluster 509 :: le|du|monde
Cluster 510 :: shooting|gunmen|unidentified|attackers|policeman|gunman|sniper|assailants|attacker|masked|gunned|ambushed|bystanders|assailant|eyewitnesses|bystander
Cluster 511 :: heavyweight|lightweight|middleweight|wbc|welterweight|ibf|wba|featherweight|flyweight|bantamweight|wbo
Cluster 512 :: clooney|sheen|bergman|sopranos|jolie|fonda|hepburn|kidman|brando|streisand|huston|angelina|streep|keaton|affleck|carrey|barrymore|foxx|ferrell|bette|meryl|cusack|barbra|paltrow
Cluster 513 :: occasional|countless|profiles|myriad|assortment|abound|multitude|assorted|topical|calendars|nicknames|high-profile|interspersed|introductions|plethora|dueling
Cluster 514 :: julian|joshua|seth|shepard|morse|jeremiah|terence|wiley|x.|nat|cato|z.|burroughs|schlesinger|leary|zachary|ginsberg|merle|hyman
Cluster 515 :: ucla|usc|cal|baylor|ut|northridge|umass|bu|uconn|usf|byu|asu|villanova|fsu|cu|grad|saban|csun|uf
Cluster 516 :: studied|economics|philosophy|geography|journalism|psychology|lecturer|sociology|comparative|archaeology|anthropology|linguistics|zoology|majored
Cluster 517 :: baseball|basketball|hockey|fame|leagues
Cluster 518 :: lindh|nowak|wiesenthal|bloch|silverstein|brigitte|hanssen
Cluster 519 :: murders|shootings|arson|robberies|slayings|suicides|unsolved|columbine|homicides
Cluster 520 :: trial|arrest|prosecutors|custody|prosecution|execution|bail|warrant|awaiting|extradition|warrants
Cluster 521 :: march|june|july|april|september|january|december|october|november|august|february
Cluster 522 :: militia|paramilitary|militias|militiamen|warlords|loyalist|paramilitaries|sla|janjaweed
Cluster 523 :: separate|divided|consists|composed|locations|sections|arranged|sub|consisted|consisting|respective|namely|alternate|comprises|comprising|segments|consist|comprised|comprise|loosely|grouped|subdivided|groupings
Cluster 524 :: ally|supporter|outspoken|charismatic|foe|staunch|maverick|ardent|proponent|reformer|backer|staunchly|stalwart|admirer
Cluster 525 :: mozart|bach|operas|beethoven|verdi|waltz|schubert|libretto|handel|tchaikovsky|requiem|chopin|mahler|haydn|symphonies|brahms|liszt|stravinsky
Cluster 526 :: tape|tapes|videotape|taped|videotaped|purportedly|taping
Cluster 527 :: further|possible|result|problem|situation|serious|risk|conditions|potential|significant|effect|concerns|concern|impact|presence|activity|failure|immediate|reasons|possibility|continuing|reaction|factor|affect|ongoing|risks|circumstances|consequences|extent|intervention|consequence|unspecified|likelihood
Cluster 528 :: centres|leisure|catering|staffed|establishments|cater|segregated|professions|specialize|occupations|caters|lobbies|brothels|workplaces
Cluster 529 :: lindsey|welch|mccormack|franks|crowley|mullen|crocker|currie|vance|hurd|wagoner|bosworth|rawlings|callaway
Cluster 530 :: maliki|allawi|nouri|lahoud|chalabi|jaafari|iyad|ayad|dawa
Cluster 531 :: retreat|approaching|daylight|hovering|lookout|hovered|nearer|hover
Cluster 532 :: chips|processor|processors|pentium|cpu|microprocessor|dram|microprocessors|mainframe
Cluster 533 :: stakes|belmont|cc|handicap|saratoga|racetrack|aqueduct|newmarket|gulfstream
Cluster 534 :: boss|wenger|eriksson|benitez|mourinho|capello|keegan|scolari|domenech|hiddink|arsene|redknapp|ancelotti|mcclaren|venables|parreira
Cluster 535 :: agriculture|agricultural|fisheries|forestry|usda|fishery|cooperatives|husbandry
Cluster 536 :: imported|shipments|shipped|exporting|exported|shipment|processed|exporter|importing|importer|foodstuffs
Cluster 537 :: wagner|meyer|anton|koch|mayer|berg|marx|maxim|hess|herzog|wolff|erwin|tobias|erich|vogel|hoffmann|baer|meier|siegfried|forster|engel|schiller|schreiber|winkler|adolph|oskar
Cluster 538 :: methane
Cluster 539 :: apollo|rover|saturn|constellation|mirage|intercontinental|orion|amc|aegis|gemini|voyager|pegasus|trident|pathfinder
Cluster 540 :: algorithm|differential|numerical|algorithms|spatial|computational|arithmetic|semantic|optimization|computation|constraint|sequential
Cluster 541 :: ''|``|i|n't|you|?|my|'re|think|me|know|your|'ve|'m|lot|really|something|things|'ll|thing|'d|everything|someone|tell|everyone|else|happy|maybe|knows|guys|everybody|remember|myself|nobody|stuff|wonder|anybody|somebody|guess
Cluster 542 :: problems|caused|cause|damage|suffered|affected|injuries|severe|suffering|causing|causes|experienced|resulting|sustained|suffer|drought|affecting|experiencing
Cluster 543 :: tackle|defenders|winger|prop|midfield|forwards|strikers|fullback|midfielders|scrum|flanker|flyhalf|halfback|wingers
Cluster 544 :: subtle|critique|thoughtful|coherent|characterization|persuasive|rhetorical|reasoned|expressive|persuasion|eloquent|intuitive|simplistic|counterpoint|nuanced
Cluster 545 :: shutdown|walkout|chernobyl|standstill|lockout
Cluster 546 :: chun|tae|hwan|kwon
Cluster 547 :: justice|judge|attorney|lawyer|prosecutor|magistrate
Cluster 548 :: 200,000|500,000|300,000|40,000|25,000|250,000|60,000|150,000|400,000|,000|80,000|70,000|600,000|35,000|800,000|700,000|120,000|75,000|90,000|350,000|750,000|130,000|140,000|900,000|160,000|450,000|180,000|125,000|110,000|170,000|650,000|220,000|240,000|230,000|175,000|550,000
Cluster 549 :: helicopter|helicopters|warplanes|commandos|gunships
Cluster 550 :: rifle|pistol|caliber|handgun
Cluster 551 :: writer|author|poet|historian|filmmaker|novelist|playwright|screenwriter|cartoonist
Cluster 552 :: prison|camps|inmates|prisons|jails
Cluster 553 :: bottom|yard|pit|pile|mound|pits|seam
Cluster 554 :: analyst|morgan|economist|stanley|lynch|goldman|merrill|strategist|lehman|thomson|sachs|salomon|j.p.|witter
Cluster 555 :: jason|josh|derek|nash|malone|shawn|webber|brandon|damon|vaughn|kidd|sammy|crosby|corey|derrick|finley|butch|jermaine|dustin|oakley|childs|dh|donnie|hatcher|j.r.|exel
Cluster 556 :: rusedski|krajicek|bjorkman|soderling|enqvist|edberg
Cluster 557 :: arms|holding|orders|count|handed|counter|pressed|placing|spare|charging|ordering|handing|sack
Cluster 558 :: icon|idol|elvis|superstar|cowboy|presley|sinatra|rocker|entertainer|selena|glitter|abba
Cluster 559 :: openly|embraced|vigorously|fiercely|bitterly|infuriated|shunned|forcefully|detractors|ridiculed|enthusiastically|distanced|mocked|courted|disliked|derided|swayed|silenced|steadfastly|passionately|assailed|incensed|snubbed|adamantly|defiantly|chided|lambasted|taunted|rebuked|panned|shied|roundly|railed
Cluster 560 :: yet|fact|remains|difficult|view|perhaps|appears|clearly|finding|difference|doubt|possibly|indeed|proved|prove|ultimately|unlikely|suggests|existence|fate|viewed|prospect|obvious|nevertheless|unfortunately|indication|odds|uncertain|nonetheless|emerge|impression|seemingly|distant|nowhere|proving|proves
Cluster 561 :: failures|flaws|weaknesses|shortcomings|flaw|deficiencies|glaring|discrepancies|failings|vulnerabilities|inconsistencies
Cluster 562 :: closure|reopened|reopen|handover|reopening|deadlines|wye|reopens
Cluster 563 :: vinyl|discography|sampled|remixes|demos|originals|remixed|soundtracks|compilations|eps|mono
Cluster 564 :: nintendo|playstation|console|xbox|sega|wii|ds|consoles
Cluster 565 :: ban|banned|banning|bans|prohibit|prohibition|sanctioned|prohibits|outlaw|prohibiting|forbid|forbids|legalized|importation|legalize
Cluster 566 :: liga|primera|división|ligue
Cluster 567 :: blood|breathing|liver|lungs|vein|tissues|veins|cavity|pulmonary|bladder|digestive|clot
Cluster 568 :: ski|skiing|skis|snowboarding|cross-country|luge|moguls|snowboard
Cluster 569 :: characterized|cluster|irregular|tract|clusters|characterised|sparse|predominant|remnant|localized|fragmentation|diffuse|convection|dispersal
Cluster 570 :: telegram.com
Cluster 571 :: native|indians|peoples|indigenous|tribes|descent|slaves|slave|descendants|colonies|aboriginal|ancestors|ancestry|natives|migrated|reside|african-american|colonists|aborigines|enslaved|english-speaking
Cluster 572 :: newsweek|newhouse|spiegel|declassified
Cluster 573 :: spa|carlo|monte|mar|rey|sol|gran|campo|bosch|fontana
Cluster 574 :: antibodies|antibody
Cluster 575 :: monterrey|guadalajara|veracruz|puebla
Cluster 576 :: erosion|extinction|degradation|utilization|accumulation|deforestation|depletion
Cluster 577 :: license|licensed|licenses|licensing|licence|unlicensed|licences
Cluster 578 :: hindu|hindus|tibetans|sikh|buddhists|malays|sikhs
Cluster 579 :: introduces|secondly|versa|firstly|guise|ada|manifest|aforementioned|wherein|obligatory|transforms|bona|karma|incidentally|distinguishes|renaming|converse|sos|cf.|lastly
Cluster 580 :: mm|96.3
Cluster 581 :: couture|gucci|haute|versace|prada|valentino|chanel|armani|vuitton|lingerie|dior
Cluster 582 :: retailers|outlets|supermarkets|distributors|bookstores|wholesalers|pharmacies|newsstands|ticketmaster|booksellers
Cluster 583 :: greenwich|berkshire|stamford|huntington|avon|fairfield|playhouse|scripps|waltham|westfield|andover|brookline|lyme|rockville|newbury|westport|norwalk
Cluster 584 :: analysts|forecast|predicted|economists|expecting|anticipated|forecasts|predict|predicting|predictions|prediction|predicts|forecasting|forecasters|meteorologists
Cluster 585 :: god|spirit|jesus|spiritual|christ|divine|mercy|blessed|salvation|eternal|conception|resurrection|miracles|mystical|heavenly|prophecy|ascension|miraculous|immortality|afterlife
Cluster 586 :: diocese|archdiocese|parishes|ecclesiastical|apostolic|dioceses|diocesan|parochial|canons
Cluster 587 :: graf|pvs|corrects|xxx|subs|sted|lede|clarifies
Cluster 588 :: task|committees|supervision|oversight|ministries|oversee|oversees|commissions|overseeing|coordinating|liaison|supervised|oversaw|procurement|counterterrorism|tasked|policing|supervisory|supervise|overseen|supervising|entrusted|day-to-day|departmental|dod
Cluster 589 :: majority|seats|thirds|majorities|two-thirds|quorum|fifths|fourths|plurality
Cluster 590 :: idle|openings|maze|flung|sprung|gathers|sprang|digs|swarm|clustered|labyrinth|crowding|wading|interconnected|subterranean
Cluster 591 :: warsaw|prague|kiev|budapest|sofia|bucharest|baku|minsk|riga|leningrad|vilnius|tallinn|krakow|yerevan|lviv
Cluster 592 :: rooms|dining|spaces|suite|beds|halls|seating|suites|kitchens|bedrooms|spacious|bathrooms
Cluster 593 :: square|tower|gates|entrance|gate|tunnel|towers
Cluster 594 :: submitted|requests|petition|submit|memorandum|requesting|notices|submission|paperwork|petitions|clarification|forwarded|submitting|drafts|submissions|questionnaire
Cluster 595 :: %|1.2|1.3|3.5|1.6|1.4|1.1|1.8|4.5|1.7|2.2|2.4|2.3|2.6|5.5|2.7|1.9|2.1|7.5|2.8|3.2|6.5|3.3|3.6|3.8|2.0|3.1|3.4|2.9|3.7|4.2|4.3|4.4|4.1|3.0|1.0|4.0
Cluster 596 :: last|week|tuesday|wednesday|monday|thursday|friday|month|sunday|saturday|expected|earlier|announced|ahead|meanwhile|announcement|yesterday|announcing
Cluster 597 :: baltic|okinawa|siberia|guam|siberian|aegean|crimean|crimea|kaliningrad|leyte|sakhalin|vladivostok
Cluster 598 :: download|itunes|streaming|downloaded|mp3|downloads|downloading|downloadable
Cluster 599 :: justices|o'connor|scalia|rehnquist|ginsburg|dissenting|breyer|souter|bader|antonin
Cluster 600 :: pan|pour|grill|pans|grilling|steaming|platter|roasting|frying
Cluster 601 :: la|grande|sur|belle|baja|contra|rÃo|pointe
Cluster 602 :: pressure|ease|worries|uncertainty|mounting|weakness|pressures|easing|persistent|volatility|deterioration|friction|inflationary|uncertainties|overheating
Cluster 603 :: analog|stereo|terrestrial|microwave|analogue|oldies|uhf
Cluster 604 :: rashid|hakim|tariq|hayat|ghazi|farooq|qureshi|jamil|dahlan|mufti|maulana|shaukat|sahhaf|zahir|fahim|qadir
Cluster 605 :: therapy|treatments|cure|chemotherapy|therapeutic|cosmetic|therapies|cures|psychotherapy|acupuncture
Cluster 606 :: over|led|past|recent|despite|seen|continued|brought|latest|raised|heavy|carried|decades|decade|massive|raising|bringing|begun|wake|emerged|partly|striking
Cluster 607 :: grass|tent|lawn|gym|outdoors|backyard|picnic|playground|bathing|watering|patio|lawns
Cluster 608 :: 1-800-444-0267
Cluster 609 :: downed|routed|cruised|thrashing|thrashed|trounced|outplayed|archrival|underdogs|swallows
Cluster 610 :: gold|medal|silver|bronze|medals|pairs|medalist|vault|golds|medallist|crowns|medalists|silvers|bronzes
Cluster 611 :: experiment|invented|invention|patented|experimenting|mastered|inventions|popularized|experimentation|experimented|rediscovered|inventing|perfected|refine|enigma|mastering
Cluster 612 :: fax|telex|(212)|horwitz|(310)
Cluster 613 :: graduation|enrollment|semester|introductory|internship
Cluster 614 :: revenge|cleansing|vengeance|wrath|avenge|reprisals|retribution|reprisal|incite|innocents
Cluster 615 :: widespread|controversy|prompted|outrage|provoked|marred|spurred|backlash|flurry|publicized|outcry|stirred|frenzy|stemmed|uproar|provoking|spat|outburst|furor|firestorm
Cluster 616 :: greek|scandinavian|slavic|norse|germanic|caucasian|iberian|assyrian|turkic
Cluster 617 :: moshe|eliezer|mofaz|mordechai|katsav|shaul|meir|binyamin|haim|gissin
Cluster 618 :: money|tax|cost|income|costs|debt|insurance|raise|taxes|savings|pension|billions|taxpayers|taxpayer|premiums
Cluster 619 :: herald|chronicle|tribune|telegram|hearst|gazette|sentinel|newsday|inquirer|intelligencer
Cluster 620 :: pentagon|rumsfeld|condoleezza|mcclellan|petraeus|negroponte|mcchrystal
Cluster 621 :: bears|lions|eagles|saints|dolphins|hawks|whalers
Cluster 622 :: hu|jiang|wen|zhu|jintao|zemin|jiabao|zeng|qiao
Cluster 623 :: manning|brady|reggie|vick|favre|irvin|bledsoe|aikman|plummer|terrell|elway|simms|peyton|pennington|mcnair|tomlinson|mcnabb|vinny|woodson|gannon|deion|faulk|emmitt|testaverde|benched|roethlisberger
Cluster 624 :: memorial|monument|commemorate|plaque|honoring|tiananmen|centennial|jubilee|commemoration|commemorating|remembrance|wreath|memorials|commemorated|commemorates|commemorations
Cluster 625 :: serra|fernandes|cristina|mari|lopes|socrates|vila|duarte|joão|gama|soares|meta|rodrigues|dias
Cluster 626 :: talented|skilled|gifted|savvy|seasoned|inexperienced|knowledgeable|adept|adventurous|proficient|astute
Cluster 627 :: yellow|pink|leaf|purple|roses|ribbon|crimson|scarlet|violet|ribbons|hue|lavender|reddish|bouquet|turquoise
Cluster 628 :: nguyen|dung|duc|vu|tran|cui|coa|thanh|phan
Cluster 629 :: industrial|equipment|industries|manufacturing|factory|processing|components|electrical|factories|machinery|cement|manufacture|plastics|foodstuff
Cluster 630 :: worldsources
Cluster 631 :: halftime|trailed|rout|outscored|spurt|10-0|10-point
Cluster 632 :: buy|sell|selling|customers|consumers|buying|dealers|buyers|purchases|developers|bargain|sellers|merchants
Cluster 633 :: slammed|blasted|lashed|hammered|slap|slapped|brushed|slams|stump|faulted|blasting|slamming|lashes|galvanized|lashing|smacked|dodged|clamped
Cluster 634 :: losers|gainers|outnumbered|decliners|advancers
Cluster 635 :: mix|pure|blend|mixing|tastes|spice|mixes|blended|blending|blends|infused
Cluster 636 :: stay|watch|waiting|walk|wait|watching|sit|suddenly|staying|stuck|somewhere|waited|stays|waits
Cluster 637 :: memories|profound|grief|misery|despair|deepest|sadness|sorrow|humiliation|utter|anguish|agony|outpouring|longing|loneliness|palpable|misfortune|unbearable|heartbreak|joys
Cluster 638 :: air|flight|plane|carrying|flying|fly|landing|aboard|flew|bound|landed|cruise|craft|flown|safely|flies
Cluster 639 :: swap|forged|electronically|exchanging|bundle|bundled|swapping|swapped|tabs|bundles|unlocked|intermediaries
Cluster 640 :: pradesh|punjab|bengal|kerala|gujarat|nadu|andhra|maharashtra|assam|karnataka|bihar|sindh|rajasthan|orissa
Cluster 641 :: heels|tops|fancy|neat|studded|wardrobe|flop|faux|bikini|primer|sari|lipstick|rag|gloss|flops|mug|haircut|rags
Cluster 642 :: glory|ambition|prestige|cradle|aura|greatness|lofty|rebirth|symbolize|symbolizes|folly|signify|symbolized|conquering|mystique|trappings|embodiment|crowning|tranquility
Cluster 643 :: brewery|brewer|brewing|guinness|federated|coors|anheuser|breweries|seagram
Cluster 644 :: school|university|college|students|schools|attended|campus|universities|colleges|campuses
Cluster 645 :: rembrandt|impressionist
Cluster 646 :: sas|cathay|tam|iberia|sia|jal|jetblue|pia
Cluster 647 :: ferrari|schumacher|alonso|montoya|massa|raikkonen|barrichello|senna|kimi
Cluster 648 :: tallahassee|precincts|dade|hillsborough|broward|canvassing|pinellas|maricopa
Cluster 649 :: irresponsible|utterly|naive|cynical|arrogant|foolish|morally|intimidating|misguided|selfish|immoral|inherently|subversive|ignorant|resolute|unethical|insensitive|dishonest|principled|overtly|belligerent|unfriendly|hypocritical
Cluster 650 :: frankie|mara|annette|gaston|sal|hazel|conner|linden|nikki|newell|penelope|wanda|boa|hilda|fontaine|susie|daphne|driscoll|vicky
Cluster 651 :: voivodeship|pomeranian|east-central|west-central
Cluster 652 :: user|server|interface|controller|compatible|proprietary|specification|functionality|usb|encryption|compatibility|interfaces|graphical|compiler|implementations|built-in
Cluster 653 :: analysis|statistical|observations|calculations|analyses|methodology|analytical|quantitative|breakthroughs|empirical
Cluster 654 :: client|sue|contends|blackwater|aclu|paternity
Cluster 655 :: blacks|minorities|whites|africans|asians|southerners
Cluster 656 :: delhi|islamabad|karachi|dhaka|lahore|peshawar|rawalpindi|azad|multan
Cluster 657 :: kraft|gillette|nabisco|rjr|cadbury|unilever|sweetened|lauder
Cluster 658 :: sylvia|dane|meg|jared|rae|kristin|melinda|gunn|thom|zack|angie|nana|trey
Cluster 659 :: paperback|best-selling|bestseller|hardcover
Cluster 660 :: ayman|zawahri|zawahiri
Cluster 661 :: added|saying|statement|issue|adding|noted|warned|positive|declined|expressed|suggested|concerned|acknowledged|referring|indicated|discussed|strongly|stressed|pointed|observers|noting|discussing|cautioned
Cluster 662 :: gnassingbe|eyadema
Cluster 663 :: expulsion|deportation|expulsions|extermination|deportations
Cluster 664 :: nc|ndp|fianna
Cluster 665 :: interfax|tass|itar|ria|novosti
Cluster 666 :: add|frozen|olive|tender|lightly|dressing|dried|ounces|mint|freshly|kosher|preferably|coarse|capsules|batches|sprinkled|pint
Cluster 667 :: perfect|talent|magic|interesting|moments|plenty|excellent|impressive|wonderful|luck|accomplished|exciting|brilliant|fantastic|decent|memorable|superb|terrific|fabulous|marvelous
Cluster 668 :: 3-4|1-4|2-4|4-5|3-5|6-8|5-6|nos.|1-10|2-5|9-11|1-5|4-7|7-8
Cluster 669 :: bavarian|prussian
Cluster 670 :: 350|900|450|750|220|360|550|650|260|280|320|330|850|340|370|380|440|430|460|470
Cluster 671 :: rhetoric|nationalism|crusade|patriotism|symbolism|conservatism|moderation|zeal|liberalism|fervor|revolutions|nationalistic|idealism|overtones|oratory
Cluster 672 :: nonsubscribers
Cluster 673 :: lava|furnace|vapor|helium|quartz|molten|bubbling
Cluster 674 :: fox|abc|nbc|cbs|aired|cnn|espn|pbs|syndicated|wb|msnbc|nickelodeon|cnbc|cw|upn|tbs
Cluster 675 :: rangers|bulls|bruins|nets|reds|spurs|panthers|rams|bucks|browns|texans|.500|mavs
Cluster 676 :: suzuki|sato|hiroshi|takahashi|aoki
Cluster 677 :: oval|hobart|kensington|whistler|wight|silverstone
Cluster 678 :: putin|yeltsin|boris|medvedev|mikhail|dmitry|kuchma|sergey|kasyanov|kiriyenko
Cluster 679 :: securities|prudential|nomura|daiwa|forex|barings|citibank|leeson|natwest|yamaichi|dresdner|nikko
Cluster 680 :: agreement|accord|agreements|pact|accords|treaties|pacts
Cluster 681 :: brain|bone|tissue|kidney|fracture|cartilage
Cluster 682 :: secrecy|blanket|removes|redistribution|settles|stripping|loophole|loopholes|blacklist|busting|loosened
Cluster 683 :: rodriguez|martinez|perez|hernandez|ramirez|rivera|ramon|ortiz|guerrero|alfonso|manny|castillo|mariano|cabrera|delgado|molina|mora|beltran|valdes|vazquez|batista|lugo|escobar|soriano|contreras|esteban|cordero|bonilla|nagy|baez
Cluster 684 :: procedures|procedure|examination|oral|exam|exams|examinations|elective
Cluster 685 :: summers|winters|cooler|warmer|colder|hotter|milder|drier
Cluster 686 :: moth|moths
Cluster 687 :: word|phrase|spelling|derives|phrases|translates|alphabet|etymology|acronym|initials|literal|slang|cyrillic|abbreviation|rhyme|epithet
Cluster 688 :: marched|stormed|clashed|marching|dispersed|camped|massed|streamed|converged|rooftops|paraded|swarmed
Cluster 689 :: bowl|ncaa|afc|nfc|acc|bcs|divisional|pac-10|aba|cba|tourney|pba|nit
Cluster 690 :: luka|banja|bukavu|bekaa|brcko
Cluster 691 :: echo|hears|cries|screams|louder|sigh|glee|noises|mute|whisper|lament|dizzy|audible|whispers|hysterical|pauses|breathed|whistling|howling
Cluster 692 :: sheikh|sheik|sabah|khalifa|faisal|hamad|emir|fahd|saud|megrahi|thani|zayed|jaber
Cluster 693 :: nabil|maher|yassin|salam|shaath|abed|mazen|rabbo|zahar|khatib
Cluster 694 :: alpha|beta|gamma|sigma|pi|omega|nu|psi|zeta|tau
Cluster 695 :: fascinating|vivid|echoes|somber|surreal|haunting|poignant|nostalgic|eerie|evoke|bittersweet|evoked|melancholy|timeless|vividly|evokes|tinged|unforgettable|riveting|uplifting|evocative
Cluster 696 :: yorkshire|essex|somerset|sussex|lancashire|surrey|middlesex|derbyshire|gloucestershire|warwickshire|worcestershire|leicestershire|nottinghamshire|northamptonshire|mcc|oxfordshire|glamorgan|buckinghamshire
Cluster 697 :: homes|housing|buildings|houses|apartment|residential|apartments|residences
Cluster 698 :: store|stores|chain|shop|retailer|chains|warehouse|supermarket|grocery|starbucks|bookstore|bazaar|retailing|tesco|carrefour|drugstore
Cluster 699 :: dax|cac|cac-40
Cluster 700 :: underwater|seismic|robotic|sonar|undersea|seabed
Cluster 701 :: non-families
Cluster 702 :: edge|lies|stretch|reaches|boundaries|fault|boundary|extends|stretched|corners|stretching|stretches|bounded|bordered|separates|unbroken
Cluster 703 :: 90-minute|30-minute|10-minute|15-minute|pregame|20-minute|lunchtime|hourlong|monologue|45-minute
Cluster 704 :: 0.5|0.2|0.1|0.3|0.4|0.6|0.7|0.8|0.9
Cluster 705 :: brent|lara|bravo|richie|gayle|hooper|kirsten|dwayne|marlon|chanderpaul|samuels|mccaw|hinds|sarwan
Cluster 706 :: 1-732-390-4480
Cluster 707 :: fdch
Cluster 708 :: sadr|cleric|mahdi|muqtada|moqtada
Cluster 709 :: bee|hay|ty|din|wee|gee|ra|ang|masri|um|nas|ja|ly|ich|dun|ala|nada|bas|choo|ir
Cluster 710 :: representatives|delegation|delegates|delegate|10-member
Cluster 711 :: gang|notorious|gangs|mob|cops|bandits|thugs|outlaws|bandit|posse|terrorized|vigilante
Cluster 712 :: court|decision|supreme|appeal|ruled|courts|judges|appeals|motion|judicial|verdict|reversed|upheld|unanimous|rulings|overturn|appellate
Cluster 713 :: il|hanoi|nam|minh|saigon|kaesong
Cluster 714 :: debts|creditors|owed|repay|repayment|creditor|repaid|bondholders|defaulted|borrower|unsecured|debtor|debtors
Cluster 715 :: boat|ferry|tanker|dock|rig|tow|tug|docks|barge|docked|towed|freighter|flagged|capsized|aground|steamer|trawler|barges|towing|overloaded|steamboat|steamship
Cluster 716 :: strikes|raids|retaliation|airstrikes|shelling|incursion|incursions|retaliate|retaliatory|indiscriminate|emptive
Cluster 717 :: putnam|schuster|morrow|houghton|mccormick|harcourt|mckenna|dalglish|farrar|mifflin|fawcett|dutton|furman
Cluster 718 :: appointments|administrations|secretaries|bureaucrats|chairmen|appointing|appointees|vacancies|appointee
Cluster 719 :: vietnam|philippines|myanmar|cambodia|tibet|burma|laos|facto|bhutan
Cluster 720 :: topix|islander|0.02|0.01|0.04|0.03|0.08|0.12|0.06|0.14|0.13|0.18|0.11|0.07|0.09|0.35|0.16|0.17|0.22|0.45|0.19|0.23|0.28|0.24|0.27|0.21|0.26|0.34|0.32|0.33|0.55|0.29|0.31|0.36|0.38|0.65|0.42|0.37|0.39|0.43|0.44|0.41|0.48|0.47|0.46|0.52|0.54|0.56
Cluster 721 :: potter|conan|rowling|tolkien|sherlock|j.k.|grisham|sorcerer
Cluster 722 :: unacceptable|harmed|regrettable|irreversible|detrimental|gravely|unavoidable|counterproductive|intolerable|unnatural|deplorable
Cluster 723 :: disaster|tragedy|disasters|catastrophe|catastrophic|emergencies|tragedies|calamity
Cluster 724 :: sentencing|verdicts|acquittal|retrial|inquest|arraigned|arraignment|indict|remanded
Cluster 725 :: telugu|malayalam|kannada|marathi
Cluster 726 :: rules|required|standards|require|applied|requires|minimum|apply|requirements|mandate|requiring|admission|requirement|registration|criteria|mandatory|applying|limitations|mandated|compulsory|eligibility|qualifications|statutory
Cluster 727 :: scout|scouts|ranger|scouting|firefighter|troopers|trooper|nypd|ensign|roving|horsemen
Cluster 728 :: ethnic|kashmir|kurdish|tribal|kurds|moslem|kurdistan|kashmiri|kurd
Cluster 729 :: north-eastern|north-western|south-western|south-eastern|north-central
Cluster 730 :: baba|shri|jain|swami|mata|yunus|amar|sahib|adi|maha
Cluster 731 :: violence|conflict|conflicts|sectarian|bloodshed|strife|communal|insecurity|wracked|anarchy|militancy|factional|lawlessness|fomenting|1992-95
Cluster 732 :: stories|novel|fiction|novels|essays|anthology|nonfiction|biographies|non-fiction|anthologies
Cluster 733 :: peso|devaluation|ruble|devalued
Cluster 734 :: visit|met|reporters|speaking|jordan|ambassador|spoke|visited|visiting|powell|invited|diplomat|presidents|counterpart|summoned|briefed
Cluster 735 :: spree|orchestrated|masterminding|masterminded|orchestrating|instigated|vendetta
Cluster 736 :: eradicate|eradication|counterinsurgency
Cluster 737 :: 1-0|2-1|2-0|3-0|1-1|3-1|3-2|4-1|4-0|4-2|5-0|5-1
Cluster 738 :: studio|theater|studios|productions|cinema|theaters|theatres|cinemas|multiplex
Cluster 739 :: gul|asif|babar|jamali
Cluster 740 :: monastery|abbey|convent|abbot|priory|monastic|immaculate|benedictine
Cluster 741 :: indefinite|30-day|90-day|60-day|fwd
Cluster 742 :: award|awards|grammy
Cluster 743 :: ahmadinejad|khatami|ayatollah|akbar|khamenei|rafsanjani|sistani|hashemi|khomeini
Cluster 744 :: 47-42-80-44
Cluster 745 :: pee|goo|pah
Cluster 746 :: points|finished|finish|seconds|finishing|finishes|clocked
Cluster 747 :: rivers|stream|streams|tributaries|creeks
Cluster 748 :: instructions|instructed|inform|alerted|obey|interpol|superiors|informing|notify|clerks|assign|summons|summon|subordinates|contacting|censor|assigning|instruct|instructing|inquire|notifying
Cluster 749 :: disappeared|unconscious|vanished|coma|succumbed|prematurely|disappears|unscathed|mysteriously|unhurt|blinded|reappeared|inexplicably|tragically
Cluster 750 :: surgery|intensive|rehabilitation|underwent|undergo|undergoing|surgical|undergone|cardiac|surgeries|undergoes
Cluster 751 :: scientists|researchers|experiments|astronomers|biologists|physicists|geologists
Cluster 752 :: plan|plans|planned|proposed|approved|proposal|approval|considering|extension|charter
Cluster 753 :: affluent|poorer|richer|disadvantaged|wealthier|disproportionately|outnumber
Cluster 754 :: defects|defect|defective|fractures|corrosion|abnormalities|congenital|anomalies
Cluster 755 :: regain|reclaim|recapture|relinquish|regaining|retake|rightful|cede|wrest|solidify|luster|spoils
Cluster 756 :: ride|riding|bike|bicycle|rides|cart|wheelchair|bikes|jogging|walkers
Cluster 757 :: krishna|rama|lal|devi|gupta|dharma|dev|hari|ua|maharaja|jai|narayan
Cluster 758 :: honor|honorary|honour|honours|conferred|majesty|posthumously|bravery|bestowed|honoured|posthumous|gallantry
Cluster 759 :: abuse|torture|abuses|executions|subjected|systematic|beatings|mistreatment|mutilation
Cluster 760 :: mercury|avalanche|balloon|blowout|comets|boosters|meteor
Cluster 761 :: brah
Cluster 762 :: va.|md.|lexington|bethesda
Cluster 763 :: jamaica|trinidad|bahamas|bermuda|barbados|tobago|guyana|lucia|antigua|belize|grenada|dominica|kitts|nevis
Cluster 764 :: traffickers|cartels
Cluster 765 :: communism|socialism|fascism|marxism|nazism
Cluster 766 :: nike|mastercard|adidas|reebok|sportswear
Cluster 767 :: eye|eyes|skin|neck|chest|nose|throat|belly|breasts|forehead|abdomen|pierced|torso|slit
Cluster 768 :: corrupt|dictatorship|authoritarian|regimes|repressive|stalinist|oppressive|totalitarian|dictators|undemocratic|dictatorial
Cluster 769 :: nasa
Cluster 770 :: posed|pose|confront|dangers|poses|plight|inevitably|blames|dilemma|confronting|risked|peril|adversaries|grappling|risking|inaction|destabilizing|grapple|evils|perils
Cluster 771 :: justify|justified|exaggerated|implied|justification|dubious|rationale|disproportionate|implying|warranted|tantamount|prewar|basing|overstated|usefulness|permissible|justifying
Cluster 772 :: strings|keyboard|tuned|tuning|rhythmic|instrumentation|harmonic|playback|amplified|amplifier
Cluster 773 :: tel|aviv|istanbul|haifa|maccabi
Cluster 774 :: physicist|mathematician|astronomer|naturalist
Cluster 775 :: molecules|atom|nucleus|bind|molecule|rna|binds
Cluster 776 :: we|if|do|should|say|see|does|want|must|wanted|ca|let|wants|wo|ask
Cluster 777 :: bus|passengers|passenger|cargo|freight
Cluster 778 :: abroad|immigrants|foreigners|businessmen|migrants|westerners|expatriates|expatriate|diaspora|emigrants
Cluster 779 :: 1880s|reformation|1890s|1900s|1870s|1800s|19th-century|1860s|1850s|1840s|1830s|mid-19th|18th-century
Cluster 780 :: surprising|scenario|stark|reminder|grim|surprises|bleak|intriguing|chilling|startling|ominous|contrasts|improbable|depressing|rosy|unsettling|apocalyptic|sobering|puzzling|jarring
Cluster 781 :: carefully|constantly|simultaneously|concentrate|thoroughly|continuously|adapt|smoothly|progressed|continually|concentrating|periodically|efficiently|internally|evolving|adjusting|flourish|altering|sorted|progressing|intervening|adapting|progresses|matured|focussed|replicated
Cluster 782 :: carl|max|kurt|beck|andreas|schmidt|schneider|mueller|weber|kaiser|heinz|werner|fritz|braun|muller|jakob|bernhard|axel|markus|neumann|stephan|manfred|schulz|dieter|ig|lutz|moritz|florian|gottlieb
Cluster 783 :: hormone|hormones|insulin|testosterone|estrogen|epo|serum
Cluster 784 :: classroom|classrooms|gymnasium|dormitory|cafeteria|hostel|dorm|dormitories|schoolhouse
Cluster 785 :: 310|206|265|255|285|221|410|315|295|305|335|312|345|385|395|322|333|405|355|302|415|323|313|321
Cluster 786 :: comic|cartoon|cartoons|anime|manga|sketch|parody|humorous|satire|adaptations|satirical|erotic|comedic|spoof|parodies|black-and-white
Cluster 787 :: russians|poles|italians|spaniards|czechs|brazilians|romanians|ukrainians|hungarians|gypsies|georgians|argentines|bulgarians
Cluster 788 :: beers|rum|bourbon|whiskey|gin|ale|brew|scotch|brandy|cider|whisky|distilled|distillery|malt|dew|brewed
Cluster 789 :: health|hospital|medical|medicine|hospitals|clinic|psychiatric|veterinary
Cluster 790 :: erdogan|recep|tayyip
Cluster 791 :: cracking|dragging|tackled|racket|tangled|choking|rocking|grips|spitting|busted|slapping|juggling|tangle|dodging|shoving|bumping
Cluster 792 :: devils|capitals|islanders|penguins|flyers|oilers|coyotes|canadiens|sabres|leafs|ot|canucks|blackhawks|thrashers|yanks|metrostars
Cluster 793 :: lateral|anterior|posterior|medial
Cluster 794 :: dec|sm|feb|sept|nov|oct|aug|adv|thru|apr
Cluster 795 :: wolfe|eliot|poe|biographer|hemingway|altman|twain|faulkner|dickens|wilde|hopper|austen|ebert|schindler|baum|faust|gump|woolf|mailer|bradbury
Cluster 796 :: 1/16|3/16
Cluster 797 :: forgot|swear|begging|beforehand|pretending|cheated|confess|begged|forgiven|avail|swore|willingly|fooled|kindly|hesitated|tricked|pronounce|pretended|excused|gladly|redeemed|bothering
Cluster 798 :: shootout|rampage|drunken|brawl|melee|scuffle|altercation
Cluster 799 :: map|maps|geographic|geographical|coordinates|mapping|latitude|mapped|longitude
Cluster 800 :: tendulkar|ganguly|dravid|sehwag|rahul|sachin|laxman
Cluster 801 :: hiroshima|nagasaki
Cluster 802 :: advertising|ads|commercials|advertisements|promotional|clip|advertisement|fliers|touting|brochures|30-second
Cluster 803 :: m|1000|3000|rpm|5000|4000|approx
Cluster 804 :: businessman|billionaire|millionaire|tycoon|financier|magnate|mogul|philanthropist|industrialist
Cluster 805 :: ram|rao|das|prasad|reddy|yadav|mohan|prakash|mani
Cluster 806 :: sensex|30-share
Cluster 807 :: coca|cola|pepsi|pepsico|bottling|budweiser|coca-cola
Cluster 808 :: supervisor|correction|corrections|examiner|supervisors|staffing|lapd
Cluster 809 :: dollar|yen|euro|currency|currencies|greenback
Cluster 810 :: virginia|carolina|pennsylvania|ohio|massachusetts|michigan|illinois|iowa|tennessee|maryland|indiana|missouri|connecticut|oregon|kentucky|hampshire|wisconsin|arkansas|nebraska|vermont|delaware
Cluster 811 :: nuclear|atomic
Cluster 812 :: beirut|algiers|casablanca|sanaa|rabat|nasiriyah|sidon
Cluster 813 :: closely|similarly|moreover|neutral|consistently|independently|solely|furthermore|absent|excluded|peer|peers|relied|judged|likewise|consequently|readily|accordingly|collectively|individually|exclude|indirectly|unavailable|favoured|subordinate|differed|informally|classify|uniformly|arbitrarily
Cluster 814 :: hall|inn|lodge|lodges|masonic
Cluster 815 :: world|international|european|europe|eu
Cluster 816 :: dividends|hefty|royalties|reap|windfall|payoff|jackpot|recoup|payouts|reaped
Cluster 817 :: finalists|contestant|runner-up|all-time|eurovision|all-american|trophies|top-10|finishers|finisher|two-time|wildcard
Cluster 818 :: painting|paintings|portrait|sculpture|drawings|portraits|sculptures|landscapes|artworks|masterpieces
Cluster 819 :: dome|tallest|skyline|skyscraper|skyscrapers|eiffel
Cluster 820 :: revised|revision|revise|revisions|revising
Cluster 821 :: tour|event|events|competition|olympic|olympics|marathon
Cluster 822 :: harvard|yale|princeton|hopkins|carnegie|cornell|johns|mit|sloan|mellon|brookings|emory|brigham|tufts|m.d.|mcgill|alumnus|bard|brandeis|nyu
Cluster 823 :: meeting|conference|scheduled|session|discuss|meetings|attend|formal|discussions|attending|sessions|briefing|informal|sidelines|consultations
Cluster 824 :: patrol|convoy|stationed|patrols|patrolling|convoys|patrolled
Cluster 825 :: exercises|drill|maneuver|drills|maneuvers|landings|maneuvering|navies
Cluster 826 :: regard|considers|maintains|significance|belongs|sovereign|recognised|respects|constitute|regards|recognizes|recognizing|constitutes|foremost|assumes|attaches|establishes|indispensable|appreciates|recognises
Cluster 827 :: dismissed|conceded|dismissal|dismiss|dismissing|resignations|sacking|dismissals|quashed|tendered
Cluster 828 :: japan|korea|japanese|korean|tokyo|seoul|dprk|koreans
Cluster 829 :: church|catholic|parish|churches|orthodox|cathedral|chapel|congregation|episcopal|anglican
Cluster 830 :: 7.99|7.50|6.99
Cluster 831 :: gallon|liter|litre
Cluster 832 :: negotiator|erekat|saeb|erakat
Cluster 833 :: singled|sosa|canseco|alomar|cora|gwynn|pujols|bagwell|palmeiro|trot|lofton|chipper|berkman|tejada
Cluster 834 :: academic|graduate|courses|faculty|undergraduate|full-time|accredited|vocational|humanities|mba|part-time|postgraduate|faculties
Cluster 835 :: encourage|encouraged|encouraging|engage|actively|encourages|educate|integrate|strive|devote|geared|striving|mobilize|stakeholders|collaborate|educating|empower|freer|strives|mobilizing|empowering|tirelessly
Cluster 836 :: birmingham|leicester|cardiff|f.c.|nottingham|brighton|stoke|vale|sc|coventry|norwich|gloucester|albion|ipswich|northampton|swansea|blackpool|watford|burnley|bromwich|luton|wolverhampton|rfc|huddersfield|cheltenham|darlington|doncaster|barnsley|bournemouth|millwall|rotherham
Cluster 837 :: salle|rhone|institut|bois|parc|moors|québec
Cluster 838 :: weaponry|munitions|ordnance|unexploded|landmines|arsenals|armaments
Cluster 839 :: expansion|restructuring|pricing|privatization|consolidation|mergers|deregulation|liberalization|outsourcing|privatisation|realignment|liberalisation|nationalization|revitalization
Cluster 840 :: flu|virus|sars|swine|influenza|pandemic|h1n1|h5n1|avian|dengue
Cluster 841 :: bed|kitchen|sleeping|bedroom|garage|basement|bathroom|closet|couch|upstairs|cramped|cellar|sofa|loft|downstairs|sleeps|bedside
Cluster 842 :: mart|wal|sears|cos.|kmart|mattel|j.c.|penney|safeway|abercrombie
Cluster 843 :: collapse|recession|boom|downturn|brink|meltdown|turbulence|deflation|stagnation|doldrums|recessions
Cluster 844 :: chicks|geese|pigeons|turkeys|reindeer|quail|doves|roost
Cluster 845 :: glass|exterior|roofs|tiles|adobe|tile|mosaic|plaster|font|slab|stucco|glazed
Cluster 846 :: murdering|raping|assaulting
Cluster 847 :: conservatives|liberals|socialists|electorate|independents|reformers|tories|federalist
Cluster 848 :: paint|burn|brush|mold|weed|rust|charcoal|spraying|litter|stain|chimney|rot|blight
Cluster 849 :: slide|plunge|highs|closes|lows|plunging|swings|tumble|tumbling|jitters|gloom|surges|plunges|choppy|selloff
Cluster 850 :: hearing|proceedings|hearings|courtroom|lengthy|proceeding|deliberations|motions|adjourned|pretrial|deliberation
Cluster 851 :: training|sports|professional|youth|clubs|elite|amateur
Cluster 852 :: rwandan|congolese|angolan|mercenaries|timorese|zairean|chadian|burundian|zairian|liberians
Cluster 853 :: alaska|maine|hawaii|nevada|montana|dakota|midwest|idaho|wyoming|upstate|midwestern|yukon|panhandle
Cluster 854 :: sony|samsung|kodak|nec|philips|toshiba|lg|matsushita|westinghouse|astra|hitachi|fujitsu|panasonic
Cluster 855 :: deployed|deployment|contingent|deploy|reinforcements|deploying
Cluster 856 :: funny|perfectly|entertaining|nicely|beautifully|amusing|witty|enjoyable|brilliantly|hilarious|musically|wonderfully|amazingly|likable|believable|informative
Cluster 857 :: bald|skins|owl|leopard|crocodile|mole|feather|gorilla|kangaroo|squirrel|alligator|parrot|zebra|boar
Cluster 858 :: discipline|absolute|equality|loyalty|dignity|tolerance|conscience|virtue|purity|aspiration|irrespective|obedience
Cluster 859 :: slogans|chanted|chanting|chants|chant|placards
Cluster 860 :: festival|concerts|festivals|fairs
Cluster 861 :: pop|r&b|indie|hip-hop
Cluster 862 :: comply|resolutions|compliance|abide|safeguards|complied|certify|complying|directives|1441
Cluster 863 :: shrimp|seafood|tuna|crab|mushroom|lobster|oyster|steamed|squid|caviar
Cluster 864 :: steel|metal|iron|aluminum|aluminium|stainless|alloy|titanium|graphite
Cluster 865 :: interest|strong|real|loss|performance|poor|success|greater|confidence|gain|boost|advantage|combined|strength|improved|balance|competitive|struggling|thanks|reputation|healthy|improvement|enjoyed|momentum|promising|gaining|strongest
Cluster 866 :: dinner|lunch|breakfast|meal|meals|luncheon|dinners|buffet|lunches|hearty
Cluster 867 :: harsh|unnecessary|inappropriate|lax|unreasonable|intrusion|disruptive|harsher|lenient|intrusive|nuisance|undesirable|frivolous|excessively|unwarranted|wasteful|unnecessarily|draconian|unduly
Cluster 868 :: machine|electronic|device|machines|automatic|clock|gear|mechanical|manual|automated|faulty|computerized|manually|calculator
Cluster 869 :: gaza|strip|refugee|ramallah|nablus|jenin|waziristan|rafah|jericho|erez
Cluster 870 :: makes|comes|takes|goes|s|gets|gives|becomes|stands|returns|turns|sees|meets|brings|keeps|puts|raises|loses|enters|fits|delivers|emerges
Cluster 871 :: castro|hugo|fidel|morales|ortega|correa|kirchner|arias|betancourt|cardenas|horta|camara|gusmao|aleman|allende|duhalde|micheletti
Cluster 872 :: appliances|bulbs|disposable|refrigerators|conditioners
Cluster 873 :: '70s|'60s|'80s|'90s|nostalgia|'50s|retro|vibe|hippie|throwback|'40s
Cluster 874 :: insect|worms|rodents|canine|rodent|parasitic
Cluster 875 :: plot|affair|encounter|mysterious|encounters|plots|supernatural|sinister|imaginary|revolves|intrigue|protagonists|courtship|real-life|paranormal
Cluster 876 :: popularity|fortunes|owing|anticipation|shrinking|diminished|appetite|eroded|downside|dwindling|diminish|waning|stagnant|diminishing|dampen|dwindled|curtailed|eroding|waned|outweighed|ebb|wane
Cluster 877 :: archipelago|isle|isles|peninsular|shetland
Cluster 878 :: birch|spruce|fir|tundra|beech
Cluster 879 :: rage|ego|obsession|greed|ignorance|pervasive|fascination|envy|lust|fantasies|nightmares|angst|obsessive|jealousy|thirst|dread|hysteria|paranoia|alienation|boredom|existential|visceral|latent
Cluster 880 :: poison|poisoned|melamine|sarin|cyanide|nitrate|ammonium
Cluster 881 :: rating|ratings|rated
Cluster 882 :: coke|staples|cigar|biotech|procter|marlboro|newsprint
Cluster 883 :: benchmark|nikkei|ftse|nikkei-225
Cluster 884 :: salesman|maid|attendant|tailor|waitress|waiter|hostess|bartender|shopkeeper|chauffeur|stylist|waiters|receptionist|cashier
Cluster 885 :: overweight|expectancy|obese
Cluster 886 :: attract|attracting|lure|entrepreneurs|newcomers|lured|courting|eyeing|entice|capitalists|luring|heeled|wooing|enticing|unsuspecting
Cluster 887 :: spain|brazil|argentina|portugal|chile|costa|uruguay|rica|paraguay
Cluster 888 :: video|videos|clips|videotapes
Cluster 889 :: cleanup|diversion|reclamation|dredging
Cluster 890 :: washn|approves|proposes|enlargement|lays|adopts|emu|endorses|envisages
Cluster 891 :: takeover|buyout|multimillion|multibillion|leveraged|takeovers|buyback|buyouts
Cluster 892 :: flow|substantial|external|sufficient|efficiency|improvements|excessive|adequate|minimal|inadequate|availability|insufficient|adjustment|discharge|long-term|constraints|retention|short-term
Cluster 893 :: territory|occupied|occupation|territories|lands|colony|inhabitants|refuge|occupy|inhabited|occupying|annexed|outpost
Cluster 894 :: wrapped|straw|wrap|shelves|discarded|wrapping|recycled|wraps|stamped|hides|shredded|stuffing|watered|scraps|leftover|parchment
Cluster 895 :: issues|key|create|focus|ways|developing|approach|strategy|focused|creating|broad|core|changing|challenges|emerging|sharing|broader|developments|expanding|solutions|focusing|wider|strategies|explore|approaches|possibilities|exploring
Cluster 896 :: volume|maximum|lowest|gross|zero|capita|exceed|exceeded|minus|threshold|exceeding|exceeds|cumulative|annum
Cluster 897 :: plea|innocence|guilt|pardon|confession|contempt|pleas|plead|pleading|confessions|clemency|leniency
Cluster 898 :: prussia|duchy|dukes|principality|savoy|pomerania|bohemia|silesian|habsburg|transylvania|silesia
Cluster 899 :: http://www.nasdaq.com
Cluster 900 :: yardage|punts
Cluster 901 :: populations|migratory|migrate|nesting|migrating|spawn|spawning|flocks
Cluster 902 :: ontario|quebec|ottawa|alberta|calgary|edmonton|saskatchewan|manitoba|winnipeg
Cluster 903 :: theatre|orchestra|symphony|ballet|choir|philharmonic|conservatory|repertory|choral|soloist|recital|juilliard
Cluster 904 :: carnage|stampede|mayhem|inferno|erupts|bloodbath|bloodletting
Cluster 905 :: clay|rubin|roland|becker|lindsay|haas|novak|courier|patty|huber|mcenroe|kiefer|connors|shaughnessy
Cluster 906 :: pope|vatican|benedict|patriarch|papal|xvi|pontiff|pius|papacy|consecration|ratzinger
Cluster 907 :: dog|dogs|spotted|pet|cats|pets|rats|mosquito|mosquitoes|sniffing
Cluster 908 :: java|sumatra|borneo|sulawesi|maluku|kalimantan
Cluster 909 :: mr|dr|maurice|clarence|lambert|geoffrey|browne|noel|botha|steward|cromwell|reginald
Cluster 910 :: pt|siam|ptt|bukit
Cluster 911 :: zionist|liberated|liberate|occupiers|traitors|vichy|liberating
Cluster 912 :: cop|foreigner|bully|greedy|unruly|macho|dreaded|hapless|bashing|cheerleader|prank|fanatic|fanatics|blooded|schoolboy|biker|gambler|crazed
Cluster 913 :: coup|coups|bloodless|d'etat|d'état
Cluster 914 :: labor|immigration|abortion|advocates|oppose|advocate|lobbying|advocacy|opposes|liberties|environmentalists|affirmative|proponents|euthanasia
Cluster 915 :: 1945|1944|1942|1941|1940|1943|commissioned|1918|1917|1919|1914|1915|1916|1865|1864|1862|1863
Cluster 916 :: pushes|soften|deflect|bowing|hammering|furiously|harden|soothe|nudge|labored|prod|prodded|sharpened|wavering|sharpen|coax|prodding|mull|shove
Cluster 917 :: 95|85|72|66|67|68|63|69|71|73|76|74|77|78|96|99|82|88|86|84|98|83|81|79|87|93|92|89|97|94|91|rn
Cluster 918 :: bust|pyramid|mammoth|proportions|gigantic|wrought|surrounds|revolving|footprint|colossal|iceberg
Cluster 919 :: neighbor|girlfriend|boyfriend|lover|ager|estranged|prostitute|jealous|toddler|nanny|pleads|roommate|acquaintance|stepfather|sweetheart|surrogate|fiancee|marries|confesses|fiance|stepmother|housekeeper|flees|widower
Cluster 920 :: johan|ole|miroslav|mehmet|harald|fredrik|andersson|gunnar|moeller
Cluster 921 :: kaczynski|havel|walesa|kwasniewski|lech|vaclav|aleksander|iliescu
Cluster 922 :: or|used|use|using|available|standard|type|uses|types|commonly|etc.|conventional
Cluster 923 :: flush|fetch|piling|hammers|shovel|tarp|booty|bales|rake|corral|mop
Cluster 924 :: hydroelectric|mw|hydro|hydropower|geothermal
Cluster 925 :: motorcycle|trailer|wagon|mechanic|tractor|decker|scooter|wheeled|bulldozer
Cluster 926 :: test|tests|testing|tested|trials|screening|diagnostic
Cluster 927 :: suharto|wahid|habibie|b.j.|soeharto|nano|narasimha|muluzi
Cluster 928 :: 150|250|120|130|110|140|160|180|125|225|170|240|190|175|230|apiece
Cluster 929 :: larijani|mottaki|kharrazi|manouchehr
Cluster 930 :: market|stock|prices|shares|price|exchange|markets|trading|stocks|dow|futures
Cluster 931 :: partner|partners|venture|parent|consortium|ventures|partnerships|llc|subsidiaries|diversified
Cluster 932 :: investigation|investigators|investigating|probe|inquiry|investigate|investigations|ethics|investigated|irregularities|inquiries|enquiry
Cluster 933 :: rev.|pastor|luther|reverend|augustine|marian|fr|deacon|evangelist|elijah|apostle|falwell
Cluster 934 :: command|assigned|admiral|commanded|commanding|ss|confederate|garrison|marshal|commandant|commander-in-chief|wehrmacht
Cluster 935 :: boca|juniors|cerro|chivas|pumas|colo|azul|velez
Cluster 936 :: ridiculous|outrageous|absurd|nonsense|irony|ironic|excuses|rude|farce|liar|fuss|pathetic|expletive|ludicrous|pun|exaggeration|incomprehensible
Cluster 937 :: traffic|rush|busy|stops|stopping|travels|interrupted|nonstop|exits|jams|commute|commuting|detour
Cluster 938 :: news|press|media|daily|newspaper|interview|newspapers|journalists|editorial|quoting|dailies
Cluster 939 :: pkk|outlawed|lashkar|offshoot|npa|shabab
Cluster 940 :: computers|phones|portable|laptop|servers|rom|printer|telephones|printers|gadgets|cellphone|laptops|floppy|notebooks|megabytes|cellphones
Cluster 941 :: genoa|torino|pisa
Cluster 942 :: stamp|stamps|commemorative|postage
Cluster 943 :: crops|crop|harvest|harvested|harvests|farmed
Cluster 944 :: recommended|guidelines|recommendations|fda|recommendation|recommend|recommends|remedies|recommending|labeling
Cluster 945 :: suit|wearing|wear|dress|dressed|wore|suits|worn|collar|wears|costume|costumes|clad|outfits|attire
Cluster 946 :: lawsuit|complaint|sued|alleging|lodged|alleges|suing|allege|defamation|libel|wikileaks|sues|assange|slander
Cluster 947 :: inspection|inspections|inspect|inspected|hastily|beefed|inspecting|unannounced
Cluster 948 :: disneyland|champs|riviera|majestic|taj|regal|seaport|panorama|mahal|sheraton|yosemite|fabled|boardwalk|trafalgar|carousel|windmill|gotham
Cluster 949 :: joan|frances|marilyn|shirley|nina|mrs|peggy|harriet|irene|sheila|erin|ida|evelyn|nora|danielle|bowles|hilary|vivian|lydia|bridget|ethel|astor|marjorie|gladys|lucille|mimi|mildred|priscilla
Cluster 950 :: pct|update1|pretax|mln|bln|update2|qtr|update3
Cluster 951 :: burning|fires|flames|blaze|sparks|raging|ignited|engulfed|exploding|wildfires|ignite|wildfire|blazes|extinguish|fireball|igniting
Cluster 952 :: fort|lincoln|heights|hometown|madison|arlington|louisville|springfield|monroe|omaha|lafayette|winchester|woodstock|arbor|knoxville|gettysburg|chattanooga|dearborn|armory|macon|bloomington
Cluster 953 :: megawati|yudhoyono|bambang|susilo|sukarnoputri
Cluster 954 :: twenty|twelve|eleven|thirty|fifteen|fifty|forty|thirteen|chapters|sixteen|fourteen|numbered|eighteen|sixty|seventeen|seventy|nineteen|eighty|ninety|spanned|twenty-five|twenty-four
Cluster 955 :: subsidy|deferred|vouchers|rebate|withholding|refund|withhold|rebates|reimbursement|vat|lieu|refunds|reimburse|upfront|reimbursed
Cluster 956 :: skeptical|broadly|supportive|disagree|inclined|cautiously|dissatisfied|hesitant|favorably|receptive|stubbornly|sceptical
Cluster 957 :: asylum|nationals|seekers|captive|captivity|repatriation|forcibly|repatriated|repatriate
Cluster 958 :: hotel|rental|rented|motel|rents|condominium|renting|rentals|condo|condominiums|rv|penthouse
Cluster 959 :: english|welsh|scots|saxon
Cluster 960 :: armored|armoured|battalions|regiments|parachute|panzer|mechanized
Cluster 961 :: willing|eager|persuade|reluctant|convince|urge|insist|refuse|refuses|wanting|intend|intervene|assure|unwilling|criticize|obliged|reconsider|reassure|compelled|persuading|hesitate|intending|obligated
Cluster 962 :: vocal|composition|ensemble|compositions|repertoire|lyric|orchestral|songwriting|choreography|composing|operatic|symphonic|accompaniment|improvisation|cappella
Cluster 963 :: protested|angered|ignoring|dissent|defied|defying|criticizes|campaigners|decried|expelling|angering|boycotts|jailing|dissenters|singling
Cluster 964 :: nazarbayev|yar|aliyev|bongo|adua|aliev
Cluster 965 :: transmitted|feeds|messenger|transmit|packet|packets|transmitting
Cluster 966 :: salary|wages|salaries|payroll|incomes|payrolls|earners|paychecks
Cluster 967 :: lockheed|mcdonnell|northrop|raytheon|grumman|bombardier|honeywell
Cluster 968 :: bypass|terminated|terminate|feeder|servicing|concurrent|terminating
Cluster 969 :: cocaine|marijuana|heroin|opium|cannabis|ecstasy|methamphetamine|hashish
Cluster 970 :: bush|clinton|obama|mccain|gore|senator|kerry|dole|barack|hillary|romney|forbes|buchanan|candidacy|rodham|palin|huckabee|mitt|presumptive
Cluster 971 :: jean|pierre|marie|michel|claude|francois
Cluster 972 :: defensive|quarterback|rookie|receiver|freshman|linebacker|sophomore|receivers|cornerback|quarterbacks|lineman|kicker|standout|qb|linemen|tailback|linebackers|rusher|punter|redshirt
Cluster 973 :: norton|knox|caldwell|seymour|conway|hammond|cobb|eaton|shelby|sheridan|atkinson|patton|dickinson|ware|polk|taft|cary|harmon|bragg|sherwood|mcpherson|wharton|rowan|hays|pickering|wilcox|brewster|dunbar|mcintosh|purcell|corbett|waller|granville|bassett|kimball|proctor|kearney|boyce|forsyth|colby|meade|hardin|cartwright|robins|pickett|custer|whitfield|fenton
Cluster 974 :: relocation|relocate|standby|annex|evicted|relocating|renovate|demolish|disable|evict|vacate
Cluster 975 :: knocked|rolled|knock|snap|knocking|pulls|packing|baton|smash|rip|brace|smashing|breaker|skid|knocks|ripping|braces
Cluster 976 :: calm|tense|uneasy|cordial|tenuous|amicable
Cluster 977 :: stadium|athens|organisers|thessaloniki|acropolis
Cluster 978 :: aid|mission|emergency|relief|assistance|humanitarian|reconstruction|assist|urgently|resettlement
Cluster 979 :: hero|genius|magical|sensation|possessed|elusive|possesses|captures|heroine|stardom|fearless|diminutive|enigmatic|uncanny|fearsome
Cluster 980 :: bond|bonds|yield|yields|maturity|yielding|treasuries|maturing|indexed
Cluster 981 :: josé|marÃa|garcÃa|gonzález|lópez|rodrÃguez|pérez|martÃn|martÃnez|fernández|sánchez
Cluster 982 :: gibbons|yee|weldon|ney|abizaid|arian|pitts|ros
Cluster 983 :: marco|giovanni|francesco|paolo|pietro|salvatore|giacomo
Cluster 984 :: veterans|volunteers|volunteer|recruiting|dispatched|recruit|enlisted|recruits|dispatch|volunteered|cadets|enlist|legions|vet|mustered|dispatching|trainees|vets|enlisting
Cluster 985 :: recipe|menu|recipes|menus
Cluster 986 :: bitter|battling|rivalry|showdown|battled|turf|foes|feud|dogged|pitted|embroiled|defection|pitting|bruising|fiercest|sparring|tussle
Cluster 987 :: legal|critics|opposed|opinion|argued|favor|controversial|argument|argue|challenged|arguments|arguing|ignored|challenging|reject|opposing|argues|objections|contend|favors|proposition|precedent|sided|legality|contending|favoring
Cluster 988 :: sweat|whipped|soaked|towel|drenched|splashed|sweating|soaking|dripping
Cluster 989 :: propaganda|neo|fascist|mussolini
Cluster 990 :: guarantee|guaranteed|obligations|guarantees|concession|preferential|unconditional|guaranteeing|contractual|precondition
Cluster 991 :: geological|geology|usgs|geologic
Cluster 992 :: talabani|izetbegovic|jalal|maskhadov|rugova|plavsic|zebari|barzani|aslan|alija|krajisnik
Cluster 993 :: o|se|sin|ha|mi|su|lo|te|si|ya|yo|tu|hai|che|amor
Cluster 994 :: 1997-98|2010-11|1998-99|1996-97|1995-96|2009-10|2008-09|2007-08|2006-07|1994-95|1999-2000|2009-2010|2011-12|2005-06
Cluster 995 :: stars|cast|roles|guest|actors|celebrity|audiences|celebrities|personalities|filmmakers|aspiring|actresses|comedians
Cluster 996 :: coordinator|fleischer|undersecretary|mccurry|fema|panetta|napolitano|chertoff|babbitt|mccaffrey|deutch|glickman|nsc
Cluster 997 :: troubled|badly|severely|battered|ailing|stricken|strapped|ridden|paralyzed|crippled|crippling|beleaguered|afloat|ageing|decimated|paralysed
Cluster 998 :: disrupt|intensify|derail|jeopardize|destabilize|endanger|disrupting|complicate|viability|hinder|hamper|hindered|prolong|complicating|impede|hampering|cripple|obstruct|normalize|expedite|jeopardized|hindering|hasten|scuttle|jeopardizing
Cluster 999 :: ih|duh|buh|ehr|leh|soh|dahn|keer|mih