kotoshu 0.3.0

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 (210) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +3 -0
  3. data/.rubocop.yml +18 -0
  4. data/CHANGELOG.md +182 -0
  5. data/CLAUDE.md +172 -0
  6. data/CODE_OF_CONDUCT.md +132 -0
  7. data/LICENSE +31 -0
  8. data/README.adoc +955 -0
  9. data/Rakefile +12 -0
  10. data/SECURITY.md +93 -0
  11. data/examples/01_basic_word_checking.rb +38 -0
  12. data/examples/02_text_document_checking.rb +77 -0
  13. data/examples/03_dictionary_backends.rb +137 -0
  14. data/examples/04_trie_data_structure.rb +146 -0
  15. data/examples/05_suggestion_algorithms.rb +239 -0
  16. data/examples/06_configuration_advanced.rb +287 -0
  17. data/examples/07_multi_language_dictionaries.rb +278 -0
  18. data/exe/kotoshu +6 -0
  19. data/lib/kotoshu/algorithms/capitalization.rb +276 -0
  20. data/lib/kotoshu/algorithms/lookup.rb +876 -0
  21. data/lib/kotoshu/algorithms/ngram_suggest.rb +270 -0
  22. data/lib/kotoshu/algorithms/permutations.rb +283 -0
  23. data/lib/kotoshu/algorithms/phonet_suggest.rb +167 -0
  24. data/lib/kotoshu/algorithms/suggest.rb +575 -0
  25. data/lib/kotoshu/algorithms.rb +14 -0
  26. data/lib/kotoshu/analyzers/semantic_analyzer.rb +295 -0
  27. data/lib/kotoshu/cache/base_cache.rb +596 -0
  28. data/lib/kotoshu/cache/cache.rb +91 -0
  29. data/lib/kotoshu/cache/frequency_cache.rb +224 -0
  30. data/lib/kotoshu/cache/language_cache.rb +454 -0
  31. data/lib/kotoshu/cache/lookup_cache.rb +166 -0
  32. data/lib/kotoshu/cache/model_cache.rb +513 -0
  33. data/lib/kotoshu/cache/suggestion_cache.rb +113 -0
  34. data/lib/kotoshu/cache.rb +40 -0
  35. data/lib/kotoshu/cli/auto_setup.rb +71 -0
  36. data/lib/kotoshu/cli/batch_reporter.rb +315 -0
  37. data/lib/kotoshu/cli/cache_command.rb +356 -0
  38. data/lib/kotoshu/cli/display_formatter.rb +431 -0
  39. data/lib/kotoshu/cli/errors.rb +36 -0
  40. data/lib/kotoshu/cli/interactive_reviewer.rb +319 -0
  41. data/lib/kotoshu/cli/language_resolver.rb +91 -0
  42. data/lib/kotoshu/cli/navigation_manager.rb +272 -0
  43. data/lib/kotoshu/cli/progress_reporter.rb +114 -0
  44. data/lib/kotoshu/cli/status_report.rb +130 -0
  45. data/lib/kotoshu/cli.rb +627 -0
  46. data/lib/kotoshu/commands/cache_command.rb +424 -0
  47. data/lib/kotoshu/commands/check_command.rb +312 -0
  48. data/lib/kotoshu/commands/model_command.rb +295 -0
  49. data/lib/kotoshu/components/passthrough_spell_checker.rb +72 -0
  50. data/lib/kotoshu/components/pos_tagger.rb +98 -0
  51. data/lib/kotoshu/components/spell_checker.rb +73 -0
  52. data/lib/kotoshu/components/synthesizer.rb +60 -0
  53. data/lib/kotoshu/components/tokenizer.rb +58 -0
  54. data/lib/kotoshu/components/whitespace_tokenizer.rb +96 -0
  55. data/lib/kotoshu/configuration/builder.rb +209 -0
  56. data/lib/kotoshu/configuration/resolver.rb +124 -0
  57. data/lib/kotoshu/configuration.rb +702 -0
  58. data/lib/kotoshu/core/exceptions.rb +165 -0
  59. data/lib/kotoshu/core/indexed_dictionary.rb +291 -0
  60. data/lib/kotoshu/core/models/affix_rule.rb +260 -0
  61. data/lib/kotoshu/core/models/result/document_result.rb +263 -0
  62. data/lib/kotoshu/core/models/result/word_result.rb +203 -0
  63. data/lib/kotoshu/core/models/word.rb +142 -0
  64. data/lib/kotoshu/core/trie/builder.rb +119 -0
  65. data/lib/kotoshu/core/trie/node.rb +94 -0
  66. data/lib/kotoshu/core/trie/trie.rb +249 -0
  67. data/lib/kotoshu/core.rb +28 -0
  68. data/lib/kotoshu/data/common_words/de.yml +1800 -0
  69. data/lib/kotoshu/data/common_words/en.yml +1215 -0
  70. data/lib/kotoshu/data/common_words/es.yml +750 -0
  71. data/lib/kotoshu/data/common_words/fr.yml +1015 -0
  72. data/lib/kotoshu/data/common_words/pt.yml +870 -0
  73. data/lib/kotoshu/data/common_words/ru.yml +484 -0
  74. data/lib/kotoshu/data/common_words_loader.rb +152 -0
  75. data/lib/kotoshu/data_structures/bloom_filter.rb +176 -0
  76. data/lib/kotoshu/debug_logger.rb +146 -0
  77. data/lib/kotoshu/debug_mode.rb +134 -0
  78. data/lib/kotoshu/defaults.rb +86 -0
  79. data/lib/kotoshu/dictionaries/catalog.rb +817 -0
  80. data/lib/kotoshu/dictionary/base.rb +237 -0
  81. data/lib/kotoshu/dictionary/cspell.rb +254 -0
  82. data/lib/kotoshu/dictionary/custom.rb +224 -0
  83. data/lib/kotoshu/dictionary/hunspell.rb +526 -0
  84. data/lib/kotoshu/dictionary/plain_text.rb +282 -0
  85. data/lib/kotoshu/dictionary/repository.rb +248 -0
  86. data/lib/kotoshu/dictionary/unified.rb +260 -0
  87. data/lib/kotoshu/dictionary/unix_words.rb +218 -0
  88. data/lib/kotoshu/documents/asciidoc_document.rb +441 -0
  89. data/lib/kotoshu/documents/document.rb +229 -0
  90. data/lib/kotoshu/documents/location.rb +139 -0
  91. data/lib/kotoshu/documents/markdown_document.rb +389 -0
  92. data/lib/kotoshu/documents/plain_text_document.rb +147 -0
  93. data/lib/kotoshu/embeddings/embedding_pipeline.rb +244 -0
  94. data/lib/kotoshu/embeddings/lru_cache.rb +233 -0
  95. data/lib/kotoshu/embeddings/onnx_runtime_model.rb +388 -0
  96. data/lib/kotoshu/embeddings/protocol.rb +83 -0
  97. data/lib/kotoshu/embeddings/protocols.rb +17 -0
  98. data/lib/kotoshu/embeddings/registry.rb +182 -0
  99. data/lib/kotoshu/embeddings/search.rb +192 -0
  100. data/lib/kotoshu/embeddings/similarity_engine.rb +248 -0
  101. data/lib/kotoshu/embeddings/similarity_search.rb +331 -0
  102. data/lib/kotoshu/embeddings/vocabulary.rb +257 -0
  103. data/lib/kotoshu/embeddings.rb +97 -0
  104. data/lib/kotoshu/fluent_checker.rb +91 -0
  105. data/lib/kotoshu/grammar/pattern_matchers/base_matcher.rb +48 -0
  106. data/lib/kotoshu/grammar/pattern_matchers/double_negative_matcher.rb +105 -0
  107. data/lib/kotoshu/grammar/pattern_matchers/possessive_context_matcher.rb +77 -0
  108. data/lib/kotoshu/grammar/pattern_matchers/vowel_sound_matcher.rb +83 -0
  109. data/lib/kotoshu/grammar/rule.rb +95 -0
  110. data/lib/kotoshu/grammar/rule_engine.rb +111 -0
  111. data/lib/kotoshu/grammar/rule_loader.rb +31 -0
  112. data/lib/kotoshu/grammar.rb +18 -0
  113. data/lib/kotoshu/integrity/audit_log.rb +88 -0
  114. data/lib/kotoshu/integrity/manifest.rb +117 -0
  115. data/lib/kotoshu/integrity/net_http.rb +46 -0
  116. data/lib/kotoshu/integrity.rb +25 -0
  117. data/lib/kotoshu/keyboard/layout.rb +115 -0
  118. data/lib/kotoshu/keyboard/layouts/azerty.rb +57 -0
  119. data/lib/kotoshu/keyboard/layouts/dvorak.rb +56 -0
  120. data/lib/kotoshu/keyboard/layouts/jcuken.rb +59 -0
  121. data/lib/kotoshu/keyboard/layouts/qwerty.rb +54 -0
  122. data/lib/kotoshu/keyboard/layouts/qwertz.rb +57 -0
  123. data/lib/kotoshu/keyboard/registry.rb +146 -0
  124. data/lib/kotoshu/keyboard.rb +60 -0
  125. data/lib/kotoshu/language/detector.rb +242 -0
  126. data/lib/kotoshu/language/identifier.rb +378 -0
  127. data/lib/kotoshu/language/languages/base.rb +256 -0
  128. data/lib/kotoshu/language/normalizer/base.rb +137 -0
  129. data/lib/kotoshu/language/registry.rb +147 -0
  130. data/lib/kotoshu/language/resources/ar/common_words.txt +6753 -0
  131. data/lib/kotoshu/language/resources/ar/confusion_sets.txt +11 -0
  132. data/lib/kotoshu/language/resources/de/common_words.txt +10003 -0
  133. data/lib/kotoshu/language/resources/de/confusion_sets.txt +246 -0
  134. data/lib/kotoshu/language/resources/en/common_words.txt +9979 -0
  135. data/lib/kotoshu/language/resources/en/confusion_sets.txt +871 -0
  136. data/lib/kotoshu/language/resources/es/common_words.txt +9992 -0
  137. data/lib/kotoshu/language/resources/es/confusion_sets.txt +17 -0
  138. data/lib/kotoshu/language/resources/fr/common_words.txt +9993 -0
  139. data/lib/kotoshu/language/resources/fr/confusion_sets.txt +76 -0
  140. data/lib/kotoshu/language/resources/pt/common_words.txt +9977 -0
  141. data/lib/kotoshu/language/resources/pt/confusion_sets.txt +18 -0
  142. data/lib/kotoshu/language/resources/ru/common_words.txt +9951 -0
  143. data/lib/kotoshu/language/resources/ru/confusion_sets.txt +5 -0
  144. data/lib/kotoshu/language/tokenizer/base.rb +170 -0
  145. data/lib/kotoshu/language/tokenizer/french_tokenizer.rb +170 -0
  146. data/lib/kotoshu/language/tokenizer/german_tokenizer.rb +41 -0
  147. data/lib/kotoshu/language/tokenizer/japanese_tokenizer.rb +60 -0
  148. data/lib/kotoshu/language/tokenizer/latin_tokenizer.rb +141 -0
  149. data/lib/kotoshu/language/tokenizer/portuguese_tokenizer.rb +160 -0
  150. data/lib/kotoshu/language/tokenizer/russian_tokenizer.rb +95 -0
  151. data/lib/kotoshu/language/tokenizer/spanish_tokenizer.rb +122 -0
  152. data/lib/kotoshu/language.rb +99 -0
  153. data/lib/kotoshu/languages/de/language.rb +546 -0
  154. data/lib/kotoshu/languages/en/language.rb +448 -0
  155. data/lib/kotoshu/languages/es/language.rb +459 -0
  156. data/lib/kotoshu/languages/fr/language.rb +493 -0
  157. data/lib/kotoshu/languages/ja/language.rb +477 -0
  158. data/lib/kotoshu/languages/pt/language.rb +423 -0
  159. data/lib/kotoshu/languages/ru/language.rb +404 -0
  160. data/lib/kotoshu/languages.rb +43 -0
  161. data/lib/kotoshu/metrics_collector.rb +222 -0
  162. data/lib/kotoshu/metrics_module.rb +110 -0
  163. data/lib/kotoshu/models/context.rb +119 -0
  164. data/lib/kotoshu/models/embedding_model.rb +182 -0
  165. data/lib/kotoshu/models/fasttext_model.rb +220 -0
  166. data/lib/kotoshu/models/nearest_neighbor.rb +87 -0
  167. data/lib/kotoshu/models/onnx_model.rb +333 -0
  168. data/lib/kotoshu/models/semantic_error.rb +165 -0
  169. data/lib/kotoshu/models/suggestion.rb +106 -0
  170. data/lib/kotoshu/models/word_embedding.rb +107 -0
  171. data/lib/kotoshu/paths.rb +53 -0
  172. data/lib/kotoshu/personal_dictionary.rb +94 -0
  173. data/lib/kotoshu/plugins/plugin.rb +61 -0
  174. data/lib/kotoshu/plugins/registry.rb +120 -0
  175. data/lib/kotoshu/project_config.rb +76 -0
  176. data/lib/kotoshu/readers/aff_data.rb +356 -0
  177. data/lib/kotoshu/readers/aff_reader.rb +375 -0
  178. data/lib/kotoshu/readers/condition_checker.rb +142 -0
  179. data/lib/kotoshu/readers/dic_reader.rb +118 -0
  180. data/lib/kotoshu/readers/file_reader.rb +347 -0
  181. data/lib/kotoshu/readers/lookup_builder.rb +299 -0
  182. data/lib/kotoshu/readers/readers.rb +6 -0
  183. data/lib/kotoshu/readers.rb +9 -0
  184. data/lib/kotoshu/resource_bundle.rb +30 -0
  185. data/lib/kotoshu/resource_manager.rb +295 -0
  186. data/lib/kotoshu/results/result.rb +165 -0
  187. data/lib/kotoshu/scripts/fasttext_to_onnx.py +275 -0
  188. data/lib/kotoshu/source_registry.rb +74 -0
  189. data/lib/kotoshu/spellchecker/parallel_checker.rb +90 -0
  190. data/lib/kotoshu/spellchecker.rb +298 -0
  191. data/lib/kotoshu/string_metrics.rb +153 -0
  192. data/lib/kotoshu/suggestions/context.rb +55 -0
  193. data/lib/kotoshu/suggestions/generator.rb +175 -0
  194. data/lib/kotoshu/suggestions/pipeline.rb +135 -0
  195. data/lib/kotoshu/suggestions/strategies/base_strategy.rb +296 -0
  196. data/lib/kotoshu/suggestions/strategies/composite_strategy.rb +140 -0
  197. data/lib/kotoshu/suggestions/strategies/edit_distance_strategy.rb +671 -0
  198. data/lib/kotoshu/suggestions/strategies/keyboard_proximity_strategy.rb +228 -0
  199. data/lib/kotoshu/suggestions/strategies/ngram_strategy.rb +130 -0
  200. data/lib/kotoshu/suggestions/strategies/phonetic_strategy.rb +329 -0
  201. data/lib/kotoshu/suggestions/strategies/semantic_strategy.rb +316 -0
  202. data/lib/kotoshu/suggestions/strategies/symspell_strategy.rb +275 -0
  203. data/lib/kotoshu/suggestions/suggestion.rb +174 -0
  204. data/lib/kotoshu/suggestions/suggestion_set.rb +238 -0
  205. data/lib/kotoshu/version.rb +5 -0
  206. data/lib/kotoshu.rb +493 -0
  207. data/script/validate_all_dictionaries.rb +444 -0
  208. data/sig/kotoshu.rbs +4 -0
  209. data/test_oop.rb +79 -0
  210. metadata +298 -0
