treat 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. data/INSTALL +0 -0
  2. data/LICENSE +28 -0
  3. data/README +0 -0
  4. data/TODO +67 -0
  5. data/bin/INFO +1 -0
  6. data/examples/benchmark.rb +81 -0
  7. data/examples/keywords.rb +60 -0
  8. data/examples/texts/bugged_out.txt +26 -0
  9. data/examples/texts/half_cocked_basel.txt +16 -0
  10. data/examples/texts/hedge_funds.txt +24 -0
  11. data/examples/texts/hose_and_dry.txt +19 -0
  12. data/examples/texts/hungarys_troubles.txt +46 -0
  13. data/examples/texts/indias_slowdown.txt +15 -0
  14. data/examples/texts/merkozy_rides_again.txt +24 -0
  15. data/examples/texts/prada_is_not_walmart.txt +9 -0
  16. data/examples/texts/republican_nomination.txt +26 -0
  17. data/examples/texts/to_infinity_and_beyond.txt +15 -0
  18. data/lib/treat.rb +91 -0
  19. data/lib/treat/buildable.rb +115 -0
  20. data/lib/treat/categories.rb +29 -0
  21. data/lib/treat/category.rb +28 -0
  22. data/lib/treat/delegatable.rb +90 -0
  23. data/lib/treat/detectors.rb +28 -0
  24. data/lib/treat/detectors/encoding/native.rb +12 -0
  25. data/lib/treat/detectors/encoding/r_chardet19.rb +24 -0
  26. data/lib/treat/detectors/format/file.rb +36 -0
  27. data/lib/treat/detectors/language/language_detector.rb +19 -0
  28. data/lib/treat/detectors/language/what_language.rb +29 -0
  29. data/lib/treat/entities.rb +52 -0
  30. data/lib/treat/entities/collection.rb +19 -0
  31. data/lib/treat/entities/constituents.rb +15 -0
  32. data/lib/treat/entities/document.rb +11 -0
  33. data/lib/treat/entities/entity.rb +242 -0
  34. data/lib/treat/entities/sentence.rb +8 -0
  35. data/lib/treat/entities/text.rb +7 -0
  36. data/lib/treat/entities/tokens.rb +37 -0
  37. data/lib/treat/entities/zones.rb +17 -0
  38. data/lib/treat/exception.rb +5 -0
  39. data/lib/treat/extractors.rb +41 -0
  40. data/lib/treat/extractors/key_sentences/topics_frequency.rb +49 -0
  41. data/lib/treat/extractors/named_entity/abner.rb +20 -0
  42. data/lib/treat/extractors/named_entity/stanford.rb +174 -0
  43. data/lib/treat/extractors/statistics/frequency.rb +22 -0
  44. data/lib/treat/extractors/statistics/frequency_of.rb +17 -0
  45. data/lib/treat/extractors/statistics/position_in.rb +13 -0
  46. data/lib/treat/extractors/statistics/transition_matrix.rb +105 -0
  47. data/lib/treat/extractors/statistics/transition_probability.rb +53 -0
  48. data/lib/treat/extractors/time/chronic.rb +12 -0
  49. data/lib/treat/extractors/time/native.rb +12 -0
  50. data/lib/treat/extractors/time/nickel.rb +45 -0
  51. data/lib/treat/extractors/topic_words/lda.rb +71 -0
  52. data/lib/treat/extractors/topic_words/lda/data.dat +46 -0
  53. data/lib/treat/extractors/topic_words/lda/wiki.yml +121 -0
  54. data/lib/treat/extractors/topics/reuters.rb +91 -0
  55. data/lib/treat/extractors/topics/reuters/industry.xml +2717 -0
  56. data/lib/treat/extractors/topics/reuters/region.xml +13585 -0
  57. data/lib/treat/extractors/topics/reuters/topics.xml +17977 -0
  58. data/lib/treat/feature.rb +53 -0
  59. data/lib/treat/formatters.rb +44 -0
  60. data/lib/treat/formatters/cleaners/html.rb +17 -0
  61. data/lib/treat/formatters/readers/autoselect.rb +35 -0
  62. data/lib/treat/formatters/readers/gocr.rb +24 -0
  63. data/lib/treat/formatters/readers/html.rb +13 -0
  64. data/lib/treat/formatters/readers/ocropus.rb +31 -0
  65. data/lib/treat/formatters/readers/pdf.rb +17 -0
  66. data/lib/treat/formatters/readers/txt.rb +15 -0
  67. data/lib/treat/formatters/serializers/xml.rb +48 -0
  68. data/lib/treat/formatters/serializers/yaml.rb +15 -0
  69. data/lib/treat/formatters/serializers/yaml/helper.rb +96 -0
  70. data/lib/treat/formatters/unserializers/autoselect.rb +19 -0
  71. data/lib/treat/formatters/unserializers/xml.rb +79 -0
  72. data/lib/treat/formatters/unserializers/yaml.rb +15 -0
  73. data/lib/treat/formatters/visualizers/dot.rb +73 -0
  74. data/lib/treat/formatters/visualizers/html.rb +12 -0
  75. data/lib/treat/formatters/visualizers/inspect.rb +16 -0
  76. data/lib/treat/formatters/visualizers/short_value.rb +14 -0
  77. data/lib/treat/formatters/visualizers/standoff.rb +41 -0
  78. data/lib/treat/formatters/visualizers/tree.rb +28 -0
  79. data/lib/treat/formatters/visualizers/txt.rb +31 -0
  80. data/lib/treat/group.rb +96 -0
  81. data/lib/treat/inflectors.rb +50 -0
  82. data/lib/treat/inflectors/cardinal_words/linguistics.rb +45 -0
  83. data/lib/treat/inflectors/conjugators/linguistics.rb +30 -0
  84. data/lib/treat/inflectors/declensors/en.rb +18 -0
  85. data/lib/treat/inflectors/declensors/linguistics.rb +30 -0
  86. data/lib/treat/inflectors/lemmatizers/e_lemma.rb +12 -0
  87. data/lib/treat/inflectors/lemmatizers/e_lemma/Makefile +213 -0
  88. data/lib/treat/inflectors/lemmatizers/e_lemma/elemma.c +68 -0
  89. data/lib/treat/inflectors/lemmatizers/e_lemma/extconf.rb +6 -0
  90. data/lib/treat/inflectors/ordinal_words/linguistics.rb +21 -0
  91. data/lib/treat/inflectors/stemmers/porter.rb +158 -0
  92. data/lib/treat/inflectors/stemmers/porter_c.rb +23 -0
  93. data/lib/treat/inflectors/stemmers/uea.rb +30 -0
  94. data/lib/treat/lexicalizers.rb +49 -0
  95. data/lib/treat/lexicalizers/category/from_tag.rb +30 -0
  96. data/lib/treat/lexicalizers/linkages/naive.rb +63 -0
  97. data/lib/treat/lexicalizers/synsets/rita_wn.rb +23 -0
  98. data/lib/treat/lexicalizers/synsets/wordnet.rb +72 -0
  99. data/lib/treat/lexicalizers/tag/brill.rb +101 -0
  100. data/lib/treat/lexicalizers/tag/lingua.rb +114 -0
  101. data/lib/treat/lexicalizers/tag/stanford.rb +86 -0
  102. data/lib/treat/processors.rb +45 -0
  103. data/lib/treat/processors/chunkers/txt.rb +27 -0
  104. data/lib/treat/processors/parsers/enju.rb +214 -0
  105. data/lib/treat/processors/parsers/stanford.rb +60 -0
  106. data/lib/treat/processors/segmenters/punkt.rb +48 -0
  107. data/lib/treat/processors/segmenters/stanford.rb +45 -0
  108. data/lib/treat/processors/segmenters/tactful.rb +34 -0
  109. data/lib/treat/processors/tokenizers/macintyre.rb +76 -0
  110. data/lib/treat/processors/tokenizers/multilingual.rb +31 -0
  111. data/lib/treat/processors/tokenizers/perl.rb +96 -0
  112. data/lib/treat/processors/tokenizers/punkt.rb +42 -0
  113. data/lib/treat/processors/tokenizers/stanford.rb +33 -0
  114. data/lib/treat/processors/tokenizers/tactful.rb +59 -0
  115. data/lib/treat/proxies.rb +66 -0
  116. data/lib/treat/registrable.rb +26 -0
  117. data/lib/treat/resources.rb +10 -0
  118. data/lib/treat/resources/categories.rb +18 -0
  119. data/lib/treat/resources/delegates.rb +96 -0
  120. data/lib/treat/resources/dependencies.rb +0 -0
  121. data/lib/treat/resources/edges.rb +8 -0
  122. data/lib/treat/resources/formats.rb +23 -0
  123. data/lib/treat/resources/languages.rb +86 -0
  124. data/lib/treat/resources/languages.txt +504 -0
  125. data/lib/treat/resources/tags.rb +393 -0
  126. data/lib/treat/sugar.rb +43 -0
  127. data/lib/treat/tree.rb +174 -0
  128. data/lib/treat/utilities.rb +127 -0
  129. data/lib/treat/visitable.rb +27 -0
  130. data/test/profile.rb +2 -0
  131. data/test/tc_detectors.rb +27 -0
  132. data/test/tc_entity.rb +105 -0
  133. data/test/tc_extractors.rb +48 -0
  134. data/test/tc_formatters.rb +46 -0
  135. data/test/tc_inflectors.rb +39 -0
  136. data/test/tc_lexicalizers.rb +39 -0
  137. data/test/tc_processors.rb +36 -0
  138. data/test/tc_resources.rb +27 -0
  139. data/test/tc_treat.rb +64 -0
  140. data/test/tc_tree.rb +60 -0
  141. data/test/tests.rb +19 -0
  142. data/test/texts.rb +20 -0
  143. data/test/texts/english/long.html +24 -0
  144. data/test/texts/english/long.txt +22 -0
  145. data/test/texts/english/medium.txt +5 -0
  146. data/test/texts/english/short.txt +3 -0
  147. metadata +412 -0
