File size: 63,143 Bytes
c5e63a6 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 |
WORD,POS,TYPE,Count in Pairs,Word Frq in Corpus,Word Frq Level
abadiy,ADJ,inflectional,2,117,high
abadiylik,NOUN,derivational,1,80,high
abgor,ADJ,root,1,23,med
ablah,NOUN,root,1,1,low
ablahlik,NOUN,derivational,1,1,oov
abstraktlashtir,VERB,inflectional,1,7,oov
achigan,VERB,inflectional,1,4,low
adad,NOUN,root,1,161,high
adolatsiz,ADJ,inflectional,1,9,med
adras,NOUN,root,1,125,high
aeroport,NOUN,root,1,1114,high
afsungar,NOUN,derivational,1,32,med
afsunkor,NOUN,derivational,1,1,low
afzal,ADJ,root,1,11,med
ahlat,NOUN,root,1,63,high
aholi,NOUN,root,1,5518,high
ahvol,NOUN,root,1,2931,high
ajabtovur,ADJ,derivational,2,50,high
ajdod,NOUN,root,1,1982,high
ajnabiy,ADJ,derivational,1,42,med
ajoyibot,NOUN,derivational,1,48,med
ajralma,NOUN,derivational,1,416,high
ajratish,VERB,inflectional,3,1268,high
ajriq,NOUN,root,1,2,low
akrobatika,NOUN,root,1,48,med
alda,VERB,root,1,21,med
alifbo,NOUN,root,2,453,high
aljira,VERB,root,2,6,med
alkogol,NOUN,root,1,183,high
alloh,NOUN,root,1,117,high
aloqa,NOUN,root,2,3306,high
alpinist,NOUN,root,1,49,med
an'ana,NOUN,root,1,33,med
andoza,NOUN,root,1,1105,high
angla,VERB,root,1,5,low
anhor,NOUN,root,1,98,high
aniqlashtir,VERB,inflectional,2,227,high
aniqlik,NOUN,derivational,1,613,high
anjir,NOUN,root,1,57,high
anjuman,NOUN,root,2,6047,high
antenna,NOUN,root,1,126,high
apelsin,NOUN,root,1,37,med
aqlli,ADJ,derivational,3,1,low
aqlsiz,ADJ,inflectional,2,9,med
aralash,VERB,inflectional,1,5,low
aralashtir,VERB,inflectional,2,48,med
arazchi,NOUN,inflectional,1,1,low
archa,NOUN,root,1,282,high
ardoqla,VERB,derivational,1,224,high
arifmetika,NOUN,root,2,48,med
ariq,NOUN,root,1,272,high
arizachi,NOUN,derivational,1,47,med
armiya,NOUN,root,2,371,high
arrala,VERB,derivational,1,2,low
arteriya,NOUN,root,1,935,high
arxeologiya,NOUN,root,1,295,high
arxitekturaviy,ADJ,derivational,1,1,low
arzanda,ADJ,root,2,25,med
arzigulik,ADJ,derivational,1,9,med
arzimas,ADJ,inflectional,1,9,med
arzon,ADJ,root,1,1155,high
asabiylashtir,VERB,inflectional,1,11,med
asbob,NOUN,root,3,1288,high
ashula,NOUN,root,1,41,med
ashyo,NOUN,root,1,1015,high
asl,ADJ,root,1,2637,high
asorat,NOUN,root,1,359,high
asoslanib,VERB,inflectional,1,3,low
astma,NOUN,root,1,38,med
astronomiya,NOUN,root,3,347,high
atalgan,VERB,inflectional,1,5882,high
atir,NOUN,root,1,10,med
atirgul,NOUN,root,1,207,high
atmosfera,NOUN,root,1,104,high
avalgi,ADJ,root,1,1432,high
avlod,NOUN,root,3,390,high
avtobus,NOUN,root,1,1376,high
avtomashina,NOUN,root,1,678,high
avtomobil,NOUN,root,1,4364,high
avval,ADJ,root,1,1915,high
axloqsiz,ADJ,inflectional,3,6,med
ayb,NOUN,root,1,53,high
ayiq,NOUN,root,1,1,oov
aylantir,VERB,inflectional,1,11,med
aynigan,VERB,inflectional,1,4,low
ayol,NOUN,root,5,242,high
ayovsiz,ADJ,inflectional,1,104,oov2
ayqash,VERB,root,2,5,low
ayriliq,NOUN,inflectional,2,62,high
ayyom,NOUN,root,1,614,high
ayyorlik,NOUN,derivational,1,4,low
aziyat,NOUN,root,2,332,high
aziz,ADJ,root,1,2742,high
azob,NOUN,root,1,18,med
azon,NOUN,root,1,7,med
bachadon,NOUN,derivational,1,137,high
badal,NOUN,root,2,329,high
badavlat,ADJ,derivational,2,219,high
badjahl,ADJ,derivational,2,11,med
bag'ishlan,VERB,inflectional,1,5882,high
baho,NOUN,root,1,3645,high
bahor,NOUN,root,1,710,high
bahs,NOUN,root,1,249,high
bahsli,ADJ,root,1,3,low
bajartir,VERB,inflectional,1,244,high
bajaruvchi,NOUN,derivational,1,1626,high
bakteriya,NOUN,root,1,123,high
baland,ADJ,root,1,13,med
balandlat,VERB,inflectional,1,8,med
bandlik,NOUN,derivational,1,362,high
bankrotlik,NOUN,derivational,1,148,high
baqir,VERB,inflectional,1,8,med
barakali,ADJ,derivational,1,9,med
bardam,ADJ,root,2,11,med
barg,NOUN,root,3,3182,high
barmoq,NOUN,root,1,628,high
barobar,ADJ,root,2,2316,oov2
barpo,NOUN,root,1,5687,high
barqaror,ADJ,derivational,1,3385,high
barxayot,ADJ,derivational,1,117,oov2
bashariyat,NOUN,root,1,140,high
basketbol,NOUN,root,1,93,high
bayon,NOUN,root,1,325,high
bayonot,NOUN,root,2,499,high
bayram,NOUN,root,1,614,high
bayt,NOUN,root,1,44,med
bedor,ADJ,derivational,2,86,high
bedorlik,NOUN,derivational,1,38,med
behalovat,ADJ,derivational,2,28,med
behayo,ADJ,derivational,2,169,high
behayolik,NOUN,derivational,1,4,oov
behol,ADJ,derivational,2,9,med
bemajol,NOUN,derivational,1,1,low
bemajollik,NOUN,derivational,1,1,low
bemalol,ADJ,derivational,1,13,med
bemaza,ADJ,derivational,4,19,med
bemor,ADJ,root,4,2156,oov2
benikoh,ADJ,derivational,1,13,med
benuqson,ADJ,derivational,1,44,med
benzin,NOUN,root,1,189,high
beor,ADJ,derivational,2,6,med
beorom,ADJ,derivational,1,19,med
beparda,ADJ,derivational,1,11,med
beparvolik,NOUN,derivational,2,154,high
bepul,ADJ,derivational,1,228,high
beqaror,NOUN,derivational,1,775,high
beqasam,NOUN,derivational,1,36,med
berahm,ADJ,derivational,2,10,med
berk,ADJ,root,2,11,med
berkit,VERB,inflectional,2,6,med
besabrlik,NOUN,derivational,1,3,low
besaranjom,ADJ,derivational,1,7,med
beshafqat,ADJ,inflectional,1,61,high
betamizlik,NOUN,derivational,1,1,oov
betaraf,ADJ,derivational,1,730,high
betashvish,ADJ,derivational,1,13,med
betayin,ADJ,derivational,1,13,med
betayinlik,NOUN,derivational,1,1,low
betob,ADJ,derivational,2,120,oov2
betoqat,ADJ,derivational,2,1,low
bevafo,ADJ,derivational,2,19,med
bexabar,ADJ,derivational,1,7,med
bexavotir,ADJ,derivational,1,24,med
bezantir,VERB,inflectional,2,5,low
bezarar,ADJ,derivational,2,10,med
bezbetlik,NOUN,derivational,2,2,low
beziyon,ADJ,derivational,2,12,med
bezovta,ADJ,root,1,28,med
bidirla,VERB,derivational,1,8,med
bilag'on,ADJ,derivational,1,10,med
bildir,VERB,inflectional,1,34,med
bilimdon,ADJ,derivational,1,10,med
bilimli,ADJ,derivational,2,7,med
bino,NOUN,root,3,3458,high
birdamlik,NOUN,derivational,3,234,high
birgina,ADJ,inflectional,1,173,high
birikma,NOUN,derivational,2,416,high
birlashgan,ADJ,inflectional,1,116,high
birlashish,NOUN,inflectional,2,299,high
birlashma,NOUN,derivational,2,2698,high
birlashtir,VERB,inflectional,2,1918,high
birlashtirish,VERB,inflectional,3,103,oov
biroz,ADJ,root,1,1703,high
bitik,NOUN,root,1,622,high
bitim,NOUN,root,1,923,high
bitir,VERB,inflectional,1,1387,high
biyron,ADJ,root,4,28,med
bodring,NOUN,root,1,213,high
bog',NOUN,root,2,214,high
bog'bon,NOUN,derivational,1,229,high
boks,NOUN,root,1,351,high
bo'laklash,VERB,inflectional,3,1268,high
bo'linish,NOUN,inflectional,1,299,high
bo'ron,NOUN,root,1,33,med
bo'sag'a,NOUN,root,2,95,high
bosh,NOUN,root,1,290,high
bo'sh,ADJ,root,2,2378,oov2
bosh kiyim,NOUN,root,1,1,low
bo'shat,VERB,inflectional,1,359,high
bo'shatish,NOUN,inflectional,1,49,med
boshlang'ich,ADJ,derivational,3,3175,high
boshlash,VERB,inflectional,4,618,high
boshliq,NOUN,derivational,1,4490,high
boshpana,NOUN,root,2,53,high
boshpanasiz,ADJ,inflectional,1,23,med
boshqarma,NOUN,derivational,1,7149,high
bosmaxona,NOUN,derivational,3,181,high
bosqichli,ADJ,derivational,1,8,med
bosqinchi,NOUN,derivational,1,1,low
bosqinchilik,NOUN,derivational,2,67,high
botanika,NOUN,root,2,202,high
botir,ADJ,root,1,44,med
boylik,NOUN,derivational,2,2799,high
bug'doy,NOUN,root,2,293,high
buk,VERB,root,1,3,low
bukiluvchan,ADJ,derivational,1,7,med
bulg'at,VERB,inflectional,1,2,low
buloq,NOUN,root,1,155,high
bunyod,NOUN,root,1,5687,high
bunyodkorlik,NOUN,derivational,1,2173,high
burch,NOUN,root,1,2476,high
burgut,NOUN,root,2,98,high
burro,ADJ,root,2,18,med
buta,NOUN,root,1,122,high
butun,ADJ,root,1,566,high
buvi,NOUN,root,1,389,high
buyrak,NOUN,root,2,289,high
buyruq,NOUN,root,1,428,high
buyuklik,NOUN,derivational,1,101,high
buyum,NOUN,root,3,2488,high
buzdir,VERB,inflectional,2,17,med
buzish,NOUN,inflectional,2,352,high
buzuq,ADJ,root,2,86,high
chalajon,ADJ,derivational,1,3,low
chalkash,VERB,derivational,1,5,low
chalkashtir,VERB,inflectional,3,48,med
chamala,VERB,derivational,1,6,med
chamalash,VERB,inflectional,1,5,low
changallab,VERB,derivational,1,1,low
chanqa,VERB,root,1,4,low
chap,ADJ,root,1,728,high
chapdast,ADJ,root,2,7,med
chaqimchilik,NOUN,derivational,1,3,oov
chaqqon,ADJ,root,1,99,high
chaqqonlash,VERB,inflectional,2,5,low
chaqqonlik,NOUN,derivational,2,83,high
charchagan,ADJ,inflectional,2,21,med
charchat,VERB,inflectional,1,43,med
charog'on,ADJ,root,1,59,high
chashma,NOUN,root,1,155,high
chavoqla,VERB,derivational,1,1,oov
chayla,NOUN,derivational,1,43,med
chayon,NOUN,root,2,69,high
chegara,NOUN,root,2,311,high
chegirma,NOUN,root,1,223,high
chehra,NOUN,root,1,337,high
cheksiz,ADJ,inflectional,1,25,med
chertish,VERB,inflectional,1,30,med
chidamli,ADJ,derivational,3,50,high
chigallashtir,VERB,inflectional,1,24,med
chinor,NOUN,root,2,164,high
chiqish,VERB,inflectional,1,23,med
chiqit,NOUN,root,1,63,high
chiroq,NOUN,root,1,60,high
chiroy,NOUN,root,1,281,high
chiroyli,ADJ,derivational,4,123,oov2
chishirish,VERB,inflectional,1,1,low
chivin,NOUN,root,1,211,high
chizdir,VERB,inflectional,2,19,med
cho'chit,VERB,inflectional,3,34,med
chodir,NOUN,root,1,72,high
cho'l,NOUN,root,1,224,high
cho'miltir,VERB,inflectional,1,8,med
cho'ntak,NOUN,root,1,391,high
cho'pon,NOUN,root,1,1,oov
chopqir,ADJ,root,1,30,med
chorvachilik,NOUN,derivational,1,1117,high
choynak,NOUN,root,3,64,high
cho'zinchoq,ADJ,inflectional,1,11,med
chuchvara,NOUN,root,2,49,med
chumchuq,NOUN,root,1,39,med
chumoli,NOUN,derivational,1,4,low
chuqur,ADJ,root,1,1,low
chuvalashtir,VERB,inflectional,2,2,low
dada,NOUN,root,1,509,high
dag'al,ADJ,root,3,20,med
dag'allash,VERB,inflectional,1,8,med
dakki,NOUN,root,1,1,low
dala,NOUN,root,4,560,high
dala xaydash,VERB,inflectional,1,19,med
dalalar,NOUN,inflectional,1,4,low
dangasa,ADJ,root,4,50,high
dang'illama,ADJ,derivational,1,30,med
daraksiz,ADJ,inflectional,1,7,med
daraxt,NOUN,root,5,2519,high
daraxtzor,NOUN,derivational,1,61,high
darbadar,ADJ,root,1,18,med
dardlash,VERB,derivational,1,21,med
dardli,ADJ,derivational,3,3,low
dardmand,ADJ,derivational,4,12,med
darg'azab,ADJ,derivational,1,17,med
darmonsiz,ADJ,inflectional,1,7,med
daromadli,ADJ,derivational,1,7,med
daroz,ADJ,root,2,9,med
darslik,NOUN,derivational,2,3110,high
darvozabon,NOUN,derivational,1,197,high
daryo,NOUN,root,2,373,high
dasta,NOUN,root,1,1,low
dastgoh,NOUN,derivational,1,355,high
dastlab,ADJ,root,1,1915,high
dastlabki,ADJ,inflectional,1,3175,high
dastur,NOUN,root,1,17,med
dastxat,NOUN,root,1,116,high
davlat,NOUN,root,3,53187,high
da'vogar,NOUN,derivational,1,47,med
davolash,NOUN,inflectional,1,397,high
davriy,NOUN,derivational,1,123,high
daxshatli,ADJ,derivational,1,24,med
daydi,ADJ,root,1,18,med
demokratik,ADJ,root,1,5754,high
deraza,NOUN,root,1,438,high
devona,ADJ,root,1,57,high
diabet,NOUN,root,2,324,high
dindor,ADJ,derivational,1,177,oov2
direktor,NOUN,root,1,2891,high
diydira,VERB,root,1,1,low
diyor,NOUN,root,1,738,high
doimiy,ADJ,derivational,5,5561,high
doimo,NOUN,root,1,2180,high
doirasimon,ADJ,inflectional,1,7,med
do'kon,NOUN,root,2,2175,high
don,NOUN,root,1,341,high
dongdor,ADJ,derivational,1,22,med
donolik,NOUN,derivational,1,62,high
dori,NOUN,root,3,437,high
dorixona,NOUN,derivational,1,437,high
doska,NOUN,root,1,256,high
do'st,NOUN,root,1,571,high
do'stlik,NOUN,derivational,2,288,high
dovon,NOUN,root,1,251,high
dovul,NOUN,root,2,33,med
dovyurak,ADJ,derivational,2,44,med
do'zax,NOUN,root,2,49,med
dugoh,NOUN,root,1,41,med
dugona,NOUN,root,1,571,high
dukkakli o'simlik,NOUN,root,1,59,high
dumalat,VERB,inflectional,2,11,med
dumaloq,ADJ,derivational,1,61,high
dumbul,ADJ,root,1,6,med
dunyoqarash,NOUN,derivational,1,1757,high
duradgorlik,NOUN,derivational,2,110,high
dushmanlik,NOUN,derivational,1,62,high
egarlan,VERB,inflectional,1,5,low
egiltir,VERB,inflectional,1,1,low
egiluvchan,ADJ,inflectional,2,8,med
egri,ADJ,root,1,402,high
ehson,NOUN,root,3,1,low
ehtiyoj,NOUN,root,1,4214,high
ekinzor,NOUN,derivational,2,105,high
ekipaj,NOUN,root,1,108,high
ekspeditsiya,NOUN,root,1,374,high
eksponant,NOUN,root,1,3351,high
eksponat,NOUN,root,3,512,high
eksport,NOUN,root,1,1140,high
ekspozitsiya,NOUN,root,1,375,high
ekstremizm,NOUN,root,1,451,high
element,NOUN,root,4,230,high
emlash,NOUN,root,1,466,high
energiya,NOUN,root,1,4079,high
epchil,ADJ,root,1,7,med
epchillik,NOUN,derivational,1,69,high
erkalat,VERB,inflectional,1,4,low
erkatoy,ADJ,derivational,1,25,med
erkin,ADJ,root,1,4548,high
erkinlik,NOUN,derivational,1,3698,high
erta,ADJ,root,1,29,med
eshak,NOUN,root,1,2,low
eshik,NOUN,root,1,95,high
eshituvchi,NOUN,derivational,1,1526,high
eski,ADJ,root,2,1786,high
e'tiborlilik,NOUN,inflectional,1,154,high
ezgulik,NOUN,derivational,3,1096,high
ezma,ADJ,root,4,9,med
e'zozla,VERB,derivational,1,224,high
fahmlash,VERB,inflectional,1,8,med
falakiyot,NOUN,derivational,1,347,high
falokat,NOUN,root,1,728,high
fan,NOUN,root,3,347,high
faqirlik,NOUN,derivational,1,18,med
farovonlik,NOUN,derivational,1,4149,high
farq,NOUN,root,1,234,high
faryod,NOUN,root,1,63,high
farzand,NOUN,root,1,10,low
fasl,NOUN,root,2,710,high
favvora,NOUN,root,1,226,high
faxmla,VERB,derivational,1,5,low
faxriy,ADJ,derivational,2,1804,oov2
fazo,NOUN,root,2,989,high
fazoviy,ADJ,inflectional,1,123,high
fikr,NOUN,root,1,2266,high
film,NOUN,root,1,5664,high
fiziologiya,NOUN,root,1,154,high
fond,NOUN,root,1,4603,high
fonetika,NOUN,root,1,51,high
fosiqlik,NOUN,derivational,1,3,low
foyda,NOUN,root,1,449,high
foydali,ADJ,derivational,3,87,high
futbol,NOUN,root,1,197,high
g'alaba,NOUN,root,2,1383,high
g'amgin,ADJ,derivational,3,57,high
g'amlan,VERB,inflectional,1,17,oov
g'amxo'rlik,NOUN,derivational,1,2034,high
gapdon,ADJ,derivational,1,1,low
gapir,VERB,inflectional,2,6,med
gapirish,NOUN,inflectional,1,247,high
gapirtir,VERB,inflectional,2,17,med
gaplash,VERB,inflectional,1,4,low
g'aribona,ADJ,derivational,1,46,med
garmdori,NOUN,root,1,15,med
g'aroyib,ADJ,root,1,238,oov2
g'aroyibot,NOUN,derivational,1,48,med
gavda,NOUN,root,1,1890,high
gavjum,ADJ,root,3,624,high
g'avvos,NOUN,root,2,2,low
g'ayratlantir,VERB,inflectional,1,223,high
g'ayritabiiy,ADJ,inflectional,1,50,high
gaz,NOUN,root,2,260,high
g'azablantir,VERB,inflectional,2,11,med
g'azabli,ADJ,derivational,1,11,med
gazanda,NOUN,root,1,1,low
gazeta,NOUN,root,1,236,high
geologiya,NOUN,root,1,317,high
geometriya,NOUN,root,2,153,high
gerb,NOUN,root,1,1425,high
gidroinshoot,NOUN,derivational,1,104,high
gilos,NOUN,root,1,100,high
gimnastikachi,NOUN,derivational,1,339,high
ginachi,NOUN,derivational,1,1,low
giyohlar,NOUN,inflectional,1,69,high
go'dak,NOUN,root,1,102,high
gondola,NOUN,root,1,1,low
gorizontal,NOUN,root,1,122,high
go'shtxo'r,ADJ,derivational,3,1,oov
go'zallik,NOUN,derivational,1,381,high
grammatika,NOUN,root,1,137,high
gul,NOUN,root,3,3182,high
gulsapsar,NOUN,derivational,1,1,low
gulzor,NOUN,derivational,2,214,high
gumashta,NOUN,root,2,16,med
gumonsira,VERB,derivational,1,6,med
gunohkor,ADJ,derivational,1,1,low
gunohsiz,ADJ,inflectional,1,1,low
g'urbat,NOUN,root,1,18,med
guruch,NOUN,root,1,341,high
guruhla,VERB,derivational,3,795,high
g'urur,NOUN,root,1,1038,high
g'ururli,ADJ,derivational,2,1,low
g'urursiz,ADJ,inflectional,2,1,low
hajm,NOUN,root,3,215,high
halokat,NOUN,root,1,728,high
halol,ADJ,root,2,781,high
halqasimon,ADJ,derivational,1,7,med
hamjamiyat,NOUN,derivational,1,1791,high
hamjihat,ADJ,derivational,2,8,med
hamyurt,NOUN,derivational,1,1597,high
haqoratla,VERB,inflectional,1,272,high
harir,ADJ,root,2,20,med
harom,ADJ,root,3,127,high
hashamatli,ADJ,derivational,1,30,med
hashamdor,ADJ,derivational,2,13,med
hasharot,NOUN,root,2,211,high
havo,NOUN,root,1,93,high
havoyi,ADJ,derivational,1,30,med
havza,NOUN,root,3,1212,high
hayalla,VERB,derivational,1,3,low
hayiqtir,VERB,inflectional,3,1,low
hayolchanlik,NOUN,derivational,1,1,oov2
hayoli,ADJ,derivational,2,169,oov2
hayosiz,ADJ,inflectional,3,8,med
hayratlantir,VERB,inflectional,1,6,med
hibs,NOUN,root,1,222,high
hijron,NOUN,root,1,62,high
himoyachi,NOUN,derivational,1,368,high
hirmon,NOUN,root,2,346,oov2
his qil,VERB,root,1,168,high
hisoblash,VERB,inflectional,1,5,low
hissiyot,NOUN,root,2,268,high
hodisa,NOUN,root,1,3159,high
hokisor,ADJ,root,1,23,oov2
holat,NOUN,root,2,4773,high
honadon,NOUN,derivational,2,2513,oov2
ho'ngra,VERB,derivational,1,11,med
ho'pla,VERB,root,2,11,med
horg'in,ADJ,root,2,21,med
hosil,NOUN,root,1,346,high
hosildor,ADJ,derivational,3,74,high
hotima,NOUN,root,2,42,oov2
hovli,NOUN,derivational,2,2513,high
hovuz,NOUN,root,1,205,high
hozirgi,ADJ,derivational,2,8287,high
hromosoma,NOUN,root,1,50,oov2
hujayra,NOUN,root,2,1890,high
hujra,NOUN,root,1,53,high
hukumati,NOUN,inflectional,1,1791,high
humo,NOUN,root,1,167,high
hunar,NOUN,root,1,347,high
hurkit,VERB,inflectional,1,3,low
hurpaytir,VERB,inflectional,1,1,low
husndor,ADJ,derivational,1,1,low
huzurbaxsh,ADJ,derivational,1,19,med
ibodat,NOUN,root,1,247,high
ibodatxona,NOUN,derivational,2,58,high
iboli,ADJ,derivational,4,169,high
ich,VERB,root,2,11,med
ichimlik,NOUN,derivational,2,2063,high
idish,NOUN,root,3,842,high
idora,NOUN,root,1,4196,high
iflos,ADJ,root,3,97,high
ifodalan,VERB,inflectional,1,5,low
iftixor,NOUN,root,1,1038,high
igna,NOUN,root,1,355,high
ijobiy,NOUN,derivational,1,4131,high
ijozat,NOUN,root,1,232,high
ijrochi,NOUN,derivational,1,1626,high
ildam,ADJ,root,1,118,high
ildamlat,VERB,inflectional,1,2,low
ilg'or,ADJ,root,2,2876,high
ilhomlantir,VERB,inflectional,1,121,high
ilmli,ADJ,derivational,1,9,med
ilmparvar,NOUN,derivational,1,2,low
ilmsiz,ADJ,inflectional,1,7,med
ilojsizlik,NOUN,derivational,1,46,med
iltijo,NOUN,root,1,92,high
imlo,NOUN,root,2,164,high
imorat,NOUN,root,1,1230,high
import,NOUN,root,1,1140,high
imtihon,NOUN,root,1,4352,high
imzo,NOUN,root,1,116,high
injil,NOUN,root,1,107,high
injiq,NOUN,root,1,1,oov
inontir,VERB,inflectional,2,1,low
inoq,ADJ,root,1,44,med
inoqlik,NOUN,derivational,1,55,high
inqoroz,NOUN,root,1,1037,high
insho,NOUN,root,2,325,high
inshoot,NOUN,root,2,3458,high
insofli,ADJ,derivational,1,19,med
insoniyat,NOUN,derivational,3,1758,high
insonparvarlik,NOUN,derivational,1,720,high
ipakchilik,NOUN,derivational,1,51,high
iqbol,NOUN,root,1,419,high
iqtisod,NOUN,root,1,4770,high
iqtisodiy,ADJ,derivational,2,18470,high
iqtisodiyot,NOUN,derivational,1,148,high
irg'at,VERB,inflectional,1,1,low
irqchilik,NOUN,derivational,1,32,med
ishbilarmonlik,NOUN,derivational,1,303,high
ishonch,NOUN,root,1,428,high
ishontir,VERB,inflectional,1,1,low
ishora,NOUN,root,1,1554,high
ishsizlik,NOUN,inflectional,2,362,high
ishtirokchi,NOUN,derivational,2,8444,high
ishtiyoq,NOUN,root,1,2698,high
ishtiyoqsiz,ADJ,inflectional,1,1,low
isitish,NOUN,inflectional,1,387,high
isqirt,ADJ,root,1,9,med
issiq,ADJ,root,1,1030,high
issiqlik,NOUN,derivational,2,1089,high
iste'dod,NOUN,root,1,149,high
istiqlol,NOUN,root,1,5096,high
it,NOUN,root,1,229,high
ivirsit,VERB,inflectional,1,1,oov
ixtisoslan,VERB,inflectional,1,5,low
ixtisoslashtir,VERB,inflectional,1,1683,high
iymon,NOUN,root,3,428,high
izlash,NOUN,inflectional,2,435,high
izlattir,VERB,inflectional,1,2,low
iznsiz,ADJ,inflectional,1,12,med
jabduqlan,VERB,inflectional,1,5,low
jabr,NOUN,root,1,1,low
jabrlan,VERB,inflectional,1,11,med
jabrlanuvchi,NOUN,derivational,1,148,high
jadal,ADJ,root,2,2306,high
jadallashtir,VERB,inflectional,2,618,high
jadallat,VERB,inflectional,1,2,low
jadval,NOUN,root,2,2037,high
jahannam,NOUN,root,2,49,med
jamg'arma,NOUN,root,1,4603,high
jamiyat,NOUN,root,2,24655,high
jamoatchilik,NOUN,derivational,1,5518,high
jamol,NOUN,root,1,281,high
jang,NOUN,root,3,2998,high
janjalkash,NOUN,derivational,1,1,low
janjallash,VERB,derivational,2,20,med
janjalli,ADJ,derivational,1,1,oov
jannat,NOUN,root,2,49,med
jarahotlan,VERB,inflectional,1,65,high
jarangdor,ADJ,derivational,1,13,med
jarohat,NOUN,root,2,332,high
jarohatlantir,VERB,inflectional,1,8,med
jaroxatlan,VERB,inflectional,1,190,oov2
jasorat,NOUN,root,1,298,high
jasoratli,ADJ,derivational,1,1,low
jasur,ADJ,root,2,628,high
javobgar,NOUN,derivational,1,1343,high
javohir,NOUN,root,1,291,high
jazo,NOUN,root,2,154,high
jihoz,NOUN,root,2,355,high
jilmay,VERB,inflectional,1,28,med
jilmayish,NOUN,inflectional,4,32,med
jilovla,VERB,derivational,1,19,med
jimirlat,VERB,inflectional,1,2,low
jimlik,NOUN,derivational,2,137,high
jinoyat,NOUN,root,3,104,high
jinoyatchilik,NOUN,derivational,1,533,high
jipslashtir,VERB,inflectional,1,1918,high
jipslik,NOUN,derivational,1,234,high
jism,NOUN,root,1,1890,high
jizzaki,ADJ,derivational,1,9,med
jodugar,NOUN,derivational,1,32,med
jo'nat,VERB,root,2,1622,high
jonivor,NOUN,root,1,402,high
joriy,ADJ,root,2,14951,high
joy,NOUN,root,3,9471,high
joylashtir,VERB,inflectional,2,3230,high
jozibador,ADJ,derivational,1,198,oov2
jozibali,ADJ,derivational,1,9,med
judolik,NOUN,derivational,1,53,high
jumboq,NOUN,root,2,83,high
kaft,NOUN,root,2,228,high
kalamush,NOUN,root,1,75,high
kalit,NOUN,root,1,1288,high
kalta,ADJ,root,3,123,high
kaltaklan,VERB,inflectional,2,11,med
kamaytir,VERB,inflectional,5,2,low
kambag'al,ADJ,root,3,236,oov2
kamchilik,NOUN,derivational,1,3418,high
kamgap,ADJ,derivational,3,18,med
kamhosil,ADJ,derivational,2,3,low
kamqonlik,NOUN,derivational,1,191,high
kamquvvatlik,NOUN,derivational,1,1,low
kamsit,VERB,inflectional,1,272,high
kamsitilgan,VERB,inflectional,1,2,oov
kamsuqum,ADJ,derivational,2,24,med
kamtar,ADJ,root,3,83,high
kamyob,NOUN,derivational,1,2102,high
kapalak,NOUN,root,1,179,high
karam,NOUN,root,2,1,low
kardiologiya,NOUN,root,1,129,high
kasal,ADJ,root,2,1,low
kasalik,NOUN,derivational,1,191,high
kasallik,NOUN,derivational,5,1262,high
kasalmant,ADJ,derivational,1,27,oov2
kasalxona,NOUN,derivational,1,1304,high
kashta,NOUN,root,1,110,high
kashtachilik,NOUN,derivational,1,323,high
katta,ADJ,root,2,29153,high
kattaytir,VERB,inflectional,1,53,high
kavshan,VERB,inflectional,1,1,low
kayfiyat,NOUN,root,3,1851,high
kechik,VERB,derivational,1,3,low
kechiktir,VERB,inflectional,1,5392,high
keksa,ADJ,root,1,1151,oov2
keksalik,NOUN,inflectional,2,89,high
kelajak,NOUN,root,3,419,high
kelishtirish,VERB,inflectional,1,34,med
kelishuv,NOUN,inflectional,3,7783,high
kema,NOUN,root,1,82,high
kemiruvchi,NOUN,derivational,1,390,high
kengayish,NOUN,inflectional,1,525,high
kengaytir,VERB,inflectional,2,17,med
kenja,NOUN,root,1,178,high
kepak,NOUN,root,2,22,med
kerakmas,NOUN,inflectional,1,985,high
keraksiz,ADJ,inflectional,1,29,med
keramika,NOUN,root,1,22,med
kes,VERB,root,1,1,oov
keskin,ADJ,root,2,2306,oov2
keskir,ADJ,derivational,2,11,med
kibrli,ADJ,derivational,2,24,med
kichik,ADJ,root,4,10136,high
kichraytir,VERB,inflectional,3,53,high
kimyoviy modda,NOUN,derivational,1,106,high
kino,NOUN,root,1,5664,high
kiprik,NOUN,root,1,88,high
kirdikor,NOUN,root,1,53,high
kislorod,NOUN,root,2,230,high
kitob,NOUN,root,5,107,high
kiyik,NOUN,root,1,99,high
kiyim,NOUN,root,1,1536,high
km,NOUN,root,1,1130,high
ko'cha,NOUN,root,1,24655,high
ko'hna,ADJ,root,1,863,high
ko'k,ADJ,root,1,20,med
ko'makchi,NOUN,derivational,1,136,high
ko'maklash,VERB,inflectional,2,3217,high
komissiya,NOUN,root,1,6628,high
kommunikatsiya,NOUN,root,1,3306,high
kon,NOUN,root,1,263,high
konferensiya,NOUN,root,1,3381,high
ko'nikma,NOUN,derivational,1,2396,high
ko'paytir,VERB,inflectional,2,2,low
ko'poruvchilik,NOUN,derivational,1,451,high
koptok,NOUN,root,3,93,high
ko'rgazma,NOUN,derivational,1,375,high
ko'rimli,ADJ,derivational,1,8,med
ko'rkam,ADJ,root,2,13,med
ko'rkamlashtir,VERB,inflectional,1,20,med
ko'rsat,VERB,inflectional,1,1,low
ko'rsatkich,NOUN,derivational,1,5464,high
kotiba,NOUN,root,2,67,high
kovlashtir,VERB,inflectional,1,2,low
ko'ylak,NOUN,root,1,1536,high
ko'z,NOUN,root,1,88,high
ko'zdan kechir,VERB,inflectional,1,6,med
ko'zgu,NOUN,root,1,464,high
ko'ziojiz,NOUN,root,1,18,med
kredit,NOUN,root,1,329,high
kuch,NOUN,root,1,4079,high
kuchaytir,VERB,inflectional,2,2,low
kuchli,ADJ,derivational,3,11,med
kuchsizlantir,VERB,inflectional,1,37,med
kulba,NOUN,root,2,43,med
kulimsira,VERB,derivational,1,28,med
kulish,NOUN,inflectional,2,32,med
kulolchilik,NOUN,derivational,2,347,high
kulrang,NOUN,derivational,2,112,high
kunchiqar,NOUN,inflectional,2,130,high
kundoshlik,NOUN,derivational,1,1,oov
kunduzgi,NOUN,root,1,335,high
kungaboqar,NOUN,derivational,2,116,high
kursant,NOUN,root,1,277,high
kuydir,VERB,inflectional,1,77,low
kuylak,NOUN,root,1,30,med
kuzatuvchi,NOUN,derivational,1,1150,high
lafzsizlik,NOUN,inflectional,1,1,low
lahza,NOUN,root,1,568,high
lalmikorlik,NOUN,derivational,1,4,oov
langar,NOUN,root,1,82,high
laqillat,VERB,inflectional,1,21,med
latifago'y,NOUN,derivational,1,2,oov
latofatli,ADJ,derivational,2,198,high
lavozim,NOUN,root,4,2891,high
lazzatli,ADJ,derivational,1,1,low
leytenant,NOUN,root,1,107,high
libos,NOUN,root,2,1536,high
lichinka,NOUN,root,1,211,high
lirik,ADJ,root,1,334,oov2
lochin,NOUN,root,1,176,high
loqaydlik,NOUN,derivational,1,217,high
loviya,NOUN,root,1,59,high
loy,NOUN,root,1,347,high
loyqalat,VERB,inflectional,1,3,low
luqma,NOUN,root,1,55,high
mablag',NOUN,root,1,1535,high
madorsiz,ADJ,inflectional,2,9,med
mafkuraviy,ADJ,derivational,1,18470,high
mag'lubiyat,NOUN,root,2,1383,high
mahalla,NOUN,root,1,14054,high
mahalliy,ADJ,derivational,2,26162,high
mahbus,ADJ,root,2,115,oov2
mahkam,ADJ,root,1,213,oov2
mahkum,ADJ,root,1,226,oov2
maishiy,NOUN,derivational,1,1852,high
majburiyat,NOUN,root,1,2476,high
makkor,ADJ,root,1,1,low
makon,NOUN,root,1,889,high
maktab,NOUN,root,1,351,high
maktub,NOUN,root,1,943,high
malakali,ADJ,derivational,1,25,med
malla,ADJ,root,1,31,med
mamlakat,NOUN,root,2,53187,high
manba,NOUN,root,2,6913,high
mandarin,NOUN,root,1,51,high
manfaatli,ADJ,derivational,1,61,high
manfiy,ADJ,root,1,86,high
manfur,ADJ,root,1,37,med
mangulik,NOUN,derivational,1,80,high
manman,ADJ,root,2,12,med
manti,NOUN,root,2,22,med
mantiq,NOUN,root,1,48,med
manzara,NOUN,root,1,346,high
maosh,NOUN,root,2,578,high
maqbara,NOUN,root,1,627,high
maqsad,NOUN,root,1,616,high
maraz,NOUN,root,1,8,med
mardlik,NOUN,derivational,1,298,high
markaz,NOUN,root,1,6556,high
marosim,NOUN,root,1,3741,high
martaba,NOUN,root,1,2205,high
martabali,NOUN,derivational,1,1804,high
marvarid,NOUN,root,2,69,high
masala,NOUN,root,1,161,high
masalliq,NOUN,derivational,1,111,high
mashhur,ADJ,root,1,4404,high
mashina,NOUN,root,4,4364,high
mashq,NOUN,root,1,2,low
maskan,NOUN,root,1,3562,high
maslakdosh,NOUN,derivational,1,80,high
masnaviy,NOUN,root,1,44,med
masofa,NOUN,root,2,1130,high
matematika,NOUN,root,4,1502,high
matlab,NOUN,root,1,17,med
matn,NOUN,root,3,3087,high
mato,NOUN,root,3,125,high
mavhumlashtirish,VERB,inflectional,1,7,oov
mavjlantir,VERB,inflectional,2,3,low
mavqe,NOUN,root,1,329,high
mavxum,ADJ,root,1,11,med
maxalliy,ADJ,derivational,1,7484,oov2
maxalliylashtir,VERB,inflectional,1,710,oov2
maxkama,NOUN,root,1,4196,oov2
maxkamlan,VERB,inflectional,1,29,oov2
maxzun,NOUN,root,2,91,oov2
may,NOUN,root,1,1,low
mayda,ADJ,root,3,87,oov2
maydon,NOUN,root,1,9471,high
mayib,ADJ,root,1,44,med
maymoq,ADJ,root,1,1,low
mayoq,NOUN,root,2,60,high
mayor,NOUN,root,1,104,high
maysa,NOUN,root,1,182,high
mazali,ADJ,derivational,4,19,med
mazkur,ADJ,root,2,24228,high
mehmon,NOUN,root,1,966,high
mehnat,NOUN,root,1,89,high
mehnatkash,NOUN,derivational,1,498,high
mehrob,NOUN,root,1,58,high
me'moriy,ADJ,derivational,1,1,low
merosxo'r,NOUN,derivational,2,134,high
merosxo'rlik,NOUN,derivational,1,106,high
metal,NOUN,root,3,343,high
meteorologiya,NOUN,root,2,104,high
meva,NOUN,root,5,260,high
mevasiz,ADJ,inflectional,1,8,med
mezbon,NOUN,root,1,966,high
mezon,NOUN,root,1,1561,high
mijoz,NOUN,root,1,3654,high
mikroorganizm,NOUN,root,1,123,high
millat,NOUN,root,2,292,high
millatchilik,NOUN,derivational,1,32,med
milliy,ADJ,root,1,26162,high
milodiy,NOUN,root,1,123,high
mintaqa,NOUN,root,2,4352,high
miqdor,NOUN,root,1,161,high
miskin,ADJ,root,2,236,high
mislsiz,ADJ,inflectional,1,25,med
mitti,ADJ,root,1,10136,high
mizoj,NOUN,root,2,4,low
mojarochi,NOUN,derivational,2,1,low
mojaroviy,ADJ,derivational,1,1,oov
moliya,NOUN,root,2,4770,high
moliyaviy,ADJ,derivational,1,18470,high
mo'ljallan,VERB,inflectional,1,5,low
momaqaldiroq,NOUN,derivational,1,43,med
momaqaymoq,NOUN,derivational,1,2,low
momiq,NOUN,root,1,98,high
mongol,NOUN,root,1,6,med
morfologiya,NOUN,root,1,39,med
mo'rt,ADJ,root,1,11,med
mo'rtlashtir,VERB,inflectional,1,51,high
morze,NOUN,root,1,48,med
moziy,NOUN,root,1,116,high
mozor,NOUN,root,1,294,high
muallima,NOUN,root,2,195,high
muassasa,NOUN,root,1,12736,high
muazzin,NOUN,root,1,7,med
mubolag'asiz,ADJ,inflectional,1,19,med
muddao,NOUN,root,1,616,high
mudirlik,NOUN,derivational,1,190,high
muhim,ADJ,root,3,23761,high
muhimlik,NOUN,derivational,1,461,high
muhokama,NOUN,root,1,6267,high
muhrla,VERB,derivational,1,152,high
muhrlan,VERB,inflectional,1,12,med
mujassamlash,VERB,inflectional,1,103,oov
mujmal,ADJ,root,2,21,med
mukofotlan,VERB,inflectional,1,344,high
mukofotlangan,VERB,inflectional,1,2015,high
mulk,NOUN,root,1,2799,high
muloqot,NOUN,root,2,4085,high
muloyimlik,NOUN,derivational,1,42,med
mumtoz,ADJ,root,1,334,high
mundarija,NOUN,root,1,165,high
mungli,ADJ,derivational,1,1,low
munozara,NOUN,root,2,6267,high
munozarali,ADJ,derivational,1,3,low
muntazam,ADJ,root,3,5561,high
muolaja,NOUN,root,1,397,high
muomila,NOUN,root,1,48,med
muovin,NOUN,root,2,297,high
muqaddas,ADJ,root,2,2742,high
murabbo,NOUN,root,1,62,high
murakkab,ADJ,root,1,718,high
murakkablashtir,VERB,inflectional,1,24,med
musbat,ADJ,root,2,86,high
mushk,NOUN,root,1,10,med
mushkullashtir,VERB,inflectional,1,10,med
mushohada,NOUN,root,1,382,high
mushoira,NOUN,root,1,100,high
mushtlash,VERB,inflectional,1,2,low
musibatli,ADJ,derivational,1,3,low
musiqa,NOUN,root,3,4641,high
musiqachi,NOUN,derivational,1,293,high
musiqiy asbob,NOUN,derivational,1,1,oov
musodara,NOUN,root,1,154,high
musqia,NOUN,root,1,49,med
musson,NOUN,root,1,4,low
mustahkam,ADJ,root,4,3385,high
mustahkamlan,VERB,inflectional,1,29,med
mustaqil,ADJ,root,5,5754,high
mustaqillik,NOUN,derivational,3,5096,high
mutafakkir,NOUN,root,1,613,high
mutasaddi,NOUN,root,1,1343,high
mutoala,NOUN,root,1,554,oov2
muttahamlik,NOUN,derivational,2,4,low
muttasil,ADJ,root,1,629,oov2
muvofiqlashtir,VERB,inflectional,1,1683,high
muvofiqlashtirish,VERB,inflectional,1,335,oov
muvozanat,NOUN,root,1,775,high
muxolif,NOUN,root,1,107,high
muzey,NOUN,root,2,3351,high
muzlatgich,NOUN,inflectional,1,112,high
nabira,NOUN,root,1,464,high
nabotot,NOUN,root,1,102,high
nafosat,NOUN,root,1,381,high
namuna,NOUN,root,1,1105,high
naqqoshlik,NOUN,derivational,1,241,high
narsa,NOUN,root,2,10032,high
narx,NOUN,root,2,3645,high
nashriyot,NOUN,root,2,5,low
nasl,NOUN,root,1,24,med
natija,NOUN,root,1,5464,high
navqiron,ADJ,root,3,846,high
naxor,NOUN,root,1,1,low
nazoratchi,NOUN,derivational,2,6628,high
neft,NOUN,root,1,876,high
nevara,NOUN,root,1,319,high
nikohsiz,ADJ,inflectional,1,13,med
nimjon,ADJ,derivational,2,33,med
nizolash,VERB,inflectional,1,20,med
nizoli,NOUN,derivational,1,695,high
nizom,NOUN,root,1,1561,high
noaniq,ADJ,derivational,1,21,med
noaniqlik,NOUN,derivational,1,613,high
noasl,NOUN,derivational,1,1,oov
nochorlik,NOUN,derivational,1,46,med
nodon,ADJ,root,1,130,high
noinsof,ADJ,derivational,1,19,med
nola,NOUN,root,1,63,high
nomdor,ADJ,derivational,1,22,med
nomusli,ADJ,derivational,4,6,med
nomussiz,ADJ,inflectional,2,6,med
non,NOUN,root,1,89,high
nopok,ADJ,derivational,2,97,oov2
noqobil,ADJ,derivational,1,22,med
norin,NOUN,root,2,200,high
noshir,NOUN,root,1,236,high
noshirlik,NOUN,derivational,1,181,high
noshukurchilik,NOUN,derivational,1,2,oov
nosog',ADJ,derivational,2,1,low
nosoz,ADJ,derivational,2,86,high
notinch,ADJ,derivational,1,106,high
novda,NOUN,root,3,122,high
novvoyxona,NOUN,derivational,1,89,high
noyob,ADJ,root,3,2102,high
nozik,ADJ,root,4,177,high
nuqson,NOUN,root,1,3418,high
nurlanish,NOUN,inflectional,1,106,high
nuroniy,ADJ,inflectional,3,1804,high
nutq,NOUN,root,1,247,high
obida,NOUN,root,1,1230,high
obligatsiya,NOUN,root,1,276,high
obodonlashtir,VERB,inflectional,3,1859,high
obro',NOUN,root,1,329,high
ochiq,ADJ,root,2,11,med
ochiqlik,NOUN,derivational,1,1,oov
o'choq,NOUN,root,1,843,high
ochtir,VERB,inflectional,2,7,med
odamzod,NOUN,derivational,1,1758,high
odat,NOUN,root,2,403,high
oddiy,ADJ,root,3,19,med
odil,ADJ,root,1,9,med
odimla,VERB,derivational,1,240,high
odmi,ADJ,root,2,19,med
odobli,ADJ,derivational,2,6,med
odobsiz,ADJ,inflectional,2,6,med
og'ir,ADJ,root,3,3120,high
og'irroq,NOUN,root,1,14,low
o'g'rilik,NOUN,derivational,2,104,high
ohangdor,ADJ,derivational,2,13,med
oila,NOUN,root,5,56,high
o'jarlik,NOUN,derivational,1,13,med
ojiza,NOUN,root,2,10,med
okean,NOUN,root,2,555,high
okrug,NOUN,root,1,1524,high
oksid,NOUN,root,1,230,high
oldingi,ADJ,inflectional,2,1432,high
o'ldir,VERB,inflectional,1,21,med
o'lik,ADJ,root,1,173,high
olim,NOUN,root,3,613,high
o'lim,NOUN,root,1,1346,high
olima,NOUN,root,1,242,high
oliy,ADJ,root,1,8499,high
olmos,NOUN,root,2,291,high
olov,NOUN,root,2,1608,high
oltiburchak,NOUN,derivational,2,3,low
oltin,NOUN,root,1,267,high
ona,NOUN,root,1,56,high
o'ng,ADJ,root,1,728,high
o'ng'ay,ADJ,root,1,13,med
opera,NOUN,root,1,532,high
o'q,NOUN,root,1,27,med
o'qish,NOUN,inflectional,1,554,high
o'qituvchi,NOUN,inflectional,1,195,high
oqqush,NOUN,derivational,1,62,high
oqsil,NOUN,root,1,49,med
o'qtal,VERB,inflectional,2,9,med
o'quvchi,NOUN,root,1,14054,high
organ,NOUN,root,1,436,high
organizm,NOUN,root,4,1890,high
o'rgimchak,NOUN,root,1,69,high
o'rik,NOUN,root,2,260,high
o'rinbosar,NOUN,derivational,1,297,high
oriq,ADJ,root,3,19,med
oriyatli,ADJ,derivational,2,1,low
o'rmon,NOUN,root,3,61,high
o'rnashtir,VERB,inflectional,2,7,med
o'rnatilgan,VERB,inflectional,1,3230,high
orombaxsh,ADJ,derivational,1,19,med
orsiz,ADJ,inflectional,1,1,low
o'rtoq,NOUN,root,1,242,high
o'rtoqlik,NOUN,derivational,1,288,high
orttir,VERB,inflectional,1,1095,high
oshno,NOUN,root,1,242,high
o'shqir,VERB,inflectional,1,10,med
oshqovoq,NOUN,derivational,1,53,high
oshqozon,NOUN,derivational,1,436,high
oshxona,NOUN,root,4,843,high
o'simlik,NOUN,derivational,5,3182,high
o'sish,NOUN,inflectional,1,470,high
o'sma,NOUN,root,1,394,high
osmon,NOUN,root,2,1,low
osonlashtir,VERB,inflectional,1,162,high
osonlik,NOUN,derivational,1,1505,high
osoyishta,ADJ,root,2,1840,high
o'spirin,NOUN,root,1,1640,high
ostona,NOUN,root,1,95,high
ot,NOUN,root,1,155,high
o't,NOUN,root,2,2,low
o'tinch,NOUN,root,1,92,high
otish,VERB,root,3,16,low
o'tkir,ADJ,root,2,11,med
o'tmas,ADJ,inflectional,2,11,med
o'tmish,NOUN,derivational,2,1476,high
o'tov,NOUN,root,1,72,high
ovchi,NOUN,derivational,1,188,high
ovoz chiqarish,VERB,inflectional,2,33,med
ovqat,NOUN,root,1,238,high
ovuntir,VERB,inflectional,1,9,med
oxirgi,NOUN,root,1,3175,high
oxu,NOUN,root,1,99,high
oy,NOUN,root,2,375,high
o'yin,NOUN,root,3,1789,high
o'yla,VERB,derivational,1,410,high
o'ymakorlik,NOUN,derivational,2,241,high
oyna,NOUN,root,1,438,high
ozadalik,NOUN,derivational,1,333,high
ozaytir,VERB,inflectional,3,2,low
ozdir,VERB,inflectional,1,1,low
o'zgarmas,ADJ,inflectional,1,19,med
ozgina,ADJ,root,1,1703,high
oziq-ovqat,NOUN,root,1,2589,high
o'zlashtir,VERB,inflectional,1,710,high
ozod,ADJ,root,1,2332,oov2
ozon,NOUN,root,2,260,high
ozuqa,NOUN,root,2,89,high
pahmoq,ADJ,root,1,7,oov2
palov,NOUN,root,1,167,high
parchalanish,NOUN,inflectional,1,98,high
parvardigor,NOUN,root,1,117,high
parvoz,NOUN,root,2,360,high
pasayish,NOUN,inflectional,1,470,high
past,ADJ,root,1,2309,high
pastlash,NOUN,inflectional,2,1337,high
pastlat,VERB,inflectional,1,8,med
paxlavon,ADJ,root,2,11,med
paxmoq,ADJ,root,1,1,low
payraha,NOUN,root,2,1,low
peshin,NOUN,root,1,41,med
peshona,NOUN,root,2,290,high
pichirlash,VERB,inflectional,2,1,low
pichoq,NOUN,root,1,1,low
pilla,NOUN,root,1,51,high
pingvin,NOUN,root,1,49,med
pishir,VERB,inflectional,1,77,high
pishqiriq,NOUN,derivational,1,1,low
pivo,NOUN,root,1,183,high
piyoda,NOUN,root,1,42,med
piyola,NOUN,root,3,175,high
platina,NOUN,root,1,24,med
pog'onali,ADJ,derivational,1,8,med
pokiza,ADJ,root,2,97,high
po'lat,NOUN,root,1,343,high
polis,NOUN,root,1,3233,high
poliz,NOUN,root,1,172,high
poliz ekini,NOUN,inflectional,1,1,low
pomidor,NOUN,root,1,312,high
poydevor,NOUN,root,2,1134,high
poyezd,NOUN,root,3,401,high
poytaxt,NOUN,root,2,6556,high
pul,NOUN,root,3,1535,high
pulla,VERB,derivational,1,269,high
purka,VERB,root,1,4,low
putur,NOUN,root,1,353,high
qabihlik,NOUN,derivational,1,3,low
qabila,NOUN,root,1,169,high
qabriston,NOUN,derivational,1,294,high
qabul qil,VERB,root,2,1622,high
qadah,NOUN,root,2,1,low
qadamjo,NOUN,derivational,1,489,high
qahraton,NOUN,root,1,58,high
qalampir,NOUN,root,1,15,med
qaldirg'och,NOUN,root,1,225,high
qalin,ADJ,root,3,177,high
qalloblik,NOUN,derivational,1,37,med
qaltira,VERB,inflectional,1,1,low
qamoq,NOUN,root,1,222,high
qamsuqum,ADJ,derivational,1,23,med
qand,NOUN,root,1,324,high
qanoatlilik,NOUN,derivational,1,2,oov
qanot,NOUN,root,2,976,high
qanotlari,NOUN,inflectional,1,69,high
qaqshatqich,ADJ,derivational,1,24,med
qarag'ay,NOUN,root,2,53,high
qarag'ayzor,NOUN,derivational,2,1,low
qarat,VERB,root,1,9,med
qarattir,VERB,inflectional,1,1,low
qarilik,NOUN,derivational,2,1640,high
qarish,NOUN,root,1,154,high
qariya,NOUN,root,1,545,high
qarorgoh,NOUN,root,1,405,high
qarshilik,NOUN,derivational,2,427,high
qasr,NOUN,root,2,2214,high
qatag'on,NOUN,root,2,295,high
qatnashchi,NOUN,derivational,1,2654,high
qatnashuvchi,NOUN,derivational,1,8444,high
qatorlashtir,VERB,inflectional,1,6,med
qavm,NOUN,root,1,169,high
qayg'u,NOUN,root,1,371,high
qayg'uli,ADJ,derivational,2,13,med
qayg'ur,VERB,root,2,410,high
qayg'urish,NOUN,inflectional,1,2034,high
qayiq,NOUN,root,1,1,low
qayir,VERB,inflectional,1,5,low
qayishqoq,ADJ,inflectional,1,8,med
qayishtir,VERB,inflectional,1,1,low
qaynoq,NOUN,root,1,266,high
qaysarlik,NOUN,derivational,1,13,med
qazilma,NOUN,derivational,2,263,high
qazishtir,VERB,inflectional,1,2,low
qichqir,VERB,inflectional,1,10,med
qidirish,NOUN,inflectional,2,304,high
qidirtir,VERB,inflectional,1,2,low
qildir,VERB,inflectional,1,244,high
qiltiriq,ADJ,root,3,1,low
qimirlat,VERB,inflectional,1,35,med
qimmatbaxo,ADJ,derivational,1,1155,oov2
qirg'iz,NOUN,root,1,292,high
qirg'oq,NOUN,root,1,373,high
qirol,NOUN,root,1,2214,high
qirollik,NOUN,derivational,1,265,high
qism,NOUN,root,1,2458,high
qismat,NOUN,root,1,310,high
qisqa,ADJ,root,1,830,high
qiyinchilik,NOUN,derivational,1,1505,high
qiyinlashtir,VERB,inflectional,1,162,high
qiymat,NOUN,root,1,371,high
qiyom,NOUN,root,1,62,high
qizartir,VERB,inflectional,1,24,med
qizilo'ngach,NOUN,derivational,1,125,high
qiziqarli,ADJ,derivational,1,161,high
qiziqchi,NOUN,derivational,1,2,oov
qiziqqon,ADJ,derivational,2,1,low
qo'l,NOUN,root,2,628,high
qoldiq,NOUN,derivational,1,359,high
qoldir,VERB,inflectional,2,5392,high
qo'lyozma,NOUN,derivational,3,622,high
qomatdor,ADJ,derivational,1,1,low
qon,NOUN,root,2,935,high
qo'nim,NOUN,root,2,1231,high
qo'nish,VERB,inflectional,3,360,high
qonuniylashtir,VERB,inflectional,1,1309,high
qonunlashtir,VERB,inflectional,1,22,oov
qopcha,NOUN,root,1,13,med
qo'pollash,VERB,inflectional,1,8,med
qopqoq,NOUN,derivational,1,55,high
qor,NOUN,root,1,213,high
qorbobo,NOUN,derivational,1,213,high
qo'riqxona,NOUN,derivational,1,448,high
qorong'ulik,NOUN,derivational,1,576,high
qo'rqinchli,ADJ,derivational,1,24,med
qo'rqit,VERB,inflectional,2,34,med
qo'rqitish,NOUN,inflectional,1,1255,high
qo'rqoq,ADJ,root,4,58,high
qorung'ulik,NOUN,derivational,1,124,high
qo'shiltir,VERB,inflectional,1,5,low
qoshiq,NOUN,root,1,64,high
qo'shiqchi,NOUN,derivational,1,3609,high
qo'shnilik,NOUN,derivational,1,1,low
qo'shtor,NOUN,derivational,1,1,oov
qotillik,NOUN,derivational,1,533,high
qotir,VERB,inflectional,1,359,high
qo'tos,NOUN,root,1,2,low
qovoq,NOUN,root,1,53,high
qo'zg'at,VERB,inflectional,1,360,high
quduq,NOUN,root,1,473,high
qula,VERB,root,1,261,high
qum,NOUN,root,2,81,high
qumursqa,NOUN,root,2,4,low
qurbon,NOUN,root,1,295,high
qurdir,VERB,inflectional,2,17,med
qurg'oqchilik,NOUN,derivational,1,65,high
qurilish,NOUN,root,1,2173,high
qurilma,NOUN,derivational,2,3167,high
qurol,NOUN,root,1,27,med
qurumsoq,ADJ,root,1,219,high
quruq,ADJ,root,3,2378,high
qush,NOUN,root,5,225,high
qutqaruvchi,NOUN,derivational,1,62,high
quvontir,VERB,inflectional,1,4,low
quyi,ADJ,root,1,2309,oov2
quyosh,NOUN,root,1,116,high
quyuq,ADJ,root,1,59,high
quyuqlantir,VERB,inflectional,1,1,oov
radiator,NOUN,root,1,53,high
radiatsiya,NOUN,root,2,106,high
radiotexnika,NOUN,root,1,129,high
rafiqa,NOUN,root,1,224,high
rag'batlantir,VERB,inflectional,2,2974,high
rahbar,NOUN,root,2,4490,high
rahmdil,ADJ,derivational,3,61,high
raketa,NOUN,root,1,675,high
ramazon,NOUN,root,1,375,high
ramz,NOUN,root,1,1425,high
randa,NOUN,root,1,110,high
randala,VERB,derivational,1,2,low
rang,NOUN,root,2,112,high
ra'noguldosh,NOUN,derivational,1,100,high
raqs,NOUN,root,1,1789,high
rasmiylashtir,VERB,inflectional,2,1309,high
rasta,NOUN,root,2,365,high
ravishdosh,NOUN,derivational,1,4,low
razil,ADJ,root,1,37,med
razillik,NOUN,derivational,2,1096,high
reja,NOUN,root,1,2037,high
rejalashtir,VERB,inflectional,1,4633,high
rejali,ADJ,derivational,1,7,med
resurs,NOUN,root,1,6913,high
ring,NOUN,root,1,351,high
rivojlanish,NOUN,inflectional,2,8787,high
rivojlantir,VERB,inflectional,2,3641,high
rohatbaxsh,ADJ,derivational,1,12,med
rohiba,NOUN,root,1,5,low
rostlan,VERB,inflectional,1,39,med
ro'za,NOUN,root,1,247,high
rozilik,NOUN,derivational,1,673,high
ruhlantir,VERB,inflectional,3,223,high
rusum,NOUN,root,1,1165,high
rux,NOUN,root,1,201,high
ruxiyat,NOUN,derivational,1,1758,high
ruxsat,NOUN,root,1,232,high
ruxsatsiz,ADJ,inflectional,1,12,med
sabrli,ADJ,derivational,2,1,low
sabrsiz,ADJ,inflectional,4,1,low
sabzavot,NOUN,root,1,213,high
sabzi,NOUN,root,1,238,high
sabzovot,NOUN,root,2,312,high
sado,NOUN,root,2,675,high
sadoqatli,ADJ,derivational,3,19,med
safardosh,NOUN,derivational,1,3,oov
saffoflik,NOUN,derivational,1,1,oov
saflan,VERB,inflectional,1,11,med
sag'ana,NOUN,root,1,627,high
sahna,NOUN,root,2,3372,high
sahro,NOUN,root,1,1134,high
salbiy,ADJ,derivational,2,2278,high
salobatli,ADJ,derivational,1,1,low
salomat,ADJ,root,2,12,med
samarador,ADJ,derivational,1,87,high
samolyot,NOUN,root,3,976,high
samoviy,ADJ,derivational,2,123,oov2
san'at,NOUN,root,1,152,high
san'atkor,NOUN,derivational,1,293,high
sanchiq,NOUN,root,1,30,med
sanoat,NOUN,root,1,1134,high
santimetr,NOUN,root,1,226,high
saraton,NOUN,root,2,394,high
sarflan,VERB,inflectional,1,17,oov
sarhad,NOUN,root,3,311,high
sariq,ADJ,root,1,31,med
sarmoya,NOUN,root,2,1535,high
saroy,NOUN,root,4,2214,high
sarpo,NOUN,root,1,30,med
savdo,NOUN,root,3,3901,high
saviya,NOUN,root,1,2205,high
saxiy,ADJ,root,4,85,high
saxovat,NOUN,root,1,1193,high
saxovatli,ADJ,derivational,1,10,med
saxro,NOUN,root,2,224,oov2
sayohat,NOUN,root,2,1175,high
sayohatchi,NOUN,derivational,2,1231,high
sayqalla,VERB,derivational,1,19,med
sayyod,NOUN,root,2,188,high
sayyoh,NOUN,root,2,1231,high
sayyora,NOUN,root,3,989,high
sehrgar,NOUN,derivational,1,1,low
sehrli,ADJ,derivational,1,9,med
sekinlash,VERB,inflectional,2,5,low
sekinlashtir,VERB,inflectional,3,51,high
sekinlat,VERB,inflectional,1,9,med
semirtir,VERB,inflectional,1,1,low
semiz,ADJ,root,4,19,med
sep,VERB,root,1,4,low
sepish,VERB,inflectional,1,37,med
sergaklan,VERB,inflectional,2,1,low
sergaklik,NOUN,derivational,1,37,med
sergap,ADJ,derivational,2,9,med
serhasham,ADJ,derivational,1,9,med
serhosil,ADJ,derivational,1,74,high
serjant,NOUN,root,1,371,high
sernam,ADJ,derivational,1,7,med
serqatnov,ADJ,derivational,1,54,high
sershira,NOUN,derivational,1,1,low
sershovqin,ADJ,derivational,1,13,med
sertashvish,ADJ,derivational,1,13,med
serunum,ADJ,derivational,1,23,med
serxarxasha,NOUN,derivational,1,1,oov
serzavq,ADJ,derivational,1,12,med
seskantir,VERB,inflectional,1,2,low
sevikli,ADJ,derivational,1,41,med
sevimli,ADJ,derivational,1,1692,oov2
sezdir,VERB,inflectional,1,8,med
sezgi,NOUN,derivational,1,268,high
sezish,VERB,inflectional,3,168,high
shafaq,NOUN,root,1,130,high
shafaqrang,NOUN,derivational,1,1,oov
shaffof,ADJ,root,2,85,high
shafqatsiz,ADJ,inflectional,2,104,high
shaftoli,NOUN,root,2,138,high
shag'al,NOUN,root,1,81,high
shajara,NOUN,root,1,81,high
shakl,NOUN,root,2,3,low
shakllantir,VERB,inflectional,1,7187,high
shamol,NOUN,root,1,4,low
sharmsiz,ADJ,inflectional,2,8,med
sharmsizlik,NOUN,inflectional,1,4,oov
sharob,NOUN,root,1,1,low
shartnoma,NOUN,derivational,2,7783,high
shashka,NOUN,root,2,256,high
shashmaqom,NOUN,derivational,1,148,high
shaxdam,ADJ,root,1,8,med
shaxsiy,ADJ,derivational,1,7618,high
shaxzoda,NOUN,root,1,2,oov
she'riyat,NOUN,derivational,1,100,high
shiddatli,ADJ,derivational,1,11,med
shifohona,NOUN,root,1,1304,oov2
shifoxona,NOUN,derivational,1,466,high
shijoatli,ADJ,derivational,2,8,med
shikastlantir,VERB,inflectional,1,8,med
shilqimlik,NOUN,derivational,1,1,low
shim,NOUN,root,1,391,high
shimol,NOUN,root,1,14,med
shirin,ADJ,root,4,19,med
shisha,NOUN,root,2,464,high
shivirlash,VERB,inflectional,1,1,low
shodlik,NOUN,derivational,2,371,high
shohona,ADJ,derivational,1,46,med
shubhalan,VERB,inflectional,1,6,med
shubhasiz,ADJ,inflectional,1,19,med
shudgorlan,VERB,inflectional,1,19,med
sichqon,NOUN,root,2,390,high
signal,NOUN,root,1,126,high
silsila,NOUN,root,1,157,high
sindirish,VERB,inflectional,2,31,med
sinfdosh,NOUN,derivational,1,351,high
sirdosh,NOUN,derivational,1,80,high
sirtqi,NOUN,root,1,241,high
sitam,NOUN,root,1,1,low
sitrus meva,NOUN,root,2,51,high
siyosat,NOUN,root,1,107,high
siyrak,ADJ,root,2,65,high
sobiq,ADJ,root,2,1818,oov2
sodda,ADJ,root,3,718,high
sog'lik,NOUN,derivational,2,1262,high
sog'lom,ADJ,root,2,1,low
soha,NOUN,root,1,31050,high
so'kinish,NOUN,inflectional,1,8,med
so'lg'inlik,NOUN,derivational,1,1,low
so'm,NOUN,root,1,1606,high
son,NOUN,root,2,418,high
soniya,NOUN,root,1,568,high
so'qir,NOUN,root,1,18,med
so'qqaboshlik,NOUN,derivational,1,1,oov
so'roq,NOUN,derivational,1,19,low
so'rov,NOUN,derivational,1,1466,high
sotish,VERB,inflectional,1,269,high
sotqinlik,NOUN,derivational,1,3,oov
sottirdi,VERB,inflectional,1,1,low
sovg'a,NOUN,root,1,555,high
sovitish,NOUN,inflectional,1,387,high
sovuq,ADJ,root,3,1030,high
sovuqlik,NOUN,derivational,1,1089,high
sovutgich,NOUN,inflectional,2,112,high
soxil,NOUN,root,2,373,oov2
soxta,NOUN,root,1,1,oov
soz,ADJ,root,2,86,high
so'z turkumi,NOUN,inflectional,1,4,low
so'zlash,VERB,inflectional,2,1234,high
so'zlashtir,VERB,inflectional,1,1,low
so'zlashuv,NOUN,inflectional,1,48,med
so'zlattir,VERB,inflectional,1,17,med
spektakl,NOUN,root,1,700,high
sport,NOUN,root,2,544,high
sportchi,NOUN,derivational,2,339,high
subutsizlik,NOUN,derivational,1,1,low
sud,NOUN,root,2,494,high
sudralib yuruvchi,NOUN,inflectional,1,1,low
sudraluvchi,NOUN,derivational,1,89,high
sudya,NOUN,root,1,494,high
sug'urta,NOUN,root,1,3233,high
suhbat,NOUN,root,2,4085,high
suhbatlash,VERB,inflectional,1,21,med
suhbatlashtir,VERB,inflectional,1,1,low
sukunat,NOUN,root,1,67,high
sukut,NOUN,root,1,137,high
sulh,NOUN,root,1,71,high
sulola,NOUN,root,2,390,high
sumalak,NOUN,root,2,293,high
surrogat,NOUN,root,1,4,low
surunkali,ADJ,derivational,2,29,med
susaytir,VERB,inflectional,1,114,high
sustkash,ADJ,derivational,2,7,med
sustkashlik,NOUN,derivational,1,83,high
sustlashtir,VERB,inflectional,1,6,med
suv,NOUN,root,5,2063,high
suvarak,NOUN,root,1,21,med
suveren,ADJ,root,1,132,oov2
suverenitet,NOUN,root,1,191,high
suvsira,VERB,derivational,1,4,low
suvsiradi,VERB,inflectional,1,1,low
suvsirash,NOUN,derivational,1,101,high
suvsizlik,NOUN,derivational,1,65,high
suxbatlash,VERB,inflectional,1,1234,oov2
suxsur,ADJ,root,1,1,low
suyukli,ADJ,derivational,2,1692,high
suyuntir,VERB,inflectional,1,4,low
suyuqlantir,VERB,inflectional,1,1,oov
suyuqlik,NOUN,derivational,3,317,high
svetofor,NOUN,root,1,41,med
taajjublantir,VERB,inflectional,1,6,med
tabassum,NOUN,root,2,404,high
tabibchilik,NOUN,derivational,1,1,low
tabiiy hodisa,NOUN,root,2,93,high
tabobat,NOUN,root,2,252,high
tadbir,NOUN,root,1,3741,high
tadbirkorlik,NOUN,derivational,1,303,high
tafakkur,NOUN,root,2,2266,high
tafovut,NOUN,root,1,234,high
tahdid,NOUN,root,1,1255,high
tahla,VERB,derivational,1,6,med
tahsil,NOUN,root,1,1873,high
tajriba,NOUN,root,1,2396,high
takabbur,ADJ,root,1,12,med
takomillashtirish,NOUN,inflectional,1,3265,high
talaba,NOUN,root,2,14054,high
talaffuz,NOUN,root,2,247,high
talant,NOUN,root,1,149,high
ta'lim,NOUN,root,1,1873,high
taltaytir,VERB,inflectional,1,4,low
tam,NOUN,root,1,1,low
tambala,VERB,derivational,1,6,med
tamg'ala,VERB,inflectional,1,152,high
tamg'alan,VERB,inflectional,1,12,med
ta'mirlash,NOUN,inflectional,2,352,high
tamomlash,NOUN,inflectional,2,401,high
tamoyil,NOUN,root,1,3311,high
tamshan,VERB,inflectional,2,7,med
tanavor,NOUN,root,2,1,low
tanazzul,NOUN,root,1,301,high
tanbex,NOUN,root,2,1,oov2
taniqli,ADJ,derivational,1,4404,high
tannarx,NOUN,root,2,371,high
tansiq,ADJ,root,2,59,high
taom,NOUN,root,5,293,high
taqchil,ADJ,root,2,29,med
taqdir,NOUN,root,1,310,high
taqdirlan,VERB,inflectional,2,2015,high
taqillat,VERB,inflectional,1,33,med
taqvo,NOUN,root,1,428,high
taqvodor,ADJ,derivational,1,177,high
taraqqiyot,NOUN,root,1,8787,high
tarbiya,NOUN,root,1,1,low
targ'ibot,NOUN,derivational,1,3,low
tarix,NOUN,root,3,1476,high
tarjimonlik,NOUN,derivational,1,1,low
tarmoq,NOUN,root,1,843,high
tarona,NOUN,root,1,4641,high
tarozi,NOUN,root,1,1,low
tarozibon,NOUN,derivational,1,1,low
tarqatuvchi,NOUN,derivational,1,440,high
tarqoq,ADJ,root,3,65,high
tartibli,ADJ,derivational,2,7,med
tarvuz,NOUN,root,1,172,high
tasalli,NOUN,root,1,127,high
tasavvur,NOUN,root,1,3362,high
tashkilot,NOUN,root,2,12736,high
tashnalik,NOUN,derivational,1,101,high
tashqi,NOUN,root,1,241,high
tashviqot,NOUN,root,1,3,low
tashvish,NOUN,root,1,1425,high
tashvishli,ADJ,derivational,1,24,med
taskin,NOUN,root,1,127,high
taskin ber,VERB,root,1,9,med
tasma,NOUN,root,2,229,high
tasnifla,VERB,derivational,2,152,high
tasvirla,VERB,derivational,1,19,med
tasvirlan,VERB,inflectional,1,5,low
tavallud,NOUN,root,3,706,high
tavrot,NOUN,root,1,62,high
tavsifnoma,NOUN,derivational,1,499,high
tayanib,VERB,inflectional,2,3,low
tayinli,ADJ,derivational,1,13,med
teatr,NOUN,root,4,3372,high
tebrat,VERB,inflectional,2,360,high
tegajog'lik,NOUN,derivational,1,1,low
tehnika,NOUN,root,1,6420,oov2
tekin,ADJ,root,2,228,oov2
tekis,ADJ,root,2,402,high
tekislan,VERB,inflectional,3,39,med
tekshirtir,VERB,inflectional,1,227,high
tekshiruv,NOUN,inflectional,1,47,med
telba,ADJ,root,2,130,oov2
teleskop,NOUN,root,1,347,high
teng,ADJ,root,1,4000,high
tengdosh,ADJ,derivational,1,6,low
tenglama,NOUN,derivational,3,161,high
tentak,ADJ,root,2,9,med
teplovoz,NOUN,root,1,24,med
teshik,NOUN,inflectional,1,34,med
tetik,ADJ,root,5,118,oov2
tetiklik,NOUN,derivational,1,1,low
tezlash,VERB,inflectional,2,5,low
tezlashtir,VERB,inflectional,4,396,high
tezlat,VERB,inflectional,1,9,med
tijorat,NOUN,root,1,3901,high
tikish,VERB,inflectional,2,355,high
tikuvchilik,NOUN,derivational,3,761,high
til,NOUN,root,1,49,med
tilmochlik,NOUN,derivational,1,1,low
tilshunoslik,NOUN,derivational,2,137,high
tilyog'lama,ADJ,derivational,1,1,low
timsoh,NOUN,root,1,1,low
timsol,NOUN,root,3,1425,high
tinch,ADJ,root,2,1840,oov2
tinchit,VERB,inflectional,1,21,med
tinchlantir,VERB,inflectional,1,75,high
tinchlik,NOUN,derivational,3,4149,high
tinglovchi,NOUN,derivational,1,1526,high
tiniq,ADJ,root,2,85,high
tintuv,NOUN,inflectional,1,47,med
tirik,ADJ,root,1,173,high
tirishqoqlik,NOUN,derivational,1,100,high
tirmash,VERB,inflectional,1,23,med
tirqish,NOUN,root,1,34,med
tizimlashtir,VERB,inflectional,1,4633,high
tog',NOUN,root,3,432,high
to'gon,NOUN,root,1,104,high
toifa,NOUN,root,2,2399,high
toifala,VERB,inflectional,1,152,high
to'la,ADJ,root,2,2378,high
toliqtir,VERB,inflectional,1,43,med
to'lov,NOUN,root,1,329,high
to'lqin,NOUN,root,1,33,med
to'lqinlantir,VERB,inflectional,1,3,low
tomir,NOUN,root,3,935,high
tomoq,NOUN,root,1,125,high
tomorqa,NOUN,root,1,560,high
tong,NOUN,root,1,1,low
topish,NOUN,inflectional,1,467,high
topishmoq,NOUN,inflectional,1,83,high
topishtir,VERB,inflectional,1,4,oov
to'plam,NOUN,root,1,2573,high
to'plash,VERB,inflectional,1,2,low
to'ppi,NOUN,root,2,1,low
topqir,ADJ,root,1,29,med
topshiriq,NOUN,inflectional,2,1554,high
toqatli,ADJ,derivational,2,1,low
toqatsizlik,NOUN,inflectional,1,3,low
to'qimachilik,NOUN,derivational,1,1134,high
to'qish,VERB,inflectional,1,4,low
to'qnashtir,VERB,inflectional,2,5,low
torayish,NOUN,inflectional,1,525,high
toraytir,VERB,inflectional,2,17,med
torqoqlik,NOUN,derivational,2,384,high
tortinchoq,ADJ,inflectional,1,19,med
tortishuv,NOUN,inflectional,1,249,high
tosh,NOUN,root,2,163,high
to'shak,NOUN,root,1,161,high
toshbaqa,NOUN,root,1,89,high
toshbo'ron,NOUN,derivational,1,1,low
toshloq,NOUN,root,1,98,high
toshma,NOUN,derivational,1,52,high
to'siqsiz,ADJ,inflectional,1,11,med
totli,ADJ,derivational,2,9,med
totuv,ADJ,root,1,44,med
totuvlik,NOUN,derivational,2,695,high
tovlamachilik,NOUN,derivational,1,37,med
tovoq,NOUN,root,1,842,high
tovush,NOUN,root,3,675,high
tovushsiz,ADJ,inflectional,1,10,med
to'ydir,VERB,inflectional,1,49,med
tozala,VERB,derivational,1,4,low
tozalash,VERB,inflectional,1,1859,high
tozalik,NOUN,derivational,1,333,high
to'zgit,VERB,inflectional,1,3,low
to'zg'itish,VERB,inflectional,1,1,oov
to'zit,VERB,inflectional,1,3,low
transport,NOUN,root,2,678,high
trillion,NOUN,root,1,418,high
tub,ADJ,root,1,3232,high
tubsiz,ADJ,inflectional,1,1,low
tuganmas,ADJ,inflectional,1,51,high
tugat,VERB,inflectional,1,1387,high
tugatdi,VERB,inflectional,1,5392,high
tugatish,VERB,inflectional,3,401,high
tug'ilish,NOUN,inflectional,2,706,high
tug'ruqxona,NOUN,derivational,1,102,high
tugunlari,NOUN,inflectional,1,2037,high
tuhfa,NOUN,root,2,555,high
tuproq,NOUN,root,1,22,med
tur,NOUN,root,1,2399,high
turar-joy,NOUN,root,1,770,high
turg'iz,VERB,inflectional,1,33,med
turizm,NOUN,root,1,1175,high
turkumla,VERB,derivational,1,43,med
turshak,NOUN,root,3,23,med
tushish,NOUN,inflectional,2,1337,high
tushlik,NOUN,derivational,1,238,high
tushum,NOUN,root,2,449,high
tushuntirish,VERB,inflectional,1,41,med
tutmoq,NOUN,root,1,258,high
tutqin,ADJ,derivational,1,115,high
tutruqsizlik,NOUN,derivational,1,1,low
tuvak,NOUN,root,2,55,high
tuyaqush,NOUN,derivational,1,31,med
tuzatish,NOUN,inflectional,2,352,high
tuzg'it,VERB,inflectional,1,2,low
tuzmoq,VERB,root,1,7187,high
uchish,VERB,inflectional,3,360,high
uchqur,ADJ,root,1,30,med
uchrashtir,VERB,inflectional,2,11,med
uchrashuv,NOUN,inflectional,1,4085,high
udum,NOUN,root,1,403,high
ufq,NOUN,root,1,1,low
uglevodorod,NOUN,root,1,139,high
ulamo,NOUN,root,2,213,high
ulkan,ADJ,root,2,5658,high
uloqtir,VERB,inflectional,1,155,high
ulug'vorlik,NOUN,derivational,1,101,high
ulush,NOUN,root,1,2458,high
ummon,NOUN,root,1,555,high
umumiy,ADJ,derivational,1,123,high
undosh,NOUN,derivational,1,52,high
unit,VERB,root,1,9,med
unittir,VERB,inflectional,1,7,med
unsiz,ADJ,inflectional,1,10,med
unumdor,ADJ,derivational,2,105,oov2
unumli,ADJ,derivational,1,9,med
unumsiz,ADJ,inflectional,3,1,low
unvon,NOUN,root,2,107,high
uqtirish,VERB,inflectional,2,41,med
uqubatli,ADJ,derivational,1,1,low
urf,NOUN,root,2,274,high
urildi,VERB,inflectional,1,3,low
urishtir,VERB,inflectional,1,35,med
urush,NOUN,root,2,2998,high
ushlab,VERB,root,1,1,low
ushlamoq,NOUN,derivational,1,258,high
ushshoq,NOUN,root,1,215,high
uskuna,NOUN,root,1,1288,high
ustahona,NOUN,derivational,1,497,oov2
uvilla,VERB,derivational,1,8,med
uxlash,NOUN,inflectional,1,386,high
uy,NOUN,root,3,508,high
uyaltir,VERB,inflectional,3,24,med
uyatchan,ADJ,derivational,2,19,med
uyatsiz,ADJ,inflectional,1,1,low
uyg'onish,NOUN,inflectional,2,386,high
uyg'oq,ADJ,root,1,86,high
uyg'ottir,VERB,inflectional,1,17,med
uyg'unlashtir,VERB,inflectional,2,335,oov
uyli,ADJ,derivational,1,23,med
uymalash,VERB,inflectional,1,2,low
uyqusiz,ADJ,inflectional,1,1,low
uyqusizlik,NOUN,derivational,1,38,med
uyum,NOUN,root,1,2573,high
uyushgan,ADJ,inflectional,1,116,oov2
uyushma,NOUN,derivational,3,5246,high
uyushqoq,ADJ,root,2,8,med
uyushqoqlik,NOUN,derivational,2,384,high
uzoq,ADJ,root,1,18342,high
uzoqlash,VERB,inflectional,1,237,high
uzoqlashtir,VERB,inflectional,1,359,high
uzoqlik,NOUN,derivational,1,361,high
uzun,ADJ,root,4,830,high
uzunchoq,ADJ,derivational,1,11,med
uzunlik,NOUN,derivational,1,226,high
vafoli,ADJ,derivational,2,19,med
vafot,NOUN,root,3,1346,high
vagon,NOUN,root,1,401,high
valaqla,VERB,root,1,4,low
valdira,VERB,root,2,6,med
valiaxt,NOUN,root,2,2,oov
valyuta,NOUN,root,2,1606,high
vaqt,NOUN,root,2,335,high
vaqtincha,ADJ,derivational,1,633,high
vasiyatnoma,NOUN,derivational,1,134,high
vaxshiyona,ADJ,inflectional,1,1,oov
vayron qil,VERB,root,2,17,med
vaysaqi,ADJ,derivational,1,7,med
vazifa,NOUN,root,1,1554,high
vazirklik,NOUN,derivational,1,7149,high
vaziyat,NOUN,root,1,4773,high
vaznli,ADJ,derivational,2,8,med
vena,NOUN,root,3,260,high
veterinariya,NOUN,root,1,290,high
vidolash,VERB,inflectional,1,38,med
vodiy,NOUN,root,2,432,high
vodorod,NOUN,root,1,131,high
vokal,NOUN,root,1,152,high
voleybol,NOUN,derivational,2,544,high
volida,NOUN,root,2,56,high
voqea,NOUN,root,1,3159,high
voris,NOUN,root,1,2,oov
vorislik,NOUN,derivational,2,106,high
voxa,NOUN,root,1,1023,oov2
vulqon,NOUN,root,3,93,high
xabar,NOUN,root,1,499,high
xafa,ADJ,root,1,57,high
xafahol,ADJ,derivational,1,1,low
xafaqon,ADJ,derivational,1,12,med
xakamlik,NOUN,derivational,1,460,oov2
xaloskor,NOUN,derivational,1,62,high
xaloyiq,NOUN,root,1,1,low
xalq,NOUN,root,1,1,low
xaltacha,NOUN,derivational,1,13,med
xamir,NOUN,root,3,200,high
xamroh,NOUN,root,2,3,oov
xamtovoq,NOUN,derivational,1,16,med
xamyurt,NOUN,derivational,1,1909,oov2
xaqiqiy,ADJ,derivational,2,2637,oov2
xaqoratla,VERB,inflectional,1,2974,high
xarakat,NOUN,root,1,83,high
xarakatchan,ADJ,derivational,1,7,med
xarakatchanlik,NOUN,derivational,1,100,high
xarf,NOUN,root,1,52,high
xaridor,NOUN,derivational,2,3654,high
xarob,ADJ,root,1,23,med
xarorat,NOUN,root,1,266,high
xasharot,NOUN,root,2,179,high
xasis,ADJ,root,3,85,high
xastalik,NOUN,derivational,2,1262,high
xat,NOUN,root,1,943,high
xatarli,ADJ,derivational,1,24,med
xati,NOUN,root,1,164,high
xavotirlan,VERB,inflectional,1,102,high
xayol,NOUN,root,1,3362,high
xayolparastlik,NOUN,derivational,1,1,low
xayriya,NOUN,root,2,1193,high
xayrlash,VERB,inflectional,1,38,med
xayvon,NOUN,root,1,290,high
xayvonot,NOUN,derivational,3,141,high
xira,ADJ,root,3,93,high
xodim,NOUN,root,1,16,low
xo'jalik,NOUN,derivational,3,1852,high
xo'kiz,NOUN,root,1,2,low
xolis,ADJ,root,2,730,oov2
xomila,NOUN,root,1,137,high
xo'mrayish,NOUN,inflectional,2,32,med
xomush,ADJ,root,2,12,med
xonanda,NOUN,root,1,3609,high
xorijiy,ADJ,derivational,3,190,oov2
xo'rlangan,VERB,inflectional,1,2,oov
xotamtoy,ADJ,derivational,2,18,oov2
xo'tik,NOUN,root,1,2,low
xotin,NOUN,root,3,224,high
xotira,NOUN,root,1,3808,high
xudud,NOUN,root,2,4352,high
xujumchi,NOUN,derivational,1,368,oov2
xukumat,NOUN,root,1,5803,oov2
xurmo,NOUN,root,1,165,high
xursand,ADJ,root,1,7,med
xushchaqchaq,NOUN,derivational,1,91,high
xushmuomala,NOUN,derivational,1,42,med
xushvaqt,ADJ,derivational,1,7,med
xushyor bo'l,VERB,root,1,1,low
xushyorlik,NOUN,derivational,1,37,med
xususiy,ADJ,derivational,1,7618,high
yadro,NOUN,root,1,1163,high
yagona,ADJ,root,3,4434,high
yakka,ADJ,root,2,173,oov2
yakkalan,VERB,inflectional,1,12,med
yakun,NOUN,root,1,42,med
yakunlan,VERB,inflectional,1,1781,high
yakunlash,VERB,inflectional,1,335,oov
yalin,VERB,inflectional,1,34,med
yalqov,ADJ,root,2,50,high
yaltirat,VERB,inflectional,1,1,low
yaltiroq,ADJ,root,2,93,high
yamoqchilik,NOUN,derivational,1,1,low
yangi,ADJ,root,4,1,low
yangila,VERB,derivational,1,8,med
yangilik,NOUN,derivational,1,386,high
yanglishtir,VERB,inflectional,2,8,med
yaproq,NOUN,root,1,1,low
yaqin,ADJ,root,2,18342,high
yaqinlash,VERB,inflectional,1,237,high
yaqinlashtir,VERB,inflectional,1,359,high
yaqinlik,NOUN,derivational,1,361,high
yarador,ADJ,derivational,1,44,med
yaralan,VERB,inflectional,2,65,high
yaraqlat,VERB,inflectional,1,1,low
yarashtir,VERB,inflectional,1,35,med
yarqirat,VERB,inflectional,1,4,low
yasantir,VERB,inflectional,1,5,low
yashirin,ADJ,root,1,11,med
yaxlit,ADJ,root,1,566,oov2
yaxshilash,NOUN,inflectional,1,1560,high
yaxshilik,NOUN,derivational,3,1096,high
yaylov,NOUN,root,1,292,high
yedir,VERB,inflectional,1,49,med
yegulik,NOUN,root,3,89,high
yem-xashak,NOUN,root,1,22,med
yengil,ADJ,root,3,3120,high
yengillashtir,VERB,inflectional,1,10,med
yengilroq,ADJ,inflectional,1,9,oov
yer,NOUN,root,1,989,high
yetarli,ADJ,derivational,2,29,med
yetuk,ADJ,root,1,15890,high
yeyish,VERB,inflectional,1,7,med
yig'ilish,NOUN,inflectional,1,6047,high
yig'la,VERB,derivational,1,11,med
yig'lash,NOUN,inflectional,2,404,high
yig'uvchi,NOUN,inflectional,1,440,high
yilqiboqar,NOUN,derivational,1,1,oov
yiqil,VERB,inflectional,1,261,high
yirik,ADJ,root,3,5658,high
yirtqich,ADJ,root,2,92,oov2
yod,NOUN,root,1,3808,high
yodla,VERB,derivational,1,9,med
yog'du,NOUN,root,1,142,high
yog'och,NOUN,root,1,138,high
yo'g'onlash,VERB,inflectional,1,10,med
yo'l,NOUN,root,1,41,med
yolg'iz,NOUN,root,1,4434,high
yolg'izlat,VERB,inflectional,1,12,med
yolg'izlik,NOUN,derivational,1,1,oov
yo'liqtir,VERB,inflectional,2,11,med
yo'llanma,NOUN,derivational,1,1915,high
yo'llar,NOUN,inflectional,2,6556,high
yolvor,VERB,root,3,34,med
yomon,ADJ,root,1,2278,oov2
yomonlash,NOUN,inflectional,1,1560,high
yomonlik,NOUN,derivational,1,389,high
yon tomon,NOUN,root,1,3,low
yo'nalish,NOUN,root,2,31050,high
yondashuv,NOUN,inflectional,1,3311,high
yong'in,NOUN,root,1,1608,high
yong'oq,NOUN,root,1,360,high
yoptir,VERB,inflectional,1,3,low
yoqilg'i,NOUN,root,3,876,high
yo'qotish,NOUN,inflectional,1,467,high
yordamchi,NOUN,derivational,1,136,high
yordamlash,VERB,inflectional,2,126,high
yo'riqnoma,NOUN,derivational,1,1915,high
yorqin,ADJ,root,2,624,high
yorug',ADJ,root,1,59,high
yorug'lik,NOUN,derivational,2,576,high
yosh,NOUN,root,1,545,high
yoshartir,VERB,inflectional,1,34,med
yoshlik,NOUN,derivational,4,1640,high
yotoqxona,NOUN,derivational,3,508,high
yotqiz,VERB,inflectional,1,33,med
yovuzlik,NOUN,derivational,1,216,high
yovvoyi,ADJ,root,1,92,high
yoyish,VERB,inflectional,1,37,med
yozdir,VERB,inflectional,1,19,med
yozuv,NOUN,inflectional,2,3087,high
yubor,VERB,root,2,1622,high
yugurdi,VERB,inflectional,1,11,med
yuksak,ADJ,root,2,8499,high
yuksalish,NOUN,inflectional,2,1037,high
yuksaltir,VERB,inflectional,1,3641,high
yumalat,VERB,inflectional,1,3,low
yumaloq,ADJ,root,1,61,high
yumshatish,NOUN,inflectional,1,49,med
yumshoq,ADJ,root,1,7,med
yumuq,ADJ,root,3,11,med
yupantir,VERB,inflectional,1,75,high
yupqa,ADJ,root,3,177,oov2
yupqalash,VERB,inflectional,1,10,med
yuqorilash,NOUN,inflectional,2,1337,high
yur,VERB,root,1,240,high
yurak,NOUN,root,1,129,high
yurt,NOUN,root,1,738,high
yurtdosh,NOUN,derivational,2,1597,high
yutqazish,NOUN,inflectional,2,1383,high
yuvintir,VERB,inflectional,1,8,med
yuz,NOUN,root,1,337,high
yuzaki,ADJ,root,1,30,med
yuzsizlik,NOUN,inflectional,2,4,low
zabon,NOUN,root,2,49,med
zaif,ADJ,root,1,718,high
zaiflashtir,VERB,inflectional,1,37,med
zakot,NOUN,root,1,2,low
zakovatli,ADJ,derivational,1,7,med
zambarak,NOUN,root,3,27,med
zamonaviy,ADJ,derivational,3,15890,high
zangori,ADJ,root,1,20,med
zanjabil,NOUN,root,2,9,med
zarar,NOUN,root,1,353,high
zararli,ADJ,derivational,4,12,med
zararsiz,ADJ,inflectional,5,10,med
zarg'aldoq,NOUN,root,1,39,med
zargarlik,NOUN,derivational,1,267,high
zarur,ADJ,root,1,23761,high
zarurat,NOUN,derivational,2,985,high
zaruriy,NOUN,inflectional,1,461,high
zavja,NOUN,root,1,37,med
zehnli,ADJ,derivational,1,1,low
zerikarli,ADJ,derivational,1,161,high
zichlik,NOUN,derivational,1,213,high
ziddiyat,NOUN,root,1,427,high
ziravor,NOUN,root,1,9,med
ziynatlantir,VERB,inflectional,2,1,low
ziyoratgoh,NOUN,derivational,1,489,high
ziyrak,ADJ,root,1,99,oov2
zobit,NOUN,root,1,2,low
zolim,ADJ,root,2,10,med
zoologiya,NOUN,root,1,141,high
zo'ravon,NOUN,derivational,1,1,low
zo'ravonlik,NOUN,derivational,2,370,high
zo'raytir,VERB,inflectional,2,2,low
zorlan,VERB,inflectional,1,24,med
zovur,NOUN,root,2,272,high
zukko,ADJ,root,1,29,med
zukkolik,NOUN,derivational,1,62,high
zulm,NOUN,root,1,720,high
zulmat,NOUN,root,1,124,high
zumrat,NOUN,root,1,163,oov2
zurriyot,NOUN,root,1,24,med
,,,2836,, |