@@ -0,0 +1,1215 @@
1
+ # English common words by frequency
2
+ # Source: Oxford English Corpus, Wikipedia English Corpus
3
+ # Last updated: 2025-01-15
4
+
5
+ metadata:
6
+ language: en
7
+ source: Oxford English Corpus, Wikipedia English Corpus
8
+ source_url: https://en.wikipedia.org/wiki/Wikipedia:Frequency_lists_of_English_words
9
+ total_words: 49568
10
+ last_updated: 2025-01-15
11
+ license: Public Domain / CC-BY-SA
12
+
13
+ tiers:
14
+ top_50:
15
+ - the
16
+ - be
17
+ - to
18
+ - of
19
+ - and
20
+ - a
21
+ - in
22
+ - that
23
+ - have
24
+ - I
25
+ - it
26
+ - for
27
+ - not
28
+ - on
29
+ - with
30
+ - he
31
+ - as
32
+ - you
33
+ - do
34
+ - at
35
+ - this
36
+ - but
37
+ - his
38
+ - by
39
+ - from
40
+ - they
41
+ - we
42
+ - say
43
+ - her
44
+ - she
45
+ - or
46
+ - an
47
+ - will
48
+ - my
49
+ - one
50
+ - all
51
+ - would
52
+ - there
53
+ - their
54
+ - what
55
+ - so
56
+ - up
57
+ - out
58
+ - if
59
+ - about
60
+ - who
61
+ - get
62
+ - which
63
+ - go
64
+ - me
65
+
66
+ top_200:
67
+ - when
68
+ - make
69
+ - can
70
+ - like
71
+ - time
72
+ - no
73
+ - just
74
+ - him
75
+ - know
76
+ - take
77
+ - people
78
+ - into
79
+ - year
80
+ - your
81
+ - good
82
+ - some
83
+ - could
84
+ - them
85
+ - see
86
+ - other
87
+ - than
88
+ - then
89
+ - now
90
+ - look
91
+ - only
92
+ - come
93
+ - its
94
+ - over
95
+ - think
96
+ - also
97
+ - back
98
+ - after
99
+ - use
100
+ - two
101
+ - how
102
+ - our
103
+ - work
104
+ - first
105
+ - well
106
+ - way
107
+ - even
108
+ - new
109
+ - want
110
+ - because
111
+ - any
112
+ - these
113
+ - give
114
+ - day
115
+ - most
116
+ - us
117
+ - is
118
+ - are
119
+ - was
120
+ - were
121
+ - been
122
+ - has
123
+ - had
124
+ - have
125
+ - said
126
+ - did
127
+ - does
128
+ - can't
129
+ - won't
130
+ - should
131
+ - would
132
+ - could
133
+ - might
134
+ - must
135
+ - shall
136
+ - hello
137
+ - world
138
+ - help
139
+ - test
140
+ - code
141
+ - here
142
+ - text
143
+ - from
144
+ - word
145
+ - with
146
+ - very
147
+ - more
148
+ - much
149
+ - some
150
+ - such
151
+ - your
152
+ - yours
153
+ - their
154
+ - theirs
155
+ - my
156
+ - mine
157
+ - our
158
+ - ours
159
+ - her
160
+ - hers
161
+ - his
162
+ - its
163
+ - him
164
+ - them
165
+ - me
166
+ - you
167
+ - it
168
+ - we
169
+ - they
170
+ - who
171
+ - what
172
+ - when
173
+ - where
174
+ - why
175
+ - how
176
+ - which
177
+ - that
178
+ - this
179
+ - these
180
+ - those
181
+ - am
182
+ - is
183
+ - are
184
+ - was
185
+ - were
186
+ - be
187
+ - been
188
+ - being
189
+ - have
190
+ - has
191
+ - had
192
+ - having
193
+ - do
194
+ - does
195
+ - did
196
+ - doing
197
+ - will
198
+ - would
199
+ - should
200
+ - could
201
+ - might
202
+ - must
203
+ - may
204
+ - can
205
+ - shall
206
+
207
+ top_1000:
208
+ - however
209
+ - although
210
+ - therefore
211
+ - nevertheless
212
+ - meanwhile
213
+ - moreover
214
+ - furthermore
215
+ - otherwise
216
+ - accordingly
217
+ - consequently
218
+ - thus
219
+ - hence
220
+ - yet
221
+ - still
222
+ - already
223
+ - again
224
+ - once
225
+ - twice
226
+ - never
227
+ - always
228
+ - often
229
+ - sometimes
230
+ - usually
231
+ - frequently
232
+ - rarely
233
+ - seldom
234
+ - hardly
235
+ - barely
236
+ - almost
237
+ - nearly
238
+ - quite
239
+ - rather
240
+ - very
241
+ - extremely
242
+ - really
243
+ - actually
244
+ - fact
245
+ - indeed
246
+ - certainly
247
+ - probably
248
+ - possibly
249
+ - perhaps
250
+ - maybe
251
+ - well
252
+ - then
253
+ - there
254
+ - here
255
+ - somewhere
256
+ - anywhere
257
+ - everywhere
258
+ - nowhere
259
+ - something
260
+ - anything
261
+ - everything
262
+ - nothing
263
+ - someone
264
+ - anyone
265
+ - everyone
266
+ - noone
267
+ - anybody
268
+ - somebody
269
+ - nobody
270
+ - each
271
+ - every
272
+ - all
273
+ - some
274
+ - any
275
+ - no
276
+ - none
277
+ - both
278
+ - neither
279
+ - either
280
+ - one
281
+ - two
282
+ - three
283
+ - four
284
+ - five
285
+ - six
286
+ - seven
287
+ - eight
288
+ - nine
289
+ - ten
290
+ - first
291
+ - second
292
+ - third
293
+ - last
294
+ - next
295
+ - other
296
+ - another
297
+ - same
298
+ - different
299
+ - such
300
+ - own
301
+ - same
302
+ - kind
303
+ - sort
304
+ - type
305
+ - part
306
+ - piece
307
+ - bit
308
+ - lot
309
+ - amount
310
+ - number
311
+ - quantity
312
+ - much
313
+ - many
314
+ - few
315
+ - little
316
+ - less
317
+ - more
318
+ - most
319
+ - least
320
+ - enough
321
+ - too
322
+ - very
323
+ - quite
324
+ - rather
325
+ - extremely
326
+ - highly
327
+ - deeply
328
+ - truly
329
+ - really
330
+ - actually
331
+ - certainly
332
+ - definitely
333
+ - probably
334
+ - possibly
335
+ - likely
336
+ - unlikely
337
+ - sure
338
+ - clear
339
+ - obvious
340
+ - certain
341
+ - right
342
+ - wrong
343
+ - true
344
+ - false
345
+ - good
346
+ - bad
347
+ - better
348
+ - worse
349
+ - best
350
+ - worst
351
+ - big
352
+ - small
353
+ - large
354
+ - tiny
355
+ - huge
356
+ - long
357
+ - short
358
+ - tall
359
+ - high
360
+ - low
361
+ - wide
362
+ - narrow
363
+ - thick
364
+ - thin
365
+ - heavy
366
+ - light
367
+ - dark
368
+ - bright
369
+ - old
370
+ - young
371
+ - new
372
+ - early
373
+ - late
374
+ - fast
375
+ - slow
376
+ - quick
377
+ - hard
378
+ - soft
379
+ - easy
380
+ - difficult
381
+ - simple
382
+ - complex
383
+ - important
384
+ - necessary
385
+ - possible
386
+ - impossible
387
+ - able
388
+ - unable
389
+ - available
390
+ - ready
391
+ - free
392
+ - busy
393
+ - full
394
+ - empty
395
+ - open
396
+ - closed
397
+ - hot
398
+ - cold
399
+ - warm
400
+ - cool
401
+ - dry
402
+ - wet
403
+ - clean
404
+ - dirty
405
+ - beautiful
406
+ - ugly
407
+ - nice
408
+ - kind
409
+ - mean
410
+ - rude
411
+ - polite
412
+ - friendly
413
+ - angry
414
+ - happy
415
+ - sad
416
+ - glad
417
+ - sorry
418
+ - afraid
419
+ - scared
420
+ - worried
421
+ - tired
422
+ - sick
423
+ - well
424
+ - fine
425
+ - okay
426
+ - alright
427
+ - yes
428
+ - no
429
+ - not
430
+ - maybe
431
+ - perhaps
432
+ - please
433
+ - thank
434
+ - welcome
435
+ - hello
436
+ - goodbye
437
+ - hi
438
+ - bye
439
+ - morning
440
+ - afternoon
441
+ - evening
442
+ - night
443
+ - day
444
+ - week
445
+ - month
446
+ - year
447
+ - today
448
+ - tomorrow
449
+ - yesterday
450
+ - now
451
+ - later
452
+ - soon
453
+ - never
454
+ - always
455
+ - forever
456
+ - often
457
+ - sometimes
458
+ - usually
459
+ - money
460
+ - time
461
+ - work
462
+ - job
463
+ - home
464
+ - house
465
+ - family
466
+ - friend
467
+ - school
468
+ - book
469
+ - paper
470
+ - word
471
+ - number
472
+ - problem
473
+ - question
474
+ - answer
475
+ - information
476
+ - idea
477
+ - story
478
+ - example
479
+ - reason
480
+ - result
481
+ - effect
482
+ - cause
483
+ - change
484
+ - way
485
+ - method
486
+ - system
487
+ - program
488
+ - process
489
+ - service
490
+ - product
491
+ - business
492
+ - company
493
+ - government
494
+ - country
495
+ - state
496
+ - city
497
+ - place
498
+ - area
499
+ - region
500
+ - world
501
+ - earth
502
+ - water
503
+ - air
504
+ - fire
505
+ - light
506
+ - sound
507
+ - voice
508
+ - music
509
+ - art
510
+ - color
511
+ - red
512
+ - blue
513
+ - green
514
+ - yellow
515
+ - black
516
+ - white
517
+ - name
518
+ - person
519
+ - man
520
+ - woman
521
+ - child
522
+ - boy
523
+ - girl
524
+ - people
525
+ - group
526
+ - team
527
+ - game
528
+ - play
529
+ - win
530
+ - lose
531
+ - score
532
+ - point
533
+ - side
534
+ - hand
535
+ - foot
536
+ - head
537
+ - face
538
+ - eye
539
+ - ear
540
+ - mouth
541
+ - nose
542
+ - body
543
+ - mind
544
+ - heart
545
+ - health
546
+ - life
547
+ - death
548
+ - love
549
+ - hate
550
+ - feeling
551
+ - emotion
552
+ - thought
553
+ - belief
554
+ - knowledge
555
+ - understanding
556
+ - learning
557
+ - teaching
558
+ - student
559
+ - teacher
560
+ - education
561
+ - language
562
+ - word
563
+ - sentence
564
+ - meaning
565
+ - definition
566
+ - spelling
567
+ - grammar
568
+ - writing
569
+ - reading
570
+ - speaking
571
+ - listening
572
+ - communication
573
+ - message
574
+ - letter
575
+ - email
576
+ - phone
577
+ - call
578
+ - text
579
+ - message
580
+ - internet
581
+ - web
582
+ - site
583
+ - page
584
+ - link
585
+ - click
586
+ - button
587
+ - screen
588
+ - keyboard
589
+ - mouse
590
+ - computer
591
+ - laptop
592
+ - phone
593
+ - mobile
594
+ - device
595
+ - software
596
+ - application
597
+ - app
598
+ - system
599
+ - file
600
+ - document
601
+ - image
602
+ - picture
603
+ - photo
604
+ - video
605
+ - audio
606
+ - music
607
+ - sound
608
+ - data
609
+ - information
610
+ - content
611
+ - text
612
+ - code
613
+ - program
614
+ - function
615
+ - variable
616
+ - value
617
+ - type
618
+ - class
619
+ - object
620
+ - method
621
+ - property
622
+ - attribute
623
+ - parameter
624
+ - argument
625
+ - return
626
+ - result
627
+ - output
628
+ - input
629
+ - error
630
+ - warning
631
+ - message
632
+ - debug
633
+ - test
634
+ - testing
635
+ - quality
636
+ - performance
637
+ - speed
638
+ - size
639
+ - length
640
+ - width
641
+ - height
642
+ - depth
643
+ - weight
644
+ - strength
645
+ - power
646
+ - energy
647
+ - force
648
+ - pressure
649
+ - temperature
650
+ - heat
651
+ - cold
652
+ - degree
653
+ - level
654
+ - amount
655
+ - quantity
656
+ - quality
657
+ - condition
658
+ - state
659
+ - status
660
+ - position
661
+ - location
662
+ - direction
663
+ - distance
664
+ - speed
665
+ - rate
666
+ - time
667
+ - date
668
+ - hour
669
+ - minute
670
+ - second
671
+ - moment
672
+ - instant
673
+ - period
674
+ - duration
675
+ - range
676
+ - limit
677
+ - bound
678
+ - rule
679
+ - law
680
+ - principle
681
+ - theory
682
+ - practice
683
+ - experience
684
+ - skill
685
+ - ability
686
+ - capacity
687
+ - capability
688
+ - power
689
+ - authority
690
+ - control
691
+ - management
692
+ - administration
693
+ - organization
694
+ - structure
695
+ - design
696
+ - pattern
697
+ - model
698
+ - example
699
+ - sample
700
+ - instance
701
+ - case
702
+ - situation
703
+ - context
704
+ - environment
705
+ - setting
706
+ - background
707
+ - history
708
+ - future
709
+ - present
710
+ - past
711
+ - current
712
+ - existing
713
+ - previous
714
+ - following
715
+ - next
716
+ - last
717
+ - final
718
+ - initial
719
+ - first
720
+ - start
721
+ - beginning
722
+ - end
723
+ - finish
724
+ - completion
725
+ - success
726
+ - failure
727
+ - attempt
728
+ - trial
729
+ - effort
730
+ - work
731
+ - labor
732
+ - toil
733
+ - rest
734
+ - break
735
+ - pause
736
+ - stop
737
+ - start
738
+ - continue
739
+ - repeat
740
+ - return
741
+ - change
742
+ - improve
743
+ - develop
744
+ - grow
745
+ - increase
746
+ - decrease
747
+ - reduce
748
+ - expand
749
+ - contract
750
+ - raise
751
+ - lower
752
+ - add
753
+ - remove
754
+ - delete
755
+ - insert
756
+ - create
757
+ - make
758
+ - build
759
+ - form
760
+ - shape
761
+ - cut
762
+ - split
763
+ - divide
764
+ - multiply
765
+ - calculate
766
+ - count
767
+ - measure
768
+ - weigh
769
+ - estimate
770
+ - guess
771
+ - predict
772
+ - expect
773
+ - hope
774
+ - wish
775
+ - want
776
+ - need
777
+ - require
778
+ - demand
779
+ - supply
780
+ - provide
781
+ - offer
782
+ - give
783
+ - receive
784
+ - take
785
+ - get
786
+ - obtain
787
+ - acquire
788
+ - gain
789
+ - lose
790
+ - miss
791
+ - fail
792
+ - pass
793
+ - succeed
794
+ - win
795
+ - beat
796
+ - defeat
797
+ - overcome
798
+ - conquer
799
+ - fight
800
+ - battle
801
+ - struggle
802
+ - conflict
803
+ - dispute
804
+ - argument
805
+ - debate
806
+ - discussion
807
+ - conversation
808
+ - talk
809
+ - speak
810
+ - say
811
+ - tell
812
+ - ask
813
+ - answer
814
+ - reply
815
+ - respond
816
+ - explain
817
+ - describe
818
+ - define
819
+ - clarify
820
+ - illustrate
821
+ - demonstrate
822
+ - show
823
+ - display
824
+ - present
825
+ - represent
826
+ - express
827
+ - indicate
828
+ - suggest
829
+ - imply
830
+ - mean
831
+ - signify
832
+ - symbolize
833
+ - stand
834
+ - lie
835
+ - sit
836
+ - rise
837
+ - fall
838
+ - drop
839
+ - lift
840
+ - carry
841
+ - hold
842
+ - keep
843
+ - maintain
844
+ - preserve
845
+ - protect
846
+ - defend
847
+ - guard
848
+ - save
849
+ - rescue
850
+ - help
851
+ - assist
852
+ - support
853
+ - serve
854
+ - work
855
+ - operate
856
+ - function
857
+ - run
858
+ - manage
859
+ - lead
860
+ - guide
861
+ - direct
862
+ - control
863
+ - influence
864
+ - affect
865
+ - impact
866
+ - change
867
+ - alter
868
+ - modify
869
+ - adjust
870
+ - adapt
871
+ - adopt
872
+ - accept
873
+ - reject
874
+ - refuse
875
+ - deny
876
+ - admit
877
+ - confess
878
+ - reveal
879
+ - disclose
880
+ - expose
881
+ - show
882
+ - hide
883
+ - conceal
884
+ - cover
885
+ - protect
886
+ - discover
887
+ - find
888
+ - search
889
+ - look
890
+ - seek
891
+ - hunt
892
+ - explore
893
+ - investigate
894
+ - examine
895
+ - check
896
+ - test
897
+ - verify
898
+ - confirm
899
+ - prove
900
+ - validate
901
+ - approve
902
+ - authorize
903
+ - permit
904
+ - allow
905
+ - let
906
+ - enable
907
+ - cause
908
+ - create
909
+ - produce
910
+ - generate
911
+ - form
912
+ - make
913
+ - build
914
+ - construct
915
+ - assemble
916
+ - put
917
+ - place
918
+ - set
919
+ - lay
920
+ - arrange
921
+ - organize
922
+ - order
923
+ - sort
924
+ - classify
925
+ - categorize
926
+ - group
927
+ - cluster
928
+ - list
929
+ - record
930
+ - register
931
+ - document
932
+ - file
933
+ - store
934
+ - save
935
+ - keep
936
+ - hold
937
+ - maintain
938
+ - preserve
939
+ - protect
940
+ - defend
941
+ - guard
942
+ - shield
943
+ - shelter
944
+ - cover
945
+ - hide
946
+ - mask
947
+ - veil
948
+ - curtain
949
+ - screen
950
+ - wall
951
+ - fence
952
+ - barrier
953
+ - obstacle
954
+ - hurdle
955
+ - difficulty
956
+ - problem
957
+ - issue
958
+ - trouble
959
+ - concern
960
+ - worry
961
+ - anxiety
962
+ - fear
963
+ - terror
964
+ - horror
965
+ - panic
966
+ - shock
967
+ - surprise
968
+ - amazement
969
+ - wonder
970
+ - awe
971
+ - admiration
972
+ - respect
973
+ - esteem
974
+ - honor
975
+ - glory
976
+ - fame
977
+ - reputation
978
+ - character
979
+ - personality
980
+ - nature
981
+ - essence
982
+ - spirit
983
+ - soul
984
+ - mind
985
+ - heart
986
+ - body
987
+ - life
988
+ - death
989
+ - birth
990
+ - growth
991
+ - development
992
+ - evolution
993
+ - progress
994
+ - advancement
995
+ - improvement
996
+ - decline
997
+ - decay
998
+ - destruction
999
+ - ruin
1000
+ - loss
1001
+ - failure
1002
+ - disaster
1003
+ - catastrophe
1004
+ - tragedy
1005
+ - comedy
1006
+ - drama
1007
+ - story
1008
+ - tale
1009
+ - legend
1010
+ - myth
1011
+ - fable
1012
+ - fiction
1013
+ - fantasy
1014
+ - reality
1015
+ - truth
1016
+ - fact
1017
+ - evidence
1018
+ - proof
1019
+ - sign
1020
+ - symbol
1021
+ - mark
1022
+ - indication
1023
+ - suggestion
1024
+ - hint
1025
+ - clue
1026
+ - trace
1027
+ - track
1028
+ - path
1029
+ - way
1030
+ - road
1031
+ - street
1032
+ - route
1033
+ - course
1034
+ - direction
1035
+ - orientation
1036
+ - position
1037
+ - location
1038
+ - place
1039
+ - spot
1040
+ - point
1041
+ - area
1042
+ - region
1043
+ - zone
1044
+ - district
1045
+ - section
1046
+ - part
1047
+ - piece
1048
+ - bit
1049
+ - fragment
1050
+ - segment
1051
+ - portion
1052
+ - share
1053
+ - slice
1054
+ - cut
1055
+ - division
1056
+ - separation
1057
+ - partition
1058
+ - distinction
1059
+ - difference
1060
+ - similarity
1061
+ - resemblance
1062
+ - analogy
1063
+ - comparison
1064
+ - contrast
1065
+ - opposition
1066
+ - conflict
1067
+ - disagreement
1068
+ - dispute
1069
+ - argument
1070
+ - debate
1071
+ - discussion
1072
+ - negotiation
1073
+ - settlement
1074
+ - resolution
1075
+ - solution
1076
+ - answer
1077
+ - response
1078
+ - reply
1079
+ - reaction
1080
+ - feedback
1081
+ - comment
1082
+ - remark
1083
+ - statement
1084
+ - declaration
1085
+ - announcement
1086
+ - proclamation
1087
+ - order
1088
+ - command
1089
+ - instruction
1090
+ - direction
1091
+ - guidance
1092
+ - advice
1093
+ - suggestion
1094
+ - recommendation
1095
+ - proposal
1096
+ - offer
1097
+ - invitation
1098
+ - request
1099
+ - demand
1100
+ - requirement
1101
+ - necessity
1102
+ - need
1103
+ - want
1104
+ - desire
1105
+ - wish
1106
+ - hope
1107
+ - dream
1108
+ - fantasy
1109
+ - imagination
1110
+ - creativity
1111
+ - innovation
1112
+ - invention
1113
+ - discovery
1114
+ - exploration
1115
+ - investigation
1116
+ - research
1117
+ - study
1118
+ - analysis
1119
+ - examination
1120
+ - inspection
1121
+ - review
1122
+ - evaluation
1123
+ - assessment
1124
+ - judgment
1125
+ - opinion
1126
+ - view
1127
+ - perspective
1128
+ - outlook
1129
+ - attitude
1130
+ - approach
1131
+ - method
1132
+ - technique
1133
+ - strategy
1134
+ - tactic
1135
+ - plan
1136
+ - scheme
1137
+ - design
1138
+ - layout
1139
+ - pattern
1140
+ - structure
1141
+ - framework
1142
+ - system
1143
+ - network
1144
+ - web
1145
+ - grid
1146
+ - matrix
1147
+ - array
1148
+ - list
1149
+ - series
1150
+ - sequence
1151
+ - order
1152
+ - arrangement
1153
+ - organization
1154
+ - classification
1155
+ - category
1156
+ - type
1157
+ - kind
1158
+ - sort
1159
+ - class
1160
+ - group
1161
+ - set
1162
+ - collection
1163
+ - selection
1164
+ - choice
1165
+ - option
1166
+ - alternative
1167
+ - possibility
1168
+ - opportunity
1169
+ - chance
1170
+ - probability
1171
+ - likelihood
1172
+ - risk
1173
+ - danger
1174
+ - threat
1175
+ - hazard
1176
+ - safety
1177
+ - security
1178
+ - protection
1179
+ - defense
1180
+ - guard
1181
+ - shield
1182
+ - cover
1183
+ - shelter
1184
+ - refuge
1185
+ - sanctuary
1186
+ - haven
1187
+ - home
1188
+ - house
1189
+ - building
1190
+ - structure
1191
+ - construction
1192
+ - architecture
1193
+ - design
1194
+ - style
1195
+ - fashion
1196
+ - trend
1197
+ - movement
1198
+ - flow
1199
+ - current
1200
+ - stream
1201
+ - tide
1202
+ - wave
1203
+ - surge
1204
+ - rush
1205
+ - burst
1206
+ - explosion
1207
+ - crash
1208
+ - collapse
1209
+ - fall
1210
+ - drop
1211
+ - decline
1212
+ - decrease
1213
+ - reduction
1214
+ - loss
1215
+ - failure