@@ -0,0 +1,2717 @@
1
+ <categories name="industry">
2
+ <word cat="TEXTILE INDUSTRY" name="berdan" score="1.000000" />
3
+ <word cat="TEXTILE INDUSTRY" name="dynic" score="1.000000" />
4
+ <word cat="TEXTILE INDUSTRY" name="omikenshi" score="1.000000" />
5
+ <word cat="TEXTILE INDUSTRY" name="thomaston" score="1.000000" />
6
+ <word cat="TEXTILE INDUSTRY" name="vilen" score="1.000000" />
7
+ <word cat="TEXTILE INDUSTRY" name="kanbo" score="1.000000" />
8
+ <word cat="TEXTILE INDUSTRY" name="fieldcrest" score="1.000000" />
9
+ <word cat="TEXTILE INDUSTRY" name="tecsyn" score="1.000000" />
10
+ <word cat="TEXTILE INDUSTRY" name="keori" score="1.000000" />
11
+ <word cat="TEXTILE INDUSTRY" name="matsuka" score="1.000000" />
12
+ <word cat="TEXTILE INDUSTRY" name="orimono" score="1.000000" />
13
+ <word cat="TEXTILE INDUSTRY" name="nisshinbo" score="1.000000" />
14
+ <word cat="TEXTILE INDUSTRY" name="nfy" score="1.000000" />
15
+ <word cat="TEXTILE INDUSTRY" name="ameriwood" score="1.000000" />
16
+ <word cat="TEXTILE INDUSTRY" name="kowa" score="1.000000" />
17
+ <word cat="TEXTILE INDUSTRY" name="lentex" score="1.000000" />
18
+ <word cat="TEXTILE INDUSTRY" name="kiito" score="1.000000" />
19
+ <word cat="TEXTILE INDUSTRY" name="texfi" score="1.000000" />
20
+ <word cat="TEXTILE INDUSTRY" name="aderan" score="1.000000" />
21
+ <word cat="TEXTILE INDUSTRY" name="seimo" score="1.000000" />
22
+ <word cat="TEXTILE INDUSTRY" name="toyobo" score="1.000000" />
23
+ <word cat="TEXTILE INDUSTRY" name="seiren" score="1.000000" />
24
+ <word cat="TEXTILE INDUSTRY" name="boseki" score="1.000000" />
25
+ <word cat="TEXTILE INDUSTRY" name="maruta" score="1.000000" />
26
+ <word cat="RETAIL DISTRIBUTION" name="selfix" score="1.000000" />
27
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="coregi" score="1.000000" />
28
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="hokubu" score="1.000000" />
29
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="mutoh" score="1.000000" />
30
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="katsuragawa" score="1.000000" />
31
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="ensec" score="1.000000" />
32
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="kurogan" score="1.000000" />
33
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="telepanel" score="1.000000" />
34
+ <word cat="ELECTRONIC OFFICE EQUIPMENT" name="directmail" score="1.000000" />
35
+ <word cat="REINSURANCE" name="kielholz" score="1.000000" />
36
+ <word cat="REINSURANCE" name="renaissancer" score="1.000000" />
37
+ <word cat="REINSURANCE" name="unioria" score="1.000000" />
38
+ <word cat="PLASTICS PRODUCTS" name="wavelock" score="1.000000" />
39
+ <word cat="PLASTICS PRODUCTS" name="tsutsunaka" score="1.000000" />
40
+ <word cat="PLASTICS PRODUCTS" name="buffton" score="1.000000" />
41
+ <word cat="PLASTICS PRODUCTS" name="tarkett" score="1.000000" />
42
+ <word cat="PLASTICS PRODUCTS" name="boryszew" score="1.000000" />
43
+ <word cat="PLASTICS PRODUCTS" name="essef" score="1.000000" />
44
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="cinar" score="1.000000" />
45
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="scanbox" score="1.000000" />
46
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="cinemastar" score="1.000000" />
47
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="showscan" score="1.000000" />
48
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="carmik" score="1.000000" />
49
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="lanacan" score="1.000000" />
50
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="shochiku" score="1.000000" />
51
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="gamework" score="1.000000" />
52
+ <word cat="FILM PRODUCTION AND DISTRIBUTION" name="nikkatsu" score="1.000000" />
53
+ <word cat="RAILWAY EQUIPMENT" name="motivepow" score="1.000000" />
54
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="nuplex" score="1.000000" />
55
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="calnet" score="1.000000" />
56
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="ovon" score="1.000000" />
57
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="daicel" score="1.000000" />
58
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="kaneka" score="1.000000" />
59
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="landec" score="1.000000" />
60
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="quadrax" score="1.000000" />
61
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="zeon" score="1.000000" />
62
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="valqua" score="1.000000" />
63
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="geon" score="1.000000" />
64
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="recticel" score="1.000000" />
65
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="spartech" score="1.000000" />
66
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="viskas" score="1.000000" />
67
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="matritech" score="1.000000" />
68
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="chempow" score="1.000000" />
69
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="schawk" score="1.000000" />
70
+ <word cat="SYNTHETIC RESINS, POLYMERS AND PLASTICS" name="sheldahl" score="1.000000" />
71
+ <word cat="REAL ESTATE DEALING" name="enscor" score="1.000000" />
72
+ <word cat="REAL ESTATE DEALING" name="mulialand" score="1.000000" />
73
+ <word cat="REAL ESTATE DEALING" name="tbi" score="1.000000" />
74
+ <word cat="REAL ESTATE DEALING" name="unibail" score="1.000000" />
75
+ <word cat="REAL ESTATE DEALING" name="rhl" score="1.000000" />
76
+ <word cat="REAL ESTATE DEALING" name="nhp" score="1.000000" />
77
+ <word cat="REAL ESTATE DEALING" name="sekiwa" score="1.000000" />
78
+ <word cat="REAL ESTATE DEALING" name="yuraku" score="1.000000" />
79
+ <word cat="REAL ESTATE DEALING" name="fairyoung" score="1.000000" />
80
+ <word cat="REAL ESTATE DEALING" name="prentiss" score="1.000000" />
81
+ <word cat="REAL ESTATE DEALING" name="catellu" score="1.000000" />
82
+ <word cat="REAL ESTATE DEALING" name="capcount" score="1.000000" />
83
+ <word cat="REAL ESTATE DEALING" name="hinoki" score="1.000000" />
84
+ <word cat="REAL ESTATE DEALING" name="primetown" score="1.000000" />
85
+ <word cat="REAL ESTATE DEALING" name="winfoong" score="1.000000" />
86
+ <word cat="REAL ESTATE DEALING" name="hovnanian" score="1.000000" />
87
+ <word cat="REAL ESTATE DEALING" name="frogmor" score="1.000000" />
88
+ <word cat="REAL ESTATE DEALING" name="withycomb" score="1.000000" />
89
+ <word cat="REAL ESTATE DEALING" name="goldon" score="1.000000" />
90
+ <word cat="REAL ESTATE DEALING" name="riccia" score="1.000000" />
91
+ <word cat="REAL ESTATE DEALING" name="cdil" score="1.000000" />
92
+ <word cat="REAL ESTATE DEALING" name="vornado" score="1.000000" />
93
+ <word cat="REAL ESTATE DEALING" name="lennar" score="1.000000" />
94
+ <word cat="REAL ESTATE DEALING" name="zheny" score="1.000000" />
95
+ <word cat="REAL ESTATE DEALING" name="rakutenchi" score="1.000000" />
96
+ <word cat="REAL ESTATE DEALING" name="triplen" score="1.000000" />
97
+ <word cat="REAL ESTATE DEALING" name="paradiso" score="1.000000" />
98
+ <word cat="REAL ESTATE DEALING" name="kaneichi" score="1.000000" />
99
+ <word cat="REAL ESTATE DEALING" name="castrum" score="1.000000" />
100
+ <word cat="REAL ESTATE DEALING" name="multistack" score="1.000000" />
101
+ <word cat="REAL ESTATE DEALING" name="minowa" score="1.000000" />
102
+ <word cat="REAL ESTATE DEALING" name="chikagai" score="1.000000" />
103
+ <word cat="HOUSEHOLD TEXTILES" name="gumussuyu" score="1.000000" />
104
+ <word cat="HOUSEHOLD TEXTILES" name="dakotah" score="1.000000" />
105
+ <word cat="HOUSEHOLD TEXTILES" name="novita" score="1.000000" />
106
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="sanmina" score="1.000000" />
107
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="yuden" score="1.000000" />
108
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="orbotech" score="1.000000" />
109
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="shizuki" score="1.000000" />
110
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="ddl" score="1.000000" />
111
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="cmk" score="1.000000" />
112
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="sigmatron" score="1.000000" />
113
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="hadco" score="1.000000" />
114
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="avx" score="1.000000" />
115
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="mrv" score="1.000000" />
116
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="elna" score="1.000000" />
117
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="kemet" score="1.000000" />
118
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="sumida" score="1.000000" />
119
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="eltech" score="1.000000" />
120
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="firston" score="1.000000" />
121
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="capacit" score="1.000000" />
122
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="vishai" score="1.000000" />
123
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="shinmei" score="1.000000" />
124
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="bowthorp" score="1.000000" />
125
+ <word cat="PASSIVE COMPONENTS, PRINTED CIRCUITS" name="intertechnolog" score="1.000000" />
126
+ <word cat="FOOTWEAR" name="himiko" score="1.000000" />
127
+ <word cat="BREWING" name="olvi" score="1.000000" />
128
+ <word cat="BREWING" name="yanj" score="1.000000" />
129
+ <word cat="BREWING" name="labatt" score="1.000000" />
130
+ <word cat="BREWING" name="redhook" score="1.000000" />
131
+ <word cat="BREWING" name="boxmeer" score="1.000000" />
132
+ <word cat="BREWING" name="lansio" score="1.000000" />
133
+ <word cat="BREWING" name="vuursteen" score="1.000000" />
134
+ <word cat="HOTELS AND ACCOMMODATION" name="darowa" score="1.000000" />
135
+ <word cat="HOTELS AND ACCOMMODATION" name="cwtc" score="1.000000" />
136
+ <word cat="HOTELS AND ACCOMMODATION" name="lodgenet" score="1.000000" />
137
+ <word cat="HOTELS AND ACCOMMODATION" name="capcount" score="1.000000" />
138
+ <word cat="HOTELS AND ACCOMMODATION" name="supertel" score="1.000000" />
139
+ <word cat="HOTELS AND ACCOMMODATION" name="hasson" score="1.000000" />
140
+ <word cat="HOTELS AND ACCOMMODATION" name="budgetel" score="1.000000" />
141
+ <word cat="HOTELS AND ACCOMMODATION" name="micromus" score="1.000000" />
142
+ <word cat="HOTELS AND ACCOMMODATION" name="amerihost" score="1.000000" />
143
+ <word cat="HOTELS AND ACCOMMODATION" name="resnet" score="1.000000" />
144
+ <word cat="HOTELS AND ACCOMMODATION" name="amerisuit" score="1.000000" />
145
+ <word cat="HOTELS AND ACCOMMODATION" name="boykin" score="1.000000" />
146
+ <word cat="HOTELS AND ACCOMMODATION" name="sunston" score="1.000000" />
147
+ <word cat="FERTILISERS" name="agrium" score="1.000000" />
148
+ <word cat="FERTILISERS" name="nittoh" score="1.000000" />
149
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="yoshinoya" score="1.000000" />
150
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="ihop" score="1.000000" />
151
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="cheesecak" score="1.000000" />
152
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="plenu" score="1.000000" />
153
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="denamerica" score="1.000000" />
154
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="roadhous" score="1.000000" />
155
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="bugaboo" score="1.000000" />
156
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="schoenbaum" score="1.000000" />
157
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="fairwood" score="1.000000" />
158
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="blimpi" score="1.000000" />
159
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="genki" score="1.000000" />
160
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="autogril" score="1.000000" />
161
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="jollibe" score="1.000000" />
162
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="fuddruck" score="1.000000" />
163
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="woodroast" score="1.000000" />
164
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="applebe" score="1.000000" />
165
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="shidax" score="1.000000" />
166
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="diedrich" score="1.000000" />
167
+ <word cat="RESTAURANTS, CAFES AND FAST FOOD" name="edosawa" score="1.000000" />
168
+ <word cat="PENSION FUNDS" name="provida" score="1.000000" />
169
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="securindo" score="1.000000" />
170
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="pendapatan" score="1.000000" />
171
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="superpundi" score="1.000000" />
172
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="intru" score="1.000000" />
173
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="reksa" score="1.000000" />
174
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="arthatama" score="1.000000" />
175
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="jayakarta" score="1.000000" />
176
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="eficorp" score="1.000000" />
177
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="obligasi" score="1.000000" />
178
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="indovest" score="1.000000" />
179
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="indosurya" score="1.000000" />
180
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="fleksi" score="1.000000" />
181
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="glg" score="1.000000" />
182
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="asjaya" score="1.000000" />
183
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="saham" score="1.000000" />
184
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="yudistira" score="1.000000" />
185
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="syariah" score="1.000000" />
186
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="tetap" score="1.000000" />
187
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="critef" score="1.000000" />
188
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="seruni" score="1.000000" />
189
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="mantap" score="1.000000" />
190
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="selara" score="1.000000" />
191
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="khatulistiwa" score="1.000000" />
192
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="supersaham" score="1.000000" />
193
+ <word cat="UNIT TRUSTS AND MUTUAL FUNDS" name="kombinasi" score="1.000000" />
194
+ <word cat="MEAT PROCESSING" name="ruokatalo" score="1.000000" />
195
+ <word cat="MEAT PROCESSING" name="itoham" score="1.000000" />
196
+ <word cat="RADAR AND ELECTRONIC EQUIPMENT" name="elsburi" score="1.000000" />
197
+ <word cat="RADAR AND ELECTRONIC EQUIPMENT" name="lowranc" score="1.000000" />
198
+ <word cat="RADAR AND ELECTRONIC EQUIPMENT" name="alphastar" score="1.000000" />
199
+ <word cat="PRINTING INKS" name="lawter" score="1.000000" />
200
+ <word cat="AIR TRANSPORT" name="amtran" score="1.000000" />
201
+ <word cat="AIR TRANSPORT" name="lhag" score="1.000000" />
202
+ <word cat="AIR TRANSPORT" name="grinstein" score="1.000000" />
203
+ <word cat="AIR TRANSPORT" name="leul" score="1.000000" />
204
+ <word cat="AIR TRANSPORT" name="vasp" score="1.000000" />
205
+ <word cat="AIR TRANSPORT" name="lcag" score="1.000000" />
206
+ <word cat="AIR TRANSPORT" name="rtkf" score="1.000000" />
207
+ <word cat="AIR TRANSPORT" name="mergeglob" score="1.000000" />
208
+ <word cat="AIR TRANSPORT" name="bawc" score="1.000000" />
209
+ <word cat="AIR TRANSPORT" name="neglin" score="1.000000" />
210
+ <word cat="AIR TRANSPORT" name="schorderet" score="1.000000" />
211
+ <word cat="AIR TRANSPORT" name="icaro" score="1.000000" />
212
+ <word cat="AIR TRANSPORT" name="cremad" score="1.000000" />
213
+ <word cat="AIR TRANSPORT" name="jugoslovenski" score="1.000000" />
214
+ <word cat="AIR TRANSPORT" name="cargolux" score="1.000000" />
215
+ <word cat="AIR TRANSPORT" name="airplu" score="1.000000" />
216
+ <word cat="AIR TRANSPORT" name="aerotransport" score="1.000000" />
217
+ <word cat="AIR TRANSPORT" name="gitner" score="1.000000" />
218
+ <word cat="AIR TRANSPORT" name="rftk" score="1.000000" />
219
+ <word cat="AIR TRANSPORT" name="citylin" score="1.000000" />
220
+ <word cat="AIR TRANSPORT" name="waybil" score="1.000000" />
221
+ <word cat="AIR TRANSPORT" name="snagfa" score="1.000000" />
222
+ <word cat="AIR TRANSPORT" name="okulov" score="1.000000" />
223
+ <word cat="AIR TRANSPORT" name="traxon" score="1.000000" />
224
+ <word cat="AIR TRANSPORT" name="mordvinov" score="1.000000" />
225
+ <word cat="AIR TRANSPORT" name="asselin" score="1.000000" />
226
+ <word cat="AIR TRANSPORT" name="amerijet" score="1.000000" />
227
+ <word cat="AIR TRANSPORT" name="schout" score="1.000000" />
228
+ <word cat="AIR TRANSPORT" name="uspnt" score="1.000000" />
229
+ <word cat="AIR TRANSPORT" name="cempella" score="1.000000" />
230
+ <word cat="AIR TRANSPORT" name="codeshar" score="1.000000" />
231
+ <word cat="AIR TRANSPORT" name="kreindler" score="1.000000" />
232
+ <word cat="AIR TRANSPORT" name="vlm" score="1.000000" />
233
+ <word cat="AIR TRANSPORT" name="sovich" score="1.000000" />
234
+ <word cat="AIR TRANSPORT" name="althen" score="1.000000" />
235
+ <word cat="AIR TRANSPORT" name="swisscargo" score="1.000000" />
236
+ <word cat="AIR TRANSPORT" name="ccair" score="1.000000" />
237
+ <word cat="AIR TRANSPORT" name="peb" score="1.000000" />
238
+ <word cat="AIR TRANSPORT" name="oaa" score="1.000000" />
239
+ <word cat="AIR TRANSPORT" name="transbrasil" score="1.000000" />
240
+ <word cat="AIR TRANSPORT" name="lhr" score="1.000000" />
241
+ <word cat="AIR TRANSPORT" name="jnb" score="1.000000" />
242
+ <word cat="AIR TRANSPORT" name="arpei" score="1.000000" />
243
+ <word cat="AIR TRANSPORT" name="westjet" score="1.000000" />
244
+ <word cat="AIR TRANSPORT" name="reutling" score="1.000000" />
245
+ <word cat="AIR TRANSPORT" name="luftverkehr" score="1.000000" />
246
+ <word cat="AIR TRANSPORT" name="winet" score="1.000000" />
247
+ <word cat="AIR TRANSPORT" name="kanatta" score="1.000000" />
248
+ <word cat="AIR TRANSPORT" name="kazair" score="1.000000" />
249
+ <word cat="AIR TRANSPORT" name="blacklock" score="1.000000" />
250
+ <word cat="AIR TRANSPORT" name="wellhun" score="1.000000" />
251
+ <word cat="AIR TRANSPORT" name="petn" score="1.000000" />
252
+ <word cat="AIR TRANSPORT" name="snpl" score="1.000000" />
253
+ <word cat="AIR TRANSPORT" name="hushkit" score="1.000000" />
254
+ <word cat="AIR TRANSPORT" name="airclaim" score="1.000000" />
255
+ <word cat="FORESTRY" name="hitcom" score="1.000000" />
256
+ <word cat="ORGANIC CHEMICALS INCL. PETROCHEMICALS" name="polyta" score="0.996721" />
257
+ <word cat="ORGANIC CHEMICALS INCL. PETROCHEMICALS" name="boak" score="1.000000" />
258
+ <word cat="ORGANIC CHEMICALS INCL. PETROCHEMICALS" name="catalytica" score="1.000000" />
259
+ <word cat="ORGANIC CHEMICALS INCL. PETROCHEMICALS" name="zaxi" score="1.000000" />
260
+ <word cat="INVESTMENT TRUSTS" name="capcount" score="1.000000" />
261
+ <word cat="INVESTMENT TRUSTS" name="angerstein" score="1.000000" />
262
+ <word cat="INVESTMENT TRUSTS" name="wellsford" score="1.000000" />
263
+ <word cat="INVESTMENT TRUSTS" name="equitilink" score="0.993939" />
264
+ <word cat="INVESTMENT TRUSTS" name="thornburg" score="1.000000" />
265
+ <word cat="INVESTMENT TRUSTS" name="micromus" score="1.000000" />
266
+ <word cat="INVESTMENT TRUSTS" name="glimcher" score="1.000000" />
267
+ <word cat="INVESTMENT TRUSTS" name="criimi" score="1.000000" />
268
+ <word cat="INVESTMENT TRUSTS" name="macerich" score="1.000000" />
269
+ <word cat="INVESTMENT TRUSTS" name="shurgard" score="1.000000" />
270
+ <word cat="INVESTMENT TRUSTS" name="carramerica" score="1.000000" />
271
+ <word cat="INVESTMENT TRUSTS" name="reckson" score="1.000000" />
272
+ <word cat="INVESTMENT TRUSTS" name="newsweb" score="1.000000" />
273
+ <word cat="INVESTMENT TRUSTS" name="vastn" score="1.000000" />
274
+ <word cat="INVESTMENT TRUSTS" name="jdn" score="1.000000" />
275
+ <word cat="INVESTMENT TRUSTS" name="multistack" score="1.000000" />
276
+ <word cat="INVESTMENT TRUSTS" name="spieker" score="1.000000" />
277
+ <word cat="INVESTMENT TRUSTS" name="amli" score="1.000000" />
278
+ <word cat="INVESTMENT TRUSTS" name="biotal" score="1.000000" />
279
+ <word cat="INVESTMENT TRUSTS" name="cwm" score="1.000000" />
280
+ <word cat="INVESTMENT TRUSTS" name="evenbrook" score="1.000000" />
281
+ <word cat="INVESTMENT TRUSTS" name="herro" score="1.000000" />
282
+ <word cat="PAPER AND BOARD CONVERSION" name="boxmor" score="1.000000" />
283
+ <word cat="PAPER AND BOARD CONVERSION" name="urom" score="1.000000" />
284
+ <word cat="PAPER AND BOARD CONVERSION" name="aptargroup" score="1.000000" />
285
+ <word cat="PAPER AND BOARD CONVERSION" name="empaqu" score="1.000000" />
286
+ <word cat="PAPER AND BOARD CONVERSION" name="crisoba" score="1.000000" />
287
+ <word cat="PAPER AND BOARD CONVERSION" name="dryper" score="1.000000" />
288
+ <word cat="VENTURE CAPITAL" name="iddison" score="1.000000" />
289
+ <word cat="VENTURE CAPITAL" name="agab" score="1.000000" />
290
+ <word cat="VENTURE CAPITAL" name="dnib" score="1.000000" />
291
+ <word cat="COMMERCIAL VEHICLES" name="sharyo" score="1.000000" />
292
+ <word cat="PASSENGER CARS" name="autobianchi" score="1.000000" />
293
+ <word cat="PASSENGER CARS" name="wavrin" score="1.000000" />
294
+ <word cat="PASSENGER CARS" name="pininfarina" score="1.000000" />
295
+ <word cat="PASSENGER CARS" name="wiedek" score="1.000000" />
296
+ <word cat="PASSENGER CARS" name="coachmen" score="1.000000" />
297
+ <word cat="PASSENGER CARS" name="starcraft" score="1.000000" />
298
+ <word cat="PASSENGER CARS" name="unra" score="1.000000" />
299
+ <word cat="PASSENGER CARS" name="riutta" score="1.000000" />
300
+ <word cat="PASSENGER CARS" name="catera" score="1.000000" />
301
+ <word cat="PASSENGER CARS" name="robinet" score="1.000000" />
302
+ <word cat="PASSENGER CARS" name="paefgen" score="1.000000" />
303
+ <word cat="PASSENGER CARS" name="otosan" score="1.000000" />
304
+ <word cat="PASSENGER CARS" name="valad" score="1.000000" />
305
+ <word cat="PASSENGER CARS" name="minivehicl" score="1.000000" />
306
+ <word cat="PASSENGER CARS" name="onstar" score="1.000000" />
307
+ <word cat="PASSENGER CARS" name="mmta" score="1.000000" />
308
+ <word cat="PASSENGER CARS" name="jada" score="1.000000" />
309
+ <word cat="PASSENGER CARS" name="anfavea" score="1.000000" />
310
+ <word cat="PASSENGER CARS" name="bilstatistik" score="1.000000" />
311
+ <word cat="PASSENGER CARS" name="taschk" score="1.000000" />
312
+ <word cat="PASSENGER CARS" name="fcai" score="1.000000" />
313
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="omron" score="1.000000" />
314
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="ultratech" score="1.000000" />
315
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="esterlin" score="1.000000" />
316
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="transcrypt" score="1.000000" />
317
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="thermospectra" score="1.000000" />
318
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="tektronix" score="1.000000" />
319
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="ltx" score="1.000000" />
320
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="satcon" score="1.000000" />
321
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="keithlei" score="1.000000" />
322
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="voltek" score="1.000000" />
323
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="genrad" score="1.000000" />
324
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="instron" score="1.000000" />
325
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="nemic" score="1.000000" />
326
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="orbot" score="1.000000" />
327
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="viisag" score="1.000000" />
328
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="kollmorgen" score="1.000000" />
329
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="iteq" score="1.000000" />
330
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="kasuga" score="1.000000" />
331
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="microtest" score="1.000000" />
332
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="stavelei" score="1.000000" />
333
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="halma" score="1.000000" />
334
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="energoaparatura" score="1.000000" />
335
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="electrogla" score="1.000000" />
336
+ <word cat="ELECTRICAL INSTUMENTS, CONTROL SYSTEMS" name="tekelec" score="1.000000" />
337
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="spieker" score="1.000000" />
338
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="eficorp" score="1.000000" />
339
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="criimi" score="1.000000" />
340
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="compscript" score="1.000000" />
341
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="ibel" score="1.000000" />
342
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="thornburg" score="1.000000" />
343
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="equitilink" score="0.993939" />
344
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="asimco" score="1.000000" />
345
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="tetap" score="1.000000" />
346
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="whitefield" score="1.000000" />
347
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="arthatama" score="1.000000" />
348
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="securindo" score="1.000000" />
349
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="huvitusfond" score="1.000000" />
350
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="obligasi" score="1.000000" />
351
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="syariah" score="1.000000" />
352
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="multistack" score="1.000000" />
353
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="iddison" score="1.000000" />
354
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="angerstein" score="1.000000" />
355
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="capcount" score="1.000000" />
356
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="monadelph" score="1.000000" />
357
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="newsweb" score="1.000000" />
358
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="supersaham" score="1.000000" />
359
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="norvestia" score="1.000000" />
360
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="superpundi" score="1.000000" />
361
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="amli" score="1.000000" />
362
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="pendapatan" score="1.000000" />
363
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="yudistira" score="1.000000" />
364
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="agab" score="1.000000" />
365
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="afei" score="1.000000" />
366
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="djerriwarrh" score="1.000000" />
367
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="dnib" score="1.000000" />
368
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="bankar" score="1.000000" />
369
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="milkirk" score="1.000000" />
370
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="macerich" score="1.000000" />
371
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="shurgard" score="1.000000" />
372
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="yse" score="1.000000" />
373
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="vastn" score="1.000000" />
374
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="jayakarta" score="1.000000" />
375
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="glimcher" score="1.000000" />
376
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="korona" score="1.000000" />
377
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="seruni" score="1.000000" />
378
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="selara" score="1.000000" />
379
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="ectec" score="1.000000" />
380
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="picic" score="1.000000" />
381
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="khatulistiwa" score="1.000000" />
382
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="horejsi" score="1.000000" />
383
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="jdn" score="1.000000" />
384
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="kombinasi" score="1.000000" />
385
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="glg" score="1.000000" />
386
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="provida" score="1.000000" />
387
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="intru" score="1.000000" />
388
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="cwm" score="1.000000" />
389
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="reckson" score="1.000000" />
390
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="indosurya" score="1.000000" />
391
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="wellsford" score="1.000000" />
392
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="mantap" score="1.000000" />
393
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="saham" score="1.000000" />
394
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="herro" score="1.000000" />
395
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="umbono" score="1.000000" />
396
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="asjaya" score="1.000000" />
397
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="fleksi" score="1.000000" />
398
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="indovest" score="1.000000" />
399
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="biotal" score="1.000000" />
400
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="micromus" score="1.000000" />
401
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="lemarn" score="1.000000" />
402
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="carramerica" score="1.000000" />
403
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="critef" score="1.000000" />
404
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="reksa" score="1.000000" />
405
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="powierniczych" score="1.000000" />
406
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="lemvest" score="1.000000" />
407
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="choiseul" score="1.000000" />
408
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="waiviata" score="1.000000" />
409
+ <word cat="TRUSTS, SECURITIES INVESTMENT" name="evenbrook" score="1.000000" />
410
+ <word cat="EXTRACTION OF MINERALS" name="kdc" score="1.000000" />
411
+ <word cat="EXTRACTION OF MINERALS" name="quarrier" score="1.000000" />
412
+ <word cat="EXTRACTION OF MINERALS" name="moonston" score="1.000000" />
413
+ <word cat="EXTRACTION OF MINERALS" name="moonstar" score="1.000000" />
414
+ <word cat="EXTRACTION OF MINERALS" name="marcorp" score="1.000000" />
415
+ <word cat="EXTRACTION OF MINERALS" name="minaco" score="1.000000" />
416
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="intro" score="1.000000" />
417
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="naschek" score="1.000000" />
418
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="quadrum" score="1.000000" />
419
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="hannoverisch" score="1.000000" />
420
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="rheinboden" score="1.000000" />
421
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="jdb" score="1.000000" />
422
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="schiffsbank" score="1.000000" />
423
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="jcg" score="1.000000" />
424
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="ffy" score="1.000000" />
425
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="crv" score="1.000000" />
426
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="mego" score="1.000000" />
427
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="contifinanci" score="1.000000" />
428
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="depfa" score="1.000000" />
429
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="newcourt" score="1.000000" />
430
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="bancor" score="1.000000" />
431
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="firstfeder" score="1.000000" />
432
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="groszek" score="1.000000" />
433
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="aapr" score="1.000000" />
434
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="firstplu" score="1.000000" />
435
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="bsoc" score="1.000000" />
436
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="killing" score="1.000000" />
437
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="autobond" score="1.000000" />
438
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="rinehart" score="1.000000" />
439
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="sbab" score="1.000000" />
440
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="nichiboshin" score="1.000000" />
441
+ <word cat="NON-BANK CREDIT INSTITUTIONS" name="cadtic" score="1.000000" />
442
+ <word cat="TEXTILE MACHINERY" name="janom" score="1.000000" />
443
+ <word cat="TEXTILE MACHINERY" name="tsudakoma" score="1.000000" />
444
+ <word cat="TEXTILE MACHINERY" name="tapistron" score="1.000000" />
445
+ <word cat="PAINTS" name="tencel" score="1.000000" />
446
+ <word cat="PAINTS" name="atomix" score="1.000000" />
447
+ <word cat="PAINTS" name="minwax" score="1.000000" />
448
+ <word cat="PAINTS" name="powdertech" score="1.000000" />
449
+ <word cat="PAINTS" name="ohka" score="1.000000" />
450
+ <word cat="GLASS FIBRE" name="hiner" score="1.000000" />
451
+ <word cat="LEATHER AND LEATHER GOODS" name="dragonfield" score="1.000000" />
452
+ <word cat="LEATHER AND LEATHER GOODS" name="melx" score="1.000000" />
453
+ <word cat="LEATHER AND LEATHER GOODS" name="chemiskor" score="1.000000" />
454
+ <word cat="SEWAGE DISPOSAL" name="corrpro" score="1.000000" />
455
+ <word cat="INORGANIC CHEMICALS" name="tayca" score="1.000000" />
456
+ <word cat="INORGANIC CHEMICALS" name="hakusui" score="1.000000" />
457
+ <word cat="INORGANIC CHEMICALS" name="toagosei" score="1.000000" />
458
+ <word cat="SPECIALIST STORES" name="inacom" score="1.000000" />
459
+ <word cat="SPECIALIST STORES" name="opsm" score="1.000000" />
460
+ <word cat="SPECIALIST STORES" name="katsurao" score="1.000000" />
461
+ <word cat="SPECIALIST STORES" name="autozon" score="1.000000" />
462
+ <word cat="SPECIALIST STORES" name="suzutan" score="1.000000" />
463
+ <word cat="SPECIALIST STORES" name="alrenco" score="1.000000" />
464
+ <word cat="SPECIALIST STORES" name="botanika" score="1.000000" />
465
+ <word cat="SPECIALIST STORES" name="shimamura" score="1.000000" />
466
+ <word cat="SPECIALIST STORES" name="heilig" score="1.000000" />
467
+ <word cat="SPECIALIST STORES" name="reiki" score="1.000000" />
468
+ <word cat="SPECIALIST STORES" name="ganto" score="1.000000" />
469
+ <word cat="SPECIALIST STORES" name="matsuyadenki" score="1.000000" />
470
+ <word cat="SPECIALIST STORES" name="kojitu" score="1.000000" />
471
+ <word cat="SPECIALIST STORES" name="mutow" score="1.000000" />
472
+ <word cat="SPECIALIST STORES" name="supercut" score="1.000000" />
473
+ <word cat="SPECIALIST STORES" name="halpin" score="1.000000" />
474
+ <word cat="SPECIALIST STORES" name="suzui" score="1.000000" />
475
+ <word cat="SPECIALIST STORES" name="successori" score="1.000000" />
476
+ <word cat="SPECIALIST STORES" name="shinseido" score="1.000000" />
477
+ <word cat="SPECIALIST STORES" name="stanhom" score="1.000000" />
478
+ <word cat="SPECIALIST STORES" name="senshukai" score="1.000000" />
479
+ <word cat="SPECIALIST STORES" name="komeri" score="1.000000" />
480
+ <word cat="SLAUGHTERHOUSES AND MEAT PROCESSING" name="miesniek" score="1.000000" />
481
+ <word cat="TELEPHONE EQUIPMENT" name="telid" score="1.000000" />
482
+ <word cat="TELEPHONE EQUIPMENT" name="verilink" score="1.000000" />
483
+ <word cat="TELEPHONE EQUIPMENT" name="lxe" score="1.000000" />
484
+ <word cat="TELEPHONE EQUIPMENT" name="cowel" score="1.000000" />
485
+ <word cat="TELEPHONE EQUIPMENT" name="mosaix" score="1.000000" />
486
+ <word cat="TELEPHONE EQUIPMENT" name="datakei" score="1.000000" />
487
+ <word cat="TELEPHONE EQUIPMENT" name="vtel" score="1.000000" />
488
+ <word cat="TELEPHONE EQUIPMENT" name="mitel" score="1.000000" />
489
+ <word cat="GAS PRODUCTION" name="keyspan" score="1.000000" />
490
+ <word cat="GAS PRODUCTION" name="rioga" score="1.000000" />
491
+ <word cat="GAS PRODUCTION" name="teja" score="1.000000" />
492
+ <word cat="GAS PRODUCTION" name="karachaganak" score="1.000000" />
493
+ <word cat="GAS PRODUCTION" name="distrigaz" score="1.000000" />
494
+ <word cat="GAS PRODUCTION" name="saibu" score="1.000000" />
495
+ <word cat="GAS PRODUCTION" name="comga" score="1.000000" />
496
+ <word cat="GAS PRODUCTION" name="ceg" score="1.000000" />
497
+ <word cat="GAS PRODUCTION" name="wicor" score="1.000000" />
498
+ <word cat="GAS PRODUCTION" name="atmo" score="1.000000" />
499
+ <word cat="GAS PRODUCTION" name="nicor" score="1.000000" />
500
+ <word cat="GAS PRODUCTION" name="socalga" score="1.000000" />
501
+ <word cat="GAS PRODUCTION" name="dekatherm" score="1.000000" />
502
+ <word cat="GAS PRODUCTION" name="bleasel" score="1.000000" />
503
+ <word cat="GAS PRODUCTION" name="cilcorp" score="1.000000" />
504
+ <word cat="GAS PRODUCTION" name="koatsu" score="1.000000" />
505
+ <word cat="MEDICAL EQUIPMENT" name="kensei" score="1.000000" />
506
+ <word cat="MEDICAL EQUIPMENT" name="zynaxi" score="1.000000" />
507
+ <word cat="MEDICAL EQUIPMENT" name="fonar" score="1.000000" />
508
+ <word cat="MEDICAL EQUIPMENT" name="maxxim" score="1.000000" />
509
+ <word cat="MEDICAL EQUIPMENT" name="biom" score="1.000000" />
510
+ <word cat="MEDICAL EQUIPMENT" name="respiron" score="1.000000" />
511
+ <word cat="MEDICAL EQUIPMENT" name="endocar" score="1.000000" />
512
+ <word cat="MEDICAL EQUIPMENT" name="cardiogenesi" score="1.000000" />
513
+ <word cat="MEDICAL EQUIPMENT" name="acuson" score="1.000000" />
514
+ <word cat="MEDICAL EQUIPMENT" name="danek" score="1.000000" />
515
+ <word cat="MEDICAL EQUIPMENT" name="avecor" score="1.000000" />
516
+ <word cat="MEDICAL EQUIPMENT" name="femrx" score="1.000000" />
517
+ <word cat="MEDICAL EQUIPMENT" name="epix" score="1.000000" />
518
+ <word cat="MEDICAL EQUIPMENT" name="laparoscop" score="1.000000" />
519
+ <word cat="MEDICAL EQUIPMENT" name="ultron" score="1.000000" />
520
+ <word cat="MEDICAL EQUIPMENT" name="ortholog" score="1.000000" />
521
+ <word cat="MEDICAL EQUIPMENT" name="acrom" score="1.000000" />
522
+ <word cat="MEDICAL EQUIPMENT" name="perclos" score="1.000000" />
523
+ <word cat="MEDICAL EQUIPMENT" name="hemagen" score="1.000000" />
524
+ <word cat="MEDICAL EQUIPMENT" name="empi" score="1.000000" />
525
+ <word cat="MEDICAL EQUIPMENT" name="kawasumi" score="1.000000" />
526
+ <word cat="MEDICAL EQUIPMENT" name="datascop" score="1.000000" />
527
+ <word cat="MEDICAL EQUIPMENT" name="voxel" score="1.000000" />
528
+ <word cat="MEDICAL EQUIPMENT" name="neogen" score="1.000000" />
529
+ <word cat="MEDICAL EQUIPMENT" name="vidam" score="1.000000" />
530
+ <word cat="MEDICAL EQUIPMENT" name="novametrix" score="1.000000" />
531
+ <word cat="MEDICAL EQUIPMENT" name="angeion" score="1.000000" />
532
+ <word cat="MEDICAL EQUIPMENT" name="gynecar" score="1.000000" />
533
+ <word cat="MEDICAL EQUIPMENT" name="depotech" score="1.000000" />
534
+ <word cat="MEDICAL EQUIPMENT" name="inbrand" score="1.000000" />
535
+ <word cat="MEDICAL EQUIPMENT" name="moyco" score="1.000000" />
536
+ <word cat="MEDICAL EQUIPMENT" name="sensicath" score="1.000000" />
537
+ <word cat="MEDICAL EQUIPMENT" name="cardiosystem" score="1.000000" />
538
+ <word cat="MEDICAL EQUIPMENT" name="vallen" score="1.000000" />
539
+ <word cat="MEDICAL EQUIPMENT" name="hogi" score="1.000000" />
540
+ <word cat="MEDICAL EQUIPMENT" name="neoprob" score="1.000000" />
541
+ <word cat="MEDICAL EQUIPMENT" name="nitinol" score="1.000000" />
542
+ <word cat="MEDICAL EQUIPMENT" name="digen" score="1.000000" />
543
+ <word cat="MEDICAL EQUIPMENT" name="trimedyn" score="1.000000" />
544
+ <word cat="MEDICAL EQUIPMENT" name="isolys" score="1.000000" />
545
+ <word cat="MEDICAL EQUIPMENT" name="autopap" score="1.000000" />
546
+ <word cat="MEDICAL EQUIPMENT" name="holog" score="1.000000" />
547
+ <word cat="MEDICAL EQUIPMENT" name="physiometrix" score="1.000000" />
548
+ <word cat="MEDICAL EQUIPMENT" name="bigmar" score="1.000000" />
549
+ <word cat="MEDICAL EQUIPMENT" name="diasi" score="1.000000" />
550
+ <word cat="MEDICAL EQUIPMENT" name="clintrial" score="1.000000" />
551
+ <word cat="MEDICAL EQUIPMENT" name="angiojet" score="1.000000" />
552
+ <word cat="MEDICAL EQUIPMENT" name="tecnol" score="1.000000" />
553
+ <word cat="MEDICAL EQUIPMENT" name="incontrol" score="1.000000" />
554
+ <word cat="MEDICAL EQUIPMENT" name="circon" score="1.000000" />
555
+ <word cat="MEDICAL EQUIPMENT" name="thrombectomi" score="1.000000" />
556
+ <word cat="MEDICAL EQUIPMENT" name="norland" score="1.000000" />
557
+ <word cat="MEDICAL EQUIPMENT" name="marquest" score="1.000000" />
558
+ <word cat="MEDICAL EQUIPMENT" name="haemonet" score="1.000000" />
559
+ <word cat="MEDICAL EQUIPMENT" name="laserscop" score="1.000000" />
560
+ <word cat="MEDICAL EQUIPMENT" name="electroscop" score="1.000000" />
561
+ <word cat="MEDICAL EQUIPMENT" name="criticar" score="1.000000" />
562
+ <word cat="MEDICAL EQUIPMENT" name="lasersight" score="1.000000" />
563
+ <word cat="MEDICAL EQUIPMENT" name="cardiometr" score="1.000000" />
564
+ <word cat="MEDICAL EQUIPMENT" name="xome" score="1.000000" />
565
+ <word cat="MEDICAL EQUIPMENT" name="dentspli" score="1.000000" />
566
+ <word cat="MEDICAL EQUIPMENT" name="biomet" score="1.000000" />
567
+ <word cat="MEDICAL EQUIPMENT" name="polymedica" score="1.000000" />
568
+ <word cat="MEDICAL EQUIPMENT" name="malachi" score="1.000000" />
569
+ <word cat="MEDICAL EQUIPMENT" name="neopath" score="1.000000" />
570
+ <word cat="MEDICAL EQUIPMENT" name="spectrasci" score="1.000000" />
571
+ <word cat="MEDICAL EQUIPMENT" name="aradigm" score="1.000000" />
572
+ <word cat="MEDICAL EQUIPMENT" name="ethicon" score="1.000000" />
573
+ <word cat="MEDICAL EQUIPMENT" name="rehabilicar" score="1.000000" />
574
+ <word cat="MEDICAL EQUIPMENT" name="endoson" score="1.000000" />
575
+ <word cat="MEDICAL EQUIPMENT" name="invacar" score="0.994286" />
576
+ <word cat="MEDICAL EQUIPMENT" name="spectranet" score="1.000000" />
577
+ <word cat="MEDICAL EQUIPMENT" name="adac" score="1.000000" />
578
+ <word cat="MEDICAL EQUIPMENT" name="heartstream" score="1.000000" />
579
+ <word cat="MEDICAL EQUIPMENT" name="danning" score="1.000000" />
580
+ <word cat="MEDICAL EQUIPMENT" name="urologix" score="1.000000" />
581
+ <word cat="MEDICAL EQUIPMENT" name="survivalink" score="1.000000" />
582
+ <word cat="MEDICAL EQUIPMENT" name="depocyt" score="1.000000" />
583
+ <word cat="MEDICAL EQUIPMENT" name="shofu" score="1.000000" />
584
+ <word cat="MEDICAL EQUIPMENT" name="teleflex" score="1.000000" />
585
+ <word cat="CONSTRUCTION OF BUILDINGS" name="satera" score="1.000000" />
586
+ <word cat="CONSTRUCTION OF BUILDINGS" name="rottlund" score="1.000000" />
587
+ <word cat="CONSTRUCTION OF BUILDINGS" name="kanzai" score="1.000000" />
588
+ <word cat="CONSTRUCTION OF BUILDINGS" name="bick" score="1.000000" />
589
+ <word cat="CONSTRUCTION OF BUILDINGS" name="chodai" score="1.000000" />
590
+ <word cat="CONSTRUCTION OF BUILDINGS" name="paliburg" score="1.000000" />
591
+ <word cat="CONSTRUCTION OF BUILDINGS" name="amcorp" score="1.000000" />
592
+ <word cat="CONSTRUCTION OF BUILDINGS" name="nvr" score="1.000000" />
593
+ <word cat="CONSTRUCTION OF BUILDINGS" name="entrepos" score="1.000000" />
594
+ <word cat="CONSTRUCTION OF BUILDINGS" name="sawako" score="1.000000" />
595
+ <word cat="CONSTRUCTION OF BUILDINGS" name="gnomon" score="1.000000" />
596
+ <word cat="CONSTRUCTION OF BUILDINGS" name="themeliodomi" score="1.000000" />
597
+ <word cat="CONSTRUCTION OF BUILDINGS" name="gmd" score="1.000000" />
598
+ <word cat="CONSTRUCTION OF BUILDINGS" name="kabuto" score="1.000000" />
599
+ <word cat="CONSTRUCTION OF BUILDINGS" name="perini" score="1.000000" />
600
+ <word cat="CONSTRUCTION OF BUILDINGS" name="kpbp" score="1.000000" />
601
+ <word cat="CONSTRUCTION OF BUILDINGS" name="sasakura" score="1.000000" />
602
+ <word cat="CONSTRUCTION OF BUILDINGS" name="jutaku" score="1.000000" />
603
+ <word cat="CONSTRUCTION OF BUILDINGS" name="micromus" score="1.000000" />
604
+ <word cat="CONSTRUCTION OF BUILDINGS" name="daikyo" score="1.000000" />
605
+ <word cat="CONSTRUCTION OF BUILDINGS" name="tysan" score="1.000000" />
606
+ <word cat="CONSTRUCTION OF BUILDINGS" name="iwerk" score="1.000000" />
607
+ <word cat="REFUSE DISPOSAL" name="stericycl" score="1.000000" />
608
+ <word cat="REFUSE DISPOSAL" name="enviroserv" score="1.000000" />
609
+ <word cat="REFUSE DISPOSAL" name="covol" score="1.000000" />
610
+ <word cat="REFUSE DISPOSAL" name="greenman" score="1.000000" />
611
+ <word cat="REFUSE DISPOSAL" name="kimmin" score="1.000000" />
612
+ <word cat="REFUSE DISPOSAL" name="allwast" score="1.000000" />
613
+ <word cat="REFUSE DISPOSAL" name="virogroup" score="1.000000" />
614
+ <word cat="REFUSE DISPOSAL" name="newpark" score="1.000000" />
615
+ <word cat="BASIC INDUSTRIAL CHEMICALS" name="boshart" score="1.000000" />
616
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="brpm" score="1.000000" />
617
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="matoso" score="1.000000" />
618
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="silvermin" score="1.000000" />
619
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="itausa" score="1.000000" />
620
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="hual" score="1.000000" />
621
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="kelanama" score="1.000000" />
622
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="intermet" score="1.000000" />
623
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="klipton" score="1.000000" />
624
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="aspoyhtyma" score="1.000000" />
625
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="panafieu" score="1.000000" />
626
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="containerlin" score="1.000000" />
627
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="lassila" score="1.000000" />
628
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="grana" score="1.000000" />
629
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="valcor" score="1.000000" />
630
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="unicem" score="1.000000" />
631
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="winkelhaak" score="1.000000" />
632
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="chromalloi" score="1.000000" />
633
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="sequa" score="1.000000" />
634
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="valhi" score="1.000000" />
635
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="alcom" score="1.000000" />
636
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="tikanoja" score="1.000000" />
637
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="trindel" score="1.000000" />
638
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="konzum" score="1.000000" />
639
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="seillier" score="1.000000" />
640
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="fimeus" score="1.000000" />
641
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="manvil" score="1.000000" />
642
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="thyssenga" score="1.000000" />
643
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="hillenbrand" score="1.000000" />
644
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="mouri" score="1.000000" />
645
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="medo" score="1.000000" />
646
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="izuhakon" score="1.000000" />
647
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="stic" score="1.000000" />
648
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="penwest" score="1.000000" />
649
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="antah" score="1.000000" />
650
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="bodson" score="1.000000" />
651
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="heiton" score="1.000000" />
652
+ <word cat="DIVERSIFIED HOLDING COMPANIES" name="lisheen" score="1.000000" />
653
+ <word cat="ACCOUNTANCY AND AUDITING" name="softnet" score="1.000000" />
654
+ <word cat="ACCOUNTANCY AND AUDITING" name="avitar" score="1.000000" />
655
+ <word cat="PETROLEUM AND TreatURAL GAS" name="schwing" score="1.000000" />
656
+ <word cat="PETROLEUM AND TreatURAL GAS" name="jorex" score="1.000000" />
657
+ <word cat="PETROLEUM AND TreatURAL GAS" name="ieoc" score="1.000000" />
658
+ <word cat="PETROLEUM AND TreatURAL GAS" name="leonardit" score="1.000000" />
659
+ <word cat="PETROLEUM AND TreatURAL GAS" name="nelayan" score="1.000000" />
660
+ <word cat="PETROLEUM AND TreatURAL GAS" name="limn" score="1.000000" />
661
+ <word cat="PETROLEUM AND TreatURAL GAS" name="tordi" score="1.000000" />
662
+ <word cat="PETROLEUM AND TreatURAL GAS" name="coplex" score="1.000000" />
663
+ <word cat="PETROLEUM AND TreatURAL GAS" name="karnali" score="1.000000" />
664
+ <word cat="PETROLEUM AND TreatURAL GAS" name="opuc" score="1.000000" />
665
+ <word cat="PETROLEUM AND TreatURAL GAS" name="toreador" score="1.000000" />
666
+ <word cat="PETROLEUM AND TreatURAL GAS" name="cnooc" score="1.000000" />
667
+ <word cat="PETROLEUM AND TreatURAL GAS" name="pttep" score="1.000000" />
668
+ <word cat="PETROLEUM AND TreatURAL GAS" name="whipkei" score="1.000000" />
669
+ <word cat="PETROLEUM AND TreatURAL GAS" name="yetagun" score="1.000000" />
670
+ <word cat="PETROLEUM AND TreatURAL GAS" name="draupner" score="1.000000" />
671
+ <word cat="PETROLEUM AND TreatURAL GAS" name="chauvco" score="1.000000" />
672
+ <word cat="PETROLEUM AND TreatURAL GAS" name="enex" score="1.000000" />
673
+ <word cat="PETROLEUM AND TreatURAL GAS" name="kemcor" score="1.000000" />
674
+ <word cat="PETROLEUM AND TreatURAL GAS" name="wapet" score="1.000000" />
675
+ <word cat="PETROLEUM AND TreatURAL GAS" name="urdinola" score="1.000000" />
676
+ <word cat="PETROLEUM AND TreatURAL GAS" name="snamprogetti" score="1.000000" />
677
+ <word cat="PETROLEUM AND TreatURAL GAS" name="aardoli" score="1.000000" />
678
+ <word cat="PETROLEUM AND TreatURAL GAS" name="denburi" score="1.000000" />
679
+ <word cat="PETROLEUM AND TreatURAL GAS" name="helmerich" score="1.000000" />
680
+ <word cat="PETROLEUM AND TreatURAL GAS" name="viosca" score="1.000000" />
681
+ <word cat="PETROLEUM AND TreatURAL GAS" name="xplor" score="1.000000" />
682
+ <word cat="PETROLEUM AND TreatURAL GAS" name="alanco" score="1.000000" />
683
+ <word cat="PETROLEUM AND TreatURAL GAS" name="yaloveha" score="1.000000" />
684
+ <word cat="PETROLEUM AND TreatURAL GAS" name="alamco" score="1.000000" />
685
+ <word cat="PETROLEUM AND TreatURAL GAS" name="panaco" score="1.000000" />
686
+ <word cat="PETROLEUM AND TreatURAL GAS" name="japex" score="1.000000" />
687
+ <word cat="PETROLEUM AND TreatURAL GAS" name="ensco" score="1.000000" />
688
+ <word cat="PETROLEUM AND TreatURAL GAS" name="appea" score="1.000000" />
689
+ <word cat="PETROLEUM AND TreatURAL GAS" name="enerfin" score="1.000000" />
690
+ <word cat="PETROLEUM AND TreatURAL GAS" name="remp" score="1.000000" />
691
+ <word cat="PETROLEUM AND TreatURAL GAS" name="nzog" score="1.000000" />
692
+ <word cat="PETROLEUM AND TreatURAL GAS" name="durward" score="1.000000" />
693
+ <word cat="PETROLEUM AND TreatURAL GAS" name="boepd" score="1.000000" />
694
+ <word cat="PETROLEUM AND TreatURAL GAS" name="steihaug" score="1.000000" />
695
+ <word cat="PETROLEUM AND TreatURAL GAS" name="europip" score="1.000000" />
696
+ <word cat="PETROLEUM AND TreatURAL GAS" name="tyumenskaya" score="1.000000" />
697
+ <word cat="PETROLEUM AND TreatURAL GAS" name="socdet" score="1.000000" />
698
+ <word cat="PETROLEUM AND TreatURAL GAS" name="brida" score="1.000000" />
699
+ <word cat="PETROLEUM AND TreatURAL GAS" name="schibevaag" score="1.000000" />
700
+ <word cat="PETROLEUM AND TreatURAL GAS" name="patina" score="1.000000" />
701
+ <word cat="PETROLEUM AND TreatURAL GAS" name="grandpuit" score="1.000000" />
702
+ <word cat="PETROLEUM AND TreatURAL GAS" name="kaarsto" score="1.000000" />
703
+ <word cat="PETROLEUM AND TreatURAL GAS" name="kollsn" score="1.000000" />
704
+ <word cat="PETROLEUM AND TreatURAL GAS" name="seaunion" score="1.000000" />
705
+ <word cat="PETROLEUM AND TreatURAL GAS" name="enermark" score="1.000000" />
706
+ <word cat="PETROLEUM AND TreatURAL GAS" name="hugoton" score="1.000000" />
707
+ <word cat="PETROLEUM AND TreatURAL GAS" name="feyzin" score="1.000000" />
708
+ <word cat="PETROLEUM AND TreatURAL GAS" name="putilov" score="1.000000" />
709
+ <word cat="PETROLEUM AND TreatURAL GAS" name="deeptech" score="1.000000" />
710
+ <word cat="PETROLEUM AND TreatURAL GAS" name="abda" score="1.000000" />
711
+ <word cat="PETROLEUM AND TreatURAL GAS" name="otwai" score="1.000000" />
712
+ <word cat="PETROLEUM AND TreatURAL GAS" name="ngtl" score="1.000000" />
713
+ <word cat="PETROLEUM AND TreatURAL GAS" name="qarun" score="1.000000" />
714
+ <word cat="PETROLEUM AND TreatURAL GAS" name="bucke" score="1.000000" />
715
+ <word cat="PETROLEUM AND TreatURAL GAS" name="yme" score="1.000000" />
716
+ <word cat="PETROLEUM AND TreatURAL GAS" name="onako" score="1.000000" />
717
+ <word cat="PETROLEUM AND TreatURAL GAS" name="khalda" score="1.000000" />
718
+ <word cat="PETROLEUM AND TreatURAL GAS" name="xcl" score="1.000000" />
719
+ <word cat="PETROLEUM AND TreatURAL GAS" name="aviva" score="1.000000" />
720
+ <word cat="PETROLEUM AND TreatURAL GAS" name="tuer" score="1.000000" />
721
+ <word cat="PETROLEUM AND TreatURAL GAS" name="derr" score="1.000000" />
722
+ <word cat="PETROLEUM AND TreatURAL GAS" name="gnpc" score="1.000000" />
723
+ <word cat="PETROLEUM AND TreatURAL GAS" name="ula" score="1.000000" />
724
+ <word cat="PETROLEUM AND TreatURAL GAS" name="cordex" score="1.000000" />
725
+ <word cat="PETROLEUM AND TreatURAL GAS" name="intercoast" score="1.000000" />
726
+ <word cat="PETROLEUM AND TreatURAL GAS" name="funscap" score="1.000000" />
727
+ <word cat="PETROLEUM AND TreatURAL GAS" name="drillship" score="1.000000" />
728
+ <word cat="PETROLEUM AND TreatURAL GAS" name="petrocelt" score="1.000000" />
729
+ <word cat="PETROLEUM AND TreatURAL GAS" name="stockdraw" score="1.000000" />
730
+ <word cat="PETROLEUM AND TreatURAL GAS" name="mongstad" score="1.000000" />
731
+ <word cat="PETROLEUM AND TreatURAL GAS" name="costilla" score="1.000000" />
732
+ <word cat="PETROLEUM AND TreatURAL GAS" name="murzuk" score="1.000000" />
733
+ <word cat="PETROLEUM AND TreatURAL GAS" name="mandoki" score="1.000000" />
734
+ <word cat="PETROLEUM AND TreatURAL GAS" name="lodgepol" score="1.000000" />
735
+ <word cat="PETROLEUM AND TreatURAL GAS" name="vagit" score="1.000000" />
736
+ <word cat="PETROLEUM AND TreatURAL GAS" name="kapuni" score="1.000000" />
737
+ <word cat="PETROLEUM AND TreatURAL GAS" name="macculloch" score="1.000000" />
738
+ <word cat="PETROLEUM AND TreatURAL GAS" name="ecoga" score="1.000000" />
739
+ <word cat="PETROLEUM AND TreatURAL GAS" name="mtoe" score="1.000000" />
740
+ <word cat="PETROLEUM AND TreatURAL GAS" name="tgtl" score="1.000000" />
741
+ <word cat="PETROLEUM AND TreatURAL GAS" name="petrofield" score="1.000000" />
742
+ <word cat="PETROLEUM AND TreatURAL GAS" name="numac" score="1.000000" />
743
+ <word cat="PETROLEUM AND TreatURAL GAS" name="ftx" score="1.000000" />
744
+ <word cat="PETROLEUM AND TreatURAL GAS" name="ffk" score="1.000000" />
745
+ <word cat="PETROLEUM AND TreatURAL GAS" name="lufeng" score="1.000000" />
746
+ <word cat="PETROLEUM AND TreatURAL GAS" name="petsec" score="1.000000" />
747
+ <word cat="PETROLEUM AND TreatURAL GAS" name="camisea" score="1.000000" />
748
+ <word cat="PETROLEUM AND TreatURAL GAS" name="talysh" score="1.000000" />
749
+ <word cat="PETROLEUM AND TreatURAL GAS" name="pacalta" score="1.000000" />
750
+ <word cat="PETROLEUM AND TreatURAL GAS" name="midcoast" score="1.000000" />
751
+ <word cat="PETROLEUM AND TreatURAL GAS" name="transwest" score="1.000000" />
752
+ <word cat="PETROLEUM AND TreatURAL GAS" name="jungel" score="1.000000" />
753
+ <word cat="PETROLEUM AND TreatURAL GAS" name="karachaganak" score="1.000000" />
754
+ <word cat="PETROLEUM AND TreatURAL GAS" name="inpex" score="1.000000" />
755
+ <word cat="PETROLEUM AND TreatURAL GAS" name="sibirsko" score="1.000000" />
756
+ <word cat="PETROLEUM AND TreatURAL GAS" name="parkman" score="1.000000" />
757
+ <word cat="PETROLEUM AND TreatURAL GAS" name="rigel" score="1.000000" />
758
+ <word cat="PETROLEUM AND TreatURAL GAS" name="novaga" score="1.000000" />
759
+ <word cat="PETROLEUM AND TreatURAL GAS" name="snorr" score="1.000000" />
760
+ <word cat="PETROLEUM AND TreatURAL GAS" name="lilienth" score="1.000000" />
761
+ <word cat="PETROLEUM AND TreatURAL GAS" name="callon" score="1.000000" />
762
+ <word cat="PETROLEUM AND TreatURAL GAS" name="preussenelektra" score="1.000000" />
763
+ <word cat="PETROLEUM AND TreatURAL GAS" name="mangistaumunaigaz" score="1.000000" />
764
+ <word cat="PETROLEUM AND TreatURAL GAS" name="barauni" score="1.000000" />
765
+ <word cat="PETROLEUM AND TreatURAL GAS" name="aqazadeh" score="1.000000" />
766
+ <word cat="PETROLEUM AND TreatURAL GAS" name="macassa" score="1.000000" />
767
+ <word cat="PETROLEUM AND TreatURAL GAS" name="mbpd" score="1.000000" />
768
+ <word cat="PETROLEUM AND TreatURAL GAS" name="tuskar" score="1.000000" />
769
+ <word cat="PETROLEUM AND TreatURAL GAS" name="timbali" score="1.000000" />
770
+ <word cat="PETROLEUM AND TreatURAL GAS" name="bonrai" score="1.000000" />
771
+ <word cat="PETROLEUM AND TreatURAL GAS" name="chirag" score="1.000000" />
772
+ <word cat="PETROLEUM AND TreatURAL GAS" name="lenkoran" score="1.000000" />
773
+ <word cat="PETROLEUM AND TreatURAL GAS" name="harcor" score="1.000000" />
774
+ <word cat="PETROLEUM AND TreatURAL GAS" name="renno" score="1.000000" />
775
+ <word cat="PETROLEUM AND TreatURAL GAS" name="lowden" score="1.000000" />
776
+ <word cat="PETROLEUM AND TreatURAL GAS" name="kakap" score="1.000000" />
777
+ <word cat="PETROLEUM AND TreatURAL GAS" name="tullow" score="1.000000" />
778
+ <word cat="PETROLEUM AND TreatURAL GAS" name="brieant" score="1.000000" />
779
+ <word cat="PETROLEUM AND TreatURAL GAS" name="norfra" score="1.000000" />
780
+ <word cat="PETROLEUM AND TreatURAL GAS" name="digimu" score="1.000000" />
781
+ <word cat="PETROLEUM AND TreatURAL GAS" name="fard" score="1.000000" />
782
+ <word cat="PETROLEUM AND TreatURAL GAS" name="atrion" score="1.000000" />
783
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="tsx" score="1.000000" />
784
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="tsushinki" score="1.000000" />
785
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="martisdxx" score="1.000000" />
786
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="sparton" score="1.000000" />
787
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="maspro" score="1.000000" />
788
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="intellical" score="1.000000" />
789
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="votan" score="1.000000" />
790
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="geotel" score="1.000000" />
791
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="wittlin" score="1.000000" />
792
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="skybridg" score="1.000000" />
793
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="transcom" score="1.000000" />
794
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="pagemart" score="1.000000" />
795
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="osicom" score="1.000000" />
796
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="moscom" score="1.000000" />
797
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="denkoh" score="1.000000" />
798
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="periphon" score="1.000000" />
799
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="uniden" score="1.000000" />
800
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="molex" score="1.000000" />
801
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="spanlink" score="1.000000" />
802
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="kalov" score="1.000000" />
803
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="iwatsu" score="1.000000" />
804
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="brooktrout" score="1.000000" />
805
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="yaesu" score="1.000000" />
806
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="sanritsu" score="1.000000" />
807
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="orckit" score="1.000000" />
808
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="microdyn" score="1.000000" />
809
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="chyron" score="1.000000" />
810
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="telscap" score="1.000000" />
811
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="timeplex" score="1.000000" />
812
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="executon" score="1.000000" />
813
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="davox" score="1.000000" />
814
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="norstan" score="1.000000" />
815
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="yokowo" score="1.000000" />
816
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="virco" score="1.000000" />
817
+ <word cat="TELECOMMUNICATIONS EQUIPMENT" name="forval" score="1.000000" />
818
+ <word cat="INSURANCE BROKERS AND AGENTS" name="hilb" score="1.000000" />
819
+ <word cat="INSURANCE BROKERS AND AGENTS" name="ockham" score="1.000000" />
820
+ <word cat="INSURANCE BROKERS AND AGENTS" name="rogal" score="1.000000" />
821
+ <word cat="STEEL COLD ROLLING AND FORMING" name="huntco" score="1.000000" />
822
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="yamaka" score="1.000000" />
823
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="meitec" score="1.000000" />
824
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="nakamichi" score="1.000000" />
825
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="linotyp" score="1.000000" />
826
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="trima" score="1.000000" />
827
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="zvei" score="1.000000" />
828
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="industrieanlagenbau" score="1.000000" />
829
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="elamex" score="1.000000" />
830
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="accom" score="1.000000" />
831
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="elcoteq" score="1.000000" />
832
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="reptron" score="1.000000" />
833
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="fermont" score="1.000000" />
834
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="xeikon" score="1.000000" />
835
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="spectrian" score="1.000000" />
836
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="denpa" score="1.000000" />
837
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="karmazin" score="1.000000" />
838
+ <word cat="ELECTRICAL AND ELECTRONIC ENGINEERING" name="relpol" score="1.000000" />
839
+ <word cat="THEATRES AND LIVE ENTERTAINMENT VENUES" name="mountasia" score="1.000000" />
840
+ <word cat="BUSINESS AND MEDIA SERVICES" name="gakkan" score="1.000000" />
841
+ <word cat="BUSINESS AND MEDIA SERVICES" name="beauticontrol" score="1.000000" />
842
+ <word cat="BUSINESS AND MEDIA SERVICES" name="ciber" score="1.000000" />
843
+ <word cat="BUSINESS AND MEDIA SERVICES" name="adcorp" score="1.000000" />
844
+ <word cat="BUSINESS AND MEDIA SERVICES" name="norrel" score="1.000000" />
845
+ <word cat="BUSINESS AND MEDIA SERVICES" name="tanseisha" score="1.000000" />
846
+ <word cat="BUSINESS AND MEDIA SERVICES" name="ecco" score="1.000000" />
847
+ <word cat="BUSINESS AND MEDIA SERVICES" name="technihir" score="1.000000" />
848
+ <word cat="BUSINESS AND MEDIA SERVICES" name="payco" score="1.000000" />
849
+ <word cat="BUSINESS AND MEDIA SERVICES" name="uniforc" score="1.000000" />
850
+ <word cat="BUSINESS AND MEDIA SERVICES" name="damark" score="1.000000" />
851
+ <word cat="BUSINESS AND MEDIA SERVICES" name="biotal" score="1.000000" />
852
+ <word cat="BUSINESS AND MEDIA SERVICES" name="goldon" score="1.000000" />
853
+ <word cat="BUSINESS AND MEDIA SERVICES" name="teletech" score="1.000000" />
854
+ <word cat="BUSINESS AND MEDIA SERVICES" name="prosegur" score="1.000000" />
855
+ <word cat="BUSINESS AND MEDIA SERVICES" name="addvantag" score="1.000000" />
856
+ <word cat="BUSINESS AND MEDIA SERVICES" name="creyf" score="1.000000" />
857
+ <word cat="BUSINESS AND MEDIA SERVICES" name="safecard" score="1.000000" />
858
+ <word cat="BUSINESS AND MEDIA SERVICES" name="biken" score="1.000000" />
859
+ <word cat="BUSINESS AND MEDIA SERVICES" name="warrantech" score="1.000000" />
860
+ <word cat="BUSINESS AND MEDIA SERVICES" name="vincam" score="1.000000" />
861
+ <word cat="DOCUMENT COPYING AND DUPLICATING" name="lason" score="1.000000" />
862
+ <word cat="MARKET RESEARCH AND PUBLIC RELATIONS" name="bellsystem" score="1.000000" />
863
+ <word cat="MANAGEMENT CONSULTANTS" name="medquist" score="1.000000" />
864
+ <word cat="AIRCRAFT MAINTENANCE" name="haeco" score="1.000000" />
865
+ <word cat="HOUSEHOLD TEXTILES" name="roberd" score="1.000000" />
866
+ <word cat="BOOK PRINTING AND PUBLISHING" name="leefung" score="1.000000" />
867
+ <word cat="SPACECRAFT MANUFACTURING" name="orbcomm" score="1.000000" />
868
+ <word cat="AIRPORTS AND AIR SUPPORT SERVICES" name="hactl" score="1.000000" />
869
+ <word cat="AIRPORTS AND AIR SUPPORT SERVICES" name="aeroporti" score="1.000000" />
870
+ <word cat="AIRPORTS AND AIR SUPPORT SERVICES" name="muc" score="1.000000" />
871
+ <word cat="CHEMISTS AND DRUG STORES" name="healthrit" score="1.000000" />
872
+ <word cat="CHEMISTS AND DRUG STORES" name="proxym" score="1.000000" />
873
+ <word cat="INDUSTRIAL ELECTRICAL EQUIPMENT" name="kimmon" score="1.000000" />
874
+ <word cat="INDUSTRIAL ELECTRICAL EQUIPMENT" name="trikon" score="1.000000" />
875
+ <word cat="INDUSTRIAL ELECTRICAL EQUIPMENT" name="denyo" score="1.000000" />
876
+ <word cat="INDUSTRIAL ELECTRICAL EQUIPMENT" name="newcor" score="1.000000" />
877
+ <word cat="INDUSTRIAL ELECTRICAL EQUIPMENT" name="orii" score="1.000000" />
878
+ <word cat="INDUSTRIAL ELECTRICAL EQUIPMENT" name="tescon" score="1.000000" />
879
+ <word cat="CERAMIC PRODUCTS" name="boch" score="1.000000" />
880
+ <word cat="CERAMIC PRODUCTS" name="villeroi" score="1.000000" />
881
+ <word cat="CERAMIC PRODUCTS" name="tyk" score="1.000000" />
882
+ <word cat="CERAMIC PRODUCTS" name="konoshima" score="1.000000" />
883
+ <word cat="CERAMIC PRODUCTS" name="deroma" score="1.000000" />
884
+ <word cat="FISHING" name="riopesca" score="1.000000" />
885
+ <word cat="FISHING" name="hoko" score="1.000000" />
886
+ <word cat="FISHING" name="selonda" score="1.000000" />
887
+ <word cat="FISHING" name="yonkyu" score="1.000000" />
888
+ <word cat="FISHING" name="kyokuyo" score="1.000000" />
889
+ <word cat="FISHING" name="maruha" score="1.000000" />
890
+ <word cat="TELEVISION AND RADIO" name="telemundo" score="1.000000" />
891
+ <word cat="TELEVISION AND RADIO" name="cfcf" score="1.000000" />
892
+ <word cat="TELEVISION AND RADIO" name="audiolux" score="1.000000" />
893
+ <word cat="TELEVISION AND RADIO" name="ectec" score="1.000000" />
894
+ <word cat="COMPUTER SERVICES" name="kolowich" score="1.000000" />
895
+ <word cat="COMPUTER SERVICES" name="logica" score="1.000000" />
896
+ <word cat="COMPUTER SERVICES" name="netliv" score="1.000000" />
897
+ <word cat="COMPUTER SERVICES" name="decisionon" score="1.000000" />
898
+ <word cat="COMPUTER SERVICES" name="cyberguard" score="1.000000" />
899
+ <word cat="COMPUTER SERVICES" name="quickrespons" score="1.000000" />
900
+ <word cat="COMPUTER SERVICES" name="nstor" score="1.000000" />
901
+ <word cat="COMPUTER SERVICES" name="quadram" score="1.000000" />
902
+ <word cat="COMPUTER SERVICES" name="amnex" score="1.000000" />
903
+ <word cat="COMPUTER SERVICES" name="gmi" score="1.000000" />
904
+ <word cat="COMPUTER SERVICES" name="whittman" score="1.000000" />
905
+ <word cat="COMPUTER SERVICES" name="intelligroup" score="1.000000" />
906
+ <word cat="COMPUTER SERVICES" name="cerner" score="1.000000" />
907
+ <word cat="COMPUTER SERVICES" name="biotal" score="1.000000" />
908
+ <word cat="COMPUTER SERVICES" name="goldon" score="1.000000" />
909
+ <word cat="COMPUTER SERVICES" name="usweb" score="1.000000" />
910
+ <word cat="COMPUTER SERVICES" name="evenbrook" score="1.000000" />
911
+ <word cat="COMPUTER SERVICES" name="gensym" score="1.000000" />
912
+ <word cat="COMPUTER SERVICES" name="vanstar" score="1.000000" />
913
+ <word cat="COMPUTER SERVICES" name="anicom" score="1.000000" />
914
+ <word cat="COMPUTER SERVICES" name="strategia" score="1.000000" />
915
+ <word cat="SHIPBUILDING" name="navai" score="1.000000" />
916
+ <word cat="SHIPBUILDING" name="kepphil" score="1.000000" />
917
+ <word cat="SHIPBUILDING" name="namura" score="1.000000" />
918
+ <word cat="SHIPBUILDING" name="sut" score="1.000000" />
919
+ <word cat="SHIPBUILDING" name="ksrc" score="1.000000" />
920
+ <word cat="SHIPBUILDING" name="wellensiek" score="1.000000" />
921
+ <word cat="ANIMAL FEED" name="nosan" score="1.000000" />
922
+ <word cat="RESIDENTIAL REAL ESTATE BUYING, SELLING" name="withycomb" score="1.000000" />
923
+ <word cat="MINERAL PRODUCTS" name="insteel" score="1.000000" />
924
+ <word cat="MINERAL PRODUCTS" name="kingspan" score="1.000000" />
925
+ <word cat="MINERAL PRODUCTS" name="ibstock" score="1.000000" />
926
+ <word cat="MINERAL PRODUCTS" name="juken" score="1.000000" />
927
+ <word cat="MINERAL PRODUCTS" name="takiron" score="1.000000" />
928
+ <word cat="MINERAL PRODUCTS" name="godson" score="1.000000" />
929
+ <word cat="MINERAL PRODUCTS" name="kunimin" score="1.000000" />
930
+ <word cat="ELECTRICAL EQUIPMENT FOR VEHICLES" name="tallei" score="1.000000" />
931
+ <word cat="TELEVISION PROGRAMME PRODUCTION" name="noterman" score="1.000000" />
932
+ <word cat="WINE PRODUCTION" name="vinicola" score="1.000000" />
933
+ <word cat="WINE PRODUCTION" name="icewin" score="1.000000" />
934
+ <word cat="WINE PRODUCTION" name="cvne" score="1.000000" />
935
+ <word cat="RETAIL REAL ESTATE DEALING" name="capcount" score="1.000000" />
936
+ <word cat="RETAIL REAL ESTATE DEALING" name="chikagai" score="1.000000" />
937
+ <word cat="NEWSPAPER PRINTING AND PUBLISHING" name="arculu" score="1.000000" />
938
+ <word cat="NEWSPAPER PRINTING AND PUBLISHING" name="wattachak" score="1.000000" />
939
+ <word cat="NEWSPAPER PRINTING AND PUBLISHING" name="goldon" score="1.000000" />
940
+ <word cat="NEWSPAPER PRINTING AND PUBLISHING" name="trachtenberg" score="1.000000" />
941
+ <word cat="COMMERCIAL REAL ESTATE DEALING" name="mulialand" score="1.000000" />
942
+ <word cat="HOTELS AND CATERING" name="mefo" score="1.000000" />
943
+ <word cat="CABLE TELEVISION" name="micromus" score="1.000000" />
944
+ <word cat="CABLE TELEVISION" name="goldon" score="1.000000" />
945
+ <word cat="ALARMS AND SIGNALLING EQUIPMENT" name="nohmi" score="1.000000" />
946
+ <word cat="ALARMS AND SIGNALLING EQUIPMENT" name="bosai" score="1.000000" />
947
+ <word cat="ALARMS AND SIGNALLING EQUIPMENT" name="destron" score="1.000000" />
948
+ <word cat="ALARMS AND SIGNALLING EQUIPMENT" name="numerex" score="1.000000" />
949
+ <word cat="RADIO BROADCASTING" name="sfx" score="1.000000" />
950
+ <word cat="TELEVISION BROADCASTING" name="sistem" score="1.000000" />
951
+ <word cat="TELEVISION BROADCASTING" name="canedo" score="1.000000" />
952
+ <word cat="TELEVISION BROADCASTING" name="megamania" score="1.000000" />
953
+ <word cat="APPLICATIONS SOFTWARE" name="xox" score="1.000000" />
954
+ <word cat="APPLICATIONS SOFTWARE" name="ichat" score="1.000000" />
955
+ <word cat="APPLICATIONS SOFTWARE" name="metatool" score="1.000000" />
956
+ <word cat="APPLICATIONS SOFTWARE" name="netradio" score="1.000000" />
957
+ <word cat="APPLICATIONS SOFTWARE" name="tangram" score="1.000000" />
958
+ <word cat="APPLICATIONS SOFTWARE" name="staffwar" score="1.000000" />
959
+ <word cat="APPLICATIONS SOFTWARE" name="broadvis" score="1.000000" />
960
+ <word cat="APPLICATIONS SOFTWARE" name="wkdec" score="1.000000" />
961
+ <word cat="APPLICATIONS SOFTWARE" name="tecmo" score="1.000000" />
962
+ <word cat="APPLICATIONS SOFTWARE" name="eido" score="1.000000" />
963
+ <word cat="APPLICATIONS SOFTWARE" name="skiba" score="1.000000" />
964
+ <word cat="APPLICATIONS SOFTWARE" name="versant" score="1.000000" />
965
+ <word cat="APPLICATIONS SOFTWARE" name="infospac" score="1.000000" />
966
+ <word cat="APPLICATIONS SOFTWARE" name="filenet" score="1.000000" />
967
+ <word cat="APPLICATIONS SOFTWARE" name="spacetec" score="1.000000" />
968
+ <word cat="APPLICATIONS SOFTWARE" name="novonyx" score="1.000000" />
969
+ <word cat="APPLICATIONS SOFTWARE" name="idx" score="1.000000" />
970
+ <word cat="APPLICATIONS SOFTWARE" name="medicu" score="1.000000" />
971
+ <word cat="APPLICATIONS SOFTWARE" name="certicom" score="1.000000" />
972
+ <word cat="APPLICATIONS SOFTWARE" name="intranetwar" score="1.000000" />
973
+ <word cat="APPLICATIONS SOFTWARE" name="premeno" score="1.000000" />
974
+ <word cat="APPLICATIONS SOFTWARE" name="wonderwar" score="1.000000" />
975
+ <word cat="APPLICATIONS SOFTWARE" name="netdynam" score="1.000000" />
976
+ <word cat="APPLICATIONS SOFTWARE" name="onewav" score="1.000000" />
977
+ <word cat="APPLICATIONS SOFTWARE" name="logal" score="1.000000" />
978
+ <word cat="APPLICATIONS SOFTWARE" name="mapinfo" score="1.000000" />
979
+ <word cat="APPLICATIONS SOFTWARE" name="konami" score="1.000000" />
980
+ <word cat="APPLICATIONS SOFTWARE" name="syncroni" score="1.000000" />
981
+ <word cat="APPLICATIONS SOFTWARE" name="cogno" score="1.000000" />
982
+ <word cat="APPLICATIONS SOFTWARE" name="linkon" score="1.000000" />
983
+ <word cat="APPLICATIONS SOFTWARE" name="visigen" score="1.000000" />
984
+ <word cat="APPLICATIONS SOFTWARE" name="stac" score="1.000000" />
985
+ <word cat="APPLICATIONS SOFTWARE" name="cimatron" score="1.000000" />
986
+ <word cat="APPLICATIONS SOFTWARE" name="interleaf" score="1.000000" />
987
+ <word cat="APPLICATIONS SOFTWARE" name="isocor" score="1.000000" />
988
+ <word cat="APPLICATIONS SOFTWARE" name="spss" score="1.000000" />
989
+ <word cat="APPLICATIONS SOFTWARE" name="netsi" score="1.000000" />
990
+ <word cat="APPLICATIONS SOFTWARE" name="zuken" score="1.000000" />
991
+ <word cat="APPLICATIONS SOFTWARE" name="altri" score="1.000000" />
992
+ <word cat="APPLICATIONS SOFTWARE" name="starbas" score="1.000000" />
993
+ <word cat="APPLICATIONS SOFTWARE" name="surfwatch" score="1.000000" />
994
+ <word cat="APPLICATIONS SOFTWARE" name="datalogix" score="1.000000" />
995
+ <word cat="APPLICATIONS SOFTWARE" name="eltrax" score="1.000000" />
996
+ <word cat="APPLICATIONS SOFTWARE" name="mathsoft" score="1.000000" />
997
+ <word cat="APPLICATIONS SOFTWARE" name="parcplac" score="1.000000" />
998
+ <word cat="APPLICATIONS SOFTWARE" name="geowork" score="1.000000" />
999
+ <word cat="APPLICATIONS SOFTWARE" name="microleagu" score="1.000000" />
1000
+ <word cat="APPLICATIONS SOFTWARE" name="comshar" score="1.000000" />
1001
+ <word cat="APPLICATIONS SOFTWARE" name="accugraph" score="1.000000" />
1002
+ <word cat="APPLICATIONS SOFTWARE" name="holobyt" score="1.000000" />
1003
+ <word cat="APPLICATIONS SOFTWARE" name="softech" score="1.000000" />
1004
+ <word cat="APPLICATIONS SOFTWARE" name="autodesk" score="1.000000" />
1005
+ <word cat="APPLICATIONS SOFTWARE" name="kertzman" score="1.000000" />
1006
+ <word cat="APPLICATIONS SOFTWARE" name="questec" score="1.000000" />
1007
+ <word cat="APPLICATIONS SOFTWARE" name="netwar" score="1.000000" />
1008
+ <word cat="APPLICATIONS SOFTWARE" name="visio" score="1.000000" />
1009
+ <word cat="APPLICATIONS SOFTWARE" name="mapic" score="1.000000" />
1010
+ <word cat="APPLICATIONS SOFTWARE" name="vantiv" score="1.000000" />
1011
+ <word cat="APPLICATIONS SOFTWARE" name="intergraph" score="1.000000" />
1012
+ <word cat="APPLICATIONS SOFTWARE" name="computron" score="1.000000" />
1013
+ <word cat="SYSTEMS SOFTWARE" name="artisoft" score="1.000000" />
1014
+ <word cat="SYSTEMS SOFTWARE" name="vxtreme" score="1.000000" />
1015
+ <word cat="SYSTEMS SOFTWARE" name="xcellenet" score="1.000000" />
1016
+ <word cat="SYSTEMS SOFTWARE" name="herbold" score="1.000000" />
1017
+ <word cat="SYSTEMS SOFTWARE" name="compuwar" score="1.000000" />
1018
+ <word cat="SYSTEMS SOFTWARE" name="ascii" score="1.000000" />
1019
+ <word cat="SYSTEMS SOFTWARE" name="backoffic" score="1.000000" />
1020
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="gastec" score="1.000000" />
1021
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="ula" score="1.000000" />
1022
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="uzen" score="1.000000" />
1023
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="chellgren" score="1.000000" />
1024
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="ashrafi" score="1.000000" />
1025
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="allasia" score="1.000000" />
1026
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="goldon" score="1.000000" />
1027
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="greehei" score="1.000000" />
1028
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="durward" score="1.000000" />
1029
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="murzuk" score="1.000000" />
1030
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="hemminghau" score="1.000000" />
1031
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="gaulin" score="1.000000" />
1032
+ <word cat="PETROLEUM REFINING AND PROCESSING" name="huntwai" score="1.000000" />
1033
+ <word cat="PRINTING AND PUBLISHING" name="gakken" score="1.000000" />
1034
+ <word cat="PRINTING AND PUBLISHING" name="utusan" score="1.000000" />
1035
+ <word cat="PRINTING AND PUBLISHING" name="nissha" score="1.000000" />
1036
+ <word cat="PRINTING AND PUBLISHING" name="zenrin" score="1.000000" />
1037
+ <word cat="PRINTING AND PUBLISHING" name="watmough" score="1.000000" />
1038
+ <word cat="PRINTING AND PUBLISHING" name="lanacan" score="1.000000" />
1039
+ <word cat="PRINTING AND PUBLISHING" name="schadt" score="1.000000" />
1040
+ <word cat="PRINTING AND PUBLISHING" name="trachtenberg" score="1.000000" />
1041
+ <word cat="CONSTRUCTION EQUIPMENT HIRE" name="gecoss" score="1.000000" />
1042
+ <word cat="BUS AND COACH SERVICES" name="kwoon" score="1.000000" />
1043
+ <word cat="DEVELOPMENT BANKS OR FUNDS" name="groszek" score="1.000000" />
1044
+ <word cat="DEVELOPMENT BANKS OR FUNDS" name="jdb" score="1.000000" />
1045
+ <word cat="CIVIL AIRCRAFT MANUFACTURING" name="deley" score="1.000000" />
1046
+ <word cat="PULP" name="indorayon" score="1.000000" />
1047
+ <word cat="PAPER MANUFACTURING" name="molnlyck" score="1.000000" />
1048
+ <word cat="PAPER MANUFACTURING" name="chuetsu" score="1.000000" />
1049
+ <word cat="PAPER MANUFACTURING" name="sonoco" score="1.000000" />
1050
+ <word cat="PAPER MANUFACTURING" name="shiko" score="1.000000" />
1051
+ <word cat="PAPER MANUFACTURING" name="gascogn" score="1.000000" />
1052
+ <word cat="PAPER MANUFACTURING" name="jamont" score="1.000000" />
1053
+ <word cat="PAPER MANUFACTURING" name="kakoh" score="1.000000" />
1054
+ <word cat="PAPER MANUFACTURING" name="merfin" score="1.000000" />
1055
+ <word cat="PAPER MANUFACTURING" name="iggesund" score="1.000000" />
1056
+ <word cat="PAPER MANUFACTURING" name="nakabayashi" score="1.000000" />
1057
+ <word cat="PAPER MANUFACTURING" name="daio" score="1.000000" />
1058
+ <word cat="PAPER MANUFACTURING" name="furubayashi" score="1.000000" />
1059
+ <word cat="PAPER MANUFACTURING" name="tomoegawa" score="1.000000" />
1060
+ <word cat="PAPER MANUFACTURING" name="superbag" score="1.000000" />
1061
+ <word cat="PAPER MANUFACTURING" name="crisoba" score="1.000000" />
1062
+ <word cat="PAPER MANUFACTURING" name="shorewood" score="1.000000" />
1063
+ <word cat="PAPER MANUFACTURING" name="cellulosa" score="1.000000" />
1064
+ <word cat="PAPER MANUFACTURING" name="kawachiya" score="1.000000" />
1065
+ <word cat="PAPER MANUFACTURING" name="seishi" score="1.000000" />
1066
+ <word cat="PAPER MANUFACTURING" name="westvaco" score="1.000000" />
1067
+ <word cat="PAPER MANUFACTURING" name="aktiebolaget" score="1.000000" />
1068
+ <word cat="PAPER MANUFACTURING" name="clayoquot" score="1.000000" />
1069
+ <word cat="PAPER MANUFACTURING" name="foong" score="1.000000" />
1070
+ <word cat="PAPER MANUFACTURING" name="bowat" score="1.000000" />
1071
+ <word cat="PAPER MANUFACTURING" name="hershaft" score="1.000000" />
1072
+ <word cat="MORTGAGE INSTITUTIONS" name="aapr" score="1.000000" />
1073
+ <word cat="MORTGAGE INSTITUTIONS" name="bsoc" score="1.000000" />
1074
+ <word cat="MORTGAGE INSTITUTIONS" name="bancor" score="1.000000" />
1075
+ <word cat="MORTGAGE INSTITUTIONS" name="depfa" score="1.000000" />
1076
+ <word cat="MORTGAGE INSTITUTIONS" name="firstfeder" score="1.000000" />
1077
+ <word cat="MORTGAGE INSTITUTIONS" name="intro" score="1.000000" />
1078
+ <word cat="MORTGAGE INSTITUTIONS" name="sbab" score="1.000000" />
1079
+ <word cat="MORTGAGE INSTITUTIONS" name="rheinboden" score="1.000000" />
1080
+ <word cat="MORTGAGE INSTITUTIONS" name="killing" score="1.000000" />
1081
+ <word cat="MORTGAGE INSTITUTIONS" name="schiffsbank" score="1.000000" />
1082
+ <word cat="MORTGAGE INSTITUTIONS" name="rinehart" score="1.000000" />
1083
+ <word cat="MORTGAGE INSTITUTIONS" name="contifinanci" score="1.000000" />
1084
+ <word cat="MORTGAGE INSTITUTIONS" name="naschek" score="1.000000" />
1085
+ <word cat="MORTGAGE INSTITUTIONS" name="hannoverisch" score="1.000000" />
1086
+ <word cat="SAVINGS BANKS" name="greenpoint" score="1.000000" />
1087
+ <word cat="SAVINGS BANKS" name="carig" score="1.000000" />
1088
+ <word cat="SECONDARY MEMORY STORES" name="matridigm" score="1.000000" />
1089
+ <word cat="SECONDARY MEMORY STORES" name="streamlog" score="1.000000" />
1090
+ <word cat="SECONDARY MEMORY STORES" name="shugart" score="1.000000" />
1091
+ <word cat="SECONDARY MEMORY STORES" name="zitel" score="1.000000" />
1092
+ <word cat="SECONDARY MEMORY STORES" name="sandisk" score="1.000000" />
1093
+ <word cat="SECONDARY MEMORY STORES" name="storagetek" score="1.000000" />
1094
+ <word cat="COMMERCIAL BANKING" name="bahagia" score="1.000000" />
1095
+ <word cat="COMMERCIAL BANKING" name="sdbo" score="1.000000" />
1096
+ <word cat="COMMERCIAL BANKING" name="scmb" score="1.000000" />
1097
+ <word cat="COMMERCIAL BANKING" name="synovu" score="1.000000" />
1098
+ <word cat="COMMERCIAL BANKING" name="landesrentenbank" score="1.000000" />
1099
+ <word cat="COMMERCIAL BANKING" name="epfr" score="1.000000" />
1100
+ <word cat="COMMERCIAL BANKING" name="rupf" score="1.000000" />
1101
+ <word cat="COMMERCIAL BANKING" name="infisa" score="1.000000" />
1102
+ <word cat="COMMERCIAL BANKING" name="rolo" score="1.000000" />
1103
+ <word cat="COMMERCIAL BANKING" name="rentenbank" score="1.000000" />
1104
+ <word cat="COMMERCIAL BANKING" name="haeni" score="1.000000" />
1105
+ <word cat="COMMERCIAL BANKING" name="bankunit" score="1.000000" />
1106
+ <word cat="COMMERCIAL BANKING" name="polsko" score="1.000000" />
1107
+ <word cat="COMMERCIAL BANKING" name="fallbrook" score="1.000000" />
1108
+ <word cat="COMMERCIAL BANKING" name="maapank" score="1.000000" />
1109
+ <word cat="COMMERCIAL BANKING" name="bbbpi" score="1.000000" />
1110
+ <word cat="COMMERCIAL BANKING" name="klci" score="1.000000" />
1111
+ <word cat="COMMERCIAL BANKING" name="kiyo" score="1.000000" />
1112
+ <word cat="COMMERCIAL BANKING" name="becklei" score="1.000000" />
1113
+ <word cat="COMMERCIAL BANKING" name="michinoku" score="1.000000" />
1114
+ <word cat="COMMERCIAL BANKING" name="landwirtschaftlich" score="1.000000" />
1115
+ <word cat="COMMERCIAL BANKING" name="banpai" score="1.000000" />
1116
+ <word cat="COMMERCIAL BANKING" name="gdyni" score="1.000000" />
1117
+ <word cat="COMMERCIAL BANKING" name="bankorp" score="1.000000" />
1118
+ <word cat="COMMERCIAL BANKING" name="sietsma" score="1.000000" />
1119
+ <word cat="COMMERCIAL BANKING" name="kassenobligationen" score="1.000000" />
1120
+ <word cat="COMMERCIAL BANKING" name="joyo" score="1.000000" />
1121
+ <word cat="COMMERCIAL BANKING" name="fukutoku" score="1.000000" />
1122
+ <word cat="COMMERCIAL BANKING" name="gurnsei" score="1.000000" />
1123
+ <word cat="COMMERCIAL BANKING" name="drabb" score="1.000000" />
1124
+ <word cat="COMMERCIAL BANKING" name="southfirst" score="1.000000" />
1125
+ <word cat="COMMERCIAL BANKING" name="jeffbank" score="1.000000" />
1126
+ <word cat="COMMERCIAL BANKING" name="biwako" score="1.000000" />
1127
+ <word cat="COMMERCIAL BANKING" name="pierwszi" score="1.000000" />
1128
+ <word cat="COMMERCIAL BANKING" name="fimagest" score="1.000000" />
1129
+ <word cat="COMMERCIAL BANKING" name="polsc" score="1.000000" />
1130
+ <word cat="COMMERCIAL BANKING" name="mollovbank" score="1.000000" />
1131
+ <word cat="COMMERCIAL BANKING" name="westerf" score="1.000000" />
1132
+ <word cat="COMMERCIAL BANKING" name="unionbanc" score="1.000000" />
1133
+ <word cat="COMMERCIAL BANKING" name="daukshien" score="1.000000" />
1134
+ <word cat="COMMERCIAL BANKING" name="genfin" score="1.000000" />
1135
+ <word cat="COMMERCIAL BANKING" name="amerykanski" score="1.000000" />
1136
+ <word cat="COMMERCIAL BANKING" name="konzumbank" score="1.000000" />
1137
+ <word cat="COMMERCIAL BANKING" name="piba" score="1.000000" />
1138
+ <word cat="COMMERCIAL BANKING" name="ospel" score="1.000000" />
1139
+ <word cat="COMMERCIAL BANKING" name="ppabank" score="1.000000" />
1140
+ <word cat="COMMERCIAL BANKING" name="hkbank" score="1.000000" />
1141
+ <word cat="COMMERCIAL BANKING" name="landesbanken" score="1.000000" />
1142
+ <word cat="COMMERCIAL BANKING" name="barkoci" score="1.000000" />
1143
+ <word cat="COMMERCIAL BANKING" name="palf" score="1.000000" />
1144
+ <word cat="COMMERCIAL BANKING" name="langkah" score="1.000000" />
1145
+ <word cat="COMMERCIAL BANKING" name="banponc" score="1.000000" />
1146
+ <word cat="COMMERCIAL BANKING" name="waiviata" score="1.000000" />
1147
+ <word cat="COMMERCIAL BANKING" name="mobiliario" score="1.000000" />
1148
+ <word cat="COMMERCIAL BANKING" name="matil" score="1.000000" />
1149
+ <word cat="COMMERCIAL BANKING" name="tokushima" score="1.000000" />
1150
+ <word cat="COMMERCIAL BANKING" name="tomin" score="1.000000" />
1151
+ <word cat="COMMERCIAL BANKING" name="asiatrust" score="1.000000" />
1152
+ <word cat="COMMERCIAL BANKING" name="waterschapsbank" score="1.000000" />
1153
+ <word cat="COMMERCIAL BANKING" name="nationssecur" score="1.000000" />
1154
+ <word cat="COMMERCIAL BANKING" name="hkcb" score="1.000000" />
1155
+ <word cat="COMMERCIAL BANKING" name="extel" score="1.000000" />
1156
+ <word cat="COMMERCIAL BANKING" name="seacoast" score="1.000000" />
1157
+ <word cat="COMMERCIAL BANKING" name="chaffart" score="1.000000" />
1158
+ <word cat="COMMERCIAL BANKING" name="vienot" score="1.000000" />
1159
+ <word cat="COMMERCIAL BANKING" name="xiosalma" score="1.000000" />
1160
+ <word cat="COMMERCIAL BANKING" name="superwoman" score="1.000000" />
1161
+ <word cat="COMMERCIAL BANKING" name="agab" score="1.000000" />
1162
+ <word cat="COMMERCIAL BANKING" name="nkbm" score="1.000000" />
1163
+ <word cat="COMMERCIAL BANKING" name="kovich" score="1.000000" />
1164
+ <word cat="COMMERCIAL BANKING" name="shenango" score="1.000000" />
1165
+ <word cat="COMMERCIAL BANKING" name="goeltz" score="1.000000" />
1166
+ <word cat="COMMERCIAL BANKING" name="nikinmaa" score="1.000000" />
1167
+ <word cat="COMMERCIAL BANKING" name="amirsham" score="1.000000" />
1168
+ <word cat="COMMERCIAL BANKING" name="crediop" score="1.000000" />
1169
+ <word cat="COMMERCIAL BANKING" name="lippobank" score="1.000000" />
1170
+ <word cat="COMMERCIAL BANKING" name="tokuyo" score="1.000000" />
1171
+ <word cat="COMMERCIAL BANKING" name="ieb" score="1.000000" />
1172
+ <word cat="COMMERCIAL BANKING" name="rosprom" score="1.000000" />
1173
+ <word cat="COMMERCIAL BANKING" name="agroprombank" score="1.000000" />
1174
+ <word cat="COMMERCIAL BANKING" name="cfx" score="1.000000" />
1175
+ <word cat="COMMERCIAL BANKING" name="bcr" score="1.000000" />
1176
+ <word cat="COMMERCIAL BANKING" name="sierrawest" score="1.000000" />
1177
+ <word cat="COMMERCIAL BANKING" name="mainstreet" score="1.000000" />
1178
+ <word cat="COMMERCIAL BANKING" name="cliam" score="1.000000" />
1179
+ <word cat="COMMERCIAL BANKING" name="argentbank" score="1.000000" />
1180
+ <word cat="COMMERCIAL BANKING" name="siedlung" score="1.000000" />
1181
+ <word cat="COMMERCIAL BANKING" name="czepliewicz" score="1.000000" />
1182
+ <word cat="COMMERCIAL BANKING" name="cenit" score="1.000000" />
1183
+ <word cat="COMMERCIAL BANKING" name="prast" score="1.000000" />
1184
+ <word cat="COMMERCIAL BANKING" name="sjnb" score="1.000000" />
1185
+ <word cat="POWER TRANSMISSION EQUIPMENT" name="kugelfisch" score="1.000000" />
1186
+ <word cat="POWER TRANSMISSION EQUIPMENT" name="nachi" score="1.000000" />
1187
+ <word cat="POWER TRANSMISSION EQUIPMENT" name="nsk" score="1.000000" />
1188
+ <word cat="POWER TRANSMISSION EQUIPMENT" name="thk" score="1.000000" />
1189
+ <word cat="POWER TRANSMISSION EQUIPMENT" name="cogwheel" score="1.000000" />
1190
+ <word cat="POWER TRANSMISSION EQUIPMENT" name="nakashima" score="1.000000" />
1191
+ <word cat="CENTRAL BANKING AUTHORITIES" name="haferkamp" score="1.000000" />
1192
+ <word cat="COMPUTER TERMINALS, WORK STATIONS" name="officem" score="1.000000" />
1193
+ <word cat="COMPUTER TERMINALS, WORK STATIONS" name="xata" score="1.000000" />
1194
+ <word cat="COMPUTER TERMINALS, WORK STATIONS" name="proview" score="1.000000" />
1195
+ <word cat="COMPUTER TERMINALS, WORK STATIONS" name="dotronix" score="1.000000" />
1196
+ <word cat="COMPUTER TERMINALS, WORK STATIONS" name="verifact" score="1.000000" />
1197
+ <word cat="BANKING SERVICES" name="ubb" score="1.000000" />
1198
+ <word cat="OPTICAL CHARACTER READERS" name="identix" score="1.000000" />
1199
+ <word cat="COMPUTER PRINTERS" name="sekon" score="1.000000" />
1200
+ <word cat="COMPUTER PRINTERS" name="encad" score="1.000000" />
1201
+ <word cat="COMPUTER PRINTERS" name="lasermast" score="1.000000" />
1202
+ <word cat="COMPUTER PRINTERS" name="genicom" score="1.000000" />
1203
+ <word cat="MACHINE TOOLS" name="wasino" score="1.000000" />
1204
+ <word cat="MACHINE TOOLS" name="torotel" score="1.000000" />
1205
+ <word cat="MACHINE TOOLS" name="sumikura" score="1.000000" />
1206
+ <word cat="MACHINE TOOLS" name="dijet" score="1.000000" />
1207
+ <word cat="MACHINE TOOLS" name="milacron" score="1.000000" />
1208
+ <word cat="MACHINE TOOLS" name="kurashiki" score="1.000000" />
1209
+ <word cat="MACHINE TOOLS" name="tungaloi" score="1.000000" />
1210
+ <word cat="MACHINE TOOLS" name="roteq" score="1.000000" />
1211
+ <word cat="MACHINE TOOLS" name="takisawa" score="1.000000" />
1212
+ <word cat="MACHINE TOOLS" name="kohki" score="1.000000" />
1213
+ <word cat="MACHINE TOOLS" name="fahrni" score="1.000000" />
1214
+ <word cat="MACHINE TOOLS" name="okuma" score="1.000000" />
1215
+ <word cat="MACHINE TOOLS" name="shoun" score="1.000000" />
1216
+ <word cat="MACHINE TOOLS" name="soligen" score="1.000000" />
1217
+ <word cat="MACHINE TOOLS" name="hurco" score="1.000000" />
1218
+ <word cat="MACHINE TOOLS" name="nippei" score="1.000000" />
1219
+ <word cat="BANKING AND FINANCIAL SERVICES" name="shohkoh" score="1.000000" />
1220
+ <word cat="AIRCRAFT COMPONENTS, NOT ELECTRICAL" name="sundstrand" score="1.000000" />
1221
+ <word cat="AIRCRAFT COMPONENTS, NOT ELECTRICAL" name="cobham" score="1.000000" />
1222
+ <word cat="AIRCRAFT COMPONENTS, NOT ELECTRICAL" name="solium" score="1.000000" />
1223
+ <word cat="FISH PROCESSING" name="kamaboko" score="1.000000" />
1224
+ <word cat="FISH PROCESSING" name="kanezaki" score="1.000000" />
1225
+ <word cat="FISH PROCESSING" name="hayashikan" score="1.000000" />
1226
+ <word cat="FISH PROCESSING" name="ichimasa" score="1.000000" />
1227
+ <word cat="BOOKS, STATIONERY RETAILING" name="bunkyodo" score="1.000000" />
1228
+ <word cat="STORAGE AND WAREHOUSING" name="hutech" score="1.000000" />
1229
+ <word cat="STORAGE AND WAREHOUSING" name="univar" score="1.000000" />
1230
+ <word cat="STORAGE AND WAREHOUSING" name="norish" score="1.000000" />
1231
+ <word cat="STORAGE AND WAREHOUSING" name="shibusawa" score="1.000000" />
1232
+ <word cat="FREIGHT FORWARDING" name="usfreightwai" score="1.000000" />
1233
+ <word cat="FREIGHT FORWARDING" name="bifa" score="1.000000" />
1234
+ <word cat="FREIGHT FORWARDING" name="svo" score="1.000000" />
1235
+ <word cat="FREIGHT FORWARDING" name="rtkf" score="1.000000" />
1236
+ <word cat="FREIGHT FORWARDING" name="icaro" score="1.000000" />
1237
+ <word cat="FREIGHT FORWARDING" name="snagfa" score="1.000000" />
1238
+ <word cat="FREIGHT FORWARDING" name="lhr" score="1.000000" />
1239
+ <word cat="FREIGHT FORWARDING" name="jnb" score="1.000000" />
1240
+ <word cat="FREIGHT FORWARDING" name="dxb" score="1.000000" />
1241
+ <word cat="FREIGHT FORWARDING" name="mordvinov" score="1.000000" />
1242
+ <word cat="FREIGHT FORWARDING" name="bkk" score="1.000000" />
1243
+ <word cat="FREIGHT FORWARDING" name="baltran" score="1.000000" />
1244
+ <word cat="FREIGHT FORWARDING" name="schout" score="1.000000" />
1245
+ <word cat="FREIGHT FORWARDING" name="blacklock" score="1.000000" />
1246
+ <word cat="FREIGHT FORWARDING" name="aggreko" score="1.000000" />
1247
+ <word cat="FREIGHT FORWARDING" name="butsuryu" score="1.000000" />
1248
+ <word cat="FREIGHT FORWARDING" name="tiaca" score="1.000000" />
1249
+ <word cat="FREIGHT FORWARDING" name="chuounyu" score="1.000000" />
1250
+ <word cat="OILS AND FATS PROCESSING" name="kruszwica" score="1.000000" />
1251
+ <word cat="OILS AND FATS PROCESSING" name="tluszczow" score="1.000000" />
1252
+ <word cat="ELECTRICITY PRODUCTION" name="chigen" score="1.000000" />
1253
+ <word cat="ELECTRICITY PRODUCTION" name="elektrifikatsii" score="1.000000" />
1254
+ <word cat="ELECTRICITY PRODUCTION" name="elektrizitaetswirtschaft" score="1.000000" />
1255
+ <word cat="ELECTRICITY PRODUCTION" name="opuc" score="1.000000" />
1256
+ <word cat="ELECTRICITY PRODUCTION" name="lupberg" score="1.000000" />
1257
+ <word cat="ELECTRICITY PRODUCTION" name="powerchoic" score="1.000000" />
1258
+ <word cat="ELECTRICITY PRODUCTION" name="egco" score="1.000000" />
1259
+ <word cat="ELECTRICITY PRODUCTION" name="fuerza" score="1.000000" />
1260
+ <word cat="ELECTRICITY PRODUCTION" name="energo" score="1.000000" />
1261
+ <word cat="ELECTRICITY PRODUCTION" name="celesc" score="1.000000" />
1262
+ <word cat="ELECTRICITY PRODUCTION" name="eletrosul" score="1.000000" />
1263
+ <word cat="ELECTRICITY PRODUCTION" name="lansivoima" score="1.000000" />
1264
+ <word cat="ELECTRICITY PRODUCTION" name="besicorp" score="1.000000" />
1265
+ <word cat="ELECTRICITY PRODUCTION" name="norstar" score="1.000000" />
1266
+ <word cat="ELECTRICITY PRODUCTION" name="chilquinta" score="1.000000" />
1267
+ <word cat="ELECTRICITY PRODUCTION" name="ppa" score="1.000000" />
1268
+ <word cat="ELECTRICITY PRODUCTION" name="kashiwazaki" score="1.000000" />
1269
+ <word cat="ELECTRICITY PRODUCTION" name="amperwerk" score="1.000000" />
1270
+ <word cat="ELECTRICITY PRODUCTION" name="meh" score="1.000000" />
1271
+ <word cat="ELECTRICITY PRODUCTION" name="illinova" score="1.000000" />
1272
+ <word cat="ELECTRICITY PRODUCTION" name="eua" score="1.000000" />
1273
+ <word cat="ELECTRICITY PRODUCTION" name="dqe" score="1.000000" />
1274
+ <word cat="ELECTRICITY PRODUCTION" name="bedzin" score="1.000000" />
1275
+ <word cat="ELECTRICITY PRODUCTION" name="manweb" score="1.000000" />
1276
+ <word cat="ELECTRICITY PRODUCTION" name="thyssenga" score="1.000000" />
1277
+ <word cat="ELECTRICITY PRODUCTION" name="ofreg" score="1.000000" />
1278
+ <word cat="ELECTRICITY PRODUCTION" name="drywel" score="1.000000" />
1279
+ <word cat="ELECTRICITY PRODUCTION" name="gasand" score="1.000000" />
1280
+ <word cat="ELECTRICITY PRODUCTION" name="prepa" score="1.000000" />
1281
+ <word cat="ELECTRICITY PRODUCTION" name="braidwood" score="1.000000" />
1282
+ <word cat="ELECTRICITY PRODUCTION" name="allasia" score="1.000000" />
1283
+ <word cat="SOAPS AND COSMETICS" name="jintan" score="1.000000" />
1284
+ <word cat="SOAPS AND COSMETICS" name="parlux" score="1.000000" />
1285
+ <word cat="SOAPS AND COSMETICS" name="mandom" score="1.000000" />
1286
+ <word cat="SOAPS AND COSMETICS" name="chattem" score="1.000000" />
1287
+ <word cat="SOAPS AND COSMETICS" name="ecolab" score="1.000000" />
1288
+ <word cat="SOAPS AND COSMETICS" name="ultrafem" score="1.000000" />
1289
+ <word cat="SOAPS AND COSMETICS" name="bombril" score="1.000000" />
1290
+ <word cat="SOAPS AND COSMETICS" name="nutramax" score="1.000000" />
1291
+ <word cat="SOAPS AND COSMETICS" name="olestra" score="1.000000" />
1292
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="auspex" score="1.000000" />
1293
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="perfectdata" score="1.000000" />
1294
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="kurzweil" score="1.000000" />
1295
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="telesend" score="1.000000" />
1296
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="netsi" score="1.000000" />
1297
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="dataram" score="1.000000" />
1298
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="fujicopian" score="1.000000" />
1299
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="microtouch" score="1.000000" />
1300
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="cambex" score="1.000000" />
1301
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="miltop" score="1.000000" />
1302
+ <word cat="COMPUTER PERIPHERALS INCL. MODEMS" name="zycad" score="1.000000" />
1303
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="viglen" score="1.000000" />
1304
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="martorana" score="1.000000" />
1305
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="vamo" score="1.000000" />
1306
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="radisi" score="1.000000" />
1307
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="neomag" score="1.000000" />
1308
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="emat" score="1.000000" />
1309
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="gottesman" score="1.000000" />
1310
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="osr" score="1.000000" />
1311
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="scaglia" score="1.000000" />
1312
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="kaferl" score="1.000000" />
1313
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="intervoic" score="1.000000" />
1314
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="netfram" score="1.000000" />
1315
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="alr" score="1.000000" />
1316
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="optiplex" score="1.000000" />
1317
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="poweredg" score="1.000000" />
1318
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="infostrada" score="1.000000" />
1319
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="kaifa" score="1.000000" />
1320
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="unruh" score="1.000000" />
1321
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="systemcar" score="1.000000" />
1322
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="pesatori" score="1.000000" />
1323
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="deskpro" score="1.000000" />
1324
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="rossignolo" score="1.000000" />
1325
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="gianmario" score="1.000000" />
1326
+ <word cat="COMPUTERS AND PERSONAL COMPUTERS" name="laserjet" score="1.000000" />
1327
+ <word cat="LIFTING AND HANDLING EQUIPMENT" name="kci" score="1.000000" />
1328
+ <word cat="LIFTING AND HANDLING EQUIPMENT" name="aetrium" score="1.000000" />
1329
+ <word cat="LIFTING AND HANDLING EQUIPMENT" name="umpanki" score="1.000000" />
1330
+ <word cat="LIFTING AND HANDLING EQUIPMENT" name="fujitec" score="1.000000" />
1331
+ <word cat="MEASURING AND PRECISION INSTRUMENTS" name="sokki" score="1.000000" />
1332
+ <word cat="MEASURING AND PRECISION INSTRUMENTS" name="sokkia" score="1.000000" />
1333
+ <word cat="MEASURING AND PRECISION INSTRUMENTS" name="avimo" score="1.000000" />
1334
+ <word cat="MEASURING AND PRECISION INSTRUMENTS" name="goltermann" score="1.000000" />
1335
+ <word cat="MEASURING AND PRECISION INSTRUMENTS" name="rikadenki" score="1.000000" />
1336
+ <word cat="MEASURING AND PRECISION INSTRUMENTS" name="keiki" score="1.000000" />
1337
+ <word cat="GENERAL CONSTRUCTION AND DEMOTreatION" name="btsc" score="1.000000" />
1338
+ <word cat="GENERAL CONSTRUCTION AND DEMOTreatION" name="proodeftiki" score="1.000000" />
1339
+ <word cat="GENERAL CONSTRUCTION AND DEMOTreatION" name="suzunui" score="1.000000" />
1340
+ <word cat="GENERAL CONSTRUCTION AND DEMOTreatION" name="wakachiku" score="1.000000" />
1341
+ <word cat="GENERAL CONSTRUCTION AND DEMOTreatION" name="cdil" score="1.000000" />
1342
+ <word cat="GENERAL CONSTRUCTION AND DEMOTreatION" name="strabag" score="1.000000" />
1343
+ <word cat="GENERAL CONSTRUCTION AND DEMOTreatION" name="bilfing" score="1.000000" />
1344
+ <word cat="CHEMICAL INDUSTRY" name="puregon" score="1.000000" />
1345
+ <word cat="CHEMICAL INDUSTRY" name="lovenox" score="1.000000" />
1346
+ <word cat="CHEMICAL INDUSTRY" name="posicor" score="1.000000" />
1347
+ <word cat="CHEMICAL INDUSTRY" name="cytec" score="1.000000" />
1348
+ <word cat="CHEMICAL INDUSTRY" name="bavc" score="1.000000" />
1349
+ <word cat="CHEMICAL INDUSTRY" name="kureha" score="1.000000" />
1350
+ <word cat="CHEMICAL INDUSTRY" name="meltex" score="1.000000" />
1351
+ <word cat="CHEMICAL INDUSTRY" name="nemour" score="1.000000" />
1352
+ <word cat="CHEMICAL INDUSTRY" name="taxoter" score="1.000000" />
1353
+ <word cat="CHEMICAL INDUSTRY" name="plasticis" score="1.000000" />
1354
+ <word cat="CHEMICAL INDUSTRY" name="taoka" score="1.000000" />
1355
+ <word cat="CHEMICAL INDUSTRY" name="xenova" score="1.000000" />
1356
+ <word cat="CHEMICAL INDUSTRY" name="dystar" score="1.000000" />
1357
+ <word cat="CHEMICAL INDUSTRY" name="xr" score="1.000000" />
1358
+ <word cat="CHEMICAL INDUSTRY" name="griesheim" score="1.000000" />
1359
+ <word cat="CHEMICAL INDUSTRY" name="tateho" score="1.000000" />
1360
+ <word cat="CHEMICAL INDUSTRY" name="tirouflet" score="1.000000" />
1361
+ <word cat="CHEMICAL INDUSTRY" name="croda" score="1.000000" />
1362
+ <word cat="CHEMICAL INDUSTRY" name="winkhau" score="1.000000" />
1363
+ <word cat="CHEMICAL INDUSTRY" name="inviras" score="1.000000" />
1364
+ <word cat="CHEMICAL INDUSTRY" name="alev" score="1.000000" />
1365
+ <word cat="CHEMICAL INDUSTRY" name="aastrom" score="1.000000" />
1366
+ <word cat="CHEMICAL INDUSTRY" name="ethicon" score="1.000000" />
1367
+ <word cat="CHEMICAL INDUSTRY" name="schmieder" score="1.000000" />
1368
+ <word cat="CHEMICAL INDUSTRY" name="xenic" score="1.000000" />
1369
+ <word cat="CHEMICAL INDUSTRY" name="aronkasei" score="1.000000" />
1370
+ <word cat="CHEMICAL INDUSTRY" name="methylcyclopentadienyl" score="1.000000" />
1371
+ <word cat="CHEMICAL INDUSTRY" name="kemcor" score="1.000000" />
1372
+ <word cat="CHEMICAL INDUSTRY" name="haarmann" score="1.000000" />
1373
+ <word cat="CHEMICAL INDUSTRY" name="lifescan" score="1.000000" />
1374
+ <word cat="CHEMICAL INDUSTRY" name="fryge" score="1.000000" />
1375
+ <word cat="ELECTRIC LIGHTING EQUIPMENT" name="holophan" score="1.000000" />
1376
+ <word cat="ELECTRIC LIGHTING EQUIPMENT" name="tlg" score="1.000000" />
1377
+ <word cat="FINANCIAL SERVICES" name="onbancorp" score="1.000000" />
1378
+ <word cat="FINANCIAL SERVICES" name="tsugio" score="1.000000" />
1379
+ <word cat="FINANCIAL SERVICES" name="bhavnani" score="1.000000" />
1380
+ <word cat="FINANCIAL SERVICES" name="okin" score="1.000000" />
1381
+ <word cat="FINANCIAL SERVICES" name="multistack" score="1.000000" />
1382
+ <word cat="FINANCIAL SERVICES" name="bynum" score="1.000000" />
1383
+ <word cat="FINANCIAL SERVICES" name="ampal" score="1.000000" />
1384
+ <word cat="FINANCIAL SERVICES" name="extel" score="1.000000" />
1385
+ <word cat="FINANCIAL SERVICES" name="interra" score="1.000000" />
1386
+ <word cat="FINANCIAL SERVICES" name="aplu" score="1.000000" />
1387
+ <word cat="FINANCIAL SERVICES" name="ichiyoshi" score="1.000000" />
1388
+ <word cat="FINANCIAL SERVICES" name="schapiro" score="1.000000" />
1389
+ <word cat="FINANCIAL SERVICES" name="yukihira" score="1.000000" />
1390
+ <word cat="FINANCIAL SERVICES" name="montauk" score="1.000000" />
1391
+ <word cat="FINANCIAL SERVICES" name="matsuki" score="1.000000" />
1392
+ <word cat="FINANCIAL SERVICES" name="glg" score="1.000000" />
1393
+ <word cat="FINANCIAL SERVICES" name="csfp" score="1.000000" />
1394
+ <word cat="FINANCIAL SERVICES" name="keler" score="1.000000" />
1395
+ <word cat="FINANCIAL SERVICES" name="mcglocklin" score="1.000000" />
1396
+ <word cat="FINANCIAL SERVICES" name="nobutaka" score="1.000000" />
1397
+ <word cat="FINANCIAL SERVICES" name="fibv" score="1.000000" />
1398
+ <word cat="FINANCIAL SERVICES" name="biotal" score="1.000000" />
1399
+ <word cat="FINANCIAL SERVICES" name="jwcharl" score="1.000000" />
1400
+ <word cat="STEEL TUBES" name="tamsa" score="1.000000" />
1401
+ <word cat="RAILWAYS" name="railcorp" score="1.000000" />
1402
+ <word cat="RAILWAYS" name="keihan" score="1.000000" />
1403
+ <word cat="RAILWAYS" name="sncb" score="1.000000" />
1404
+ <word cat="RAILWAYS" name="cambier" score="1.000000" />
1405
+ <word cat="RAILWAYS" name="weyauwega" score="1.000000" />
1406
+ <word cat="RAILWAYS" name="tozan" score="1.000000" />
1407
+ <word cat="RAILWAYS" name="railtex" score="1.000000" />
1408
+ <word cat="RAILWAYS" name="omnitrax" score="1.000000" />
1409
+ <word cat="RAILWAYS" name="adact" score="1.000000" />
1410
+ <word cat="RAILWAYS" name="artsdalen" score="1.000000" />
1411
+ <word cat="RAILWAYS" name="boct" score="1.000000" />
1412
+ <word cat="TIMBER PROCESSING AND WOOD ARTICLES" name="dantani" score="1.000000" />
1413
+ <word cat="TIMBER PROCESSING AND WOOD ARTICLES" name="honkarakenn" score="1.000000" />
1414
+ <word cat="REPAIR OF VEHICLES AND CONSUMER GOODS" name="vicom" score="1.000000" />
1415
+ <word cat="REPAIR OF VEHICLES AND CONSUMER GOODS" name="envirotest" score="1.000000" />
1416
+ <word cat="TYRE MANUFACTURING" name="charbonnier" score="1.000000" />
1417
+ <word cat="TYRE MANUFACTURING" name="bourdai" score="1.000000" />
1418
+ <word cat="FRUIT GROWING" name="atoka" score="1.000000" />
1419
+ <word cat="MAIL ORDER" name="burberri" score="1.000000" />
1420
+ <word cat="MAIL ORDER" name="deikel" score="1.000000" />
1421
+ <word cat="MAIL ORDER" name="mednet" score="1.000000" />
1422
+ <word cat="DEPARTMENT STORE" name="matsuzakaya" score="1.000000" />
1423
+ <word cat="DEPARTMENT STORE" name="jujiya" score="1.000000" />
1424
+ <word cat="DEPARTMENT STORE" name="izutsuya" score="1.000000" />
1425
+ <word cat="DEPARTMENT STORE" name="pamida" score="1.000000" />
1426
+ <word cat="DEPARTMENT STORE" name="herti" score="1.000000" />
1427
+ <word cat="DEPARTMENT STORE" name="mitsukoshi" score="1.000000" />
1428
+ <word cat="PORTS AND SHIPPING SUPPORT SERVICES" name="clydeport" score="1.000000" />
1429
+ <word cat="PORTS AND SHIPPING SUPPORT SERVICES" name="sbmp" score="1.000000" />
1430
+ <word cat="PORTS AND SHIPPING SUPPORT SERVICES" name="naabsa" score="1.000000" />
1431
+ <word cat="PORTS AND SHIPPING SUPPORT SERVICES" name="lattakia" score="1.000000" />
1432
+ <word cat="NUCLEAR FUEL" name="tritium" score="1.000000" />
1433
+ <word cat="GLASS AND GLASS PRODUCTS" name="szkla" score="1.000000" />
1434
+ <word cat="GLASS AND GLASS PRODUCTS" name="cristaleria" score="1.000000" />
1435
+ <word cat="GLASS AND GLASS PRODUCTS" name="photran" score="1.000000" />
1436
+ <word cat="GLASS AND GLASS PRODUCTS" name="gospodarczego" score="1.000000" />
1437
+ <word cat="GLASS AND GLASS PRODUCTS" name="krosnienski" score="1.000000" />
1438
+ <word cat="STATIONERY, NOT PAPER" name="pentech" score="1.000000" />
1439
+ <word cat="AEROSPACE" name="derlan" score="1.000000" />
1440
+ <word cat="AEROSPACE" name="sundstrand" score="1.000000" />
1441
+ <word cat="AEROSPACE" name="haeco" score="1.000000" />
1442
+ <word cat="AEROSPACE" name="orbcomm" score="1.000000" />
1443
+ <word cat="AEROSPACE" name="cobham" score="1.000000" />
1444
+ <word cat="AEROSPACE" name="longbow" score="1.000000" />
1445
+ <word cat="AEROSPACE" name="aeroteh" score="1.000000" />
1446
+ <word cat="AEROSPACE" name="simula" score="1.000000" />
1447
+ <word cat="AEROSPACE" name="deley" score="1.000000" />
1448
+ <word cat="AEROSPACE" name="solium" score="1.000000" />
1449
+ <word cat="AEROSPACE" name="transtechnolog" score="1.000000" />
1450
+ <word cat="BUILDING PRODUCTS" name="fujisash" score="1.000000" />
1451
+ <word cat="BUILDING PRODUCTS" name="arisawa" score="1.000000" />
1452
+ <word cat="BUILDING PRODUCTS" name="uranata" score="1.000000" />
1453
+ <word cat="BUILDING PRODUCTS" name="asahidank" score="1.000000" />
1454
+ <word cat="RUBBER PRODUCTS" name="kinugawa" score="1.000000" />
1455
+ <word cat="WHOLESALE DISTRIBUTION" name="skansen" score="1.000000" />
1456
+ <word cat="WHOLESALE DISTRIBUTION" name="wyle" score="1.000000" />
1457
+ <word cat="WHOLESALE DISTRIBUTION" name="shaddi" score="1.000000" />
1458
+ <word cat="WHOLESALE DISTRIBUTION" name="vwr" score="1.000000" />
1459
+ <word cat="WHOLESALE DISTRIBUTION" name="vtx" score="1.000000" />
1460
+ <word cat="WHOLESALE DISTRIBUTION" name="strober" score="1.000000" />
1461
+ <word cat="WHOLESALE DISTRIBUTION" name="tohto" score="1.000000" />
1462
+ <word cat="WHOLESALE DISTRIBUTION" name="shinsho" score="1.000000" />
1463
+ <word cat="WHOLESALE DISTRIBUTION" name="liuski" score="1.000000" />
1464
+ <word cat="WHOLESALE DISTRIBUTION" name="amerisourc" score="1.000000" />
1465
+ <word cat="WHOLESALE DISTRIBUTION" name="interpak" score="1.000000" />
1466
+ <word cat="WHOLESALE DISTRIBUTION" name="wajax" score="1.000000" />
1467
+ <word cat="WHOLESALE DISTRIBUTION" name="penop" score="1.000000" />
1468
+ <word cat="WHOLESALE DISTRIBUTION" name="idepend" score="1.000000" />
1469
+ <word cat="WHOLESALE DISTRIBUTION" name="funashoku" score="1.000000" />
1470
+ <word cat="WHOLESALE DISTRIBUTION" name="noland" score="1.000000" />
1471
+ <word cat="WHOLESALE DISTRIBUTION" name="intellicel" score="1.000000" />
1472
+ <word cat="WHOLESALE DISTRIBUTION" name="csbi" score="1.000000" />
1473
+ <word cat="WHOLESALE DISTRIBUTION" name="kuraya" score="1.000000" />
1474
+ <word cat="WHOLESALE DISTRIBUTION" name="prosourc" score="1.000000" />
1475
+ <word cat="WHOLESALE DISTRIBUTION" name="partco" score="1.000000" />
1476
+ <word cat="WHOLESALE DISTRIBUTION" name="rexel" score="1.000000" />
1477
+ <word cat="WHOLESALE DISTRIBUTION" name="efekt" score="1.000000" />
1478
+ <word cat="WHOLESALE DISTRIBUTION" name="bwg" score="1.000000" />
1479
+ <word cat="WHOLESALE DISTRIBUTION" name="ryoyo" score="1.000000" />
1480
+ <word cat="WHOLESALE DISTRIBUTION" name="elcotel" score="1.000000" />
1481
+ <word cat="WHOLESALE DISTRIBUTION" name="advan" score="1.000000" />
1482
+ <word cat="WHOLESALE DISTRIBUTION" name="koun" score="1.000000" />
1483
+ <word cat="WHOLESALE DISTRIBUTION" name="zenchiku" score="1.000000" />
1484
+ <word cat="WHOLESALE DISTRIBUTION" name="bindlei" score="1.000000" />
1485
+ <word cat="WHOLESALE DISTRIBUTION" name="mataichi" score="1.000000" />
1486
+ <word cat="WHOLESALE DISTRIBUTION" name="uoichiba" score="1.000000" />
1487
+ <word cat="WHOLESALE DISTRIBUTION" name="lurgi" score="1.000000" />
1488
+ <word cat="WHOLESALE DISTRIBUTION" name="zahn" score="1.000000" />
1489
+ <word cat="WHOLESALE DISTRIBUTION" name="oakhurst" score="1.000000" />
1490
+ <word cat="WHOLESALE DISTRIBUTION" name="mytilineo" score="1.000000" />
1491
+ <word cat="WHOLESALE DISTRIBUTION" name="helasto" score="1.000000" />
1492
+ <word cat="WHOLESALE DISTRIBUTION" name="windmer" score="1.000000" />
1493
+ <word cat="WHOLESALE DISTRIBUTION" name="inabata" score="1.000000" />
1494
+ <word cat="WHOLESALE DISTRIBUTION" name="kaga" score="1.000000" />
1495
+ <word cat="WHOLESALE DISTRIBUTION" name="coloroc" score="1.000000" />
1496
+ <word cat="WHOLESALE DISTRIBUTION" name="sangetsu" score="1.000000" />
1497
+ <word cat="WHOLESALE DISTRIBUTION" name="finelist" score="1.000000" />
1498
+ <word cat="WHOLESALE DISTRIBUTION" name="moonbat" score="1.000000" />
1499
+ <word cat="WHOLESALE DISTRIBUTION" name="satori" score="1.000000" />
1500
+ <word cat="WHOLESALE DISTRIBUTION" name="sanacorp" score="1.000000" />
1501
+ <word cat="WHOLESALE DISTRIBUTION" name="ipmuda" score="1.000000" />
1502
+ <word cat="WHOLESALE DISTRIBUTION" name="kinsho" score="1.000000" />
1503
+ <word cat="WHOLESALE DISTRIBUTION" name="krantor" score="1.000000" />
1504
+ <word cat="WHOLESALE DISTRIBUTION" name="milgrai" score="1.000000" />
1505
+ <word cat="WHOLESALE DISTRIBUTION" name="venturian" score="1.000000" />
1506
+ <word cat="WHOLESALE DISTRIBUTION" name="starckjohann" score="1.000000" />
1507
+ <word cat="WHOLESALE DISTRIBUTION" name="brightpoint" score="1.000000" />
1508
+ <word cat="WHOLESALE DISTRIBUTION" name="azupharma" score="1.000000" />
1509
+ <word cat="WHOLESALE DISTRIBUTION" name="handleman" score="1.000000" />
1510
+ <word cat="WHOLESALE DISTRIBUTION" name="kevco" score="1.000000" />
1511
+ <word cat="WHOLESALE DISTRIBUTION" name="centrost" score="1.000000" />
1512
+ <word cat="WHOLESALE DISTRIBUTION" name="sumikin" score="1.000000" />
1513
+ <word cat="LEISURE AND ENTERTAINMENTS CONSTRUCTION" name="iwerk" score="1.000000" />
1514
+ <word cat="CLOTHING" name="vilenzo" score="1.000000" />
1515
+ <word cat="CLOTHING" name="kimbyr" score="1.000000" />
1516
+ <word cat="CLOTHING" name="maidenform" score="1.000000" />
1517
+ <word cat="CLOTHING" name="jichodo" score="1.000000" />
1518
+ <word cat="CLOTHING" name="ichiya" score="1.000000" />
1519
+ <word cat="CLOTHING" name="ichida" score="1.000000" />
1520
+ <word cat="CLOTHING" name="donnkenni" score="1.000000" />
1521
+ <word cat="CLOTHING" name="naigai" score="1.000000" />
1522
+ <word cat="CLOTHING" name="gitano" score="1.000000" />
1523
+ <word cat="CLOTHING" name="tomiya" score="1.000000" />
1524
+ <word cat="CLOTHING" name="dabah" score="1.000000" />
1525
+ <word cat="CLOTHING" name="unitog" score="1.000000" />
1526
+ <word cat="CLOTHING" name="premiumwear" score="1.000000" />
1527
+ <word cat="CLOTHING" name="bodycot" score="1.000000" />
1528
+ <word cat="CLOTHING" name="oneita" score="1.000000" />
1529
+ <word cat="CLOTHING" name="warnaco" score="1.000000" />
1530
+ <word cat="CLOTHING" name="hartmarx" score="1.000000" />
1531
+ <word cat="CLOTHING" name="itariyard" score="1.000000" />
1532
+ <word cat="CLOTHING" name="maruco" score="1.000000" />
1533
+ <word cat="NON-LIFE INSURANCE" name="kielholz" score="1.000000" />
1534
+ <word cat="NON-LIFE INSURANCE" name="sockwel" score="1.000000" />
1535
+ <word cat="NON-LIFE INSURANCE" name="renaissancer" score="1.000000" />
1536
+ <word cat="NON-LIFE INSURANCE" name="synd" score="1.000000" />
1537
+ <word cat="NON-LIFE INSURANCE" name="hemmingson" score="1.000000" />
1538
+ <word cat="NON-LIFE INSURANCE" name="gainsco" score="1.000000" />
1539
+ <word cat="NON-LIFE INSURANCE" name="unioria" score="1.000000" />
1540
+ <word cat="NON-LIFE INSURANCE" name="trenwick" score="1.000000" />
1541
+ <word cat="NON-LIFE INSURANCE" name="picom" score="1.000000" />
1542
+ <word cat="LIFE INSURANCE" name="penncorp" score="1.000000" />
1543
+ <word cat="LIFE INSURANCE" name="reliastar" score="1.000000" />
1544
+ <word cat="LIFE INSURANCE" name="torchmark" score="1.000000" />
1545
+ <word cat="LIFE INSURANCE" name="lifeusa" score="1.000000" />
1546
+ <word cat="LIFE INSURANCE" name="dantai" score="1.000000" />
1547
+ <word cat="LIFE INSURANCE" name="skansen" score="1.000000" />
1548
+ <word cat="COMPOSITE INSURANCE" name="lippen" score="1.000000" />
1549
+ <word cat="COMPOSITE INSURANCE" name="verzekeringsgroep" score="1.000000" />
1550
+ <word cat="COMPOSITE INSURANCE" name="hueppi" score="1.000000" />
1551
+ <word cat="COMPOSITE INSURANCE" name="hagemann" score="1.000000" />
1552
+ <word cat="COMPOSITE INSURANCE" name="ligresti" score="1.000000" />
1553
+ <word cat="COMPOSITE INSURANCE" name="kettler" score="1.000000" />
1554
+ <word cat="COMPOSITE INSURANCE" name="jokiel" score="1.000000" />
1555
+ <word cat="COMPOSITE INSURANCE" name="kask" score="1.000000" />
1556
+ <word cat="COMPOSITE INSURANCE" name="chookaszian" score="1.000000" />
1557
+ <word cat="INSURANCE" name="limnet" score="1.000000" />
1558
+ <word cat="INSURANCE" name="tranquilidad" score="1.000000" />
1559
+ <word cat="INSURANCE" name="rtw" score="1.000000" />
1560
+ <word cat="INSURANCE" name="lippen" score="1.000000" />
1561
+ <word cat="INSURANCE" name="compdent" score="1.000000" />
1562
+ <word cat="INSURANCE" name="fbl" score="1.000000" />
1563
+ <word cat="INSURANCE" name="wolin" score="1.000000" />
1564
+ <word cat="INSURANCE" name="ockham" score="1.000000" />
1565
+ <word cat="INSURANCE" name="catex" score="1.000000" />
1566
+ <word cat="INSURANCE" name="sgio" score="1.000000" />
1567
+ <word cat="INSURANCE" name="tuir" score="1.000000" />
1568
+ <word cat="TOBACCO" name="dosal" score="1.000000" />
1569
+ <word cat="TOBACCO" name="agrobiotechnolog" score="1.000000" />
1570
+ <word cat="TOBACCO" name="chebeagu" score="1.000000" />
1571
+ <word cat="FACTORY AND INDUSTRIAL CONSTRUCTION" name="amcorp" score="1.000000" />
1572
+ <word cat="FACTORY AND INDUSTRIAL CONSTRUCTION" name="sasakura" score="1.000000" />
1573
+ <word cat="RESIDENTIAL CONSTRUCTION" name="kabuto" score="1.000000" />
1574
+ <word cat="RESIDENTIAL CONSTRUCTION" name="nvr" score="1.000000" />
1575
+ <word cat="RESIDENTIAL CONSTRUCTION" name="jutaku" score="1.000000" />
1576
+ <word cat="RESIDENTIAL CONSTRUCTION" name="sawako" score="1.000000" />
1577
+ <word cat="RESIDENTIAL CONSTRUCTION" name="daikyo" score="1.000000" />
1578
+ <word cat="CONFECTIONERY" name="kanro" score="1.000000" />
1579
+ <word cat="CONFECTIONERY" name="glico" score="1.000000" />
1580
+ <word cat="CONFECTIONERY" name="iwatsuka" score="1.000000" />
1581
+ <word cat="CONFECTIONERY" name="rbgh" score="1.000000" />
1582
+ <word cat="COCOA GROWING" name="cocobod" score="1.000000" />
1583
+ <word cat="PUMPS" name="torishima" score="1.000000" />
1584
+ <word cat="PUMPS" name="nikkiso" score="1.000000" />
1585
+ <word cat="PUMPS" name="duriron" score="1.000000" />
1586
+ <word cat="MINING MACHINERY" name="numar" score="1.000000" />
1587
+ <word cat="SYNTHETIC FIBRES INCL. POLYESTER" name="ovex" score="1.000000" />
1588
+ <word cat="SYNTHETIC FIBRES INCL. POLYESTER" name="dirbtini" score="1.000000" />
1589
+ <word cat="VEHICLE PARTS" name="exedi" score="1.000000" />
1590
+ <word cat="VEHICLE PARTS" name="echlin" score="1.000000" />
1591
+ <word cat="VEHICLE PARTS" name="kayaba" score="1.000000" />
1592
+ <word cat="VEHICLE PARTS" name="durakon" score="1.000000" />
1593
+ <word cat="VEHICLE PARTS" name="ichikoh" score="1.000000" />
1594
+ <word cat="VEHICLE PARTS" name="walbro" score="1.000000" />
1595
+ <word cat="VEHICLE PARTS" name="lemmerz" score="1.000000" />
1596
+ <word cat="VEHICLE PARTS" name="gentex" score="1.000000" />
1597
+ <word cat="VEHICLE PARTS" name="trinova" score="1.000000" />
1598
+ <word cat="VEHICLE PARTS" name="aeroquip" score="1.000000" />
1599
+ <word cat="VEHICLE PARTS" name="mitsuba" score="1.000000" />
1600
+ <word cat="VEHICLE PARTS" name="gissa" score="1.000000" />
1601
+ <word cat="VEHICLE PARTS" name="carburet" score="1.000000" />
1602
+ <word cat="VEHICLE PARTS" name="lomason" score="1.000000" />
1603
+ <word cat="VEHICLE PARTS" name="carburetor" score="1.000000" />
1604
+ <word cat="VEHICLE PARTS" name="unisia" score="1.000000" />
1605
+ <word cat="VEHICLE PARTS" name="sanden" score="1.000000" />
1606
+ <word cat="VEHICLE PARTS" name="georgin" score="1.000000" />
1607
+ <word cat="VEHICLE PARTS" name="britax" score="1.000000" />
1608
+ <word cat="VEHICLE PARTS" name="qianchao" score="1.000000" />
1609
+ <word cat="VEHICLE PARTS" name="ventra" score="1.000000" />
1610
+ <word cat="VEHICLE PARTS" name="autobac" score="1.000000" />
1611
+ <word cat="CRUDE OIL EXTRACTION" name="schwing" score="1.000000" />
1612
+ <word cat="CRUDE OIL EXTRACTION" name="jorex" score="1.000000" />
1613
+ <word cat="CRUDE OIL EXTRACTION" name="toreador" score="1.000000" />
1614
+ <word cat="CRUDE OIL EXTRACTION" name="draupner" score="1.000000" />
1615
+ <word cat="CRUDE OIL EXTRACTION" name="chauvco" score="1.000000" />
1616
+ <word cat="CRUDE OIL EXTRACTION" name="enex" score="1.000000" />
1617
+ <word cat="CRUDE OIL EXTRACTION" name="kemcor" score="1.000000" />
1618
+ <word cat="CRUDE OIL EXTRACTION" name="wapet" score="1.000000" />
1619
+ <word cat="CRUDE OIL EXTRACTION" name="aardoli" score="1.000000" />
1620
+ <word cat="CRUDE OIL EXTRACTION" name="denburi" score="1.000000" />
1621
+ <word cat="CRUDE OIL EXTRACTION" name="helmerich" score="1.000000" />
1622
+ <word cat="CRUDE OIL EXTRACTION" name="alanco" score="1.000000" />
1623
+ <word cat="CRUDE OIL EXTRACTION" name="alamco" score="1.000000" />
1624
+ <word cat="CRUDE OIL EXTRACTION" name="enerfin" score="1.000000" />
1625
+ <word cat="CRUDE OIL EXTRACTION" name="steihaug" score="1.000000" />
1626
+ <word cat="CRUDE OIL EXTRACTION" name="europip" score="1.000000" />
1627
+ <word cat="CRUDE OIL EXTRACTION" name="schibevaag" score="1.000000" />
1628
+ <word cat="CRUDE OIL EXTRACTION" name="grandpuit" score="1.000000" />
1629
+ <word cat="CRUDE OIL EXTRACTION" name="kaarsto" score="1.000000" />
1630
+ <word cat="CRUDE OIL EXTRACTION" name="kollsn" score="1.000000" />
1631
+ <word cat="CRUDE OIL EXTRACTION" name="enermark" score="1.000000" />
1632
+ <word cat="CRUDE OIL EXTRACTION" name="feyzin" score="1.000000" />
1633
+ <word cat="CRUDE OIL EXTRACTION" name="otwai" score="1.000000" />
1634
+ <word cat="CRUDE OIL EXTRACTION" name="qarun" score="1.000000" />
1635
+ <word cat="CRUDE OIL EXTRACTION" name="bucke" score="1.000000" />
1636
+ <word cat="CRUDE OIL EXTRACTION" name="yme" score="1.000000" />
1637
+ <word cat="CRUDE OIL EXTRACTION" name="onako" score="1.000000" />
1638
+ <word cat="CRUDE OIL EXTRACTION" name="xcl" score="1.000000" />
1639
+ <word cat="CRUDE OIL EXTRACTION" name="aviva" score="1.000000" />
1640
+ <word cat="CRUDE OIL EXTRACTION" name="tuer" score="1.000000" />
1641
+ <word cat="CRUDE OIL EXTRACTION" name="ula" score="1.000000" />
1642
+ <word cat="CRUDE OIL EXTRACTION" name="cordex" score="1.000000" />
1643
+ <word cat="CRUDE OIL EXTRACTION" name="mongstad" score="1.000000" />
1644
+ <word cat="CRUDE OIL EXTRACTION" name="murzuk" score="1.000000" />
1645
+ <word cat="CRUDE OIL EXTRACTION" name="vagit" score="1.000000" />
1646
+ <word cat="CRUDE OIL EXTRACTION" name="camisea" score="1.000000" />
1647
+ <word cat="CRUDE OIL EXTRACTION" name="talysh" score="1.000000" />
1648
+ <word cat="CRUDE OIL EXTRACTION" name="transwest" score="1.000000" />
1649
+ <word cat="CRUDE OIL EXTRACTION" name="jungel" score="1.000000" />
1650
+ <word cat="CRUDE OIL EXTRACTION" name="snorr" score="1.000000" />
1651
+ <word cat="CRUDE OIL EXTRACTION" name="callon" score="1.000000" />
1652
+ <word cat="CRUDE OIL EXTRACTION" name="macassa" score="1.000000" />
1653
+ <word cat="CRUDE OIL EXTRACTION" name="tuskar" score="1.000000" />
1654
+ <word cat="CRUDE OIL EXTRACTION" name="lenkoran" score="1.000000" />
1655
+ <word cat="CRUDE OIL EXTRACTION" name="harcor" score="1.000000" />
1656
+ <word cat="CRUDE OIL EXTRACTION" name="lowden" score="1.000000" />
1657
+ <word cat="CRUDE OIL EXTRACTION" name="kakap" score="1.000000" />
1658
+ <word cat="CRUDE OIL EXTRACTION" name="tullow" score="1.000000" />
1659
+ <word cat="CRUDE OIL EXTRACTION" name="brieant" score="1.000000" />
1660
+ <word cat="CRUDE OIL EXTRACTION" name="norfra" score="1.000000" />
1661
+ <word cat="CRUDE OIL EXTRACTION" name="digimu" score="1.000000" />
1662
+ <word cat="CRUDE OIL EXPLORATION" name="petrocelt" score="1.000000" />
1663
+ <word cat="CRUDE OIL EXPLORATION" name="brida" score="1.000000" />
1664
+ <word cat="PAPER, PRINTING AND PUBLISHING" name="beness" score="1.000000" />
1665
+ <word cat="COFFEE GROWING" name="cmbl" score="1.000000" />
1666
+ <word cat="COFFEE GROWING" name="cdpc" score="1.000000" />
1667
+ <word cat="COFFEE GROWING" name="sucafina" score="1.000000" />
1668
+ <word cat="COFFEE GROWING" name="filiaci" score="1.000000" />
1669
+ <word cat="OPTICIANS" name="opsm" score="1.000000" />
1670
+ <word cat="GRAIN, CEREALS FARMING" name="gridasov" score="1.000000" />
1671
+ <word cat="GRAIN, CEREALS FARMING" name="crnt" score="1.000000" />
1672
+ <word cat="GRAIN, CEREALS FARMING" name="shroyer" score="1.000000" />
1673
+ <word cat="GRAIN, CEREALS FARMING" name="awf" score="1.000000" />
1674
+ <word cat="GRAIN, CEREALS FARMING" name="roskhleboprodukt" score="1.000000" />
1675
+ <word cat="GRAIN, CEREALS FARMING" name="ffcat" score="1.000000" />
1676
+ <word cat="GRAIN, CEREALS FARMING" name="lajud" score="1.000000" />
1677
+ <word cat="GRAIN, CEREALS FARMING" name="bhimjayani" score="1.000000" />
1678
+ <word cat="GRAIN, CEREALS FARMING" name="tassel" score="1.000000" />
1679
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="airga" score="1.000000" />
1680
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="paracelsian" score="1.000000" />
1681
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="quidel" score="1.000000" />
1682
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="unigen" score="1.000000" />
1683
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="shokubai" score="1.000000" />
1684
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="scio" score="1.000000" />
1685
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="aikoh" score="1.000000" />
1686
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="innovir" score="1.000000" />
1687
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="hoxan" score="1.000000" />
1688
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="ariad" score="1.000000" />
1689
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="cheme" score="1.000000" />
1690
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="ferrofluid" score="1.000000" />
1691
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="somatix" score="1.000000" />
1692
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="rooter" score="1.000000" />
1693
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="biotim" score="1.000000" />
1694
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="seiro" score="1.000000" />
1695
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="geltex" score="1.000000" />
1696
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="barnickel" score="1.000000" />
1697
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="teisan" score="1.000000" />
1698
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="fuisz" score="1.000000" />
1699
+ <word cat="INDUSTRIAL CHEMICALS INCL. GASES" name="organogenesi" score="1.000000" />
1700
+ <word cat="AGRICULTURAL MACHINERY" name="comson" score="1.000000" />
1701
+ <word cat="AGRICULTURAL MACHINERY" name="ponss" score="1.000000" />
1702
+ <word cat="AGRICULTURAL MACHINERY" name="daifuku" score="1.000000" />
1703
+ <word cat="MIXED RETAIL" name="mitsukoshi" score="1.000000" />
1704
+ <word cat="MIXED RETAIL" name="lechmer" score="1.000000" />
1705
+ <word cat="MIXED RETAIL" name="mednet" score="1.000000" />
1706
+ <word cat="MIXED RETAIL" name="duckwal" score="1.000000" />
1707
+ <word cat="MIXED RETAIL" name="kotobukiya" score="1.000000" />
1708
+ <word cat="MIXED RETAIL" name="gendi" score="1.000000" />
1709
+ <word cat="MIXED RETAIL" name="mesbla" score="1.000000" />
1710
+ <word cat="MIXED RETAIL" name="herti" score="1.000000" />
1711
+ <word cat="MIXED RETAIL" name="jujiya" score="1.000000" />
1712
+ <word cat="MIXED RETAIL" name="garzoni" score="1.000000" />
1713
+ <word cat="MIXED RETAIL" name="deikel" score="1.000000" />
1714
+ <word cat="MIXED RETAIL" name="ryohin" score="1.000000" />
1715
+ <word cat="MIXED RETAIL" name="rals" score="1.000000" />
1716
+ <word cat="MIXED RETAIL" name="pamida" score="1.000000" />
1717
+ <word cat="MIXED RETAIL" name="waitros" score="1.000000" />
1718
+ <word cat="MIXED RETAIL" name="yamazawa" score="1.000000" />
1719
+ <word cat="MIXED RETAIL" name="izutsuya" score="1.000000" />
1720
+ <word cat="MIXED RETAIL" name="takebishi" score="1.000000" />
1721
+ <word cat="MIXED RETAIL" name="keikaku" score="1.000000" />
1722
+ <word cat="MIXED RETAIL" name="burberri" score="1.000000" />
1723
+ <word cat="MIXED RETAIL" name="matsuzakaya" score="1.000000" />
1724
+ <word cat="TELECOMMUNICATIONS" name="detemobil" score="1.000000" />
1725
+ <word cat="TELECOMMUNICATIONS" name="cycomm" score="1.000000" />
1726
+ <word cat="TELECOMMUNICATIONS" name="telekomunikasi" score="0.994220" />
1727
+ <word cat="TELECOMMUNICATIONS" name="enitel" score="1.000000" />
1728
+ <word cat="TELECOMMUNICATIONS" name="comcel" score="1.000000" />
1729
+ <word cat="TELECOMMUNICATIONS" name="etpi" score="1.000000" />
1730
+ <word cat="TELECOMMUNICATIONS" name="ebber" score="1.000000" />
1731
+ <word cat="TELECOMMUNICATIONS" name="telepar" score="1.000000" />
1732
+ <word cat="TELECOMMUNICATIONS" name="phonetel" score="1.000000" />
1733
+ <word cat="TELECOMMUNICATIONS" name="telenot" score="1.000000" />
1734
+ <word cat="TELECOMMUNICATIONS" name="carrapatoso" score="1.000000" />
1735
+ <word cat="TELECOMMUNICATIONS" name="telet" score="1.000000" />
1736
+ <word cat="TELECOMMUNICATIONS" name="massick" score="1.000000" />
1737
+ <word cat="TELECOMMUNICATIONS" name="alestra" score="1.000000" />
1738
+ <word cat="TELECOMMUNICATIONS" name="telsim" score="1.000000" />
1739
+ <word cat="TELECOMMUNICATIONS" name="beavington" score="1.000000" />
1740
+ <word cat="TELECOMMUNICATIONS" name="wkdec" score="1.000000" />
1741
+ <word cat="TELECOMMUNICATIONS" name="utel" score="1.000000" />
1742
+ <word cat="TELECOMMUNICATIONS" name="mediaon" score="1.000000" />
1743
+ <word cat="TELECOMMUNICATIONS" name="clearnet" score="1.000000" />
1744
+ <word cat="TELECOMMUNICATIONS" name="commnet" score="1.000000" />
1745
+ <word cat="TELECOMMUNICATIONS" name="entel" score="1.000000" />
1746
+ <word cat="TELECOMMUNICATIONS" name="sirti" score="1.000000" />
1747
+ <word cat="TELECOMMUNICATIONS" name="highwaymast" score="1.000000" />
1748
+ <word cat="TELECOMMUNICATIONS" name="wurtman" score="1.000000" />
1749
+ <word cat="TELECOMMUNICATIONS" name="autoinfo" score="1.000000" />
1750
+ <word cat="TELECOMMUNICATIONS" name="pricellular" score="1.000000" />
1751
+ <word cat="TELECOMMUNICATIONS" name="klugman" score="1.000000" />
1752
+ <word cat="TELECOMMUNICATIONS" name="telcel" score="1.000000" />
1753
+ <word cat="TELECOMMUNICATIONS" name="cofetel" score="1.000000" />
1754
+ <word cat="TELECOMMUNICATIONS" name="pactel" score="1.000000" />
1755
+ <word cat="TELECOMMUNICATIONS" name="goldon" score="1.000000" />
1756
+ <word cat="TELECOMMUNICATIONS" name="viatel" score="1.000000" />
1757
+ <word cat="TELECOMMUNICATIONS" name="philcom" score="1.000000" />
1758
+ <word cat="TELECOMMUNICATIONS" name="tyso" score="1.000000" />
1759
+ <word cat="TELECOMMUNICATIONS" name="nabo" score="1.000000" />
1760
+ <word cat="TELECOMMUNICATIONS" name="glotin" score="1.000000" />
1761
+ <word cat="TELECOMMUNICATIONS" name="notebaert" score="1.000000" />
1762
+ <word cat="TELECOMMUNICATIONS" name="davel" score="1.000000" />
1763
+ <word cat="TELECOMMUNICATIONS" name="scaglia" score="1.000000" />
1764
+ <word cat="TELECOMMUNICATIONS" name="fonso" score="1.000000" />
1765
+ <word cat="TELECOMMUNICATIONS" name="tisa" score="1.000000" />
1766
+ <word cat="TELECOMMUNICATIONS" name="itineri" score="1.000000" />
1767
+ <word cat="TELECOMMUNICATIONS" name="ixc" score="1.000000" />
1768
+ <word cat="TELECOMMUNICATIONS" name="islacom" score="1.000000" />
1769
+ <word cat="TELECOMMUNICATIONS" name="mtel" score="1.000000" />
1770
+ <word cat="TELECOMMUNICATIONS" name="telu" score="1.000000" />
1771
+ <word cat="TELECOMMUNICATIONS" name="worldspac" score="1.000000" />
1772
+ <word cat="TELECOMMUNICATIONS" name="osiptel" score="1.000000" />
1773
+ <word cat="TELECOMMUNICATIONS" name="netspeak" score="1.000000" />
1774
+ <word cat="TELECOMMUNICATIONS" name="mobilnet" score="1.000000" />
1775
+ <word cat="TELECOMMUNICATIONS" name="telfono" score="1.000000" />
1776
+ <word cat="TELECOMMUNICATIONS" name="seidenberg" score="1.000000" />
1777
+ <word cat="TELECOMMUNICATIONS" name="alltel" score="1.000000" />
1778
+ <word cat="TELECOMMUNICATIONS" name="voicenow" score="1.000000" />
1779
+ <word cat="TELECOMMUNICATIONS" name="vimpel" score="1.000000" />
1780
+ <word cat="TELECOMMUNICATIONS" name="vyvx" score="1.000000" />
1781
+ <word cat="TELECOMMUNICATIONS" name="mezhdugorodnoi" score="1.000000" />
1782
+ <word cat="TELECOMMUNICATIONS" name="allasia" score="1.000000" />
1783
+ <word cat="TELECOMMUNICATIONS" name="landlin" score="1.000000" />
1784
+ <word cat="TELECOMMUNICATIONS" name="snet" score="1.000000" />
1785
+ <word cat="TELECOMMUNICATIONS" name="pagenet" score="1.000000" />
1786
+ <word cat="TELECOMMUNICATIONS" name="batelco" score="1.000000" />
1787
+ <word cat="TELECOMMUNICATIONS" name="micromus" score="1.000000" />
1788
+ <word cat="TELECOMMUNICATIONS" name="systemhous" score="1.000000" />
1789
+ <word cat="TELECOMMUNICATIONS" name="aliant" score="1.000000" />
1790
+ <word cat="TELECOMMUNICATIONS" name="fetratel" score="1.000000" />
1791
+ <word cat="TELECOMMUNICATIONS" name="resurgen" score="1.000000" />
1792
+ <word cat="FRUIT AND VEGETABLE PROCESSING" name="unimark" score="1.000000" />
1793
+ <word cat="SUGAR BEET GROWING" name="wvz" score="1.000000" />
1794
+ <word cat="PRECIOUS METALS" name="zmax" score="1.000000" />
1795
+ <word cat="PRECIOUS METALS" name="leplat" score="1.000000" />
1796
+ <word cat="PRECIOUS METALS" name="imataca" score="1.000000" />
1797
+ <word cat="PRECIOUS METALS" name="parnass" score="1.000000" />
1798
+ <word cat="PRECIOUS METALS" name="bakyrchik" score="1.000000" />
1799
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="erli" score="1.000000" />
1800
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="smithburg" score="1.000000" />
1801
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="suiza" score="1.000000" />
1802
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="shinobu" score="1.000000" />
1803
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="bongrain" score="1.000000" />
1804
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="foodbrand" score="1.000000" />
1805
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="rieber" score="1.000000" />
1806
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="myojo" score="1.000000" />
1807
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="pepperidg" score="1.000000" />
1808
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="nichiwa" score="1.000000" />
1809
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="sucrier" score="1.000000" />
1810
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="nichiro" score="1.000000" />
1811
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="yh" score="1.000000" />
1812
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="rokko" score="1.000000" />
1813
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="kagom" score="1.000000" />
1814
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="marudai" score="1.000000" />
1815
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="katokichi" score="1.000000" />
1816
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="zondervan" score="1.000000" />
1817
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="multifood" score="1.000000" />
1818
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="langbo" score="1.000000" />
1819
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="goodmark" score="1.000000" />
1820
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="fujicco" score="1.000000" />
1821
+ <word cat="FOOD, DRINK AND TOBACCO PROCESSING" name="alcon" score="1.000000" />
1822
+ <word cat="BASE NON FERROUS METALS" name="huludao" score="1.000000" />
1823
+ <word cat="BASE NON FERROUS METALS" name="normaco" score="1.000000" />
1824
+ <word cat="BASE NON FERROUS METALS" name="komrakov" score="1.000000" />
1825
+ <word cat="BASE NON FERROUS METALS" name="olawa" score="1.000000" />
1826
+ <word cat="BASE NON FERROUS METALS" name="vetchinin" score="1.000000" />
1827
+ <word cat="BASE NON FERROUS METALS" name="autlan" score="1.000000" />
1828
+ <word cat="BASE NON FERROUS METALS" name="bedder" score="1.000000" />
1829
+ <word cat="ELECTRICITY, GAS UTITreatIES" name="wwp" score="1.000000" />
1830
+ <word cat="ELECTRICITY, GAS UTITreatIES" name="psnh" score="1.000000" />
1831
+ <word cat="ELECTRICITY, GAS UTITreatIES" name="dpl" score="1.000000" />
1832
+ <word cat="ELECTRICITY, GAS UTITreatIES" name="fphc" score="1.000000" />
1833
+ <word cat="ELECTRICITY, GAS UTITreatIES" name="delmarva" score="1.000000" />
1834
+ <word cat="ELECTRICITY, GAS UTITreatIES" name="fryle" score="1.000000" />
1835
+ <word cat="POULTRY FARMING" name="vvnd" score="1.000000" />
1836
+ <word cat="PHARMACEUTICALS" name="andrx" score="1.000000" />
1837
+ <word cat="PHARMACEUTICALS" name="transkaryot" score="1.000000" />
1838
+ <word cat="PHARMACEUTICALS" name="prihti" score="1.000000" />
1839
+ <word cat="PHARMACEUTICALS" name="progenitor" score="1.000000" />
1840
+ <word cat="PHARMACEUTICALS" name="herbalif" score="1.000000" />
1841
+ <word cat="PHARMACEUTICALS" name="vistid" score="1.000000" />
1842
+ <word cat="PHARMACEUTICALS" name="biora" score="1.000000" />
1843
+ <word cat="PHARMACEUTICALS" name="thinprep" score="1.000000" />
1844
+ <word cat="PHARMACEUTICALS" name="ibah" score="1.000000" />
1845
+ <word cat="PHARMACEUTICALS" name="prilosec" score="1.000000" />
1846
+ <word cat="PHARMACEUTICALS" name="avonex" score="1.000000" />
1847
+ <word cat="PHARMACEUTICALS" name="anipryl" score="1.000000" />
1848
+ <word cat="PHARMACEUTICALS" name="grindex" score="1.000000" />
1849
+ <word cat="PHARMACEUTICALS" name="introgen" score="1.000000" />
1850
+ <word cat="PHARMACEUTICALS" name="genemedicin" score="1.000000" />
1851
+ <word cat="PHARMACEUTICALS" name="crixivan" score="1.000000" />
1852
+ <word cat="PHARMACEUTICALS" name="sepracor" score="1.000000" />
1853
+ <word cat="PHARMACEUTICALS" name="flamel" score="1.000000" />
1854
+ <word cat="PHARMACEUTICALS" name="transcriptas" score="1.000000" />
1855
+ <word cat="PHARMACEUTICALS" name="caraco" score="1.000000" />
1856
+ <word cat="PHARMACEUTICALS" name="phytopharm" score="1.000000" />
1857
+ <word cat="PHARMACEUTICALS" name="ventak" score="1.000000" />
1858
+ <word cat="PHARMACEUTICALS" name="cantab" score="1.000000" />
1859
+ <word cat="PHARMACEUTICALS" name="chemgen" score="1.000000" />
1860
+ <word cat="PHARMACEUTICALS" name="lamivudin" score="1.000000" />
1861
+ <word cat="PHARMACEUTICALS" name="biomatrix" score="1.000000" />
1862
+ <word cat="PHARMACEUTICALS" name="cistron" score="1.000000" />
1863
+ <word cat="PHARMACEUTICALS" name="lovenox" score="1.000000" />
1864
+ <word cat="PHARMACEUTICALS" name="anergen" score="1.000000" />
1865
+ <word cat="PHARMACEUTICALS" name="claritin" score="1.000000" />
1866
+ <word cat="PHARMACEUTICALS" name="regeneron" score="1.000000" />
1867
+ <word cat="PHARMACEUTICALS" name="combinatori" score="1.000000" />
1868
+ <word cat="PHARMACEUTICALS" name="ambisom" score="1.000000" />
1869
+ <word cat="PHARMACEUTICALS" name="nextran" score="1.000000" />
1870
+ <word cat="PHARMACEUTICALS" name="wockhardt" score="1.000000" />
1871
+ <word cat="PHARMACEUTICALS" name="selfcar" score="1.000000" />
1872
+ <word cat="PHARMACEUTICALS" name="neuromed" score="1.000000" />
1873
+ <word cat="PHARMACEUTICALS" name="lidak" score="1.000000" />
1874
+ <word cat="PHARMACEUTICALS" name="actiq" score="1.000000" />
1875
+ <word cat="PHARMACEUTICALS" name="envirom" score="1.000000" />
1876
+ <word cat="PHARMACEUTICALS" name="enbrel" score="1.000000" />
1877
+ <word cat="PHARMACEUTICALS" name="sunpharm" score="1.000000" />
1878
+ <word cat="PHARMACEUTICALS" name="anesta" score="1.000000" />
1879
+ <word cat="PHARMACEUTICALS" name="biopool" score="1.000000" />
1880
+ <word cat="PHARMACEUTICALS" name="blech" score="1.000000" />
1881
+ <word cat="PHARMACEUTICALS" name="geron" score="1.000000" />
1882
+ <word cat="PHARMACEUTICALS" name="shionogi" score="1.000000" />
1883
+ <word cat="PHARMACEUTICALS" name="cellex" score="1.000000" />
1884
+ <word cat="PHARMACEUTICALS" name="epivir" score="1.000000" />
1885
+ <word cat="PHARMACEUTICALS" name="neurogen" score="1.000000" />
1886
+ <word cat="PHARMACEUTICALS" name="vical" score="1.000000" />
1887
+ <word cat="PHARMACEUTICALS" name="taxol" score="1.000000" />
1888
+ <word cat="PHARMACEUTICALS" name="nichiko" score="1.000000" />
1889
+ <word cat="PHARMACEUTICALS" name="epitop" score="1.000000" />
1890
+ <word cat="PHARMACEUTICALS" name="oclassen" score="1.000000" />
1891
+ <word cat="PHARMACEUTICALS" name="biotranspl" score="1.000000" />
1892
+ <word cat="PHARMACEUTICALS" name="cortech" score="1.000000" />
1893
+ <word cat="PHARMACEUTICALS" name="celgen" score="1.000000" />
1894
+ <word cat="PHARMACEUTICALS" name="xytronyx" score="1.000000" />
1895
+ <word cat="PHARMACEUTICALS" name="seragen" score="1.000000" />
1896
+ <word cat="PHARMACEUTICALS" name="suzuken" score="1.000000" />
1897
+ <word cat="PHARMACEUTICALS" name="progesteron" score="1.000000" />
1898
+ <word cat="PHARMACEUTICALS" name="alkerm" score="1.000000" />
1899
+ <word cat="PHARMACEUTICALS" name="chemtrak" score="1.000000" />
1900
+ <word cat="PHARMACEUTICALS" name="druggist" score="1.000000" />
1901
+ <word cat="PHARMACEUTICALS" name="arri" score="1.000000" />
1902
+ <word cat="PHARMACEUTICALS" name="cholestech" score="1.000000" />
1903
+ <word cat="PHARMACEUTICALS" name="viropharma" score="1.000000" />
1904
+ <word cat="PHARMACEUTICALS" name="cytotherapeut" score="1.000000" />
1905
+ <word cat="PHARMACEUTICALS" name="allervax" score="1.000000" />
1906
+ <word cat="PHARMACEUTICALS" name="tengasco" score="1.000000" />
1907
+ <word cat="PHARMACEUTICALS" name="accol" score="1.000000" />
1908
+ <word cat="PHARMACEUTICALS" name="novavax" score="1.000000" />
1909
+ <word cat="PHARMACEUTICALS" name="excedrin" score="1.000000" />
1910
+ <word cat="PHARMACEUTICALS" name="fosamax" score="1.000000" />
1911
+ <word cat="PHARMACEUTICALS" name="alza" score="1.000000" />
1912
+ <word cat="PHARMACEUTICALS" name="atridox" score="1.000000" />
1913
+ <word cat="PHARMACEUTICALS" name="xoma" score="1.000000" />
1914
+ <word cat="PHARMACEUTICALS" name="aksi" score="1.000000" />
1915
+ <word cat="PHARMACEUTICALS" name="medeva" score="1.000000" />
1916
+ <word cat="PHARMACEUTICALS" name="cellegi" score="1.000000" />
1917
+ <word cat="PHARMACEUTICALS" name="noven" score="1.000000" />
1918
+ <word cat="PHARMACEUTICALS" name="cyclosporin" score="1.000000" />
1919
+ <word cat="PHARMACEUTICALS" name="leboy" score="1.000000" />
1920
+ <word cat="PHARMACEUTICALS" name="carvedilol" score="1.000000" />
1921
+ <word cat="PHARMACEUTICALS" name="ternbi" score="1.000000" />
1922
+ <word cat="PHARMACEUTICALS" name="banyu" score="1.000000" />
1923
+ <word cat="PHARMACEUTICALS" name="betaseron" score="1.000000" />
1924
+ <word cat="PHARMACEUTICALS" name="bioequival" score="1.000000" />
1925
+ <word cat="PHARMACEUTICALS" name="procept" score="1.000000" />
1926
+ <word cat="PHARMACEUTICALS" name="zonagen" score="1.000000" />
1927
+ <word cat="PHARMACEUTICALS" name="persept" score="1.000000" />
1928
+ <word cat="PHARMACEUTICALS" name="oncor" score="1.000000" />
1929
+ <word cat="PHARMACEUTICALS" name="neorx" score="1.000000" />
1930
+ <word cat="PHARMACEUTICALS" name="sequu" score="1.000000" />
1931
+ <word cat="PHARMACEUTICALS" name="neos" score="1.000000" />
1932
+ <word cat="PHARMACEUTICALS" name="immunex" score="1.000000" />
1933
+ <word cat="PHARMACEUTICALS" name="pharmaprint" score="1.000000" />
1934
+ <word cat="PHARMACEUTICALS" name="medarex" score="1.000000" />
1935
+ <word cat="PHARMACEUTICALS" name="immulog" score="1.000000" />
1936
+ <word cat="PHARMACEUTICALS" name="biovail" score="1.000000" />
1937
+ <word cat="PHARMACEUTICALS" name="senetek" score="1.000000" />
1938
+ <word cat="PHARMACEUTICALS" name="oravax" score="1.000000" />
1939
+ <word cat="PHARMACEUTICALS" name="grandpoint" score="1.000000" />
1940
+ <word cat="PHARMACEUTICALS" name="penederm" score="1.000000" />
1941
+ <word cat="PHARMACEUTICALS" name="mochida" score="1.000000" />
1942
+ <word cat="PHARMACEUTICALS" name="valtrex" score="1.000000" />
1943
+ <word cat="PHARMACEUTICALS" name="techniclon" score="1.000000" />
1944
+ <word cat="PHARMACEUTICALS" name="etodolac" score="1.000000" />
1945
+ <word cat="PHARMACEUTICALS" name="genzym" score="1.000000" />
1946
+ <word cat="PHARMACEUTICALS" name="dynagen" score="1.000000" />
1947
+ <word cat="PHARMACEUTICALS" name="leukoscan" score="1.000000" />
1948
+ <word cat="PHARMACEUTICALS" name="deprenyl" score="1.000000" />
1949
+ <word cat="PHARMACEUTICALS" name="estrasorb" score="1.000000" />
1950
+ <word cat="PHARMACEUTICALS" name="duram" score="1.000000" />
1951
+ <word cat="PHARMACEUTICALS" name="echogen" score="1.000000" />
1952
+ <word cat="PHARMACEUTICALS" name="martek" score="1.000000" />
1953
+ <word cat="PHARMACEUTICALS" name="alteon" score="1.000000" />
1954
+ <word cat="PHARMACEUTICALS" name="betaferon" score="1.000000" />
1955
+ <word cat="PHARMACEUTICALS" name="qlt" score="1.000000" />
1956
+ <word cat="PHARMACEUTICALS" name="myotrophin" score="1.000000" />
1957
+ <word cat="PHARMACEUTICALS" name="immudyn" score="1.000000" />
1958
+ <word cat="PHARMACEUTICALS" name="kissei" score="1.000000" />
1959
+ <word cat="PHARMACEUTICALS" name="neozym" score="1.000000" />
1960
+ <word cat="PHARMACEUTICALS" name="hybridon" score="1.000000" />
1961
+ <word cat="PHARMACEUTICALS" name="biocryst" score="1.000000" />
1962
+ <word cat="PHARMACEUTICALS" name="ngd" score="1.000000" />
1963
+ <word cat="PHARMACEUTICALS" name="gensia" score="1.000000" />
1964
+ <word cat="PHARMACEUTICALS" name="immunomed" score="1.000000" />
1965
+ <word cat="PHARMACEUTICALS" name="lxr" score="1.000000" />
1966
+ <word cat="PHARMACEUTICALS" name="periostat" score="1.000000" />
1967
+ <word cat="PHARMACEUTICALS" name="cytogen" score="1.000000" />
1968
+ <word cat="PHARMACEUTICALS" name="draxi" score="1.000000" />
1969
+ <word cat="PHARMACEUTICALS" name="cocensi" score="1.000000" />
1970
+ <word cat="PHARMACEUTICALS" name="aronex" score="1.000000" />
1971
+ <word cat="PHARMACEUTICALS" name="lipitor" score="1.000000" />
1972
+ <word cat="PHARMACEUTICALS" name="berlex" score="1.000000" />
1973
+ <word cat="PHARMACEUTICALS" name="sciclon" score="1.000000" />
1974
+ <word cat="PHARMACEUTICALS" name="abaxi" score="1.000000" />
1975
+ <word cat="PHARMACEUTICALS" name="diatid" score="1.000000" />
1976
+ <word cat="PHARMACEUTICALS" name="taisho" score="1.000000" />
1977
+ <word cat="PHARMACEUTICALS" name="capoten" score="1.000000" />
1978
+ <word cat="PHARMACEUTICALS" name="napro" score="1.000000" />
1979
+ <word cat="PHARMACEUTICALS" name="sangstat" score="1.000000" />
1980
+ <word cat="PHARMACEUTICALS" name="medimmun" score="1.000000" />
1981
+ <word cat="PHARMACEUTICALS" name="hycamtin" score="1.000000" />
1982
+ <word cat="PHARMACEUTICALS" name="cytyc" score="1.000000" />
1983
+ <word cat="PHARMACEUTICALS" name="cytrx" score="1.000000" />
1984
+ <word cat="PHARMACEUTICALS" name="centocor" score="1.000000" />
1985
+ <word cat="PHARMACEUTICALS" name="cytel" score="1.000000" />
1986
+ <word cat="PHARMACEUTICALS" name="zerit" score="1.000000" />
1987
+ <word cat="PHARMACEUTICALS" name="pharmacycl" score="1.000000" />
1988
+ <word cat="PHARMACEUTICALS" name="etoposid" score="1.000000" />
1989
+ <word cat="PHARMACEUTICALS" name="perrigo" score="1.000000" />
1990
+ <word cat="PHARMACEUTICALS" name="zomig" score="1.000000" />
1991
+ <word cat="PHARMACEUTICALS" name="sugen" score="1.000000" />
1992
+ <word cat="PHARMACEUTICALS" name="incstar" score="1.000000" />
1993
+ <word cat="PHARMACEUTICALS" name="galagen" score="1.000000" />
1994
+ <word cat="PHARMACEUTICALS" name="corva" score="1.000000" />
1995
+ <word cat="PHARMACEUTICALS" name="reopro" score="1.000000" />
1996
+ <word cat="PHARMACEUTICALS" name="diltiazem" score="1.000000" />
1997
+ <word cat="PHARMACEUTICALS" name="genelab" score="1.000000" />
1998
+ <word cat="PHARMACEUTICALS" name="gilead" score="1.000000" />
1999
+ <word cat="PHARMACEUTICALS" name="somatix" score="1.000000" />
2000
+ <word cat="PHARMACEUTICALS" name="synvisc" score="1.000000" />
2001
+ <word cat="PHARMACEUTICALS" name="magainin" score="1.000000" />
2002
+ <word cat="PHARMACEUTICALS" name="ostex" score="1.000000" />
2003
+ <word cat="PHARMACEUTICALS" name="biomedix" score="1.000000" />
2004
+ <word cat="PHARMACEUTICALS" name="nadro" score="1.000000" />
2005
+ <word cat="PHARMACEUTICALS" name="abelcet" score="1.000000" />
2006
+ <word cat="PHARMACEUTICALS" name="somatogen" score="1.000000" />
2007
+ <word cat="PHARMACEUTICALS" name="celtrix" score="1.000000" />
2008
+ <word cat="PHARMACEUTICALS" name="padfield" score="1.000000" />
2009
+ <word cat="PHARMACEUTICALS" name="collagenex" score="1.000000" />
2010
+ <word cat="PHARMACEUTICALS" name="pramlintid" score="1.000000" />
2011
+ <word cat="PHARMACEUTICALS" name="antex" score="1.000000" />
2012
+ <word cat="PHARMACEUTICALS" name="incyt" score="1.000000" />
2013
+ <word cat="PHARMACEUTICALS" name="somanet" score="1.000000" />
2014
+ <word cat="PHARMACEUTICALS" name="ayerst" score="1.000000" />
2015
+ <word cat="PHARMACEUTICALS" name="synbiot" score="1.000000" />
2016
+ <word cat="PHARMACEUTICALS" name="neurex" score="1.000000" />
2017
+ <word cat="PHARMACEUTICALS" name="cadu" score="1.000000" />
2018
+ <word cat="PHARMACEUTICALS" name="pearlstein" score="1.000000" />
2019
+ <word cat="PHARMACEUTICALS" name="sonu" score="1.000000" />
2020
+ <word cat="PHARMACEUTICALS" name="houghten" score="1.000000" />
2021
+ <word cat="PHARMACEUTICALS" name="chirex" score="1.000000" />
2022
+ <word cat="PHARMACEUTICALS" name="peptor" score="1.000000" />
2023
+ <word cat="PHARMACEUTICALS" name="ranitidin" score="1.000000" />
2024
+ <word cat="PHARMACEUTICALS" name="ribozym" score="1.000000" />
2025
+ <word cat="PHARMACEUTICALS" name="integrilin" score="1.000000" />
2026
+ <word cat="PHARMACEUTICALS" name="pathogenesi" score="1.000000" />
2027
+ <word cat="PHARMACEUTICALS" name="avigen" score="1.000000" />
2028
+ <word cat="PHARMACEUTICALS" name="quintil" score="1.000000" />
2029
+ <word cat="PHARMACEUTICALS" name="lifecor" score="1.000000" />
2030
+ <word cat="PHARMACEUTICALS" name="lifecel" score="1.000000" />
2031
+ <word cat="PHARMACEUTICALS" name="supergen" score="1.000000" />
2032
+ <word cat="PHARMACEUTICALS" name="crinon" score="1.000000" />
2033
+ <word cat="PHARMACEUTICALS" name="editek" score="1.000000" />
2034
+ <word cat="PHARMACEUTICALS" name="multiplan" score="1.000000" />
2035
+ <word cat="DIRECT MARKETING" name="beauticontrol" score="1.000000" />
2036
+ <word cat="DIRECT MARKETING" name="damark" score="1.000000" />
2037
+ <word cat="TIMEKEEPING EQUIPMENT" name="movado" score="1.000000" />
2038
+ <word cat="TIMEKEEPING EQUIPMENT" name="stelux" score="1.000000" />
2039
+ <word cat="BUILDING INSTALLATIONS" name="gijutsu" score="1.000000" />
2040
+ <word cat="BUILDING INSTALLATIONS" name="chempow" score="1.000000" />
2041
+ <word cat="CHEMICAL INDUSTRY MACHINERY" name="kakoki" score="1.000000" />
2042
+ <word cat="CHEMICAL INDUSTRY MACHINERY" name="betzdearborn" score="1.000000" />
2043
+ <word cat="CHEMICAL INDUSTRY MACHINERY" name="foilmark" score="1.000000" />
2044
+ <word cat="CHEMICAL INDUSTRY MACHINERY" name="roki" score="1.000000" />
2045
+ <word cat="CHEMICAL INDUSTRY MACHINERY" name="larox" score="1.000000" />
2046
+ <word cat="CHEMICAL INDUSTRY MACHINERY" name="prochem" score="1.000000" />
2047
+ <word cat="ADVERTISING AGENCIES" name="kikaku" score="1.000000" />
2048
+ <word cat="ADVERTISING AGENCIES" name="tostmann" score="1.000000" />
2049
+ <word cat="ADVERTISING AGENCIES" name="schoep" score="1.000000" />
2050
+ <word cat="JEWELLERY" name="kosaikogei" score="1.000000" />
2051
+ <word cat="JEWELLERY" name="hohrin" score="1.000000" />
2052
+ <word cat="JEWELLERY" name="tasaki" score="1.000000" />
2053
+ <word cat="JEWELLERY" name="shinju" score="1.000000" />
2054
+ <word cat="JEWELLERY" name="oroamerica" score="1.000000" />
2055
+ <word cat="INSTRUMENT ENGINEERING" name="diasi" score="1.000000" />
2056
+ <word cat="INSTRUMENT ENGINEERING" name="puru" score="1.000000" />
2057
+ <word cat="INSTRUMENT ENGINEERING" name="ametek" score="1.000000" />
2058
+ <word cat="WOODEN FURNITURE" name="knape" score="1.000000" />
2059
+ <word cat="WOODEN FURNITURE" name="chromcraft" score="1.000000" />
2060
+ <word cat="POSTAL SERVICES" name="sfei" score="1.000000" />
2061
+ <word cat="POSTAL SERVICES" name="helfert" score="1.000000" />
2062
+ <word cat="COMPUTER MAINTENANCE AND SUPPORT" name="strategia" score="1.000000" />
2063
+ <word cat="BOILERS AND PROCESS PLANT FABRICATIONS" name="kotlow" score="1.000000" />
2064
+ <word cat="ELECTRICAL APPLIANCES" name="multibra" score="1.000000" />
2065
+ <word cat="ELECTRICAL APPLIANCES" name="enix" score="1.000000" />
2066
+ <word cat="ELECTRICAL APPLIANCES" name="brasmotor" score="1.000000" />
2067
+ <word cat="ELECTRICAL APPLIANCES" name="refripar" score="1.000000" />
2068
+ <word cat="ELECTRICAL APPLIANCES" name="juki" score="1.000000" />
2069
+ <word cat="MISCELLANEOUS FOODS" name="coffeemix" score="1.000000" />
2070
+ <word cat="MISCELLANEOUS FOODS" name="opta" score="1.000000" />
2071
+ <word cat="MISCELLANEOUS FOODS" name="tokatsu" score="1.000000" />
2072
+ <word cat="HOSPITALS AND HEALTHCARE" name="iatro" score="1.000000" />
2073
+ <word cat="HOSPITALS AND HEALTHCARE" name="novacar" score="1.000000" />
2074
+ <word cat="HOSPITALS AND HEALTHCARE" name="biodynam" score="1.000000" />
2075
+ <word cat="HOSPITALS AND HEALTHCARE" name="teamcar" score="1.000000" />
2076
+ <word cat="HOSPITALS AND HEALTHCARE" name="carematrix" score="1.000000" />
2077
+ <word cat="HOSPITALS AND HEALTHCARE" name="cryomed" score="1.000000" />
2078
+ <word cat="HOSPITALS AND HEALTHCARE" name="brookdal" score="1.000000" />
2079
+ <word cat="HOSPITALS AND HEALTHCARE" name="intermed" score="1.000000" />
2080
+ <word cat="HOSPITALS AND HEALTHCARE" name="mhm" score="1.000000" />
2081
+ <word cat="HOSPITALS AND HEALTHCARE" name="emcar" score="1.000000" />
2082
+ <word cat="HOSPITALS AND HEALTHCARE" name="rightchoic" score="1.000000" />
2083
+ <word cat="HOSPITALS AND HEALTHCARE" name="apria" score="1.000000" />
2084
+ <word cat="HOSPITALS AND HEALTHCARE" name="terumo" score="1.000000" />
2085
+ <word cat="HOSPITALS AND HEALTHCARE" name="amsurg" score="1.000000" />
2086
+ <word cat="HOSPITALS AND HEALTHCARE" name="akorn" score="1.000000" />
2087
+ <word cat="HOSPITALS AND HEALTHCARE" name="caremark" score="1.000000" />
2088
+ <word cat="HOSPITALS AND HEALTHCARE" name="corvel" score="1.000000" />
2089
+ <word cat="HOSPITALS AND HEALTHCARE" name="equim" score="1.000000" />
2090
+ <word cat="HOSPITALS AND HEALTHCARE" name="inphynet" score="1.000000" />
2091
+ <word cat="HOSPITALS AND HEALTHCARE" name="promedco" score="1.000000" />
2092
+ <word cat="HOSPITALS AND HEALTHCARE" name="boshart" score="1.000000" />
2093
+ <word cat="HOSPITALS AND HEALTHCARE" name="theratx" score="1.000000" />
2094
+ <word cat="HOSPITALS AND HEALTHCARE" name="matricaria" score="1.000000" />
2095
+ <word cat="HOSPITALS AND HEALTHCARE" name="wellcar" score="1.000000" />
2096
+ <word cat="HOSPITALS AND HEALTHCARE" name="homepati" score="1.000000" />
2097
+ <word cat="HOSPITALS AND HEALTHCARE" name="xillix" score="1.000000" />
2098
+ <word cat="HOSPITALS AND HEALTHCARE" name="rehabcar" score="1.000000" />
2099
+ <word cat="HOSPITALS AND HEALTHCARE" name="zaucha" score="1.000000" />
2100
+ <word cat="HOSPITALS AND HEALTHCARE" name="lincar" score="1.000000" />
2101
+ <word cat="HOSPITALS AND HEALTHCARE" name="vitalink" score="1.000000" />
2102
+ <word cat="HOSPITALS AND HEALTHCARE" name="hearx" score="1.000000" />
2103
+ <word cat="HOSPITALS AND HEALTHCARE" name="laservis" score="1.000000" />
2104
+ <word cat="HOSPITALS AND HEALTHCARE" name="integram" score="1.000000" />
2105
+ <word cat="HOSPITALS AND HEALTHCARE" name="readicar" score="1.000000" />
2106
+ <word cat="HOSPITALS AND HEALTHCARE" name="choicecar" score="1.000000" />
2107
+ <word cat="HOSPITALS AND HEALTHCARE" name="heartport" score="1.000000" />
2108
+ <word cat="HOSPITALS AND HEALTHCARE" name="pediatrix" score="1.000000" />
2109
+ <word cat="HOSPITALS AND HEALTHCARE" name="occusystem" score="1.000000" />
2110
+ <word cat="HOSPITALS AND HEALTHCARE" name="phycor" score="1.000000" />
2111
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="nidec" score="1.000000" />
2112
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="togami" score="1.000000" />
2113
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="photocomm" score="1.000000" />
2114
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="nattelfus" score="1.000000" />
2115
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="amerigon" score="1.000000" />
2116
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="baldor" score="1.000000" />
2117
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="iriso" score="1.000000" />
2118
+ <word cat="BASIC ELECTRICAL EQUIPMENT" name="zurn" score="1.000000" />
2119
+ <word cat="COPPER AND COPPER ALLOYS" name="shindoh" score="1.000000" />
2120
+ <word cat="COPPER AND COPPER ALLOYS" name="palabora" score="1.000000" />
2121
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="afilli" score="1.000000" />
2122
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="intermagnet" score="1.000000" />
2123
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="multistack" score="1.000000" />
2124
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="dainichi" score="1.000000" />
2125
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="kelon" score="1.000000" />
2126
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="fukusima" score="1.000000" />
2127
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="oncho" score="1.000000" />
2128
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="totech" score="1.000000" />
2129
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="rooter" score="1.000000" />
2130
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="watsco" score="1.000000" />
2131
+ <word cat="REFRIGERATING, HEATING, AIR CONDITIONING" name="haier" score="1.000000" />
2132
+ <word cat="IRON AND STEEL" name="whx" score="0.991935" />
2133
+ <word cat="IRON AND STEEL" name="koniambo" score="1.000000" />
2134
+ <word cat="IRON AND STEEL" name="komai" score="1.000000" />
2135
+ <word cat="IRON AND STEEL" name="maanshan" score="1.000000" />
2136
+ <word cat="IRON AND STEEL" name="kivimaki" score="1.000000" />
2137
+ <word cat="IRON AND STEEL" name="mfl" score="1.000000" />
2138
+ <word cat="IRON AND STEEL" name="castpart" score="1.000000" />
2139
+ <word cat="IRON AND STEEL" name="aco" score="1.000000" />
2140
+ <word cat="IRON AND STEEL" name="kawatetsu" score="1.000000" />
2141
+ <word cat="IRON AND STEEL" name="quanex" score="1.000000" />
2142
+ <word cat="IRON AND STEEL" name="kanak" score="1.000000" />
2143
+ <word cat="IRON AND STEEL" name="ivaco" score="1.000000" />
2144
+ <word cat="IRON AND STEEL" name="wellek" score="1.000000" />
2145
+ <word cat="IRON AND STEEL" name="smsp" score="1.000000" />
2146
+ <word cat="IRON AND STEEL" name="sollac" score="1.000000" />
2147
+ <word cat="IRON AND STEEL" name="koshuha" score="1.000000" />
2148
+ <word cat="IRON AND STEEL" name="kohtai" score="1.000000" />
2149
+ <word cat="IRON AND STEEL" name="mineira" score="1.000000" />
2150
+ <word cat="IRON AND STEEL" name="imsa" score="1.000000" />
2151
+ <word cat="IRON AND STEEL" name="weirton" score="1.000000" />
2152
+ <word cat="CLEANING SERVICES" name="aaxi" score="1.000000" />
2153
+ <word cat="FOOD PROCESSING MACHINERY" name="sanjo" score="1.000000" />
2154
+ <word cat="FOOD PROCESSING MACHINERY" name="rheon" score="1.000000" />
2155
+ <word cat="INDUSTRIAL PLANT AND STEELWORK" name="tsukishima" score="1.000000" />
2156
+ <word cat="INDUSTRIAL PLANT AND STEELWORK" name="micromus" score="1.000000" />
2157
+ <word cat="INDUSTRIAL PLANT AND STEELWORK" name="kanetsu" score="1.000000" />
2158
+ <word cat="INDUSTRIAL PLANT AND STEELWORK" name="singama" score="1.000000" />
2159
+ <word cat="INDUSTRIAL PLANT AND STEELWORK" name="sakurada" score="1.000000" />
2160
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="seikan" score="1.000000" />
2161
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="ramset" score="1.000000" />
2162
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="lobtex" score="1.000000" />
2163
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="sealright" score="1.000000" />
2164
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="lubeca" score="1.000000" />
2165
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="jpe" score="1.000000" />
2166
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="minebea" score="1.000000" />
2167
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="gantan" score="1.000000" />
2168
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="buildmax" score="1.000000" />
2169
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="kinark" score="1.000000" />
2170
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="harsco" score="1.000000" />
2171
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="nansin" score="1.000000" />
2172
+ <word cat="METAL GOODS INCL. NUTS AND BOLTS" name="autocam" score="1.000000" />
2173
+ <word cat="CLOTHING STORES" name="konaka" score="1.000000" />
2174
+ <word cat="CLOTHING STORES" name="gymbore" score="1.000000" />
2175
+ <word cat="CLOTHING STORES" name="lamac" score="1.000000" />
2176
+ <word cat="CLOTHING STORES" name="senza" score="1.000000" />
2177
+ <word cat="CLOTHING STORES" name="wearhous" score="1.000000" />
2178
+ <word cat="CATTLE FARMING" name="creutzfeld" score="1.000000" />
2179
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="bougi" score="1.000000" />
2180
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="rackwitz" score="1.000000" />
2181
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="aluar" score="1.000000" />
2182
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="easco" score="1.000000" />
2183
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="rodier" score="1.000000" />
2184
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="alyuminii" score="1.000000" />
2185
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="aluv" score="1.000000" />
2186
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="lekkich" score="1.000000" />
2187
+ <word cat="ALUMINIUM AND ALUMINIUM ALLOYS" name="tiwai" score="1.000000" />
2188
+ <word cat="COMPRESSORS, HYDRAULIC, PNEUMATIC" name="kitz" score="1.000000" />
2189
+ <word cat="COMPRESSORS, HYDRAULIC, PNEUMATIC" name="yuken" score="1.000000" />
2190
+ <word cat="COMPRESSORS, HYDRAULIC, PNEUMATIC" name="cuno" score="1.000000" />
2191
+ <word cat="FOOD RETAILING" name="matsumotokiyoshi" score="1.000000" />
2192
+ <word cat="FOOD RETAILING" name="kasumi" score="1.000000" />
2193
+ <word cat="FOOD RETAILING" name="heiwado" score="1.000000" />
2194
+ <word cat="FOOD RETAILING" name="guangnan" score="1.000000" />
2195
+ <word cat="FOOD RETAILING" name="doutor" score="1.000000" />
2196
+ <word cat="FOOD RETAILING" name="yokado" score="1.000000" />
2197
+ <word cat="FOOD RETAILING" name="benimaru" score="1.000000" />
2198
+ <word cat="FOOD RETAILING" name="izumiya" score="1.000000" />
2199
+ <word cat="FOOD RETAILING" name="marukyu" score="1.000000" />
2200
+ <word cat="FOOD RETAILING" name="shokubun" score="1.000000" />
2201
+ <word cat="FOOD RETAILING" name="kimisawa" score="1.000000" />
2202
+ <word cat="FOOD RETAILING" name="familymart" score="1.000000" />
2203
+ <word cat="FOOD RETAILING" name="tenmaya" score="1.000000" />
2204
+ <word cat="FOOD RETAILING" name="seiyu" score="1.000000" />
2205
+ <word cat="FOOD RETAILING" name="ministop" score="1.000000" />
2206
+ <word cat="CYCLES AND MOTOR CYCLES" name="sundiro" score="1.000000" />
2207
+ <word cat="CYCLES AND MOTOR CYCLES" name="cannondal" score="1.000000" />
2208
+ <word cat="CYCLES AND MOTOR CYCLES" name="maruishi" score="1.000000" />
2209
+ <word cat="CYCLES AND MOTOR CYCLES" name="rockshox" score="1.000000" />
2210
+ <word cat="CEMENT, LIME AND PLASTER" name="jalaprathan" score="1.000000" />
2211
+ <word cat="CEMENT, LIME AND PLASTER" name="unicem" score="1.000000" />
2212
+ <word cat="CEMENT, LIME AND PLASTER" name="glari" score="1.000000" />
2213
+ <word cat="CEMENT, LIME AND PLASTER" name="vencemo" score="1.000000" />
2214
+ <word cat="CEMENT, LIME AND PLASTER" name="apasco" score="1.000000" />
2215
+ <word cat="CEMENT, LIME AND PLASTER" name="cahya" score="1.000000" />
2216
+ <word cat="CEMENT, LIME AND PLASTER" name="nesher" score="1.000000" />
2217
+ <word cat="RUBBER AND PLASTICS PROCESSING" name="stimsonit" score="1.000000" />
2218
+ <word cat="ELECTRONIC CONSUMER GOODS" name="ezconi" score="1.000000" />
2219
+ <word cat="ELECTRONIC CONSUMER GOODS" name="shintom" score="1.000000" />
2220
+ <word cat="ELECTRONIC CONSUMER GOODS" name="soundwork" score="1.000000" />
2221
+ <word cat="ELECTRONIC CONSUMER GOODS" name="nikkodo" score="1.000000" />
2222
+ <word cat="ELECTRONIC CONSUMER GOODS" name="maginet" score="1.000000" />
2223
+ <word cat="ELECTRONIC CONSUMER GOODS" name="audiovox" score="1.000000" />
2224
+ <word cat="ELECTRONIC CONSUMER GOODS" name="bodyson" score="1.000000" />
2225
+ <word cat="ELECTRONIC CONSUMER GOODS" name="projectavis" score="1.000000" />
2226
+ <word cat="ELECTRONIC CONSUMER GOODS" name="tomei" score="1.000000" />
2227
+ <word cat="SOFT DRINKS" name="panamco" score="1.000000" />
2228
+ <word cat="SOFT DRINKS" name="agral" score="1.000000" />
2229
+ <word cat="SOFT DRINKS" name="contal" score="1.000000" />
2230
+ <word cat="SOFT DRINKS" name="emvasa" score="1.000000" />
2231
+ <word cat="SOFT DRINKS" name="calpi" score="1.000000" />
2232
+ <word cat="METAL ORE EXTRACTION" name="lepani" score="1.000000" />
2233
+ <word cat="METAL ORE EXTRACTION" name="tarkwa" score="1.000000" />
2234
+ <word cat="METAL ORE EXTRACTION" name="yamana" score="1.000000" />
2235
+ <word cat="METAL ORE EXTRACTION" name="westgold" score="1.000000" />
2236
+ <word cat="METAL ORE EXTRACTION" name="askatindo" score="1.000000" />
2237
+ <word cat="METAL ORE EXTRACTION" name="kidston" score="1.000000" />
2238
+ <word cat="METAL ORE EXTRACTION" name="exal" score="1.000000" />
2239
+ <word cat="METAL ORE EXTRACTION" name="pancontinent" score="1.000000" />
2240
+ <word cat="METAL ORE EXTRACTION" name="grimwood" score="1.000000" />
2241
+ <word cat="METAL ORE EXTRACTION" name="geomaqu" score="1.000000" />
2242
+ <word cat="METAL ORE EXTRACTION" name="erpm" score="1.000000" />
2243
+ <word cat="METAL ORE EXTRACTION" name="omai" score="1.000000" />
2244
+ <word cat="METAL ORE EXTRACTION" name="mangkusubroto" score="1.000000" />
2245
+ <word cat="METAL ORE EXTRACTION" name="kanowna" score="1.000000" />
2246
+ <word cat="METAL ORE EXTRACTION" name="roundtop" score="1.000000" />
2247
+ <word cat="METAL ORE EXTRACTION" name="nuinsco" score="1.000000" />
2248
+ <word cat="METAL ORE EXTRACTION" name="auridiam" score="1.000000" />
2249
+ <word cat="METAL ORE EXTRACTION" name="macmin" score="1.000000" />
2250
+ <word cat="METAL ORE EXTRACTION" name="crystallex" score="1.000000" />
2251
+ <word cat="METAL ORE EXTRACTION" name="lydenburg" score="1.000000" />
2252
+ <word cat="METAL ORE EXTRACTION" name="oaki" score="1.000000" />
2253
+ <word cat="METAL ORE EXTRACTION" name="azco" score="1.000000" />
2254
+ <word cat="METAL ORE EXTRACTION" name="benco" score="1.000000" />
2255
+ <word cat="METAL ORE EXTRACTION" name="usmx" score="1.000000" />
2256
+ <word cat="METAL ORE EXTRACTION" name="rz" score="1.000000" />
2257
+ <word cat="METAL ORE EXTRACTION" name="asturienn" score="1.000000" />
2258
+ <word cat="METAL ORE EXTRACTION" name="monadelph" score="1.000000" />
2259
+ <word cat="METAL ORE EXTRACTION" name="democrito" score="1.000000" />
2260
+ <word cat="METAL ORE EXTRACTION" name="lydex" score="1.000000" />
2261
+ <word cat="METAL ORE EXTRACTION" name="agnico" score="1.000000" />
2262
+ <word cat="METAL ORE EXTRACTION" name="devex" score="1.000000" />
2263
+ <word cat="METAL ORE EXTRACTION" name="yandi" score="1.000000" />
2264
+ <word cat="METAL ORE EXTRACTION" name="metallica" score="1.000000" />
2265
+ <word cat="METAL ORE EXTRACTION" name="cornishman" score="1.000000" />
2266
+ <word cat="METAL ORE EXTRACTION" name="djerriwarrh" score="1.000000" />
2267
+ <word cat="METAL ORE EXTRACTION" name="perilya" score="1.000000" />
2268
+ <word cat="METAL ORE EXTRACTION" name="kalgold" score="1.000000" />
2269
+ <word cat="METAL ORE EXTRACTION" name="sotho" score="1.000000" />
2270
+ <word cat="METAL ORE EXTRACTION" name="nonoc" score="1.000000" />
2271
+ <word cat="METAL ORE EXTRACTION" name="winkelhaak" score="1.000000" />
2272
+ <word cat="METAL ORE EXTRACTION" name="ausmelt" score="1.000000" />
2273
+ <word cat="METAL ORE EXTRACTION" name="arboyn" score="1.000000" />
2274
+ <word cat="METAL ORE EXTRACTION" name="qmc" score="1.000000" />
2275
+ <word cat="METAL ORE EXTRACTION" name="topi" score="1.000000" />
2276
+ <word cat="METAL ORE EXTRACTION" name="ectec" score="1.000000" />
2277
+ <word cat="METAL ORE EXTRACTION" name="kdc" score="1.000000" />
2278
+ <word cat="METAL ORE EXTRACTION" name="navan" score="1.000000" />
2279
+ <word cat="METAL ORE EXTRACTION" name="goldridg" score="1.000000" />
2280
+ <word cat="METAL ORE EXTRACTION" name="motlatsi" score="1.000000" />
2281
+ <word cat="METAL ORE EXTRACTION" name="penol" score="1.000000" />
2282
+ <word cat="METAL ORE EXTRACTION" name="vasilkovskoy" score="1.000000" />
2283
+ <word cat="METAL ORE EXTRACTION" name="blyvoor" score="1.000000" />
2284
+ <word cat="METAL ORE EXTRACTION" name="randex" score="1.000000" />
2285
+ <word cat="METAL ORE EXTRACTION" name="correnti" score="1.000000" />
2286
+ <word cat="METAL ORE EXTRACTION" name="willson" score="1.000000" />
2287
+ <word cat="METAL ORE EXTRACTION" name="metat" score="1.000000" />
2288
+ <word cat="METAL ORE EXTRACTION" name="mael" score="1.000000" />
2289
+ <word cat="METAL ORE EXTRACTION" name="kapok" score="1.000000" />
2290
+ <word cat="METAL ORE EXTRACTION" name="nimari" score="1.000000" />
2291
+ <word cat="METAL ORE EXTRACTION" name="guyanor" score="1.000000" />
2292
+ <word cat="METAL ORE EXTRACTION" name="oglebai" score="1.000000" />
2293
+ <word cat="METAL ORE EXTRACTION" name="smsp" score="1.000000" />
2294
+ <word cat="METAL ORE EXTRACTION" name="lisheen" score="1.000000" />
2295
+ <word cat="METAL ORE EXTRACTION" name="leplat" score="1.000000" />
2296
+ <word cat="METAL ORE EXTRACTION" name="cambior" score="1.000000" />
2297
+ <word cat="METAL ORE EXTRACTION" name="iocc" score="1.000000" />
2298
+ <word cat="METAL ORE EXTRACTION" name="leggatt" score="1.000000" />
2299
+ <word cat="METAL ORE EXTRACTION" name="digimu" score="1.000000" />
2300
+ <word cat="METAL ORE EXTRACTION" name="hecla" score="1.000000" />
2301
+ <word cat="METAL ORE EXTRACTION" name="yauricocha" score="1.000000" />
2302
+ <word cat="PHOTOGRAPHIC EQUIPMENT" name="xillix" score="1.000000" />
2303
+ <word cat="PHOTOGRAPHIC EQUIPMENT" name="videon" score="1.000000" />
2304
+ <word cat="PHOTOGRAPHIC EQUIPMENT" name="kaveta" score="1.000000" />
2305
+ <word cat="PHOTOGRAPHIC EQUIPMENT" name="noritsu" score="1.000000" />
2306
+ <word cat="PHOTOGRAPHIC EQUIPMENT" name="presstek" score="1.000000" />
2307
+ <word cat="PHOTOGRAPHIC EQUIPMENT" name="advantix" score="1.000000" />
2308
+ <word cat="PHOTOGRAPHIC EQUIPMENT" name="tamron" score="1.000000" />
2309
+ <word cat="SPIRITS DISTILLING" name="ltdi" score="1.000000" />
2310
+ <word cat="SPIRITS DISTILLING" name="soju" score="1.000000" />
2311
+ <word cat="SPIRITS DISTILLING" name="agav" score="1.000000" />
2312
+ <word cat="SPIRITS DISTILLING" name="gamework" score="1.000000" />
2313
+ <word cat="SPIRITS DISTILLING" name="heidsieck" score="1.000000" />
2314
+ <word cat="BARS AND PUBLIC HOUSES" name="pubmast" score="1.000000" />
2315
+ <word cat="COMPONENTS FOR ELECTRONIC GOODS" name="mitsumi" score="1.000000" />
2316
+ <word cat="COMPONENTS FOR ELECTRONIC GOODS" name="jalco" score="1.000000" />
2317
+ <word cat="COMPONENTS FOR ELECTRONIC GOODS" name="sansui" score="1.000000" />
2318
+ <word cat="COMPONENTS FOR ELECTRONIC GOODS" name="baoshi" score="1.000000" />
2319
+ <word cat="COMPONENTS FOR ELECTRONIC GOODS" name="hakuto" score="1.000000" />
2320
+ <word cat="SUGAR AND SUGAR PRODUCTS" name="stendevad" score="1.000000" />
2321
+ <word cat="SUGAR AND SUGAR PRODUCTS" name="pillard" score="1.000000" />
2322
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="symmetricom" score="1.000000" />
2323
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="edelston" score="1.000000" />
2324
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="kurlak" score="1.000000" />
2325
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="chuomusen" score="1.000000" />
2326
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="pistorio" score="1.000000" />
2327
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="dauvin" score="1.000000" />
2328
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="startac" score="1.000000" />
2329
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="enomoto" score="1.000000" />
2330
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="triquint" score="1.000000" />
2331
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="wavetop" score="1.000000" />
2332
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="soshin" score="1.000000" />
2333
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="aylesworth" score="1.000000" />
2334
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="shindengen" score="1.000000" />
2335
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="micrel" score="1.000000" />
2336
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="microlyt" score="1.000000" />
2337
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="gason" score="1.000000" />
2338
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="xicor" score="1.000000" />
2339
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="dempa" score="1.000000" />
2340
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="compcor" score="1.000000" />
2341
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="photron" score="1.000000" />
2342
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="ipec" score="1.000000" />
2343
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="conceptron" score="1.000000" />
2344
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="ramtron" score="1.000000" />
2345
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="drobni" score="1.000000" />
2346
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="seimitsu" score="1.000000" />
2347
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="altera" score="1.000000" />
2348
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="mimasu" score="1.000000" />
2349
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="charn" score="1.000000" />
2350
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="telsim" score="1.000000" />
2351
+ <word cat="ELECTRONIC ACTIVE COMPONENTS" name="exar" score="1.000000" />
2352
+ <word cat="WATER SUPPLY" name="glotin" score="1.000000" />
2353
+ <word cat="WATER SUPPLY" name="aquarion" score="1.000000" />
2354
+ <word cat="WATER SUPPLY" name="suido" score="1.000000" />
2355
+ <word cat="WATER SUPPLY" name="cgea" score="1.000000" />
2356
+ <word cat="OTHER TRANSPORT EQUIPMENT HIRE" name="gatx" score="1.000000" />
2357
+ <word cat="SPORTING EQUIPMENT" name="innovo" score="1.000000" />
2358
+ <word cat="PRODUCT TRADING AND BROKING" name="miyahara" score="1.000000" />
2359
+ <word cat="PRODUCT TRADING AND BROKING" name="burwil" score="1.000000" />
2360
+ <word cat="PRODUCT TRADING AND BROKING" name="seieido" score="1.000000" />
2361
+ <word cat="PRODUCT TRADING AND BROKING" name="threlkeld" score="1.000000" />
2362
+ <word cat="PRODUCT TRADING AND BROKING" name="iuchi" score="1.000000" />
2363
+ <word cat="PRODUCT TRADING AND BROKING" name="koeki" score="1.000000" />
2364
+ <word cat="PRODUCT TRADING AND BROKING" name="kawab" score="1.000000" />
2365
+ <word cat="PRODUCT TRADING AND BROKING" name="nadex" score="1.000000" />
2366
+ <word cat="PRODUCT TRADING AND BROKING" name="unidux" score="1.000000" />
2367
+ <word cat="PRODUCT TRADING AND BROKING" name="chaifa" score="1.000000" />
2368
+ <word cat="PRODUCT TRADING AND BROKING" name="chiew" score="1.000000" />
2369
+ <word cat="PRODUCT TRADING AND BROKING" name="turkistuottajat" score="1.000000" />
2370
+ <word cat="PRODUCT TRADING AND BROKING" name="technotron" score="1.000000" />
2371
+ <word cat="PRODUCT TRADING AND BROKING" name="yugang" score="1.000000" />
2372
+ <word cat="PRODUCT TRADING AND BROKING" name="dransfield" score="1.000000" />
2373
+ <word cat="NUCLEAR POWER" name="heysham" score="1.000000" />
2374
+ <word cat="NUCLEAR POWER" name="hinklei" score="1.000000" />
2375
+ <word cat="NUCLEAR POWER" name="hunterston" score="1.000000" />
2376
+ <word cat="ROAD HAULAGE" name="konpo" score="1.000000" />
2377
+ <word cat="ROAD HAULAGE" name="thulani" score="1.000000" />
2378
+ <word cat="ROAD HAULAGE" name="kllm" score="1.000000" />
2379
+ <word cat="ROAD HAULAGE" name="trimac" score="1.000000" />
2380
+ <word cat="ROAD HAULAGE" name="landstar" score="1.000000" />
2381
+ <word cat="ROAD HAULAGE" name="dachser" score="1.000000" />
2382
+ <word cat="ROAD HAULAGE" name="kyogoku" score="1.000000" />
2383
+ <word cat="ROAD HAULAGE" name="seino" score="1.000000" />
2384
+ <word cat="ROAD HAULAGE" name="padborg" score="1.000000" />
2385
+ <word cat="VEHICLE BODIES AND TRAILERS" name="feathernat" score="1.000000" />
2386
+ <word cat="RECORDS, TAPES AND DISCS" name="zomax" score="1.000000" />
2387
+ <word cat="RECORDS, TAPES AND DISCS" name="maxel" score="1.000000" />
2388
+ <word cat="COAL MINING" name="bergbau" score="1.000000" />
2389
+ <word cat="COAL MINING" name="banpu" score="1.000000" />
2390
+ <word cat="COAL MINING" name="rancea" score="1.000000" />
2391
+ <word cat="COAL MINING" name="nacco" score="1.000000" />
2392
+ <word cat="TOYS AND GAMES" name="nikkatsu" score="1.000000" />
2393
+ <word cat="TOYS AND GAMES" name="shuffler" score="1.000000" />
2394
+ <word cat="TOYS AND GAMES" name="snacktim" score="1.000000" />
2395
+ <word cat="TOYS AND GAMES" name="sanrio" score="1.000000" />
2396
+ <word cat="TOYS AND GAMES" name="lanacan" score="1.000000" />
2397
+ <word cat="TOYS AND GAMES" name="galoob" score="1.000000" />
2398
+ <word cat="TOYS AND GAMES" name="igt" score="1.000000" />
2399
+ <word cat="TOYS AND GAMES" name="capcom" score="1.000000" />
2400
+ <word cat="MECHANICAL ENGINEERING" name="nordson" score="1.000000" />
2401
+ <word cat="MECHANICAL ENGINEERING" name="sasib" score="1.000000" />
2402
+ <word cat="MECHANICAL ENGINEERING" name="kurita" score="1.000000" />
2403
+ <word cat="MECHANICAL ENGINEERING" name="wkdec" score="1.000000" />
2404
+ <word cat="MECHANICAL ENGINEERING" name="golik" score="1.000000" />
2405
+ <word cat="MECHANICAL ENGINEERING" name="timberjack" score="1.000000" />
2406
+ <word cat="MECHANICAL ENGINEERING" name="keyser" score="1.000000" />
2407
+ <word cat="MECHANICAL ENGINEERING" name="mannesmannrohren" score="1.000000" />
2408
+ <word cat="MECHANICAL ENGINEERING" name="defibr" score="1.000000" />
2409
+ <word cat="MECHANICAL ENGINEERING" name="soudek" score="1.000000" />
2410
+ <word cat="MECHANICAL ENGINEERING" name="uozu" score="1.000000" />
2411
+ <word cat="MECHANICAL ENGINEERING" name="demag" score="1.000000" />
2412
+ <word cat="MECHANICAL ENGINEERING" name="deley" score="1.000000" />
2413
+ <word cat="MECHANICAL ENGINEERING" name="pantec" score="1.000000" />
2414
+ <word cat="MECHANICAL ENGINEERING" name="thermadyn" score="1.000000" />
2415
+ <word cat="MECHANICAL ENGINEERING" name="zagel" score="1.000000" />
2416
+ <word cat="MECHANICAL ENGINEERING" name="shimpo" score="1.000000" />
2417
+ <word cat="MECHANICAL ENGINEERING" name="duffryn" score="1.000000" />
2418
+ <word cat="DAIRY PRODUCTS PROCESSING" name="saputo" score="1.000000" />
2419
+ <word cat="DAIRY PRODUCTS PROCESSING" name="honsha" score="1.000000" />
2420
+ <word cat="DAIRY PRODUCTS PROCESSING" name="yakult" score="1.000000" />
2421
+ <word cat="AUTOMOBILE DEALERS" name="nathia" score="1.000000" />
2422
+ <word cat="AUTOMOBILE DEALERS" name="aucnet" score="1.000000" />
2423
+ <word cat="PAPER MAKING MACHINERY" name="tomioka" score="1.000000" />
2424
+ <word cat="PAPER MAKING MACHINERY" name="navita" score="1.000000" />
2425
+ <word cat="PAPER MAKING MACHINERY" name="riutta" score="1.000000" />
2426
+ <word cat="RUBBER AND PLASTICS WORKING MACHINERY" name="showpla" score="1.000000" />
2427
+ <word cat="RUBBER AND PLASTICS WORKING MACHINERY" name="kawata" score="1.000000" />
2428
+ <word cat="OPTICAL EQUIPMENT" name="norita" score="1.000000" />
2429
+ <word cat="OPTICAL EQUIPMENT" name="safilo" score="1.000000" />
2430
+ <word cat="OPTICAL EQUIPMENT" name="pulstec" score="1.000000" />
2431
+ <word cat="OPTICAL EQUIPMENT" name="luxottica" score="1.000000" />
2432
+ <word cat="OPTICAL EQUIPMENT" name="dycam" score="1.000000" />
2433
+ <word cat="CIVIL ENGINEERING" name="kawada" score="1.000000" />
2434
+ <word cat="CIVIL ENGINEERING" name="teb" score="1.000000" />
2435
+ <word cat="CIVIL ENGINEERING" name="abigroup" score="1.000000" />
2436
+ <word cat="CIVIL ENGINEERING" name="dragag" score="1.000000" />
2437
+ <word cat="CIVIL ENGINEERING" name="jgc" score="1.000000" />
2438
+ <word cat="CIVIL ENGINEERING" name="ohmori" score="1.000000" />
2439
+ <word cat="CIVIL ENGINEERING" name="elektromontaz" score="1.000000" />
2440
+ <word cat="CIVIL ENGINEERING" name="chalendon" score="1.000000" />
2441
+ <word cat="CIVIL ENGINEERING" name="seikitokyu" score="1.000000" />
2442
+ <word cat="CIVIL ENGINEERING" name="waiviata" score="1.000000" />
2443
+ <word cat="CIVIL ENGINEERING" name="asakawagumi" score="1.000000" />
2444
+ <word cat="CIVIL ENGINEERING" name="choiseul" score="1.000000" />
2445
+ <word cat="CIVIL ENGINEERING" name="ausdril" score="1.000000" />
2446
+ <word cat="CIVIL ENGINEERING" name="christiani" score="1.000000" />
2447
+ <word cat="CIVIL ENGINEERING" name="exeo" score="1.000000" />
2448
+ <word cat="CIVIL ENGINEERING" name="impregilo" score="1.000000" />
2449
+ <word cat="CIVIL ENGINEERING" name="obayashi" score="1.000000" />
2450
+ <word cat="CIVIL ENGINEERING" name="wisewai" score="1.000000" />
2451
+ <word cat="CIVIL ENGINEERING" name="bescorp" score="1.000000" />
2452
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="scansourc" score="1.000000" />
2453
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="glasgal" score="1.000000" />
2454
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="xircom" score="1.000000" />
2455
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="mindspr" score="1.000000" />
2456
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="memotec" score="1.000000" />
2457
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="proteon" score="1.000000" />
2458
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="websecur" score="1.000000" />
2459
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="aetherwork" score="1.000000" />
2460
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="talx" score="1.000000" />
2461
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="deysher" score="1.000000" />
2462
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="verio" score="1.000000" />
2463
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="teleglob" score="1.000000" />
2464
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="diebold" score="1.000000" />
2465
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="tricord" score="1.000000" />
2466
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="realaudio" score="1.000000" />
2467
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="billimoria" score="1.000000" />
2468
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="apertu" score="1.000000" />
2469
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="nuko" score="1.000000" />
2470
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="novadigm" score="1.000000" />
2471
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="webcom" score="1.000000" />
2472
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="netvantag" score="1.000000" />
2473
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="ebber" score="1.000000" />
2474
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="trafficmast" score="1.000000" />
2475
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="netlink" score="1.000000" />
2476
+ <word cat="DATACOMMUNICATIONS AND NETWORKING" name="worldtalk" score="1.000000" />
2477
+ <word cat="SEA TRANSPORT" name="kinkai" score="1.000000" />
2478
+ <word cat="SEA TRANSPORT" name="hinod" score="1.000000" />
2479
+ <word cat="SEA TRANSPORT" name="arbonal" score="1.000000" />
2480
+ <word cat="SEA TRANSPORT" name="mirzan" score="1.000000" />
2481
+ <word cat="SEA TRANSPORT" name="hyoki" score="1.000000" />
2482
+ <word cat="SEA TRANSPORT" name="awaji" score="1.000000" />
2483
+ <word cat="SEA TRANSPORT" name="uniglori" score="1.000000" />
2484
+ <word cat="SEA TRANSPORT" name="jinhui" score="1.000000" />
2485
+ <word cat="SEA TRANSPORT" name="holyman" score="1.000000" />
2486
+ <word cat="SEA TRANSPORT" name="sjoinvest" score="1.000000" />
2487
+ <word cat="SEA TRANSPORT" name="norex" score="1.000000" />
2488
+ <word cat="SEA TRANSPORT" name="kaiun" score="1.000000" />
2489
+ <word cat="SEA TRANSPORT" name="hoverspe" score="1.000000" />
2490
+ <word cat="ARCHITECTS, SURVEYORS, ETC" name="micromus" score="1.000000" />
2491
+ <word cat="ARCHITECTS, SURVEYORS, ETC" name="arrk" score="1.000000" />
2492
+ <word cat="ARCHITECTS, SURVEYORS, ETC" name="vetco" score="1.000000" />
2493
+ <word cat="ARCHITECTS, SURVEYORS, ETC" name="dgc" score="1.000000" />
2494
+ <word cat="ARCHITECTS, SURVEYORS, ETC" name="luckland" score="1.000000" />
2495
+ <word cat="ARCHITECTS, SURVEYORS, ETC" name="ohba" score="1.000000" />
2496
+ <word cat="ARCHITECTS, SURVEYORS, ETC" name="pininfarina" score="1.000000" />
2497
+ <word cat="HORTICULTURE" name="yukiguni" score="1.000000" />
2498
+ <word cat="HORTICULTURE" name="atoka" score="1.000000" />
2499
+ <word cat="HORTICULTURE" name="maitak" score="1.000000" />
2500
+ <word cat="AGRICULTURE" name="bhimjayani" score="1.000000" />
2501
+ <word cat="AGRICULTURE" name="shroyer" score="1.000000" />
2502
+ <word cat="AGRICULTURE" name="sucafina" score="1.000000" />
2503
+ <word cat="AGRICULTURE" name="filiaci" score="1.000000" />
2504
+ <word cat="AGRICULTURE" name="ukragroconsult" score="1.000000" />
2505
+ <word cat="AGRICULTURE" name="gridasov" score="1.000000" />
2506
+ <word cat="AGRICULTURE" name="nppc" score="1.000000" />
2507
+ <word cat="AGRICULTURE" name="ffcat" score="1.000000" />
2508
+ <word cat="AGRICULTURE" name="roskhleboprodukt" score="1.000000" />
2509
+ <word cat="AGRICULTURE" name="lonsum" score="1.000000" />
2510
+ <word cat="AGRICULTURE" name="wvz" score="1.000000" />
2511
+ <word cat="AGRICULTURE" name="lajud" score="1.000000" />
2512
+ <word cat="AGRICULTURE" name="tassel" score="1.000000" />
2513
+ <word cat="AGRICULTURE" name="creutzfeld" score="1.000000" />
2514
+ <word cat="AGRICULTURE" name="crnt" score="1.000000" />
2515
+ <word cat="AGRICULTURE" name="cocobod" score="1.000000" />
2516
+ <word cat="AGRICULTURE" name="awf" score="1.000000" />
2517
+ <word cat="AGRICULTURE" name="rwendeir" score="1.000000" />
2518
+ <word cat="AGRICULTURE" name="cmbl" score="1.000000" />
2519
+ <word cat="AGRICULTURE" name="kemayan" score="1.000000" />
2520
+ <word cat="AGRICULTURE" name="cdpc" score="1.000000" />
2521
+ <word cat="AGRICULTURE" name="vvnd" score="1.000000" />
2522
+ <word cat="DYESTUFFS AND PIGMENTS" name="dystar" score="1.000000" />
2523
+ <word cat="DYESTUFFS AND PIGMENTS" name="synalloi" score="1.000000" />
2524
+ <word cat="DYESTUFFS AND PIGMENTS" name="hodogaya" score="1.000000" />
2525
+ <word cat="NON FERROUS METALS" name="sitix" score="1.000000" />
2526
+ <word cat="BETTING AND GAMBLING" name="ameristar" score="1.000000" />
2527
+ <word cat="BETTING AND GAMBLING" name="mikohn" score="1.000000" />
2528
+ <word cat="BETTING AND GAMBLING" name="autotot" score="1.000000" />
2529
+ <word cat="BETTING AND GAMBLING" name="broadwat" score="1.000000" />
2530
+ <word cat="BETTING AND GAMBLING" name="aztar" score="1.000000" />
2531
+ <word cat="BETTING AND GAMBLING" name="greektown" score="1.000000" />
2532
+ <word cat="BETTING AND GAMBLING" name="goldigg" score="1.000000" />
2533
+ <word cat="BETTING AND GAMBLING" name="gamecash" score="1.000000" />
2534
+ <word cat="BETTING AND GAMBLING" name="sodak" score="1.000000" />
2535
+ <word cat="SPORTING FACITreatIES AND VENUES" name="koshien" score="1.000000" />
2536
+ <word cat="SPORTING FACITreatIES AND VENUES" name="tochi" score="1.000000" />
2537
+ <word cat="WIRES AND CABLES" name="tatsuta" score="1.000000" />
2538
+ <word cat="WIRES AND CABLES" name="ciena" score="1.000000" />
2539
+ <word cat="WIRES AND CABLES" name="bydgoska" score="1.000000" />
2540
+ <word cat="WIRES AND CABLES" name="toyokuni" score="1.000000" />
2541
+ <word cat="WIRES AND CABLES" name="hanashima" score="1.000000" />
2542
+ <word cat="WIRES AND CABLES" name="totoku" score="1.000000" />
2543
+ <word cat="WIRES AND CABLES" name="ortel" score="1.000000" />
2544
+ <word cat="METAL MANUFACTURING" name="buderu" score="1.000000" />
2545
+ <word cat="METAL MANUFACTURING" name="stalprodukt" score="1.000000" />
2546
+ <word cat="METAL MANUFACTURING" name="bamba" score="1.000000" />
2547
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="pesatori" score="1.000000" />
2548
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="jyoho" score="1.000000" />
2549
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="computron" score="1.000000" />
2550
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="questec" score="1.000000" />
2551
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="holobyt" score="1.000000" />
2552
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="intergraph" score="1.000000" />
2553
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="visio" score="1.000000" />
2554
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="mapic" score="1.000000" />
2555
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="rynn" score="1.000000" />
2556
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="voxwar" score="1.000000" />
2557
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="kurzweil" score="1.000000" />
2558
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="vamo" score="1.000000" />
2559
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="netwar" score="1.000000" />
2560
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="dataram" score="1.000000" />
2561
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="laserjet" score="1.000000" />
2562
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="ichat" score="1.000000" />
2563
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="martorana" score="1.000000" />
2564
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="emat" score="1.000000" />
2565
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="certicom" score="1.000000" />
2566
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="novonyx" score="1.000000" />
2567
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="intervoic" score="1.000000" />
2568
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="microtouch" score="1.000000" />
2569
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="conigliaro" score="1.000000" />
2570
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="eido" score="1.000000" />
2571
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="nematron" score="1.000000" />
2572
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="anacomp" score="1.000000" />
2573
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="waitt" score="1.000000" />
2574
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="spacetec" score="1.000000" />
2575
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="matridigm" score="1.000000" />
2576
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="streamlog" score="1.000000" />
2577
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="auspex" score="1.000000" />
2578
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="wkdec" score="1.000000" />
2579
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="miltop" score="1.000000" />
2580
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="infospac" score="1.000000" />
2581
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="tecmo" score="1.000000" />
2582
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="staffwar" score="1.000000" />
2583
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="identix" score="1.000000" />
2584
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="telesend" score="1.000000" />
2585
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="xcellenet" score="1.000000" />
2586
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="officem" score="1.000000" />
2587
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="syncroni" score="1.000000" />
2588
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="artisoft" score="1.000000" />
2589
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="andreessen" score="1.000000" />
2590
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="wintel" score="1.000000" />
2591
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="datawork" score="1.000000" />
2592
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="umax" score="1.000000" />
2593
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="interleaf" score="1.000000" />
2594
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="filenet" score="1.000000" />
2595
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="wonderwar" score="1.000000" />
2596
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="lernout" score="1.000000" />
2597
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="mapinfo" score="1.000000" />
2598
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="logal" score="1.000000" />
2599
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="optiplex" score="1.000000" />
2600
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="medicu" score="1.000000" />
2601
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="visigen" score="1.000000" />
2602
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="dotronix" score="1.000000" />
2603
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="pippin" score="1.000000" />
2604
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="premeno" score="1.000000" />
2605
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="starbas" score="1.000000" />
2606
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="accugraph" score="1.000000" />
2607
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="datametr" score="1.000000" />
2608
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="pouliadi" score="1.000000" />
2609
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="encad" score="1.000000" />
2610
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="netfram" score="1.000000" />
2611
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="netsi" score="1.000000" />
2612
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="altri" score="1.000000" />
2613
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="surfwatch" score="1.000000" />
2614
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="verifact" score="1.000000" />
2615
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="softdesk" score="1.000000" />
2616
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="isocor" score="1.000000" />
2617
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="diba" score="1.000000" />
2618
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="datalogix" score="1.000000" />
2619
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="zitel" score="1.000000" />
2620
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="ascii" score="1.000000" />
2621
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="xata" score="1.000000" />
2622
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="comshar" score="1.000000" />
2623
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="xox" score="1.000000" />
2624
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="eltrax" score="1.000000" />
2625
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="sherlund" score="1.000000" />
2626
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="rossignolo" score="1.000000" />
2627
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="kertzman" score="1.000000" />
2628
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="autocad" score="1.000000" />
2629
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="adaptec" score="1.000000" />
2630
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="metatool" score="1.000000" />
2631
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="sekon" score="1.000000" />
2632
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="parcplac" score="1.000000" />
2633
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="microleagu" score="1.000000" />
2634
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="deskpro" score="1.000000" />
2635
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="gamework" score="1.000000" />
2636
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="scaglia" score="1.000000" />
2637
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="osr" score="1.000000" />
2638
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="micrografx" score="1.000000" />
2639
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="cambex" score="1.000000" />
2640
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="myst" score="1.000000" />
2641
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="storagetek" score="1.000000" />
2642
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="tangram" score="1.000000" />
2643
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="gianmario" score="1.000000" />
2644
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="shugart" score="1.000000" />
2645
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="genicom" score="1.000000" />
2646
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="sawtek" score="1.000000" />
2647
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="idx" score="1.000000" />
2648
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="hnc" score="1.000000" />
2649
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="proview" score="1.000000" />
2650
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="broadvis" score="1.000000" />
2651
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="vantiv" score="1.000000" />
2652
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="versant" score="1.000000" />
2653
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="polycom" score="1.000000" />
2654
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="fujicopian" score="1.000000" />
2655
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="viglen" score="1.000000" />
2656
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="intranetwar" score="1.000000" />
2657
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="lasermast" score="1.000000" />
2658
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="perfectdata" score="1.000000" />
2659
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="alr" score="1.000000" />
2660
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="vxtreme" score="1.000000" />
2661
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="neomag" score="1.000000" />
2662
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="netradio" score="1.000000" />
2663
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="legato" score="1.000000" />
2664
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="gottesman" score="1.000000" />
2665
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="radisi" score="1.000000" />
2666
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="pickrel" score="1.000000" />
2667
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="skiba" score="1.000000" />
2668
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="copal" score="1.000000" />
2669
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="zycad" score="1.000000" />
2670
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="triteal" score="1.000000" />
2671
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="syntellect" score="1.000000" />
2672
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="kaferl" score="1.000000" />
2673
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="helionet" score="1.000000" />
2674
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="siltek" score="1.000000" />
2675
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="herbold" score="1.000000" />
2676
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="hauspi" score="1.000000" />
2677
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="stac" score="1.000000" />
2678
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="compuwar" score="1.000000" />
2679
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="infostrada" score="1.000000" />
2680
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="sandisk" score="1.000000" />
2681
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="spss" score="1.000000" />
2682
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="cogno" score="1.000000" />
2683
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="onewav" score="1.000000" />
2684
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="geowork" score="1.000000" />
2685
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="netdynam" score="1.000000" />
2686
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="konami" score="1.000000" />
2687
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="cimatron" score="1.000000" />
2688
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="oshap" score="1.000000" />
2689
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="manugist" score="1.000000" />
2690
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="autodesk" score="1.000000" />
2691
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="phami" score="1.000000" />
2692
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="systemcar" score="1.000000" />
2693
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="softech" score="1.000000" />
2694
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="linkon" score="1.000000" />
2695
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="kaifa" score="1.000000" />
2696
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="zuken" score="1.000000" />
2697
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="calcomp" score="1.000000" />
2698
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="poweredg" score="1.000000" />
2699
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="axent" score="1.000000" />
2700
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="finocchio" score="1.000000" />
2701
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="mathsoft" score="1.000000" />
2702
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="unruh" score="1.000000" />
2703
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="electrograph" score="1.000000" />
2704
+ <word cat="COMPUTER SYSTEMS AND SOFTWARE" name="backoffic" score="1.000000" />
2705
+ <word cat="AIRCRAFT HIRING AND LEASING" name="gatx" score="1.000000" />
2706
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="radioshack" score="1.000000" />
2707
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="juntendo" score="1.000000" />
2708
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="korasidi" score="1.000000" />
2709
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="kohnan" score="1.000000" />
2710
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="encho" score="1.000000" />
2711
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="levitz" score="1.000000" />
2712
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="cashwai" score="1.000000" />
2713
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="kanseki" score="1.000000" />
2714
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="heching" score="1.000000" />
2715
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="distefora" score="1.000000" />
2716
+ <word cat="HOUSEHOLD GOODS AND HARDWARE" name="kalm" score="1.000000" />
2717
+ </categories>