-
Notifications
You must be signed in to change notification settings - Fork 9
/
hr.html
3121 lines (3097 loc) · 251 KB
/
hr.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<HTML><HEAD>
<TITLE>3000 English/Croatian vocabulary flash cards</TITLE>
</HEAD><BODY>
<!-- 6/26/09 thru 209 -->
<!-- 6/27/09 thru 400 -->
<!-- 6/29/09 thru 450 -->
<!-- 7/4/09 thru 699 -->
<!-- 7/14/09 thru 999 -->
<!--
http://web1.d25.k12.id.us/home/curriculum/fuw.pdf 1000 most freq Eng wrds
-->
<!-- 1-letter words a i k o s u
<!-- 2-letter words included:
bi da do in ja je ka la li mi na ne ni od on pa po rt sa se si su ta te
ti to tu ud uz vi za
not included:
as iz
English 2-letter words:
ah am an as at ax be by do go ha hi if in is it me mu my no nu of oh on
or ox pi so to up us we
-->
<!--
500 words from
http://www.nald.ca/library/research/unlocking/27.htm
missing ones:
along been best both brought came case children
could did does done draw feet fine found gave given glad got
had has him himself its known lay lost made me men might mile mine must
nothing once pass pretty raise said seen sent shall sight
sometime them then these those took until upon us was went were
-->
<CENTER>
<H2>3000 English/Croatian vocabulary flash cards</H2>
<I>Last updated: 14-Oct-2009 Author: Norman Megill</I>
</CENTER>
<P>
If you plan to use the
Mnemosyne set of <A HREF="http://www.mnemosyne-proj.org/node/208">2500
English-Croatian vocabulary cards</A>, let me know so that I can
make sure it has been updated with the latest corrections.
<HR>
<I>25-Jun-2009:</I>Ivan Štambuk has <A
HREF="http://en.wiktionary.org/wiki/User:Ivan_%C5%A0tambuk/3000">duplicated
and wikified this list</A> with many corrections. I will be
updating this page with his corrections, but in the meantime
his list should be used as a
more definitive reference.
<HR>
<P>
This vocabulary list attempts to collect the 3,000 most important words
for use with the <A HREF="http://www.mnemosyne-proj.org/">Mnemosyne</A>
flash-card tool. <!-- An apparently novel feature is that it --> An
unusual feature (compared to some other vocabulary lists I've seen) is
that it is sorted with the most common words first and rarest words
last, so that (in theory) the student can stop at any point according to
his or her desired proficiency level.
<P>This list is primarily based on J. Barefoot's <!--
1997 --> public-domain, 2449-word <A
HREF="http://www.geocities.com/Athens/Parthenon/7853/list.htm">Master
List</A> <!-- of 2449 words, which in turn was said to be based on the
Universal Language Dictionary, Basic English, and Essential Word
English. (Later, I found Anne Lyle's <A
HREF="http://www.annelyle.com/downloads/univ_dict.html">categorized
version</A> of an apparently earlier 1600-word version of this list.)
--> and the 1510-word <A
HREF="http://www.voanews.com/specialenglish/wordbook-a.cfm">Voice of
America Special English Word Book</A>. <!-- also:
http://www.manythings.org/voa/words.htm --> I added additional words
from the <A
HREF="http://en.wiktionary.org/wiki/Appendix:Croatian_Swadesh_list">Croatian
Swadesh list</A>, days of the week, months of the year, some
additional numbers, and a few other words.
<P>I sorted the final list according to word frequency, using the 40,000
<A
HREF="http://en.wiktionary.org/wiki/Wiktionary:Frequency_lists#Most_common_words_.28TV_and_movie_scripts.29">Most
common words (TV and movie scripts)</A>. The second column gives the
rank in that list so that future additions can be placed in the correct
order. <!-- Since there is no context, the ordering of homographs (such
as "well") isn't perfect, but overall it is probably reasonable. -->
<P>To create customized sets of cards, "[num]" and "[cal]" designate
numbers and calendar names (days of the week and months), words with "*"
are in the VOA list, and words with "**" are only in the VOA list (some
of which are used mainly in news reports). For example, keeping only
the cards with a "*" but no "**" results in a 1200-card basic vocabulary
list. The Mnemosyne set of <A HREF="http://www.mnemosyne-proj.org/node/208">2500
English-Croatian vocabulary cards</A> was created by deleting the "**"
cards, removing the "*" characters for better appearance, and
renumbering the card sequence number.
<P>This list is meant to improve Croatian vocabulary, not to learn
Croatian. For that purpose, a phrasebook and an audio course will be
useful. In many cases, such as the words "to", "as", "at", and "of",
there is no one-to-one correspondence, and the translation is primarily
intended to assist a general recognition of the corresponding Croatian
words. Finally, the list does not address grammar, and in most cases,
only the infinitive and nominative cases are shown.
<P>Croatian is roughly pronounced as it is written, so there is no
separate pronunciation column. Some pronunciation guides are given <A
HREF="http://skeravec.chez-alice.fr/Pronounc.html">here</A>, <A
HREF="http://www.phantomranch.net/folkdanc/alphabet/serbo-croatian.htm">here</A>,
and <A
HREF="http://www.croatiatraveller.com/Language/Pronunciation.htm">here</A>.
For more precision, see <A
HREF="http://en.wiktionary.org/wiki/User:Ivan_%C5%A0tambuk/3000">Ivan
Štambuk's list</A> with accented vowels in conjunction with a <A
HREF="http://en.wikipedia.org/wiki/Pitch_accent#Serbo-Croatian">pitch
accent guide</A>.
<!--
<P>Since the English word list is generic, it may be adaptable to
other languages as well. For Croatian, a pronunciation column is not
needed since their is a fixed correspondence between the letters and the
way they are pronounced.
-->
<P>
<!--
The Croatian translation is undergoing fine-tuning, and suggestions
are welcome.
-->
<!-- The starting point, Google's translation service, had a
number of problems (e.g. "apple" was translated to the trademark "Apple"
instead of "jabuka", "the toe" was translated to "na vrh", which means
"the top").
-->
<!-- Improvements are welcome. -->
<P> <A HREF="http://us.metamath.org/email.html">Norm Megill</A>
<BR>
Corrections and suggestions are welcome.
<!--
June, 2009
-->
<HR>
Example: 201 | 227 | understand*, comprehend (pf/impf) [v] 2s
| razumjeti, shvatiti / razumjeti, shvaćati
<UL>
<LI>"201" - this is the 201st list entry</LI>
<LI>"227" - "understand" is the 227th word in the 40K-word TV/movie list</LI>
<LI>"*" - "understand" occurs in the Voice of America list (the "*" can be ignored)</LI>
<LI> ", comprehend" - "comprehend" is a synonym for "understand" to help
clarify its meaning</LI>
<LI>"(pf/impf)" - there are two cases (perfective and imperfective) in the
Croatian column, separated by slash</LI>
<LI>"[v]" - "understand" is a verb</LI>
<LI>"2s" - there are 2 synonyms for "understand" in the Croatian column,
separated by commas (also, "2w" = 2 words)</LI>
<LI>"razumjeti, shvatiti" - these are 2 synomyms for the perfective case of
"to understand"</LI>
<LI>"razumijevati, shvaćati" - these are 2 synonyms for the imperfective
case of "to understand"</LI>
</UL>
<HR>
<P>
Click on the column header to sort by that column.
<A NAME="table"></A>
<TABLE BORDER>
<TR><TH>
<!-- <A HREF="hr.html">Seq</A> --> Seq
</TH><TH>Rank</TH><TH>
<A HREF="hrsorten.html">English</A>
</TH><TH>
<A HREF="hrsorthr.html">Croatian</A>
</TH></TR>
<TR><TD>1</TD><TD>1</TD><TD>you* (singular) [pn]</TD><TD>ti</TD></TR>
<TR><TD>2</TD><TD>1</TD><TD>you* (plural, singular polite) [pn]</TD><TD>vi</TD></TR>
<TR><TD>3</TD><TD>1</TD><TD>you* (singular) (objective case) [pn]</TD><TD>te</TD></TR>
<TR><TD>4</TD><TD>1</TD><TD>you* (plural, singular polite) (objective case) [pn]</TD><TD>vas</TD></TR>
<TR><TD>5</TD><TD>2</TD><TD>I* [pn]</TD><TD>ja</TD></TR>
<TR><TD>6</TD><TD>3</TD><TD>to* (see also "towards") [prep] 2s;1,1(5)w</TD><TD>do, u (or use the dative case)</TD></TR>
<TR><TD>7</TD><TD>6</TD><TD>and* (plus/also) [cj]</TD><TD>i / a</TD></TR>
<TR><TD>8</TD><TD>7</TD><TD>that* (demonstrative) (m/f/n) [pn]</TD><TD>taj / ta / to</TD></TR>
<TR><TD>9</TD><TD>7</TD><TD>that* (e.g. "I know that you are right") [cj]</TD><TD>da</TD></TR>
<TR><TD>10</TD><TD>7</TD><TD>that* (one) (m/f/n) [aj]</TD><TD>onaj / ona / ono</TD></TR>
<TR><TD>11</TD><TD>8</TD><TD>it* [pn] 2s</TD><TD>to, ono</TD></TR>
<TR><TD>12</TD><TD>9</TD><TD>of* (containing the measured quantity: "two liters of water") [prep] (6)w</TD><TD>(use the genitive case of noun)</TD></TR>
<TR><TD>13</TD><TD>10</TD><TD>me [pn] 2s</TD><TD>mene, me</TD></TR>
<TR><TD>14</TD><TD>11</TD><TD>what*? [pn] 2s</TD><TD>što?, šta?</TD></TR>
<TR><TD>15</TD><TD>12</TD><TD>is [v] 2s</TD><TD>jest, je</TD></TR>
<TR><TD>16</TD><TD>13</TD><TD>in* (located inside of) [prep]</TD><TD>u</TD></TR>
<TR><TD>17</TD><TD>14</TD><TD>this* (demonstrative) (m/f/n) [aj,pn]</TD><TD>ovaj / ova / ovo</TD></TR>
<TR><TD>18</TD><TD>15</TD><TD>know* [v]</TD><TD>znati</TD></TR>
<TR><TD>19</TD><TD>17</TD><TD>for the purpose of [prep] 2s;2,3w</TD><TD>u svrhu, kako bi se</TD></TR>
<TR><TD>20</TD><TD>17</TD><TD>for* (in exchange for) [prep]</TD><TD>za</TD></TR>
<TR><TD>21</TD><TD>18</TD><TD>no* [av]</TD><TD>nijedan</TD></TR>
<TR><TD>22</TD><TD>19</TD><TD>have* (possess, be furnished with) [v]</TD><TD>imati</TD></TR>
<TR><TD>23</TD><TD>19</TD><TD>have to (see also "must") [aux-v-inf]</TD><TD>morati</TD></TR>
<TR><TD>24</TD><TD>20</TD><TD>my (m/f/n) [pn]</TD><TD>moj / moja / moje</TD></TR>
<TR><TD>25</TD><TD>23</TD><TD>not* [av]</TD><TD>ne</TD></TR>
<TR><TD>26</TD><TD>24</TD><TD>do*, perform, engage in (specified activity) [v] 3s;1,1,2w</TD><TD>činiti, raditi, baviti se</TD></TR>
<TR><TD>27</TD><TD>24</TD><TD>Do you...? [v] 2w</TD><TD>Da li...?</TD></TR>
<TR><TD>28</TD><TD>25</TD><TD>be* (intransitive predicative copula) [v]</TD><TD>biti</TD></TR>
<TR><TD>29</TD><TD>26</TD><TD>on* (resting on; touching the top or other surface of) [prep]</TD><TD>na</TD></TR>
<TR><TD>30</TD><TD>27</TD><TD>your (pl., sing. pol.) (m/f/n/m pl/f pl/n pl) [pn]</TD><TD>vaš / vaša / vaše / vaši / vaše / vaša</TD></TR>
<TR><TD>31</TD><TD>27</TD><TD>your (sing.) (m/f/n/m pl) [pn]</TD><TD>tvoj / tvoja / tvoje / tvoji</TD></TR>
<TR><TD>32</TD><TD>29</TD><TD>we* [pn]</TD><TD>mi</TD></TR>
<TR><TD>33</TD><TD>31</TD><TD>with* (accompanied by) [prep] 2s</TD><TD>s, sa</TD></TR>
<TR><TD>34</TD><TD>32</TD><TD>so that [av] 2w</TD><TD>tako da</TD></TR>
<TR><TD>35</TD><TD>32</TD><TD>so* [av]</TD><TD>tako</TD></TR>
<TR><TD>36</TD><TD>33</TD><TD>but*, however*, although* [cj] 4s</TD><TD>ali, međutim, iako, premda</TD></TR>
<TR><TD>37</TD><TD>34</TD><TD>all* (the whole number or entire sum of) (m/f/n) [aj]</TD><TD>sav / sva / sve</TD></TR>
<TR><TD>38</TD><TD>35</TD><TD>well* (water hole) [n] 2s</TD><TD>izvor, vrelo</TD></TR>
<TR><TD>39</TD><TD>35</TD><TD>well* [av]</TD><TD>dobro</TD></TR>
<TR><TD>40</TD><TD>36</TD><TD>are (you/we/you pl.+pol./they) [v]</TD><TD>jesi / jesmo / jeste / jesu</TD></TR>
<TR><TD>41</TD><TD>37</TD><TD>he* [pn]</TD><TD>on</TD></TR>
<TR><TD>42</TD><TD>39</TD><TD>about* (approximate, nearby) [av] 2s</TD><TD>okolo, oko</TD></TR>
<TR><TD>43</TD><TD>39</TD><TD>about* (pertaining to; on the topic of) [prep]</TD><TD>o</TD></TR>
<TR><TD>44</TD><TD>40</TD><TD>right*(-hand) [aj]</TD><TD>desni</TD></TR>
<TR><TD>45</TD><TD>40</TD><TD>right* (a right to do or be ...) [n]</TD><TD>pravo</TD></TR>
<TR><TD>46</TD><TD>40</TD><TD>right*, correct [aj] 2s</TD><TD>točan, ispravan</TD></TR>
<TR><TD>47</TD><TD>42</TD><TD>get*, acquire, gain*, obtain [vt] 3s</TD><TD>nabaviti, dobiti, steći</TD></TR>
<TR><TD>48</TD><TD>43</TD><TD>here* (in or to this place) [av] 2s</TD><TD>ovdje, tu</TD></TR>
<TR><TD>49</TD><TD>44</TD><TD>out* [av] 4s</TD><TD>van, vani, vanka, napolje</TD></TR>
<TR><TD>50</TD><TD>46</TD><TD>like*, enjoy* (derive pleasure from) [v] 2s;2,2w</TD><TD>dopasti se, svidjeti se</TD></TR>
<TR><TD>51</TD><TD>46</TD><TD>like*, similar to [prep] 2s</TD><TD>poput, kao</TD></TR>
<TR><TD>52</TD><TD>48</TD><TD>if* (on condition that...; supposing that...) [cj]</TD><TD>ako</TD></TR>
<TR><TD>53</TD><TD>49</TD><TD>her (objective case) [pn] 2s</TD><TD>njezin, njen</TD></TR>
<TR><TD>54</TD><TD>49</TD><TD>her (possessive) (m/f/n/m pl) [pn]</TD><TD>njezin / njezina / njezino / njezini</TD></TR>
<TR><TD>55</TD><TD>50</TD><TD>she* [pn]</TD><TD>ona</TD></TR>
<TR><TD>56</TD><TD>51</TD><TD>can*, may* (to be able to) [aux-v-inf]</TD><TD>moći</TD></TR>
<TR><TD>57</TD><TD>51</TD><TD>can*, may* (I/you sg./he,she,it/we/you pl.+pol./they) [aux-v-pres]</TD><TD>mogu / možeš / može / možemo / možete / mogu</TD></TR>
<TR><TD>58</TD><TD>51</TD><TD>can* (presealed metal container) {British: tin} [n]</TD><TD>limenka</TD></TR>
<TR><TD>59</TD><TD>52</TD><TD>up* [av]</TD><TD>gore</TD></TR>
<TR><TD>60</TD><TD>53</TD><TD>want*, wish, desire [v] 2s</TD><TD>htjeti, željeti</TD></TR>
<TR><TD>61</TD><TD>54</TD><TD>think* [v]</TD><TD>misliti</TD></TR>
<TR><TD>62</TD><TD>56</TD><TD>now* (at this time) [av] 2s</TD><TD>sad, sada</TD></TR>
<TR><TD>63</TD><TD>57</TD><TD>go* (move from starting point to elsewhere) [v]</TD><TD>ići</TD></TR>
<TR><TD>64</TD><TD>58</TD><TD>him [pn]</TD><TD>njega</TD></TR>
<TR><TD>65</TD><TD>59</TD><TD>at least, not less than (>=) [av] 2s</TD><TD>barem, najmanje</TD></TR>
<TR><TD>66</TD><TD>59</TD><TD>at most, only, just*, merely, not more than (<=) [av]</TD><TD>najviše</TD></TR>
<TR><TD>67</TD><TD>59</TD><TD>at* (in the same location as) [prep] 3s</TD><TD>u, pri, kod</TD></TR>
<TR><TD>68</TD><TD>60</TD><TD>how*? (in what manner?) [av]</TD><TD>kako?</TD></TR>
<TR><TD>69</TD><TD>62</TD><TD>there* (at or to that place) [av]</TD><TD>tamo</TD></TR>
<TR><TD>70</TD><TD>63</TD><TD>one (m/f/n) [num]</TD><TD>jedan / jedna / jedno</TD></TR>
<TR><TD>71</TD><TD>65</TD><TD>why*? (for what reason?) [av]</TD><TD>zašto?</TD></TR>
<TR><TD>72</TD><TD>66</TD><TD>see* (pf/impf) [v]</TD><TD>vidjeti / viđati</TD></TR>
<TR><TD>73</TD><TD>67</TD><TD>come*, arrive* (at indicated place) (pf/impf) [v] 2s</TD><TD>doći, stići / dolaziti, stizati</TD></TR>
<TR><TD>74</TD><TD>68</TD><TD>good* [aj]</TD><TD>dobar</TD></TR>
<TR><TD>75</TD><TD>69</TD><TD>they* (m/f/n) [pn]</TD><TD>oni / one / ona</TD></TR>
<TR><TD>76</TD><TD>71</TD><TD>as* [av]</TD><TD>kao</TD></TR>
<TR><TD>77</TD><TD>71</TD><TD>as (adjective) as ("as big as a house") [av] (1)1w</TD><TD>(adjective) poput</TD></TR>
<TR><TD>78</TD><TD>72</TD><TD>would / Would you like...? [v-pp] 1/4w</TD><TD>biste / Da li biste željeli...?</TD></TR>
<TR><TD>79</TD><TD>73</TD><TD>look* [v]</TD><TD>gledati</TD></TR>
<TR><TD>80</TD><TD>74</TD><TD>when*? (at what time?) [av]</TD><TD>kad?</TD></TR>
<TR><TD>81</TD><TD>75</TD><TD>time* (e.g. "do it 3 times"), occasion, instance, iteration [n] 1(4)w</TD><TD>put ("učiniti to 3 puta")</TD></TR>
<TR><TD>82</TD><TD>75</TD><TD>time* (the dimension or continuum of past-present-future) [n] 2s</TD><TD>vrijeme</TD></TR>
<TR><TD>83</TD><TD>76</TD><TD>will* (I/you sg./he,she,it/we/you pl.+pol./they) [aux-v]</TD><TD>ću / ćeš / će / ćemo / ćete / će</TD></TR>
<TR><TD>84</TD><TD>76</TD><TD>will* [n]</TD><TD>volja</TD></TR>
<TR><TD>85</TD><TD>78</TD><TD>back* (dorsal area) [n]</TD><TD>leđa</TD></TR>
<TR><TD>86</TD><TD>78</TD><TD>back* (position) [av]</TD><TD>natrag</TD></TR>
<TR><TD>87</TD><TD>80</TD><TD>mean* [aj]</TD><TD>zao</TD></TR>
<TR><TD>88</TD><TD>83</TD><TD>from*, out of, away from [prep]</TD><TD>iz</TD></TR>
<TR><TD>89</TD><TD>89</TD><TD>yes* [av]</TD><TD>da</TD></TR>
<TR><TD>90</TD><TD>90</TD><TD>his (m/f/n/m pl) [pn]</TD><TD>njegov / njegova / njegovo / njegovi</TD></TR>
<TR><TD>91</TD><TD>92</TD><TD>or* [cj]</TD><TD>ili</TD></TR>
<TR><TD>92</TD><TD>93</TD><TD>something [pn]</TD><TD>nešto</TD></TR>
<TR><TD>93</TD><TD>94</TD><TD>who* [pn] 2s</TD><TD>tko, ko</TD></TR>
<TR><TD>94</TD><TD>95</TD><TD>because* of, due to, then* [prep] 2s;1,2w</TD><TD>zbog, zato što</TD></TR>
<TR><TD>95</TD><TD>96</TD><TD>some*, several* [aj]</TD><TD>nekoliko</TD></TR>
<TR><TD>96</TD><TD>98</TD><TD>then* (at that time) [aj] 2s</TD><TD>tad, tada</TD></TR>
<TR><TD>97</TD><TD>99</TD><TD>say*, tell*, express in words [v] 2s</TD><TD>reći, kazati</TD></TR>
<TR><TD>98</TD><TD>101</TD><TD>take* (in the sense of E-o "preni", G "nehmen", Sp "tomar") [v]</TD><TD>uzeti</TD></TR>
<TR><TD>99</TD><TD>103</TD><TD>way* (manner) [n]</TD><TD>način</TD></TR>
<TR><TD>100</TD><TD>104</TD><TD>us* [pn]</TD><TD>nas</TD></TR>
<TR><TD>101</TD><TD>105</TD><TD>little* (a small quantity of) [aj]</TD><TD>mal</TD></TR>
<TR><TD>102</TD><TD>105</TD><TD>little* (to a small degree; with almost no intensity) [av]</TD><TD>malo</TD></TR>
<TR><TD>103</TD><TD>106</TD><TD>make* (fabricate) (pf/impf) [v]</TD><TD>praviti / napraviti</TD></TR>
<TR><TD>104</TD><TD>106</TD><TD>make*, render (impart quality X to Y; e.g. "I make you happy") [v]</TD><TD>činiti</TD></TR>
<TR><TD>105</TD><TD>107</TD><TD>need*, require* [v]</TD><TD>trebati</TD></TR>
<TR><TD>106</TD><TD>109</TD><TD>never* [av] 2s</TD><TD>nikad, nikada</TD></TR>
<TR><TD>107</TD><TD>111</TD><TD>too little, insufficiently [av] 2s</TD><TD>premalo, nedovoljno</TD></TR>
<TR><TD>108</TD><TD>111</TD><TD>too much, excessively [av] 2s</TD><TD>previše, prekomjerno</TD></TR>
<TR><TD>109</TD><TD>111</TD><TD>too* (also) [av]</TD><TD>također</TD></TR>
<TR><TD>110</TD><TD>111</TD><TD>too* (degree - expensive, etc.) [av] 2s</TD><TD>suviše, pre-</TD></TR>
<TR><TD>111</TD><TD>112</TD><TD>love* [v]</TD><TD>voljeti</TD></TR>
<TR><TD>112</TD><TD>116</TD><TD>them* [pn]</TD><TD>njih</TD></TR>
<TR><TD>113</TD><TD>117</TD><TD>more* (a larger quantity of) [aj]</TD><TD>više</TD></TR>
<TR><TD>114</TD><TD>117</TD><TD>more* (to a larger degree) [av]</TD><TD>više</TD></TR>
<TR><TD>115</TD><TD>119</TD><TD>our* (m/f/n/m pl) [pn]</TD><TD>naš / naša / naše / naši</TD></TR>
<TR><TD>116</TD><TD>120</TD><TD>Sorry (I am sorry) [ij] 3w</TD><TD>Žao mi je</TD></TR>
<TR><TD>117</TD><TD>121</TD><TD>where*? (at or to what place?) [av]</TD><TD>gdje?</TD></TR>
<TR><TD>118</TD><TD>123</TD><TD>let* [v] 2s</TD><TD>dopustiti, dozvoliti</TD></TR>
<TR><TD>119</TD><TD>124</TD><TD>thing* [n]</TD><TD>stvar</TD></TR>
<TR><TD>120</TD><TD>125</TD><TD>am [v]</TD><TD>sam</TD></TR>
<TR><TD>121</TD><TD>126</TD><TD>maybe, perhaps, possibly [av]</TD><TD>možda</TD></TR>
<TR><TD>122</TD><TD>127</TD><TD>down* [av]</TD><TD>dolje</TD></TR>
<TR><TD>123</TD><TD>128</TD><TD>man* (adult male) [n]</TD><TD>muškarac</TD></TR>
<TR><TD>124</TD><TD>128</TD><TD>man* (human being) [n]</TD><TD>čovjek</TD></TR>
<TR><TD>125</TD><TD>131</TD><TD>very*, much* (with great intensity; to a large degree) [av]</TD><TD>vrlo</TD></TR>
<TR><TD>126</TD><TD>132</TD><TD>by means of, via, per, with (using; through instrumentality of) [prep] 1(5)w</TD><TD>pomoću (or just use instrumental case)</TD></TR>
<TR><TD>127</TD><TD>132</TD><TD>by*, next to, beside [prep] 3s</TD><TD>pored, pokraj, uz</TD></TR>
<TR><TD>128</TD><TD>134</TD><TD>should*, ought to (is or are expected or advised to ...) [aux-v-pres]</TD><TD>trebati</TD></TR>
<TR><TD>129</TD><TD>138</TD><TD>any* (no particular one of) [aj] 2w</TD><TD>bilo koji</TD></TR>
<TR><TD>130</TD><TD>139</TD><TD>life* [n]</TD><TD>život</TD></TR>
<TR><TD>131</TD><TD>140</TD><TD>even* [av]</TD><TD>čak</TD></TR>
<TR><TD>132</TD><TD>141</TD><TD>off* [prep] 2s</TD><TD>s, sa</TD></TR>
<TR><TD>133</TD><TD>142</TD><TD>Please.* [ij]</TD><TD>Molim.</TD></TR>
<TR><TD>134</TD><TD>144</TD><TD>Thank you. [ij]</TD><TD>Hvala.</TD></TR>
<TR><TD>135</TD><TD>144</TD><TD>thank* (express gratitude toward) [v]</TD><TD>zahvaliti</TD></TR>
<TR><TD>136</TD><TD>145</TD><TD>give* [v]</TD><TD>dati</TD></TR>
<TR><TD>137</TD><TD>146</TD><TD>only*, solely, exclusively [av]</TD><TD>samo</TD></TR>
<TR><TD>138</TD><TD>147</TD><TD>thought [n]</TD><TD>misao</TD></TR>
<TR><TD>139</TD><TD>148</TD><TD>Help! [ij]</TD><TD>Upomoć!</TD></TR>
<TR><TD>140</TD><TD>148</TD><TD>help*, assist*, aid* (pf/impf) [v]</TD><TD>pomoći / pomagati</TD></TR>
<TR><TD>141</TD><TD>149</TD><TD>two (m/f/n) [num]</TD><TD>dva / dvije / dvoje</TD></TR>
<TR><TD>142</TD><TD>150</TD><TD>talk*, speak* [v]</TD><TD>govoriti</TD></TR>
<TR><TD>143</TD><TD>151</TD><TD>people* (a people), folk, the members of an ethnic group or nation [n]</TD><TD>narod</TD></TR>
<TR><TD>144</TD><TD>152</TD><TD>god*, diety [n] 2s</TD><TD>bog, božanstvo</TD></TR>
<TR><TD>145</TD><TD>153</TD><TD>still* (at rest) [aj]</TD><TD>miran</TD></TR>
<TR><TD>146</TD><TD>153</TD><TD>still*, yet* (even until the time mentioned) [av]</TD><TD>još</TD></TR>
<TR><TD>147</TD><TD>154</TD><TD>wait* (for), await [v]</TD><TD>čekati</TD></TR>
<TR><TD>148</TD><TD>154</TD><TD>wait* [n] 2s;1(=1),1w</TD><TD>kašnjenje (=delay), čekanje</TD></TR>
<TR><TD>149</TD><TD>155</TD><TD>into [prep]</TD><TD>u</TD></TR>
<TR><TD>150</TD><TD>156</TD><TD>find* (discover the location of) (pf/impf) [v]</TD><TD>naći / nalaziti</TD></TR>
<TR><TD>151</TD><TD>157</TD><TD>nothing* [n]</TD><TD>ništa</TD></TR>
<TR><TD>152</TD><TD>158</TD><TD>again*, once more, re- [av] 2s</TD><TD>opet, ponovno</TD></TR>
<TR><TD>153</TD><TD>162</TD><TD>call*, summon (pf/impf) [v] 3s</TD><TD>nazvati, pozvati, prizvati / zvati, pozivati, prizivati</TD></TR>
<TR><TD>154</TD><TD>164</TD><TD>great* (fantastic) [aj] 2s</TD><TD>odličan, izvrstan</TD></TR>
<TR><TD>155</TD><TD>165</TD><TD>before*, in front of, ahead of (spatially) [prep]</TD><TD>ispred</TD></TR>
<TR><TD>156</TD><TD>165</TD><TD>before*, prior to, earlier than, ago* [prep]</TD><TD>prije</TD></TR>
<TR><TD>157</TD><TD>166</TD><TD>better* [av]</TD><TD>bolje</TD></TR>
<TR><TD>158</TD><TD>167</TD><TD>ever* (at any time) [av] 2s</TD><TD>ikad, ikada</TD></TR>
<TR><TD>159</TD><TD>168</TD><TD>night* [n]</TD><TD>noć</TD></TR>
<TR><TD>160</TD><TD>169</TD><TD>than*, compared to [pr,cj] 3s;1(1),3,1w</TD><TD>nego (što), u usporedbi s, od</TD></TR>
<TR><TD>161</TD><TD>170</TD><TD>away* (from this or that place) [av]</TD><TD>dalje</TD></TR>
<TR><TD>162</TD><TD>171</TD><TD>first* [num]</TD><TD>prvi</TD></TR>
<TR><TD>163</TD><TD>172</TD><TD>believe* (accept as true) [v]</TD><TD>vjerovati</TD></TR>
<TR><TD>164</TD><TD>173</TD><TD>other*, another* [aj,pn] 2s</TD><TD>drugi, ostali</TD></TR>
<TR><TD>165</TD><TD>174</TD><TD>feel* (experience an emotion or sentiment) (pf/impf) [v]</TD><TD>osjetiti / osjećati</TD></TR>
<TR><TD>166</TD><TD>174</TD><TD>feel* (perceive with the tactile sense) (pf/impf) [v]</TD><TD>osjetiti / osjećati</TD></TR>
<TR><TD>167</TD><TD>176</TD><TD>work* [v]</TD><TD>raditi</TD></TR>
<TR><TD>168</TD><TD>176</TD><TD>work*, effort*, labor*, toil [n]</TD><TD>rad</TD></TR>
<TR><TD>169</TD><TD>178</TD><TD>fine** [n]</TD><TD>globa</TD></TR>
<TR><TD>170</TD><TD>179</TD><TD>home* [n]</TD><TD>dom</TD></TR>
<TR><TD>171</TD><TD>180</TD><TD>after* (later than; in the future of) [prep] 2s</TD><TD>nakon, poslije</TD></TR>
<TR><TD>172</TD><TD>181</TD><TD>last*, final (after all others) [aj] 2s</TD><TD>posljednji, konačan</TD></TR>
<TR><TD>173</TD><TD>182</TD><TD>these* (m/f/n) [pn]</TD><TD>ovi / ove / ova</TD></TR>
<TR><TD>174</TD><TD>183</TD><TD>day* (24-hour period) [n]</TD><TD>dan</TD></TR>
<TR><TD>175</TD><TD>183</TD><TD>day* (daytime -- as opposed to night), diurnal period [n]</TD><TD>dan</TD></TR>
<TR><TD>176</TD><TD>184</TD><TD>keep*, retain, go on having (e.g. "you should keep this book") (pf/impf) [v]</TD><TD>zadržati / zadržavati</TD></TR>
<TR><TD>177</TD><TD>186</TD><TD>put*, place, translocate (pf/impf) [v]</TD><TD>staviti /stavljati</TD></TR>
<TR><TD>178</TD><TD>187</TD><TD>around*, encircling, surrounding [prep]</TD><TD>okolo</TD></TR>
<TR><TD>179</TD><TD>188</TD><TD>stop* (pf/impf) [v]</TD><TD>zaustaviti / zaustavljati</TD></TR>
<TR><TD>180</TD><TD>192</TD><TD>long ago (in the far past) [av] 2s</TD><TD>davno, odavno</TD></TR>
<TR><TD>181</TD><TD>192</TD><TD>long* (of much duration) [aj]</TD><TD>dug</TD></TR>
<TR><TD>182</TD><TD>192</TD><TD>long* (of much length) [aj]</TD><TD>dug</TD></TR>
<TR><TD>183</TD><TD>194</TD><TD>always* (at all times) [av]</TD><TD>uvijek</TD></TR>
<TR><TD>184</TD><TD>195</TD><TD>listen* [v]</TD><TD>slušati</TD></TR>
<TR><TD>185</TD><TD>200</TD><TD>those (m/f/n) [pn]</TD><TD>oni / one / ona</TD></TR>
<TR><TD>186</TD><TD>201</TD><TD>big*, large* (of much size), major* [aj] 2s</TD><TD>velik, ogroman</TD></TR>
<TR><TD>187</TD><TD>207</TD><TD>kind* (nice) [aj] 2s</TD><TD>ljubazan, srdačan</TD></TR>
<TR><TD>188</TD><TD>207</TD><TD>kind*, sort, type, variety (of...) [n]</TD><TD>vrsta</TD></TR>
<TR><TD>189</TD><TD>208</TD><TD>wrong*, incorrect [aj] 3s</TD><TD>pogrešan, kriv, neispravan</TD></TR>
<TR><TD>190</TD><TD>209</TD><TD>through* [prep]</TD><TD>kroz</TD></TR>
<TR><TD>191</TD><TD>212</TD><TD>new*, novel, recent (having been known for a brief time) [aj]</TD><TD>nov</TD></TR>
<TR><TD>192</TD><TD>214</TD><TD>guess [n]</TD><TD>pogodak</TD></TR>
<TR><TD>193</TD><TD>214</TD><TD>guess, conjecture (pf/impf) [v]</TD><TD>pogoditi / pogadati</TD></TR>
<TR><TD>194</TD><TD>216</TD><TD>care*, concern* (about someone or something) [n] 2s</TD><TD>skrb, briga</TD></TR>
<TR><TD>195</TD><TD>217</TD><TD>bad* [aj] 2s</TD><TD>zao, loš</TD></TR>
<TR><TD>196</TD><TD>219</TD><TD>remember* (pf/impf) [v]</TD><TD>pamtiti / zapamtiti</TD></TR>
<TR><TD>197</TD><TD>222</TD><TD>together* [av]</TD><TD>zajedno</TD></TR>
<TR><TD>198</TD><TD>224</TD><TD>leave*, depart, go away from (pf/impf) [v] 2/1s</TD><TD>napustiti, otići / odlaziti</TD></TR>
<TR><TD>199</TD><TD>225</TD><TD>mother* [n] 2s</TD><TD>majka, mati</TD></TR>
<TR><TD>200</TD><TD>226</TD><TD>place*, location [n] 2s</TD><TD>mjesto, lokacija</TD></TR>
<TR><TD>201</TD><TD>227</TD><TD>understand*, comprehend (pf/impf) [v] 2s</TD><TD>razumjeti, shvatiti / razumijevati, shvaćati</TD></TR>
<TR><TD>202</TD><TD>230</TD><TD>hear* [v]</TD><TD>čuti</TD></TR>
<TR><TD>203</TD><TD>231</TD><TD>baby*, infant [n] 2s</TD><TD>beba, dijete</TD></TR>
<TR><TD>204</TD><TD>232</TD><TD>nice*, kind, affable [aj]</TD><TD>ljubazan</TD></TR>
<TR><TD>205</TD><TD>233</TD><TD>father* [n]</TD><TD>otac</TD></TR>
<TR><TD>206</TD><TD>238</TD><TD>their (m/f/n/m pl) [pn]</TD><TD>njihov / njihova / njihovo / njihovi</TD></TR>
<TR><TD>207</TD><TD>241</TD><TD>mind* [n]</TD><TD>um</TD></TR>
<TR><TD>208</TD><TD>242</TD><TD>every*, each* [aj]</TD><TD>svaki</TD></TR>
<TR><TD>209</TD><TD>243</TD><TD>enough*, sufficiently [av] 2s</TD><TD>dosta, dovoljno</TD></TR>
<TR><TD>210</TD><TD>244</TD><TD>try*, attempt, endeavor (pf/impf) [v] 2s</TD><TD>probati, pokušati / probati, pokušavati</TD></TR>
<TR><TD>211</TD><TD>245</TD><TD>hell, Hades [n]</TD><TD>pakao</TD></TR>
<TR><TD>212</TD><TD>249</TD><TD>own* (possess according to law or custom) [v]</TD><TD>posjedovati</TD></TR>
<TR><TD>213</TD><TD>250</TD><TD>family* [n]</TD><TD>obitelj</TD></TR>
<TR><TD>214</TD><TD>251</TD><TD>whole*, entire, complete [aj] 2s</TD><TD>cio, potpun</TD></TR>
<TR><TD>215</TD><TD>253</TD><TD>house* (a free-standing man-made dwelling-building) [n]</TD><TD>kuća</TD></TR>
<TR><TD>216</TD><TD>256</TD><TD>idea*, concept (thought-bundle) [n] 2s</TD><TD>ideja, koncept</TD></TR>
<TR><TD>217</TD><TD>257</TD><TD>ask*, inquire [v]</TD><TD>pitati</TD></TR>
<TR><TD>218</TD><TD>258</TD><TD>best* [aj]</TD><TD>najbolji</TD></TR>
<TR><TD>219</TD><TD>259</TD><TD>must* (see also "have to") (I/you sg./he,she,it/we/you pl.+pol./they) [aux-v-pres]</TD><TD>moram / moraš / mora / moramo / morate / moraju</TD></TR>
<TR><TD>220</TD><TD>261</TD><TD>old* (of long standing; having been known for a long time) [aj]</TD><TD>star</TD></TR>
<TR><TD>221</TD><TD>261</TD><TD>old* (of much age; having existed or lived for a long time) [aj]</TD><TD>star</TD></TR>
<TR><TD>222</TD><TD>263</TD><TD>woman* (adult female person) [n]</TD><TD>žena</TD></TR>
<TR><TD>223</TD><TD>264</TD><TD>Hello. [ij]</TD><TD>Zdravo.</TD></TR>
<TR><TD>224</TD><TD>265</TD><TD>which* [aj]</TD><TD>koji</TD></TR>
<TR><TD>225</TD><TD>267</TD><TD>room*, chamber [n] 2s</TD><TD>soba, odaja</TD></TR>
<TR><TD>226</TD><TD>268</TD><TD>money* [n]</TD><TD>novac</TD></TR>
<TR><TD>227</TD><TD>269</TD><TD>left(-hand) [aj]</TD><TD>lijevi</TD></TR>
<TR><TD>228</TD><TD>269</TD><TD>left* (behind) [v-pp]</TD><TD>preostao</TD></TR>
<TR><TD>229</TD><TD>271</TD><TD>tonight* [av]</TD><TD>večeras</TD></TR>
<TR><TD>230</TD><TD>272</TD><TD>real*, actual [aj] 2s</TD><TD>stvarne, realan</TD></TR>
<TR><TD>231</TD><TD>273</TD><TD>son* [n]</TD><TD>sin</TD></TR>
<TR><TD>232</TD><TD>274</TD><TD>hope* [v] 2w</TD><TD>nadati se</TD></TR>
<TR><TD>233</TD><TD>275</TD><TD>name* [n]</TD><TD>ime</TD></TR>
<TR><TD>234</TD><TD>276</TD><TD>same*, identical [aj] 2s</TD><TD>isti, identičan</TD></TR>
<TR><TD>235</TD><TD>280</TD><TD>happy* [aj]</TD><TD>sretan</TD></TR>
<TR><TD>236</TD><TD>282</TD><TD>saw (tool) [n]</TD><TD>pila</TD></TR>
<TR><TD>237</TD><TD>283</TD><TD>girl* [n]</TD><TD>djevojka</TD></TR>
<TR><TD>238</TD><TD>285</TD><TD>show*, exhibit, display [v]</TD><TD>pokazati</TD></TR>
<TR><TD>239</TD><TD>286</TD><TD>friend* [n]</TD><TD>prijatelj</TD></TR>
<TR><TD>240</TD><TD>287</TD><TD>already* (prior to the time mentioned) [av]</TD><TD>već</TD></TR>
<TR><TD>241</TD><TD>289</TD><TD>May [cal] 2s</TD><TD>svibanj, maj</TD></TR>
<TR><TD>242</TD><TD>290</TD><TD>next* (coming immediately after; "tomorrow" = the next day) [aj]</TD><TD>slijedeći</TD></TR>
<TR><TD>243</TD><TD>291</TD><TD>three [num]</TD><TD>tri</TD></TR>
<TR><TD>244</TD><TD>292</TD><TD>job*, employment [n]</TD><TD>posao</TD></TR>
<TR><TD>245</TD><TD>293</TD><TD>problem* [n]</TD><TD>problem</TD></TR>
<TR><TD>246</TD><TD>294</TD><TD>minute* (60 seconds) [n]</TD><TD>minuta</TD></TR>
<TR><TD>247</TD><TD>296</TD><TD>world* [n]</TD><TD>svijet</TD></TR>
<TR><TD>248</TD><TD>300</TD><TD>honey [n]</TD><TD>med</TD></TR>
<TR><TD>249</TD><TD>301</TD><TD>matter*, material*, substance [n] 3s</TD><TD>materijalne, materijal, supstancija</TD></TR>
<TR><TD>250</TD><TD>307</TD><TD>probably* [av]</TD><TD>vjerojatno</TD></TR>
<TR><TD>251</TD><TD>308</TD><TD>happen*, occur (pf/impf) [v] 2/2w</TD><TD>dogoditi se / dogašati se</TD></TR>
<TR><TD>252</TD><TD>310</TD><TD>hurt* (pf/impf) [v]</TD><TD>povrijediti / povređivati</TD></TR>
<TR><TD>253</TD><TD>311</TD><TD>boy* [n]</TD><TD>dječak</TD></TR>
<TR><TD>254</TD><TD>312</TD><TD>both* (m/f/n) [aj]</TD><TD>oba / obje / oba</TD></TR>
<TR><TD>255</TD><TD>313</TD><TD>while* [cj]</TD><TD>dok</TD></TR>
<TR><TD>256</TD><TD>314</TD><TD>dead* [aj]</TD><TD>mrtav</TD></TR>
<TR><TD>257</TD><TD>314</TD><TD>dead* [n]</TD><TD>mrtvac</TD></TR>
<TR><TD>258</TD><TD>316</TD><TD>alone* [aj]</TD><TD>sam</TD></TR>
<TR><TD>259</TD><TD>317</TD><TD>since* (time/because) [cj]</TD><TD>otkad / otkako</TD></TR>
<TR><TD>260</TD><TD>318</TD><TD>Excuse me., Forgive me. [ij]</TD><TD>Oprostite.</TD></TR>
<TR><TD>261</TD><TD>318</TD><TD>excuse** (pf/impf) [v]</TD><TD>pravdati / opravdati</TD></TR>
<TR><TD>262</TD><TD>319</TD><TD>start* [n]</TD><TD>početak</TD></TR>
<TR><TD>263</TD><TD>319</TD><TD>start* (pf/impf) [v]</TD><TD>započeti / započinjati</TD></TR>
<TR><TD>264</TD><TD>320</TD><TD>kill* (pf/impf) [v]</TD><TD>ubiti / ubijati</TD></TR>
<TR><TD>265</TD><TD>321</TD><TD>hard* (difficult) [aj]</TD><TD>težak</TD></TR>
<TR><TD>266</TD><TD>321</TD><TD>hard*, firm, resistant to pressure [aj]</TD><TD>tvrd</TD></TR>
<TR><TD>267</TD><TD>323</TD><TD>today* [av]</TD><TD>danas</TD></TR>
<TR><TD>268</TD><TD>324</TD><TD>car*, automobile* (wheeled motor vehicle) [n] 2s</TD><TD>automobil, auto</TD></TR>
<TR><TD>269</TD><TD>325</TD><TD>cow* / bull / cattle (bovine animal of either sex) [n]</TD><TD>krava / bik / stoka</TD></TR>
<TR><TD>270</TD><TD>325</TD><TD>ready*, prepared for a task or event [aj]</TD><TD>spreman</TD></TR>
<TR><TD>271</TD><TD>326</TD><TD>until* [cj]</TD><TD>dok</TD></TR>
<TR><TD>272</TD><TD>327</TD><TD>without*, with no ..., lacking [prep]</TD><TD>bez</TD></TR>
<TR><TD>273</TD><TD>330</TD><TD>hold*, grasp [v]</TD><TD>držati</TD></TR>
<TR><TD>274</TD><TD>334</TD><TD>deal* (cards) [v]</TD><TD>dijeliti</TD></TR>
<TR><TD>275</TD><TD>336</TD><TD>once [aj] 2s</TD><TD>jednom, jedanput</TD></TR>
<TR><TD>276</TD><TD>339</TD><TD>morning* (dawn to noon) [n]</TD><TD>jutro</TD></TR>
<TR><TD>277</TD><TD>342</TD><TD>head* [n]</TD><TD>glava</TD></TR>
<TR><TD>278</TD><TD>344</TD><TD>most* (the largest quantity of) 1(+1)w [aj]</TD><TD>većina (+ genitive)</TD></TR>
<TR><TD>279</TD><TD>344</TD><TD>most* (to the largest degree) [av]</TD><TD>većinom</TD></TR>
<TR><TD>280</TD><TD>346</TD><TD>worry* [v]</TD><TD>brinuti se</TD></TR>
<TR><TD>281</TD><TD>346</TD><TD>worry*, anxiety [n] 2s</TD><TD>briga, tjeskoba</TD></TR>
<TR><TD>282</TD><TD>347</TD><TD>second* (1/60th of a minute) [n]</TD><TD>sekunda</TD></TR>
<TR><TD>283</TD><TD>347</TD><TD>second* [num]</TD><TD>drugi</TD></TR>
<TR><TD>284</TD><TD>348</TD><TD>part of [n] 1(+1)w</TD><TD>dio (+ genitive)</TD></TR>
<TR><TD>285</TD><TD>348</TD><TD>part* (piece) [n]</TD><TD>komad</TD></TR>
<TR><TD>286</TD><TD>349</TD><TD>live* (be alive) [v]</TD><TD>živjeti</TD></TR>
<TR><TD>287</TD><TD>349</TD><TD>live* (somewhere) [v]</TD><TD>stanovati</TD></TR>
<TR><TD>288</TD><TD>350</TD><TD>truth [n]</TD><TD>istina</TD></TR>
<TR><TD>289</TD><TD>351</TD><TD>school* [n]</TD><TD>škola</TD></TR>
<TR><TD>290</TD><TD>352</TD><TD>face* [n]</TD><TD>lice</TD></TR>
<TR><TD>291</TD><TD>353</TD><TD>forget* (contra-remember) (pf/impf) [v]</TD><TD>zaboraviti / zaboravljati</TD></TR>
<TR><TD>292</TD><TD>354</TD><TD>true* [aj]</TD><TD>istinit</TD></TR>
<TR><TD>293</TD><TD>355</TD><TD>business*, commerce [n]</TD><TD>biznis</TD></TR>
<TR><TD>294</TD><TD>357</TD><TD>cause* (induce something to be or happen) (pf/impf) [v]</TD><TD>izazvati / izazivati</TD></TR>
<TR><TD>295</TD><TD>357</TD><TD>cause* [n]</TD><TD>uzrok</TD></TR>
<TR><TD>296</TD><TD>358</TD><TD>soon* (in the near future) [av]</TD><TD>uskoro</TD></TR>
<TR><TD>297</TD><TD>360</TD><TD>few* (a small number of) [aj]</TD><TD>malo</TD></TR>
<TR><TD>298</TD><TD>362</TD><TD>wife* [n] 2s</TD><TD>žena, supruga</TD></TR>
<TR><TD>299</TD><TD>364</TD><TD>use*, utilize [v]</TD><TD>koristiti</TD></TR>
<TR><TD>300</TD><TD>365</TD><TD>chance*, randomicity, luck* [n]</TD><TD>prilika</TD></TR>
<TR><TD>301</TD><TD>366</TD><TD>run* [v]</TD><TD>trčati</TD></TR>
<TR><TD>302</TD><TD>367</TD><TD>move* (engage in motion, cause to engage in motion) (pf/impf) [v] 2s</TD><TD>pomaknuti, pomjeriti / pomicati, pomeriti</TD></TR>
<TR><TD>303</TD><TD>369</TD><TD>person*, human* being [n] 2s;1,2w</TD><TD>osoba, ljudsko biće</TD></TR>
<TR><TD>304</TD><TD>374</TD><TD>heart (coronary muscle) [n]</TD><TD>srce</TD></TR>
<TR><TD>305</TD><TD>375</TD><TD>such* (m/f/n) [aj]</TD><TD>takav / takva / takvo</TD></TR>
<TR><TD>306</TD><TD>376</TD><TD>Miss [n]</TD><TD>gospođica</TD></TR>
<TR><TD>307</TD><TD>376</TD><TD>miss*, fail to hit, reach, see etc. (pf/impf) [v]</TD><TD>propustiti / propuštati</TD></TR>
<TR><TD>308</TD><TD>377</TD><TD>married (man/woman) [aj]</TD><TD>vjenčan / vjenčana</TD></TR>
<TR><TD>309</TD><TD>378</TD><TD>point* (dot) [n]</TD><TD>točka</TD></TR>
<TR><TD>310</TD><TD>378</TD><TD>point* (logic) [n]</TD><TD>svrha</TD></TR>
<TR><TD>311</TD><TD>378</TD><TD>point* [v]</TD><TD>pokazati</TD></TR>
<TR><TD>312</TD><TD>381</TD><TD>meet*, encounter, come across (pf/impf) [v]</TD><TD>sresti / sretati</TD></TR>
<TR><TD>313</TD><TD>383</TD><TD>many* (a large number of) [aj]</TD><TD>mnogi</TD></TR>
<TR><TD>314</TD><TD>385</TD><TD>reason*, explanation, justification, rationale [n]</TD><TD>razlog</TD></TR>
<TR><TD>315</TD><TD>389</TD><TD>bring* (cause something to come along with one toward a place) (pf/impf) [v]</TD><TD>donijeti / donositi</TD></TR>
<TR><TD>316</TD><TD>390</TD><TD>case (court)** [n] 1(1)w</TD><TD>slučaj (sud)</TD></TR>
<TR><TD>317</TD><TD>390</TD><TD>case (medical)** [n] 1(1)w</TD><TD>slučaj (medicinski)</TD></TR>
<TR><TD>318</TD><TD>391</TD><TD>turn*, divert (send in a different direction) (pf/impf) [vt] 2s</TD><TD>odvratiti, skrenuti / odvraćati, skretati</TD></TR>
<TR><TD>319</TD><TD>391</TD><TD>turn*, rotate, revolve (pf/impf) [vi]</TD><TD>okrenuti / okretati</TD></TR>
<TR><TD>320</TD><TD>392</TD><TD>wish* [v]</TD><TD>željeti</TD></TR>
<TR><TD>321</TD><TD>393</TD><TD>tomorrow* [av]</TD><TD>sutra</TD></TR>
<TR><TD>322</TD><TD>395</TD><TD>trust* [v]</TD><TD>vjerovati</TD></TR>
<TR><TD>323</TD><TD>396</TD><TD>check (written order directing a bank to pay from an account) [n]</TD><TD>ček</TD></TR>
<TR><TD>324</TD><TD>397</TD><TD>change* (become or make different), vary [v]</TD><TD>mijenjati</TD></TR>
<TR><TD>325</TD><TD>397</TD><TD>change* [n]</TD><TD>promjena</TD></TR>
<TR><TD>326</TD><TD>398</TD><TD>end* [n]</TD><TD>kraj</TD></TR>
<TR><TD>327</TD><TD>398</TD><TD>end*, conclude, finish (pf/impf) [v]</TD><TD>završiti / završavati</TD></TR>
<TR><TD>328</TD><TD>399</TD><TD>late*, tardy [aj,av]</TD><TD>kasan</TD></TR>
<TR><TD>329</TD><TD>401</TD><TD>five [num]</TD><TD>pet</TD></TR>
<TR><TD>330</TD><TD>402</TD><TD>least (the smallest quantity of) [aj]</TD><TD>najmanji</TD></TR>
<TR><TD>331</TD><TD>402</TD><TD>least (to the smallest degree) [av]</TD><TD>najmanje</TD></TR>
<TR><TD>332</TD><TD>403</TD><TD>town* [n]</TD><TD>grad</TD></TR>
<TR><TD>333</TD><TD>407</TD><TD>year* [n]</TD><TD>godina</TD></TR>
<TR><TD>334</TD><TD>411</TD><TD>brother* [n]</TD><TD>brat</TD></TR>
<TR><TD>335</TD><TD>412</TD><TD>play* (performed by actors on stage), drama [n] (1)1w</TD><TD>(kazališni) komad</TD></TR>
<TR><TD>336</TD><TD>412</TD><TD>play*, recreate, frolic [v]</TD><TD>igrati</TD></TR>
<TR><TD>337</TD><TD>413</TD><TD>hate* [v]</TD><TD>mrziti</TD></TR>
<TR><TD>338</TD><TD>416</TD><TD>beautiful [aj] 2s</TD><TD>lijep, prekrasan</TD></TR>
<TR><TD>339</TD><TD>418</TD><TD>fact* (undisputed datum) [n]</TD><TD>činjenica</TD></TR>
<TR><TD>340</TD><TD>420</TD><TD>party* (night out) [n]</TD><TD>provod</TD></TR>
<TR><TD>341</TD><TD>420</TD><TD>party* (political) / sect (religious) [n]</TD><TD>stranka / sekta</TD></TR>
<TR><TD>342</TD><TD>421</TD><TD>sit* (be in a sitting position) (pf/impf) [v]</TD><TD>sjesti / sjediti</TD></TR>
<TR><TD>343</TD><TD>422</TD><TD>open* (not shut) [aj]</TD><TD>otvoren</TD></TR>
<TR><TD>344</TD><TD>423</TD><TD>afraid** [aj]</TD><TD>uplašen</TD></TR>
<TR><TD>345</TD><TD>424</TD><TD>between*, among, amidst, inter- [prep] 2s</TD><TD>između, među-</TD></TR>
<TR><TD>346</TD><TD>425</TD><TD>important* [aj] 2s</TD><TD>važan, značajan</TD></TR>
<TR><TD>347</TD><TD>426</TD><TD>rest* (of ...), remainder, leftovers, remnant [n]</TD><TD>ostatak</TD></TR>
<TR><TD>348</TD><TD>426</TD><TD>rest* (pf/impf) [v] 2,2w</TD><TD>odmoriti se / odmarati se</TD></TR>
<TR><TD>349</TD><TD>427</TD><TD>fun* [n]</TD><TD>razonoda</TD></TR>
<TR><TD>350</TD><TD>429</TD><TD>word* [n]</TD><TD>riječ</TD></TR>
<TR><TD>351</TD><TD>430</TD><TD>watch* (timepiece) [n]</TD><TD>sat</TD></TR>
<TR><TD>352</TD><TD>430</TD><TD>watch* [v]</TD><TD>gledati</TD></TR>
<TR><TD>353</TD><TD>434</TD><TD>sister* [n]</TD><TD>sestra</TD></TR>
<TR><TD>354</TD><TD>437</TD><TD>bit (small amount, particle) [n]</TD><TD>djelić</TD></TR>
<TR><TD>355</TD><TD>440</TD><TD>either*...or [cj] 2w</TD><TD>ili ... ili</TD></TR>
<TR><TD>356</TD><TD>441</TD><TD>Mrs. [n]</TD><TD>gospođa</TD></TR>
<TR><TD>357</TD><TD>442</TD><TD>feeling [n]</TD><TD>osjećaj</TD></TR>
<TR><TD>358</TD><TD>443</TD><TD>daughter* [n]</TD><TD>kći</TD></TR>
<TR><TD>359</TD><TD>447</TD><TD>under*, below, beneath [prep] 2s</TD><TD>pod, ispod</TD></TR>
<TR><TD>360</TD><TD>448</TD><TD>break* (into pieces) (pf/impf) [v]</TD><TD>razbiti / razbijati</TD></TR>
<TR><TD>361</TD><TD>449</TD><TD>promise* (a claim about one's future actions), pledge [n]</TD><TD>obećanje</TD></TR>
<TR><TD>362</TD><TD>450</TD><TD>door* [n]</TD><TD>vrata</TD></TR>
<TR><TD>363</TD><TD>451</TD><TD>set* (complete group of similar items) [n]</TD><TD>skup</TD></TR>
<TR><TD>364</TD><TD>453</TD><TD>hand [n]</TD><TD>ruka</TD></TR>
<TR><TD>365</TD><TD>454</TD><TD>easy* [aj] 2s</TD><TD>lak, lagan</TD></TR>
<TR><TD>366</TD><TD>455</TD><TD>question*, query [n]</TD><TD>pitanje</TD></TR>
<TR><TD>367</TD><TD>456</TD><TD>doctor* [n] 2s</TD><TD>doktor, liječnik</TD></TR>
<TR><TD>368</TD><TD>458</TD><TD>far* (at or to a great distance) [aj,av] 2s</TD><TD>dalek, udaljen</TD></TR>
<TR><TD>369</TD><TD>459</TD><TD>walk* [n]</TD><TD>šetnja</TD></TR>
<TR><TD>370</TD><TD>459</TD><TD>walk* [v]</TD><TD>hodati</TD></TR>
<TR><TD>371</TD><TD>461</TD><TD>trouble*, difficulty [n] 2s</TD><TD>neprilika, tešoca</TD></TR>
<TR><TD>372</TD><TD>462</TD><TD>mine** [v]</TD><TD>minirati</TD></TR>
<TR><TD>373</TD><TD>463</TD><TD>though [av]</TD><TD>iako</TD></TR>
<TR><TD>374</TD><TD>465</TD><TD>different* [aj]</TD><TD>različit</TD></TR>
<TR><TD>375</TD><TD>467</TD><TD>hospital* [n]</TD><TD>bolnica</TD></TR>
<TR><TD>376</TD><TD>471</TD><TD>wedding [n]</TD><TD>vjenčanje</TD></TR>
<TR><TD>377</TD><TD>472</TD><TD>shut [n]</TD><TD>zatvoren</TD></TR>
<TR><TD>378</TD><TD>473</TD><TD>able* [aj]</TD><TD>sposoban</TD></TR>
<TR><TD>379</TD><TD>474</TD><TD>die* (pf/impf) [v]</TD><TD>umrijeti, umirati</TD></TR>
<TR><TD>380</TD><TD>475</TD><TD>perfect* [aj]</TD><TD>savršen</TD></TR>
<TR><TD>381</TD><TD>476</TD><TD>police* (organization to enforce laws) [n]</TD><TD>policija</TD></TR>
<TR><TD>382</TD><TD>477</TD><TD>stand* [v]</TD><TD>stajati</TD></TR>
<TR><TD>383</TD><TD>479</TD><TD>hit*, strike (pf/impf) [v]</TD><TD>udariti / udarati</TD></TR>
<TR><TD>384</TD><TD>480</TD><TD>story*, report* [n] 2s</TD><TD>priča, izvještaj</TD></TR>
<TR><TD>385</TD><TD>483</TD><TD>waiting (as in waiting period) [aj]</TD><TD>čekanje</TD></TR>
<TR><TD>386</TD><TD>484</TD><TD>dinner* [n]</TD><TD>večera</TD></TR>
<TR><TD>387</TD><TD>485</TD><TD>against* [prep]</TD><TD>protiv</TD></TR>
<TR><TD>388</TD><TD>486</TD><TD>funny, comical [aj]</TD><TD>smiješan</TD></TR>
<TR><TD>389</TD><TD>487</TD><TD>husband* [n] 2s</TD><TD>muž, suprug</TD></TR>
<TR><TD>390</TD><TD>488</TD><TD>almost*, nearly [av]</TD><TD>skoro</TD></TR>
<TR><TD>391</TD><TD>489</TD><TD>stupid* [aj]</TD><TD>glup</TD></TR>
<TR><TD>392</TD><TD>490</TD><TD>pay* [v]</TD><TD>platiti</TD></TR>
<TR><TD>393</TD><TD>491</TD><TD>answer*, reply to a question or argument [n]</TD><TD>odgovor</TD></TR>
<TR><TD>394</TD><TD>492</TD><TD>four [num]</TD><TD>četiri</TD></TR>
<TR><TD>395</TD><TD>493</TD><TD>office* [n]</TD><TD>ured</TD></TR>
<TR><TD>396</TD><TD>494</TD><TD>cool* [aj]</TD><TD>hladan</TD></TR>
<TR><TD>397</TD><TD>496</TD><TD>news*, tidings [n]</TD><TD>vijesti</TD></TR>
<TR><TD>398</TD><TD>497</TD><TD>child* [n]</TD><TD>dijete</TD></TR>
<TR><TD>399</TD><TD>499</TD><TD>half* (1/2) [num] 3s</TD><TD>polovica, polovina, pola</TD></TR>
<TR><TD>400</TD><TD>500</TD><TD>side*, flank, lateral area [n]</TD><TD>strana</TD></TR>
<TR><TD>401</TD><TD>502</TD><TD>moment, an instant [n]</TD><TD>trenutak</TD></TR>
<TR><TD>402</TD><TD>503</TD><TD>sleep* [n]</TD><TD>spavanje</TD></TR>
<TR><TD>403</TD><TD>503</TD><TD>sleep* [v]</TD><TD>spavati</TD></TR>
<TR><TD>404</TD><TD>504</TD><TD>read* (pf/impf) [v]</TD><TD>proćitati / ćitati</TD></TR>
<TR><TD>405</TD><TD>507</TD><TD>young* (of little age; having existed or lived for a brief time) [aj]</TD><TD>mlad</TD></TR>
<TR><TD>406</TD><TD>515</TD><TD>bed* [n]</TD><TD>krevet</TD></TR>
<TR><TD>407</TD><TD>516</TD><TD>also*, additionally, too [av]</TD><TD>također</TD></TR>
<TR><TD>408</TD><TD>517</TD><TD>date* (coordinates of a day given in some timekeeping system) [n]</TD><TD>datum</TD></TR>
<TR><TD>409</TD><TD>517</TD><TD>date* (tree or fruit of sp. Phoenix dactylifera) [n]</TD><TD>datulja</TD></TR>
<TR><TD>410</TD><TD>518</TD><TD>line* (series of contiguous points) [n] 2s</TD><TD>crta, linija</TD></TR>
<TR><TD>411</TD><TD>519</TD><TD>plan* [v]</TD><TD>planirati</TD></TR>
<TR><TD>412</TD><TD>519</TD><TD>plan*, design [n] 2s</TD><TD>plan, dizajn</TD></TR>
<TR><TD>413</TD><TD>521</TD><TD>lose* (cease having; contra-acquire) (pf/impf) [vt]</TD><TD>izgubiti / gubiti</TD></TR>
<TR><TD>414</TD><TD>522</TD><TD>fire* [n]</TD><TD>vatra</TD></TR>
<TR><TD>415</TD><TD>523</TD><TD>free* (at liberty) [aj]</TD><TD>slobodan</TD></TR>
<TR><TD>416</TD><TD>523</TD><TD>free* (gratis) [aj]</TD><TD>besplatan</TD></TR>
<TR><TD>417</TD><TD>525</TD><TD>serious*, earnest, grave [aj]</TD><TD>ozbiljan</TD></TR>
<TR><TD>418</TD><TD>528</TD><TD>behind*, in back of, to the rear of [prep]</TD><TD>iza</TD></TR>
<TR><TD>419</TD><TD>530</TD><TD>high*, tall (of much height) [aj]</TD><TD>visok</TD></TR>
<TR><TD>420</TD><TD>531</TD><TD>ahead [av]</TD><TD>ispred</TD></TR>
<TR><TD>421</TD><TD>532</TD><TD>week* [n] 2s</TD><TD>tjedan, sedmica</TD></TR>
<TR><TD>422</TD><TD>533</TD><TD>wonderful* [aj] 2s</TD><TD>divan, krasan</TD></TR>
<TR><TD>423</TD><TD>535</TD><TD>fight*, combat [v]</TD><TD>boriti se</TD></TR>
<TR><TD>424</TD><TD>536</TD><TD>past* (the p~), earlier time [n]</TD><TD>prošlost, historija</TD></TR>
<TR><TD>425</TD><TD>537</TD><TD>cut* [n] 2s</TD><TD>posjekotina, porezotina</TD></TR>
<TR><TD>426</TD><TD>537</TD><TD>cut* [v] 2s</TD><TD>rezati, sjeći</TD></TR>
<TR><TD>427</TD><TD>538</TD><TD>quite [av] 2s</TD><TD>priločno, poprilično</TD></TR>
<TR><TD>428</TD><TD>539</TD><TD>number*, numeral (a word or symbol indicating quantity) [n]</TD><TD>broj</TD></TR>
<TR><TD>429</TD><TD>541</TD><TD>sick* [aj]</TD><TD>bolestan</TD></TR>
<TR><TD>430</TD><TD>544</TD><TD>game* (a rule-governed system of competitive amusement) [n]</TD><TD>igra</TD></TR>
<TR><TD>431</TD><TD>544</TD><TD>game*, match (one particular encounter between competitors) [n]</TD><TD>utakmica</TD></TR>
<TR><TD>432</TD><TD>545</TD><TD>eat* [v]</TD><TD>jesti</TD></TR>
<TR><TD>433</TD><TD>548</TD><TD>death [n]</TD><TD>smrt</TD></TR>
<TR><TD>434</TD><TD>549</TD><TD>along** [aj]</TD><TD>uzduž</TD></TR>
<TR><TD>435</TD><TD>550</TD><TD>save*, rescue* (pf/impf) [v]</TD><TD>spasiti / spašavati</TD></TR>
<TR><TD>436</TD><TD>560</TD><TD>book* [n]</TD><TD>knjiga</TD></TR>
<TR><TD>437</TD><TD>562</TD><TD>seem*, appear* to be, give the impression of [v] 3s;1,2,2w</TD><TD>izgledati, čìniti se, doimati se</TD></TR>
<TR><TD>438</TD><TD>563</TD><TD>sort* [v] 2s</TD><TD>razvrstati, poredati</TD></TR>
<TR><TD>439</TD><TD>564</TD><TD>safe* [aj]</TD><TD>siguran</TD></TR>
<TR><TD>440</TD><TD>565</TD><TD>living [aj]</TD><TD>dnevni</TD></TR>
<TR><TD>441</TD><TD>566</TD><TD>children** [n]</TD><TD>djeca</TD></TR>
<TR><TD>442</TD><TD>569</TD><TD>front* [n]</TD><TD>prednje</TD></TR>
<TR><TD>443</TD><TD>574</TD><TD>clear* [v]</TD><TD>raščistiti</TD></TR>
<TR><TD>444</TD><TD>574</TD><TD>clear*, plain (easy to see or understand) [aj] 2s</TD><TD>jasan, očit</TD></TR>
<TR><TD>445</TD><TD>575</TD><TD>figure [n] 2s</TD><TD>lik, figura</TD></TR>
<TR><TD>446</TD><TD>576</TD><TD>hot* [aj]</TD><TD>vruć</TD></TR>
<TR><TD>447</TD><TD>578</TD><TD>six [num]</TD><TD>šest</TD></TR>
<TR><TD>448</TD><TD>580</TD><TD>drink* [v]</TD><TD>piti</TD></TR>
<TR><TD>449</TD><TD>584</TD><TD>sweet* [aj]</TD><TD>sladak</TD></TR>
<TR><TD>450</TD><TD>585</TD><TD>alive* [aj]</TD><TD>živ</TD></TR>
<TR><TD>451</TD><TD>587</TD><TD>sense* (ability to perceive a given kind of stimuli) [n] 2s</TD><TD>ćulo, osjetilo</TD></TR>
<TR><TD>452</TD><TD>591</TD><TD>special* [aj]</TD><TD>poseban</TD></TR>
<TR><TD>453</TD><TD>592</TD><TD>bet [n]</TD><TD>oklada</TD></TR>
<TR><TD>454</TD><TD>592</TD><TD>bet [v] 2w</TD><TD>kladiti se</TD></TR>
<TR><TD>455</TD><TD>593</TD><TD>blood* [n]</TD><TD>krv</TD></TR>
<TR><TD>456</TD><TD>596</TD><TD>lie* (recline horizontally) (pf/impf) [v]</TD><TD>leći / ležati</TD></TR>
<TR><TD>457</TD><TD>596</TD><TD>lie* (utter a known falsehood) [v]</TD><TD>lagati</TD></TR>
<TR><TD>458</TD><TD>596</TD><TD>lie* [n]</TD><TD>laž</TD></TR>
<TR><TD>459</TD><TD>597</TD><TD>full*, filled [aj] 2s</TD><TD>pun, popunjen</TD></TR>
<TR><TD>460</TD><TD>598</TD><TD>meeting [n]</TD><TD>sastanak</TD></TR>
<TR><TD>461</TD><TD>599</TD><TD>dear, precious, cherished [aj] 2s</TD><TD>drag, mio</TD></TR>
<TR><TD>462</TD><TD>600</TD><TD>coffee* (plant or seeds of sp. Coffea arabica) [n] 2s</TD><TD>kava, kafa</TD></TR>
<TR><TD>463</TD><TD>602</TD><TD>sound* (audible waves in the air) [n]</TD><TD>zvuk</TD></TR>
<TR><TD>464</TD><TD>604</TD><TD>water* [n]</TD><TD>voda</TD></TR>
<TR><TD>465</TD><TD>605</TD><TD>f--k (obscenity) [v]</TD><TD>j----i</TD></TR>
<TR><TD>466</TD><TD>606</TD><TD>ten [num]</TD><TD>deset</TD></TR>
<TR><TD>467</TD><TD>609</TD><TD>welcome** [v] 2w</TD><TD>zaželjeti dobrodošlicu</TD></TR>
<TR><TD>468</TD><TD>610</TD><TD>buy*, purchase* (pf/impf) [v]</TD><TD>kupiti / kupovati</TD></TR>
<TR><TD>469</TD><TD>612</TD><TD>hour* (60 minutes) [n]</TD><TD>sat</TD></TR>
<TR><TD>470</TD><TD>618</TD><TD>body* [n]</TD><TD>tijelo</TD></TR>
<TR><TD>471</TD><TD>619</TD><TD>order* (request) (pf/impf) [v]</TD><TD>naručiti / naručivati</TD></TR>
<TR><TD>472</TD><TD>620</TD><TD>outside of, exterior to [prep]</TD><TD>izvan</TD></TR>
<TR><TD>473</TD><TD>621</TD><TD>hang*, suspend, dangle [v]</TD><TD>visjeti</TD></TR>
<TR><TD>474</TD><TD>622</TD><TD>possible* (able to happen or be done) [aj]</TD><TD>moguć</TD></TR>
<TR><TD>475</TD><TD>623</TD><TD>worse* [aj]</TD><TD>gori</TD></TR>
<TR><TD>476</TD><TD>624</TD><TD>company* (a business organization), firm [n]</TD><TD>tvrtka, firma</TD></TR>
<TR><TD>477</TD><TD>624</TD><TD>company*, presence of others [n]</TD><TD>društvo</TD></TR>
<TR><TD>478</TD><TD>625</TD><TD>mistake* [n]</TD><TD>greška, pogreška</TD></TR>
<TR><TD>479</TD><TD>627</TD><TD>handle (part of tool by which it is held) [n]</TD><TD>ručka</TD></TR>
<TR><TD>480</TD><TD>628</TD><TD>spend** (pf/impf) [v]</TD><TD>potrošiti / trošiti</TD></TR>
<TR><TD>481</TD><TD>632</TD><TD>control* [v] 2s</TD><TD>upravljati, kontrolirati</TD></TR>
<TR><TD>482</TD><TD>634</TD><TD>marriage (spousal relationship) [n]</TD><TD>brak</TD></TR>
<TR><TD>483</TD><TD>637</TD><TD>power* [n]</TD><TD>moć</TD></TR>
<TR><TD>484</TD><TD>638</TD><TD>president* [n]</TD><TD>predsjednik</TD></TR>
<TR><TD>485</TD><TD>639</TD><TD>unless** [cj] 2w</TD><TD>osim ako</TD></TR>
<TR><TD>486</TD><TD>640</TD><TD>copulate, have sex (with) [v] 2w</TD><TD>pariti se</TD></TR>
<TR><TD>487</TD><TD>640</TD><TD>sex*, gender [n] 2s</TD><TD>seks, spol</TD></TR>
<TR><TD>488</TD><TD>642</TD><TD>send*, dispatch, transmit (pf/impf) [v]</TD><TD>poslati / slati</TD></TR>
<TR><TD>489</TD><TD>648</TD><TD>picture*, image [n]</TD><TD>slika</TD></TR>
<TR><TD>490</TD><TD>652</TD><TD>ass (donkey) [n]</TD><TD>magarac</TD></TR>
<TR><TD>491</TD><TD>653</TD><TD>hundred [num]</TD><TD>sto</TD></TR>
<TR><TD>492</TD><TD>656</TD><TD>explain* [v]</TD><TD>objasniti / objašnjavati</TD></TR>
<TR><TD>493</TD><TD>659</TD><TD>sign* (board with public notice written on it) [n]</TD><TD>znak</TD></TR>
<TR><TD>494</TD><TD>661</TD><TD>relationship (family) [n]</TD><TD>srodstvo</TD></TR>
<TR><TD>495</TD><TD>661</TD><TD>relationship, association [n]</TD><TD>odnos</TD></TR>
<TR><TD>496</TD><TD>665</TD><TD>hair* (a strand of fibrous material growing from the body) [n]</TD><TD>dlaka</TD></TR>
<TR><TD>497</TD><TD>665</TD><TD>hair* (the hairs atop one's head thought of as a collective entity) [n] 2s</TD><TD>kosa, vlasi</TD></TR>
<TR><TD>498</TD><TD>669</TD><TD>secret* [aj]</TD><TD>tajna</TD></TR>
<TR><TD>499</TD><TD>670</TD><TD>future* (the f~) [n]</TD><TD>budućnost</TD></TR>
<TR><TD>500</TD><TD>678</TD><TD>touch* (pf/impf) [v]</TD><TD>dirnuti / dirati</TD></TR>
<TR><TD>501</TD><TD>679</TD><TD>kiss* (pf/impf) [v]</TD><TD>poljubiti / ljubiti</TD></TR>
<TR><TD>502</TD><TD>683</TD><TD>wonder* [n]</TD><TD>čudo</TD></TR>
<TR><TD>503</TD><TD>684</TD><TD>pain* [n]</TD><TD>bol</TD></TR>
<TR><TD>504</TD><TD>687</TD><TD>throw*, toss (pf/impf) [v]</TD><TD>baciti / bacati</TD></TR>
<TR><TD>505</TD><TD>688</TD><TD>straight* (not bent) [aj] 2s</TD><TD>prav, ravan</TD></TR>
<TR><TD>506</TD><TD>690</TD><TD>cold*, chilly, frigid [aj] 3s</TD><TD>hladan</TD></TR>
<TR><TD>507</TD><TD>691</TD><TD>white* [aj]</TD><TD>bijel</TD></TR>
<TR><TD>508</TD><TD>692</TD><TD>fast* [aj]</TD><TD>brz</TD></TR>
<TR><TD>509</TD><TD>696</TD><TD>food* [n]</TD><TD>hrana</TD></TR>
<TR><TD>510</TD><TD>698</TD><TD>drive*, impel, propel [v] 3s;1(1),1,1w</TD><TD>voziti (vehicle), goniti, tjerati</TD></TR>
<TR><TD>511</TD><TD>702</TD><TD>marry* (of a man // of a woman) (pf/impf) [v] 2w</TD><TD>udati se / udavati se // oženiti se / ženiti se</TD></TR>
<TR><TD>512</TD><TD>703</TD><TD>light* (of little weight) [aj] 2s</TD><TD>lagan, lak</TD></TR>
<TR><TD>513</TD><TD>703</TD><TD>light* (visible electro-magnetic radiation) [n] 2s</TD><TD>svjetlost, svjetlo</TD></TR>
<TR><TD>514</TD><TD>704</TD><TD>test*, check (pf/impf) [v] 1,2s</TD><TD>provjeriti / provjeravati, testirati</TD></TR>
<TR><TD>515</TD><TD>705</TD><TD>drop* (of liquid) [n]</TD><TD>kap</TD></TR>
<TR><TD>516</TD><TD>709</TD><TD>city* [n]</TD><TD>grad</TD></TR>
<TR><TD>517</TD><TD>710</TD><TD>dream* [n] 2s</TD><TD>san</TD></TR>
<TR><TD>518</TD><TD>710</TD><TD>dream* [v]</TD><TD>sanjati</TD></TR>
<TR><TD>519</TD><TD>711</TD><TD>protect*, defend (pf/impf) [v] 2s</TD><TD>zaštititi, obraniti / štititi, braniti</TD></TR>
<TR><TD>520</TD><TD>712</TD><TD>twenty [num]</TD><TD>dvadeset</TD></TR>
<TR><TD>521</TD><TD>713</TD><TD>class** [n] 2s</TD><TD>razred, klasa</TD></TR>
<TR><TD>522</TD><TD>715</TD><TD>surprise*, startle (pf/impf) [v]</TD><TD>uzbuditi / uzbuđivati</TD></TR>
<TR><TD>523</TD><TD>719</TD><TD>poor*, impoverished [aj]</TD><TD>siromašan</TD></TR>
<TR><TD>524</TD><TD>722</TD><TD>except* for, besides, apart from, other than, excluding [prep]</TD><TD>osim</TD></TR>
<TR><TD>525</TD><TD>723</TD><TD>gun* (ballistic weapon) [n] 2s</TD><TD>pi#353;tolj, pu#353;ka</TD></TR>
<TR><TD>526</TD><TD>725</TD><TD>dance* [v]</TD><TD>plesati</TD></TR>
<TR><TD>527</TD><TD>728</TD><TD>especially** [av] 2s</TD><TD>osobito, posebno</TD></TR>
<TR><TD>528</TD><TD>729</TD><TD>situation** [n]</TD><TD>situacija</TD></TR>
<TR><TD>529</TD><TD>732</TD><TD>pull* (draw something toward oneself) [v]</TD><TD>vući</TD></TR>
<TR><TD>530</TD><TD>735</TD><TD>act*, deed [n] 2s</TD><TD>čin, djelo</TD></TR>
<TR><TD>531</TD><TD>739</TD><TD>top*, peak, summit [n]</TD><TD>vrh</TD></TR>
<TR><TD>532</TD><TD>741</TD><TD>expect*, anticipate (believe that X will come or happen) [v]</TD><TD>očekivati</TD></TR>
<TR><TD>533</TD><TD>746</TD><TD>swear in** (pf/impf) [v] 2/1s;2,1/1w</TD><TD>kleti se, prisegnuti / prisezati</TD></TR>
<TR><TD>534</TD><TD>747</TD><TD>piece* (a part broken or cut or separated from something larger) [n]</TD><TD>komad</TD></TR>
<TR><TD>535</TD><TD>748</TD><TD>busy* [aj] 2s</TD><TD>zaposlen, zauzet</TD></TR>
<TR><TD>536</TD><TD>749</TD><TD>law* (a rule enforced by a government) [n]</TD><TD>zakon</TD></TR>
<TR><TD>537</TD><TD>751</TD><TD>black* [aj]</TD><TD>crn</TD></TR>
<TR><TD>538</TD><TD>754</TD><TD>movie*, motion picture, cinema [n] 2s</TD><TD>kino, film</TD></TR>
<TR><TD>539</TD><TD>756</TD><TD>catch* (stop the motion of and seize in the hands) [v]</TD><TD>uhvatiti</TD></TR>
<TR><TD>540</TD><TD>758</TD><TD>country* [n]</TD><TD>zemlja</TD></TR>
<TR><TD>541</TD><TD>759</TD><TD>less* (a smaller quantity of) [aj]</TD><TD>manje</TD></TR>
<TR><TD>542</TD><TD>759</TD><TD>less* (to a smaller degree) [av]</TD><TD>manje</TD></TR>
<TR><TD>543</TD><TD>761</TD><TD>step* [n]</TD><TD>korak</TD></TR>
<TR><TD>544</TD><TD>762</TD><TD>fall* (pf/impf) [v]</TD><TD>pasti / padati</TD></TR>
<TR><TD>545</TD><TD>766</TD><TD>dog* (Canis familiaris) [n]</TD><TD>pas</TD></TR>
<TR><TD>546</TD><TD>767</TD><TD>Ms. [n]</TD><TD>gđa</TD></TR>
<TR><TD>547</TD><TD>768</TD><TD>win* (pf/impf) [v]</TD><TD>pobijediti / pobjeđivati</TD></TR>
<TR><TD>548</TD><TD>769</TD><TD>air force** [n] 3s</TD><TD>avijacija, zrakoplovstvo, vazduhoplovstvo</TD></TR>
<TR><TD>549</TD><TD>769</TD><TD>air* [n]</TD><TD>zrak</TD></TR>
<TR><TD>550</TD><TD>770</TD><TD>honor** [v]</TD><TD>poštovati</TD></TR>
<TR><TD>551</TD><TD>773</TD><TD>till (pf/impf) [v] 2w</TD><TD>obraditi zemlju / obrađivati zemlju</TD></TR>
<TR><TD>552</TD><TD>774</TD><TD>admit*, confess (pf/impf) [v]</TD><TD>priznati / priznavati</TD></TR>
<TR><TD>553</TD><TD>776</TD><TD>murder** (pf/impf) [v]</TD><TD>ubiti / ubijati</TD></TR>
<TR><TD>554</TD><TD>777</TD><TD>strong* [aj]</TD><TD>jak</TD></TR>
<TR><TD>555</TD><TD>779</TD><TD>evil* [aj]</TD><TD>zao, zločest</TD></TR>
<TR><TD>556</TD><TD>782</TD><TD>information* [n]</TD><TD>informacija</TD></TR>
<TR><TD>557</TD><TD>783</TD><TD>honest** [aj]</TD><TD>iskren</TD></TR>
<TR><TD>558</TD><TD>784</TD><TD>eye [n]</TD><TD>oko</TD></TR>
<TR><TD>559</TD><TD>789</TD><TD>tired*, weary [aj]</TD><TD>umoran</TD></TR>
<TR><TD>560</TD><TD>792</TD><TD>evening (dusk to midnight) [n]</TD><TD>večer</TD></TR>
<TR><TD>561</TD><TD>796</TD><TD>red* [aj]</TD><TD>crven</TD></TR>
<TR><TD>562</TD><TD>798</TD><TD>trip* (journey) [n]</TD><TD>putovanje</TD></TR>
<TR><TD>563</TD><TD>801</TD><TD>club, cudgel [n] 2s</TD><TD>toljaga</TD></TR>
<TR><TD>564</TD><TD>801</TD><TD>club, society (voluntary association re: a common interest) [n] 2s</TD><TD>klub, društvo</TD></TR>
<TR><TD>565</TD><TD>803</TD><TD>suppose*, presume (pf/impf) [v]</TD><TD>pretpostaviti / pretpostavljati</TD></TR>
<TR><TD>566</TD><TD>804</TD><TD>calm** [aj]</TD><TD>miran, smiren</TD></TR>
<TR><TD>567</TD><TD>805</TD><TD>imagine* (pf/impf) [v]</TD><TD>zamisliti / zamišljati</TD></TR>
<TR><TD>568</TD><TD>807</TD><TD>fair** [aj]</TD><TD>pošten</TD></TR>
<TR><TD>569</TD><TD>807</TD><TD>just*, fair, equitable [aj]</TD><TD>pravedan</TD></TR>
<TR><TD>570</TD><TD>810</TD><TD>blame* [n]</TD><TD>krivnja, krivica</TD></TR>
<TR><TD>571</TD><TD>810</TD><TD>blame* (pf/impf) [v]</TD><TD>okriviti / okrivljavati</TD></TR>
<TR><TD>572</TD><TD>811</TD><TD>street* [n]</TD><TD>ulica</TD></TR>
<TR><TD>573</TD><TD>813</TD><TD>favor, prefer [v] 2w</TD><TD>više voljeti</TD></TR>
<TR><TD>574</TD><TD>813</TD><TD>in favor of [aj] 2w</TD><TD>u korist</TD></TR>
<TR><TD>575</TD><TD>814</TD><TD>apartment [n]</TD><TD>stan</TD></TR>
<TR><TD>576</TD><TD>815</TD><TD>court* (of law) [n]</TD><TD>sud</TD></TR>
<TR><TD>577</TD><TD>816</TD><TD>terrible**, horrible** [aj] 2s</TD><TD>strašan, užasan</TD></TR>
<TR><TD>578</TD><TD>817</TD><TD>clean* [aj]</TD><TD>čist</TD></TR>
<TR><TD>579</TD><TD>819</TD><TD>learn* [v]</TD><TD>učiti</TD></TR>
<TR><TD>580</TD><TD>823</TD><TD>rose (plant or flower of genus Rosa) [n]</TD><TD>ruža</TD></TR>
<TR><TD>581</TD><TD>825</TD><TD>relax (pf/impf) [v] 1(1)/1(1)w</TD><TD>opustiti (se) / opuštati (se)</TD></TR>
<TR><TD>582</TD><TD>827</TD><TD>million [num] 2s</TD><TD>milijun, milion</TD></TR>
<TR><TD>583</TD><TD>829</TD><TD>accident* (unintentional and unexpected event) [n] 2s</TD><TD>nezgoda, nesreća</TD></TR>
<TR><TD>584</TD><TD>831</TD><TD>prove** (pf/impf) [v]</TD><TD>dokazati / dokazivati</TD></TR>
<TR><TD>585</TD><TD>834</TD><TD>message* (batch of transmitted information) [n]</TD><TD>poruka</TD></TR>
<TR><TD>586</TD><TD>835</TD><TD>missing** [aj]</TD><TD>nedostajući</TD></TR>
<TR><TD>587</TD><TD>837</TD><TD>small* (of little size) [aj] 2s</TD><TD>mal, malen</TD></TR>
<TR><TD>588</TD><TD>839</TD><TD>table (piece of furniture with flat top) [n]</TD><TD>stol</TD></TR>
<TR><TD>589</TD><TD>841</TD><TD>become* (begin to be; acquire the quality...) (pf/impf) [v]</TD><TD>postati / postajati</TD></TR>
<TR><TD>590</TD><TD>843</TD><TD>mouth [n]</TD><TD>usta</TD></TR>
<TR><TD>591</TD><TD>844</TD><TD>pregnant** [aj]</TD><TD>trudan</TD></TR>
<TR><TD>592</TD><TD>845</TD><TD>middle*, center [n] 3s</TD><TD>sredina, središte, centar</TD></TR>
<TR><TD>593</TD><TD>847</TD><TD>ring (for finger) [n]</TD><TD>prsten</TD></TR>
<TR><TD>594</TD><TD>847</TD><TD>ring (torus) [n] 2s</TD><TD>prsten, torus</TD></TR>
<TR><TD>595</TD><TD>848</TD><TD>careful** [aj]</TD><TD>pažljiv</TD></TR>
<TR><TD>596</TD><TD>851</TD><TD>team*, crew, squad [n]</TD><TD>momčad</TD></TR>
<TR><TD>597</TD><TD>852</TD><TD>ride* (sit or perch in or on a vehicle, horse, etc. and travel) [v]</TD><TD>jahati</TD></TR>
<TR><TD>598</TD><TD>854</TD><TD>wear* (clothes) [v]</TD><TD>nositi</TD></TR>
<TR><TD>599</TD><TD>855</TD><TD>shoot* (cause to rapidly go forth) [v]</TD><TD>pucati</TD></TR>
<TR><TD>600</TD><TD>856</TD><TD>stick* [n] 2s</TD><TD>prut, palica</TD></TR>
<TR><TD>601</TD><TD>857</TD><TD>ray [n]</TD><TD>zraka</TD></TR>
<TR><TD>602</TD><TD>858</TD><TD>follow* [v]</TD><TD>pratiti</TD></TR>
<TR><TD>603</TD><TD>860</TD><TD>angry [aj]</TD><TD>ljut</TD></TR>
<TR><TD>604</TD><TD>861</TD><TD>instead* of, rather than [prep] 2s;1(+1),2w</TD><TD>umjesto (+ genitive), radije nego</TD></TR>
<TR><TD>605</TD><TD>863</TD><TD>write* [v]</TD><TD>pisati</TD></TR>
<TR><TD>606</TD><TD>865</TD><TD>early*, premature [aj,av] 2s</TD><TD>rani, rano</TD></TR>
<TR><TD>607</TD><TD>866</TD><TD>angel, fairy (supernatural flying humanoid) [n] 2s</TD><TD>anđeo, vila</TD></TR>
<TR><TD>608</TD><TD>869</TD><TD>war* [n]</TD><TD>rat</TD></TR>
<TR><TD>609</TD><TD>871</TD><TD>forgive*, pardon (pf/impf) [v]</TD><TD>oprostiti / opraštati</TD></TR>
<TR><TD>610</TD><TD>872</TD><TD>jail* [n]</TD><TD>zatvor</TD></TR>
<TR><TD>611</TD><TD>879</TD><TD>eight [num]</TD><TD>osam</TD></TR>
<TR><TD>612</TD><TD>884</TD><TD>thousand [num] 2s</TD><TD>tisuća, hiljada</TD></TR>
<TR><TD>613</TD><TD>886</TD><TD>music* [n]</TD><TD>glazba, muzika</TD></TR>
<TR><TD>614</TD><TD>888</TD><TD>paper* [n]</TD><TD>papir</TD></TR>
<TR><TD>615</TD><TD>892</TD><TD>state* [n]</TD><TD>stanje</TD></TR>
<TR><TD>616</TD><TD>893</TD><TD>count*, enumerate (pf/impf) [v]</TD><TD>brojiti / brojati</TD></TR>
<TR><TD>617</TD><TD>894</TD><TD>college* [n] 2s</TD><TD>shkoledž, koledž</TD></TR>
<TR><TD>618</TD><TD>897</TD><TD>agree* (pf/impf) [v] 2w</TD><TD>složiti se / slugati se</TD></TR>
<TR><TD>619</TD><TD>899</TD><TD>bill* (of bird) [n]</TD><TD>kljun</TD></TR>
<TR><TD>620</TD><TD>899</TD><TD>bill*, invoice (statement of money owed) [n]</TD><TD>račun</TD></TR>
<TR><TD>621</TD><TD>900</TD><TD>seven [num]</TD><TD>sedam</TD></TR>
<TR><TD>622</TD><TD>903</TD><TD>history* (organized account of past events), chronicle [n] 2s</TD><TD>povijest, historija</TD></TR>
<TR><TD>623</TD><TD>904</TD><TD>share* [v]</TD><TD>dijeliti</TD></TR>
<TR><TD>624</TD><TD>905</TD><TD>offer* (present for acceptance or rejection) (pf/impf) [v]</TD><TD>ponuditi / nuditi</TD></TR>
<TR><TD>625</TD><TD>906</TD><TD>hurry* [n]</TD><TD>žurba</TD></TR>
<TR><TD>626</TD><TD>910</TD><TD>simple* [aj]</TD><TD>jednostavan</TD></TR>
<TR><TD>627</TD><TD>911</TD><TD>decision [n]</TD><TD>odluka</TD></TR>
<TR><TD>628</TD><TD>912</TD><TD>building*, edifice (structure with walls and roof) [n]</TD><TD>zgrada</TD></TR>
<TR><TD>629</TD><TD>914</TD><TD>finish* (pf/impf) [v]</TD><TD>završiti / završavati</TD></TR>
<TR><TD>630</TD><TD>915</TD><TD>voice* [n]</TD><TD>glas</TD></TR>
<TR><TD>631</TD><TD>919</TD><TD>list* [n]</TD><TD>popisa</TD></TR>
<TR><TD>632</TD><TD>922</TD><TD>deserve, merit, be worthy of [v]</TD><TD>zaslužiti</TD></TR>
<TR><TD>633</TD><TD>926</TD><TD>dress [n]</TD><TD>haljina</TD></TR>
<TR><TD>634</TD><TD>931</TD><TD>hotel*, inn [n] 2s</TD><TD>hotel, gostionica</TD></TR>
<TR><TD>635</TD><TD>935</TD><TD>quiet*, soft, faint (of little sonic intensity) [aj]</TD><TD>tih</TD></TR>
<TR><TD>636</TD><TD>937</TD><TD>road* [n] 2s</TD><TD>put, cesta</TD></TR>
<TR><TD>637</TD><TD>940</TD><TD>short* (of little length) [aj]</TD><TD>nizak</TD></TR>
<TR><TD>638</TD><TD>940</TD><TD>short*, brief* (of little duration) [aj]</TD><TD>kratak</TD></TR>
<TR><TD>639</TD><TD>942</TD><TD>beat* (repeatedly hit), batter [v]</TD><TD>pobijediti</TD></TR>
<TR><TD>640</TD><TD>945</TD><TD>clothes** [n]</TD><TD>odjeća</TD></TR>
<TR><TD>641</TD><TD>948</TD><TD>neither** [aj]</TD><TD>nijedan</TD></TR>
<TR><TD>642</TD><TD>948</TD><TD>neither...nor [cj] 2w</TD><TD>ni ... niti</TD></TR>
<TR><TD>643</TD><TD>952</TD><TD>respect* [n]</TD><TD>poštovanje</TD></TR>
<TR><TD>644</TD><TD>952</TD><TD>respect*, venerate, esteem [v]</TD><TD>poštovati</TD></TR>
<TR><TD>645</TD><TD>954</TD><TD>prison*, jail [n]</TD><TD>zatvor</TD></TR>
<TR><TD>646</TD><TD>955</TD><TD>attention* (active perception) [n]</TD><TD>pozornost</TD></TR>
<TR><TD>647</TD><TD>958</TD><TD>near* (at or to a little distance) [aj,av]</TD><TD>blizu</TD></TR>
<TR><TD>648</TD><TD>958</TD><TD>near*, close* to [prep]</TD><TD>blizak</TD></TR>
<TR><TD>649</TD><TD>960</TD><TD>bar*, rod [n] 2s</TD><TD>štap, palica</TD></TR>
<TR><TD>650</TD><TD>962</TD><TD>pass** (pf/impf) [v]</TD><TD>proći / prolaziti</TD></TR>
<TR><TD>651</TD><TD>964</TD><TD>gift* [n]</TD><TD>dar</TD></TR>
<TR><TD>652</TD><TD>967</TD><TD>dark*, dim (with little light present) [aj] 2s</TD><TD>taman, mračan</TD></TR>
<TR><TD>653</TD><TD>968</TD><TD>self* [pn]</TD><TD>sam</TD></TR>
<TR><TD>654</TD><TD>969</TD><TD>owe** [v]</TD><TD>dugovati</TD></TR>
<TR><TD>655</TD><TD>972</TD><TD>ice* [n]</TD><TD>led</TD></TR>
<TR><TD>656</TD><TD>975</TD><TD>normal*, ordinary, usual [aj] 2s</TD><TD>normalan, običan</TD></TR>
<TR><TD>657</TD><TD>976</TD><TD>aunt [n]</TD><TD>tetka</TD></TR>
<TR><TD>658</TD><TD>978</TD><TD>apart, separately [av] 2s</TD><TD>posebno, odvojeno</TD></TR>
<TR><TD>659</TD><TD>979</TD><TD>certain, sure* [aj]</TD><TD>siguran</TD></TR>
<TR><TD>660</TD><TD>982</TD><TD>girlfriend [n] 2s</TD><TD>cura, djevojka</TD></TR>
<TR><TD>661</TD><TD>983</TD><TD>floor* (bottom of room) [n]</TD><TD>pod</TD></TR>
<TR><TD>662</TD><TD>983</TD><TD>floor* (story) [n] 2s</TD><TD>kat, sprat</TD></TR>
<TR><TD>663</TD><TD>984</TD><TD>whether* [cj] 2w</TD><TD>bilo da</TD></TR>
<TR><TD>664</TD><TD>986</TD><TD>present* (existing in the indicated place; contra-absent) [aj]</TD><TD>prisutan</TD></TR>
<TR><TD>665</TD><TD>986</TD><TD>present* (the present time; the now) [n]</TD><TD>sadašnjost</TD></TR>
<TR><TD>666</TD><TD>987</TD><TD>earth* (terra firma contrasted with sea and heaven) [n]</TD><TD>zemlja</TD></TR>
<TR><TD>667</TD><TD>988</TD><TD>private* (contra-public) [aj] 2s</TD><TD>privatni, osoban</TD></TR>
<TR><TD>668</TD><TD>990</TD><TD>box* (rigid rectangular receptacle) [n]</TD><TD>kutija</TD></TR>
<TR><TD>669</TD><TD>992</TD><TD>cover* (thing put onto or extended over something else) [n]</TD><TD>pokrivač</TD></TR>
<TR><TD>670</TD><TD>992</TD><TD>cover* (pf/impf) [v]</TD><TD>pokriti / pokrivati</TD></TR>
<TR><TD>671</TD><TD>993</TD><TD>judge* (compare something to criteria), form an opinion about [v]</TD><TD>suditi</TD></TR>
<TR><TD>672</TD><TD>993</TD><TD>judge* [n]</TD><TD>sudac</TD></TR>
<TR><TD>673</TD><TD>1000</TD><TD>worst* [aj]</TD><TD>najgori</TD></TR>
<TR><TD>674</TD><TD>1001</TD><TD>station* [n] 2s</TD><TD>postaja, stanica</TD></TR>
<TR><TD>675</TD><TD>1003</TD><TD>accept* (willingly receive) (pf/impf) [v]</TD><TD>prihvatiti / prohvaćati</TD></TR>
<TR><TD>676</TD><TD>1004</TD><TD>blow* (move or cause to move as a current of gas) (pf/impf) [v] 2s</TD><TD>puhniti, duhnuti / puhati, duhati</TD></TR>
<TR><TD>677</TD><TD>1005</TD><TD>strange*, weird, unusual, peculiar [aj] 2s</TD><TD>neobičan, čudan</TD></TR>
<TR><TD>678</TD><TD>1009</TD><TD>plane (flat surface) [n]</TD><TD>ravnima</TD></TR>
<TR><TD>679</TD><TD>1011</TD><TD>yesterday* [av]</TD><TD>jučer</TD></TR>
<TR><TD>680</TD><TD>1013</TD><TD>quick* [aj]</TD><TD>brz</TD></TR>
<TR><TD>681</TD><TD>1017</TD><TD>security* [n]</TD><TD>sigurnost</TD></TR>
<TR><TD>682</TD><TD>1020</TD><TD>difference [n]</TD><TD>razlika</TD></TR>
<TR><TD>683</TD><TD>1024</TD><TD>store*, cache, reserve, reservoir [n] 2s</TD><TD>rezerva, zaliha</TD></TR>
<TR><TD>684</TD><TD>1024</TD><TD>store*, shop, boutique [n] 3s</TD><TD>trgovina, prodavaonica, dućan</TD></TR>
<TR><TD>685</TD><TD>1026</TD><TD>bag [n]</TD><TD>torba</TD></TR>
<TR><TD>686</TD><TD>1029</TD><TD>ball* (spheroidal plaything) [n]</TD><TD>lopta</TD></TR>
<TR><TD>687</TD><TD>1030</TD><TD>single** [aj] 2s</TD><TD>sam, jedan</TD></TR>
<TR><TD>688</TD><TD>1032</TD><TD>doubt [n]</TD><TD>sumnja</TD></TR>
<TR><TD>689</TD><TD>1032</TD><TD>doubt [v]</TD><TD>sumnjati</TD></TR>
<TR><TD>690</TD><TD>1037</TD><TD>blue* [aj]</TD><TD>plav</TD></TR>
<TR><TD>691</TD><TD>1038</TD><TD>deep*, profound (of much depth) [aj]</TD><TD>dubok</TD></TR>
<TR><TD>692</TD><TD>1041</TD><TD>park (public outdoor area) [n]</TD><TD>park</TD></TR>
<TR><TD>693</TD><TD>1046</TD><TD>record* (a cache of information) [n]</TD><TD>rekord</TD></TR>
<TR><TD>694</TD><TD>1046</TD><TD>record* (music etc.) (pf/impf) [v]</TD><TD>snimiti / snimati</TD></TR>
<TR><TD>695</TD><TD>1050</TD><TD>join* [v] 2w</TD><TD>pridružiti se</TD></TR>
<TR><TD>696</TD><TD>1051</TD><TD>key (metal device for operating lock) [n]</TD><TD>ključ</TD></TR>
<TR><TD>697</TD><TD>1053</TD><TD>card (stiff rectangle of material) [n]</TD><TD>kartica</TD></TR>
<TR><TD>698</TD><TD>1054</TD><TD>crime* [n]</TD><TD>zločin</TD></TR>
<TR><TD>699</TD><TD>1056</TD><TD>willing* [aj]</TD><TD>voljan</TD></TR>
<TR><TD>700</TD><TD>1057</TD><TD>window* [n]</TD><TD>prozor</TD></TR>
<TR><TD>701</TD><TD>1058</TD><TD>return* (go or send back to previous place or condition) (pf/impf) [v]</TD><TD>vratiti / vraćati</TD></TR>
<TR><TD>702</TD><TD>1060</TD><TD>guilty*, blame-worthy [aj]</TD><TD>kriv</TD></TR>
<TR><TD>703</TD><TD>1064</TD><TD>difficult*, hard [aj]</TD><TD>težak</TD></TR>
<TR><TD>704</TD><TD>1065</TD><TD>soul, spirit* (believed to outlive the body) [n] 2s</TD><TD>duša, duh</TD></TR>
<TR><TD>705</TD><TD>1066</TD><TD>joke* [n]</TD><TD>šala</TD></TR>
<TR><TD>706</TD><TD>1067</TD><TD>service* [n]</TD><TD>usluga</TD></TR>
<TR><TD>707</TD><TD>1068</TD><TD>magic, sorcery [n] 2s</TD><TD>magija, vračanje</TD></TR>
<TR><TD>708</TD><TD>1069</TD><TD>favorite** [aj]</TD><TD>omiljen</TD></TR>
<TR><TD>709</TD><TD>1072</TD><TD>public* (available to most or all persons) [aj]</TD><TD>javni</TD></TR>
<TR><TD>710</TD><TD>1072</TD><TD>public*, populace, the people (as in People's Republic) [n] 2s</TD><TD>javnost, narod</TD></TR>
<TR><TD>711</TD><TD>1074</TD><TD>island* [n] 2s</TD><TD>otok, ostrvo</TD></TR>
<TR><TD>712</TD><TD>1078</TD><TD>lead* (the metal) [n]</TD><TD>olovo</TD></TR>
<TR><TD>713</TD><TD>1078</TD><TD>lead* (pf/impf) [v]</TD><TD>odvesti / voditi</TD></TR>
<TR><TD>714</TD><TD>1080</TD><TD>broken [aj]</TD><TD>razbijen</TD></TR>
<TR><TD>715</TD><TD>1081</TD><TD>advice [n]</TD><TD>savjet</TD></TR>
<TR><TD>716</TD><TD>1086</TD><TD>push* (press on something in order to move it) (pf/impf) [v]</TD><TD>gurnuti / gurati</TD></TR>
<TR><TD>717</TD><TD>1095</TD><TD>innocent*, contra-guilty [aj]</TD><TD>nevin</TD></TR>
<TR><TD>718</TD><TD>1100</TD><TD>summer* [n]</TD><TD>ljeto</TD></TR>
<TR><TD>719</TD><TD>1105</TD><TD>risk** [n]</TD><TD>rizik</TD></TR>
<TR><TD>720</TD><TD>1109</TD><TD>officer* [n] 2s</TD><TD>časnik, oficir</TD></TR>
<TR><TD>721</TD><TD>1111</TD><TD>support* (pf/impf) [v]</TD><TD>podržati / podržavati</TD></TR>
<TR><TD>722</TD><TD>1112</TD><TD>afternoon (noon to dusk) [n] 2s</TD><TD>poslijepodne, popodne</TD></TR>
<TR><TD>723</TD><TD>1114</TD><TD>born** [aj]</TD><TD>rođen</TD></TR>
<TR><TD>724</TD><TD>1116</TD><TD>apologize** (pf/impf) [v] 2w</TD><TD>ispričati se / ispričavati se</TD></TR>
<TR><TD>725</TD><TD>1117</TD><TD>seat* [n]</TD><TD>sjedalo</TD></TR>
<TR><TD>726</TD><TD>1119</TD><TD>across* (at or to the other side of) [prep]</TD><TD>preko</TD></TR>
<TR><TD>727</TD><TD>1120</TD><TD>song [n]</TD><TD>pjesma</TD></TR>
<TR><TD>728</TD><TD>1122</TD><TD>charge* (money) [n]</TD><TD>cijena</TD></TR>
<TR><TD>729</TD><TD>1123</TD><TD>patient* [n]</TD><TD>pacijent</TD></TR>
<TR><TD>730</TD><TD>1125</TD><TD>boat* [n]</TD><TD>brod</TD></TR>
<TR><TD>731</TD><TD>1127</TD><TD>brain* [n]</TD><TD>mozak</TD></TR>
<TR><TD>732</TD><TD>1128</TD><TD>hide*, conceal (pf/impf) [v]</TD><TD>sakriti / sakrivati</TD></TR>
<TR><TD>733</TD><TD>1132</TD><TD>general* [aj]</TD><TD>opći</TD></TR>
<TR><TD>734</TD><TD>1135</TD><TD>nine [num]</TD><TD>devet</TD></TR>
<TR><TD>735</TD><TD>1136</TD><TD>huge*, enormous, gigantic [aj]</TD><TD>ogroman</TD></TR>
<TR><TD>736</TD><TD>1139</TD><TD>age* (degree of oldness or youngness) [n]</TD><TD>dob</TD></TR>
<TR><TD>737</TD><TD>1141</TD><TD>pleasure [n]</TD><TD>zadovoljstvo</TD></TR>
<TR><TD>738</TD><TD>1142</TD><TD>driving [n]</TD><TD>vožnja</TD></TR>
<TR><TD>739</TD><TD>1143</TD><TD>hanging [aj]</TD><TD>vješanje</TD></TR>
<TR><TD>740</TD><TD>1145</TD><TD>system* [n] 2s</TD><TD>sustav, sistem</TD></TR>
<TR><TD>741</TD><TD>1146</TD><TD>sell* (pf/impf) [v]</TD><TD>prodati / prodavati</TD></TR>
<TR><TD>742</TD><TD>1147</TD><TD>quit (pf/impf) [v]</TD><TD>odustati / odustajati</TD></TR>
<TR><TD>743</TD><TD>1150</TD><TD>notice, observe (pf/impf) [v] 2s</TD><TD>primijetiti, opaziti / primjećivati, opažati</TD></TR>
<TR><TD>744</TD><TD>1153</TD><TD>chief* [n]</TD><TD>šef</TD></TR>
<TR><TD>745</TD><TD>1153</TD><TD>chief*, leader [n] 2s</TD><TD>poglavar, vođa</TD></TR>
<TR><TD>746</TD><TD>1153</TD><TD>chief*, main*, primary, principal [aj]</TD><TD>glavni</TD></TR>
<TR><TD>747</TD><TD>1159</TD><TD>month* [n]</TD><TD>mjesec</TD></TR>
<TR><TD>748</TD><TD>1160</TD><TD>visit* (pf/impf) [v]</TD><TD>posjetiti / posjećivati</TD></TR>
<TR><TD>749</TD><TD>1167</TD><TD>letter* (a message written and mailed) [n]</TD><TD>pismo</TD></TR>
<TR><TD>750</TD><TD>1167</TD><TD>letter* (printed character) [n]</TD><TD>slovo</TD></TR>
<TR><TD>751</TD><TD>1168</TD><TD>decide* (pf/impf) [v]</TD><TD>odlučiti / odlučivati</TD></TR>
<TR><TD>752</TD><TD>1170</TD><TD>double** (pf/impf) [v]</TD><TD>udvostručiti / udvostručivati</TD></TR>
<TR><TD>753</TD><TD>1172</TD><TD>sad*, unhappy, melancholy [aj] 2s</TD><TD>tužan, nesretan</TD></TR>
<TR><TD>754</TD><TD>1173</TD><TD>press* (do pressure to; push upon with weight or force) (pf/impf) [v]</TD><TD>pritisnuti / pritiskati</TD></TR>
<TR><TD>755</TD><TD>1174</TD><TD>forward* [av]</TD><TD>naprijed</TD></TR>
<TR><TD>756</TD><TD>1175</TD><TD>fool** (pf/impf) [v]</TD><TD>prevariti / varati</TD></TR>
<TR><TD>757</TD><TD>1177</TD><TD>smell* [v]</TD><TD>mirisati</TD></TR>
<TR><TD>758</TD><TD>1177</TD><TD>smell*, odor, aroma [n]</TD><TD>miris</TD></TR>
<TR><TD>759</TD><TD>1182</TD><TD>memory* [n] 2s</TD><TD>memorija, pamćenje</TD></TR>
<TR><TD>760</TD><TD>1183</TD><TD>mark* (visible traces left behind) [n]</TD><TD>trag</TD></TR>
<TR><TD>761</TD><TD>1187</TD><TD>slow* [aj]</TD><TD>spor</TD></TR>
<TR><TD>762</TD><TD>1192</TD><TD>board [n]</TD><TD>ploča</TD></TR>
<TR><TD>763</TD><TD>1193</TD><TD>position* (location relative to others) [n] 2s</TD><TD>položaj, pozicija</TD></TR>
<TR><TD>764</TD><TD>1194</TD><TD>hearing [n]</TD><TD>sluh</TD></TR>
<TR><TD>765</TD><TD>1195</TD><TD>often*, frequently [av]</TD><TD>često</TD></TR>
<TR><TD>766</TD><TD>1199</TD><TD>force* [n]</TD><TD>sila</TD></TR>
<TR><TD>767</TD><TD>1199</TD><TD>force* (pf/impf) [v]</TD><TD>prisiliti / prisiljavati</TD></TR>
<TR><TD>768</TD><TD>1200</TD><TD>fly* (move through the air) [v]</TD><TD>letjeti</TD></TR>
<TR><TD>769</TD><TD>1200</TD><TD>fly* (small winged insect) [n]</TD><TD>muha</TD></TR>
<TR><TD>770</TD><TD>1201</TD><TD>during* [prep] 2s</TD><TD>tijekom, tokom</TD></TR>
<TR><TD>771</TD><TD>1202</TD><TD>space*, room, void [n]</TD><TD>prostor</TD></TR>
<TR><TD>772</TD><TD>1205</TD><TD>experience* (consciously live through an event) [v]</TD><TD>iskusiti</TD></TR>
<TR><TD>773</TD><TD>1205</TD><TD>experience* [n]</TD><TD>iskustvo</TD></TR>
<TR><TD>774</TD><TD>1206</TD><TD>kick* (pf/impf) [v] 2,1s</TD><TD>nabiti, šutnuti / nabijati</TD></TR>
<TR><TD>775</TD><TD>1212</TD><TD>discuss*, talk about (pf/impf) [v]</TD><TD>raspraviti / raspravljati</TD></TR>
<TR><TD>776</TD><TD>1213</TD><TD>third* [num]</TD><TD>treći</TD></TR>
<TR><TD>777</TD><TD>1214</TD><TD>cat* (Felis catus) [n]</TD><TD>mačka</TD></TR>
<TR><TD>778</TD><TD>1216</TD><TD>responsible* [aj]</TD><TD>odgovoran</TD></TR>
<TR><TD>779</TD><TD>1220</TD><TD>fat* (oily or greasy material from animal adipose tissue or plant seeds) [n] 3s</TD><TD>mast, salo, loj</TD></TR>
<TR><TD>780</TD><TD>1220</TD><TD>fat*, obese, plump [aj] 2s</TD><TD>debeo, gojazan</TD></TR>
<TR><TD>781</TD><TD>1222</TD><TD>idiot [n]</TD><TD>idiot</TD></TR>
<TR><TD>782</TD><TD>1224</TD><TD>rock*, stone [n] 2s</TD><TD>stijena, kamen</TD></TR>
<TR><TD>783</TD><TD>1225</TD><TD>rich*, wealthy [aj]</TD><TD>bogat</TD></TR>
<TR><TD>784</TD><TD>1229</TD><TD>destroy* (contra-create; cause to cease existing) (pf/impf) [v]</TD><TD>uništiti / uništavati</TD></TR>
<TR><TD>785</TD><TD>1231</TD><TD>track [n] 3s</TD><TD>trag, put, staza</TD></TR>
<TR><TD>786</TD><TD>1234</TD><TD>peace* (freedom from fighting or turmoil) [n]</TD><TD>mir</TD></TR>
<TR><TD>787</TD><TD>1235</TD><TD>arms** [n]</TD><TD>oružja</TD></TR>
<TR><TD>788</TD><TD>1240</TD><TD>low* [aj]</TD><TD>nizak</TD></TR>
<TR><TD>789</TD><TD>1242</TD><TD>consider** (pf/impf) [v]</TD><TD>razmotriti/ razmatrati</TD></TR>
<TR><TD>790</TD><TD>1244</TD><TD>medical [aj]</TD><TD>medicinski</TD></TR>
<TR><TD>791</TD><TD>1248</TD><TD>drunk [aj]</TD><TD>pijan</TD></TR>
<TR><TD>792</TD><TD>1260</TD><TD>nose [n]</TD><TD>nos</TD></TR>
<TR><TD>793</TD><TD>1264</TD><TD>beer [n]</TD><TD>pivo</TD></TR>
<TR><TD>794</TD><TD>1265</TD><TD>jealous [aj]</TD><TD>ljubomoran</TD></TR>
<TR><TD>795</TD><TD>1266</TD><TD>drug* [n]</TD><TD>droga</TD></TR>
<TR><TD>796</TD><TD>1270</TD><TD>plenty** [n]</TD><TD>obilje</TD></TR>
<TR><TD>797</TD><TD>1271</TD><TD>extra** [aj]</TD><TD>ekstra</TD></TR>
<TR><TD>798</TD><TD>1272</TD><TD>tea* (plant or leaves of sp. Camellia sinensis) [n]</TD><TD>čaj</TD></TR>
<TR><TD>799</TD><TD>1274</TD><TD>attack* (pf/impf) [v]</TD><TD>napasti / napadati</TD></TR>
<TR><TD>800</TD><TD>1275</TD><TD>ground* [n]</TD><TD>zemlja</TD></TR>
<TR><TD>801</TD><TD>1283</TD><TD>type [m] 2s</TD><TD>vrsta, tip</TD></TR>
<TR><TD>802</TD><TD>1287</TD><TD>opportunity [n]</TD><TD>prilika</TD></TR>
<TR><TD>803</TD><TD>1288</TD><TD>king [n]</TD><TD>kralj</TD></TR>
<TR><TD>804</TD><TD>1291</TD><TD>machine* (device with moving parts) [n] 2s</TD><TD>stroj, masina</TD></TR>
<TR><TD>805</TD><TD>1292</TD><TD>waste* [n] 2s</TD><TD>otpad, gubitak</TD></TR>
<TR><TD>806</TD><TD>1292</TD><TD>waste*, misuse [v]</TD><TD>rasipati</TD></TR>
<TR><TD>807</TD><TD>1294</TD><TD>pretend, act, feign [v] 2w</TD><TD>pretvarati se</TD></TR>
<TR><TD>808</TD><TD>1296</TD><TD>danger* (situation in which harm is probable) [n]</TD><TD>opasnost</TD></TR>
<TR><TD>809</TD><TD>1297</TD><TD>wall* [n]</TD><TD>zid</TD></TR>
<TR><TD>810</TD><TD>1301</TD><TD>jump*, leap (pf/impf) [v]</TD><TD>skočiti / skakati</TD></TR>
<TR><TD>811</TD><TD>1303</TD><TD>proof, evidence* [n]</TD><TD>dokaz</TD></TR>
<TR><TD>812</TD><TD>1304</TD><TD>complete* [aj]</TD><TD>potpun</TD></TR>
<TR><TD>813</TD><TD>1306</TD><TD>career** [n]</TD><TD>karijera</TD></TR>
<TR><TD>814</TD><TD>1307</TD><TD>arrest** [v] 2s</TD><TD>uhititi, uhapsiti</TD></TR>
<TR><TD>815</TD><TD>1308</TD><TD>star* [n]</TD><TD>zvijezda</TD></TR>
<TR><TD>816</TD><TD>1311</TD><TD>breathe* [v]</TD><TD>disati</TD></TR>