Take a random sample of N languages from WALS.

sample_random(N, data = WALS)

Arguments

N

Sample size

data

Optionally, a data frame (e.g. the output of filter_WALS)

Value

A subset of the WALS data frame.

Details

Languages in data are sampled uniformly at random without replacement, and their representation in WALS is returned.

Examples

# Just a random random sample of 100 languages: random_WALS <- sample_random(100) # Random sample of 50 tonal languages (feature 13A has value 2 or 3): tonal_lges <- filter_WALS(feature_ID == "13A" & value_ID %in% 2:3) random_tonals <- sample_random(50, data=tonal_lges) # Random sample of 20 languages from the WALS 100-language sample: sample_random(20, sample_WALS_100())
#> combined_ID feature_ID #> 35 1A-prh 1A #> 37 1A-koa 1A #> 55 1A-apu 1A #> 73 1A-ond 1A #> 90 1A-ala 1A #> 146 1A-kse 1A #> 187 1A-kew 1A #> 220 1A-sup 1A #> 301 1A-tiw 1A #> 309 1A-kio 1A #> 327 1A-mar 1A #> 342 1A-kor 1A #> 360 1A-tuk 1A #> 384 1A-cha 1A #> 402 1A-wic 1A #> 407 1A-mrt 1A #> 429 1A-orh 1A #> 462 1A-hau 1A #> 532 1A-hin 1A #> 533 1A-abk 1A #> 569 10A-apu 10A #> 577 10A-sup 10A #> 596 10A-koa 10A #> 625 10A-hin 10A #> 628 10A-tuk 10A #> 637 10A-kor 10A #> 647 10A-prh 10A #> 656 10A-wic 10A #> 659 10A-mrt 10A #> 665 10A-abk 10A #> 680 10A-cha 10A #> 746 10A-ala 10A #> 761 10A-orh 10A #> 774 10A-hau 10A #> 783 10A-mar 10A #> 803 10A-tiw 10A #> 854 100A-kor 100A #> 860 100A-kse 100A #> 867 100A-sup 100A #> 895 100A-mrt 100A #> 922 100A-hau 100A #> 938 100A-tiw 100A #> 980 100A-tuk 100A #> 987 100A-ala 100A #> 1020 100A-orh 100A #> 1028 100A-prh 100A #> 1044 100A-mar 100A #> 1117 100A-hin 100A #> 1150 100A-cha 100A #> 1151 100A-abk 100A #> 1164 100A-wic 100A #> 1172 100A-kew 100A #> 1173 100A-koa 100A #> 1185 100A-ond 100A #> 1188 100A-apu 100A #> 1197 100A-kio 100A #> 1265 101A-sup 101A #> 1296 101A-kse 101A #> 1314 101A-kio 101A #> 1325 101A-wic 101A #> 1360 101A-ala 101A #> 1399 101A-tiw 101A #> 1444 101A-tuk 101A #> 1461 101A-orh 101A #> 1466 101A-koa 101A #> 1514 101A-ond 101A #> 1560 101A-kew 101A #> 1567 101A-apu 101A #> 1569 101A-mar 101A #> 1574 101A-abk 101A #> 1788 101A-hau 101A #> 1892 101A-kor 101A #> 1896 101A-mrt 101A #> 1943 102A-mrt 102A #> 1954 102A-kse 102A #> 1967 102A-kor 102A #> 1984 102A-sup 102A #> 2002 102A-hau 102A #> 2037 102A-orh 102A #> 2067 102A-hin 102A #> 2077 102A-cha 102A #> 2083 102A-kew 102A #> 2122 102A-kio 102A #> 2134 102A-tuk 102A #> 2136 102A-apu 102A #> 2150 102A-koa 102A #> 2158 102A-wic 102A #> 2159 102A-ala 102A #> 2164 102A-tiw 102A #> 2199 102A-prh 102A #> 2210 102A-abk 102A #> 2217 102A-mar 102A #> 2286 102A-ond 102A #> 2328 103A-sup 103A #> 2354 103A-kse 103A #> 2370 103A-mrt 103A #> 2392 103A-kor 103A #> 2397 103A-hau 103A #> 2413 103A-apu 103A #> 2457 103A-kew 103A #> 2478 103A-tuk 103A #> 2492 103A-ond 103A #> 2493 103A-hin 103A #> 2537 103A-ala 103A #> 2558 103A-cha 103A #> 2562 103A-prh 103A #> 2578 103A-tiw 103A #> 2591 103A-abk 103A #> 2599 103A-orh 103A #> 2656 103A-kio 103A #> 2664 103A-koa 103A #> 2669 103A-wic 103A #> 2684 103A-mar 103A #> 2697 104A-kew 104A #> 2743 104A-orh 104A #> 2757 104A-kse 104A #> 2764 104A-kor 104A #> 2769 104A-sup 104A #> 2777 104A-cha 104A #> 2778 104A-mrt 104A #> 2803 104A-hin 104A #> 2851 104A-kio 104A #> 2873 104A-hau 104A #> 2897 104A-wic 104A #> 2912 104A-ond 104A #> 2937 104A-apu 104A #> 2956 104A-ala 104A #> 2965 104A-tuk 104A #> 2967 104A-prh 104A #> 3001 104A-abk 104A #> 3036 104A-koa 104A #> 3049 104A-tiw 104A #> 3061 104A-mar 104A #> 3102 105A-sup 105A #> 3105 105A-koa 105A #> 3150 105A-abk 105A #> 3178 105A-hin 105A #> 3213 105A-kor 105A #> 3259 105A-orh 105A #> 3317 105A-tuk 105A #> 3330 105A-prh 105A #> 3355 105A-mrt 105A #> 3364 105A-mar 105A #> 3384 105A-tiw 105A #> 3395 105A-cha 105A #> 3406 105A-ala 105A #> 3410 105A-hau 105A #> 3450 105A-kse 105A #> 3453 105A-apu 105A #> 3460 106A-wic 106A #> 3467 106A-prh 106A #> 3468 106A-kew 106A #> 3495 106A-orh 106A #> 3498 106A-cha 106A #> 3501 106A-kor 106A #> 3505 106A-hau 106A #> 3506 106A-koa 106A #> 3511 106A-abk 106A #> 3513 106A-kse 106A #> 3515 106A-apu 106A #> 3530 106A-hin 106A #> 3537 106A-tiw 106A #> 3555 106A-mrt 106A #> 3559 106A-tuk 106A #> 3590 106A-ond 106A #> 3607 106A-mar 106A #> 3622 106A-sup 106A #> 3626 106A-kio 106A #> 3634 107A-mar 107A #> 3645 107A-koa 107A #> 3679 107A-kor 107A #> 3714 107A-hau 107A #> 3715 107A-hin 107A #> 3731 107A-cha 107A #> 3747 107A-kse 107A #> 3748 107A-mrt 107A #> 3784 107A-apu 107A #> 3787 107A-tuk 107A #> 3804 107A-tiw 107A #> 3811 107A-wic 107A #> 3813 107A-kew 107A #> 3842 107A-ond 107A #> 3843 107A-kio 107A #> 3844 107A-abk 107A #> 3921 107A-prh 107A #> 3930 107A-ala 107A #> 3933 107A-sup 107A #> 3966 107A-orh 107A #> 4002 108A-kse 108A #> 4007 108A-kio 108A #> 4040 108A-cha 108A #> 4055 108A-tiw 108A #> 4057 108A-ala 108A #> 4082 108A-tuk 108A #> 4083 108A-hin 108A #> 4087 108A-apu 108A #> 4088 108A-mrt 108A #> 4097 108A-mar 108A #> 4107 108A-hau 108A #> 4131 108A-koa 108A #> 4135 108A-prh 108A #> 4150 108A-kew 108A #> 4160 108A-sup 108A #> 4167 108A-wic 108A #> 4178 108A-orh 108A #> 4182 108A-abk 108A #> 4186 108A-kor 108A #> 4187 108A-ond 108A #> 4204 108B-kse 108B #> 4232 108B-kio 108B #> 4233 108B-cha 108B #> 4242 108B-wic 108B #> 4243 108B-apu 108B #> 4249 108B-abk 108B #> 4251 108B-ala 108B #> 4264 108B-orh 108B #> 4283 108B-tuk 108B #> 4284 108B-mrt 108B #> 4287 108B-tiw 108B #> 4303 108B-mar 108B #> 4305 108B-prh 108B #> 4326 108B-ond 108B #> 4340 108B-sup 108B #> 4355 108B-kew 108B #> 4361 108B-hin 108B #> 4362 108B-kor 108B #> 4369 108B-hau 108B #> 4376 108B-koa 108B #> 4389 109A-ala 109A #> 4392 109A-cha 109A #> 4396 109A-kew 109A #> 4414 109A-wic 109A #> 4430 109A-tuk 109A #> 4431 109A-mar 109A #> 4436 109A-ond 109A #> 4447 109A-hau 109A #> 4451 109A-abk 109A #> 4457 109A-tiw 109A #> 4461 109A-kse 109A #> 4476 109A-apu 109A #> 4484 109A-orh 109A #> 4490 109A-hin 109A #> 4502 109A-prh 109A #> 4511 109A-koa 109A #> 4527 109A-kor 109A #> 4544 109A-kio 109A #> 4557 109A-sup 109A #> 4562 109A-mrt 109A #> 4568 109B-abk 109B #> 4569 109B-tiw 109B #> 4574 109B-wic 109B #> 4579 109B-kse 109B #> 4596 109B-mar 109B #> 4598 109B-hau 109B #> 4603 109B-tuk 109B #> 4604 109B-ond 109B #> 4612 109B-kew 109B #> 4620 109B-ala 109B #> 4632 109B-cha 109B #> 4656 109B-prh 109B #> 4661 109B-kor 109B #> 4664 109B-sup 109B #> 4668 109B-apu 109B #> 4669 109B-mrt 109B #> 4678 109B-koa 109B #> 4729 109B-orh 109B #> 4730 109B-hin 109B #> 4743 109B-kio 109B #> 4764 11A-hin 11A #> 4794 11A-abk 11A #> 4799 11A-hau 11A #> 4803 11A-kse 11A #> 4843 11A-tuk 11A #> 4885 11A-kew 11A #> 4894 11A-apu 11A #> 4940 11A-tiw 11A #> 4987 11A-prh 11A #> 5000 11A-cha 11A #> 5031 11A-ala 11A #> 5041 11A-koa 11A #> 5065 11A-ond 11A #> 5078 11A-kor 11A #> 5089 11A-mar 11A #> 5133 11A-kio 11A #> 5210 11A-wic 11A #> 5226 11A-mrt 11A #> 5266 11A-orh 11A #> 5268 11A-sup 11A #> 5311 110A-hau 110A #> 5351 110A-prh 110A #> 5354 110A-cha 110A #> 5359 110A-kor 110A #> 5361 110A-mrt 110A #> 5364 110A-abk 110A #> 5395 110A-orh 110A #> 5402 110A-wic 110A #> 5408 110A-ond 110A #> 5409 110A-hin 110A #> 5413 110A-tuk 110A #> 5421 110A-kse 110A #> 5422 110A-sup 110A #> 5483 111A-apu 111A #> 5514 111A-tuk 111A #> 5550 111A-hin 111A #> 5551 111A-abk 111A #> 5553 111A-kio 111A #> 5566 111A-prh 111A #> 5571 111A-wic 111A #> 5579 111A-cha 111A #> 5592 111A-sup 111A #> 5593 111A-kor 111A #> 5597 111A-tiw 111A #> 5598 111A-kew 111A #> 5617 111A-mrt 111A #> 5622 111A-hau 111A #> 5640 111A-ond 111A #> 5675 111A-orh 111A #> 5721 111A-mar 111A #> 5724 111A-ala 111A #> 5731 111A-koa 111A #> 5732 111A-kse 111A #> 5842 112A-abk 112A #> 5973 112A-kew 112A #> 6054 112A-prh 112A #> 6125 112A-koa 112A #> 6194 112A-sup 112A #> 6197 112A-hin 112A #> 6256 112A-kor 112A #> 6300 112A-apu 112A #> 6304 112A-cha 112A #> 6432 112A-wic 112A #> 6465 112A-hau 112A #> 6511 112A-ond 112A #> 6525 112A-kse 112A #> 6586 112A-mrt 112A #> 6615 112A-ala 112A #> 6622 112A-tiw 112A #> 6810 112A-kio 112A #> 6863 112A-mar 112A #> 6881 112A-orh 112A #> 6900 113A-cha 113A #> 6936 113A-prh 113A #> 6942 113A-apu 113A #> 6972 113A-mar 113A #> 6978 113A-mrt 113A #> 6987 113A-tuk 113A #> 6998 113A-kew 113A #> 7063 113A-ond 113A #> 7069 113A-hau 113A #> 7070 113A-kse 113A #> 7084 113A-tiw 113A #> 7087 113A-hin 113A #> 7090 113A-kor 113A #> 7097 113A-koa 113A #> 7103 113A-ala 113A #> 7153 113A-wic 113A #> 7173 113A-kio 113A #> 7181 113A-abk 113A #> 7183 113A-sup 113A #> 7184 113A-orh 113A #> 7245 114A-tiw 114A #> 7250 114A-ala 114A #> 7254 114A-hau 114A #> 7266 114A-abk 114A #> 7267 114A-wic 114A #> 7271 114A-kio 114A #> 7298 114A-kse 114A #> 7300 114A-ond 114A #> 7308 114A-hin 114A #> 7321 114A-koa 114A #> 7336 114A-kor 114A #> 7352 114A-sup 114A #> 7355 114A-orh 114A #> 7387 114A-mrt 114A #> 7399 114A-prh 114A #> 7421 114A-mar 114A #> 7451 114A-kew 114A #> 7461 114A-apu 114A #> 7463 114A-cha 114A #> 7472 114A-tuk 114A #> 7493 115A-kor 115A #> 7505 115A-hau 115A #> 7514 115A-abk 115A #> 7522 115A-kse 115A #> 7535 115A-koa 115A #> 7568 115A-sup 115A #> 7577 115A-kio 115A #> 7631 115A-orh 115A #> 7658 115A-hin 115A #> 7661 115A-tiw 115A #> 7667 115A-cha 115A #> 7706 116A-tuk 116A #> 7711 116A-sup 116A #> 7770 116A-kse 116A #> 7798 116A-wic 116A #> 7802 116A-hin 116A #> 7964 116A-kio 116A #> 7974 116A-kew 116A #> 8084 116A-tiw 116A #> 8144 116A-ond 116A #> 8156 116A-cha 116A #> 8246 116A-hau 116A #> 8313 116A-mar 116A #> 8316 116A-kor 116A #> 8387 116A-abk 116A #> 8454 116A-prh 116A #> 8538 116A-orh 116A #> 8561 116A-mrt 116A #> 8572 116A-ala 116A #> 8648 116A-apu 116A #> 8650 117A-kor 117A #> 8659 117A-wic 117A #> 8688 117A-hin 117A #> 8743 117A-koa 117A #> 8746 117A-tiw 117A #> 8777 117A-hau 117A #> 8779 117A-sup 117A #> 8793 117A-ala 117A #> 8851 117A-abk 117A #> 8853 117A-orh 117A #> 8856 117A-prh 117A #> 8935 118A-tuk 118A #> 8936 118A-cha 118A #> 8962 118A-kio 118A #> 8998 118A-ond 118A #> 9014 118A-abk 118A #> 9054 118A-tiw 118A #> 9057 118A-hin 118A #> 9099 118A-hau 118A #> 9157 118A-kew 118A #> 9176 118A-sup 118A #> 9233 118A-wic 118A #> 9238 118A-kor 118A #> 9245 118A-orh 118A #> 9248 118A-ala 118A #> 9292 119A-tiw 119A #> 9300 119A-tuk 119A #> 9330 119A-ala 119A #> 9335 119A-kio 119A #> 9357 119A-sup 119A #> 9371 119A-hau 119A #> 9427 119A-abk 119A #> 9444 119A-ond 119A #> 9450 119A-kor 119A #> 9464 119A-kew 119A #> 9512 119A-cha 119A #> 9564 119A-hin 119A #> 9593 119A-orh 119A #> 9609 119A-wic 119A #> 9683 12A-kew 12A #> 9700 12A-tuk 12A #> 9704 12A-apu 12A #> 9722 12A-prh 12A #> 9769 12A-mrt 12A #> 9860 12A-tiw 12A #> 9878 12A-cha 12A #> 9886 12A-orh 12A #> 9895 12A-kio 12A #> 9930 12A-sup 12A #> 9938 12A-kor 12A #> 9955 12A-koa 12A #> 9980 12A-hau 12A #> 9999 12A-hin 12A #> 10016 12A-mar 12A #> 10077 12A-abk 12A #> 10108 12A-ond 12A #> 10128 12A-ala 12A #> 10154 120A-hau 120A #> 10163 120A-kor 120A #> 10168 120A-cha 120A #> 10172 120A-wic 120A #> 10201 120A-sup 120A #> 10269 120A-ala 120A #> 10276 120A-ond 120A #> 10291 120A-hin 120A #> 10296 120A-kio 120A #> 10349 120A-abk 120A #> 10385 120A-orh 120A #> 10398 120A-kew 120A #> 10478 120A-tiw 120A #> 10482 120A-tuk 120A #> 10538 121A-hin 121A #> 10578 121A-kor 121A #> 10637 121A-hau 121A #> 10659 121A-prh 121A #> 10719 122A-kio 122A #> 10723 122A-mar 122A #> 10724 122A-prh 122A #> 10725 122A-koa 122A #> 10726 122A-sup 122A #> 10730 122A-hin 122A #> 10758 122A-kse 122A #> 10759 122A-wic 122A #> 10763 122A-ala 122A #> 10766 122A-orh 122A #> 10767 122A-abk 122A #> 10777 122A-cha 122A #> 10794 122A-mrt 122A #> 10806 122A-tuk 122A #> 10822 122A-hau 122A #> 10859 122A-kor 122A #> 10885 123A-hin 123A #> 10892 123A-sup 123A #> 10908 123A-hau 123A #> 10918 123A-kor 123A #> 10928 123A-ala 123A #> 10936 123A-tuk 123A #> 10942 123A-abk 123A #> 10950 123A-orh 123A #> 10967 123A-kse 123A #> 10968 123A-cha 123A #> 10969 123A-prh 123A #> 10972 123A-mrt 123A #> 10987 124A-mrt 124A #> 11020 124A-kor 124A #> 11049 124A-cha 124A #> 11072 124A-sup 124A #> 11088 124A-hin 124A #> 11126 124A-kse 124A #> 11131 124A-hau 124A #> 11156 124A-mar 124A #> 11161 124A-abk 124A #> 11206 124A-orh 124A #> 11208 124A-tuk 124A #> 11228 124A-apu 124A #> 11251 124A-prh 124A #> 11287 125A-kor 125A #> 11300 125A-sup 125A #> 11301 125A-abk 125A #> 11318 125A-prh 125A #> 11321 125A-tuk 125A #> 11350 125A-hau 125A #> 11372 125A-orh 125A #> 11396 125A-mrt 125A #> 11398 125A-kew 125A #> 11401 125A-kio 125A #> 11424 125A-ala 125A #> 11435 126A-apu 126A #> 11439 126A-prh 126A #> 11446 126A-orh 126A #> 11456 126A-cha 126A #> 11469 126A-kew 126A #> 11482 126A-tiw 126A #> 11499 126A-kor 126A #> 11516 126A-hau 126A #> 11520 126A-sup 126A #> 11526 126A-tuk 126A #> 11535 126A-hin 126A #> 11565 126A-abk 126A #> 11570 126A-mar 126A #> 11586 126A-kio 126A #> 11596 126A-mrt 126A #> 11598 126A-ala 126A #> 11619 127A-tuk 127A #> 11620 127A-cha 127A #> 11640 127A-hau 127A #> 11648 127A-apu 127A #> 11650 127A-tiw 127A #> 11655 127A-kor 127A #> 11666 127A-sup 127A #> 11679 127A-orh 127A #> 11690 127A-prh 127A #> 11695 127A-kew 127A #> 11712 127A-kio 127A #> 11717 127A-hin 127A #> 11733 127A-mar 127A #> 11749 127A-ala 127A #> 11751 127A-abk 127A #> 11762 127A-mrt 127A #> 11792 128A-tuk 128A #> 11793 128A-hin 128A #> 11802 128A-kew 128A #> 11804 128A-kio 128A #> 11828 128A-sup 128A #> 11849 128A-kor 128A #> 11864 128A-apu 128A #> 11866 128A-prh 128A #> 11891 128A-abk 128A #> 11900 128A-mar 128A #> 11915 128A-mrt 128A #> 11920 129A-kio 129A #> 12050 129A-hau 129A #> 12060 129A-cha 129A #> 12168 129A-mrt 129A #> 12178 129A-wic 129A #> 12209 129A-ond 129A #> 12231 129A-koa 129A #> 12369 129A-abk 129A #> 12425 129A-tiw 129A #> 12442 129A-kew 129A #> 12531 129A-kor 129A #> 12542 13A-ala 13A #> 12564 13A-cha 13A #> 12577 13A-wic 13A #> 12589 13A-apu 13A #> 12615 13A-kor 13A #> 12644 13A-tuk 13A #> 12699 13A-tiw 13A #> 12744 13A-hin 13A #> 12769 13A-abk 13A #> 12770 13A-mrt 13A #> 12793 13A-mar 13A #> 12872 13A-hau 13A #> 12899 13A-ond 13A #> 12920 13A-prh 13A #> 12946 13A-kew 13A #> 12961 13A-kio 13A #> 12996 13A-sup 13A #> 13000 13A-koa 13A #> 13050 13A-orh 13A #> 13069 130A-ond 130A #> 13202 130A-hau 130A #> 13208 130A-kew 130A #> 13275 130A-koa 130A #> 13328 130A-kio 130A #> 13355 130A-kor 130A #> 13556 130A-mrt 130A #> 13576 130A-abk 130A #> 13602 130A-wic 130A #> 13603 130A-cha 130A #> 13707 130B-ond 130B #> 13735 131A-hau 131A #> 13753 131A-koa 131A #> 13759 131A-tuk 131A #> 13802 131A-orh 131A #> 13811 131A-kse 131A #> 13820 131A-cha 131A #> 13821 131A-ond 131A #> 13824 131A-kor 131A #> 13841 131A-hin 131A #> 13868 131A-abk 131A #> 13886 131A-ala 131A #> 13896 131A-sup 131A #> 13906 131A-prh 131A #> 13913 131A-mrt 131A #> 13939 132A-prh 132A #> 14030 132A-kor 132A #> 14049 133A-prh 133A #> 14158 133A-kor 133A #> 14181 134A-kor 134A #> 14258 134A-prh 134A #> 14346 135A-kor 135A #> 14384 135A-prh 135A #> 14415 136A-kse 136A #> 14426 136A-cha 136A #> 14431 136A-orh 136A #> 14466 136A-kor 136A #> 14479 136A-kio 136A #> 14487 136A-mar 136A #> 14493 136A-tiw 136A #> 14500 136A-prh 136A #> 14520 136A-sup 136A #> 14533 136A-tuk 136A #> 14534 136A-koa 136A #> 14540 136A-ond 136A #> 14556 136A-wic 136A #> 14557 136A-abk 136A #> 14565 136A-mrt 136A #> 14568 136A-hau 136A #> 14569 136A-ala 136A #> 14597 136A-kew 136A #> 14599 136A-apu 136A #> 14616 136A-hin 136A #> 14631 136B-cha 136B #> 14647 136B-tuk 136B #> 14648 136B-wic 136B #> 14650 136B-ala 136B #> 14655 136B-koa 136B #> 14658 136B-ond 136B #> 14665 136B-kse 136B #> 14678 136B-hau 136B #> 14679 136B-abk 136B #> 14681 136B-apu 136B #> 14683 136B-mrt 136B #> 14712 136B-mar 136B #> 14726 136B-tiw 136B #> 14743 136B-orh 136B #> 14756 136B-kor 136B #> 14769 136B-kio 136B #> 14790 136B-prh 136B #> 14797 136B-kew 136B #> 14827 136B-hin 136B #> 14860 136B-sup 136B #> 14865 137A-tiw 137A #> 14903 137A-mar 137A #> 14906 137A-cha 137A #> 14920 137A-kse 137A #> 14926 137A-koa 137A #> 14931 137A-orh 137A #> 14955 137A-ond 137A #> 14957 137A-apu 137A #> 14981 137A-abk 137A #> 14982 137A-prh 137A #> 14994 137A-wic 137A #> 14999 137A-tuk 137A #> 15014 137A-mrt 137A #> 15039 137A-kew 137A #> 15041 137A-ala 137A #> 15045 137A-hau 137A #> 15047 137A-hin 137A #> 15049 137A-kor 137A #> 15059 137A-kio 137A #> 15061 137A-sup 137A #> 15092 137B-mrt 137B #> 15108 137B-kor 137B #> 15116 137B-tiw 137B #> 15118 137B-ala 137B #> 15120 137B-orh 137B #> 15150 137B-kse 137B #> 15151 137B-kew 137B #> 15161 137B-hau 137B #> 15173 137B-tuk 137B #> 15174 137B-ond 137B #> 15204 137B-prh 137B #> 15209 137B-wic 137B #> 15210 137B-hin 137B #> 15237 137B-koa 137B #> 15243 137B-abk 137B #> 15249 137B-apu 137B #> 15253 137B-kio 137B #> 15291 137B-cha 137B #> 15301 137B-mar 137B #> 15306 137B-sup 137B #> 15327 138A-orh 138A #> 15368 138A-hin 138A #> 15404 138A-hau 138A #> 15405 138A-kor 138A #> 15417 138A-cha 138A #> 15530 138A-kse 138A #> 15538 138A-tiw 138A #> 15619 14A-wic 14A #> 15631 14A-kew 14A #> 15643 14A-ala 14A #> 15644 14A-hin 14A #> 15668 14A-koa 14A #> 15671 14A-prh 14A #> 15710 14A-apu 14A #> 15742 14A-cha 14A #> 15758 14A-abk 14A #> 15837 14A-sup 14A #> 15894 14A-mrt 14A #> 15976 14A-ond 14A #> 15996 14A-tuk 14A #> 16024 14A-tiw 14A #> 16061 14A-mar 14A #> 16173 142A-hin 142A #> 16187 142A-kor 142A #> 16216 142A-hau 142A #> 16235 142A-tuk 142A #> 16264 142A-prh 142A #> 16331 143A-hin 143A #> 16350 143A-tiw 143A #> 16391 143A-apu 143A #> 16477 143A-tuk 143A #> 16509 143A-kse 143A #> 16512 143A-mrt 143A #> 16616 143A-ala 143A #> 16679 143A-cha 143A #> 16780 143A-wic 143A #> 16781 143A-kor 143A #> 16812 143A-abk 143A #> 16826 143A-mar 143A #> 16898 143A-orh 143A #> 16923 143A-kio 143A #> 16943 143A-hau 143A #> 16953 143A-sup 143A #> 17008 143A-ond 143A #> 17283 143A-kew 143A #> 17396 143A-koa 143A #> 17510 143A-prh 143A #> 17672 143B-kio 143B #> 17687 143B-mar 143B #> 17711 143B-orh 143B #> 17719 143C-hau 143C #> 17733 143C-ond 143C #> 17761 143C-sup 143C #> 17840 143E-mrt 143E #> 17848 143E-hin 143E #> 17885 143E-apu 143E #> 17920 143E-ala 143E #> 17934 143E-hau 143E #> 17948 143E-kor 143E #> 17974 143E-kse 143E #> 17994 143E-wic 143E #> 18000 143E-kio 143E #> 18022 143E-sup 143E #> 18232 143E-tiw 143E #> 18278 143E-cha 143E #> 18416 143E-tuk 143E #> 18514 143E-abk 143E #> 18570 143E-orh 143E #> 18627 143E-kew 143E #> 18630 143E-mar 143E #> 18717 143E-ond 143E #> 18885 143E-koa 143E #> 18922 143E-prh 143E #> 19221 143F-sup 143F #> 19281 143F-hau 143F #> 19425 143F-prh 143F #> 19472 143F-mar 143F #> 19476 143F-kio 143F #> 19613 143F-abk 143F #> 19699 143F-koa 143F #> 19758 143F-tuk 143F #> 19776 143F-kse 143F #> 19779 143F-kor 143F #> 19903 143F-hin 143F #> 19944 143F-kew 143F #> 20079 143F-cha 143F #> 20105 143F-mrt 143F #> 20152 143F-ala 143F #> 20178 143F-ond 143F #> 20314 143F-apu 143F #> 20379 143F-tiw 143F #> 20428 143F-wic 143F #> 20436 143F-orh 143F #> 20457 143G-orh 143G #> 20465 143G-tuk 143G #> 20641 143G-kor 143G #> 20671 143G-kew 143G #> 20673 143G-mrt 143G #> 20695 143G-kio 143G #> 20764 143G-sup 143G #> 20798 143G-prh 143G #> 20957 143G-ala 143G #> 20980 143G-hin 143G #> 21074 143G-tiw 143G #> 21138 143G-abk 143G #> 21255 143G-wic 143G #> 21291 143G-hau 143G #> 21331 143G-koa 143G #> 21539 143G-cha 143G #> 21637 143G-mar 143G #> 21657 143G-apu 143G #> 21660 143G-kse 143G #> 21684 143G-ond 143G #> 21794 144A-tuk 144A #> 21842 144A-apu 144A #> 21854 144A-wic 144A #> 21917 144A-kio 144A #> 21928 144A-mar 144A #> 21983 144A-orh 144A #> 22022 144A-sup 144A #> 22047 144A-hau 144A #> 22123 144A-mrt 144A #> 22178 144A-tiw 144A #> 22220 144A-prh 144A #> 22284 144A-kew 144A #> 22315 144A-abk 144A #> 22451 144A-koa 144A #> 22621 144A-ond 144A #> 22785 144A-kse 144A #> 22798 144A-hin 144A #> 22829 144A-kor 144A #> 22856 144A-ala 144A #> 22936 144A-cha 144A #> 22968 144B-kio 144B #> 22997 144B-wic 144B #> 23024 144B-kse 144B #> 23028 144B-tiw 144B #> 23034 144B-ala 144B #> 23059 144B-kor 144B #> 23112 144B-ond 144B #> 23115 144B-hin 144B #> 23125 144B-mrt 144B #> 23243 144B-hau 144B #> 23275 144B-cha 144B #> 23342 144B-tuk 144B #> 23448 144B-sup 144B #> 23649 144D-apu 144D #> 23777 144D-hau 144D #> 23822 144D-mrt 144D #> 23861 144D-tiw 144D #> 24090 144E-apu 144E #> 24175 144G-hau 144G #> 24212 144H-apu 144H #> 24272 144H-hau 144H #> 24297 144H-tiw 144H #> 24549 144H-mrt 144H #> 24640 144I-apu 144I #> 24661 144I-mrt 144I #> 24664 144I-tiw 144I #> 24838 144I-hau 144I #> 25213 144J-hau 144J #> 25390 144J-mrt 144J #> 25447 144J-tiw 144J #> 25475 144J-apu 144J #> 25620 144K-hau 144K #> 25685 144K-apu 144K #> 25704 144K-tiw 144K #> 25874 144K-mrt 144K #> 26034 144L-wic 144L #> 26054 144L-abk 144L #> 26064 144L-kio 144L #> 26068 144L-orh 144L #> 26084 144L-mar 144L #> 26111 144L-sup 144L #> 26167 144L-kse 144L #> 26235 144L-hin 144L #> 26240 144L-kor 144L #> 26253 144L-ala 144L #> 26366 144L-kew 144L #> 26416 144L-koa 144L #> 26464 144L-prh 144L #> 26519 144M-wic 144M #> 26556 144M-abk 144M #> 26588 144N-kio 144N #> 26594 144N-mar 144N #> 26606 144N-orh 144N #> 26624 144O-sup 144O #> 26651 144P-wic 144P #> 26659 144P-kio 144P #> 26669 144P-hin 144P #> 26720 144P-prh 144P #> 26726 144P-kor 144P #> 26740 144P-ala 144P #> 26797 144P-orh 144P #> 26803 144P-kse 144P #> 26813 144P-kew 144P #> 26853 144P-koa 144P #> 26971 144P-abk 144P #> 26996 144P-mar 144P #> 26997 144P-sup 144P #> 27066 144Q-kse 144Q #> 27086 144Q-sup 144Q #> 27103 144Q-orh 144Q #> 27114 144Q-kew 144Q #> 27115 144Q-abk 144Q #> 27231 144Q-hin 144Q #> 27232 144Q-koa 144Q #> 27283 144Q-kor 144Q #> 27346 144Q-ala 144Q #> 27401 144Q-kio 144Q #> 27407 144Q-mar 144Q #> 27416 144Q-wic 144Q #> 27431 144Q-prh 144Q #> 27471 144R-ala 144R #> 27481 144R-hin 144R #> 27521 144R-kor 144R #> 27546 144R-abk 144R #> 27564 144R-kew 144R #> 27607 144R-orh 144R #> 27625 144R-mar 144R #> 27703 144R-kio 144R #> 27729 144R-wic 144R #> 27746 144R-koa 144R #> 27751 144R-prh 144R #> 27788 144R-sup 144R #> 27824 144R-kse 144R #> 27941 144S-ala 144S #> 27942 144S-wic 144S #> 27958 144S-kew 144S #> 28006 144S-orh 144S #> 28050 144S-kor 144S #> 28064 144S-kse 144S #> 28103 144S-hin 144S #> 28215 144S-prh 144S #> 28226 144S-koa 144S #> 28247 144S-abk 144S #> 28293 144S-sup 144S #> 28317 144S-mar 144S #> 28323 144S-kio 144S #> 28388 144T-cha 144T #> 28444 144T-ond 144T #> 28466 144T-tuk 144T #> 28513 144U-ond 144U #> 28577 144V-ond 144V #> 28625 144V-tuk 144V #> 28628 144V-cha 144V #> 28694 144W-tuk 144W #> 28720 144W-ond 144W #> 28764 144W-cha 144W #> 28880 144X-tuk 144X #> 28962 144X-cha 144X #> 28966 144X-ond 144X #> 28993 144Y-wic 144Y #> 29047 15A-koa 15A #> 29058 15A-apu 15A #> 29100 15A-prh 15A #> 29114 15A-cha 15A #> 29115 15A-hin 15A #> 29134 15A-wic 15A #> 29183 15A-ala 15A #> 29188 15A-abk 15A #> 29213 15A-kew 15A #> 29242 15A-tiw 15A #> 29297 15A-mrt 15A #> 29308 15A-ond 15A #> 29370 15A-mar 15A #> 29405 15A-sup 15A #> 29416 15A-tuk 15A #> 29553 16A-ond 16A #> 29589 16A-mar 16A #> 29701 16A-tuk 16A #> 29705 16A-tiw 16A #> 29742 16A-sup 16A #> 29759 16A-mrt 16A #> 29785 16A-koa 16A #> 29804 16A-apu 16A #> 29836 16A-cha 16A #> 29865 16A-hin 16A #> 29904 16A-ala 16A #> 29906 16A-wic 16A #> 29926 16A-abk 16A #> 29945 16A-kew 16A #> 29987 16A-prh 16A #> 30011 17A-apu 17A #> 30030 17A-tiw 17A #> 30095 17A-mrt 17A #> 30123 17A-tuk 17A #> 30180 17A-wic 17A #> 30192 17A-cha 17A #> 30239 17A-ond 17A #> 30279 17A-kew 17A #> 30299 17A-mar 17A #> 30497 18A-koa 18A #> 30502 18A-cha 18A #> 30548 18A-kse 18A #> 30582 18A-tiw 18A #> 30610 18A-kew 18A #> 30621 18A-kor 18A #> 30655 18A-hau 18A #> 30662 18A-hin 18A #> 30669 18A-ala 18A #> 30670 18A-mar 18A #> 30718 18A-sup 18A #> 30731 18A-kio 18A #> 30744 18A-orh 18A #> 30756 18A-tuk 18A #> 30787 18A-apu 18A #> 30796 18A-abk 18A #> 30821 18A-wic 18A #> 30822 18A-ond 18A #> 30856 18A-mrt 18A #> 30877 18A-prh 18A #> 30914 19A-prh 19A #> 30915 19A-orh 19A #> 30961 19A-kew 19A #> 30968 19A-hau 19A #> 30974 19A-ond 19A #> 30986 19A-sup 19A #> 31014 19A-mrt 19A #> 31021 19A-kse 19A #> 31041 19A-ala 19A #> 31062 19A-kio 19A #> 31091 19A-koa 19A #> 31161 19A-hin 19A #> 31219 19A-cha 19A #> 31243 19A-apu 19A #> 31246 19A-tiw 19A #> 31311 19A-wic 19A #> 31317 19A-kor 19A #> 31329 19A-tuk 19A #> 31388 19A-abk 19A #> 31431 19A-mar 19A #> 31489 2A-ond 2A #> 31490 2A-koa 2A #> 31527 2A-wic 2A #> 31532 2A-abk 2A #> 31539 2A-prh 2A #> 31540 2A-tiw 2A #> 31543 2A-mrt 2A #> 31564 2A-kse 2A #> 31574 2A-mar 2A #> 31633 2A-kio 2A #> 31659 2A-hin 2A #> 31665 2A-hau 2A #> 31675 2A-cha 2A #> 31676 2A-kew 2A #> 31716 2A-orh 2A #> 31763 2A-apu 2A #> 31783 2A-tuk 2A #> 31877 2A-sup 2A #> 31907 2A-ala 2A #> 31917 2A-kor 2A #> 32031 20A-kor 20A #> 32036 20A-koa 20A #> 32039 20A-ond 20A #> 32062 20A-mar 20A #> 32071 20A-mrt 20A #> 32074 20A-hin 20A #> 32075 20A-tiw 20A #> 32077 20A-ala 20A #> 32097 20A-kew 20A #> 32105 20A-apu 20A #> 32109 20A-abk 20A #> 32116 20A-wic 20A #> 32126 20A-kio 20A #> 32129 20A-orh 20A #> 32140 20A-prh 20A #> 32142 20A-sup 20A #> 32148 20A-hau 20A #> 32179 20A-tuk 20A #> 32180 20A-cha 20A #> 32181 21A-hin 21A #> 32205 21A-orh 21A #> 32213 21A-kor 21A #> 32219 21A-mar 21A #> 32223 21A-koa 21A #> 32226 21A-kew 21A #> 32227 21A-mrt 21A #> 32251 21A-wic 21A #> 32265 21A-tuk 21A #> 32286 21A-prh 21A #> 32290 21A-apu 21A #> 32297 21A-kio 21A #> 32306 21A-ond 21A #> 32310 21A-tiw 21A #> 32319 21A-abk 21A #> 32324 21A-sup 21A #> 32325 21A-cha 21A #> 32336 21A-ala 21A #> 32341 21A-hau 21A #> 32366 21B-wic 21B #> 32368 21B-mrt 21B #> 32405 21B-kio 21B #> 32415 21B-prh 21B #> 32417 21B-mar 21B #> 32422 21B-abk 21B #> 32430 21B-sup 21B #> 32445 21B-ala 21B #> 32447 21B-koa 21B #> 32450 21B-orh 21B #> 32455 21B-ond 21B #> 32456 21B-hau 21B #> 32457 21B-kor 21B #> 32467 21B-apu 21B #> 32470 21B-tuk 21B #> 32472 21B-hin 21B #> 32473 21B-cha 21B #> 32492 21B-kew 21B #> 32499 21B-tiw 21B #> 32513 22A-hin 22A #> 32529 22A-mrt 22A #> 32531 22A-sup 22A #> 32571 22A-tiw 22A #> 32585 22A-hau 22A #> 32586 22A-apu 22A #> 32587 22A-kor 22A #> 32591 22A-cha 22A #> 32602 22A-kew 22A #> 32606 22A-tuk 22A #> 32610 22A-orh 22A #> 32617 22A-prh 22A #> 32629 22A-kio 22A #> 32632 22A-ond 22A #> 32633 22A-mar 22A #> 32643 22A-abk 22A #> 32644 22A-ala 22A #> 32646 22A-koa 22A #> 32647 22A-wic 22A #> 32657 23A-ala 23A #> 32659 23A-abk 23A #> 32661 23A-wic 23A #> 32670 23A-kio 23A #> 32680 23A-tiw 23A #> 32698 23A-apu 23A #> 32702 23A-ond 23A #> 32721 23A-kew 23A #> 32727 23A-kor 23A #> 32764 23A-cha 23A #> 32774 23A-mrt 23A #> 32791 23A-hau 23A #> 32795 23A-hin 23A #> 32809 23A-koa 23A #> 32824 23A-mar 23A #> 32845 23A-prh 23A #> 32849 23A-sup 23A #> 32853 23A-tuk 23A #> 32861 23A-orh 23A #> 32893 24A-apu 24A #> 32910 24A-wic 24A #> 32913 24A-mar 24A #> 32919 24A-koa 24A #> 32935 24A-cha 24A #> 32942 24A-abk 24A #> 32950 24A-kio 24A #> 32959 24A-ond 24A #> 32961 24A-sup 24A #> 32990 24A-tuk 24A #> 33020 24A-kew 24A #> 33021 24A-ala 24A #> 33025 24A-hau 24A #> 33045 24A-mrt 24A #> 33054 24A-hin 24A #> 33055 24A-kor 24A #> 33104 24A-tiw 24A #> 33106 24A-prh 24A #> 33117 24A-orh 24A #> 33131 25A-wic 25A #> 33141 25A-ond 25A #> 33144 25A-abk 25A #> 33151 25A-apu 25A #> 33180 25A-kew 25A #> 33195 25A-kor 25A #> 33201 25A-mrt 25A #> 33234 25A-prh 25A #> 33249 25A-tuk 25A #> 33267 25A-mar 25A #> 33275 25A-kio 25A #> 33278 25A-tiw 25A #> 33289 25A-orh 25A #> 33291 25A-sup 25A #> 33299 25A-ala 25A #> 33310 25A-hin 25A #> 33318 25A-hau 25A #> 33337 25A-cha 25A #> 33346 25A-koa 25A #> 33358 25B-sup 25B #> 33362 25B-prh 25B #> 33374 25B-cha 25B #> 33388 25B-mrt 25B #> 33413 25B-tiw 25B #> 33429 25B-kio 25B #> 33436 25B-wic 25B #> 33448 25B-tuk 25B #> 33450 25B-kor 25B #> 33454 25B-orh 25B #> 33473 25B-abk 25B #> 33484 25B-hin 25B #> 33538 25B-apu 25B #> 33546 25B-ala 25B #> 33569 25B-ond 25B #> 33570 25B-koa 25B #> 33573 25B-kew 25B #> 33574 25B-mar 25B #> 33584 25B-hau 25B #> 33592 26A-kse 26A #> 33682 26A-hau 26A #> 33718 26A-cha 26A #> 33743 26A-hin 26A #> 33859 26A-orh 26A #> 33953 26A-mrt 26A #> 34015 26A-kew 26A #> 34018 26A-ala 26A #> 34028 26A-kor 26A #> 34112 26A-prh 26A #> 34139 26A-sup 26A #> 34305 26A-koa 26A #> 34311 26A-abk 26A #> 34327 26A-mar 26A #> 34365 26A-kio 26A #> 34371 26A-apu 26A #> 34463 26A-wic 26A #> 34467 26A-ond 26A #> 34486 26A-tuk 26A #> 34543 26A-tiw 26A #> 34565 27A-abk 27A #> 34640 27A-tuk 27A #> 34648 27A-hin 27A #> 34702 27A-kor 27A #> 34739 27A-tiw 27A #> 34742 27A-hau 27A #> 34763 27A-ala 27A #> 34764 27A-orh 27A #> 34769 27A-koa 27A #> 34775 27A-mar 27A #> 34821 27A-cha 27A #> 34853 27A-mrt 27A #> 34875 27A-wic 27A #> 34903 27A-prh 27A #> 34922 27A-apu 27A #> 34924 27A-kio 27A #> 34925 27A-ond 27A #> 34937 28A-kor 28A #> 34941 28A-kse 28A #> 34942 28A-apu 28A #> 34961 28A-tiw 28A #> 34995 28A-kew 28A #> 34996 28A-sup 28A #> 34997 28A-tuk 28A #> 35002 28A-abk 28A #> 35009 28A-ala 28A #> 35015 28A-kio 28A #> 35028 28A-wic 28A #> 35041 28A-cha 28A #> 35045 28A-prh 28A #> 35056 28A-orh 28A #> 35075 28A-hin 28A #> 35086 28A-mrt 28A #> 35105 28A-hau 28A #> 35117 28A-mar 28A #> 35124 28A-koa 28A #> 35131 29A-prh 29A #> 35134 29A-hau 29A #> 35139 29A-kor 29A #> 35145 29A-mrt 29A #> 35158 29A-sup 29A #> 35161 29A-kse 29A #> 35194 29A-kio 29A #> 35204 29A-hin 29A #> 35209 29A-tiw 29A #> 35225 29A-orh 29A #> 35240 29A-kew 29A #> 35251 29A-ala 29A #> 35256 29A-cha 29A #> 35274 29A-tuk 29A #> 35282 29A-koa 29A #> 35286 29A-apu 29A #> 35297 29A-wic 29A #> 35307 29A-mar 29A #> 35312 29A-ond 29A #> 35318 29A-abk 29A #> 35382 3A-ond 3A #> 35414 3A-prh 3A #> 35431 3A-kor 3A #> 35471 3A-ala 3A #> 35492 3A-wic 3A #> 35499 3A-kse 3A #> 35528 3A-kio 3A #> 35547 3A-kew 3A #> 35574 3A-cha 3A #> 35647 3A-apu 3A #> 35695 3A-tuk 3A #> 35699 3A-sup 3A #> 35723 3A-hin 3A #> 35740 3A-orh 3A #> 35742 3A-hau 3A #> 35764 3A-tiw 3A #> 35813 3A-mar 3A #> 35814 3A-koa 3A #> 35831 3A-mrt 3A #> 35868 3A-abk 3A #> 35903 30A-tuk 30A #> 35904 30A-koa 30A #> 35944 30A-mar 30A #> 35954 30A-cha 30A #> 35958 30A-kew 30A #> 35971 30A-wic 30A #> 35975 30A-mrt 30A #> 36019 30A-kse 30A #> 36033 30A-ala 30A #> 36035 30A-hau 30A #> 36039 30A-apu 30A #> 36048 30A-tiw 30A #> 36057 30A-orh 30A #> 36064 30A-hin 30A #> 36090 30A-ond 30A #> 36103 30A-abk 30A #> 36114 30A-prh 30A #> 36129 30A-sup 30A #> 36163 31A-koa 31A #> 36186 31A-mrt 31A #> 36187 31A-tuk 31A #> 36188 31A-kew 31A #> 36210 31A-wic 31A #> 36232 31A-kse 31A #> 36243 31A-mar 31A #> 36263 31A-cha 31A #> 36295 31A-apu 31A #> 36297 31A-orh 31A #> 36320 31A-prh 31A #> 36332 31A-abk 31A #> 36336 31A-tiw 31A #> 36338 31A-hin 31A #> 36355 31A-hau 31A #> 36364 31A-ala 31A #> 36369 31A-ond 31A #> 36391 31A-sup 31A #> 36417 32A-koa 32A #> 36448 32A-tuk 32A #> 36462 32A-wic 32A #> 36480 32A-mar 32A #> 36486 32A-mrt 32A #> 36521 32A-kew 32A #> 36526 32A-cha 32A #> 36530 32A-kse 32A #> 36552 32A-tiw 32A #> 36560 32A-prh 32A #> 36564 32A-ala 32A #> 36568 32A-ond 32A #> 36571 32A-abk 32A #> 36601 32A-hau 32A #> 36618 32A-sup 32A #> 36644 32A-apu 32A #> 36650 32A-orh 32A #> 36656 32A-hin 32A #> 36786 33A-hin 33A #> 36837 33A-kew 33A #> 36849 33A-abk 33A #> 36866 33A-tiw 33A #> 36910 33A-mrt 33A #> 36965 33A-sup 33A #> 37051 33A-hau 33A #> 37075 33A-apu 33A #> 37205 33A-kio 33A #> 37287 33A-kor 33A #> 37299 33A-mar 33A #> 37354 33A-ond 33A #> 37500 33A-cha 33A #> 37575 33A-koa 33A #> 37590 33A-kse 33A #> 37609 33A-ala 33A #> 37640 33A-orh 33A #> 37663 33A-prh 33A #> 37666 33A-wic 33A #> 37704 33A-tuk 33A #> 37728 34A-prh 34A #> 37762 34A-orh 34A #> 37766 34A-koa 34A #> 37767 34A-cha 34A #> 37772 34A-mar 34A #> 37812 34A-tiw 34A #> 37893 34A-sup 34A #> 37911 34A-ala 34A #> 37916 34A-apu 34A #> 37921 34A-hin 34A #> 37928 34A-hau 34A #> 37998 34A-abk 34A #> 38019 35A-prh 35A #> 38020 35A-ond 35A #> 38024 35A-kio 35A #> 38025 35A-mar 35A #> 38031 35A-koa 35A #> 38036 35A-wic 35A #> 38044 35A-apu 35A #> 38071 35A-tuk 35A #> 38074 35A-sup 35A #> 38075 35A-kew 35A #> 38085 35A-hin 35A #> 38090 35A-abk 35A #> 38100 35A-tiw 35A #> 38110 35A-orh 35A #> 38117 35A-cha 35A #> 38136 35A-kse 35A #> 38167 35A-mrt 35A #> 38209 35A-hau 35A #> 38214 35A-kor 35A #> 38219 35A-ala 35A #> 38289 36A-kor 36A #> 38324 36A-cha 36A #> 38341 36A-kse 36A #> 38405 36A-abk 36A #> 38429 36A-tuk 36A #> 38445 36A-hau 36A #> 38448 36A-ala 36A #> 38467 36A-sup 36A #> 38497 36A-ond 36A #> 38499 36A-hin 36A #> 38503 36A-mrt 36A #> 38504 36A-apu 36A #> 38506 36A-wic 36A #> 38563 37A-cha 37A #> 38578 37A-mar 37A #> 38584 37A-koa 37A #> 38585 37A-kse 37A #> 38592 37A-abk 37A #> 38630 37A-ond 37A #> 38655 37A-ala 37A #> 38708 37A-hau 37A #> 38797 37A-tuk 37A #> 38801 37A-sup 37A #> 38954 37A-apu 37A #> 38974 37A-tiw 37A #> 38988 37A-kor 37A #> 39062 37A-hin 37A #> 39065 37A-orh 37A #> 39070 37A-prh 37A #> 39078 37A-kew 37A #> 39124 37A-kio 37A #> 39140 38A-sup 38A #> 39144 38A-hau 38A #> 39280 38A-abk 38A #> 39380 38A-mar 38A #> 39391 38A-ond 38A #> 39442 38A-ala 38A #> 39454 38A-tuk 38A #> 39465 38A-kse 38A #> 39509 38A-hin 38A #> 39557 38A-apu 38A #> 39581 38A-orh 38A #> 39589 38A-kor 38A #> 39601 38A-kio 38A #> 39603 38A-tiw 38A #> 39615 38A-prh 38A #> 39656 38A-kew 38A #> 39668 39A-prh 39A #> 39674 39A-mar 39A #> 39676 39A-ond 39A #> 39678 39A-kio 39A #> 39700 39A-tuk 39A #> 39718 39A-sup 39A #> 39720 39A-kse 39A #> 39728 39A-hau 39A #> 39745 39A-koa 39A #> 39750 39A-kew 39A #> 39751 39A-ala 39A #> 39759 39A-hin 39A #> 39778 39A-kor 39A #> 39790 39A-apu 39A #> 39797 39A-orh 39A #> 39808 39A-wic 39A #> 39818 39A-cha 39A #> 39826 39A-mrt 39A #> 39850 39A-abk 39A #> 39853 39A-tiw 39A #> 39901 39B-mrt 39B #> 39944 4A-kew 4A #> 39946 4A-ond 4A #> 39951 4A-kor 4A #> 39954 4A-tiw 4A #> 39981 4A-mrt 4A #> 40018 4A-apu 4A #> 40019 4A-tuk 4A #> 40023 4A-wic 4A #> 40105 4A-mar 4A #> 40138 4A-kse 4A #> 40147 4A-ala 4A #> 40203 4A-koa 4A #> 40218 4A-prh 4A #> 40240 4A-cha 4A #> 40290 4A-kio 4A #> 40372 4A-hau 4A #> 40403 4A-hin 4A #> 40442 4A-orh 4A #> 40455 4A-sup 4A #> 40469 4A-abk 4A #> 40509 40A-hin 40A #> 40512 40A-hau 40A #> 40517 40A-mrt 40A #> 40519 40A-sup 40A #> 40521 40A-kse 40A #> 40538 40A-kor 40A #> 40550 40A-prh 40A #> 40554 40A-cha 40A #> 40575 40A-mar 40A #> 40606 40A-abk 40A #> 40613 40A-kew 40A #> 40625 40A-koa 40A #> 40638 40A-tuk 40A #> 40642 40A-orh 40A #> 40648 40A-ala 40A #> 40653 40A-apu 40A #> 40670 40A-wic 40A #> 40675 40A-ond 40A #> 40680 40A-tiw 40A #> 40702 40A-kio 40A #> 40705 41A-sup 41A #> 40707 41A-kse 41A #> 40731 41A-ala 41A #> 40756 41A-ond 41A #> 40761 41A-apu 41A #> 40773 41A-abk 41A #> 40778 41A-mrt 41A #> 40783 41A-tiw 41A #> 40789 41A-kio 41A #> 40817 41A-prh 41A #> 40824 41A-orh 41A #> 40836 41A-wic 41A #> 40878 41A-kor 41A #> 40896 41A-cha 41A #> 40908 41A-tuk 41A #> 40927 41A-hau 41A #> 40936 41A-mar 41A #> 40937 41A-koa 41A #> 40940 42A-koa 42A #> 40948 42A-ond 42A #> 40969 42A-tuk 42A #> 40975 42A-mrt 42A #> 40983 42A-wic 42A #> 41005 42A-sup 42A #> 41016 42A-cha 42A #> 41017 42A-abk 42A #> 41020 42A-kse 42A #> 41036 42A-ala 42A #> 41041 42A-apu 42A #> 41053 42A-orh 42A #> 41057 42A-kio 42A #> 41062 42A-prh 42A #> 41063 42A-mar 42A #> 41066 42A-hau 42A #> 41071 42A-tiw 42A #> 41093 42A-kor 42A #> 41148 43A-ond 43A #> 41150 43A-orh 43A #> 41153 43A-mrt 43A #> 41160 43A-kse 43A #> 41163 43A-hau 43A #> 41167 43A-cha 43A #> 41194 43A-kew 43A #> 41217 43A-koa 43A #> 41221 43A-kor 43A #> 41234 43A-tuk 43A #> 41237 43A-wic 43A #> 41241 43A-mar 43A #> 41244 43A-hin 43A #> 41284 43A-sup 43A #> 41304 43A-prh 43A #> 41326 43A-apu 43A #> 41341 43A-ala 43A #> 41370 44A-hau 44A #> 41379 44A-abk 44A #> 41394 44A-sup 44A #> 41412 44A-prh 44A #> 41429 44A-orh 44A #> 41442 44A-ala 44A #> 41453 44A-tiw 44A #> 41464 44A-apu 44A #> 41482 44A-kor 44A #> 41526 44A-tuk 44A #> 41540 44A-wic 44A #> 41582 44A-mrt 44A #> 41587 44A-kew 44A #> 41605 44A-kio 44A #> 41616 44A-hin 44A #> 41626 44A-mar 44A #> 41654 44A-ond 44A #> 41695 44A-cha 44A #> 41701 44A-koa 44A #> 41723 44A-kse 44A #> 41762 45A-koa 45A #> 41770 45A-cha 45A #> 41772 45A-mar 45A #> 41777 45A-wic 45A #> 41793 45A-orh 45A #> 41799 45A-ala 45A #> 41809 45A-tiw 45A #> 41822 45A-hau 45A #> 41829 45A-prh 45A #> 41834 45A-ond 45A #> 41835 45A-sup 45A #> 41839 45A-kew 45A #> 41849 45A-apu 45A #> 41851 45A-kse 45A #> 41861 45A-mrt 45A #> 41867 45A-kio 45A #> 41936 45A-tuk 45A #> 41942 45A-hin 45A #> 41948 45A-kor 45A #> 41952 46A-mar 46A #> 41987 46A-koa 46A #> 42061 46A-kor 46A #> 42075 46A-mrt 46A #> 42094 46A-tiw 46A #> 42107 46A-wic 46A #> 42126 46A-kio 46A #> 42150 46A-orh 46A #> 42172 46A-hau 46A #> 42217 46A-kse 46A #> 42231 46A-hin 46A #> 42232 46A-abk 46A #> 42258 46A-prh 46A #> 42284 47A-mar 47A #> 42313 47A-kor 47A #> 42337 47A-tiw 47A #> 42343 47A-ala 47A #> 42345 47A-hin 47A #> 42358 47A-cha 47A #> 42368 47A-tuk 47A #> 42371 47A-ond 47A #> 42372 47A-orh 47A #> 42373 47A-wic 47A #> 42383 47A-abk 47A #> 42392 47A-prh 47A #> 42408 47A-apu 47A #> 42414 47A-sup 47A #> 42415 47A-koa 47A #> 42422 47A-kio 47A #> 42434 47A-kse 47A #> 42452 48A-mar 48A #> 42455 48A-ond 48A #> 42466 48A-kio 48A #> 42471 48A-apu 48A #> 42487 48A-mrt 48A #> 42496 48A-wic 48A #> 42531 48A-kew 48A #> 42548 48A-kor 48A #> 42559 48A-hin 48A #> 42561 48A-tiw 48A #> 42582 48A-ala 48A #> 42624 48A-sup 48A #> 42629 48A-kse 48A #> 42641 48A-tuk 48A #> 42678 48A-orh 48A #> 42709 48A-prh 48A #> 42732 48A-hau 48A #> 42734 48A-koa 48A #> 42756 48A-cha 48A #> 42808 48A-abk 48A #> 42822 49A-tuk 49A #> 42846 49A-cha 49A #> 42880 49A-kse 49A #> 42886 49A-tiw 49A #> 42914 49A-hau 49A #> 42917 49A-ond 49A #> 42944 49A-abk 49A #> 42975 49A-orh 49A #> 42985 49A-koa 49A #> 42987 49A-mar 49A #> 42996 49A-kor 49A #> 43002 49A-kew 49A #> 43021 49A-ala 49A #> 43050 49A-mrt 49A #> 43059 49A-wic 49A #> 43060 49A-kio 49A #> 43063 49A-prh 49A #> 43074 49A-apu 49A #> 43081 49A-sup 49A #> 43115 5A-mrt 5A #> 43117 5A-wic 5A #> 43142 5A-prh 5A #> 43146 5A-mar 5A #> 43157 5A-tuk 5A #> 43232 5A-kor 5A #> 43246 5A-ond 5A #> 43257 5A-tiw 5A #> 43262 5A-koa 5A #> 43277 5A-apu 5A #> 43323 5A-kew 5A #> 43327 5A-cha 5A #> 43337 5A-ala 5A #> 43352 5A-kio 5A #> 43369 5A-abk 5A #> 43553 5A-hin 5A #> 43580 5A-orh 5A #> 43588 5A-hau 5A #> 43592 5A-kse 5A #> 43638 5A-sup 5A #> 43651 50A-hau 50A #> 43658 50A-tuk 50A #> 43682 50A-cha 50A #> 43687 50A-tiw 50A #> 43688 50A-ond 50A #> 43733 50A-kio 50A #> 43734 50A-wic 50A #> 43738 50A-abk 50A #> 43739 50A-sup 50A #> 43760 50A-kew 50A #> 43761 50A-apu 50A #> 43762 50A-mar 50A #> 43781 50A-ala 50A #> 43797 50A-prh 50A #> 43798 50A-koa 50A #> 43804 50A-kor 50A #> 43822 50A-kse 50A #> 43865 50A-orh 50A #> 43909 50A-mrt 50A #> 43991 51A-kor 51A #> 44066 51A-kio 51A #> 44108 51A-hin 51A #> 44120 51A-wic 51A #> 44158 51A-orh 51A #> 44231 51A-ond 51A #> 44248 51A-mrt 51A #> 44356 51A-prh 51A #> 44448 51A-apu 51A #> 44490 51A-mar 51A #> 44506 51A-koa 51A #> 44513 51A-ala 51A #> 44534 51A-kew 51A #> 44645 51A-abk 51A #> 44797 51A-sup 51A #> 44822 51A-hau 51A #> 44845 51A-tuk 51A #> 44851 51A-tiw 51A #> 44928 51A-kse 51A #> 44969 52A-hau 52A #> 45048 52A-kor 52A #> 45111 52A-ala 52A #> 45125 52A-mrt 52A #> 45135 52A-koa 52A #> 45153 52A-hin 52A #> 45160 52A-abk 52A #> 45175 52A-prh 52A #> 45227 52A-orh 52A #> 45246 52A-sup 52A #> 45272 53A-mrt 53A #> 45279 53A-tiw 53A #> 45291 53A-apu 53A #> 45302 53A-tuk 53A #> 45328 53A-kor 53A #> 45371 53A-abk 53A #> 45387 53A-kse 53A #> 45416 53A-sup 53A #> 45431 53A-hin 53A #> 45432 53A-ala 53A #> 45445 53A-cha 53A #> 45479 53A-hau 53A #> 45491 53A-koa 53A #> 45506 53A-orh 53A #> 45578 53A-kew 53A #> 45592 54A-mrt 54A #> 45604 54A-tuk 54A #> 45664 54A-sup 54A #> 45695 54A-hin 54A #> 45713 54A-hau 54A #> 45760 54A-mar 54A #> 45774 54A-tiw 54A #> 45781 54A-kor 54A #> 45819 54A-abk 54A #> 45828 54A-cha 54A #> 45846 55A-sup 55A #> 45862 55A-hau 55A #> 45868 55A-hin 55A #> 45917 55A-apu 55A #> 45928 55A-tiw 55A #> 45943 55A-mrt 55A #> 45963 55A-orh 55A #> 45971 55A-prh 55A #> 45974 55A-mar 55A #> 46005 55A-cha 55A #> 46052 55A-kew 55A #> 46063 55A-ala 55A #> 46078 55A-kio 55A #> 46091 55A-abk 55A #> 46144 55A-tuk 55A #> 46233 55A-kor 55A #> 46249 56A-mar 56A #> 46259 56A-tiw 56A #> 46269 56A-tuk 56A #> 46293 56A-sup 56A #> 46317 56A-hin 56A #> 46356 57A-wic 57A #> 46369 57A-abk 57A #> 46373 57A-kio 57A #> 46408 57A-mar 57A #> 46498 57A-ond 57A #> 46512 57A-apu 57A #> 46602 57A-koa 57A #> 46691 57A-cha 57A #> 46708 57A-mrt 57A #> 46833 57A-hau 57A #> 46995 57A-kew 57A #> 47015 57A-kse 57A #> 47024 57A-sup 57A #> 47119 57A-ala 57A #> 47142 57A-tuk 57A #> 47159 57A-tiw 57A #> 47214 57A-orh 57A #> 47283 58A-tiw 58A #> 47288 58A-koa 58A #> 47306 58A-ond 58A #> 47342 58A-orh 58A #> 47380 58A-prh 58A #> 47384 58A-cha 58A #> 47387 58A-kew 58A #> 47391 58A-apu 58A #> 47404 58A-sup 58A #> 47408 58A-hau 58A #> 47416 58A-wic 58A #> 47421 58A-hin 58A #> 47427 58A-mar 58A #> 47436 58A-ala 58A #> 47451 58A-kor 58A #> 47459 58A-mrt 58A #> 47469 58A-kio 58A #> 47478 58A-abk 58A #> 47495 58A-tuk 58A #> 47513 58B-orh 58B #> 47517 58B-hau 58B #> 47547 58B-prh 58B #> 47548 58B-ala 58B #> 47586 58B-abk 58B #> 47595 58B-sup 58B #> 47641 58B-apu 58B #> 47647 58B-ond 58B #> 47651 58B-koa 58B #> 47661 58B-hin 58B #> 47663 58B-wic 58B #> 47680 58B-kio 58B #> 47683 58B-tuk 58B #> 47686 58B-mrt 58B #> 47689 58B-kew 58B #> 47698 58B-mar 58B #> 47702 58B-tiw 58B #> 47722 58B-kor 58B #> 47737 58B-cha 58B #> 47752 59A-hin 59A #> 47754 59A-kor 59A #> 47760 59A-ala 59A #> 47770 59A-cha 59A #> 47776 59A-ond 59A #> 47785 59A-apu 59A #> 47793 59A-wic 59A #> 47819 59A-hau 59A #> 47826 59A-kew 59A #> 47832 59A-abk 59A #> 47863 59A-sup 59A #> 47864 59A-prh 59A #> 47887 59A-koa 59A #> 47902 59A-tiw 59A #> 47933 59A-mrt 59A #> 47937 59A-kio 59A #> 47938 59A-orh 59A #> 47940 59A-tuk 59A #> 47968 59A-mar 59A #> 47990 6A-wic 6A #> 48060 6A-orh 6A #> 48077 6A-kio 6A #> 48093 6A-mrt 6A #> 48109 6A-hin 6A #> 48144 6A-tiw 6A #> 48154 6A-cha 6A #> 48160 6A-kse 6A #> 48191 6A-ala 6A #> 48193 6A-tuk 6A #> 48232 6A-prh 6A #> 48278 6A-apu 6A #> 48322 6A-ond 6A #> 48342 6A-kor 6A #> 48354 6A-sup 6A #> 48357 6A-koa 6A #> 48369 6A-hau 6A #> 48449 6A-kew 6A #> 48459 6A-abk 6A #> 48468 6A-mar 6A #> 48593 60A-mrt 60A #> 48603 60A-mar 60A #> 48624 60A-tiw 60A #> 48632 60A-abk 60A #> 48644 60A-tuk 60A #> 48658 60A-kor 60A #> 48664 60A-cha 60A #> 48671 60A-hin 60A #> 48677 60A-sup 60A #> 48702 61A-sup 61A #> 48706 61A-abk 61A #> 48728 61A-tiw 61A #> 48730 61A-cha 61A #> 48733 61A-tuk 61A #> 48746 61A-mar 61A #> 48748 61A-mrt 61A #> 48805 61A-hin 61A #> 48806 61A-kor 61A #> 48817 62A-kor 62A #> 48822 62A-apu 62A #> 48836 62A-prh 62A #> 48842 62A-orh 62A #> 48852 62A-mar 62A #> 48853 62A-hin 62A #> 48879 62A-abk 62A #> 48894 62A-tuk 62A #> 48900 62A-cha 62A #> 48907 62A-sup 62A #> 48917 62A-hau 62A #> 48923 62A-kio 62A #> 48938 62A-kse 62A #> 48945 62A-ala 62A #> 48947 62A-ond 62A #> 48974 62A-wic 62A #> 48975 62A-mrt 62A #> 48991 63A-abk 63A #> 49003 63A-hin 63A #> 49013 63A-tiw 63A #> 49021 63A-orh 63A #> 49058 63A-kio 63A #> 49088 63A-kor 63A #> 49106 63A-ala 63A #> 49113 63A-cha 63A #> 49166 63A-hau 63A #> 49277 64A-hin 64A #> 49301 64A-cha 64A #> 49303 64A-tuk 64A #> 49304 64A-prh 64A #> 49338 64A-abk 64A #> 49407 64A-orh 64A #> 49408 64A-ala 64A #> 49410 64A-kse 64A #> 49416 64A-kor 64A #> 49422 64A-mar 64A #> 49426 64A-hau 64A #> 49467 64A-sup 64A #> 49496 64A-koa 64A #> 49508 64A-tiw 64A #> 49514 64A-apu 64A #> 49528 65A-ond 65A #> 49530 65A-wic 65A #> 49532 65A-orh 65A #> 49543 65A-kor 65A #> 49557 65A-kio 65A #> 49561 65A-sup 65A #> 49564 65A-prh 65A #> 49581 65A-cha 65A #> 49591 65A-abk 65A #> 49594 65A-hin 65A #> 49600 65A-ala 65A #> 49608 65A-kse 65A #> 49625 65A-tuk 65A #> 49626 65A-kew 65A #> 49634 65A-mar 65A #> 49668 65A-tiw 65A #> 49689 65A-koa 65A #> 49704 65A-hau 65A #> 49728 65A-apu 65A #> 49732 65A-mrt 65A #> 49741 66A-mrt 66A #> 49750 66A-kor 66A #> 49755 66A-hin 66A #> 49759 66A-abk 66A #> 49792 66A-tiw 66A #> 49830 66A-orh 66A #> 49833 66A-kew 66A #> 49836 66A-sup 66A #> 49856 66A-koa 66A #> 49864 66A-ala 66A #> 49882 66A-hau 66A #> 49913 66A-tuk 66A #> 49919 66A-kse 66A #> 49923 66A-cha 66A #> 49927 66A-ond 66A #> 49934 66A-mar 66A #> 49941 66A-wic 66A #> 49943 66A-apu 66A #> 49952 66A-kio 66A #> 49954 66A-prh 66A #> 49969 67A-ala 67A #> 50008 67A-mrt 67A #> 50009 67A-kio 67A #> 50011 67A-hin 67A #> 50015 67A-mar 67A #> 50025 67A-tuk 67A #> 50026 67A-koa 67A #> 50030 67A-apu 67A #> 50041 67A-abk 67A #> 50042 67A-tiw 67A #> 50051 67A-ond 67A #> 50062 67A-wic 67A #> 50068 67A-kew 67A #> 50075 67A-kse 67A #> 50076 67A-cha 67A #> 50078 67A-orh 67A #> 50082 67A-prh 67A #> 50097 67A-hau 67A #> 50100 67A-sup 67A #> 50160 67A-kor 67A #> 50221 68A-abk 68A #> 50250 68A-hin 68A #> 50268 68A-kew 68A #> 50271 68A-orh 68A #> 50287 68A-sup 68A #> 50292 68A-tiw 68A #> 50297 68A-mrt 68A #> 50315 68A-apu 68A #> 50321 68A-kor 68A #> 50327 68A-kio 68A #> 50343 68A-ala 68A #> 50347 68A-cha 68A #> 50348 68A-koa 68A #> 50349 68A-hau 68A #> 50362 68A-tuk 68A #> 50383 68A-ond 68A #> 50386 68A-prh 68A #> 50392 68A-wic 68A #> 50393 68A-kse 68A #> 50396 68A-mar 68A #> 50541 69A-tuk 69A #> 50555 69A-tiw 69A #> 50559 69A-orh 69A #> 50609 69A-mrt 69A #> 50682 69A-hin 69A #> 50705 69A-abk 69A #> 50738 69A-kor 69A #> 50755 69A-kio 69A #> 50794 69A-kew 69A #> 50908 69A-ala 69A #> 50915 69A-prh 69A #> 51004 69A-mar 69A #> 51024 69A-apu 69A #> 51285 69A-wic 69A #> 51312 69A-ond 69A #> 51371 69A-sup 69A #> 51421 69A-kse 69A #> 51453 69A-hau 69A #> 51572 7A-koa 7A #> 51630 7A-mrt 7A #> 51671 7A-sup 7A #> 51673 7A-kew 7A #> 51708 7A-ala 7A #> 51713 7A-tiw 7A #> 51741 7A-mar 7A #> 51753 7A-cha 7A #> 51770 7A-ond 7A #> 51779 7A-hin 7A #> 51829 7A-prh 7A #> 51830 7A-apu 7A #> 51934 7A-kse 7A #> 51962 7A-kor 7A #> 51976 7A-abk 7A #> 51979 7A-kio 7A #> 52018 7A-tuk 7A #> 52063 7A-orh 7A #> 52072 7A-hau 7A #> 52089 7A-wic 7A #> 52106 70A-orh 70A #> 52116 70A-kse 70A #> 52193 70A-ala 70A #> 52227 70A-mar 70A #> 52231 70A-hin 70A #> 52264 70A-kew 70A #> 52296 70A-abk 70A #> 52313 70A-wic 70A #> 52318 70A-koa 70A #> 52320 70A-tiw 70A #> 52360 70A-kio 70A #> 52399 70A-tuk 70A #> 52407 70A-hau 70A #> 52427 70A-sup 70A #> 52437 70A-apu 70A #> 52479 70A-mrt 70A #> 52490 70A-kor 70A #> 52516 70A-ond 70A #> 52639 70A-prh 70A #> 52682 71A-mar 71A #> 52691 71A-wic 71A #> 52696 71A-kew 71A #> 52764 71A-sup 71A #> 52852 71A-hin 71A #> 52855 71A-kor 71A #> 52893 71A-cha 71A #> 52898 71A-orh 71A #> 52910 71A-ond 71A #> 52954 71A-mrt 71A #> 52979 71A-abk 71A #> 53009 71A-hau 71A #> 53010 71A-kse 71A #> 53034 71A-koa 71A #> 53044 71A-tiw 71A #> 53055 71A-tuk 71A #> 53085 71A-kio 71A #> 53115 71A-ala 71A #> 53175 72A-koa 72A #> 53190 72A-prh 72A #> 53198 72A-ala 72A #> 53240 72A-ond 72A #> 53284 72A-sup 72A #> 53298 72A-kse 72A #> 53302 72A-hau 72A #> 53322 72A-hin 72A #> 53329 72A-apu 72A #> 53335 72A-kio 72A #> 53346 72A-abk 72A #> 53353 72A-mrt 72A #> 53381 72A-tiw 72A #> 53382 72A-orh 72A #> 53401 72A-tuk 72A #> 53429 72A-mar 72A #> 53437 72A-kew 72A #> 53471 72A-cha 72A #> 53474 72A-kor 72A #> 53527 73A-wic 73A #> 53529 73A-abk 73A #> 53545 73A-mar 73A #> 53571 73A-sup 73A #> 53572 73A-mrt 73A #> 53593 73A-koa 73A #> 53596 73A-hin 73A #> 53599 73A-kew 73A #> 53605 73A-prh 73A #> 53628 73A-hau 73A #> 53630 73A-kse 73A #> 53664 73A-apu 73A #> 53667 73A-ond 73A #> 53693 73A-kor 73A #> 53704 73A-orh 73A #> 53706 73A-cha 73A #> 53732 73A-tuk 73A #> 53791 73A-tiw 73A #> 53800 73A-ala 73A #> 53816 73A-kio 73A #> 53860 74A-koa 74A #> 53886 74A-cha 74A #> 53900 74A-kio 74A #> 53914 74A-hin 74A #> 53928 74A-hau 74A #> 53938 74A-kse 74A #> 53959 74A-abk 74A #> 53963 74A-tuk 74A #> 53986 74A-apu 74A #> 53991 74A-orh 74A #> 53996 74A-ond 74A #> 54017 74A-sup 74A #> 54050 74A-wic 74A #> 54065 74A-kor 74A #> 54082 75A-hau 75A #> 54084 75A-tuk 75A #> 54094 75A-abk 75A #> 54104 75A-sup 75A #> 54106 75A-hin 75A #> 54117 75A-orh 75A #> 54149 75A-tiw 75A #> 54156 75A-prh 75A #> 54196 75A-apu 75A #> 54201 75A-ond 75A #> 54205 75A-kio 75A #> 54207 75A-koa 75A #> 54219 75A-mar 75A #> 54246 75A-cha 75A #> 54297 75A-kor 75A #> 54302 75A-kew 75A #> 54311 75A-mrt 75A #> 54359 76A-kor 76A #> 54367 76A-abk 76A #> 54369 76A-koa 76A #> 54383 76A-cha 76A #> 54387 76A-ond 76A #> 54390 76A-hau 76A #> 54391 76A-hin 76A #> 54398 76A-kse 76A #> 54407 76A-orh 76A #> 54408 76A-kio 76A #> 54422 76A-tuk 76A #> 54473 76A-sup 76A #> 54520 77A-orh 77A #> 54567 77A-hau 77A #> 54581 77A-tiw 77A #> 54611 77A-sup 77A #> 54625 77A-tuk 77A #> 54653 77A-ala 77A #> 54684 77A-kse 77A #> 54691 77A-hin 77A #> 54703 77A-cha 77A #> 54717 77A-kio 77A #> 54727 77A-kor 77A #> 54759 77A-abk 77A #> 54771 77A-ond 77A #> 54775 77A-mrt 77A #> 54790 77A-apu 77A #> 54826 77A-wic 77A #> 54897 77A-kew 77A #> 54911 77A-prh 77A #> 54923 77A-mar 77A #> 54927 77A-koa 77A #> 54988 78A-hau 78A #> 55002 78A-sup 78A #> 55010 78A-hin 78A #> 55022 78A-orh 78A #> 55042 78A-kse 78A #> 55055 78A-tiw 78A #> 55067 78A-tuk 78A #> 55078 78A-ala 78A #> 55141 78A-kew 78A #> 55143 78A-kor 78A #> 55159 78A-wic 78A #> 55165 78A-mar 78A #> 55176 78A-prh 78A #> 55212 78A-koa 78A #> 55219 78A-kio 78A #> 55225 78A-apu 78A #> 55226 78A-abk 78A #> 55236 78A-mrt 78A #> 55289 78A-cha 78A #> 55306 78A-ond 78A #> 55357 79A-tuk 79A #> 55372 79A-abk 79A #> 55379 79A-ala 79A #> 55381 79A-orh 79A #> 55382 79A-cha 79A #> 55389 79A-kew 79A #> 55394 79A-wic 79A #> 55397 79A-ond 79A #> 55405 79A-sup 79A #> 55419 79A-hin 79A #> 55428 79A-kse 79A #> 55431 79A-koa 79A #> 55476 79A-apu 79A #> 55494 79A-mrt 79A #> 55503 79A-mar 79A #> 55509 79A-hau 79A #> 55511 79A-kio 79A #> 55517 79A-kor 79A #> 55519 79A-prh 79A #> 55544 79A-tiw 79A #> 55575 79B-kse 79B #> 55580 79B-orh 79B #> 55594 79B-mar 79B #> 55603 79B-sup 79B #> 55604 79B-hau 79B #> 55610 79B-tuk 79B #> 55616 79B-kio 79B #> 55621 79B-hin 79B #> 55631 79B-kew 79B #> 55641 79B-cha 79B #> 55669 79B-ala 79B #> 55673 79B-apu 79B #> 55683 79B-ond 79B #> 55687 79B-wic 79B #> 55692 79B-kor 79B #> 55695 79B-prh 79B #> 55720 79B-koa 79B #> 55725 79B-tiw 79B #> 55728 79B-mrt 79B #> 55736 79B-abk 79B #> 55761 8A-ala 8A #> 55771 8A-apu 8A #> 55784 8A-prh 8A #> 55816 8A-wic 8A #> 55880 8A-hin 8A #> 55940 8A-hau 8A #> 56036 8A-orh 8A #> 56068 8A-tiw 8A #> 56072 8A-kse 8A #> 56115 8A-abk 8A #> 56120 8A-sup 8A #> 56153 8A-ond 8A #> 56156 8A-tuk 8A #> 56161 8A-mrt 8A #> 56169 8A-cha 8A #> 56185 8A-mar 8A #> 56199 8A-kor 8A #> 56231 8A-kew 8A #> 56279 8A-koa 8A #> 56301 8A-kio 8A #> 56324 80A-kor 80A #> 56342 80A-apu 80A #> 56354 80A-kse 80A #> 56363 80A-hin 80A #> 56368 80A-hau 80A #> 56370 80A-ond 80A #> 56376 80A-sup 80A #> 56382 80A-kew 80A #> 56384 80A-cha 80A #> 56386 80A-prh 80A #> 56404 80A-abk 80A #> 56427 80A-tuk 80A #> 56438 80A-orh 80A #> 56446 80A-mrt 80A #> 56452 80A-ala 80A #> 56457 80A-tiw 80A #> 56474 80A-kio 80A #> 56495 80A-wic 80A #> 56497 80A-koa 80A #> 56498 80A-mar 80A #> 56531 81A-kew 81A #> 56607 81A-mar 81A #> 56626 81A-sup 81A #> 56636 81A-orh 81A #> 56759 81A-abk 81A #> 56795 81A-kse 81A #> 56814 81A-prh 81A #> 56834 81A-kor 81A #> 56848 81A-ala 81A #> 56923 81A-koa 81A #> 57038 81A-hin 81A #> 57054 81A-kio 81A #> 57088 81A-hau 81A #> 57121 81A-tiw 81A #> 57322 81A-apu 81A #> 57479 81A-mrt 81A #> 57637 81A-cha 81A #> 57655 81A-tuk 81A #> 57821 81A-ond 81A #> 57843 81A-wic 81A #> 57942 81B-wic 81B #> 57999 82A-kse 82A #> 58042 82A-sup 82A #> 58049 82A-apu 82A #> 58127 82A-ala 82A #> 58178 82A-tiw 82A #> 58297 82A-kor 82A #> 58322 82A-mar 82A #> 58342 82A-koa 82A #> 58350 82A-prh 82A #> 58497 82A-kio 82A #> 58723 82A-hin 82A #> 58741 82A-orh 82A #> 58789 82A-abk 82A #> 58792 82A-kew 82A #> 58910 82A-hau 82A #> 59061 82A-mrt 82A #> 59160 82A-ond 82A #> 59176 82A-cha 82A #> 59219 82A-tuk 82A #> 59403 82A-wic 82A #> 59502 83A-kio 83A #> 59519 83A-orh 83A #> 59558 83A-kew 83A #> 59559 83A-kor 83A #> 59744 83A-ala 83A #> 59817 83A-koa 83A #> 59818 83A-wic 83A #> 59819 83A-sup 83A #> 59855 83A-mar 83A #> 59921 83A-abk 83A #> 59955 83A-kse 83A #> 60008 83A-hin 83A #> 60094 83A-prh 83A #> 60281 83A-tiw 83A #> 60339 83A-cha 83A #> 60471 83A-hau 83A #> 60527 83A-mrt 83A #> 60696 83A-ond 83A #> 60733 83A-tuk 83A #> 60908 83A-apu 83A #> 61120 84A-hau 84A #> 61144 84A-mrt 84A #> 61148 84A-tiw 84A #> 61188 84A-abk 84A #> 61204 84A-prh 84A #> 61213 84A-orh 84A #> 61249 84A-koa 84A #> 61250 84A-sup 84A #> 61272 84A-kse 84A #> 61324 84A-wic 84A #> 61332 84A-ond 84A #> 61360 84A-apu 84A #> 61440 84A-ala 84A #> 61590 85A-mar 85A #> 61595 85A-orh 85A #> 61643 85A-koa 85A #> 61659 85A-ala 85A #> 61693 85A-prh 85A #> 61733 85A-abk 85A #> 61759 85A-apu 85A #> 61820 85A-kse 85A #> 61829 85A-kew 85A #> 61838 85A-kor 85A #> 61946 85A-sup 85A #> 62022 85A-hin 85A #> 62186 85A-tuk 85A #> 62272 85A-hau 85A #> 62355 85A-cha 85A #> 62422 85A-tiw 85A #> 62614 85A-ond 85A #> 62626 85A-kio 85A #> 62634 85A-wic 85A #> 62637 85A-mrt 85A #> 62697 86A-sup 86A #> 62724 86A-abk 86A #> 62725 86A-ala 86A #> 62808 86A-kio 86A #> 62826 86A-apu 86A #> 62871 86A-kse 86A #> 62955 86A-koa 86A #> 62960 86A-kor 86A #> 63034 86A-mar 86A #> 63085 86A-kew 86A #> 63107 86A-tiw 86A #> 63188 86A-prh 86A #> 63297 86A-hin 86A #> 63476 86A-orh 86A #> 63681 86A-hau 86A #> 63703 86A-cha 86A #> 63738 86A-tuk 86A #> 63802 86A-ond 86A #> 63873 86A-mrt 86A #> 63934 87A-hin 87A #> 64012 87A-kor 87A #> 64052 87A-ala 87A #> 64075 87A-cha 87A #> 64118 87A-tiw 87A #> 64127 87A-hau 87A #> 64238 87A-kew 87A #> 64321 87A-mar 87A #> 64476 87A-tuk 87A #> 64508 87A-koa 87A #> 64525 87A-kse 87A #> 64526 87A-prh 87A #> 64549 87A-orh 87A #> 64855 87A-abk 87A #> 64969 87A-sup 87A #> 65045 87A-mrt 87A #> 65134 87A-wic 87A #> 65135 87A-apu 87A #> 65296 88A-sup 88A #> 65342 88A-cha 88A #> 65351 88A-kew 88A #> 65357 88A-kor 88A #> 65401 88A-koa 88A #> 65422 88A-kio 88A #> 65501 88A-abk 88A #> 65502 88A-ala 88A #> 65506 88A-tiw 88A #> 65577 88A-hin 88A #> 65586 88A-mrt 88A #> 65607 88A-wic 88A #> 65672 88A-ond 88A #> 65714 88A-apu 88A #> 66013 88A-mar 88A #> 66094 88A-tuk 88A #> 66142 88A-kse 88A #> 66321 88A-orh 88A #> 66346 88A-prh 88A #> 66477 88A-hau 88A #> 66545 89A-cha 89A #> 66552 89A-tiw 89A #> 66687 89A-apu 89A #> 66700 89A-wic 89A #> 66740 89A-kio 89A #> 66789 89A-kor 89A #> 66795 89A-hin 89A #> 66796 89A-mrt 89A #> 66815 89A-ala 89A #> 66962 89A-mar 89A #> 67041 89A-kse 89A #> 67081 89A-sup 89A #> 67186 89A-kew 89A #> 67201 89A-koa 89A #> 67238 89A-hau 89A #> 67250 89A-orh 89A #> 67387 89A-prh 89A #> 67538 89A-tuk 89A #> 67608 89A-abk 89A #> 67645 9A-tiw 9A #> 67672 9A-cha 9A #> 67694 9A-mrt 9A #> 67698 9A-sup 9A #> 67734 9A-kse 9A #> 67765 9A-tuk 9A #> 67849 9A-kor 9A #> 67888 9A-mar 9A #> 67896 9A-hin 9A #> 67898 9A-hau 9A #> 67908 9A-kew 9A #> 67920 9A-wic 9A #> 67935 9A-abk 9A #> 67963 9A-ala 9A #> 67981 9A-apu 9A #> 67991 9A-ond 9A #> 68075 9A-koa 9A #> 68089 9A-kio 9A #> 68093 9A-prh 9A #> 68094 9A-orh 9A #> 68135 90A-cha 90A #> 68200 90A-apu 90A #> 68234 90A-hau 90A #> 68287 90A-kse 90A #> 68413 90A-wic 90A #> 68482 90A-orh 90A #> 68516 90A-tiw 90A #> 68715 90A-kor 90A #> 68742 90A-ala 90A #> 68800 90A-abk 90A #> 68828 90A-ond 90A #> 68834 90A-kio 90A #> 68853 90A-hin 90A #> 68855 90A-sup 90A #> 68859 90A-mrt 90A #> 68869 90A-tuk 90A #> 68891 90A-kew 90A #> 68908 90A-koa 90A #> 68912 90A-mar 90A #> 68938 90B-ala 90B #> 68940 90B-abk 90B #> 69054 90B-kor 90B #> 69100 90B-kew 90B #> 69113 90B-koa 90B #> 69122 90C-hau 90C #> 69314 90C-orh 90C #> 69335 90C-cha 90C #> 69359 90C-wic 90C #> 69452 90C-tiw 90C #> 69469 90C-apu 90C #> 69682 90C-kse 90C #> 69730 90C-tuk 90C #> 69736 90C-mar 90C #> 69745 90D-kio 90D #> 69758 90D-ond 90D #> 69771 90D-koa 90D #> 69777 90D-kew 90D #> 69779 90D-mar 90D #> 69784 90D-tuk 90D #> 69790 90D-kor 90D #> 69794 90D-sup 90D #> 69808 90E-hin 90E #> 69809 90E-sup 90E #> 69827 90F-mrt 90F #> 69852 91A-orh 91A #> 69880 91A-hin 91A #> 69926 91A-abk 91A #> 69942 91A-ond 91A #> 69980 91A-cha 91A #> 70051 91A-kor 91A #> 70072 91A-hau 91A #> 70158 91A-ala 91A #> 70360 92A-kio 92A #> 70377 92A-hin 92A #> 70402 92A-cha 92A #> 70469 92A-kew 92A #> 70498 92A-hau 92A #> 70527 92A-prh 92A #> 70553 92A-sup 92A #> 70675 92A-tuk 92A #> 70760 92A-tiw 92A #> 70807 92A-ond 92A #> 70837 92A-kse 92A #> 70919 92A-ala 92A #> 70929 92A-orh 92A #> 70939 92A-abk 92A #> 70941 92A-mar 92A #> 70972 92A-apu 92A #> 70996 92A-kor 92A #> 71024 92A-mrt 92A #> 71270 93A-mrt 93A #> 71276 93A-ond 93A #> 71356 93A-kse 93A #> 71395 93A-kio 93A #> 71462 93A-apu 93A #> 71479 93A-prh 93A #> 71494 93A-abk 93A #> 71515 93A-hin 93A #> 71529 93A-kor 93A #> 71580 93A-kew 93A #> 71923 93A-orh 93A #> 71963 93A-ala 93A #> 72086 93A-tuk 93A #> 72088 93A-hau 93A #> 72093 93A-sup 93A #> 72099 93A-cha 93A #> 72103 93A-tiw 93A #> 72117 94A-cha 94A #> 72134 94A-apu 94A #> 72135 94A-tiw 94A #> 72137 94A-wic 94A #> 72176 94A-tuk 94A #> 72192 94A-ond 94A #> 72371 94A-orh 94A #> 72375 94A-hin 94A #> 72401 94A-hau 94A #> 72404 94A-sup 94A #> 72477 94A-kse 94A #> 72577 94A-kew 94A #> 72594 94A-kor 94A #> 72612 94A-kio 94A #> 72650 94A-abk 94A #> 72738 94A-mar 94A #> 72800 95A-ala 95A #> 72846 95A-kor 95A #> 72848 95A-abk 95A #> 72883 95A-koa 95A #> 72928 95A-hin 95A #> 72941 95A-kse 95A #> 73006 95A-mar 95A #> 73149 95A-orh 95A #> 73155 95A-kew 95A #> 73162 95A-sup 95A #> 73224 95A-prh 95A #> 73307 95A-tuk 95A #> 73318 95A-hau 95A #> 73393 95A-cha 95A #> 73642 95A-tiw 95A #> 73773 95A-apu 95A #> 73914 96A-abk 96A #> 73992 96A-kor 96A #> 74001 96A-ala 96A #> 74052 96A-orh 96A #> 74061 96A-kse 96A #> 74083 96A-wic 96A #> 74160 96A-hau 96A #> 74189 96A-tiw 96A #> 74269 96A-cha 96A #> 74577 96A-tuk 96A #> 74619 96A-apu 96A #> 74683 96A-mrt 96A #> 74700 96A-ond 96A #> 74717 96A-koa 96A #> 74733 96A-sup 96A #> 74745 96A-kew 96A #> 74757 96A-hin 96A #> 74767 96A-kio 96A #> 74771 96A-mar 96A #> 74815 97A-kew 97A #> 74830 97A-hin 97A #> 74932 97A-kor 97A #> 74954 97A-ala 97A #> 75007 97A-kse 97A #> 75017 97A-mar 97A #> 75179 97A-koa 97A #> 75182 97A-prh 97A #> 75254 97A-wic 97A #> 75256 97A-abk 97A #> 75267 97A-sup 97A #> 75279 97A-orh 97A #> 75359 97A-hau 97A #> 75382 97A-cha 97A #> 75441 97A-tiw 97A #> 75810 97A-tuk 97A #> 75884 97A-mrt 97A #> 75946 97A-apu 97A #> 76104 98A-kse 98A #> 76113 98A-wic 98A #> 76116 98A-abk 98A #> 76119 98A-cha 98A #> 76137 98A-apu 98A #> 76146 98A-sup 98A #> 76154 98A-prh 98A #> 76171 98A-hau 98A #> 76177 98A-tiw 98A #> 76191 98A-ala 98A #> 76200 98A-kio 98A #> 76202 98A-koa 98A #> 76211 98A-kor 98A #> 76245 98A-mrt 98A #> 76250 98A-orh 98A #> 76253 98A-mar 98A #> 76257 98A-kew 98A #> 76284 98A-tuk 98A #> 76287 98A-hin 98A #> 76302 99A-sup 99A #> 76325 99A-kse 99A #> 76327 99A-hau 99A #> 76340 99A-prh 99A #> 76353 99A-abk 99A #> 76368 99A-apu 99A #> 76369 99A-tiw 99A #> 76398 99A-orh 99A #> 76399 99A-mrt 99A #> 76407 99A-kor 99A #> 76434 99A-mar 99A #> 76438 99A-tuk 99A #> 76439 99A-kew 99A #> 76447 99A-cha 99A #> 76459 99A-hin 99A #> 76464 99A-wic 99A #> feature #> 35 Consonant Inventories #> 37 Consonant Inventories #> 55 Consonant Inventories #> 73 Consonant Inventories #> 90 Consonant Inventories #> 146 Consonant Inventories #> 187 Consonant Inventories #> 220 Consonant Inventories #> 301 Consonant Inventories #> 309 Consonant Inventories #> 327 Consonant Inventories #> 342 Consonant Inventories #> 360 Consonant Inventories #> 384 Consonant Inventories #> 402 Consonant Inventories #> 407 Consonant Inventories #> 429 Consonant Inventories #> 462 Consonant Inventories #> 532 Consonant Inventories #> 533 Consonant Inventories #> 569 Vowel Nasalization #> 577 Vowel Nasalization #> 596 Vowel Nasalization #> 625 Vowel Nasalization #> 628 Vowel Nasalization #> 637 Vowel Nasalization #> 647 Vowel Nasalization #> 656 Vowel Nasalization #> 659 Vowel Nasalization #> 665 Vowel Nasalization #> 680 Vowel Nasalization #> 746 Vowel Nasalization #> 761 Vowel Nasalization #> 774 Vowel Nasalization #> 783 Vowel Nasalization #> 803 Vowel Nasalization #> 854 Alignment of Verbal Person Marking #> 860 Alignment of Verbal Person Marking #> 867 Alignment of Verbal Person Marking #> 895 Alignment of Verbal Person Marking #> 922 Alignment of Verbal Person Marking #> 938 Alignment of Verbal Person Marking #> 980 Alignment of Verbal Person Marking #> 987 Alignment of Verbal Person Marking #> 1020 Alignment of Verbal Person Marking #> 1028 Alignment of Verbal Person Marking #> 1044 Alignment of Verbal Person Marking #> 1117 Alignment of Verbal Person Marking #> 1150 Alignment of Verbal Person Marking #> 1151 Alignment of Verbal Person Marking #> 1164 Alignment of Verbal Person Marking #> 1172 Alignment of Verbal Person Marking #> 1173 Alignment of Verbal Person Marking #> 1185 Alignment of Verbal Person Marking #> 1188 Alignment of Verbal Person Marking #> 1197 Alignment of Verbal Person Marking #> 1265 Expression of Pronominal Subjects #> 1296 Expression of Pronominal Subjects #> 1314 Expression of Pronominal Subjects #> 1325 Expression of Pronominal Subjects #> 1360 Expression of Pronominal Subjects #> 1399 Expression of Pronominal Subjects #> 1444 Expression of Pronominal Subjects #> 1461 Expression of Pronominal Subjects #> 1466 Expression of Pronominal Subjects #> 1514 Expression of Pronominal Subjects #> 1560 Expression of Pronominal Subjects #> 1567 Expression of Pronominal Subjects #> 1569 Expression of Pronominal Subjects #> 1574 Expression of Pronominal Subjects #> 1788 Expression of Pronominal Subjects #> 1892 Expression of Pronominal Subjects #> 1896 Expression of Pronominal Subjects #> 1943 Verbal Person Marking #> 1954 Verbal Person Marking #> 1967 Verbal Person Marking #> 1984 Verbal Person Marking #> 2002 Verbal Person Marking #> 2037 Verbal Person Marking #> 2067 Verbal Person Marking #> 2077 Verbal Person Marking #> 2083 Verbal Person Marking #> 2122 Verbal Person Marking #> 2134 Verbal Person Marking #> 2136 Verbal Person Marking #> 2150 Verbal Person Marking #> 2158 Verbal Person Marking #> 2159 Verbal Person Marking #> 2164 Verbal Person Marking #> 2199 Verbal Person Marking #> 2210 Verbal Person Marking #> 2217 Verbal Person Marking #> 2286 Verbal Person Marking #> 2328 Third Person Zero of Verbal Person Marking #> 2354 Third Person Zero of Verbal Person Marking #> 2370 Third Person Zero of Verbal Person Marking #> 2392 Third Person Zero of Verbal Person Marking #> 2397 Third Person Zero of Verbal Person Marking #> 2413 Third Person Zero of Verbal Person Marking #> 2457 Third Person Zero of Verbal Person Marking #> 2478 Third Person Zero of Verbal Person Marking #> 2492 Third Person Zero of Verbal Person Marking #> 2493 Third Person Zero of Verbal Person Marking #> 2537 Third Person Zero of Verbal Person Marking #> 2558 Third Person Zero of Verbal Person Marking #> 2562 Third Person Zero of Verbal Person Marking #> 2578 Third Person Zero of Verbal Person Marking #> 2591 Third Person Zero of Verbal Person Marking #> 2599 Third Person Zero of Verbal Person Marking #> 2656 Third Person Zero of Verbal Person Marking #> 2664 Third Person Zero of Verbal Person Marking #> 2669 Third Person Zero of Verbal Person Marking #> 2684 Third Person Zero of Verbal Person Marking #> 2697 Order of Person Markers on the Verb #> 2743 Order of Person Markers on the Verb #> 2757 Order of Person Markers on the Verb #> 2764 Order of Person Markers on the Verb #> 2769 Order of Person Markers on the Verb #> 2777 Order of Person Markers on the Verb #> 2778 Order of Person Markers on the Verb #> 2803 Order of Person Markers on the Verb #> 2851 Order of Person Markers on the Verb #> 2873 Order of Person Markers on the Verb #> 2897 Order of Person Markers on the Verb #> 2912 Order of Person Markers on the Verb #> 2937 Order of Person Markers on the Verb #> 2956 Order of Person Markers on the Verb #> 2965 Order of Person Markers on the Verb #> 2967 Order of Person Markers on the Verb #> 3001 Order of Person Markers on the Verb #> 3036 Order of Person Markers on the Verb #> 3049 Order of Person Markers on the Verb #> 3061 Order of Person Markers on the Verb #> 3102 Ditransitive Constructions: The Verb 'Give' #> 3105 Ditransitive Constructions: The Verb 'Give' #> 3150 Ditransitive Constructions: The Verb 'Give' #> 3178 Ditransitive Constructions: The Verb 'Give' #> 3213 Ditransitive Constructions: The Verb 'Give' #> 3259 Ditransitive Constructions: The Verb 'Give' #> 3317 Ditransitive Constructions: The Verb 'Give' #> 3330 Ditransitive Constructions: The Verb 'Give' #> 3355 Ditransitive Constructions: The Verb 'Give' #> 3364 Ditransitive Constructions: The Verb 'Give' #> 3384 Ditransitive Constructions: The Verb 'Give' #> 3395 Ditransitive Constructions: The Verb 'Give' #> 3406 Ditransitive Constructions: The Verb 'Give' #> 3410 Ditransitive Constructions: The Verb 'Give' #> 3450 Ditransitive Constructions: The Verb 'Give' #> 3453 Ditransitive Constructions: The Verb 'Give' #> 3460 Reciprocal Constructions #> 3467 Reciprocal Constructions #> 3468 Reciprocal Constructions #> 3495 Reciprocal Constructions #> 3498 Reciprocal Constructions #> 3501 Reciprocal Constructions #> 3505 Reciprocal Constructions #> 3506 Reciprocal Constructions #> 3511 Reciprocal Constructions #> 3513 Reciprocal Constructions #> 3515 Reciprocal Constructions #> 3530 Reciprocal Constructions #> 3537 Reciprocal Constructions #> 3555 Reciprocal Constructions #> 3559 Reciprocal Constructions #> 3590 Reciprocal Constructions #> 3607 Reciprocal Constructions #> 3622 Reciprocal Constructions #> 3626 Reciprocal Constructions #> 3634 Passive Constructions #> 3645 Passive Constructions #> 3679 Passive Constructions #> 3714 Passive Constructions #> 3715 Passive Constructions #> 3731 Passive Constructions #> 3747 Passive Constructions #> 3748 Passive Constructions #> 3784 Passive Constructions #> 3787 Passive Constructions #> 3804 Passive Constructions #> 3811 Passive Constructions #> 3813 Passive Constructions #> 3842 Passive Constructions #> 3843 Passive Constructions #> 3844 Passive Constructions #> 3921 Passive Constructions #> 3930 Passive Constructions #> 3933 Passive Constructions #> 3966 Passive Constructions #> 4002 Antipassive Constructions #> 4007 Antipassive Constructions #> 4040 Antipassive Constructions #> 4055 Antipassive Constructions #> 4057 Antipassive Constructions #> 4082 Antipassive Constructions #> 4083 Antipassive Constructions #> 4087 Antipassive Constructions #> 4088 Antipassive Constructions #> 4097 Antipassive Constructions #> 4107 Antipassive Constructions #> 4131 Antipassive Constructions #> 4135 Antipassive Constructions #> 4150 Antipassive Constructions #> 4160 Antipassive Constructions #> 4167 Antipassive Constructions #> 4178 Antipassive Constructions #> 4182 Antipassive Constructions #> 4186 Antipassive Constructions #> 4187 Antipassive Constructions #> 4204 Productivity of the Antipassive Construction #> 4232 Productivity of the Antipassive Construction #> 4233 Productivity of the Antipassive Construction #> 4242 Productivity of the Antipassive Construction #> 4243 Productivity of the Antipassive Construction #> 4249 Productivity of the Antipassive Construction #> 4251 Productivity of the Antipassive Construction #> 4264 Productivity of the Antipassive Construction #> 4283 Productivity of the Antipassive Construction #> 4284 Productivity of the Antipassive Construction #> 4287 Productivity of the Antipassive Construction #> 4303 Productivity of the Antipassive Construction #> 4305 Productivity of the Antipassive Construction #> 4326 Productivity of the Antipassive Construction #> 4340 Productivity of the Antipassive Construction #> 4355 Productivity of the Antipassive Construction #> 4361 Productivity of the Antipassive Construction #> 4362 Productivity of the Antipassive Construction #> 4369 Productivity of the Antipassive Construction #> 4376 Productivity of the Antipassive Construction #> 4389 Applicative Constructions #> 4392 Applicative Constructions #> 4396 Applicative Constructions #> 4414 Applicative Constructions #> 4430 Applicative Constructions #> 4431 Applicative Constructions #> 4436 Applicative Constructions #> 4447 Applicative Constructions #> 4451 Applicative Constructions #> 4457 Applicative Constructions #> 4461 Applicative Constructions #> 4476 Applicative Constructions #> 4484 Applicative Constructions #> 4490 Applicative Constructions #> 4502 Applicative Constructions #> 4511 Applicative Constructions #> 4527 Applicative Constructions #> 4544 Applicative Constructions #> 4557 Applicative Constructions #> 4562 Applicative Constructions #> 4568 Other Roles of Applied Objects #> 4569 Other Roles of Applied Objects #> 4574 Other Roles of Applied Objects #> 4579 Other Roles of Applied Objects #> 4596 Other Roles of Applied Objects #> 4598 Other Roles of Applied Objects #> 4603 Other Roles of Applied Objects #> 4604 Other Roles of Applied Objects #> 4612 Other Roles of Applied Objects #> 4620 Other Roles of Applied Objects #> 4632 Other Roles of Applied Objects #> 4656 Other Roles of Applied Objects #> 4661 Other Roles of Applied Objects #> 4664 Other Roles of Applied Objects #> 4668 Other Roles of Applied Objects #> 4669 Other Roles of Applied Objects #> 4678 Other Roles of Applied Objects #> 4729 Other Roles of Applied Objects #> 4730 Other Roles of Applied Objects #> 4743 Other Roles of Applied Objects #> 4764 Front Rounded Vowels #> 4794 Front Rounded Vowels #> 4799 Front Rounded Vowels #> 4803 Front Rounded Vowels #> 4843 Front Rounded Vowels #> 4885 Front Rounded Vowels #> 4894 Front Rounded Vowels #> 4940 Front Rounded Vowels #> 4987 Front Rounded Vowels #> 5000 Front Rounded Vowels #> 5031 Front Rounded Vowels #> 5041 Front Rounded Vowels #> 5065 Front Rounded Vowels #> 5078 Front Rounded Vowels #> 5089 Front Rounded Vowels #> 5133 Front Rounded Vowels #> 5210 Front Rounded Vowels #> 5226 Front Rounded Vowels #> 5266 Front Rounded Vowels #> 5268 Front Rounded Vowels #> 5311 Periphrastic Causative Constructions #> 5351 Periphrastic Causative Constructions #> 5354 Periphrastic Causative Constructions #> 5359 Periphrastic Causative Constructions #> 5361 Periphrastic Causative Constructions #> 5364 Periphrastic Causative Constructions #> 5395 Periphrastic Causative Constructions #> 5402 Periphrastic Causative Constructions #> 5408 Periphrastic Causative Constructions #> 5409 Periphrastic Causative Constructions #> 5413 Periphrastic Causative Constructions #> 5421 Periphrastic Causative Constructions #> 5422 Periphrastic Causative Constructions #> 5483 Nonperiphrastic Causative Constructions #> 5514 Nonperiphrastic Causative Constructions #> 5550 Nonperiphrastic Causative Constructions #> 5551 Nonperiphrastic Causative Constructions #> 5553 Nonperiphrastic Causative Constructions #> 5566 Nonperiphrastic Causative Constructions #> 5571 Nonperiphrastic Causative Constructions #> 5579 Nonperiphrastic Causative Constructions #> 5592 Nonperiphrastic Causative Constructions #> 5593 Nonperiphrastic Causative Constructions #> 5597 Nonperiphrastic Causative Constructions #> 5598 Nonperiphrastic Causative Constructions #> 5617 Nonperiphrastic Causative Constructions #> 5622 Nonperiphrastic Causative Constructions #> 5640 Nonperiphrastic Causative Constructions #> 5675 Nonperiphrastic Causative Constructions #> 5721 Nonperiphrastic Causative Constructions #> 5724 Nonperiphrastic Causative Constructions #> 5731 Nonperiphrastic Causative Constructions #> 5732 Nonperiphrastic Causative Constructions #> 5842 Negative Morphemes #> 5973 Negative Morphemes #> 6054 Negative Morphemes #> 6125 Negative Morphemes #> 6194 Negative Morphemes #> 6197 Negative Morphemes #> 6256 Negative Morphemes #> 6300 Negative Morphemes #> 6304 Negative Morphemes #> 6432 Negative Morphemes #> 6465 Negative Morphemes #> 6511 Negative Morphemes #> 6525 Negative Morphemes #> 6586 Negative Morphemes #> 6615 Negative Morphemes #> 6622 Negative Morphemes #> 6810 Negative Morphemes #> 6863 Negative Morphemes #> 6881 Negative Morphemes #> 6900 Symmetric and Asymmetric Standard Negation #> 6936 Symmetric and Asymmetric Standard Negation #> 6942 Symmetric and Asymmetric Standard Negation #> 6972 Symmetric and Asymmetric Standard Negation #> 6978 Symmetric and Asymmetric Standard Negation #> 6987 Symmetric and Asymmetric Standard Negation #> 6998 Symmetric and Asymmetric Standard Negation #> 7063 Symmetric and Asymmetric Standard Negation #> 7069 Symmetric and Asymmetric Standard Negation #> 7070 Symmetric and Asymmetric Standard Negation #> 7084 Symmetric and Asymmetric Standard Negation #> 7087 Symmetric and Asymmetric Standard Negation #> 7090 Symmetric and Asymmetric Standard Negation #> 7097 Symmetric and Asymmetric Standard Negation #> 7103 Symmetric and Asymmetric Standard Negation #> 7153 Symmetric and Asymmetric Standard Negation #> 7173 Symmetric and Asymmetric Standard Negation #> 7181 Symmetric and Asymmetric Standard Negation #> 7183 Symmetric and Asymmetric Standard Negation #> 7184 Symmetric and Asymmetric Standard Negation #> 7245 Subtypes of Asymmetric Standard Negation #> 7250 Subtypes of Asymmetric Standard Negation #> 7254 Subtypes of Asymmetric Standard Negation #> 7266 Subtypes of Asymmetric Standard Negation #> 7267 Subtypes of Asymmetric Standard Negation #> 7271 Subtypes of Asymmetric Standard Negation #> 7298 Subtypes of Asymmetric Standard Negation #> 7300 Subtypes of Asymmetric Standard Negation #> 7308 Subtypes of Asymmetric Standard Negation #> 7321 Subtypes of Asymmetric Standard Negation #> 7336 Subtypes of Asymmetric Standard Negation #> 7352 Subtypes of Asymmetric Standard Negation #> 7355 Subtypes of Asymmetric Standard Negation #> 7387 Subtypes of Asymmetric Standard Negation #> 7399 Subtypes of Asymmetric Standard Negation #> 7421 Subtypes of Asymmetric Standard Negation #> 7451 Subtypes of Asymmetric Standard Negation #> 7461 Subtypes of Asymmetric Standard Negation #> 7463 Subtypes of Asymmetric Standard Negation #> 7472 Subtypes of Asymmetric Standard Negation #> 7493 Negative Indefinite Pronouns and Predicate Negation #> 7505 Negative Indefinite Pronouns and Predicate Negation #> 7514 Negative Indefinite Pronouns and Predicate Negation #> 7522 Negative Indefinite Pronouns and Predicate Negation #> 7535 Negative Indefinite Pronouns and Predicate Negation #> 7568 Negative Indefinite Pronouns and Predicate Negation #> 7577 Negative Indefinite Pronouns and Predicate Negation #> 7631 Negative Indefinite Pronouns and Predicate Negation #> 7658 Negative Indefinite Pronouns and Predicate Negation #> 7661 Negative Indefinite Pronouns and Predicate Negation #> 7667 Negative Indefinite Pronouns and Predicate Negation #> 7706 Polar Questions #> 7711 Polar Questions #> 7770 Polar Questions #> 7798 Polar Questions #> 7802 Polar Questions #> 7964 Polar Questions #> 7974 Polar Questions #> 8084 Polar Questions #> 8144 Polar Questions #> 8156 Polar Questions #> 8246 Polar Questions #> 8313 Polar Questions #> 8316 Polar Questions #> 8387 Polar Questions #> 8454 Polar Questions #> 8538 Polar Questions #> 8561 Polar Questions #> 8572 Polar Questions #> 8648 Polar Questions #> 8650 Predicative Possession #> 8659 Predicative Possession #> 8688 Predicative Possession #> 8743 Predicative Possession #> 8746 Predicative Possession #> 8777 Predicative Possession #> 8779 Predicative Possession #> 8793 Predicative Possession #> 8851 Predicative Possession #> 8853 Predicative Possession #> 8856 Predicative Possession #> 8935 Predicative Adjectives #> 8936 Predicative Adjectives #> 8962 Predicative Adjectives #> 8998 Predicative Adjectives #> 9014 Predicative Adjectives #> 9054 Predicative Adjectives #> 9057 Predicative Adjectives #> 9099 Predicative Adjectives #> 9157 Predicative Adjectives #> 9176 Predicative Adjectives #> 9233 Predicative Adjectives #> 9238 Predicative Adjectives #> 9245 Predicative Adjectives #> 9248 Predicative Adjectives #> 9292 Nominal and Locational Predication #> 9300 Nominal and Locational Predication #> 9330 Nominal and Locational Predication #> 9335 Nominal and Locational Predication #> 9357 Nominal and Locational Predication #> 9371 Nominal and Locational Predication #> 9427 Nominal and Locational Predication #> 9444 Nominal and Locational Predication #> 9450 Nominal and Locational Predication #> 9464 Nominal and Locational Predication #> 9512 Nominal and Locational Predication #> 9564 Nominal and Locational Predication #> 9593 Nominal and Locational Predication #> 9609 Nominal and Locational Predication #> 9683 Syllable Structure #> 9700 Syllable Structure #> 9704 Syllable Structure #> 9722 Syllable Structure #> 9769 Syllable Structure #> 9860 Syllable Structure #> 9878 Syllable Structure #> 9886 Syllable Structure #> 9895 Syllable Structure #> 9930 Syllable Structure #> 9938 Syllable Structure #> 9955 Syllable Structure #> 9980 Syllable Structure #> 9999 Syllable Structure #> 10016 Syllable Structure #> 10077 Syllable Structure #> 10108 Syllable Structure #> 10128 Syllable Structure #> 10154 Zero Copula for Predicate Nominals #> 10163 Zero Copula for Predicate Nominals #> 10168 Zero Copula for Predicate Nominals #> 10172 Zero Copula for Predicate Nominals #> 10201 Zero Copula for Predicate Nominals #> 10269 Zero Copula for Predicate Nominals #> 10276 Zero Copula for Predicate Nominals #> 10291 Zero Copula for Predicate Nominals #> 10296 Zero Copula for Predicate Nominals #> 10349 Zero Copula for Predicate Nominals #> 10385 Zero Copula for Predicate Nominals #> 10398 Zero Copula for Predicate Nominals #> 10478 Zero Copula for Predicate Nominals #> 10482 Zero Copula for Predicate Nominals #> 10538 Comparative Constructions #> 10578 Comparative Constructions #> 10637 Comparative Constructions #> 10659 Comparative Constructions #> 10719 Relativization on Subjects #> 10723 Relativization on Subjects #> 10724 Relativization on Subjects #> 10725 Relativization on Subjects #> 10726 Relativization on Subjects #> 10730 Relativization on Subjects #> 10758 Relativization on Subjects #> 10759 Relativization on Subjects #> 10763 Relativization on Subjects #> 10766 Relativization on Subjects #> 10767 Relativization on Subjects #> 10777 Relativization on Subjects #> 10794 Relativization on Subjects #> 10806 Relativization on Subjects #> 10822 Relativization on Subjects #> 10859 Relativization on Subjects #> 10885 Relativization on Obliques #> 10892 Relativization on Obliques #> 10908 Relativization on Obliques #> 10918 Relativization on Obliques #> 10928 Relativization on Obliques #> 10936 Relativization on Obliques #> 10942 Relativization on Obliques #> 10950 Relativization on Obliques #> 10967 Relativization on Obliques #> 10968 Relativization on Obliques #> 10969 Relativization on Obliques #> 10972 Relativization on Obliques #> 10987 'Want' Complement Subjects #> 11020 'Want' Complement Subjects #> 11049 'Want' Complement Subjects #> 11072 'Want' Complement Subjects #> 11088 'Want' Complement Subjects #> 11126 'Want' Complement Subjects #> 11131 'Want' Complement Subjects #> 11156 'Want' Complement Subjects #> 11161 'Want' Complement Subjects #> 11206 'Want' Complement Subjects #> 11208 'Want' Complement Subjects #> 11228 'Want' Complement Subjects #> 11251 'Want' Complement Subjects #> 11287 Purpose Clauses #> 11300 Purpose Clauses #> 11301 Purpose Clauses #> 11318 Purpose Clauses #> 11321 Purpose Clauses #> 11350 Purpose Clauses #> 11372 Purpose Clauses #> 11396 Purpose Clauses #> 11398 Purpose Clauses #> 11401 Purpose Clauses #> 11424 Purpose Clauses #> 11435 'When' Clauses #> 11439 'When' Clauses #> 11446 'When' Clauses #> 11456 'When' Clauses #> 11469 'When' Clauses #> 11482 'When' Clauses #> 11499 'When' Clauses #> 11516 'When' Clauses #> 11520 'When' Clauses #> 11526 'When' Clauses #> 11535 'When' Clauses #> 11565 'When' Clauses #> 11570 'When' Clauses #> 11586 'When' Clauses #> 11596 'When' Clauses #> 11598 'When' Clauses #> 11619 Reason Clauses #> 11620 Reason Clauses #> 11640 Reason Clauses #> 11648 Reason Clauses #> 11650 Reason Clauses #> 11655 Reason Clauses #> 11666 Reason Clauses #> 11679 Reason Clauses #> 11690 Reason Clauses #> 11695 Reason Clauses #> 11712 Reason Clauses #> 11717 Reason Clauses #> 11733 Reason Clauses #> 11749 Reason Clauses #> 11751 Reason Clauses #> 11762 Reason Clauses #> 11792 Utterance Complement Clauses #> 11793 Utterance Complement Clauses #> 11802 Utterance Complement Clauses #> 11804 Utterance Complement Clauses #> 11828 Utterance Complement Clauses #> 11849 Utterance Complement Clauses #> 11864 Utterance Complement Clauses #> 11866 Utterance Complement Clauses #> 11891 Utterance Complement Clauses #> 11900 Utterance Complement Clauses #> 11915 Utterance Complement Clauses #> 11920 Hand and Arm #> 12050 Hand and Arm #> 12060 Hand and Arm #> 12168 Hand and Arm #> 12178 Hand and Arm #> 12209 Hand and Arm #> 12231 Hand and Arm #> 12369 Hand and Arm #> 12425 Hand and Arm #> 12442 Hand and Arm #> 12531 Hand and Arm #> 12542 Tone #> 12564 Tone #> 12577 Tone #> 12589 Tone #> 12615 Tone #> 12644 Tone #> 12699 Tone #> 12744 Tone #> 12769 Tone #> 12770 Tone #> 12793 Tone #> 12872 Tone #> 12899 Tone #> 12920 Tone #> 12946 Tone #> 12961 Tone #> 12996 Tone #> 13000 Tone #> 13050 Tone #> 13069 Finger and Hand #> 13202 Finger and Hand #> 13208 Finger and Hand #> 13275 Finger and Hand #> 13328 Finger and Hand #> 13355 Finger and Hand #> 13556 Finger and Hand #> 13576 Finger and Hand #> 13602 Finger and Hand #> 13603 Finger and Hand #> 13707 Cultural Categories of Languages with Identity of 'Finger' and 'Hand' #> 13735 Numeral Bases #> 13753 Numeral Bases #> 13759 Numeral Bases #> 13802 Numeral Bases #> 13811 Numeral Bases #> 13820 Numeral Bases #> 13821 Numeral Bases #> 13824 Numeral Bases #> 13841 Numeral Bases #> 13868 Numeral Bases #> 13886 Numeral Bases #> 13896 Numeral Bases #> 13906 Numeral Bases #> 13913 Numeral Bases #> 13939 Number of Non-Derived Basic Colour Categories #> 14030 Number of Non-Derived Basic Colour Categories #> 14049 Number of Basic Colour Categories #> 14158 Number of Basic Colour Categories #> 14181 Green and Blue #> 14258 Green and Blue #> 14346 Red and Yellow #> 14384 Red and Yellow #> 14415 M-T Pronouns #> 14426 M-T Pronouns #> 14431 M-T Pronouns #> 14466 M-T Pronouns #> 14479 M-T Pronouns #> 14487 M-T Pronouns #> 14493 M-T Pronouns #> 14500 M-T Pronouns #> 14520 M-T Pronouns #> 14533 M-T Pronouns #> 14534 M-T Pronouns #> 14540 M-T Pronouns #> 14556 M-T Pronouns #> 14557 M-T Pronouns #> 14565 M-T Pronouns #> 14568 M-T Pronouns #> 14569 M-T Pronouns #> 14597 M-T Pronouns #> 14599 M-T Pronouns #> 14616 M-T Pronouns #> 14631 M in First Person Singular #> 14647 M in First Person Singular #> 14648 M in First Person Singular #> 14650 M in First Person Singular #> 14655 M in First Person Singular #> 14658 M in First Person Singular #> 14665 M in First Person Singular #> 14678 M in First Person Singular #> 14679 M in First Person Singular #> 14681 M in First Person Singular #> 14683 M in First Person Singular #> 14712 M in First Person Singular #> 14726 M in First Person Singular #> 14743 M in First Person Singular #> 14756 M in First Person Singular #> 14769 M in First Person Singular #> 14790 M in First Person Singular #> 14797 M in First Person Singular #> 14827 M in First Person Singular #> 14860 M in First Person Singular #> 14865 N-M Pronouns #> 14903 N-M Pronouns #> 14906 N-M Pronouns #> 14920 N-M Pronouns #> 14926 N-M Pronouns #> 14931 N-M Pronouns #> 14955 N-M Pronouns #> 14957 N-M Pronouns #> 14981 N-M Pronouns #> 14982 N-M Pronouns #> 14994 N-M Pronouns #> 14999 N-M Pronouns #> 15014 N-M Pronouns #> 15039 N-M Pronouns #> 15041 N-M Pronouns #> 15045 N-M Pronouns #> 15047 N-M Pronouns #> 15049 N-M Pronouns #> 15059 N-M Pronouns #> 15061 N-M Pronouns #> 15092 M in Second Person Singular #> 15108 M in Second Person Singular #> 15116 M in Second Person Singular #> 15118 M in Second Person Singular #> 15120 M in Second Person Singular #> 15150 M in Second Person Singular #> 15151 M in Second Person Singular #> 15161 M in Second Person Singular #> 15173 M in Second Person Singular #> 15174 M in Second Person Singular #> 15204 M in Second Person Singular #> 15209 M in Second Person Singular #> 15210 M in Second Person Singular #> 15237 M in Second Person Singular #> 15243 M in Second Person Singular #> 15249 M in Second Person Singular #> 15253 M in Second Person Singular #> 15291 M in Second Person Singular #> 15301 M in Second Person Singular #> 15306 M in Second Person Singular #> 15327 Tea #> 15368 Tea #> 15404 Tea #> 15405 Tea #> 15417 Tea #> 15530 Tea #> 15538 Tea #> 15619 Fixed Stress Locations #> 15631 Fixed Stress Locations #> 15643 Fixed Stress Locations #> 15644 Fixed Stress Locations #> 15668 Fixed Stress Locations #> 15671 Fixed Stress Locations #> 15710 Fixed Stress Locations #> 15742 Fixed Stress Locations #> 15758 Fixed Stress Locations #> 15837 Fixed Stress Locations #> 15894 Fixed Stress Locations #> 15976 Fixed Stress Locations #> 15996 Fixed Stress Locations #> 16024 Fixed Stress Locations #> 16061 Fixed Stress Locations #> 16173 Para-Linguistic Usages of Clicks #> 16187 Para-Linguistic Usages of Clicks #> 16216 Para-Linguistic Usages of Clicks #> 16235 Para-Linguistic Usages of Clicks #> 16264 Para-Linguistic Usages of Clicks #> 16331 Order of Negative Morpheme and Verb #> 16350 Order of Negative Morpheme and Verb #> 16391 Order of Negative Morpheme and Verb #> 16477 Order of Negative Morpheme and Verb #> 16509 Order of Negative Morpheme and Verb #> 16512 Order of Negative Morpheme and Verb #> 16616 Order of Negative Morpheme and Verb #> 16679 Order of Negative Morpheme and Verb #> 16780 Order of Negative Morpheme and Verb #> 16781 Order of Negative Morpheme and Verb #> 16812 Order of Negative Morpheme and Verb #> 16826 Order of Negative Morpheme and Verb #> 16898 Order of Negative Morpheme and Verb #> 16923 Order of Negative Morpheme and Verb #> 16943 Order of Negative Morpheme and Verb #> 16953 Order of Negative Morpheme and Verb #> 17008 Order of Negative Morpheme and Verb #> 17283 Order of Negative Morpheme and Verb #> 17396 Order of Negative Morpheme and Verb #> 17510 Order of Negative Morpheme and Verb #> 17672 Obligatory Double Negation #> 17687 Obligatory Double Negation #> 17711 Obligatory Double Negation #> 17719 Optional Double Negation #> 17733 Optional Double Negation #> 17761 Optional Double Negation #> 17840 Preverbal Negative Morphemes #> 17848 Preverbal Negative Morphemes #> 17885 Preverbal Negative Morphemes #> 17920 Preverbal Negative Morphemes #> 17934 Preverbal Negative Morphemes #> 17948 Preverbal Negative Morphemes #> 17974 Preverbal Negative Morphemes #> 17994 Preverbal Negative Morphemes #> 18000 Preverbal Negative Morphemes #> 18022 Preverbal Negative Morphemes #> 18232 Preverbal Negative Morphemes #> 18278 Preverbal Negative Morphemes #> 18416 Preverbal Negative Morphemes #> 18514 Preverbal Negative Morphemes #> 18570 Preverbal Negative Morphemes #> 18627 Preverbal Negative Morphemes #> 18630 Preverbal Negative Morphemes #> 18717 Preverbal Negative Morphemes #> 18885 Preverbal Negative Morphemes #> 18922 Preverbal Negative Morphemes #> 19221 Postverbal Negative Morphemes #> 19281 Postverbal Negative Morphemes #> 19425 Postverbal Negative Morphemes #> 19472 Postverbal Negative Morphemes #> 19476 Postverbal Negative Morphemes #> 19613 Postverbal Negative Morphemes #> 19699 Postverbal Negative Morphemes #> 19758 Postverbal Negative Morphemes #> 19776 Postverbal Negative Morphemes #> 19779 Postverbal Negative Morphemes #> 19903 Postverbal Negative Morphemes #> 19944 Postverbal Negative Morphemes #> 20079 Postverbal Negative Morphemes #> 20105 Postverbal Negative Morphemes #> 20152 Postverbal Negative Morphemes #> 20178 Postverbal Negative Morphemes #> 20314 Postverbal Negative Morphemes #> 20379 Postverbal Negative Morphemes #> 20428 Postverbal Negative Morphemes #> 20436 Postverbal Negative Morphemes #> 20457 Minor morphological means of signaling negation #> 20465 Minor morphological means of signaling negation #> 20641 Minor morphological means of signaling negation #> 20671 Minor morphological means of signaling negation #> 20673 Minor morphological means of signaling negation #> 20695 Minor morphological means of signaling negation #> 20764 Minor morphological means of signaling negation #> 20798 Minor morphological means of signaling negation #> 20957 Minor morphological means of signaling negation #> 20980 Minor morphological means of signaling negation #> 21074 Minor morphological means of signaling negation #> 21138 Minor morphological means of signaling negation #> 21255 Minor morphological means of signaling negation #> 21291 Minor morphological means of signaling negation #> 21331 Minor morphological means of signaling negation #> 21539 Minor morphological means of signaling negation #> 21637 Minor morphological means of signaling negation #> 21657 Minor morphological means of signaling negation #> 21660 Minor morphological means of signaling negation #> 21684 Minor morphological means of signaling negation #> 21794 Position of Negative Word With Respect to Subject, Object, and Verb #> 21842 Position of Negative Word With Respect to Subject, Object, and Verb #> 21854 Position of Negative Word With Respect to Subject, Object, and Verb #> 21917 Position of Negative Word With Respect to Subject, Object, and Verb #> 21928 Position of Negative Word With Respect to Subject, Object, and Verb #> 21983 Position of Negative Word With Respect to Subject, Object, and Verb #> 22022 Position of Negative Word With Respect to Subject, Object, and Verb #> 22047 Position of Negative Word With Respect to Subject, Object, and Verb #> 22123 Position of Negative Word With Respect to Subject, Object, and Verb #> 22178 Position of Negative Word With Respect to Subject, Object, and Verb #> 22220 Position of Negative Word With Respect to Subject, Object, and Verb #> 22284 Position of Negative Word With Respect to Subject, Object, and Verb #> 22315 Position of Negative Word With Respect to Subject, Object, and Verb #> 22451 Position of Negative Word With Respect to Subject, Object, and Verb #> 22621 Position of Negative Word With Respect to Subject, Object, and Verb #> 22785 Position of Negative Word With Respect to Subject, Object, and Verb #> 22798 Position of Negative Word With Respect to Subject, Object, and Verb #> 22829 Position of Negative Word With Respect to Subject, Object, and Verb #> 22856 Position of Negative Word With Respect to Subject, Object, and Verb #> 22936 Position of Negative Word With Respect to Subject, Object, and Verb #> 22968 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 22997 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23024 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23028 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23034 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23059 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23112 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23115 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23125 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23243 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23275 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23342 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23448 Position of negative words relative to beginning and end of clause and with respect to adjacency to verb #> 23649 The Position of Negative Morphemes in SVO Languages #> 23777 The Position of Negative Morphemes in SVO Languages #> 23822 The Position of Negative Morphemes in SVO Languages #> 23861 The Position of Negative Morphemes in SVO Languages #> 24090 Multiple Negative Constructions in SVO Languages #> 24175 Optional Double Negation in SVO languages #> 24212 NegSVO Order #> 24272 NegSVO Order #> 24297 NegSVO Order #> 24549 NegSVO Order #> 24640 SNegVO Order #> 24661 SNegVO Order #> 24664 SNegVO Order #> 24838 SNegVO Order #> 25213 SVNegO Order #> 25390 SVNegO Order #> 25447 SVNegO Order #> 25475 SVNegO Order #> 25620 SVONeg Order #> 25685 SVONeg Order #> 25704 SVONeg Order #> 25874 SVONeg Order #> 26034 The Position of Negative Morphemes in SOV Languages #> 26054 The Position of Negative Morphemes in SOV Languages #> 26064 The Position of Negative Morphemes in SOV Languages #> 26068 The Position of Negative Morphemes in SOV Languages #> 26084 The Position of Negative Morphemes in SOV Languages #> 26111 The Position of Negative Morphemes in SOV Languages #> 26167 The Position of Negative Morphemes in SOV Languages #> 26235 The Position of Negative Morphemes in SOV Languages #> 26240 The Position of Negative Morphemes in SOV Languages #> 26253 The Position of Negative Morphemes in SOV Languages #> 26366 The Position of Negative Morphemes in SOV Languages #> 26416 The Position of Negative Morphemes in SOV Languages #> 26464 The Position of Negative Morphemes in SOV Languages #> 26519 Multiple Negative Constructions in SOV Languages #> 26556 Multiple Negative Constructions in SOV Languages #> 26588 Obligatory Double Negation in SOV languages #> 26594 Obligatory Double Negation in SOV languages #> 26606 Obligatory Double Negation in SOV languages #> 26624 Optional Double Negation in SOV languages #> 26651 NegSOV Order #> 26659 NegSOV Order #> 26669 NegSOV Order #> 26720 NegSOV Order #> 26726 NegSOV Order #> 26740 NegSOV Order #> 26797 NegSOV Order #> 26803 NegSOV Order #> 26813 NegSOV Order #> 26853 NegSOV Order #> 26971 NegSOV Order #> 26996 NegSOV Order #> 26997 NegSOV Order #> 27066 SNegOV Order #> 27086 SNegOV Order #> 27103 SNegOV Order #> 27114 SNegOV Order #> 27115 SNegOV Order #> 27231 SNegOV Order #> 27232 SNegOV Order #> 27283 SNegOV Order #> 27346 SNegOV Order #> 27401 SNegOV Order #> 27407 SNegOV Order #> 27416 SNegOV Order #> 27431 SNegOV Order #> 27471 SONegV Order #> 27481 SONegV Order #> 27521 SONegV Order #> 27546 SONegV Order #> 27564 SONegV Order #> 27607 SONegV Order #> 27625 SONegV Order #> 27703 SONegV Order #> 27729 SONegV Order #> 27746 SONegV Order #> 27751 SONegV Order #> 27788 SONegV Order #> 27824 SONegV Order #> 27941 SOVNeg Order #> 27942 SOVNeg Order #> 27958 SOVNeg Order #> 28006 SOVNeg Order #> 28050 SOVNeg Order #> 28064 SOVNeg Order #> 28103 SOVNeg Order #> 28215 SOVNeg Order #> 28226 SOVNeg Order #> 28247 SOVNeg Order #> 28293 SOVNeg Order #> 28317 SOVNeg Order #> 28323 SOVNeg Order #> 28388 The Position of Negative Morphemes in Verb-Initial Languages #> 28444 The Position of Negative Morphemes in Verb-Initial Languages #> 28466 The Position of Negative Morphemes in Verb-Initial Languages #> 28513 Double negation in verb-initial languages #> 28577 Verb-Initial with Preverbal Negative #> 28625 Verb-Initial with Preverbal Negative #> 28628 Verb-Initial with Preverbal Negative #> 28694 Verb-Initial with Negative that is Immediately Postverbal or between Subject and Object #> 28720 Verb-Initial with Negative that is Immediately Postverbal or between Subject and Object #> 28764 Verb-Initial with Negative that is Immediately Postverbal or between Subject and Object #> 28880 Verb-Initial with Clause-Final Negative #> 28962 Verb-Initial with Clause-Final Negative #> 28966 Verb-Initial with Clause-Final Negative #> 28993 The Position of Negative Morphemes in Object-Initial Languages #> 29047 Weight-Sensitive Stress #> 29058 Weight-Sensitive Stress #> 29100 Weight-Sensitive Stress #> 29114 Weight-Sensitive Stress #> 29115 Weight-Sensitive Stress #> 29134 Weight-Sensitive Stress #> 29183 Weight-Sensitive Stress #> 29188 Weight-Sensitive Stress #> 29213 Weight-Sensitive Stress #> 29242 Weight-Sensitive Stress #> 29297 Weight-Sensitive Stress #> 29308 Weight-Sensitive Stress #> 29370 Weight-Sensitive Stress #> 29405 Weight-Sensitive Stress #> 29416 Weight-Sensitive Stress #> 29553 Weight Factors in Weight-Sensitive Stress Systems #> 29589 Weight Factors in Weight-Sensitive Stress Systems #> 29701 Weight Factors in Weight-Sensitive Stress Systems #> 29705 Weight Factors in Weight-Sensitive Stress Systems #> 29742 Weight Factors in Weight-Sensitive Stress Systems #> 29759 Weight Factors in Weight-Sensitive Stress Systems #> 29785 Weight Factors in Weight-Sensitive Stress Systems #> 29804 Weight Factors in Weight-Sensitive Stress Systems #> 29836 Weight Factors in Weight-Sensitive Stress Systems #> 29865 Weight Factors in Weight-Sensitive Stress Systems #> 29904 Weight Factors in Weight-Sensitive Stress Systems #> 29906 Weight Factors in Weight-Sensitive Stress Systems #> 29926 Weight Factors in Weight-Sensitive Stress Systems #> 29945 Weight Factors in Weight-Sensitive Stress Systems #> 29987 Weight Factors in Weight-Sensitive Stress Systems #> 30011 Rhythm Types #> 30030 Rhythm Types #> 30095 Rhythm Types #> 30123 Rhythm Types #> 30180 Rhythm Types #> 30192 Rhythm Types #> 30239 Rhythm Types #> 30279 Rhythm Types #> 30299 Rhythm Types #> 30497 Absence of Common Consonants #> 30502 Absence of Common Consonants #> 30548 Absence of Common Consonants #> 30582 Absence of Common Consonants #> 30610 Absence of Common Consonants #> 30621 Absence of Common Consonants #> 30655 Absence of Common Consonants #> 30662 Absence of Common Consonants #> 30669 Absence of Common Consonants #> 30670 Absence of Common Consonants #> 30718 Absence of Common Consonants #> 30731 Absence of Common Consonants #> 30744 Absence of Common Consonants #> 30756 Absence of Common Consonants #> 30787 Absence of Common Consonants #> 30796 Absence of Common Consonants #> 30821 Absence of Common Consonants #> 30822 Absence of Common Consonants #> 30856 Absence of Common Consonants #> 30877 Absence of Common Consonants #> 30914 Presence of Uncommon Consonants #> 30915 Presence of Uncommon Consonants #> 30961 Presence of Uncommon Consonants #> 30968 Presence of Uncommon Consonants #> 30974 Presence of Uncommon Consonants #> 30986 Presence of Uncommon Consonants #> 31014 Presence of Uncommon Consonants #> 31021 Presence of Uncommon Consonants #> 31041 Presence of Uncommon Consonants #> 31062 Presence of Uncommon Consonants #> 31091 Presence of Uncommon Consonants #> 31161 Presence of Uncommon Consonants #> 31219 Presence of Uncommon Consonants #> 31243 Presence of Uncommon Consonants #> 31246 Presence of Uncommon Consonants #> 31311 Presence of Uncommon Consonants #> 31317 Presence of Uncommon Consonants #> 31329 Presence of Uncommon Consonants #> 31388 Presence of Uncommon Consonants #> 31431 Presence of Uncommon Consonants #> 31489 Vowel Quality Inventories #> 31490 Vowel Quality Inventories #> 31527 Vowel Quality Inventories #> 31532 Vowel Quality Inventories #> 31539 Vowel Quality Inventories #> 31540 Vowel Quality Inventories #> 31543 Vowel Quality Inventories #> 31564 Vowel Quality Inventories #> 31574 Vowel Quality Inventories #> 31633 Vowel Quality Inventories #> 31659 Vowel Quality Inventories #> 31665 Vowel Quality Inventories #> 31675 Vowel Quality Inventories #> 31676 Vowel Quality Inventories #> 31716 Vowel Quality Inventories #> 31763 Vowel Quality Inventories #> 31783 Vowel Quality Inventories #> 31877 Vowel Quality Inventories #> 31907 Vowel Quality Inventories #> 31917 Vowel Quality Inventories #> 32031 Fusion of Selected Inflectional Formatives #> 32036 Fusion of Selected Inflectional Formatives #> 32039 Fusion of Selected Inflectional Formatives #> 32062 Fusion of Selected Inflectional Formatives #> 32071 Fusion of Selected Inflectional Formatives #> 32074 Fusion of Selected Inflectional Formatives #> 32075 Fusion of Selected Inflectional Formatives #> 32077 Fusion of Selected Inflectional Formatives #> 32097 Fusion of Selected Inflectional Formatives #> 32105 Fusion of Selected Inflectional Formatives #> 32109 Fusion of Selected Inflectional Formatives #> 32116 Fusion of Selected Inflectional Formatives #> 32126 Fusion of Selected Inflectional Formatives #> 32129 Fusion of Selected Inflectional Formatives #> 32140 Fusion of Selected Inflectional Formatives #> 32142 Fusion of Selected Inflectional Formatives #> 32148 Fusion of Selected Inflectional Formatives #> 32179 Fusion of Selected Inflectional Formatives #> 32180 Fusion of Selected Inflectional Formatives #> 32181 Exponence of Selected Inflectional Formatives #> 32205 Exponence of Selected Inflectional Formatives #> 32213 Exponence of Selected Inflectional Formatives #> 32219 Exponence of Selected Inflectional Formatives #> 32223 Exponence of Selected Inflectional Formatives #> 32226 Exponence of Selected Inflectional Formatives #> 32227 Exponence of Selected Inflectional Formatives #> 32251 Exponence of Selected Inflectional Formatives #> 32265 Exponence of Selected Inflectional Formatives #> 32286 Exponence of Selected Inflectional Formatives #> 32290 Exponence of Selected Inflectional Formatives #> 32297 Exponence of Selected Inflectional Formatives #> 32306 Exponence of Selected Inflectional Formatives #> 32310 Exponence of Selected Inflectional Formatives #> 32319 Exponence of Selected Inflectional Formatives #> 32324 Exponence of Selected Inflectional Formatives #> 32325 Exponence of Selected Inflectional Formatives #> 32336 Exponence of Selected Inflectional Formatives #> 32341 Exponence of Selected Inflectional Formatives #> 32366 Exponence of Tense-Aspect-Mood Inflection #> 32368 Exponence of Tense-Aspect-Mood Inflection #> 32405 Exponence of Tense-Aspect-Mood Inflection #> 32415 Exponence of Tense-Aspect-Mood Inflection #> 32417 Exponence of Tense-Aspect-Mood Inflection #> 32422 Exponence of Tense-Aspect-Mood Inflection #> 32430 Exponence of Tense-Aspect-Mood Inflection #> 32445 Exponence of Tense-Aspect-Mood Inflection #> 32447 Exponence of Tense-Aspect-Mood Inflection #> 32450 Exponence of Tense-Aspect-Mood Inflection #> 32455 Exponence of Tense-Aspect-Mood Inflection #> 32456 Exponence of Tense-Aspect-Mood Inflection #> 32457 Exponence of Tense-Aspect-Mood Inflection #> 32467 Exponence of Tense-Aspect-Mood Inflection #> 32470 Exponence of Tense-Aspect-Mood Inflection #> 32472 Exponence of Tense-Aspect-Mood Inflection #> 32473 Exponence of Tense-Aspect-Mood Inflection #> 32492 Exponence of Tense-Aspect-Mood Inflection #> 32499 Exponence of Tense-Aspect-Mood Inflection #> 32513 Inflectional Synthesis of the Verb #> 32529 Inflectional Synthesis of the Verb #> 32531 Inflectional Synthesis of the Verb #> 32571 Inflectional Synthesis of the Verb #> 32585 Inflectional Synthesis of the Verb #> 32586 Inflectional Synthesis of the Verb #> 32587 Inflectional Synthesis of the Verb #> 32591 Inflectional Synthesis of the Verb #> 32602 Inflectional Synthesis of the Verb #> 32606 Inflectional Synthesis of the Verb #> 32610 Inflectional Synthesis of the Verb #> 32617 Inflectional Synthesis of the Verb #> 32629 Inflectional Synthesis of the Verb #> 32632 Inflectional Synthesis of the Verb #> 32633 Inflectional Synthesis of the Verb #> 32643 Inflectional Synthesis of the Verb #> 32644 Inflectional Synthesis of the Verb #> 32646 Inflectional Synthesis of the Verb #> 32647 Inflectional Synthesis of the Verb #> 32657 Locus of Marking in the Clause #> 32659 Locus of Marking in the Clause #> 32661 Locus of Marking in the Clause #> 32670 Locus of Marking in the Clause #> 32680 Locus of Marking in the Clause #> 32698 Locus of Marking in the Clause #> 32702 Locus of Marking in the Clause #> 32721 Locus of Marking in the Clause #> 32727 Locus of Marking in the Clause #> 32764 Locus of Marking in the Clause #> 32774 Locus of Marking in the Clause #> 32791 Locus of Marking in the Clause #> 32795 Locus of Marking in the Clause #> 32809 Locus of Marking in the Clause #> 32824 Locus of Marking in the Clause #> 32845 Locus of Marking in the Clause #> 32849 Locus of Marking in the Clause #> 32853 Locus of Marking in the Clause #> 32861 Locus of Marking in the Clause #> 32893 Locus of Marking in Possessive Noun Phrases #> 32910 Locus of Marking in Possessive Noun Phrases #> 32913 Locus of Marking in Possessive Noun Phrases #> 32919 Locus of Marking in Possessive Noun Phrases #> 32935 Locus of Marking in Possessive Noun Phrases #> 32942 Locus of Marking in Possessive Noun Phrases #> 32950 Locus of Marking in Possessive Noun Phrases #> 32959 Locus of Marking in Possessive Noun Phrases #> 32961 Locus of Marking in Possessive Noun Phrases #> 32990 Locus of Marking in Possessive Noun Phrases #> 33020 Locus of Marking in Possessive Noun Phrases #> 33021 Locus of Marking in Possessive Noun Phrases #> 33025 Locus of Marking in Possessive Noun Phrases #> 33045 Locus of Marking in Possessive Noun Phrases #> 33054 Locus of Marking in Possessive Noun Phrases #> 33055 Locus of Marking in Possessive Noun Phrases #> 33104 Locus of Marking in Possessive Noun Phrases #> 33106 Locus of Marking in Possessive Noun Phrases #> 33117 Locus of Marking in Possessive Noun Phrases #> 33131 Locus of Marking: Whole-language Typology #> 33141 Locus of Marking: Whole-language Typology #> 33144 Locus of Marking: Whole-language Typology #> 33151 Locus of Marking: Whole-language Typology #> 33180 Locus of Marking: Whole-language Typology #> 33195 Locus of Marking: Whole-language Typology #> 33201 Locus of Marking: Whole-language Typology #> 33234 Locus of Marking: Whole-language Typology #> 33249 Locus of Marking: Whole-language Typology #> 33267 Locus of Marking: Whole-language Typology #> 33275 Locus of Marking: Whole-language Typology #> 33278 Locus of Marking: Whole-language Typology #> 33289 Locus of Marking: Whole-language Typology #> 33291 Locus of Marking: Whole-language Typology #> 33299 Locus of Marking: Whole-language Typology #> 33310 Locus of Marking: Whole-language Typology #> 33318 Locus of Marking: Whole-language Typology #> 33337 Locus of Marking: Whole-language Typology #> 33346 Locus of Marking: Whole-language Typology #> 33358 Zero Marking of A and P Arguments #> 33362 Zero Marking of A and P Arguments #> 33374 Zero Marking of A and P Arguments #> 33388 Zero Marking of A and P Arguments #> 33413 Zero Marking of A and P Arguments #> 33429 Zero Marking of A and P Arguments #> 33436 Zero Marking of A and P Arguments #> 33448 Zero Marking of A and P Arguments #> 33450 Zero Marking of A and P Arguments #> 33454 Zero Marking of A and P Arguments #> 33473 Zero Marking of A and P Arguments #> 33484 Zero Marking of A and P Arguments #> 33538 Zero Marking of A and P Arguments #> 33546 Zero Marking of A and P Arguments #> 33569 Zero Marking of A and P Arguments #> 33570 Zero Marking of A and P Arguments #> 33573 Zero Marking of A and P Arguments #> 33574 Zero Marking of A and P Arguments #> 33584 Zero Marking of A and P Arguments #> 33592 Prefixing vs. Suffixing in Inflectional Morphology #> 33682 Prefixing vs. Suffixing in Inflectional Morphology #> 33718 Prefixing vs. Suffixing in Inflectional Morphology #> 33743 Prefixing vs. Suffixing in Inflectional Morphology #> 33859 Prefixing vs. Suffixing in Inflectional Morphology #> 33953 Prefixing vs. Suffixing in Inflectional Morphology #> 34015 Prefixing vs. Suffixing in Inflectional Morphology #> 34018 Prefixing vs. Suffixing in Inflectional Morphology #> 34028 Prefixing vs. Suffixing in Inflectional Morphology #> 34112 Prefixing vs. Suffixing in Inflectional Morphology #> 34139 Prefixing vs. Suffixing in Inflectional Morphology #> 34305 Prefixing vs. Suffixing in Inflectional Morphology #> 34311 Prefixing vs. Suffixing in Inflectional Morphology #> 34327 Prefixing vs. Suffixing in Inflectional Morphology #> 34365 Prefixing vs. Suffixing in Inflectional Morphology #> 34371 Prefixing vs. Suffixing in Inflectional Morphology #> 34463 Prefixing vs. Suffixing in Inflectional Morphology #> 34467 Prefixing vs. Suffixing in Inflectional Morphology #> 34486 Prefixing vs. Suffixing in Inflectional Morphology #> 34543 Prefixing vs. Suffixing in Inflectional Morphology #> 34565 Reduplication #> 34640 Reduplication #> 34648 Reduplication #> 34702 Reduplication #> 34739 Reduplication #> 34742 Reduplication #> 34763 Reduplication #> 34764 Reduplication #> 34769 Reduplication #> 34775 Reduplication #> 34821 Reduplication #> 34853 Reduplication #> 34875 Reduplication #> 34903 Reduplication #> 34922 Reduplication #> 34924 Reduplication #> 34925 Reduplication #> 34937 Case Syncretism #> 34941 Case Syncretism #> 34942 Case Syncretism #> 34961 Case Syncretism #> 34995 Case Syncretism #> 34996 Case Syncretism #> 34997 Case Syncretism #> 35002 Case Syncretism #> 35009 Case Syncretism #> 35015 Case Syncretism #> 35028 Case Syncretism #> 35041 Case Syncretism #> 35045 Case Syncretism #> 35056 Case Syncretism #> 35075 Case Syncretism #> 35086 Case Syncretism #> 35105 Case Syncretism #> 35117 Case Syncretism #> 35124 Case Syncretism #> 35131 Syncretism in Verbal Person/Number Marking #> 35134 Syncretism in Verbal Person/Number Marking #> 35139 Syncretism in Verbal Person/Number Marking #> 35145 Syncretism in Verbal Person/Number Marking #> 35158 Syncretism in Verbal Person/Number Marking #> 35161 Syncretism in Verbal Person/Number Marking #> 35194 Syncretism in Verbal Person/Number Marking #> 35204 Syncretism in Verbal Person/Number Marking #> 35209 Syncretism in Verbal Person/Number Marking #> 35225 Syncretism in Verbal Person/Number Marking #> 35240 Syncretism in Verbal Person/Number Marking #> 35251 Syncretism in Verbal Person/Number Marking #> 35256 Syncretism in Verbal Person/Number Marking #> 35274 Syncretism in Verbal Person/Number Marking #> 35282 Syncretism in Verbal Person/Number Marking #> 35286 Syncretism in Verbal Person/Number Marking #> 35297 Syncretism in Verbal Person/Number Marking #> 35307 Syncretism in Verbal Person/Number Marking #> 35312 Syncretism in Verbal Person/Number Marking #> 35318 Syncretism in Verbal Person/Number Marking #> 35382 Consonant-Vowel Ratio #> 35414 Consonant-Vowel Ratio #> 35431 Consonant-Vowel Ratio #> 35471 Consonant-Vowel Ratio #> 35492 Consonant-Vowel Ratio #> 35499 Consonant-Vowel Ratio #> 35528 Consonant-Vowel Ratio #> 35547 Consonant-Vowel Ratio #> 35574 Consonant-Vowel Ratio #> 35647 Consonant-Vowel Ratio #> 35695 Consonant-Vowel Ratio #> 35699 Consonant-Vowel Ratio #> 35723 Consonant-Vowel Ratio #> 35740 Consonant-Vowel Ratio #> 35742 Consonant-Vowel Ratio #> 35764 Consonant-Vowel Ratio #> 35813 Consonant-Vowel Ratio #> 35814 Consonant-Vowel Ratio #> 35831 Consonant-Vowel Ratio #> 35868 Consonant-Vowel Ratio #> 35903 Number of Genders #> 35904 Number of Genders #> 35944 Number of Genders #> 35954 Number of Genders #> 35958 Number of Genders #> 35971 Number of Genders #> 35975 Number of Genders #> 36019 Number of Genders #> 36033 Number of Genders #> 36035 Number of Genders #> 36039 Number of Genders #> 36048 Number of Genders #> 36057 Number of Genders #> 36064 Number of Genders #> 36090 Number of Genders #> 36103 Number of Genders #> 36114 Number of Genders #> 36129 Number of Genders #> 36163 Sex-based and Non-sex-based Gender Systems #> 36186 Sex-based and Non-sex-based Gender Systems #> 36187 Sex-based and Non-sex-based Gender Systems #> 36188 Sex-based and Non-sex-based Gender Systems #> 36210 Sex-based and Non-sex-based Gender Systems #> 36232 Sex-based and Non-sex-based Gender Systems #> 36243 Sex-based and Non-sex-based Gender Systems #> 36263 Sex-based and Non-sex-based Gender Systems #> 36295 Sex-based and Non-sex-based Gender Systems #> 36297 Sex-based and Non-sex-based Gender Systems #> 36320 Sex-based and Non-sex-based Gender Systems #> 36332 Sex-based and Non-sex-based Gender Systems #> 36336 Sex-based and Non-sex-based Gender Systems #> 36338 Sex-based and Non-sex-based Gender Systems #> 36355 Sex-based and Non-sex-based Gender Systems #> 36364 Sex-based and Non-sex-based Gender Systems #> 36369 Sex-based and Non-sex-based Gender Systems #> 36391 Sex-based and Non-sex-based Gender Systems #> 36417 Systems of Gender Assignment #> 36448 Systems of Gender Assignment #> 36462 Systems of Gender Assignment #> 36480 Systems of Gender Assignment #> 36486 Systems of Gender Assignment #> 36521 Systems of Gender Assignment #> 36526 Systems of Gender Assignment #> 36530 Systems of Gender Assignment #> 36552 Systems of Gender Assignment #> 36560 Systems of Gender Assignment #> 36564 Systems of Gender Assignment #> 36568 Systems of Gender Assignment #> 36571 Systems of Gender Assignment #> 36601 Systems of Gender Assignment #> 36618 Systems of Gender Assignment #> 36644 Systems of Gender Assignment #> 36650 Systems of Gender Assignment #> 36656 Systems of Gender Assignment #> 36786 Coding of Nominal Plurality #> 36837 Coding of Nominal Plurality #> 36849 Coding of Nominal Plurality #> 36866 Coding of Nominal Plurality #> 36910 Coding of Nominal Plurality #> 36965 Coding of Nominal Plurality #> 37051 Coding of Nominal Plurality #> 37075 Coding of Nominal Plurality #> 37205 Coding of Nominal Plurality #> 37287 Coding of Nominal Plurality #> 37299 Coding of Nominal Plurality #> 37354 Coding of Nominal Plurality #> 37500 Coding of Nominal Plurality #> 37575 Coding of Nominal Plurality #> 37590 Coding of Nominal Plurality #> 37609 Coding of Nominal Plurality #> 37640 Coding of Nominal Plurality #> 37663 Coding of Nominal Plurality #> 37666 Coding of Nominal Plurality #> 37704 Coding of Nominal Plurality #> 37728 Occurrence of Nominal Plurality #> 37762 Occurrence of Nominal Plurality #> 37766 Occurrence of Nominal Plurality #> 37767 Occurrence of Nominal Plurality #> 37772 Occurrence of Nominal Plurality #> 37812 Occurrence of Nominal Plurality #> 37893 Occurrence of Nominal Plurality #> 37911 Occurrence of Nominal Plurality #> 37916 Occurrence of Nominal Plurality #> 37921 Occurrence of Nominal Plurality #> 37928 Occurrence of Nominal Plurality #> 37998 Occurrence of Nominal Plurality #> 38019 Plurality in Independent Personal Pronouns #> 38020 Plurality in Independent Personal Pronouns #> 38024 Plurality in Independent Personal Pronouns #> 38025 Plurality in Independent Personal Pronouns #> 38031 Plurality in Independent Personal Pronouns #> 38036 Plurality in Independent Personal Pronouns #> 38044 Plurality in Independent Personal Pronouns #> 38071 Plurality in Independent Personal Pronouns #> 38074 Plurality in Independent Personal Pronouns #> 38075 Plurality in Independent Personal Pronouns #> 38085 Plurality in Independent Personal Pronouns #> 38090 Plurality in Independent Personal Pronouns #> 38100 Plurality in Independent Personal Pronouns #> 38110 Plurality in Independent Personal Pronouns #> 38117 Plurality in Independent Personal Pronouns #> 38136 Plurality in Independent Personal Pronouns #> 38167 Plurality in Independent Personal Pronouns #> 38209 Plurality in Independent Personal Pronouns #> 38214 Plurality in Independent Personal Pronouns #> 38219 Plurality in Independent Personal Pronouns #> 38289 The Associative Plural #> 38324 The Associative Plural #> 38341 The Associative Plural #> 38405 The Associative Plural #> 38429 The Associative Plural #> 38445 The Associative Plural #> 38448 The Associative Plural #> 38467 The Associative Plural #> 38497 The Associative Plural #> 38499 The Associative Plural #> 38503 The Associative Plural #> 38504 The Associative Plural #> 38506 The Associative Plural #> 38563 Definite Articles #> 38578 Definite Articles #> 38584 Definite Articles #> 38585 Definite Articles #> 38592 Definite Articles #> 38630 Definite Articles #> 38655 Definite Articles #> 38708 Definite Articles #> 38797 Definite Articles #> 38801 Definite Articles #> 38954 Definite Articles #> 38974 Definite Articles #> 38988 Definite Articles #> 39062 Definite Articles #> 39065 Definite Articles #> 39070 Definite Articles #> 39078 Definite Articles #> 39124 Definite Articles #> 39140 Indefinite Articles #> 39144 Indefinite Articles #> 39280 Indefinite Articles #> 39380 Indefinite Articles #> 39391 Indefinite Articles #> 39442 Indefinite Articles #> 39454 Indefinite Articles #> 39465 Indefinite Articles #> 39509 Indefinite Articles #> 39557 Indefinite Articles #> 39581 Indefinite Articles #> 39589 Indefinite Articles #> 39601 Indefinite Articles #> 39603 Indefinite Articles #> 39615 Indefinite Articles #> 39656 Indefinite Articles #> 39668 Inclusive/Exclusive Distinction in Independent Pronouns #> 39674 Inclusive/Exclusive Distinction in Independent Pronouns #> 39676 Inclusive/Exclusive Distinction in Independent Pronouns #> 39678 Inclusive/Exclusive Distinction in Independent Pronouns #> 39700 Inclusive/Exclusive Distinction in Independent Pronouns #> 39718 Inclusive/Exclusive Distinction in Independent Pronouns #> 39720 Inclusive/Exclusive Distinction in Independent Pronouns #> 39728 Inclusive/Exclusive Distinction in Independent Pronouns #> 39745 Inclusive/Exclusive Distinction in Independent Pronouns #> 39750 Inclusive/Exclusive Distinction in Independent Pronouns #> 39751 Inclusive/Exclusive Distinction in Independent Pronouns #> 39759 Inclusive/Exclusive Distinction in Independent Pronouns #> 39778 Inclusive/Exclusive Distinction in Independent Pronouns #> 39790 Inclusive/Exclusive Distinction in Independent Pronouns #> 39797 Inclusive/Exclusive Distinction in Independent Pronouns #> 39808 Inclusive/Exclusive Distinction in Independent Pronouns #> 39818 Inclusive/Exclusive Distinction in Independent Pronouns #> 39826 Inclusive/Exclusive Distinction in Independent Pronouns #> 39850 Inclusive/Exclusive Distinction in Independent Pronouns #> 39853 Inclusive/Exclusive Distinction in Independent Pronouns #> 39901 Inclusive/Exclusive Forms in Pama-Nyungan #> 39944 Voicing in Plosives and Fricatives #> 39946 Voicing in Plosives and Fricatives #> 39951 Voicing in Plosives and Fricatives #> 39954 Voicing in Plosives and Fricatives #> 39981 Voicing in Plosives and Fricatives #> 40018 Voicing in Plosives and Fricatives #> 40019 Voicing in Plosives and Fricatives #> 40023 Voicing in Plosives and Fricatives #> 40105 Voicing in Plosives and Fricatives #> 40138 Voicing in Plosives and Fricatives #> 40147 Voicing in Plosives and Fricatives #> 40203 Voicing in Plosives and Fricatives #> 40218 Voicing in Plosives and Fricatives #> 40240 Voicing in Plosives and Fricatives #> 40290 Voicing in Plosives and Fricatives #> 40372 Voicing in Plosives and Fricatives #> 40403 Voicing in Plosives and Fricatives #> 40442 Voicing in Plosives and Fricatives #> 40455 Voicing in Plosives and Fricatives #> 40469 Voicing in Plosives and Fricatives #> 40509 Inclusive/Exclusive Distinction in Verbal Inflection #> 40512 Inclusive/Exclusive Distinction in Verbal Inflection #> 40517 Inclusive/Exclusive Distinction in Verbal Inflection #> 40519 Inclusive/Exclusive Distinction in Verbal Inflection #> 40521 Inclusive/Exclusive Distinction in Verbal Inflection #> 40538 Inclusive/Exclusive Distinction in Verbal Inflection #> 40550 Inclusive/Exclusive Distinction in Verbal Inflection #> 40554 Inclusive/Exclusive Distinction in Verbal Inflection #> 40575 Inclusive/Exclusive Distinction in Verbal Inflection #> 40606 Inclusive/Exclusive Distinction in Verbal Inflection #> 40613 Inclusive/Exclusive Distinction in Verbal Inflection #> 40625 Inclusive/Exclusive Distinction in Verbal Inflection #> 40638 Inclusive/Exclusive Distinction in Verbal Inflection #> 40642 Inclusive/Exclusive Distinction in Verbal Inflection #> 40648 Inclusive/Exclusive Distinction in Verbal Inflection #> 40653 Inclusive/Exclusive Distinction in Verbal Inflection #> 40670 Inclusive/Exclusive Distinction in Verbal Inflection #> 40675 Inclusive/Exclusive Distinction in Verbal Inflection #> 40680 Inclusive/Exclusive Distinction in Verbal Inflection #> 40702 Inclusive/Exclusive Distinction in Verbal Inflection #> 40705 Distance Contrasts in Demonstratives #> 40707 Distance Contrasts in Demonstratives #> 40731 Distance Contrasts in Demonstratives #> 40756 Distance Contrasts in Demonstratives #> 40761 Distance Contrasts in Demonstratives #> 40773 Distance Contrasts in Demonstratives #> 40778 Distance Contrasts in Demonstratives #> 40783 Distance Contrasts in Demonstratives #> 40789 Distance Contrasts in Demonstratives #> 40817 Distance Contrasts in Demonstratives #> 40824 Distance Contrasts in Demonstratives #> 40836 Distance Contrasts in Demonstratives #> 40878 Distance Contrasts in Demonstratives #> 40896 Distance Contrasts in Demonstratives #> 40908 Distance Contrasts in Demonstratives #> 40927 Distance Contrasts in Demonstratives #> 40936 Distance Contrasts in Demonstratives #> 40937 Distance Contrasts in Demonstratives #> 40940 Pronominal and Adnominal Demonstratives #> 40948 Pronominal and Adnominal Demonstratives #> 40969 Pronominal and Adnominal Demonstratives #> 40975 Pronominal and Adnominal Demonstratives #> 40983 Pronominal and Adnominal Demonstratives #> 41005 Pronominal and Adnominal Demonstratives #> 41016 Pronominal and Adnominal Demonstratives #> 41017 Pronominal and Adnominal Demonstratives #> 41020 Pronominal and Adnominal Demonstratives #> 41036 Pronominal and Adnominal Demonstratives #> 41041 Pronominal and Adnominal Demonstratives #> 41053 Pronominal and Adnominal Demonstratives #> 41057 Pronominal and Adnominal Demonstratives #> 41062 Pronominal and Adnominal Demonstratives #> 41063 Pronominal and Adnominal Demonstratives #> 41066 Pronominal and Adnominal Demonstratives #> 41071 Pronominal and Adnominal Demonstratives #> 41093 Pronominal and Adnominal Demonstratives #> 41148 Third Person Pronouns and Demonstratives #> 41150 Third Person Pronouns and Demonstratives #> 41153 Third Person Pronouns and Demonstratives #> 41160 Third Person Pronouns and Demonstratives #> 41163 Third Person Pronouns and Demonstratives #> 41167 Third Person Pronouns and Demonstratives #> 41194 Third Person Pronouns and Demonstratives #> 41217 Third Person Pronouns and Demonstratives #> 41221 Third Person Pronouns and Demonstratives #> 41234 Third Person Pronouns and Demonstratives #> 41237 Third Person Pronouns and Demonstratives #> 41241 Third Person Pronouns and Demonstratives #> 41244 Third Person Pronouns and Demonstratives #> 41284 Third Person Pronouns and Demonstratives #> 41304 Third Person Pronouns and Demonstratives #> 41326 Third Person Pronouns and Demonstratives #> 41341 Third Person Pronouns and Demonstratives #> 41370 Gender Distinctions in Independent Personal Pronouns #> 41379 Gender Distinctions in Independent Personal Pronouns #> 41394 Gender Distinctions in Independent Personal Pronouns #> 41412 Gender Distinctions in Independent Personal Pronouns #> 41429 Gender Distinctions in Independent Personal Pronouns #> 41442 Gender Distinctions in Independent Personal Pronouns #> 41453 Gender Distinctions in Independent Personal Pronouns #> 41464 Gender Distinctions in Independent Personal Pronouns #> 41482 Gender Distinctions in Independent Personal Pronouns #> 41526 Gender Distinctions in Independent Personal Pronouns #> 41540 Gender Distinctions in Independent Personal Pronouns #> 41582 Gender Distinctions in Independent Personal Pronouns #> 41587 Gender Distinctions in Independent Personal Pronouns #> 41605 Gender Distinctions in Independent Personal Pronouns #> 41616 Gender Distinctions in Independent Personal Pronouns #> 41626 Gender Distinctions in Independent Personal Pronouns #> 41654 Gender Distinctions in Independent Personal Pronouns #> 41695 Gender Distinctions in Independent Personal Pronouns #> 41701 Gender Distinctions in Independent Personal Pronouns #> 41723 Gender Distinctions in Independent Personal Pronouns #> 41762 Politeness Distinctions in Pronouns #> 41770 Politeness Distinctions in Pronouns #> 41772 Politeness Distinctions in Pronouns #> 41777 Politeness Distinctions in Pronouns #> 41793 Politeness Distinctions in Pronouns #> 41799 Politeness Distinctions in Pronouns #> 41809 Politeness Distinctions in Pronouns #> 41822 Politeness Distinctions in Pronouns #> 41829 Politeness Distinctions in Pronouns #> 41834 Politeness Distinctions in Pronouns #> 41835 Politeness Distinctions in Pronouns #> 41839 Politeness Distinctions in Pronouns #> 41849 Politeness Distinctions in Pronouns #> 41851 Politeness Distinctions in Pronouns #> 41861 Politeness Distinctions in Pronouns #> 41867 Politeness Distinctions in Pronouns #> 41936 Politeness Distinctions in Pronouns #> 41942 Politeness Distinctions in Pronouns #> 41948 Politeness Distinctions in Pronouns #> 41952 Indefinite Pronouns #> 41987 Indefinite Pronouns #> 42061 Indefinite Pronouns #> 42075 Indefinite Pronouns #> 42094 Indefinite Pronouns #> 42107 Indefinite Pronouns #> 42126 Indefinite Pronouns #> 42150 Indefinite Pronouns #> 42172 Indefinite Pronouns #> 42217 Indefinite Pronouns #> 42231 Indefinite Pronouns #> 42232 Indefinite Pronouns #> 42258 Indefinite Pronouns #> 42284 Intensifiers and Reflexive Pronouns #> 42313 Intensifiers and Reflexive Pronouns #> 42337 Intensifiers and Reflexive Pronouns #> 42343 Intensifiers and Reflexive Pronouns #> 42345 Intensifiers and Reflexive Pronouns #> 42358 Intensifiers and Reflexive Pronouns #> 42368 Intensifiers and Reflexive Pronouns #> 42371 Intensifiers and Reflexive Pronouns #> 42372 Intensifiers and Reflexive Pronouns #> 42373 Intensifiers and Reflexive Pronouns #> 42383 Intensifiers and Reflexive Pronouns #> 42392 Intensifiers and Reflexive Pronouns #> 42408 Intensifiers and Reflexive Pronouns #> 42414 Intensifiers and Reflexive Pronouns #> 42415 Intensifiers and Reflexive Pronouns #> 42422 Intensifiers and Reflexive Pronouns #> 42434 Intensifiers and Reflexive Pronouns #> 42452 Person Marking on Adpositions #> 42455 Person Marking on Adpositions #> 42466 Person Marking on Adpositions #> 42471 Person Marking on Adpositions #> 42487 Person Marking on Adpositions #> 42496 Person Marking on Adpositions #> 42531 Person Marking on Adpositions #> 42548 Person Marking on Adpositions #> 42559 Person Marking on Adpositions #> 42561 Person Marking on Adpositions #> 42582 Person Marking on Adpositions #> 42624 Person Marking on Adpositions #> 42629 Person Marking on Adpositions #> 42641 Person Marking on Adpositions #> 42678 Person Marking on Adpositions #> 42709 Person Marking on Adpositions #> 42732 Person Marking on Adpositions #> 42734 Person Marking on Adpositions #> 42756 Person Marking on Adpositions #> 42808 Person Marking on Adpositions #> 42822 Number of Cases #> 42846 Number of Cases #> 42880 Number of Cases #> 42886 Number of Cases #> 42914 Number of Cases #> 42917 Number of Cases #> 42944 Number of Cases #> 42975 Number of Cases #> 42985 Number of Cases #> 42987 Number of Cases #> 42996 Number of Cases #> 43002 Number of Cases #> 43021 Number of Cases #> 43050 Number of Cases #> 43059 Number of Cases #> 43060 Number of Cases #> 43063 Number of Cases #> 43074 Number of Cases #> 43081 Number of Cases #> 43115 Voicing and Gaps in Plosive Systems #> 43117 Voicing and Gaps in Plosive Systems #> 43142 Voicing and Gaps in Plosive Systems #> 43146 Voicing and Gaps in Plosive Systems #> 43157 Voicing and Gaps in Plosive Systems #> 43232 Voicing and Gaps in Plosive Systems #> 43246 Voicing and Gaps in Plosive Systems #> 43257 Voicing and Gaps in Plosive Systems #> 43262 Voicing and Gaps in Plosive Systems #> 43277 Voicing and Gaps in Plosive Systems #> 43323 Voicing and Gaps in Plosive Systems #> 43327 Voicing and Gaps in Plosive Systems #> 43337 Voicing and Gaps in Plosive Systems #> 43352 Voicing and Gaps in Plosive Systems #> 43369 Voicing and Gaps in Plosive Systems #> 43553 Voicing and Gaps in Plosive Systems #> 43580 Voicing and Gaps in Plosive Systems #> 43588 Voicing and Gaps in Plosive Systems #> 43592 Voicing and Gaps in Plosive Systems #> 43638 Voicing and Gaps in Plosive Systems #> 43651 Asymmetrical Case-Marking #> 43658 Asymmetrical Case-Marking #> 43682 Asymmetrical Case-Marking #> 43687 Asymmetrical Case-Marking #> 43688 Asymmetrical Case-Marking #> 43733 Asymmetrical Case-Marking #> 43734 Asymmetrical Case-Marking #> 43738 Asymmetrical Case-Marking #> 43739 Asymmetrical Case-Marking #> 43760 Asymmetrical Case-Marking #> 43761 Asymmetrical Case-Marking #> 43762 Asymmetrical Case-Marking #> 43781 Asymmetrical Case-Marking #> 43797 Asymmetrical Case-Marking #> 43798 Asymmetrical Case-Marking #> 43804 Asymmetrical Case-Marking #> 43822 Asymmetrical Case-Marking #> 43865 Asymmetrical Case-Marking #> 43909 Asymmetrical Case-Marking #> 43991 Position of Case Affixes #> 44066 Position of Case Affixes #> 44108 Position of Case Affixes #> 44120 Position of Case Affixes #> 44158 Position of Case Affixes #> 44231 Position of Case Affixes #> 44248 Position of Case Affixes #> 44356 Position of Case Affixes #> 44448 Position of Case Affixes #> 44490 Position of Case Affixes #> 44506 Position of Case Affixes #> 44513 Position of Case Affixes #> 44534 Position of Case Affixes #> 44645 Position of Case Affixes #> 44797 Position of Case Affixes #> 44822 Position of Case Affixes #> 44845 Position of Case Affixes #> 44851 Position of Case Affixes #> 44928 Position of Case Affixes #> 44969 Comitatives and Instrumentals #> 45048 Comitatives and Instrumentals #> 45111 Comitatives and Instrumentals #> 45125 Comitatives and Instrumentals #> 45135 Comitatives and Instrumentals #> 45153 Comitatives and Instrumentals #> 45160 Comitatives and Instrumentals #> 45175 Comitatives and Instrumentals #> 45227 Comitatives and Instrumentals #> 45246 Comitatives and Instrumentals #> 45272 Ordinal Numerals #> 45279 Ordinal Numerals #> 45291 Ordinal Numerals #> 45302 Ordinal Numerals #> 45328 Ordinal Numerals #> 45371 Ordinal Numerals #> 45387 Ordinal Numerals #> 45416 Ordinal Numerals #> 45431 Ordinal Numerals #> 45432 Ordinal Numerals #> 45445 Ordinal Numerals #> 45479 Ordinal Numerals #> 45491 Ordinal Numerals #> 45506 Ordinal Numerals #> 45578 Ordinal Numerals #> 45592 Distributive Numerals #> 45604 Distributive Numerals #> 45664 Distributive Numerals #> 45695 Distributive Numerals #> 45713 Distributive Numerals #> 45760 Distributive Numerals #> 45774 Distributive Numerals #> 45781 Distributive Numerals #> 45819 Distributive Numerals #> 45828 Distributive Numerals #> 45846 Numeral Classifiers #> 45862 Numeral Classifiers #> 45868 Numeral Classifiers #> 45917 Numeral Classifiers #> 45928 Numeral Classifiers #> 45943 Numeral Classifiers #> 45963 Numeral Classifiers #> 45971 Numeral Classifiers #> 45974 Numeral Classifiers #> 46005 Numeral Classifiers #> 46052 Numeral Classifiers #> 46063 Numeral Classifiers #> 46078 Numeral Classifiers #> 46091 Numeral Classifiers #> 46144 Numeral Classifiers #> 46233 Numeral Classifiers #> 46249 Conjunctions and Universal Quantifiers #> 46259 Conjunctions and Universal Quantifiers #> 46269 Conjunctions and Universal Quantifiers #> 46293 Conjunctions and Universal Quantifiers #> 46317 Conjunctions and Universal Quantifiers #> 46356 Position of Pronominal Possessive Affixes #> 46369 Position of Pronominal Possessive Affixes #> 46373 Position of Pronominal Possessive Affixes #> 46408 Position of Pronominal Possessive Affixes #> 46498 Position of Pronominal Possessive Affixes #> 46512 Position of Pronominal Possessive Affixes #> 46602 Position of Pronominal Possessive Affixes #> 46691 Position of Pronominal Possessive Affixes #> 46708 Position of Pronominal Possessive Affixes #> 46833 Position of Pronominal Possessive Affixes #> 46995 Position of Pronominal Possessive Affixes #> 47015 Position of Pronominal Possessive Affixes #> 47024 Position of Pronominal Possessive Affixes #> 47119 Position of Pronominal Possessive Affixes #> 47142 Position of Pronominal Possessive Affixes #> 47159 Position of Pronominal Possessive Affixes #> 47214 Position of Pronominal Possessive Affixes #> 47283 Obligatory Possessive Inflection #> 47288 Obligatory Possessive Inflection #> 47306 Obligatory Possessive Inflection #> 47342 Obligatory Possessive Inflection #> 47380 Obligatory Possessive Inflection #> 47384 Obligatory Possessive Inflection #> 47387 Obligatory Possessive Inflection #> 47391 Obligatory Possessive Inflection #> 47404 Obligatory Possessive Inflection #> 47408 Obligatory Possessive Inflection #> 47416 Obligatory Possessive Inflection #> 47421 Obligatory Possessive Inflection #> 47427 Obligatory Possessive Inflection #> 47436 Obligatory Possessive Inflection #> 47451 Obligatory Possessive Inflection #> 47459 Obligatory Possessive Inflection #> 47469 Obligatory Possessive Inflection #> 47478 Obligatory Possessive Inflection #> 47495 Obligatory Possessive Inflection #> 47513 Number of Possessive Nouns #> 47517 Number of Possessive Nouns #> 47547 Number of Possessive Nouns #> 47548 Number of Possessive Nouns #> 47586 Number of Possessive Nouns #> 47595 Number of Possessive Nouns #> 47641 Number of Possessive Nouns #> 47647 Number of Possessive Nouns #> 47651 Number of Possessive Nouns #> 47661 Number of Possessive Nouns #> 47663 Number of Possessive Nouns #> 47680 Number of Possessive Nouns #> 47683 Number of Possessive Nouns #> 47686 Number of Possessive Nouns #> 47689 Number of Possessive Nouns #> 47698 Number of Possessive Nouns #> 47702 Number of Possessive Nouns #> 47722 Number of Possessive Nouns #> 47737 Number of Possessive Nouns #> 47752 Possessive Classification #> 47754 Possessive Classification #> 47760 Possessive Classification #> 47770 Possessive Classification #> 47776 Possessive Classification #> 47785 Possessive Classification #> 47793 Possessive Classification #> 47819 Possessive Classification #> 47826 Possessive Classification #> 47832 Possessive Classification #> 47863 Possessive Classification #> 47864 Possessive Classification #> 47887 Possessive Classification #> 47902 Possessive Classification #> 47933 Possessive Classification #> 47937 Possessive Classification #> 47938 Possessive Classification #> 47940 Possessive Classification #> 47968 Possessive Classification #> 47990 Uvular Consonants #> 48060 Uvular Consonants #> 48077 Uvular Consonants #> 48093 Uvular Consonants #> 48109 Uvular Consonants #> 48144 Uvular Consonants #> 48154 Uvular Consonants #> 48160 Uvular Consonants #> 48191 Uvular Consonants #> 48193 Uvular Consonants #> 48232 Uvular Consonants #> 48278 Uvular Consonants #> 48322 Uvular Consonants #> 48342 Uvular Consonants #> 48354 Uvular Consonants #> 48357 Uvular Consonants #> 48369 Uvular Consonants #> 48449 Uvular Consonants #> 48459 Uvular Consonants #> 48468 Uvular Consonants #> 48593 Genitives, Adjectives and Relative Clauses #> 48603 Genitives, Adjectives and Relative Clauses #> 48624 Genitives, Adjectives and Relative Clauses #> 48632 Genitives, Adjectives and Relative Clauses #> 48644 Genitives, Adjectives and Relative Clauses #> 48658 Genitives, Adjectives and Relative Clauses #> 48664 Genitives, Adjectives and Relative Clauses #> 48671 Genitives, Adjectives and Relative Clauses #> 48677 Genitives, Adjectives and Relative Clauses #> 48702 Adjectives without Nouns #> 48706 Adjectives without Nouns #> 48728 Adjectives without Nouns #> 48730 Adjectives without Nouns #> 48733 Adjectives without Nouns #> 48746 Adjectives without Nouns #> 48748 Adjectives without Nouns #> 48805 Adjectives without Nouns #> 48806 Adjectives without Nouns #> 48817 Action Nominal Constructions #> 48822 Action Nominal Constructions #> 48836 Action Nominal Constructions #> 48842 Action Nominal Constructions #> 48852 Action Nominal Constructions #> 48853 Action Nominal Constructions #> 48879 Action Nominal Constructions #> 48894 Action Nominal Constructions #> 48900 Action Nominal Constructions #> 48907 Action Nominal Constructions #> 48917 Action Nominal Constructions #> 48923 Action Nominal Constructions #> 48938 Action Nominal Constructions #> 48945 Action Nominal Constructions #> 48947 Action Nominal Constructions #> 48974 Action Nominal Constructions #> 48975 Action Nominal Constructions #> 48991 Noun Phrase Conjunction #> 49003 Noun Phrase Conjunction #> 49013 Noun Phrase Conjunction #> 49021 Noun Phrase Conjunction #> 49058 Noun Phrase Conjunction #> 49088 Noun Phrase Conjunction #> 49106 Noun Phrase Conjunction #> 49113 Noun Phrase Conjunction #> 49166 Noun Phrase Conjunction #> 49277 Nominal and Verbal Conjunction #> 49301 Nominal and Verbal Conjunction #> 49303 Nominal and Verbal Conjunction #> 49304 Nominal and Verbal Conjunction #> 49338 Nominal and Verbal Conjunction #> 49407 Nominal and Verbal Conjunction #> 49408 Nominal and Verbal Conjunction #> 49410 Nominal and Verbal Conjunction #> 49416 Nominal and Verbal Conjunction #> 49422 Nominal and Verbal Conjunction #> 49426 Nominal and Verbal Conjunction #> 49467 Nominal and Verbal Conjunction #> 49496 Nominal and Verbal Conjunction #> 49508 Nominal and Verbal Conjunction #> 49514 Nominal and Verbal Conjunction #> 49528 Perfective/Imperfective Aspect #> 49530 Perfective/Imperfective Aspect #> 49532 Perfective/Imperfective Aspect #> 49543 Perfective/Imperfective Aspect #> 49557 Perfective/Imperfective Aspect #> 49561 Perfective/Imperfective Aspect #> 49564 Perfective/Imperfective Aspect #> 49581 Perfective/Imperfective Aspect #> 49591 Perfective/Imperfective Aspect #> 49594 Perfective/Imperfective Aspect #> 49600 Perfective/Imperfective Aspect #> 49608 Perfective/Imperfective Aspect #> 49625 Perfective/Imperfective Aspect #> 49626 Perfective/Imperfective Aspect #> 49634 Perfective/Imperfective Aspect #> 49668 Perfective/Imperfective Aspect #> 49689 Perfective/Imperfective Aspect #> 49704 Perfective/Imperfective Aspect #> 49728 Perfective/Imperfective Aspect #> 49732 Perfective/Imperfective Aspect #> 49741 The Past Tense #> 49750 The Past Tense #> 49755 The Past Tense #> 49759 The Past Tense #> 49792 The Past Tense #> 49830 The Past Tense #> 49833 The Past Tense #> 49836 The Past Tense #> 49856 The Past Tense #> 49864 The Past Tense #> 49882 The Past Tense #> 49913 The Past Tense #> 49919 The Past Tense #> 49923 The Past Tense #> 49927 The Past Tense #> 49934 The Past Tense #> 49941 The Past Tense #> 49943 The Past Tense #> 49952 The Past Tense #> 49954 The Past Tense #> 49969 The Future Tense #> 50008 The Future Tense #> 50009 The Future Tense #> 50011 The Future Tense #> 50015 The Future Tense #> 50025 The Future Tense #> 50026 The Future Tense #> 50030 The Future Tense #> 50041 The Future Tense #> 50042 The Future Tense #> 50051 The Future Tense #> 50062 The Future Tense #> 50068 The Future Tense #> 50075 The Future Tense #> 50076 The Future Tense #> 50078 The Future Tense #> 50082 The Future Tense #> 50097 The Future Tense #> 50100 The Future Tense #> 50160 The Future Tense #> 50221 The Perfect #> 50250 The Perfect #> 50268 The Perfect #> 50271 The Perfect #> 50287 The Perfect #> 50292 The Perfect #> 50297 The Perfect #> 50315 The Perfect #> 50321 The Perfect #> 50327 The Perfect #> 50343 The Perfect #> 50347 The Perfect #> 50348 The Perfect #> 50349 The Perfect #> 50362 The Perfect #> 50383 The Perfect #> 50386 The Perfect #> 50392 The Perfect #> 50393 The Perfect #> 50396 The Perfect #> 50541 Position of Tense-Aspect Affixes #> 50555 Position of Tense-Aspect Affixes #> 50559 Position of Tense-Aspect Affixes #> 50609 Position of Tense-Aspect Affixes #> 50682 Position of Tense-Aspect Affixes #> 50705 Position of Tense-Aspect Affixes #> 50738 Position of Tense-Aspect Affixes #> 50755 Position of Tense-Aspect Affixes #> 50794 Position of Tense-Aspect Affixes #> 50908 Position of Tense-Aspect Affixes #> 50915 Position of Tense-Aspect Affixes #> 51004 Position of Tense-Aspect Affixes #> 51024 Position of Tense-Aspect Affixes #> 51285 Position of Tense-Aspect Affixes #> 51312 Position of Tense-Aspect Affixes #> 51371 Position of Tense-Aspect Affixes #> 51421 Position of Tense-Aspect Affixes #> 51453 Position of Tense-Aspect Affixes #> 51572 Glottalized Consonants #> 51630 Glottalized Consonants #> 51671 Glottalized Consonants #> 51673 Glottalized Consonants #> 51708 Glottalized Consonants #> 51713 Glottalized Consonants #> 51741 Glottalized Consonants #> 51753 Glottalized Consonants #> 51770 Glottalized Consonants #> 51779 Glottalized Consonants #> 51829 Glottalized Consonants #> 51830 Glottalized Consonants #> 51934 Glottalized Consonants #> 51962 Glottalized Consonants #> 51976 Glottalized Consonants #> 51979 Glottalized Consonants #> 52018 Glottalized Consonants #> 52063 Glottalized Consonants #> 52072 Glottalized Consonants #> 52089 Glottalized Consonants #> 52106 The Morphological Imperative #> 52116 The Morphological Imperative #> 52193 The Morphological Imperative #> 52227 The Morphological Imperative #> 52231 The Morphological Imperative #> 52264 The Morphological Imperative #> 52296 The Morphological Imperative #> 52313 The Morphological Imperative #> 52318 The Morphological Imperative #> 52320 The Morphological Imperative #> 52360 The Morphological Imperative #> 52399 The Morphological Imperative #> 52407 The Morphological Imperative #> 52427 The Morphological Imperative #> 52437 The Morphological Imperative #> 52479 The Morphological Imperative #> 52490 The Morphological Imperative #> 52516 The Morphological Imperative #> 52639 The Morphological Imperative #> 52682 The Prohibitive #> 52691 The Prohibitive #> 52696 The Prohibitive #> 52764 The Prohibitive #> 52852 The Prohibitive #> 52855 The Prohibitive #> 52893 The Prohibitive #> 52898 The Prohibitive #> 52910 The Prohibitive #> 52954 The Prohibitive #> 52979 The Prohibitive #> 53009 The Prohibitive #> 53010 The Prohibitive #> 53034 The Prohibitive #> 53044 The Prohibitive #> 53055 The Prohibitive #> 53085 The Prohibitive #> 53115 The Prohibitive #> 53175 Imperative-Hortative Systems #> 53190 Imperative-Hortative Systems #> 53198 Imperative-Hortative Systems #> 53240 Imperative-Hortative Systems #> 53284 Imperative-Hortative Systems #> 53298 Imperative-Hortative Systems #> 53302 Imperative-Hortative Systems #> 53322 Imperative-Hortative Systems #> 53329 Imperative-Hortative Systems #> 53335 Imperative-Hortative Systems #> 53346 Imperative-Hortative Systems #> 53353 Imperative-Hortative Systems #> 53381 Imperative-Hortative Systems #> 53382 Imperative-Hortative Systems #> 53401 Imperative-Hortative Systems #> 53429 Imperative-Hortative Systems #> 53437 Imperative-Hortative Systems #> 53471 Imperative-Hortative Systems #> 53474 Imperative-Hortative Systems #> 53527 The Optative #> 53529 The Optative #> 53545 The Optative #> 53571 The Optative #> 53572 The Optative #> 53593 The Optative #> 53596 The Optative #> 53599 The Optative #> 53605 The Optative #> 53628 The Optative #> 53630 The Optative #> 53664 The Optative #> 53667 The Optative #> 53693 The Optative #> 53704 The Optative #> 53706 The Optative #> 53732 The Optative #> 53791 The Optative #> 53800 The Optative #> 53816 The Optative #> 53860 Situational Possibility #> 53886 Situational Possibility #> 53900 Situational Possibility #> 53914 Situational Possibility #> 53928 Situational Possibility #> 53938 Situational Possibility #> 53959 Situational Possibility #> 53963 Situational Possibility #> 53986 Situational Possibility #> 53991 Situational Possibility #> 53996 Situational Possibility #> 54017 Situational Possibility #> 54050 Situational Possibility #> 54065 Situational Possibility #> 54082 Epistemic Possibility #> 54084 Epistemic Possibility #> 54094 Epistemic Possibility #> 54104 Epistemic Possibility #> 54106 Epistemic Possibility #> 54117 Epistemic Possibility #> 54149 Epistemic Possibility #> 54156 Epistemic Possibility #> 54196 Epistemic Possibility #> 54201 Epistemic Possibility #> 54205 Epistemic Possibility #> 54207 Epistemic Possibility #> 54219 Epistemic Possibility #> 54246 Epistemic Possibility #> 54297 Epistemic Possibility #> 54302 Epistemic Possibility #> 54311 Epistemic Possibility #> 54359 Overlap between Situational and Epistemic Modal Marking #> 54367 Overlap between Situational and Epistemic Modal Marking #> 54369 Overlap between Situational and Epistemic Modal Marking #> 54383 Overlap between Situational and Epistemic Modal Marking #> 54387 Overlap between Situational and Epistemic Modal Marking #> 54390 Overlap between Situational and Epistemic Modal Marking #> 54391 Overlap between Situational and Epistemic Modal Marking #> 54398 Overlap between Situational and Epistemic Modal Marking #> 54407 Overlap between Situational and Epistemic Modal Marking #> 54408 Overlap between Situational and Epistemic Modal Marking #> 54422 Overlap between Situational and Epistemic Modal Marking #> 54473 Overlap between Situational and Epistemic Modal Marking #> 54520 Semantic Distinctions of Evidentiality #> 54567 Semantic Distinctions of Evidentiality #> 54581 Semantic Distinctions of Evidentiality #> 54611 Semantic Distinctions of Evidentiality #> 54625 Semantic Distinctions of Evidentiality #> 54653 Semantic Distinctions of Evidentiality #> 54684 Semantic Distinctions of Evidentiality #> 54691 Semantic Distinctions of Evidentiality #> 54703 Semantic Distinctions of Evidentiality #> 54717 Semantic Distinctions of Evidentiality #> 54727 Semantic Distinctions of Evidentiality #> 54759 Semantic Distinctions of Evidentiality #> 54771 Semantic Distinctions of Evidentiality #> 54775 Semantic Distinctions of Evidentiality #> 54790 Semantic Distinctions of Evidentiality #> 54826 Semantic Distinctions of Evidentiality #> 54897 Semantic Distinctions of Evidentiality #> 54911 Semantic Distinctions of Evidentiality #> 54923 Semantic Distinctions of Evidentiality #> 54927 Semantic Distinctions of Evidentiality #> 54988 Coding of Evidentiality #> 55002 Coding of Evidentiality #> 55010 Coding of Evidentiality #> 55022 Coding of Evidentiality #> 55042 Coding of Evidentiality #> 55055 Coding of Evidentiality #> 55067 Coding of Evidentiality #> 55078 Coding of Evidentiality #> 55141 Coding of Evidentiality #> 55143 Coding of Evidentiality #> 55159 Coding of Evidentiality #> 55165 Coding of Evidentiality #> 55176 Coding of Evidentiality #> 55212 Coding of Evidentiality #> 55219 Coding of Evidentiality #> 55225 Coding of Evidentiality #> 55226 Coding of Evidentiality #> 55236 Coding of Evidentiality #> 55289 Coding of Evidentiality #> 55306 Coding of Evidentiality #> 55357 Suppletion According to Tense and Aspect #> 55372 Suppletion According to Tense and Aspect #> 55379 Suppletion According to Tense and Aspect #> 55381 Suppletion According to Tense and Aspect #> 55382 Suppletion According to Tense and Aspect #> 55389 Suppletion According to Tense and Aspect #> 55394 Suppletion According to Tense and Aspect #> 55397 Suppletion According to Tense and Aspect #> 55405 Suppletion According to Tense and Aspect #> 55419 Suppletion According to Tense and Aspect #> 55428 Suppletion According to Tense and Aspect #> 55431 Suppletion According to Tense and Aspect #> 55476 Suppletion According to Tense and Aspect #> 55494 Suppletion According to Tense and Aspect #> 55503 Suppletion According to Tense and Aspect #> 55509 Suppletion According to Tense and Aspect #> 55511 Suppletion According to Tense and Aspect #> 55517 Suppletion According to Tense and Aspect #> 55519 Suppletion According to Tense and Aspect #> 55544 Suppletion According to Tense and Aspect #> 55575 Suppletion in Imperatives and Hortatives #> 55580 Suppletion in Imperatives and Hortatives #> 55594 Suppletion in Imperatives and Hortatives #> 55603 Suppletion in Imperatives and Hortatives #> 55604 Suppletion in Imperatives and Hortatives #> 55610 Suppletion in Imperatives and Hortatives #> 55616 Suppletion in Imperatives and Hortatives #> 55621 Suppletion in Imperatives and Hortatives #> 55631 Suppletion in Imperatives and Hortatives #> 55641 Suppletion in Imperatives and Hortatives #> 55669 Suppletion in Imperatives and Hortatives #> 55673 Suppletion in Imperatives and Hortatives #> 55683 Suppletion in Imperatives and Hortatives #> 55687 Suppletion in Imperatives and Hortatives #> 55692 Suppletion in Imperatives and Hortatives #> 55695 Suppletion in Imperatives and Hortatives #> 55720 Suppletion in Imperatives and Hortatives #> 55725 Suppletion in Imperatives and Hortatives #> 55728 Suppletion in Imperatives and Hortatives #> 55736 Suppletion in Imperatives and Hortatives #> 55761 Lateral Consonants #> 55771 Lateral Consonants #> 55784 Lateral Consonants #> 55816 Lateral Consonants #> 55880 Lateral Consonants #> 55940 Lateral Consonants #> 56036 Lateral Consonants #> 56068 Lateral Consonants #> 56072 Lateral Consonants #> 56115 Lateral Consonants #> 56120 Lateral Consonants #> 56153 Lateral Consonants #> 56156 Lateral Consonants #> 56161 Lateral Consonants #> 56169 Lateral Consonants #> 56185 Lateral Consonants #> 56199 Lateral Consonants #> 56231 Lateral Consonants #> 56279 Lateral Consonants #> 56301 Lateral Consonants #> 56324 Verbal Number and Suppletion #> 56342 Verbal Number and Suppletion #> 56354 Verbal Number and Suppletion #> 56363 Verbal Number and Suppletion #> 56368 Verbal Number and Suppletion #> 56370 Verbal Number and Suppletion #> 56376 Verbal Number and Suppletion #> 56382 Verbal Number and Suppletion #> 56384 Verbal Number and Suppletion #> 56386 Verbal Number and Suppletion #> 56404 Verbal Number and Suppletion #> 56427 Verbal Number and Suppletion #> 56438 Verbal Number and Suppletion #> 56446 Verbal Number and Suppletion #> 56452 Verbal Number and Suppletion #> 56457 Verbal Number and Suppletion #> 56474 Verbal Number and Suppletion #> 56495 Verbal Number and Suppletion #> 56497 Verbal Number and Suppletion #> 56498 Verbal Number and Suppletion #> 56531 Order of Subject, Object and Verb #> 56607 Order of Subject, Object and Verb #> 56626 Order of Subject, Object and Verb #> 56636 Order of Subject, Object and Verb #> 56759 Order of Subject, Object and Verb #> 56795 Order of Subject, Object and Verb #> 56814 Order of Subject, Object and Verb #> 56834 Order of Subject, Object and Verb #> 56848 Order of Subject, Object and Verb #> 56923 Order of Subject, Object and Verb #> 57038 Order of Subject, Object and Verb #> 57054 Order of Subject, Object and Verb #> 57088 Order of Subject, Object and Verb #> 57121 Order of Subject, Object and Verb #> 57322 Order of Subject, Object and Verb #> 57479 Order of Subject, Object and Verb #> 57637 Order of Subject, Object and Verb #> 57655 Order of Subject, Object and Verb #> 57821 Order of Subject, Object and Verb #> 57843 Order of Subject, Object and Verb #> 57942 Languages with two Dominant Orders of Subject, Object, and Verb #> 57999 Order of Subject and Verb #> 58042 Order of Subject and Verb #> 58049 Order of Subject and Verb #> 58127 Order of Subject and Verb #> 58178 Order of Subject and Verb #> 58297 Order of Subject and Verb #> 58322 Order of Subject and Verb #> 58342 Order of Subject and Verb #> 58350 Order of Subject and Verb #> 58497 Order of Subject and Verb #> 58723 Order of Subject and Verb #> 58741 Order of Subject and Verb #> 58789 Order of Subject and Verb #> 58792 Order of Subject and Verb #> 58910 Order of Subject and Verb #> 59061 Order of Subject and Verb #> 59160 Order of Subject and Verb #> 59176 Order of Subject and Verb #> 59219 Order of Subject and Verb #> 59403 Order of Subject and Verb #> 59502 Order of Object and Verb #> 59519 Order of Object and Verb #> 59558 Order of Object and Verb #> 59559 Order of Object and Verb #> 59744 Order of Object and Verb #> 59817 Order of Object and Verb #> 59818 Order of Object and Verb #> 59819 Order of Object and Verb #> 59855 Order of Object and Verb #> 59921 Order of Object and Verb #> 59955 Order of Object and Verb #> 60008 Order of Object and Verb #> 60094 Order of Object and Verb #> 60281 Order of Object and Verb #> 60339 Order of Object and Verb #> 60471 Order of Object and Verb #> 60527 Order of Object and Verb #> 60696 Order of Object and Verb #> 60733 Order of Object and Verb #> 60908 Order of Object and Verb #> 61120 Order of Object, Oblique, and Verb #> 61144 Order of Object, Oblique, and Verb #> 61148 Order of Object, Oblique, and Verb #> 61188 Order of Object, Oblique, and Verb #> 61204 Order of Object, Oblique, and Verb #> 61213 Order of Object, Oblique, and Verb #> 61249 Order of Object, Oblique, and Verb #> 61250 Order of Object, Oblique, and Verb #> 61272 Order of Object, Oblique, and Verb #> 61324 Order of Object, Oblique, and Verb #> 61332 Order of Object, Oblique, and Verb #> 61360 Order of Object, Oblique, and Verb #> 61440 Order of Object, Oblique, and Verb #> 61590 Order of Adposition and Noun Phrase #> 61595 Order of Adposition and Noun Phrase #> 61643 Order of Adposition and Noun Phrase #> 61659 Order of Adposition and Noun Phrase #> 61693 Order of Adposition and Noun Phrase #> 61733 Order of Adposition and Noun Phrase #> 61759 Order of Adposition and Noun Phrase #> 61820 Order of Adposition and Noun Phrase #> 61829 Order of Adposition and Noun Phrase #> 61838 Order of Adposition and Noun Phrase #> 61946 Order of Adposition and Noun Phrase #> 62022 Order of Adposition and Noun Phrase #> 62186 Order of Adposition and Noun Phrase #> 62272 Order of Adposition and Noun Phrase #> 62355 Order of Adposition and Noun Phrase #> 62422 Order of Adposition and Noun Phrase #> 62614 Order of Adposition and Noun Phrase #> 62626 Order of Adposition and Noun Phrase #> 62634 Order of Adposition and Noun Phrase #> 62637 Order of Adposition and Noun Phrase #> 62697 Order of Genitive and Noun #> 62724 Order of Genitive and Noun #> 62725 Order of Genitive and Noun #> 62808 Order of Genitive and Noun #> 62826 Order of Genitive and Noun #> 62871 Order of Genitive and Noun #> 62955 Order of Genitive and Noun #> 62960 Order of Genitive and Noun #> 63034 Order of Genitive and Noun #> 63085 Order of Genitive and Noun #> 63107 Order of Genitive and Noun #> 63188 Order of Genitive and Noun #> 63297 Order of Genitive and Noun #> 63476 Order of Genitive and Noun #> 63681 Order of Genitive and Noun #> 63703 Order of Genitive and Noun #> 63738 Order of Genitive and Noun #> 63802 Order of Genitive and Noun #> 63873 Order of Genitive and Noun #> 63934 Order of Adjective and Noun #> 64012 Order of Adjective and Noun #> 64052 Order of Adjective and Noun #> 64075 Order of Adjective and Noun #> 64118 Order of Adjective and Noun #> 64127 Order of Adjective and Noun #> 64238 Order of Adjective and Noun #> 64321 Order of Adjective and Noun #> 64476 Order of Adjective and Noun #> 64508 Order of Adjective and Noun #> 64525 Order of Adjective and Noun #> 64526 Order of Adjective and Noun #> 64549 Order of Adjective and Noun #> 64855 Order of Adjective and Noun #> 64969 Order of Adjective and Noun #> 65045 Order of Adjective and Noun #> 65134 Order of Adjective and Noun #> 65135 Order of Adjective and Noun #> 65296 Order of Demonstrative and Noun #> 65342 Order of Demonstrative and Noun #> 65351 Order of Demonstrative and Noun #> 65357 Order of Demonstrative and Noun #> 65401 Order of Demonstrative and Noun #> 65422 Order of Demonstrative and Noun #> 65501 Order of Demonstrative and Noun #> 65502 Order of Demonstrative and Noun #> 65506 Order of Demonstrative and Noun #> 65577 Order of Demonstrative and Noun #> 65586 Order of Demonstrative and Noun #> 65607 Order of Demonstrative and Noun #> 65672 Order of Demonstrative and Noun #> 65714 Order of Demonstrative and Noun #> 66013 Order of Demonstrative and Noun #> 66094 Order of Demonstrative and Noun #> 66142 Order of Demonstrative and Noun #> 66321 Order of Demonstrative and Noun #> 66346 Order of Demonstrative and Noun #> 66477 Order of Demonstrative and Noun #> 66545 Order of Numeral and Noun #> 66552 Order of Numeral and Noun #> 66687 Order of Numeral and Noun #> 66700 Order of Numeral and Noun #> 66740 Order of Numeral and Noun #> 66789 Order of Numeral and Noun #> 66795 Order of Numeral and Noun #> 66796 Order of Numeral and Noun #> 66815 Order of Numeral and Noun #> 66962 Order of Numeral and Noun #> 67041 Order of Numeral and Noun #> 67081 Order of Numeral and Noun #> 67186 Order of Numeral and Noun #> 67201 Order of Numeral and Noun #> 67238 Order of Numeral and Noun #> 67250 Order of Numeral and Noun #> 67387 Order of Numeral and Noun #> 67538 Order of Numeral and Noun #> 67608 Order of Numeral and Noun #> 67645 The Velar Nasal #> 67672 The Velar Nasal #> 67694 The Velar Nasal #> 67698 The Velar Nasal #> 67734 The Velar Nasal #> 67765 The Velar Nasal #> 67849 The Velar Nasal #> 67888 The Velar Nasal #> 67896 The Velar Nasal #> 67898 The Velar Nasal #> 67908 The Velar Nasal #> 67920 The Velar Nasal #> 67935 The Velar Nasal #> 67963 The Velar Nasal #> 67981 The Velar Nasal #> 67991 The Velar Nasal #> 68075 The Velar Nasal #> 68089 The Velar Nasal #> 68093 The Velar Nasal #> 68094 The Velar Nasal #> 68135 Order of Relative Clause and Noun #> 68200 Order of Relative Clause and Noun #> 68234 Order of Relative Clause and Noun #> 68287 Order of Relative Clause and Noun #> 68413 Order of Relative Clause and Noun #> 68482 Order of Relative Clause and Noun #> 68516 Order of Relative Clause and Noun #> 68715 Order of Relative Clause and Noun #> 68742 Order of Relative Clause and Noun #> 68800 Order of Relative Clause and Noun #> 68828 Order of Relative Clause and Noun #> 68834 Order of Relative Clause and Noun #> 68853 Order of Relative Clause and Noun #> 68855 Order of Relative Clause and Noun #> 68859 Order of Relative Clause and Noun #> 68869 Order of Relative Clause and Noun #> 68891 Order of Relative Clause and Noun #> 68908 Order of Relative Clause and Noun #> 68912 Order of Relative Clause and Noun #> 68938 Prenominal relative clauses #> 68940 Prenominal relative clauses #> 69054 Prenominal relative clauses #> 69100 Prenominal relative clauses #> 69113 Prenominal relative clauses #> 69122 Postnominal relative clauses #> 69314 Postnominal relative clauses #> 69335 Postnominal relative clauses #> 69359 Postnominal relative clauses #> 69452 Postnominal relative clauses #> 69469 Postnominal relative clauses #> 69682 Postnominal relative clauses #> 69730 Postnominal relative clauses #> 69736 Postnominal relative clauses #> 69745 Internally-headed relative clauses #> 69758 Internally-headed relative clauses #> 69771 Internally-headed relative clauses #> 69777 Internally-headed relative clauses #> 69779 Internally-headed relative clauses #> 69784 Internally-headed relative clauses #> 69790 Internally-headed relative clauses #> 69794 Internally-headed relative clauses #> 69808 Correlative relative clauses #> 69809 Correlative relative clauses #> 69827 Adjoined relative clauses #> 69852 Order of Degree Word and Adjective #> 69880 Order of Degree Word and Adjective #> 69926 Order of Degree Word and Adjective #> 69942 Order of Degree Word and Adjective #> 69980 Order of Degree Word and Adjective #> 70051 Order of Degree Word and Adjective #> 70072 Order of Degree Word and Adjective #> 70158 Order of Degree Word and Adjective #> 70360 Position of Polar Question Particles #> 70377 Position of Polar Question Particles #> 70402 Position of Polar Question Particles #> 70469 Position of Polar Question Particles #> 70498 Position of Polar Question Particles #> 70527 Position of Polar Question Particles #> 70553 Position of Polar Question Particles #> 70675 Position of Polar Question Particles #> 70760 Position of Polar Question Particles #> 70807 Position of Polar Question Particles #> 70837 Position of Polar Question Particles #> 70919 Position of Polar Question Particles #> 70929 Position of Polar Question Particles #> 70939 Position of Polar Question Particles #> 70941 Position of Polar Question Particles #> 70972 Position of Polar Question Particles #> 70996 Position of Polar Question Particles #> 71024 Position of Polar Question Particles #> 71270 Position of Interrogative Phrases in Content Questions #> 71276 Position of Interrogative Phrases in Content Questions #> 71356 Position of Interrogative Phrases in Content Questions #> 71395 Position of Interrogative Phrases in Content Questions #> 71462 Position of Interrogative Phrases in Content Questions #> 71479 Position of Interrogative Phrases in Content Questions #> 71494 Position of Interrogative Phrases in Content Questions #> 71515 Position of Interrogative Phrases in Content Questions #> 71529 Position of Interrogative Phrases in Content Questions #> 71580 Position of Interrogative Phrases in Content Questions #> 71923 Position of Interrogative Phrases in Content Questions #> 71963 Position of Interrogative Phrases in Content Questions #> 72086 Position of Interrogative Phrases in Content Questions #> 72088 Position of Interrogative Phrases in Content Questions #> 72093 Position of Interrogative Phrases in Content Questions #> 72099 Position of Interrogative Phrases in Content Questions #> 72103 Position of Interrogative Phrases in Content Questions #> 72117 Order of Adverbial Subordinator and Clause #> 72134 Order of Adverbial Subordinator and Clause #> 72135 Order of Adverbial Subordinator and Clause #> 72137 Order of Adverbial Subordinator and Clause #> 72176 Order of Adverbial Subordinator and Clause #> 72192 Order of Adverbial Subordinator and Clause #> 72371 Order of Adverbial Subordinator and Clause #> 72375 Order of Adverbial Subordinator and Clause #> 72401 Order of Adverbial Subordinator and Clause #> 72404 Order of Adverbial Subordinator and Clause #> 72477 Order of Adverbial Subordinator and Clause #> 72577 Order of Adverbial Subordinator and Clause #> 72594 Order of Adverbial Subordinator and Clause #> 72612 Order of Adverbial Subordinator and Clause #> 72650 Order of Adverbial Subordinator and Clause #> 72738 Order of Adverbial Subordinator and Clause #> 72800 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 72846 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 72848 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 72883 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 72928 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 72941 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73006 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73149 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73155 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73162 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73224 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73307 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73318 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73393 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73642 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73773 Relationship between the Order of Object and Verb and the Order of Adposition and Noun Phrase #> 73914 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 73992 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74001 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74052 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74061 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74083 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74160 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74189 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74269 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74577 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74619 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74683 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74700 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74717 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74733 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74745 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74757 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74767 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74771 Relationship between the Order of Object and Verb and the Order of Relative Clause and Noun #> 74815 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 74830 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 74932 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 74954 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75007 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75017 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75179 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75182 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75254 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75256 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75267 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75279 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75359 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75382 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75441 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75810 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75884 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 75946 Relationship between the Order of Object and Verb and the Order of Adjective and Noun #> 76104 Alignment of Case Marking of Full Noun Phrases #> 76113 Alignment of Case Marking of Full Noun Phrases #> 76116 Alignment of Case Marking of Full Noun Phrases #> 76119 Alignment of Case Marking of Full Noun Phrases #> 76137 Alignment of Case Marking of Full Noun Phrases #> 76146 Alignment of Case Marking of Full Noun Phrases #> 76154 Alignment of Case Marking of Full Noun Phrases #> 76171 Alignment of Case Marking of Full Noun Phrases #> 76177 Alignment of Case Marking of Full Noun Phrases #> 76191 Alignment of Case Marking of Full Noun Phrases #> 76200 Alignment of Case Marking of Full Noun Phrases #> 76202 Alignment of Case Marking of Full Noun Phrases #> 76211 Alignment of Case Marking of Full Noun Phrases #> 76245 Alignment of Case Marking of Full Noun Phrases #> 76250 Alignment of Case Marking of Full Noun Phrases #> 76253 Alignment of Case Marking of Full Noun Phrases #> 76257 Alignment of Case Marking of Full Noun Phrases #> 76284 Alignment of Case Marking of Full Noun Phrases #> 76287 Alignment of Case Marking of Full Noun Phrases #> 76302 Alignment of Case Marking of Pronouns #> 76325 Alignment of Case Marking of Pronouns #> 76327 Alignment of Case Marking of Pronouns #> 76340 Alignment of Case Marking of Pronouns #> 76353 Alignment of Case Marking of Pronouns #> 76368 Alignment of Case Marking of Pronouns #> 76369 Alignment of Case Marking of Pronouns #> 76398 Alignment of Case Marking of Pronouns #> 76399 Alignment of Case Marking of Pronouns #> 76407 Alignment of Case Marking of Pronouns #> 76434 Alignment of Case Marking of Pronouns #> 76438 Alignment of Case Marking of Pronouns #> 76439 Alignment of Case Marking of Pronouns #> 76447 Alignment of Case Marking of Pronouns #> 76459 Alignment of Case Marking of Pronouns #> 76464 Alignment of Case Marking of Pronouns #> value_ID #> 35 1 #> 37 1 #> 55 1 #> 73 1 #> 90 2 #> 146 2 #> 187 2 #> 220 3 #> 301 3 #> 309 3 #> 327 3 #> 342 3 #> 360 3 #> 384 3 #> 402 3 #> 407 3 #> 429 4 #> 462 4 #> 532 5 #> 533 5 #> 569 1 #> 577 1 #> 596 1 #> 625 1 #> 628 2 #> 637 2 #> 647 2 #> 656 2 #> 659 2 #> 665 2 #> 680 2 #> 746 2 #> 761 2 #> 774 2 #> 783 2 #> 803 2 #> 854 1 #> 860 1 #> 867 1 #> 895 1 #> 922 1 #> 938 2 #> 980 2 #> 987 2 #> 1020 2 #> 1028 2 #> 1044 2 #> 1117 2 #> 1150 3 #> 1151 3 #> 1164 4 #> 1172 4 #> 1173 4 #> 1185 4 #> 1188 4 #> 1197 5 #> 1265 1 #> 1296 1 #> 1314 2 #> 1325 2 #> 1360 2 #> 1399 2 #> 1444 2 #> 1461 2 #> 1466 2 #> 1514 2 #> 1560 2 #> 1567 2 #> 1569 2 #> 1574 2 #> 1788 4 #> 1892 5 #> 1896 5 #> 1943 1 #> 1954 1 #> 1967 1 #> 1984 1 #> 2002 1 #> 2037 2 #> 2067 2 #> 2077 2 #> 2083 2 #> 2122 4 #> 2134 5 #> 2136 5 #> 2150 5 #> 2158 5 #> 2159 5 #> 2164 5 #> 2199 5 #> 2210 5 #> 2217 5 #> 2286 5 #> 2328 1 #> 2354 1 #> 2370 1 #> 2392 1 #> 2397 1 #> 2413 2 #> 2457 2 #> 2478 2 #> 2492 2 #> 2493 2 #> 2537 2 #> 2558 2 #> 2562 2 #> 2578 2 #> 2591 2 #> 2599 3 #> 2656 4 #> 2664 5 #> 2669 5 #> 2684 5 #> 2697 1 #> 2743 1 #> 2757 1 #> 2764 1 #> 2769 1 #> 2777 1 #> 2778 1 #> 2803 1 #> 2851 1 #> 2873 1 #> 2897 2 #> 2912 2 #> 2937 2 #> 2956 2 #> 2965 2 #> 2967 2 #> 3001 3 #> 3036 3 #> 3049 4 #> 3061 5 #> 3102 1 #> 3105 1 #> 3150 1 #> 3178 1 #> 3213 1 #> 3259 1 #> 3317 2 #> 3330 2 #> 3355 3 #> 3364 3 #> 3384 3 #> 3395 3 #> 3406 3 #> 3410 3 #> 3450 4 #> 3453 4 #> 3460 1 #> 3467 1 #> 3468 1 #> 3495 2 #> 3498 2 #> 3501 2 #> 3505 2 #> 3506 2 #> 3511 2 #> 3513 2 #> 3515 2 #> 3530 2 #> 3537 2 #> 3555 2 #> 3559 2 #> 3590 4 #> 3607 4 #> 3622 4 #> 3626 4 #> 3634 1 #> 3645 1 #> 3679 1 #> 3714 1 #> 3715 1 #> 3731 1 #> 3747 1 #> 3748 1 #> 3784 1 #> 3787 1 #> 3804 2 #> 3811 2 #> 3813 2 #> 3842 2 #> 3843 2 #> 3844 2 #> 3921 2 #> 3930 2 #> 3933 2 #> 3966 2 #> 4002 1 #> 4007 1 #> 4040 2 #> 4055 3 #> 4057 3 #> 4082 3 #> 4083 3 #> 4087 3 #> 4088 3 #> 4097 3 #> 4107 3 #> 4131 3 #> 4135 3 #> 4150 3 #> 4160 3 #> 4167 3 #> 4178 3 #> 4182 3 #> 4186 3 #> 4187 3 #> 4204 1 #> 4232 2 #> 4233 2 #> 4242 4 #> 4243 4 #> 4249 4 #> 4251 4 #> 4264 4 #> 4283 4 #> 4284 4 #> 4287 4 #> 4303 4 #> 4305 4 #> 4326 4 #> 4340 4 #> 4355 4 #> 4361 4 #> 4362 4 #> 4369 4 #> 4376 4 #> 4389 1 #> 4392 1 #> 4396 1 #> 4414 3 #> 4430 3 #> 4431 3 #> 4436 3 #> 4447 3 #> 4451 4 #> 4457 5 #> 4461 5 #> 4476 8 #> 4484 8 #> 4490 8 #> 4502 8 #> 4511 8 #> 4527 8 #> 4544 8 #> 4557 8 #> 4562 8 #> 4568 1 #> 4569 1 #> 4574 1 #> 4579 1 #> 4596 2 #> 4598 2 #> 4603 3 #> 4604 3 #> 4612 4 #> 4620 4 #> 4632 4 #> 4656 5 #> 4661 5 #> 4664 5 #> 4668 5 #> 4669 5 #> 4678 5 #> 4729 5 #> 4730 5 #> 4743 5 #> 4764 1 #> 4794 1 #> 4799 1 #> 4803 1 #> 4843 1 #> 4885 1 #> 4894 1 #> 4940 1 #> 4987 1 #> 5000 1 #> 5031 1 #> 5041 1 #> 5065 1 #> 5078 1 #> 5089 1 #> 5133 1 #> 5210 1 #> 5226 1 #> 5266 1 #> 5268 1 #> 5311 1 #> 5351 2 #> 5354 2 #> 5359 2 #> 5361 2 #> 5364 2 #> 5395 2 #> 5402 2 #> 5408 2 #> 5409 2 #> 5413 3 #> 5421 3 #> 5422 3 #> 5483 2 #> 5514 2 #> 5550 2 #> 5551 2 #> 5553 2 #> 5566 2 #> 5571 2 #> 5579 2 #> 5592 2 #> 5593 2 #> 5597 2 #> 5598 2 #> 5617 2 #> 5622 2 #> 5640 2 #> 5675 2 #> 5721 4 #> 5724 4 #> 5731 4 #> 5732 4 #> 5842 1 #> 5973 1 #> 6054 1 #> 6125 1 #> 6194 2 #> 6197 2 #> 6256 2 #> 6300 2 #> 6304 2 #> 6432 2 #> 6465 2 #> 6511 2 #> 6525 2 #> 6586 2 #> 6615 2 #> 6622 2 #> 6810 6 #> 6863 6 #> 6881 6 #> 6900 1 #> 6936 1 #> 6942 1 #> 6972 1 #> 6978 1 #> 6987 1 #> 6998 1 #> 7063 3 #> 7069 3 #> 7070 3 #> 7084 3 #> 7087 3 #> 7090 3 #> 7097 3 #> 7103 3 #> 7153 3 #> 7173 3 #> 7181 3 #> 7183 3 #> 7184 3 #> 7245 2 #> 7250 2 #> 7254 3 #> 7266 3 #> 7267 3 #> 7271 3 #> 7298 3 #> 7300 3 #> 7308 3 #> 7321 3 #> 7336 4 #> 7352 5 #> 7355 5 #> 7387 7 #> 7399 7 #> 7421 7 #> 7451 7 #> 7461 7 #> 7463 7 #> 7472 7 #> 7493 1 #> 7505 1 #> 7514 1 #> 7522 1 #> 7535 1 #> 7568 1 #> 7577 1 #> 7631 1 #> 7658 1 #> 7661 2 #> 7667 2 #> 7706 1 #> 7711 1 #> 7770 1 #> 7798 1 #> 7802 1 #> 7964 1 #> 7974 1 #> 8084 1 #> 8144 1 #> 8156 1 #> 8246 1 #> 8313 2 #> 8316 2 #> 8387 2 #> 8454 3 #> 8538 6 #> 8561 6 #> 8572 6 #> 8648 6 #> 8650 1 #> 8659 1 #> 8688 1 #> 8743 3 #> 8746 3 #> 8777 4 #> 8779 4 #> 8793 4 #> 8851 5 #> 8853 5 #> 8856 5 #> 8935 1 #> 8936 1 #> 8962 1 #> 8998 1 #> 9014 1 #> 9054 2 #> 9057 2 #> 9099 2 #> 9157 2 #> 9176 3 #> 9233 3 #> 9238 3 #> 9245 3 #> 9248 3 #> 9292 1 #> 9300 1 #> 9330 1 #> 9335 1 #> 9357 1 #> 9371 1 #> 9427 1 #> 9444 1 #> 9450 1 #> 9464 1 #> 9512 1 #> 9564 2 #> 9593 2 #> 9609 2 #> 9683 1 #> 9700 1 #> 9704 1 #> 9722 1 #> 9769 2 #> 9860 2 #> 9878 2 #> 9886 2 #> 9895 2 #> 9930 2 #> 9938 2 #> 9955 2 #> 9980 2 #> 9999 3 #> 10016 3 #> 10077 3 #> 10108 3 #> 10128 3 #> 10154 1 #> 10163 1 #> 10168 1 #> 10172 1 #> 10201 1 #> 10269 1 #> 10276 1 #> 10291 1 #> 10296 1 #> 10349 1 #> 10385 2 #> 10398 2 #> 10478 2 #> 10482 2 #> 10538 1 #> 10578 1 #> 10637 2 #> 10659 3 #> 10719 2 #> 10723 2 #> 10724 2 #> 10725 2 #> 10726 2 #> 10730 2 #> 10758 4 #> 10759 4 #> 10763 4 #> 10766 4 #> 10767 4 #> 10777 4 #> 10794 4 #> 10806 4 #> 10822 4 #> 10859 4 #> 10885 2 #> 10892 2 #> 10908 3 #> 10918 4 #> 10928 4 #> 10936 4 #> 10942 4 #> 10950 4 #> 10967 4 #> 10968 4 #> 10969 5 #> 10972 5 #> 10987 1 #> 11020 1 #> 11049 1 #> 11072 1 #> 11088 1 #> 11126 2 #> 11131 2 #> 11156 2 #> 11161 2 #> 11206 3 #> 11208 3 #> 11228 4 #> 11251 4 #> 11287 1 #> 11300 2 #> 11301 2 #> 11318 2 #> 11321 2 #> 11350 3 #> 11372 3 #> 11396 3 #> 11398 3 #> 11401 3 #> 11424 3 #> 11435 1 #> 11439 1 #> 11446 1 #> 11456 1 #> 11469 1 #> 11482 1 #> 11499 1 #> 11516 2 #> 11520 2 #> 11526 2 #> 11535 2 #> 11565 3 #> 11570 3 #> 11586 3 #> 11596 3 #> 11598 3 #> 11619 1 #> 11620 1 #> 11640 1 #> 11648 1 #> 11650 1 #> 11655 1 #> 11666 1 #> 11679 1 #> 11690 1 #> 11695 1 #> 11712 2 #> 11717 2 #> 11733 3 #> 11749 3 #> 11751 3 #> 11762 3 #> 11792 1 #> 11793 1 #> 11802 1 #> 11804 1 #> 11828 1 #> 11849 1 #> 11864 1 #> 11866 1 #> 11891 2 #> 11900 2 #> 11915 3 #> 11920 1 #> 12050 1 #> 12060 1 #> 12168 2 #> 12178 2 #> 12209 2 #> 12231 2 #> 12369 2 #> 12425 2 #> 12442 2 #> 12531 2 #> 12542 1 #> 12564 1 #> 12577 1 #> 12589 1 #> 12615 1 #> 12644 1 #> 12699 1 #> 12744 1 #> 12769 1 #> 12770 1 #> 12793 1 #> 12872 2 #> 12899 2 #> 12920 2 #> 12946 2 #> 12961 2 #> 12996 3 #> 13000 3 #> 13050 3 #> 13069 1 #> 13202 2 #> 13208 2 #> 13275 2 #> 13328 2 #> 13355 2 #> 13556 2 #> 13576 2 #> 13602 2 #> 13603 2 #> 13707 2 #> 13735 1 #> 13753 1 #> 13759 1 #> 13802 1 #> 13811 1 #> 13820 1 #> 13821 1 #> 13824 1 #> 13841 1 #> 13868 2 #> 13886 3 #> 13896 4 #> 13906 6 #> 13913 6 #> 13939 3 #> 14030 7 #> 14049 1 #> 14158 7 #> 14181 1 #> 14258 2 #> 14346 1 #> 14384 2 #> 14415 1 #> 14426 1 #> 14431 1 #> 14466 1 #> 14479 1 #> 14487 1 #> 14493 1 #> 14500 1 #> 14520 1 #> 14533 1 #> 14534 1 #> 14540 1 #> 14556 1 #> 14557 1 #> 14565 1 #> 14568 1 #> 14569 1 #> 14597 1 #> 14599 1 #> 14616 2 #> 14631 1 #> 14647 1 #> 14648 1 #> 14650 1 #> 14655 1 #> 14658 1 #> 14665 1 #> 14678 1 #> 14679 1 #> 14681 1 #> 14683 1 #> 14712 1 #> 14726 1 #> 14743 1 #> 14756 1 #> 14769 1 #> 14790 1 #> 14797 1 #> 14827 2 #> 14860 2 #> 14865 1 #> 14903 1 #> 14906 1 #> 14920 1 #> 14926 1 #> 14931 1 #> 14955 1 #> 14957 1 #> 14981 1 #> 14982 1 #> 14994 1 #> 14999 1 #> 15014 1 #> 15039 1 #> 15041 1 #> 15045 1 #> 15047 1 #> 15049 1 #> 15059 2 #> 15061 2 #> 15092 1 #> 15108 1 #> 15116 1 #> 15118 1 #> 15120 1 #> 15150 1 #> 15151 1 #> 15161 1 #> 15173 1 #> 15174 1 #> 15204 1 #> 15209 1 #> 15210 1 #> 15237 1 #> 15243 2 #> 15249 2 #> 15253 2 #> 15291 2 #> 15301 2 #> 15306 2 #> 15327 1 #> 15368 1 #> 15404 1 #> 15405 1 #> 15417 1 #> 15530 3 #> 15538 3 #> 15619 1 #> 15631 1 #> 15643 1 #> 15644 1 #> 15668 1 #> 15671 1 #> 15710 1 #> 15742 1 #> 15758 1 #> 15837 2 #> 15894 2 #> 15976 6 #> 15996 6 #> 16024 6 #> 16061 7 #> 16173 1 #> 16187 2 #> 16216 2 #> 16235 2 #> 16264 3 #> 16331 1 #> 16350 1 #> 16391 1 #> 16477 1 #> 16509 1 #> 16512 1 #> 16616 1 #> 16679 1 #> 16780 1 #> 16781 1 #> 16812 11 #> 16826 14 #> 16898 14 #> 16923 14 #> 16943 15 #> 16953 15 #> 17008 15 #> 17283 3 #> 17396 4 #> 17510 4 #> 17672 2 #> 17687 4 #> 17711 6 #> 17719 1 #> 17733 12 #> 17761 2 #> 17840 1 #> 17848 1 #> 17885 1 #> 17920 1 #> 17934 1 #> 17948 1 #> 17974 1 #> 17994 1 #> 18000 1 #> 18022 1 #> 18232 1 #> 18278 1 #> 18416 1 #> 18514 2 #> 18570 2 #> 18627 2 #> 18630 2 #> 18717 3 #> 18885 4 #> 18922 4 #> 19221 1 #> 19281 1 #> 19425 2 #> 19472 2 #> 19476 2 #> 19613 2 #> 19699 2 #> 19758 4 #> 19776 4 #> 19779 4 #> 19903 4 #> 19944 4 #> 20079 4 #> 20105 4 #> 20152 4 #> 20178 4 #> 20314 4 #> 20379 4 #> 20428 4 #> 20436 4 #> 20457 1 #> 20465 4 #> 20641 4 #> 20671 4 #> 20673 4 #> 20695 4 #> 20764 4 #> 20798 4 #> 20957 4 #> 20980 4 #> 21074 4 #> 21138 4 #> 21255 4 #> 21291 4 #> 21331 4 #> 21539 4 #> 21637 4 #> 21657 4 #> 21660 4 #> 21684 4 #> 21794 12 #> 21842 16 #> 21854 16 #> 21917 18 #> 21928 18 #> 21983 18 #> 22022 19 #> 22047 19 #> 22123 2 #> 22178 2 #> 22220 20 #> 22284 20 #> 22315 20 #> 22451 20 #> 22621 21 #> 22785 6 #> 22798 7 #> 22829 7 #> 22856 7 #> 22936 9 #> 22968 1 #> 22997 1 #> 23024 2 #> 23028 3 #> 23034 3 #> 23059 3 #> 23112 3 #> 23115 3 #> 23125 3 #> 23243 3 #> 23275 3 #> 23342 3 #> 23448 4 #> 23649 13 #> 23777 15 #> 23822 2 #> 23861 2 #> 24090 2 #> 24175 1 #> 24212 1 #> 24272 4 #> 24297 4 #> 24549 4 #> 24640 1 #> 24661 1 #> 24664 1 #> 24838 3 #> 25213 7 #> 25390 7 #> 25447 7 #> 25475 7 #> 25620 3 #> 25685 4 #> 25704 4 #> 25874 4 #> 26034 15 #> 26054 15 #> 26064 16 #> 26068 16 #> 26084 16 #> 26111 17 #> 26167 2 #> 26235 3 #> 26240 3 #> 26253 3 #> 26366 5 #> 26416 6 #> 26464 6 #> 26519 17 #> 26556 6 #> 26588 3 #> 26594 6 #> 26606 7 #> 26624 2 #> 26651 1 #> 26659 3 #> 26669 4 #> 26720 4 #> 26726 4 #> 26740 4 #> 26797 4 #> 26803 4 #> 26813 4 #> 26853 4 #> 26971 4 #> 26996 4 #> 26997 4 #> 27066 1 #> 27086 3 #> 27103 4 #> 27114 4 #> 27115 4 #> 27231 4 #> 27232 4 #> 27283 4 #> 27346 4 #> 27401 4 #> 27407 4 #> 27416 4 #> 27431 4 #> 27471 1 #> 27481 1 #> 27521 1 #> 27546 2 #> 27564 2 #> 27607 6 #> 27625 6 #> 27703 8 #> 27729 8 #> 27746 8 #> 27751 8 #> 27788 8 #> 27824 8 #> 27941 11 #> 27942 11 #> 27958 11 #> 28006 11 #> 28050 11 #> 28064 11 #> 28103 11 #> 28215 2 #> 28226 2 #> 28247 2 #> 28293 3 #> 28317 6 #> 28323 6 #> 28388 1 #> 28444 23 #> 28466 4 #> 28513 13 #> 28577 1 #> 28625 1 #> 28628 1 #> 28694 6 #> 28720 6 #> 28764 6 #> 28880 4 #> 28962 4 #> 28966 4 #> 28993 8 #> 29047 3 #> 29058 3 #> 29100 4 #> 29114 4 #> 29115 4 #> 29134 5 #> 29183 6 #> 29188 7 #> 29213 7 #> 29242 8 #> 29297 8 #> 29308 8 #> 29370 8 #> 29405 8 #> 29416 8 #> 29553 1 #> 29589 1 #> 29701 1 #> 29705 1 #> 29742 1 #> 29759 2 #> 29785 2 #> 29804 2 #> 29836 3 #> 29865 4 #> 29904 5 #> 29906 5 #> 29926 6 #> 29945 6 #> 29987 7 #> 30011 1 #> 30030 1 #> 30095 1 #> 30123 1 #> 30180 3 #> 30192 4 #> 30239 5 #> 30279 5 #> 30299 5 #> 30497 1 #> 30502 1 #> 30548 1 #> 30582 1 #> 30610 1 #> 30621 1 #> 30655 1 #> 30662 1 #> 30669 1 #> 30670 1 #> 30718 1 #> 30731 1 #> 30744 1 #> 30756 1 #> 30787 1 #> 30796 1 #> 30821 2 #> 30822 2 #> 30856 3 #> 30877 4 #> 30914 1 #> 30915 1 #> 30961 1 #> 30968 1 #> 30974 1 #> 30986 1 #> 31014 1 #> 31021 1 #> 31041 1 #> 31062 1 #> 31091 1 #> 31161 1 #> 31219 1 #> 31243 1 #> 31246 1 #> 31311 1 #> 31317 1 #> 31329 1 #> 31388 4 #> 31431 5 #> 31489 1 #> 31490 1 #> 31527 1 #> 31532 1 #> 31539 1 #> 31540 1 #> 31543 1 #> 31564 2 #> 31574 2 #> 31633 2 #> 31659 2 #> 31665 2 #> 31675 2 #> 31676 2 #> 31716 2 #> 31763 2 #> 31783 2 #> 31877 3 #> 31907 3 #> 31917 3 #> 32031 1 #> 32036 1 #> 32039 1 #> 32062 1 #> 32071 1 #> 32074 1 #> 32075 1 #> 32077 1 #> 32097 1 #> 32105 1 #> 32109 1 #> 32116 1 #> 32126 1 #> 32129 1 #> 32140 1 #> 32142 2 #> 32148 2 #> 32179 7 #> 32180 7 #> 32181 1 #> 32205 1 #> 32213 1 #> 32219 1 #> 32223 1 #> 32226 1 #> 32227 1 #> 32251 1 #> 32265 3 #> 32286 5 #> 32290 5 #> 32297 5 #> 32306 5 #> 32310 5 #> 32319 5 #> 32324 5 #> 32325 5 #> 32336 5 #> 32341 5 #> 32366 1 #> 32368 1 #> 32405 1 #> 32415 1 #> 32417 1 #> 32422 1 #> 32430 1 #> 32445 1 #> 32447 1 #> 32450 1 #> 32455 1 #> 32456 1 #> 32457 1 #> 32467 1 #> 32470 2 #> 32472 2 #> 32473 2 #> 32492 3 #> 32499 6 #> 32513 2 #> 32529 2 #> 32531 2 #> 32571 3 #> 32585 4 #> 32586 4 #> 32587 4 #> 32591 4 #> 32602 4 #> 32606 4 #> 32610 4 #> 32617 5 #> 32629 5 #> 32632 5 #> 32633 5 #> 32643 6 #> 32644 6 #> 32646 7 #> 32647 7 #> 32657 1 #> 32659 1 #> 32661 1 #> 32670 1 #> 32680 1 #> 32698 1 #> 32702 1 #> 32721 2 #> 32727 2 #> 32764 2 #> 32774 2 #> 32791 3 #> 32795 3 #> 32809 3 #> 32824 3 #> 32845 4 #> 32849 4 #> 32853 4 #> 32861 4 #> 32893 1 #> 32910 1 #> 32913 1 #> 32919 1 #> 32935 1 #> 32942 1 #> 32950 1 #> 32959 1 #> 32961 1 #> 32990 2 #> 33020 2 #> 33021 2 #> 33025 2 #> 33045 2 #> 33054 2 #> 33055 2 #> 33104 4 #> 33106 4 #> 33117 5 #> 33131 1 #> 33141 1 #> 33144 1 #> 33151 1 #> 33180 2 #> 33195 2 #> 33201 2 #> 33234 4 #> 33249 5 #> 33267 5 #> 33275 5 #> 33278 5 #> 33289 5 #> 33291 5 #> 33299 5 #> 33310 5 #> 33318 5 #> 33337 5 #> 33346 5 #> 33358 1 #> 33362 1 #> 33374 2 #> 33388 2 #> 33413 2 #> 33429 2 #> 33436 2 #> 33448 2 #> 33450 2 #> 33454 2 #> 33473 2 #> 33484 2 #> 33538 2 #> 33546 2 #> 33569 2 #> 33570 2 #> 33573 2 #> 33574 2 #> 33584 2 #> 33592 1 #> 33682 1 #> 33718 1 #> 33743 2 #> 33859 2 #> 33953 2 #> 34015 2 #> 34018 2 #> 34028 2 #> 34112 2 #> 34139 3 #> 34305 4 #> 34311 4 #> 34327 4 #> 34365 4 #> 34371 4 #> 34463 5 #> 34467 5 #> 34486 5 #> 34543 6 #> 34565 1 #> 34640 1 #> 34648 1 #> 34702 1 #> 34739 1 #> 34742 1 #> 34763 1 #> 34764 1 #> 34769 1 #> 34775 1 #> 34821 1 #> 34853 2 #> 34875 3 #> 34903 3 #> 34922 3 #> 34924 3 #> 34925 3 #> 34937 1 #> 34941 1 #> 34942 1 #> 34961 1 #> 34995 1 #> 34996 1 #> 34997 1 #> 35002 1 #> 35009 1 #> 35015 1 #> 35028 1 #> 35041 1 #> 35045 1 #> 35056 2 #> 35075 3 #> 35086 3 #> 35105 4 #> 35117 4 #> 35124 4 #> 35131 1 #> 35134 1 #> 35139 1 #> 35145 1 #> 35158 1 #> 35161 1 #> 35194 2 #> 35204 2 #> 35209 2 #> 35225 2 #> 35240 2 #> 35251 3 #> 35256 3 #> 35274 3 #> 35282 3 #> 35286 3 #> 35297 3 #> 35307 3 #> 35312 3 #> 35318 3 #> 35382 2 #> 35414 2 #> 35431 2 #> 35471 2 #> 35492 3 #> 35499 3 #> 35528 3 #> 35547 3 #> 35574 3 #> 35647 3 #> 35695 3 #> 35699 3 #> 35723 4 #> 35740 4 #> 35742 4 #> 35764 4 #> 35813 4 #> 35814 4 #> 35831 5 #> 35868 5 #> 35903 1 #> 35904 1 #> 35944 1 #> 35954 1 #> 35958 1 #> 35971 1 #> 35975 1 #> 36019 1 #> 36033 2 #> 36035 2 #> 36039 2 #> 36048 2 #> 36057 2 #> 36064 2 #> 36090 3 #> 36103 3 #> 36114 4 #> 36129 5 #> 36163 1 #> 36186 1 #> 36187 1 #> 36188 1 #> 36210 1 #> 36232 1 #> 36243 1 #> 36263 1 #> 36295 2 #> 36297 2 #> 36320 2 #> 36332 2 #> 36336 2 #> 36338 2 #> 36355 2 #> 36364 2 #> 36369 2 #> 36391 3 #> 36417 1 #> 36448 1 #> 36462 1 #> 36480 1 #> 36486 1 #> 36521 1 #> 36526 1 #> 36530 1 #> 36552 2 #> 36560 2 #> 36564 2 #> 36568 2 #> 36571 2 #> 36601 3 #> 36618 3 #> 36644 3 #> 36650 3 #> 36656 3 #> 36786 2 #> 36837 2 #> 36849 2 #> 36866 2 #> 36910 2 #> 36965 2 #> 37051 2 #> 37075 2 #> 37205 2 #> 37287 2 #> 37299 3 #> 37354 6 #> 37500 7 #> 37575 8 #> 37590 8 #> 37609 8 #> 37640 9 #> 37663 9 #> 37666 9 #> 37704 9 #> 37728 1 #> 37762 2 #> 37766 2 #> 37767 2 #> 37772 2 #> 37812 3 #> 37893 6 #> 37911 6 #> 37916 6 #> 37921 6 #> 37928 6 #> 37998 6 #> 38019 2 #> 38020 2 #> 38024 2 #> 38025 2 #> 38031 3 #> 38036 3 #> 38044 3 #> 38071 4 #> 38074 4 #> 38075 4 #> 38085 4 #> 38090 4 #> 38100 4 #> 38110 4 #> 38117 4 #> 38136 4 #> 38167 5 #> 38209 5 #> 38214 6 #> 38219 6 #> 38289 1 #> 38324 1 #> 38341 1 #> 38405 2 #> 38429 3 #> 38445 3 #> 38448 3 #> 38467 3 #> 38497 4 #> 38499 4 #> 38503 4 #> 38504 4 #> 38506 4 #> 38563 1 #> 38578 1 #> 38584 1 #> 38585 1 #> 38592 1 #> 38630 1 #> 38655 1 #> 38708 1 #> 38797 2 #> 38801 3 #> 38954 5 #> 38974 5 #> 38988 5 #> 39062 5 #> 39065 5 #> 39070 5 #> 39078 5 #> 39124 5 #> 39140 1 #> 39144 1 #> 39280 2 #> 39380 4 #> 39391 4 #> 39442 4 #> 39454 4 #> 39465 4 #> 39509 5 #> 39557 5 #> 39581 5 #> 39589 5 #> 39601 5 #> 39603 5 #> 39615 5 #> 39656 5 #> 39668 1 #> 39674 2 #> 39676 2 #> 39678 2 #> 39700 3 #> 39718 3 #> 39720 3 #> 39728 3 #> 39745 3 #> 39750 3 #> 39751 3 #> 39759 3 #> 39778 3 #> 39790 3 #> 39797 3 #> 39808 5 #> 39818 5 #> 39826 5 #> 39850 5 #> 39853 5 #> 39901 2 #> 39944 1 #> 39946 1 #> 39951 1 #> 39954 1 #> 39981 1 #> 40018 1 #> 40019 1 #> 40023 1 #> 40105 1 #> 40138 2 #> 40147 2 #> 40203 2 #> 40218 2 #> 40240 2 #> 40290 2 #> 40372 4 #> 40403 4 #> 40442 4 #> 40455 4 #> 40469 4 #> 40509 1 #> 40512 1 #> 40517 1 #> 40519 1 #> 40521 1 #> 40538 1 #> 40550 1 #> 40554 1 #> 40575 2 #> 40606 3 #> 40613 3 #> 40625 3 #> 40638 3 #> 40642 3 #> 40648 3 #> 40653 3 #> 40670 4 #> 40675 5 #> 40680 5 #> 40702 5 #> 40705 1 #> 40707 1 #> 40731 2 #> 40756 2 #> 40761 2 #> 40773 2 #> 40778 2 #> 40783 2 #> 40789 2 #> 40817 2 #> 40824 2 #> 40836 2 #> 40878 3 #> 40896 3 #> 40908 3 #> 40927 4 #> 40936 5 #> 40937 5 #> 40940 1 #> 40948 1 #> 40969 1 #> 40975 1 #> 40983 1 #> 41005 1 #> 41016 1 #> 41017 1 #> 41020 1 #> 41036 1 #> 41041 1 #> 41053 1 #> 41057 1 #> 41062 1 #> 41063 1 #> 41066 1 #> 41071 1 #> 41093 2 #> 41148 1 #> 41150 1 #> 41153 1 #> 41160 1 #> 41163 1 #> 41167 1 #> 41194 1 #> 41217 1 #> 41221 1 #> 41234 1 #> 41237 1 #> 41241 2 #> 41244 2 #> 41284 2 #> 41304 3 #> 41326 5 #> 41341 5 #> 41370 1 #> 41379 1 #> 41394 2 #> 41412 2 #> 41429 3 #> 41442 3 #> 41453 3 #> 41464 3 #> 41482 3 #> 41526 6 #> 41540 6 #> 41582 6 #> 41587 6 #> 41605 6 #> 41616 6 #> 41626 6 #> 41654 6 #> 41695 6 #> 41701 6 #> 41723 6 #> 41762 1 #> 41770 1 #> 41772 1 #> 41777 1 #> 41793 1 #> 41799 1 #> 41809 1 #> 41822 1 #> 41829 1 #> 41834 1 #> 41835 1 #> 41839 1 #> 41849 1 #> 41851 1 #> 41861 1 #> 41867 1 #> 41936 3 #> 41942 3 #> 41948 4 #> 41952 1 #> 41987 1 #> 42061 1 #> 42075 1 #> 42094 1 #> 42107 1 #> 42126 1 #> 42150 2 #> 42172 2 #> 42217 2 #> 42231 3 #> 42232 3 #> 42258 4 #> 42284 1 #> 42313 1 #> 42337 1 #> 42343 1 #> 42345 1 #> 42358 1 #> 42368 1 #> 42371 2 #> 42372 2 #> 42373 2 #> 42383 2 #> 42392 2 #> 42408 2 #> 42414 2 #> 42415 2 #> 42422 2 #> 42434 2 #> 42452 1 #> 42455 1 #> 42466 1 #> 42471 1 #> 42487 1 #> 42496 1 #> 42531 2 #> 42548 2 #> 42559 2 #> 42561 2 #> 42582 2 #> 42624 2 #> 42629 2 #> 42641 2 #> 42678 2 #> 42709 2 #> 42732 3 #> 42734 3 #> 42756 3 #> 42808 4 #> 42822 1 #> 42846 1 #> 42880 1 #> 42886 1 #> 42914 1 #> 42917 1 #> 42944 2 #> 42975 6 #> 42985 6 #> 42987 6 #> 42996 6 #> 43002 6 #> 43021 7 #> 43050 8 #> 43059 9 #> 43060 9 #> 43063 9 #> 43074 9 #> 43081 9 #> 43115 1 #> 43117 1 #> 43142 1 #> 43146 1 #> 43157 1 #> 43232 1 #> 43246 1 #> 43257 1 #> 43262 1 #> 43277 1 #> 43323 1 #> 43327 2 #> 43337 2 #> 43352 2 #> 43369 2 #> 43553 2 #> 43580 3 #> 43588 3 #> 43592 3 #> 43638 4 #> 43651 1 #> 43658 1 #> 43682 1 #> 43687 1 #> 43688 1 #> 43733 2 #> 43734 2 #> 43738 2 #> 43739 2 #> 43760 2 #> 43761 2 #> 43762 2 #> 43781 2 #> 43797 2 #> 43798 2 #> 43804 2 #> 43822 3 #> 43865 4 #> 43909 6 #> 43991 1 #> 44066 1 #> 44108 1 #> 44120 1 #> 44158 1 #> 44231 1 #> 44248 1 #> 44356 1 #> 44448 6 #> 44490 6 #> 44506 6 #> 44513 6 #> 44534 6 #> 44645 9 #> 44797 9 #> 44822 9 #> 44845 9 #> 44851 9 #> 44928 9 #> 44969 1 #> 45048 2 #> 45111 2 #> 45125 2 #> 45135 2 #> 45153 2 #> 45160 2 #> 45175 2 #> 45227 2 #> 45246 3 #> 45272 1 #> 45279 1 #> 45291 1 #> 45302 3 #> 45328 4 #> 45371 5 #> 45387 5 #> 45416 6 #> 45431 6 #> 45432 6 #> 45445 6 #> 45479 6 #> 45491 6 #> 45506 6 #> 45578 8 #> 45592 1 #> 45604 1 #> 45664 2 #> 45695 2 #> 45713 2 #> 45760 4 #> 45774 4 #> 45781 4 #> 45819 7 #> 45828 7 #> 45846 1 #> 45862 1 #> 45868 1 #> 45917 1 #> 45928 1 #> 45943 1 #> 45963 1 #> 45971 1 #> 45974 1 #> 46005 1 #> 46052 1 #> 46063 1 #> 46078 1 #> 46091 1 #> 46144 2 #> 46233 3 #> 46249 1 #> 46259 1 #> 46269 1 #> 46293 2 #> 46317 3 #> 46356 1 #> 46369 1 #> 46373 1 #> 46408 1 #> 46498 1 #> 46512 1 #> 46602 1 #> 46691 2 #> 46708 2 #> 46833 2 #> 46995 4 #> 47015 4 #> 47024 4 #> 47119 4 #> 47142 4 #> 47159 4 #> 47214 4 #> 47283 1 #> 47288 1 #> 47306 2 #> 47342 2 #> 47380 2 #> 47384 2 #> 47387 2 #> 47391 2 #> 47404 2 #> 47408 2 #> 47416 2 #> 47421 2 #> 47427 2 #> 47436 2 #> 47451 2 #> 47459 2 #> 47469 2 #> 47478 2 #> 47495 2 #> 47513 1 #> 47517 1 #> 47547 1 #> 47548 1 #> 47586 1 #> 47595 1 #> 47641 1 #> 47647 1 #> 47651 1 #> 47661 1 #> 47663 1 #> 47680 1 #> 47683 1 #> 47686 1 #> 47689 1 #> 47698 1 #> 47702 1 #> 47722 1 #> 47737 3 #> 47752 1 #> 47754 1 #> 47760 1 #> 47770 1 #> 47776 1 #> 47785 1 #> 47793 1 #> 47819 1 #> 47826 1 #> 47832 1 #> 47863 1 #> 47864 1 #> 47887 2 #> 47902 2 #> 47933 2 #> 47937 2 #> 47938 2 #> 47940 2 #> 47968 3 #> 47990 1 #> 48060 1 #> 48077 1 #> 48093 1 #> 48109 1 #> 48144 1 #> 48154 1 #> 48160 1 #> 48191 1 #> 48193 1 #> 48232 1 #> 48278 1 #> 48322 1 #> 48342 1 #> 48354 1 #> 48357 1 #> 48369 1 #> 48449 1 #> 48459 2 #> 48468 2 #> 48593 4 #> 48603 4 #> 48624 6 #> 48632 6 #> 48644 6 #> 48658 6 #> 48664 6 #> 48671 6 #> 48677 6 #> 48702 2 #> 48706 2 #> 48728 2 #> 48730 2 #> 48733 2 #> 48746 2 #> 48748 2 #> 48805 6 #> 48806 6 #> 48817 1 #> 48822 1 #> 48836 1 #> 48842 2 #> 48852 2 #> 48853 2 #> 48879 3 #> 48894 4 #> 48900 5 #> 48907 6 #> 48917 7 #> 48923 7 #> 48938 7 #> 48945 8 #> 48947 8 #> 48974 8 #> 48975 8 #> 48991 1 #> 49003 1 #> 49013 1 #> 49021 1 #> 49058 1 #> 49088 1 #> 49106 1 #> 49113 2 #> 49166 2 #> 49277 1 #> 49301 1 #> 49303 1 #> 49304 1 #> 49338 1 #> 49407 2 #> 49408 2 #> 49410 2 #> 49416 2 #> 49422 2 #> 49426 2 #> 49467 2 #> 49496 2 #> 49508 3 #> 49514 3 #> 49528 1 #> 49530 1 #> 49532 1 #> 49543 1 #> 49557 1 #> 49561 1 #> 49564 1 #> 49581 1 #> 49591 1 #> 49594 1 #> 49600 1 #> 49608 1 #> 49625 2 #> 49626 2 #> 49634 2 #> 49668 2 #> 49689 2 #> 49704 2 #> 49728 2 #> 49732 2 #> 49741 1 #> 49750 1 #> 49755 1 #> 49759 1 #> 49792 1 #> 49830 1 #> 49833 2 #> 49836 2 #> 49856 2 #> 49864 2 #> 49882 4 #> 49913 4 #> 49919 4 #> 49923 4 #> 49927 4 #> 49934 4 #> 49941 4 #> 49943 4 #> 49952 4 #> 49954 4 #> 49969 1 #> 50008 1 #> 50009 1 #> 50011 1 #> 50015 1 #> 50025 1 #> 50026 1 #> 50030 1 #> 50041 1 #> 50042 1 #> 50051 1 #> 50062 1 #> 50068 1 #> 50075 2 #> 50076 2 #> 50078 2 #> 50082 2 #> 50097 2 #> 50100 2 #> 50160 2 #> 50221 3 #> 50250 3 #> 50268 3 #> 50271 3 #> 50287 3 #> 50292 4 #> 50297 4 #> 50315 4 #> 50321 4 #> 50327 4 #> 50343 4 #> 50347 4 #> 50348 4 #> 50349 4 #> 50362 4 #> 50383 4 #> 50386 4 #> 50392 4 #> 50393 4 #> 50396 4 #> 50541 1 #> 50555 1 #> 50559 2 #> 50609 2 #> 50682 2 #> 50705 2 #> 50738 2 #> 50755 2 #> 50794 2 #> 50908 2 #> 50915 2 #> 51004 2 #> 51024 2 #> 51285 4 #> 51312 4 #> 51371 4 #> 51421 5 #> 51453 5 #> 51572 1 #> 51630 1 #> 51671 1 #> 51673 1 #> 51708 1 #> 51713 1 #> 51741 1 #> 51753 1 #> 51770 1 #> 51779 1 #> 51829 1 #> 51830 1 #> 51934 1 #> 51962 2 #> 51976 2 #> 51979 2 #> 52018 3 #> 52063 5 #> 52072 5 #> 52089 6 #> 52106 1 #> 52116 1 #> 52193 1 #> 52227 1 #> 52231 1 #> 52264 1 #> 52296 1 #> 52313 1 #> 52318 1 #> 52320 1 #> 52360 1 #> 52399 2 #> 52407 2 #> 52427 2 #> 52437 3 #> 52479 4 #> 52490 4 #> 52516 4 #> 52639 5 #> 52682 1 #> 52691 1 #> 52696 1 #> 52764 2 #> 52852 2 #> 52855 2 #> 52893 2 #> 52898 2 #> 52910 2 #> 52954 3 #> 52979 3 #> 53009 4 #> 53010 4 #> 53034 4 #> 53044 4 #> 53055 4 #> 53085 4 #> 53115 4 #> 53175 1 #> 53190 1 #> 53198 1 #> 53240 1 #> 53284 2 #> 53298 3 #> 53302 3 #> 53322 4 #> 53329 4 #> 53335 4 #> 53346 4 #> 53353 4 #> 53381 4 #> 53382 4 #> 53401 4 #> 53429 4 #> 53437 4 #> 53471 4 #> 53474 4 #> 53527 1 #> 53529 1 #> 53545 1 #> 53571 2 #> 53572 2 #> 53593 2 #> 53596 2 #> 53599 2 #> 53605 2 #> 53628 2 #> 53630 2 #> 53664 2 #> 53667 2 #> 53693 2 #> 53704 2 #> 53706 2 #> 53732 2 #> 53791 2 #> 53800 2 #> 53816 2 #> 53860 1 #> 53886 1 #> 53900 1 #> 53914 2 #> 53928 2 #> 53938 2 #> 53959 2 #> 53963 2 #> 53986 2 #> 53991 2 #> 53996 2 #> 54017 2 #> 54050 2 #> 54065 3 #> 54082 1 #> 54084 1 #> 54094 1 #> 54104 1 #> 54106 1 #> 54117 1 #> 54149 2 #> 54156 2 #> 54196 2 #> 54201 2 #> 54205 2 #> 54207 2 #> 54219 2 #> 54246 3 #> 54297 3 #> 54302 3 #> 54311 3 #> 54359 2 #> 54367 2 #> 54369 2 #> 54383 2 #> 54387 2 #> 54390 2 #> 54391 2 #> 54398 2 #> 54407 2 #> 54408 2 #> 54422 3 #> 54473 3 #> 54520 1 #> 54567 1 #> 54581 1 #> 54611 1 #> 54625 1 #> 54653 1 #> 54684 1 #> 54691 1 #> 54703 2 #> 54717 2 #> 54727 2 #> 54759 2 #> 54771 2 #> 54775 2 #> 54790 2 #> 54826 2 #> 54897 3 #> 54911 3 #> 54923 3 #> 54927 3 #> 54988 1 #> 55002 1 #> 55010 1 #> 55022 1 #> 55042 1 #> 55055 1 #> 55067 1 #> 55078 1 #> 55141 2 #> 55143 2 #> 55159 2 #> 55165 2 #> 55176 2 #> 55212 2 #> 55219 2 #> 55225 2 #> 55226 2 #> 55236 2 #> 55289 4 #> 55306 4 #> 55357 1 #> 55372 1 #> 55379 1 #> 55381 1 #> 55382 1 #> 55389 1 #> 55394 2 #> 55397 2 #> 55405 3 #> 55419 3 #> 55428 4 #> 55431 4 #> 55476 4 #> 55494 4 #> 55503 4 #> 55509 4 #> 55511 4 #> 55517 4 #> 55519 4 #> 55544 4 #> 55575 2 #> 55580 2 #> 55594 5 #> 55603 5 #> 55604 5 #> 55610 5 #> 55616 5 #> 55621 5 #> 55631 5 #> 55641 5 #> 55669 5 #> 55673 5 #> 55683 5 #> 55687 5 #> 55692 5 #> 55695 5 #> 55720 5 #> 55725 5 #> 55728 5 #> 55736 5 #> 55761 1 #> 55771 1 #> 55784 1 #> 55816 1 #> 55880 2 #> 55940 2 #> 56036 2 #> 56068 2 #> 56072 2 #> 56115 2 #> 56120 2 #> 56153 2 #> 56156 2 #> 56161 2 #> 56169 2 #> 56185 2 #> 56199 2 #> 56231 3 #> 56279 4 #> 56301 5 #> 56324 1 #> 56342 1 #> 56354 1 #> 56363 1 #> 56368 1 #> 56370 1 #> 56376 1 #> 56382 1 #> 56384 1 #> 56386 1 #> 56404 1 #> 56427 1 #> 56438 1 #> 56446 1 #> 56452 1 #> 56457 1 #> 56474 2 #> 56495 4 #> 56497 4 #> 56498 4 #> 56531 1 #> 56607 1 #> 56626 1 #> 56636 1 #> 56759 1 #> 56795 1 #> 56814 1 #> 56834 1 #> 56848 1 #> 56923 1 #> 57038 1 #> 57054 1 #> 57088 2 #> 57121 2 #> 57322 2 #> 57479 2 #> 57637 3 #> 57655 4 #> 57821 7 #> 57843 7 #> 57942 5 #> 57999 1 #> 58042 1 #> 58049 1 #> 58127 1 #> 58178 1 #> 58297 1 #> 58322 1 #> 58342 1 #> 58350 1 #> 58497 1 #> 58723 1 #> 58741 1 #> 58789 1 #> 58792 1 #> 58910 1 #> 59061 1 #> 59160 2 #> 59176 2 #> 59219 2 #> 59403 3 #> 59502 1 #> 59519 1 #> 59558 1 #> 59559 1 #> 59744 1 #> 59817 1 #> 59818 1 #> 59819 1 #> 59855 1 #> 59921 1 #> 59955 1 #> 60008 1 #> 60094 1 #> 60281 2 #> 60339 2 #> 60471 2 #> 60527 2 #> 60696 2 #> 60733 2 #> 60908 3 #> 61120 1 #> 61144 1 #> 61148 1 #> 61188 3 #> 61204 3 #> 61213 3 #> 61249 5 #> 61250 5 #> 61272 5 #> 61324 6 #> 61332 6 #> 61360 6 #> 61440 6 #> 61590 1 #> 61595 1 #> 61643 1 #> 61659 1 #> 61693 1 #> 61733 1 #> 61759 1 #> 61820 1 #> 61829 1 #> 61838 1 #> 61946 1 #> 62022 1 #> 62186 2 #> 62272 2 #> 62355 2 #> 62422 2 #> 62614 5 #> 62626 5 #> 62634 5 #> 62637 5 #> 62697 1 #> 62724 1 #> 62725 1 #> 62808 1 #> 62826 1 #> 62871 1 #> 62955 1 #> 62960 1 #> 63034 1 #> 63085 1 #> 63107 1 #> 63188 1 #> 63297 1 #> 63476 2 #> 63681 2 #> 63703 2 #> 63738 2 #> 63802 3 #> 63873 3 #> 63934 1 #> 64012 1 #> 64052 1 #> 64075 1 #> 64118 1 #> 64127 1 #> 64238 1 #> 64321 2 #> 64476 2 #> 64508 2 #> 64525 2 #> 64526 2 #> 64549 2 #> 64855 2 #> 64969 2 #> 65045 2 #> 65134 2 #> 65135 2 #> 65296 1 #> 65342 1 #> 65351 1 #> 65357 1 #> 65401 1 #> 65422 1 #> 65501 1 #> 65502 1 #> 65506 1 #> 65577 1 #> 65586 1 #> 65607 1 #> 65672 1 #> 65714 1 #> 66013 2 #> 66094 2 #> 66142 2 #> 66321 2 #> 66346 2 #> 66477 6 #> 66545 1 #> 66552 1 #> 66687 1 #> 66700 1 #> 66740 1 #> 66789 1 #> 66795 1 #> 66796 1 #> 66815 1 #> 66962 2 #> 67041 2 #> 67081 2 #> 67186 2 #> 67201 2 #> 67238 2 #> 67250 2 #> 67387 2 #> 67538 2 #> 67608 3 #> 67645 1 #> 67672 1 #> 67694 1 #> 67698 1 #> 67734 1 #> 67765 1 #> 67849 2 #> 67888 3 #> 67896 3 #> 67898 3 #> 67908 3 #> 67920 3 #> 67935 3 #> 67963 3 #> 67981 3 #> 67991 3 #> 68075 3 #> 68089 3 #> 68093 3 #> 68094 3 #> 68135 1 #> 68200 1 #> 68234 1 #> 68287 1 #> 68413 1 #> 68482 1 #> 68516 1 #> 68715 2 #> 68742 2 #> 68800 2 #> 68828 3 #> 68834 3 #> 68853 4 #> 68855 4 #> 68859 5 #> 68869 7 #> 68891 7 #> 68908 7 #> 68912 7 #> 68938 1 #> 68940 1 #> 69054 1 #> 69100 3 #> 69113 3 #> 69122 1 #> 69314 1 #> 69335 1 #> 69359 1 #> 69452 1 #> 69469 1 #> 69682 1 #> 69730 3 #> 69736 3 #> 69745 1 #> 69758 1 #> 69771 2 #> 69777 2 #> 69779 3 #> 69784 3 #> 69790 6 #> 69794 6 #> 69808 1 #> 69809 1 #> 69827 1 #> 69852 1 #> 69880 1 #> 69926 1 #> 69942 1 #> 69980 1 #> 70051 1 #> 70072 2 #> 70158 2 #> 70360 1 #> 70377 1 #> 70402 1 #> 70469 2 #> 70498 2 #> 70527 2 #> 70553 2 #> 70675 2 #> 70760 2 #> 70807 3 #> 70837 5 #> 70919 6 #> 70929 6 #> 70939 6 #> 70941 6 #> 70972 6 #> 70996 6 #> 71024 6 #> 71270 1 #> 71276 1 #> 71356 1 #> 71395 1 #> 71462 1 #> 71479 2 #> 71494 2 #> 71515 2 #> 71529 2 #> 71580 2 #> 71923 2 #> 71963 2 #> 72086 3 #> 72088 3 #> 72093 3 #> 72099 3 #> 72103 3 #> 72117 1 #> 72134 1 #> 72135 1 #> 72137 1 #> 72176 1 #> 72192 1 #> 72371 1 #> 72375 1 #> 72401 1 #> 72404 1 #> 72477 1 #> 72577 2 #> 72594 2 #> 72612 4 #> 72650 4 #> 72738 5 #> 72800 1 #> 72846 1 #> 72848 1 #> 72883 1 #> 72928 1 #> 72941 1 #> 73006 1 #> 73149 1 #> 73155 1 #> 73162 1 #> 73224 1 #> 73307 4 #> 73318 4 #> 73393 4 #> 73642 4 #> 73773 5 #> 73914 1 #> 73992 1 #> 74001 1 #> 74052 2 #> 74061 2 #> 74083 2 #> 74160 4 #> 74189 4 #> 74269 4 #> 74577 5 #> 74619 5 #> 74683 5 #> 74700 5 #> 74717 5 #> 74733 5 #> 74745 5 #> 74757 5 #> 74767 5 #> 74771 5 #> 74815 1 #> 74830 1 #> 74932 1 #> 74954 1 #> 75007 2 #> 75017 2 #> 75179 2 #> 75182 2 #> 75254 2 #> 75256 2 #> 75267 2 #> 75279 2 #> 75359 3 #> 75382 3 #> 75441 3 #> 75810 4 #> 75884 4 #> 75946 5 #> 76104 1 #> 76113 1 #> 76116 1 #> 76119 1 #> 76137 1 #> 76146 1 #> 76154 1 #> 76171 1 #> 76177 1 #> 76191 1 #> 76200 1 #> 76202 2 #> 76211 2 #> 76245 2 #> 76250 3 #> 76253 3 #> 76257 4 #> 76284 4 #> 76287 5 #> 76302 1 #> 76325 1 #> 76327 1 #> 76340 1 #> 76353 1 #> 76368 1 #> 76369 1 #> 76398 2 #> 76399 2 #> 76407 2 #> 76434 3 #> 76438 4 #> 76439 4 #> 76447 4 #> 76459 5 #> 76464 7 #> value #> 35 Small #> 37 Small #> 55 Small #> 73 Small #> 90 Moderately small #> 146 Moderately small #> 187 Moderately small #> 220 Average #> 301 Average #> 309 Average #> 327 Average #> 342 Average #> 360 Average #> 384 Average #> 402 Average #> 407 Average #> 429 Moderately large #> 462 Moderately large #> 532 Large #> 533 Large #> 569 Contrast present #> 577 Contrast present #> 596 Contrast present #> 625 Contrast present #> 628 Contrast absent #> 637 Contrast absent #> 647 Contrast absent #> 656 Contrast absent #> 659 Contrast absent #> 665 Contrast absent #> 680 Contrast absent #> 746 Contrast absent #> 761 Contrast absent #> 774 Contrast absent #> 783 Contrast absent #> 803 Contrast absent #> 854 Neutral #> 860 Neutral #> 867 Neutral #> 895 Neutral #> 922 Neutral #> 938 Accusative #> 980 Accusative #> 987 Accusative #> 1020 Accusative #> 1028 Accusative #> 1044 Accusative #> 1117 Accusative #> 1150 Ergative #> 1151 Ergative #> 1164 Active #> 1172 Active #> 1173 Active #> 1185 Active #> 1188 Active #> 1197 Hierarchical #> 1265 Obligatory pronouns in subject position #> 1296 Obligatory pronouns in subject position #> 1314 Subject affixes on verb #> 1325 Subject affixes on verb #> 1360 Subject affixes on verb #> 1399 Subject affixes on verb #> 1444 Subject affixes on verb #> 1461 Subject affixes on verb #> 1466 Subject affixes on verb #> 1514 Subject affixes on verb #> 1560 Subject affixes on verb #> 1567 Subject affixes on verb #> 1569 Subject affixes on verb #> 1574 Subject affixes on verb #> 1788 Subject pronouns in different position #> 1892 Optional pronouns in subject position #> 1896 Optional pronouns in subject position #> 1943 No person marking #> 1954 No person marking #> 1967 No person marking #> 1984 No person marking #> 2002 No person marking #> 2037 Only the A argument #> 2067 Only the A argument #> 2077 Only the A argument #> 2083 Only the A argument #> 2122 A or P argument #> 2134 Both the A and P arguments #> 2136 Both the A and P arguments #> 2150 Both the A and P arguments #> 2158 Both the A and P arguments #> 2159 Both the A and P arguments #> 2164 Both the A and P arguments #> 2199 Both the A and P arguments #> 2210 Both the A and P arguments #> 2217 Both the A and P arguments #> 2286 Both the A and P arguments #> 2328 No person marking #> 2354 No person marking #> 2370 No person marking #> 2392 No person marking #> 2397 No person marking #> 2413 No zero realization #> 2457 No zero realization #> 2478 No zero realization #> 2492 No zero realization #> 2493 No zero realization #> 2537 No zero realization #> 2558 No zero realization #> 2562 No zero realization #> 2578 No zero realization #> 2591 No zero realization #> 2599 Zero in some 3sg forms #> 2656 Zero in all 3sg forms #> 2664 Zero in all 3rd person forms #> 2669 Zero in all 3rd person forms #> 2684 Zero in all 3rd person forms #> 2697 A and P do not or do not both occur on the verb #> 2743 A and P do not or do not both occur on the verb #> 2757 A and P do not or do not both occur on the verb #> 2764 A and P do not or do not both occur on the verb #> 2769 A and P do not or do not both occur on the verb #> 2777 A and P do not or do not both occur on the verb #> 2778 A and P do not or do not both occur on the verb #> 2803 A and P do not or do not both occur on the verb #> 2851 A and P do not or do not both occur on the verb #> 2873 A and P do not or do not both occur on the verb #> 2897 A precedes P #> 2912 A precedes P #> 2937 A precedes P #> 2956 A precedes P #> 2965 A precedes P #> 2967 A precedes P #> 3001 P precedes A #> 3036 P precedes A #> 3049 Both orders of A and P occur #> 3061 A and P are fused #> 3102 Indirect-object construction #> 3105 Indirect-object construction #> 3150 Indirect-object construction #> 3178 Indirect-object construction #> 3213 Indirect-object construction #> 3259 Indirect-object construction #> 3317 Double-object construction #> 3330 Double-object construction #> 3355 Secondary-object construction #> 3364 Secondary-object construction #> 3384 Secondary-object construction #> 3395 Secondary-object construction #> 3406 Secondary-object construction #> 3410 Secondary-object construction #> 3450 Mixed #> 3453 Mixed #> 3460 No reciprocals #> 3467 No reciprocals #> 3468 No reciprocals #> 3495 Distinct from reflexive #> 3498 Distinct from reflexive #> 3501 Distinct from reflexive #> 3505 Distinct from reflexive #> 3506 Distinct from reflexive #> 3511 Distinct from reflexive #> 3513 Distinct from reflexive #> 3515 Distinct from reflexive #> 3530 Distinct from reflexive #> 3537 Distinct from reflexive #> 3555 Distinct from reflexive #> 3559 Distinct from reflexive #> 3590 Identical to reflexive #> 3607 Identical to reflexive #> 3622 Identical to reflexive #> 3626 Identical to reflexive #> 3634 Present #> 3645 Present #> 3679 Present #> 3714 Present #> 3715 Present #> 3731 Present #> 3747 Present #> 3748 Present #> 3784 Present #> 3787 Present #> 3804 Absent #> 3811 Absent #> 3813 Absent #> 3842 Absent #> 3843 Absent #> 3844 Absent #> 3921 Absent #> 3930 Absent #> 3933 Absent #> 3966 Absent #> 4002 Implicit patient #> 4007 Implicit patient #> 4040 Oblique patient #> 4055 No antipassive #> 4057 No antipassive #> 4082 No antipassive #> 4083 No antipassive #> 4087 No antipassive #> 4088 No antipassive #> 4097 No antipassive #> 4107 No antipassive #> 4131 No antipassive #> 4135 No antipassive #> 4150 No antipassive #> 4160 No antipassive #> 4167 No antipassive #> 4178 No antipassive #> 4182 No antipassive #> 4186 No antipassive #> 4187 No antipassive #> 4204 productive #> 4232 partially productive #> 4233 partially productive #> 4242 no antipassive #> 4243 no antipassive #> 4249 no antipassive #> 4251 no antipassive #> 4264 no antipassive #> 4283 no antipassive #> 4284 no antipassive #> 4287 no antipassive #> 4303 no antipassive #> 4305 no antipassive #> 4326 no antipassive #> 4340 no antipassive #> 4355 no antipassive #> 4361 no antipassive #> 4362 no antipassive #> 4369 no antipassive #> 4376 no antipassive #> 4389 Benefactive object; both bases #> 4392 Benefactive object; both bases #> 4396 Benefactive object; both bases #> 4414 Benefactive and other; both bases #> 4430 Benefactive and other; both bases #> 4431 Benefactive and other; both bases #> 4436 Benefactive and other; both bases #> 4447 Benefactive and other; both bases #> 4451 Benefactive and other; only transitive #> 4457 Non-benefactive object; both bases #> 4461 Non-benefactive object; both bases #> 4476 No applicative construction #> 4484 No applicative construction #> 4490 No applicative construction #> 4502 No applicative construction #> 4511 No applicative construction #> 4527 No applicative construction #> 4544 No applicative construction #> 4557 No applicative construction #> 4562 No applicative construction #> 4568 Instrument #> 4569 Instrument #> 4574 Instrument #> 4579 Instrument #> 4596 Locative #> 4598 Locative #> 4603 Instrument and locative #> 4604 Instrument and locative #> 4612 No other roles (= Only benefactive) #> 4620 No other roles (= Only benefactive) #> 4632 No other roles (= Only benefactive) #> 4656 No applicative construction #> 4661 No applicative construction #> 4664 No applicative construction #> 4668 No applicative construction #> 4669 No applicative construction #> 4678 No applicative construction #> 4729 No applicative construction #> 4730 No applicative construction #> 4743 No applicative construction #> 4764 None #> 4794 None #> 4799 None #> 4803 None #> 4843 None #> 4885 None #> 4894 None #> 4940 None #> 4987 None #> 5000 None #> 5031 None #> 5041 None #> 5065 None #> 5078 None #> 5089 None #> 5133 None #> 5210 None #> 5226 None #> 5266 None #> 5268 None #> 5311 Sequential but no purposive #> 5351 Purposive but no sequential #> 5354 Purposive but no sequential #> 5359 Purposive but no sequential #> 5361 Purposive but no sequential #> 5364 Purposive but no sequential #> 5395 Purposive but no sequential #> 5402 Purposive but no sequential #> 5408 Purposive but no sequential #> 5409 Purposive but no sequential #> 5413 Both #> 5421 Both #> 5422 Both #> 5483 Morphological but no compound #> 5514 Morphological but no compound #> 5550 Morphological but no compound #> 5551 Morphological but no compound #> 5553 Morphological but no compound #> 5566 Morphological but no compound #> 5571 Morphological but no compound #> 5579 Morphological but no compound #> 5592 Morphological but no compound #> 5593 Morphological but no compound #> 5597 Morphological but no compound #> 5598 Morphological but no compound #> 5617 Morphological but no compound #> 5622 Morphological but no compound #> 5640 Morphological but no compound #> 5675 Morphological but no compound #> 5721 Both #> 5724 Both #> 5731 Both #> 5732 Both #> 5842 Negative affix #> 5973 Negative affix #> 6054 Negative affix #> 6125 Negative affix #> 6194 Negative particle #> 6197 Negative particle #> 6256 Negative particle #> 6300 Negative particle #> 6304 Negative particle #> 6432 Negative particle #> 6465 Negative particle #> 6511 Negative particle #> 6525 Negative particle #> 6586 Negative particle #> 6615 Negative particle #> 6622 Negative particle #> 6810 Double negation #> 6863 Double negation #> 6881 Double negation #> 6900 Symmetric #> 6936 Symmetric #> 6942 Symmetric #> 6972 Symmetric #> 6978 Symmetric #> 6987 Symmetric #> 6998 Symmetric #> 7063 Both #> 7069 Both #> 7070 Both #> 7084 Both #> 7087 Both #> 7090 Both #> 7097 Both #> 7103 Both #> 7153 Both #> 7173 Both #> 7181 Both #> 7183 Both #> 7184 Both #> 7245 A/NonReal #> 7250 A/NonReal #> 7254 A/Cat #> 7266 A/Cat #> 7267 A/Cat #> 7271 A/Cat #> 7298 A/Cat #> 7300 A/Cat #> 7308 A/Cat #> 7321 A/Cat #> 7336 A/Fin and A/NonReal #> 7352 A/Fin and A/Cat #> 7355 A/Fin and A/Cat #> 7387 Non-assignable #> 7399 Non-assignable #> 7421 Non-assignable #> 7451 Non-assignable #> 7461 Non-assignable #> 7463 Non-assignable #> 7472 Non-assignable #> 7493 Predicate negation also present #> 7505 Predicate negation also present #> 7514 Predicate negation also present #> 7522 Predicate negation also present #> 7535 Predicate negation also present #> 7568 Predicate negation also present #> 7577 Predicate negation also present #> 7631 Predicate negation also present #> 7658 Predicate negation also present #> 7661 No predicate negation #> 7667 No predicate negation #> 7706 Question particle #> 7711 Question particle #> 7770 Question particle #> 7798 Question particle #> 7802 Question particle #> 7964 Question particle #> 7974 Question particle #> 8084 Question particle #> 8144 Question particle #> 8156 Question particle #> 8246 Question particle #> 8313 Interrogative verb morphology #> 8316 Interrogative verb morphology #> 8387 Interrogative verb morphology #> 8454 Mixture of previous two types #> 8538 Interrogative intonation only #> 8561 Interrogative intonation only #> 8572 Interrogative intonation only #> 8648 Interrogative intonation only #> 8650 Locational #> 8659 Locational #> 8688 Locational #> 8743 Topic #> 8746 Topic #> 8777 Conjunctional #> 8779 Conjunctional #> 8793 Conjunctional #> 8851 'Have' #> 8853 'Have' #> 8856 'Have' #> 8935 Verbal encoding #> 8936 Verbal encoding #> 8962 Verbal encoding #> 8998 Verbal encoding #> 9014 Verbal encoding #> 9054 Nonverbal encoding #> 9057 Nonverbal encoding #> 9099 Nonverbal encoding #> 9157 Nonverbal encoding #> 9176 Mixed #> 9233 Mixed #> 9238 Mixed #> 9245 Mixed #> 9248 Mixed #> 9292 Different #> 9300 Different #> 9330 Different #> 9335 Different #> 9357 Different #> 9371 Different #> 9427 Different #> 9444 Different #> 9450 Different #> 9464 Different #> 9512 Different #> 9564 Identical #> 9593 Identical #> 9609 Identical #> 9683 Simple #> 9700 Simple #> 9704 Simple #> 9722 Simple #> 9769 Moderately complex #> 9860 Moderately complex #> 9878 Moderately complex #> 9886 Moderately complex #> 9895 Moderately complex #> 9930 Moderately complex #> 9938 Moderately complex #> 9955 Moderately complex #> 9980 Moderately complex #> 9999 Complex #> 10016 Complex #> 10077 Complex #> 10108 Complex #> 10128 Complex #> 10154 Impossible #> 10163 Impossible #> 10168 Impossible #> 10172 Impossible #> 10201 Impossible #> 10269 Impossible #> 10276 Impossible #> 10291 Impossible #> 10296 Impossible #> 10349 Impossible #> 10385 Possible #> 10398 Possible #> 10478 Possible #> 10482 Possible #> 10538 Locational #> 10578 Locational #> 10637 Exceed #> 10659 Conjoined #> 10719 Non-reduction #> 10723 Non-reduction #> 10724 Non-reduction #> 10725 Non-reduction #> 10726 Non-reduction #> 10730 Non-reduction #> 10758 Gap #> 10759 Gap #> 10763 Gap #> 10766 Gap #> 10767 Gap #> 10777 Gap #> 10794 Gap #> 10806 Gap #> 10822 Gap #> 10859 Gap #> 10885 Non-reduction #> 10892 Non-reduction #> 10908 Pronoun-retention #> 10918 Gap #> 10928 Gap #> 10936 Gap #> 10942 Gap #> 10950 Gap #> 10967 Gap #> 10968 Gap #> 10969 Not possible #> 10972 Not possible #> 10987 Subject is left implicit #> 11020 Subject is left implicit #> 11049 Subject is left implicit #> 11072 Subject is left implicit #> 11088 Subject is left implicit #> 11126 Subject is expressed overtly #> 11131 Subject is expressed overtly #> 11156 Subject is expressed overtly #> 11161 Subject is expressed overtly #> 11206 Both construction types exist #> 11208 Both construction types exist #> 11228 Desiderative verbal affix #> 11251 Desiderative verbal affix #> 11287 Balanced #> 11300 Balanced/deranked #> 11301 Balanced/deranked #> 11318 Balanced/deranked #> 11321 Balanced/deranked #> 11350 Deranked #> 11372 Deranked #> 11396 Deranked #> 11398 Deranked #> 11401 Deranked #> 11424 Deranked #> 11435 Balanced #> 11439 Balanced #> 11446 Balanced #> 11456 Balanced #> 11469 Balanced #> 11482 Balanced #> 11499 Balanced #> 11516 Balanced/deranked #> 11520 Balanced/deranked #> 11526 Balanced/deranked #> 11535 Balanced/deranked #> 11565 Deranked #> 11570 Deranked #> 11586 Deranked #> 11596 Deranked #> 11598 Deranked #> 11619 Balanced #> 11620 Balanced #> 11640 Balanced #> 11648 Balanced #> 11650 Balanced #> 11655 Balanced #> 11666 Balanced #> 11679 Balanced #> 11690 Balanced #> 11695 Balanced #> 11712 Balanced/deranked #> 11717 Balanced/deranked #> 11733 Deranked #> 11749 Deranked #> 11751 Deranked #> 11762 Deranked #> 11792 Balanced #> 11793 Balanced #> 11802 Balanced #> 11804 Balanced #> 11828 Balanced #> 11849 Balanced #> 11864 Balanced #> 11866 Balanced #> 11891 Balanced/deranked #> 11900 Balanced/deranked #> 11915 Deranked #> 11920 Identical #> 12050 Identical #> 12060 Identical #> 12168 Different #> 12178 Different #> 12209 Different #> 12231 Different #> 12369 Different #> 12425 Different #> 12442 Different #> 12531 Different #> 12542 No tones #> 12564 No tones #> 12577 No tones #> 12589 No tones #> 12615 No tones #> 12644 No tones #> 12699 No tones #> 12744 No tones #> 12769 No tones #> 12770 No tones #> 12793 No tones #> 12872 Simple tone system #> 12899 Simple tone system #> 12920 Simple tone system #> 12946 Simple tone system #> 12961 Simple tone system #> 12996 Complex tone system #> 13000 Complex tone system #> 13050 Complex tone system #> 13069 Identical #> 13202 Different #> 13208 Different #> 13275 Different #> 13328 Different #> 13355 Different #> 13556 Different #> 13576 Different #> 13602 Different #> 13603 Different #> 13707 Farmer-foragers #> 13735 Decimal #> 13753 Decimal #> 13759 Decimal #> 13802 Decimal #> 13811 Decimal #> 13820 Decimal #> 13821 Decimal #> 13824 Decimal #> 13841 Decimal #> 13868 Hybrid vigesimal-decimal #> 13886 Pure vigesimal #> 13896 Other base #> 13906 Restricted #> 13913 Restricted #> 13939 4 #> 14030 6 #> 14049 3-4 #> 14158 11 #> 14181 Green vs. blue #> 14258 Green/blue #> 14346 Red vs. yellow #> 14384 Red/yellow #> 14415 No M-T pronouns #> 14426 No M-T pronouns #> 14431 No M-T pronouns #> 14466 No M-T pronouns #> 14479 No M-T pronouns #> 14487 No M-T pronouns #> 14493 No M-T pronouns #> 14500 No M-T pronouns #> 14520 No M-T pronouns #> 14533 No M-T pronouns #> 14534 No M-T pronouns #> 14540 No M-T pronouns #> 14556 No M-T pronouns #> 14557 No M-T pronouns #> 14565 No M-T pronouns #> 14568 No M-T pronouns #> 14569 No M-T pronouns #> 14597 No M-T pronouns #> 14599 No M-T pronouns #> 14616 M-T pronouns, paradigmatic #> 14631 No m in first person singular #> 14647 No m in first person singular #> 14648 No m in first person singular #> 14650 No m in first person singular #> 14655 No m in first person singular #> 14658 No m in first person singular #> 14665 No m in first person singular #> 14678 No m in first person singular #> 14679 No m in first person singular #> 14681 No m in first person singular #> 14683 No m in first person singular #> 14712 No m in first person singular #> 14726 No m in first person singular #> 14743 No m in first person singular #> 14756 No m in first person singular #> 14769 No m in first person singular #> 14790 No m in first person singular #> 14797 No m in first person singular #> 14827 m in first person singular #> 14860 m in first person singular #> 14865 No N-M pronouns #> 14903 No N-M pronouns #> 14906 No N-M pronouns #> 14920 No N-M pronouns #> 14926 No N-M pronouns #> 14931 No N-M pronouns #> 14955 No N-M pronouns #> 14957 No N-M pronouns #> 14981 No N-M pronouns #> 14982 No N-M pronouns #> 14994 No N-M pronouns #> 14999 No N-M pronouns #> 15014 No N-M pronouns #> 15039 No N-M pronouns #> 15041 No N-M pronouns #> 15045 No N-M pronouns #> 15047 No N-M pronouns #> 15049 No N-M pronouns #> 15059 N-M pronouns, paradigmatic #> 15061 N-M pronouns, paradigmatic #> 15092 No m in second person singular #> 15108 No m in second person singular #> 15116 No m in second person singular #> 15118 No m in second person singular #> 15120 No m in second person singular #> 15150 No m in second person singular #> 15151 No m in second person singular #> 15161 No m in second person singular #> 15173 No m in second person singular #> 15174 No m in second person singular #> 15204 No m in second person singular #> 15209 No m in second person singular #> 15210 No m in second person singular #> 15237 No m in second person singular #> 15243 m in second person singular #> 15249 m in second person singular #> 15253 m in second person singular #> 15291 m in second person singular #> 15301 m in second person singular #> 15306 m in second person singular #> 15327 Words derived from Sinitic cha #> 15368 Words derived from Sinitic cha #> 15404 Words derived from Sinitic cha #> 15405 Words derived from Sinitic cha #> 15417 Words derived from Sinitic cha #> 15530 Others #> 15538 Others #> 15619 No fixed stress #> 15631 No fixed stress #> 15643 No fixed stress #> 15644 No fixed stress #> 15668 No fixed stress #> 15671 No fixed stress #> 15710 No fixed stress #> 15742 No fixed stress #> 15758 No fixed stress #> 15837 Initial #> 15894 Initial #> 15976 Penultimate #> 15996 Penultimate #> 16024 Penultimate #> 16061 Ultimate #> 16173 Logical meanings #> 16187 Affective meanings #> 16216 Affective meanings #> 16235 Affective meanings #> 16264 Other or none #> 16331 NegV #> 16350 NegV #> 16391 NegV #> 16477 NegV #> 16509 NegV #> 16512 NegV #> 16616 NegV #> 16679 NegV #> 16780 NegV #> 16781 NegV #> 16812 Type 3 / Type 4 #> 16826 ObligDoubleNeg #> 16898 ObligDoubleNeg #> 16923 ObligDoubleNeg #> 16943 OptDoubleNeg #> 16953 OptDoubleNeg #> 17008 OptDoubleNeg #> 17283 [Neg-V] #> 17396 [V-Neg] #> 17510 [V-Neg] #> 17672 Neg[V-Neg] #> 17687 [Neg-V-Neg] #> 17711 Negative tone & [Neg-V] #> 17719 NegV(Neg) #> 17733 Neg[(Neg-)]V #> 17761 (Neg)VNeg #> 17840 NegV #> 17848 NegV #> 17885 NegV #> 17920 NegV #> 17934 NegV #> 17948 NegV #> 17974 NegV #> 17994 NegV #> 18000 NegV #> 18022 NegV #> 18232 NegV #> 18278 NegV #> 18416 NegV #> 18514 [Neg-V] #> 18570 [Neg-V] #> 18627 [Neg-V] #> 18630 [Neg-V] #> 18717 NegV&[Neg-V] #> 18885 None #> 18922 None #> 19221 VNeg #> 19281 VNeg #> 19425 [V-Neg] #> 19472 [V-Neg] #> 19476 [V-Neg] #> 19613 [V-Neg] #> 19699 [V-Neg] #> 19758 None #> 19776 None #> 19779 None #> 19903 None #> 19944 None #> 20079 None #> 20105 None #> 20152 None #> 20178 None #> 20314 None #> 20379 None #> 20428 None #> 20436 None #> 20457 NegTone #> 20465 None #> 20641 None #> 20671 None #> 20673 None #> 20695 None #> 20764 None #> 20798 None #> 20957 None #> 20980 None #> 21074 None #> 21138 None #> 21255 None #> 21291 None #> 21331 None #> 21539 None #> 21637 None #> 21657 None #> 21660 None #> 21684 None #> 21794 NegVOS #> 21842 More than one position #> 21854 More than one position #> 21917 ObligDoubleNeg #> 21928 ObligDoubleNeg #> 21983 ObligDoubleNeg #> 22022 OptDoubleNeg #> 22047 OptDoubleNeg #> 22123 SNegVO #> 22178 SNegVO #> 22220 MorphNeg #> 22284 MorphNeg #> 22315 MorphNeg #> 22451 MorphNeg #> 22621 Other #> 22785 SNegOV #> 22798 SONegV #> 22829 SONegV #> 22856 SONegV #> 22936 NegVSO #> 22968 Beginning, not immed preverbal #> 22997 Beginning, not immed preverbal #> 23024 Preverbal, not beginning or immed #> 23028 Immed preverbal #> 23034 Immed preverbal #> 23059 Immed preverbal #> 23112 Immed preverbal #> 23115 Immed preverbal #> 23125 Immed preverbal #> 23243 Immed preverbal #> 23275 Immed preverbal #> 23342 Immed preverbal #> 23448 Immed postverbal #> 23649 More than one construction #> 23777 OptNeg #> 23822 SNegVO #> 23861 SNegVO #> 24090 NegSVO/SNegVO #> 24175 SNegVO(Neg) #> 24212 NoDoubleNeg #> 24272 No NegSVO #> 24297 No NegSVO #> 24549 No NegSVO #> 24640 Word&NoDoubleNeg #> 24661 Word&NoDoubleNeg #> 24664 Word&NoDoubleNeg #> 24838 Word&OptDoubleNeg #> 25213 No SVNegO #> 25390 No SVNegO #> 25447 No SVNegO #> 25475 No SVNegO #> 25620 OnlyWithAnotherNeg #> 25685 No SVONeg #> 25704 No SVONeg #> 25874 No SVONeg #> 26034 More than one construction #> 26054 More than one construction #> 26064 ObligDoubleNeg #> 26068 ObligDoubleNeg #> 26084 ObligDoubleNeg #> 26111 OptDoubleNeg #> 26167 SNegOV #> 26235 SONegV #> 26240 SONegV #> 26253 SONegV #> 26366 SO[Neg-V] #> 26416 SO[V-Neg] #> 26464 SO[V-Neg] #> 26519 NegSOV/NegOVS #> 26556 SO[Neg-V]/SO[V-Neg] #> 26588 NegSO[V-Neg] #> 26594 SO[Neg-V-Neg] #> 26606 SO[Neg-V] with negative tone on verb\tSO[Neg-V]&NegTone #> 26624 S(Neg)OVNeg #> 26651 NoDoubleNeg #> 26659 OnlyWithAnotherNeg #> 26669 No NegSOV #> 26720 No NegSOV #> 26726 No NegSOV #> 26740 No NegSOV #> 26797 No NegSOV #> 26803 No NegSOV #> 26813 No NegSOV #> 26853 No NegSOV #> 26971 No NegSOV #> 26996 No NegSOV #> 26997 No NegSOV #> 27066 NoDoubleNeg #> 27086 OnlyWithAnotherNeg #> 27103 No SNegOV #> 27114 No SNegOV #> 27115 No SNegOV #> 27231 No SNegOV #> 27232 No SNegOV #> 27283 No SNegOV #> 27346 No SNegOV #> 27401 No SNegOV #> 27407 No SNegOV #> 27416 No SNegOV #> 27431 No SNegOV #> 27471 Word&NoDoubleNeg #> 27481 Word&NoDoubleNeg #> 27521 Word&NoDoubleNeg #> 27546 Prefix&NoDoubleNeg #> 27564 Prefix&NoDoubleNeg #> 27607 Prefix&OnlyWithAnotherNeg #> 27625 Prefix&OnlyWithAnotherNeg #> 27703 No SONegV #> 27729 No SONegV #> 27746 No SONegV #> 27751 No SONegV #> 27788 No SONegV #> 27824 No SONegV #> 27941 NoSOVNeg #> 27942 NoSOVNeg #> 27958 NoSOVNeg #> 28006 NoSOVNeg #> 28050 NoSOVNeg #> 28064 NoSOVNeg #> 28103 NoSOVNeg #> 28215 Suffix&NoDoubleNeg #> 28226 Suffix&NoDoubleNeg #> 28247 Suffix&NoDoubleNeg #> 28293 Word&OptDoubleNeg #> 28317 Suffix&OnlyWithAnotherNeg #> 28323 Suffix&OnlyWithAnotherNeg #> 28388 NegVSO #> 28444 OptDoubleNeg #> 28466 NegVOS #> 28513 VS&VO&Neg[(Neg-)V] #> 28577 Separate word, no double negation\tWord&NoDoubleNeg #> 28625 Separate word, no double negation\tWord&NoDoubleNeg #> 28628 Separate word, no double negation\tWord&NoDoubleNeg #> 28694 None #> 28720 None #> 28764 None #> 28880 No clause-final neg #> 28962 No clause-final neg #> 28966 No clause-final neg #> 28993 NegOVS/NegSOV #> 29047 Right-edge: Ultimate or penultimate #> 29058 Right-edge: Ultimate or penultimate #> 29100 Right-oriented: One of the last three #> 29114 Right-oriented: One of the last three #> 29115 Right-oriented: One of the last three #> 29134 Unbounded: Stress can be anywhere #> 29183 Combined: Right-edge and unbounded #> 29188 Not predictable #> 29213 Not predictable #> 29242 Fixed stress (no weight-sensitivity) #> 29297 Fixed stress (no weight-sensitivity) #> 29308 Fixed stress (no weight-sensitivity) #> 29370 Fixed stress (no weight-sensitivity) #> 29405 Fixed stress (no weight-sensitivity) #> 29416 Fixed stress (no weight-sensitivity) #> 29553 No weight #> 29589 No weight #> 29701 No weight #> 29705 No weight #> 29742 No weight #> 29759 Long vowel #> 29785 Long vowel #> 29804 Long vowel #> 29836 Coda consonant #> 29865 Long vowel or coda consonant #> 29904 Prominence #> 29906 Prominence #> 29926 Lexical stress #> 29945 Lexical stress #> 29987 Combined #> 30011 Trochaic #> 30030 Trochaic #> 30095 Trochaic #> 30123 Trochaic #> 30180 Dual: both trochaic and iambic #> 30192 Undetermined #> 30239 No rhythmic stress #> 30279 No rhythmic stress #> 30299 No rhythmic stress #> 30497 All present #> 30502 All present #> 30548 All present #> 30582 All present #> 30610 All present #> 30621 All present #> 30655 All present #> 30662 All present #> 30669 All present #> 30670 All present #> 30718 All present #> 30731 All present #> 30744 All present #> 30756 All present #> 30787 All present #> 30796 All present #> 30821 No bilabials #> 30822 No bilabials #> 30856 No fricatives #> 30877 No nasals #> 30914 None #> 30915 None #> 30961 None #> 30968 None #> 30974 None #> 30986 None #> 31014 None #> 31021 None #> 31041 None #> 31062 None #> 31091 None #> 31161 None #> 31219 None #> 31243 None #> 31246 None #> 31311 None #> 31317 None #> 31329 None #> 31388 Pharyngeals #> 31431 'Th' sounds #> 31489 Small (2-4) #> 31490 Small (2-4) #> 31527 Small (2-4) #> 31532 Small (2-4) #> 31539 Small (2-4) #> 31540 Small (2-4) #> 31543 Small (2-4) #> 31564 Average (5-6) #> 31574 Average (5-6) #> 31633 Average (5-6) #> 31659 Average (5-6) #> 31665 Average (5-6) #> 31675 Average (5-6) #> 31676 Average (5-6) #> 31716 Average (5-6) #> 31763 Average (5-6) #> 31783 Average (5-6) #> 31877 Large (7-14) #> 31907 Large (7-14) #> 31917 Large (7-14) #> 32031 Exclusively concatenative #> 32036 Exclusively concatenative #> 32039 Exclusively concatenative #> 32062 Exclusively concatenative #> 32071 Exclusively concatenative #> 32074 Exclusively concatenative #> 32075 Exclusively concatenative #> 32077 Exclusively concatenative #> 32097 Exclusively concatenative #> 32105 Exclusively concatenative #> 32109 Exclusively concatenative #> 32116 Exclusively concatenative #> 32126 Exclusively concatenative #> 32129 Exclusively concatenative #> 32140 Exclusively concatenative #> 32142 Exclusively isolating #> 32148 Exclusively isolating #> 32179 Isolating/concatenative #> 32180 Isolating/concatenative #> 32181 Monoexponential case #> 32205 Monoexponential case #> 32213 Monoexponential case #> 32219 Monoexponential case #> 32223 Monoexponential case #> 32226 Monoexponential case #> 32227 Monoexponential case #> 32251 Monoexponential case #> 32265 Case + referentiality #> 32286 No case #> 32290 No case #> 32297 No case #> 32306 No case #> 32310 No case #> 32319 No case #> 32324 No case #> 32325 No case #> 32336 No case #> 32341 No case #> 32366 monoexponential TAM #> 32368 monoexponential TAM #> 32405 monoexponential TAM #> 32415 monoexponential TAM #> 32417 monoexponential TAM #> 32422 monoexponential TAM #> 32430 monoexponential TAM #> 32445 monoexponential TAM #> 32447 monoexponential TAM #> 32450 monoexponential TAM #> 32455 monoexponential TAM #> 32456 monoexponential TAM #> 32457 monoexponential TAM #> 32467 monoexponential TAM #> 32470 TAM+agreement #> 32472 TAM+agreement #> 32473 TAM+agreement #> 32492 TAM+agreement+diathesis #> 32499 no TAM #> 32513 2-3 categories per word #> 32529 2-3 categories per word #> 32531 2-3 categories per word #> 32571 4-5 categories per word #> 32585 6-7 categories per word #> 32586 6-7 categories per word #> 32587 6-7 categories per word #> 32591 6-7 categories per word #> 32602 6-7 categories per word #> 32606 6-7 categories per word #> 32610 6-7 categories per word #> 32617 8-9 categories per word #> 32629 8-9 categories per word #> 32632 8-9 categories per word #> 32633 8-9 categories per word #> 32643 10-11 categories per word #> 32644 10-11 categories per word #> 32646 12-13 categories per word #> 32647 12-13 categories per word #> 32657 Head marking #> 32659 Head marking #> 32661 Head marking #> 32670 Head marking #> 32680 Head marking #> 32698 Head marking #> 32702 Head marking #> 32721 Dependent marking #> 32727 Dependent marking #> 32764 Dependent marking #> 32774 Dependent marking #> 32791 Double marking #> 32795 Double marking #> 32809 Double marking #> 32824 Double marking #> 32845 No marking #> 32849 No marking #> 32853 No marking #> 32861 No marking #> 32893 Head marking #> 32910 Head marking #> 32913 Head marking #> 32919 Head marking #> 32935 Head marking #> 32942 Head marking #> 32950 Head marking #> 32959 Head marking #> 32961 Head marking #> 32990 Dependent marking #> 33020 Dependent marking #> 33021 Dependent marking #> 33025 Dependent marking #> 33045 Dependent marking #> 33054 Dependent marking #> 33055 Dependent marking #> 33104 No marking #> 33106 No marking #> 33117 Other #> 33131 Head-marking #> 33141 Head-marking #> 33144 Head-marking #> 33151 Head-marking #> 33180 Dependent-marking #> 33195 Dependent-marking #> 33201 Dependent-marking #> 33234 Zero-marking #> 33249 Inconsistent or other #> 33267 Inconsistent or other #> 33275 Inconsistent or other #> 33278 Inconsistent or other #> 33289 Inconsistent or other #> 33291 Inconsistent or other #> 33299 Inconsistent or other #> 33310 Inconsistent or other #> 33318 Inconsistent or other #> 33337 Inconsistent or other #> 33346 Inconsistent or other #> 33358 Zero-marking #> 33362 Zero-marking #> 33374 Non-zero marking #> 33388 Non-zero marking #> 33413 Non-zero marking #> 33429 Non-zero marking #> 33436 Non-zero marking #> 33448 Non-zero marking #> 33450 Non-zero marking #> 33454 Non-zero marking #> 33473 Non-zero marking #> 33484 Non-zero marking #> 33538 Non-zero marking #> 33546 Non-zero marking #> 33569 Non-zero marking #> 33570 Non-zero marking #> 33573 Non-zero marking #> 33574 Non-zero marking #> 33584 Non-zero marking #> 33592 Little affixation #> 33682 Little affixation #> 33718 Little affixation #> 33743 Strongly suffixing #> 33859 Strongly suffixing #> 33953 Strongly suffixing #> 34015 Strongly suffixing #> 34018 Strongly suffixing #> 34028 Strongly suffixing #> 34112 Strongly suffixing #> 34139 Weakly suffixing #> 34305 Equal prefixing and suffixing #> 34311 Equal prefixing and suffixing #> 34327 Equal prefixing and suffixing #> 34365 Equal prefixing and suffixing #> 34371 Equal prefixing and suffixing #> 34463 Weakly prefixing #> 34467 Weakly prefixing #> 34486 Weakly prefixing #> 34543 Strong prefixing #> 34565 Productive full and partial reduplication #> 34640 Productive full and partial reduplication #> 34648 Productive full and partial reduplication #> 34702 Productive full and partial reduplication #> 34739 Productive full and partial reduplication #> 34742 Productive full and partial reduplication #> 34763 Productive full and partial reduplication #> 34764 Productive full and partial reduplication #> 34769 Productive full and partial reduplication #> 34775 Productive full and partial reduplication #> 34821 Productive full and partial reduplication #> 34853 Full reduplication only #> 34875 No productive reduplication #> 34903 No productive reduplication #> 34922 No productive reduplication #> 34924 No productive reduplication #> 34925 No productive reduplication #> 34937 No case marking #> 34941 No case marking #> 34942 No case marking #> 34961 No case marking #> 34995 No case marking #> 34996 No case marking #> 34997 No case marking #> 35002 No case marking #> 35009 No case marking #> 35015 No case marking #> 35028 No case marking #> 35041 No case marking #> 35045 No case marking #> 35056 Core cases only #> 35075 Core and non-core #> 35086 Core and non-core #> 35105 No syncretism #> 35117 No syncretism #> 35124 No syncretism #> 35131 No subject person/number marking #> 35134 No subject person/number marking #> 35139 No subject person/number marking #> 35145 No subject person/number marking #> 35158 No subject person/number marking #> 35161 No subject person/number marking #> 35194 Syncretic #> 35204 Syncretic #> 35209 Syncretic #> 35225 Syncretic #> 35240 Syncretic #> 35251 Not syncretic #> 35256 Not syncretic #> 35274 Not syncretic #> 35282 Not syncretic #> 35286 Not syncretic #> 35297 Not syncretic #> 35307 Not syncretic #> 35312 Not syncretic #> 35318 Not syncretic #> 35382 Moderately low #> 35414 Moderately low #> 35431 Moderately low #> 35471 Moderately low #> 35492 Average #> 35499 Average #> 35528 Average #> 35547 Average #> 35574 Average #> 35647 Average #> 35695 Average #> 35699 Average #> 35723 Moderately high #> 35740 Moderately high #> 35742 Moderately high #> 35764 Moderately high #> 35813 Moderately high #> 35814 Moderately high #> 35831 High #> 35868 High #> 35903 None #> 35904 None #> 35944 None #> 35954 None #> 35958 None #> 35971 None #> 35975 None #> 36019 None #> 36033 Two #> 36035 Two #> 36039 Two #> 36048 Two #> 36057 Two #> 36064 Two #> 36090 Three #> 36103 Three #> 36114 Four #> 36129 Five or more #> 36163 No gender #> 36186 No gender #> 36187 No gender #> 36188 No gender #> 36210 No gender #> 36232 No gender #> 36243 No gender #> 36263 No gender #> 36295 Sex-based #> 36297 Sex-based #> 36320 Sex-based #> 36332 Sex-based #> 36336 Sex-based #> 36338 Sex-based #> 36355 Sex-based #> 36364 Sex-based #> 36369 Sex-based #> 36391 Non-sex-based #> 36417 No gender #> 36448 No gender #> 36462 No gender #> 36480 No gender #> 36486 No gender #> 36521 No gender #> 36526 No gender #> 36530 No gender #> 36552 Semantic #> 36560 Semantic #> 36564 Semantic #> 36568 Semantic #> 36571 Semantic #> 36601 Semantic and formal #> 36618 Semantic and formal #> 36644 Semantic and formal #> 36650 Semantic and formal #> 36656 Semantic and formal #> 36786 Plural suffix #> 36837 Plural suffix #> 36849 Plural suffix #> 36866 Plural suffix #> 36910 Plural suffix #> 36965 Plural suffix #> 37051 Plural suffix #> 37075 Plural suffix #> 37205 Plural suffix #> 37287 Plural suffix #> 37299 Plural stem change #> 37354 Mixed morphological plural #> 37500 Plural word #> 37575 Plural clitic #> 37590 Plural clitic #> 37609 Plural clitic #> 37640 No plural #> 37663 No plural #> 37666 No plural #> 37704 No plural #> 37728 No nominal plural #> 37762 Only human nouns, optional #> 37766 Only human nouns, optional #> 37767 Only human nouns, optional #> 37772 Only human nouns, optional #> 37812 Only human nouns, obligatory #> 37893 All nouns, always obligatory #> 37911 All nouns, always obligatory #> 37916 All nouns, always obligatory #> 37921 All nouns, always obligatory #> 37928 All nouns, always obligatory #> 37998 All nouns, always obligatory #> 38019 Number-indifferent pronouns #> 38020 Number-indifferent pronouns #> 38024 Number-indifferent pronouns #> 38025 Number-indifferent pronouns #> 38031 Person-number affixes #> 38036 Person-number affixes #> 38044 Person-number affixes #> 38071 Person-number stem #> 38074 Person-number stem #> 38075 Person-number stem #> 38085 Person-number stem #> 38090 Person-number stem #> 38100 Person-number stem #> 38110 Person-number stem #> 38117 Person-number stem #> 38136 Person-number stem #> 38167 Person-number stem + pronominal plural affix #> 38209 Person-number stem + pronominal plural affix #> 38214 Person-number stem + nominal plural affix #> 38219 Person-number stem + nominal plural affix #> 38289 Associative same as additive plural #> 38324 Associative same as additive plural #> 38341 Associative same as additive plural #> 38405 Unique affixal associative plural #> 38429 Unique periphrastic associative plural #> 38445 Unique periphrastic associative plural #> 38448 Unique periphrastic associative plural #> 38467 Unique periphrastic associative plural #> 38497 No associative plural #> 38499 No associative plural #> 38503 No associative plural #> 38504 No associative plural #> 38506 No associative plural #> 38563 Definite word distinct from demonstrative #> 38578 Definite word distinct from demonstrative #> 38584 Definite word distinct from demonstrative #> 38585 Definite word distinct from demonstrative #> 38592 Definite word distinct from demonstrative #> 38630 Definite word distinct from demonstrative #> 38655 Definite word distinct from demonstrative #> 38708 Definite word distinct from demonstrative #> 38797 Demonstrative word used as definite article #> 38801 Definite affix #> 38954 No definite or indefinite article #> 38974 No definite or indefinite article #> 38988 No definite or indefinite article #> 39062 No definite or indefinite article #> 39065 No definite or indefinite article #> 39070 No definite or indefinite article #> 39078 No definite or indefinite article #> 39124 No definite or indefinite article #> 39140 Indefinite word distinct from 'one' #> 39144 Indefinite word distinct from 'one' #> 39280 Indefinite word same as 'one' #> 39380 No indefinite, but definite article #> 39391 No indefinite, but definite article #> 39442 No indefinite, but definite article #> 39454 No indefinite, but definite article #> 39465 No indefinite, but definite article #> 39509 No definite or indefinite article #> 39557 No definite or indefinite article #> 39581 No definite or indefinite article #> 39589 No definite or indefinite article #> 39601 No definite or indefinite article #> 39603 No definite or indefinite article #> 39615 No definite or indefinite article #> 39656 No definite or indefinite article #> 39668 No 'we' #> 39674 'We' the same as 'I' #> 39676 'We' the same as 'I' #> 39678 'We' the same as 'I' #> 39700 No inclusive/exclusive #> 39718 No inclusive/exclusive #> 39720 No inclusive/exclusive #> 39728 No inclusive/exclusive #> 39745 No inclusive/exclusive #> 39750 No inclusive/exclusive #> 39751 No inclusive/exclusive #> 39759 No inclusive/exclusive #> 39778 No inclusive/exclusive #> 39790 No inclusive/exclusive #> 39797 No inclusive/exclusive #> 39808 Inclusive/exclusive #> 39818 Inclusive/exclusive #> 39826 Inclusive/exclusive #> 39850 Inclusive/exclusive #> 39853 Inclusive/exclusive #> 39901 Inclusive and exclusive differentiated #> 39944 No voicing contrast #> 39946 No voicing contrast #> 39951 No voicing contrast #> 39954 No voicing contrast #> 39981 No voicing contrast #> 40018 No voicing contrast #> 40019 No voicing contrast #> 40023 No voicing contrast #> 40105 No voicing contrast #> 40138 In plosives alone #> 40147 In plosives alone #> 40203 In plosives alone #> 40218 In plosives alone #> 40240 In plosives alone #> 40290 In plosives alone #> 40372 In both plosives and fricatives #> 40403 In both plosives and fricatives #> 40442 In both plosives and fricatives #> 40455 In both plosives and fricatives #> 40469 In both plosives and fricatives #> 40509 No person marking #> 40512 No person marking #> 40517 No person marking #> 40519 No person marking #> 40521 No person marking #> 40538 No person marking #> 40550 No person marking #> 40554 No person marking #> 40575 'We' the same as 'I' #> 40606 No inclusive/exclusive #> 40613 No inclusive/exclusive #> 40625 No inclusive/exclusive #> 40638 No inclusive/exclusive #> 40642 No inclusive/exclusive #> 40648 No inclusive/exclusive #> 40653 No inclusive/exclusive #> 40670 Only inclusive #> 40675 Inclusive/exclusive #> 40680 Inclusive/exclusive #> 40702 Inclusive/exclusive #> 40705 No distance contrast #> 40707 No distance contrast #> 40731 Two-way contrast #> 40756 Two-way contrast #> 40761 Two-way contrast #> 40773 Two-way contrast #> 40778 Two-way contrast #> 40783 Two-way contrast #> 40789 Two-way contrast #> 40817 Two-way contrast #> 40824 Two-way contrast #> 40836 Two-way contrast #> 40878 Three-way contrast #> 40896 Three-way contrast #> 40908 Three-way contrast #> 40927 Four-way contrast #> 40936 Five (or more)-way contrast #> 40937 Five (or more)-way contrast #> 40940 Identical #> 40948 Identical #> 40969 Identical #> 40975 Identical #> 40983 Identical #> 41005 Identical #> 41016 Identical #> 41017 Identical #> 41020 Identical #> 41036 Identical #> 41041 Identical #> 41053 Identical #> 41057 Identical #> 41062 Identical #> 41063 Identical #> 41066 Identical #> 41071 Identical #> 41093 Different stem #> 41148 Unrelated #> 41150 Unrelated #> 41153 Unrelated #> 41160 Unrelated #> 41163 Unrelated #> 41167 Unrelated #> 41194 Unrelated #> 41217 Unrelated #> 41221 Unrelated #> 41234 Unrelated #> 41237 Unrelated #> 41241 Related for all demonstratives #> 41244 Related for all demonstratives #> 41284 Related for all demonstratives #> 41304 Related to remote demonstratives #> 41326 Related by gender markers #> 41341 Related by gender markers #> 41370 In 3rd person + 1st and/or 2nd person #> 41379 In 3rd person + 1st and/or 2nd person #> 41394 3rd person only, but also non-singular #> 41412 3rd person only, but also non-singular #> 41429 3rd person singular only #> 41442 3rd person singular only #> 41453 3rd person singular only #> 41464 3rd person singular only #> 41482 3rd person singular only #> 41526 No gender distinctions #> 41540 No gender distinctions #> 41582 No gender distinctions #> 41587 No gender distinctions #> 41605 No gender distinctions #> 41616 No gender distinctions #> 41626 No gender distinctions #> 41654 No gender distinctions #> 41695 No gender distinctions #> 41701 No gender distinctions #> 41723 No gender distinctions #> 41762 No politeness distinction #> 41770 No politeness distinction #> 41772 No politeness distinction #> 41777 No politeness distinction #> 41793 No politeness distinction #> 41799 No politeness distinction #> 41809 No politeness distinction #> 41822 No politeness distinction #> 41829 No politeness distinction #> 41834 No politeness distinction #> 41835 No politeness distinction #> 41839 No politeness distinction #> 41849 No politeness distinction #> 41851 No politeness distinction #> 41861 No politeness distinction #> 41867 No politeness distinction #> 41936 Multiple politeness distinctions #> 41942 Multiple politeness distinctions #> 41948 Pronouns avoided for politeness #> 41952 Interrogative-based #> 41987 Interrogative-based #> 42061 Interrogative-based #> 42075 Interrogative-based #> 42094 Interrogative-based #> 42107 Interrogative-based #> 42126 Interrogative-based #> 42150 Generic-noun-based #> 42172 Generic-noun-based #> 42217 Generic-noun-based #> 42231 Special #> 42232 Special #> 42258 Mixed #> 42284 Identical #> 42313 Identical #> 42337 Identical #> 42343 Identical #> 42345 Identical #> 42358 Identical #> 42368 Identical #> 42371 Differentiated #> 42372 Differentiated #> 42373 Differentiated #> 42383 Differentiated #> 42392 Differentiated #> 42408 Differentiated #> 42414 Differentiated #> 42415 Differentiated #> 42422 Differentiated #> 42434 Differentiated #> 42452 No adpositions #> 42455 No adpositions #> 42466 No adpositions #> 42471 No adpositions #> 42487 No adpositions #> 42496 No adpositions #> 42531 No person marking #> 42548 No person marking #> 42559 No person marking #> 42561 No person marking #> 42582 No person marking #> 42624 No person marking #> 42629 No person marking #> 42641 No person marking #> 42678 No person marking #> 42709 No person marking #> 42732 Pronouns only #> 42734 Pronouns only #> 42756 Pronouns only #> 42808 Pronouns and nouns #> 42822 No morphological case-marking #> 42846 No morphological case-marking #> 42880 No morphological case-marking #> 42886 No morphological case-marking #> 42914 No morphological case-marking #> 42917 No morphological case-marking #> 42944 2 cases #> 42975 6-7 cases #> 42985 6-7 cases #> 42987 6-7 cases #> 42996 6-7 cases #> 43002 6-7 cases #> 43021 8-9 cases #> 43050 10 or more cases #> 43059 Exclusively borderline case-marking #> 43060 Exclusively borderline case-marking #> 43063 Exclusively borderline case-marking #> 43074 Exclusively borderline case-marking #> 43081 Exclusively borderline case-marking #> 43115 Other #> 43117 Other #> 43142 Other #> 43146 Other #> 43157 Other #> 43232 Other #> 43246 Other #> 43257 Other #> 43262 Other #> 43277 Other #> 43323 Other #> 43327 None missing in /p t k b d g/ #> 43337 None missing in /p t k b d g/ #> 43352 None missing in /p t k b d g/ #> 43369 None missing in /p t k b d g/ #> 43553 None missing in /p t k b d g/ #> 43580 Missing /p/ #> 43588 Missing /p/ #> 43592 Missing /p/ #> 43638 Missing /g/ #> 43651 No case-marking #> 43658 No case-marking #> 43682 No case-marking #> 43687 No case-marking #> 43688 No case-marking #> 43733 Symmetrical #> 43734 Symmetrical #> 43738 Symmetrical #> 43739 Symmetrical #> 43760 Symmetrical #> 43761 Symmetrical #> 43762 Symmetrical #> 43781 Symmetrical #> 43797 Symmetrical #> 43798 Symmetrical #> 43804 Symmetrical #> 43822 Additive-quantitatively asymmetrical #> 43865 Subtractive-quantitatively asymmetrical #> 43909 Syncretism in relevant NP-types #> 43991 Case suffixes #> 44066 Case suffixes #> 44108 Case suffixes #> 44120 Case suffixes #> 44158 Case suffixes #> 44231 Case suffixes #> 44248 Case suffixes #> 44356 Case suffixes #> 44448 Postpositional clitics #> 44490 Postpositional clitics #> 44506 Postpositional clitics #> 44513 Postpositional clitics #> 44534 Postpositional clitics #> 44645 No case affixes or adpositional clitics #> 44797 No case affixes or adpositional clitics #> 44822 No case affixes or adpositional clitics #> 44845 No case affixes or adpositional clitics #> 44851 No case affixes or adpositional clitics #> 44928 No case affixes or adpositional clitics #> 44969 Identity #> 45048 Differentiation #> 45111 Differentiation #> 45125 Differentiation #> 45135 Differentiation #> 45153 Differentiation #> 45160 Differentiation #> 45175 Differentiation #> 45227 Differentiation #> 45246 Mixed #> 45272 None #> 45279 None #> 45291 None #> 45302 First, two, three #> 45328 One-th, two-th, three-th #> 45371 First/one-th, two-th, three-th #> 45387 First/one-th, two-th, three-th #> 45416 First, two-th, three-th #> 45431 First, two-th, three-th #> 45432 First, two-th, three-th #> 45445 First, two-th, three-th #> 45479 First, two-th, three-th #> 45491 First, two-th, three-th #> 45506 First, two-th, three-th #> 45578 Various #> 45592 No distributive numerals #> 45604 No distributive numerals #> 45664 Marked by reduplication #> 45695 Marked by reduplication #> 45713 Marked by reduplication #> 45760 Marked by suffix #> 45774 Marked by suffix #> 45781 Marked by suffix #> 45819 Marked by mixed or other strategies #> 45828 Marked by mixed or other strategies #> 45846 Absent #> 45862 Absent #> 45868 Absent #> 45917 Absent #> 45928 Absent #> 45943 Absent #> 45963 Absent #> 45971 Absent #> 45974 Absent #> 46005 Absent #> 46052 Absent #> 46063 Absent #> 46078 Absent #> 46091 Absent #> 46144 Optional #> 46233 Obligatory #> 46249 Formally different #> 46259 Formally different #> 46269 Formally different #> 46293 Formally similar, without interrogative #> 46317 Formally similar, with interrogative #> 46356 Possessive prefixes #> 46369 Possessive prefixes #> 46373 Possessive prefixes #> 46408 Possessive prefixes #> 46498 Possessive prefixes #> 46512 Possessive prefixes #> 46602 Possessive prefixes #> 46691 Possessive suffixes #> 46708 Possessive suffixes #> 46833 Possessive suffixes #> 46995 No possessive affixes #> 47015 No possessive affixes #> 47024 No possessive affixes #> 47119 No possessive affixes #> 47142 No possessive affixes #> 47159 No possessive affixes #> 47214 No possessive affixes #> 47283 Exists #> 47288 Exists #> 47306 Absent #> 47342 Absent #> 47380 Absent #> 47384 Absent #> 47387 Absent #> 47391 Absent #> 47404 Absent #> 47408 Absent #> 47416 Absent #> 47421 Absent #> 47427 Absent #> 47436 Absent #> 47451 Absent #> 47459 Absent #> 47469 Absent #> 47478 Absent #> 47495 Absent #> 47513 None reported #> 47517 None reported #> 47547 None reported #> 47548 None reported #> 47586 None reported #> 47595 None reported #> 47641 None reported #> 47647 None reported #> 47651 None reported #> 47661 None reported #> 47663 None reported #> 47680 None reported #> 47683 None reported #> 47686 None reported #> 47689 None reported #> 47698 None reported #> 47702 None reported #> 47722 None reported #> 47737 Two to four #> 47752 No possessive classification #> 47754 No possessive classification #> 47760 No possessive classification #> 47770 No possessive classification #> 47776 No possessive classification #> 47785 No possessive classification #> 47793 No possessive classification #> 47819 No possessive classification #> 47826 No possessive classification #> 47832 No possessive classification #> 47863 No possessive classification #> 47864 No possessive classification #> 47887 Two classes #> 47902 Two classes #> 47933 Two classes #> 47937 Two classes #> 47938 Two classes #> 47940 Two classes #> 47968 Three to five classes #> 47990 None #> 48060 None #> 48077 None #> 48093 None #> 48109 None #> 48144 None #> 48154 None #> 48160 None #> 48191 None #> 48193 None #> 48232 None #> 48278 None #> 48322 None #> 48342 None #> 48354 None #> 48357 None #> 48369 None #> 48449 None #> 48459 Uvular stops only #> 48468 Uvular stops only #> 48593 Adjectives and relative clauses collapsed #> 48603 Adjectives and relative clauses collapsed #> 48624 Highly differentiated #> 48632 Highly differentiated #> 48644 Highly differentiated #> 48658 Highly differentiated #> 48664 Highly differentiated #> 48671 Highly differentiated #> 48677 Highly differentiated #> 48702 Without marking #> 48706 Without marking #> 48728 Without marking #> 48730 Without marking #> 48733 Without marking #> 48746 Without marking #> 48748 Without marking #> 48805 Marked by following word #> 48806 Marked by following word #> 48817 Sentential #> 48822 Sentential #> 48836 Sentential #> 48842 Possessive-Accusative #> 48852 Possessive-Accusative #> 48853 Possessive-Accusative #> 48879 Ergative-Possessive #> 48894 Double-Possessive #> 48900 Other #> 48907 Mixed #> 48917 Restricted #> 48923 Restricted #> 48938 Restricted #> 48945 No action nominals #> 48947 No action nominals #> 48974 No action nominals #> 48975 No action nominals #> 48991 'And' different from 'with' #> 49003 'And' different from 'with' #> 49013 'And' different from 'with' #> 49021 'And' different from 'with' #> 49058 'And' different from 'with' #> 49088 'And' different from 'with' #> 49106 'And' different from 'with' #> 49113 'And' identical to 'with' #> 49166 'And' identical to 'with' #> 49277 Identity #> 49301 Identity #> 49303 Identity #> 49304 Identity #> 49338 Identity #> 49407 Differentiation #> 49408 Differentiation #> 49410 Differentiation #> 49416 Differentiation #> 49422 Differentiation #> 49426 Differentiation #> 49467 Differentiation #> 49496 Differentiation #> 49508 Both expressed by juxtaposition #> 49514 Both expressed by juxtaposition #> 49528 Grammatical marking #> 49530 Grammatical marking #> 49532 Grammatical marking #> 49543 Grammatical marking #> 49557 Grammatical marking #> 49561 Grammatical marking #> 49564 Grammatical marking #> 49581 Grammatical marking #> 49591 Grammatical marking #> 49594 Grammatical marking #> 49600 Grammatical marking #> 49608 Grammatical marking #> 49625 No grammatical marking #> 49626 No grammatical marking #> 49634 No grammatical marking #> 49668 No grammatical marking #> 49689 No grammatical marking #> 49704 No grammatical marking #> 49728 No grammatical marking #> 49732 No grammatical marking #> 49741 Present, no remoteness distinctions #> 49750 Present, no remoteness distinctions #> 49755 Present, no remoteness distinctions #> 49759 Present, no remoteness distinctions #> 49792 Present, no remoteness distinctions #> 49830 Present, no remoteness distinctions #> 49833 Present, 2-3 remoteness distinctions #> 49836 Present, 2-3 remoteness distinctions #> 49856 Present, 2-3 remoteness distinctions #> 49864 Present, 2-3 remoteness distinctions #> 49882 No past tense #> 49913 No past tense #> 49919 No past tense #> 49923 No past tense #> 49927 No past tense #> 49934 No past tense #> 49941 No past tense #> 49943 No past tense #> 49952 No past tense #> 49954 No past tense #> 49969 Inflectional future exists #> 50008 Inflectional future exists #> 50009 Inflectional future exists #> 50011 Inflectional future exists #> 50015 Inflectional future exists #> 50025 Inflectional future exists #> 50026 Inflectional future exists #> 50030 Inflectional future exists #> 50041 Inflectional future exists #> 50042 Inflectional future exists #> 50051 Inflectional future exists #> 50062 Inflectional future exists #> 50068 Inflectional future exists #> 50075 No inflectional future #> 50076 No inflectional future #> 50078 No inflectional future #> 50082 No inflectional future #> 50097 No inflectional future #> 50100 No inflectional future #> 50160 No inflectional future #> 50221 Other perfect #> 50250 Other perfect #> 50268 Other perfect #> 50271 Other perfect #> 50287 Other perfect #> 50292 No perfect #> 50297 No perfect #> 50315 No perfect #> 50321 No perfect #> 50327 No perfect #> 50343 No perfect #> 50347 No perfect #> 50348 No perfect #> 50349 No perfect #> 50362 No perfect #> 50383 No perfect #> 50386 No perfect #> 50392 No perfect #> 50393 No perfect #> 50396 No perfect #> 50541 Tense-aspect prefixes #> 50555 Tense-aspect prefixes #> 50559 Tense-aspect suffixes #> 50609 Tense-aspect suffixes #> 50682 Tense-aspect suffixes #> 50705 Tense-aspect suffixes #> 50738 Tense-aspect suffixes #> 50755 Tense-aspect suffixes #> 50794 Tense-aspect suffixes #> 50908 Tense-aspect suffixes #> 50915 Tense-aspect suffixes #> 51004 Tense-aspect suffixes #> 51024 Tense-aspect suffixes #> 51285 Mixed type #> 51312 Mixed type #> 51371 Mixed type #> 51421 No tense-aspect inflection #> 51453 No tense-aspect inflection #> 51572 No glottalized consonants #> 51630 No glottalized consonants #> 51671 No glottalized consonants #> 51673 No glottalized consonants #> 51708 No glottalized consonants #> 51713 No glottalized consonants #> 51741 No glottalized consonants #> 51753 No glottalized consonants #> 51770 No glottalized consonants #> 51779 No glottalized consonants #> 51829 No glottalized consonants #> 51830 No glottalized consonants #> 51934 No glottalized consonants #> 51962 Ejectives only #> 51976 Ejectives only #> 51979 Ejectives only #> 52018 Implosives only #> 52063 Ejectives and implosives #> 52072 Ejectives and implosives #> 52089 Ejectives and glottalized resonants #> 52106 Second singular and second plural #> 52116 Second singular and second plural #> 52193 Second singular and second plural #> 52227 Second singular and second plural #> 52231 Second singular and second plural #> 52264 Second singular and second plural #> 52296 Second singular and second plural #> 52313 Second singular and second plural #> 52318 Second singular and second plural #> 52320 Second singular and second plural #> 52360 Second singular and second plural #> 52399 Second singular #> 52407 Second singular #> 52427 Second singular #> 52437 Second plural #> 52479 Second person number-neutral #> 52490 Second person number-neutral #> 52516 Second person number-neutral #> 52639 No second-person imperatives #> 52682 Normal imperative + normal negative #> 52691 Normal imperative + normal negative #> 52696 Normal imperative + normal negative #> 52764 Normal imperative + special negative #> 52852 Normal imperative + special negative #> 52855 Normal imperative + special negative #> 52893 Normal imperative + special negative #> 52898 Normal imperative + special negative #> 52910 Normal imperative + special negative #> 52954 Special imperative + normal negative #> 52979 Special imperative + normal negative #> 53009 Special imperative + special negative #> 53010 Special imperative + special negative #> 53034 Special imperative + special negative #> 53044 Special imperative + special negative #> 53055 Special imperative + special negative #> 53085 Special imperative + special negative #> 53115 Special imperative + special negative #> 53175 Maximal system #> 53190 Maximal system #> 53198 Maximal system #> 53240 Maximal system #> 53284 Minimal system #> 53298 Both types of system #> 53302 Both types of system #> 53322 Neither type of system #> 53329 Neither type of system #> 53335 Neither type of system #> 53346 Neither type of system #> 53353 Neither type of system #> 53381 Neither type of system #> 53382 Neither type of system #> 53401 Neither type of system #> 53429 Neither type of system #> 53437 Neither type of system #> 53471 Neither type of system #> 53474 Neither type of system #> 53527 Inflectional optative present #> 53529 Inflectional optative present #> 53545 Inflectional optative present #> 53571 Inflectional optative absent #> 53572 Inflectional optative absent #> 53593 Inflectional optative absent #> 53596 Inflectional optative absent #> 53599 Inflectional optative absent #> 53605 Inflectional optative absent #> 53628 Inflectional optative absent #> 53630 Inflectional optative absent #> 53664 Inflectional optative absent #> 53667 Inflectional optative absent #> 53693 Inflectional optative absent #> 53704 Inflectional optative absent #> 53706 Inflectional optative absent #> 53732 Inflectional optative absent #> 53791 Inflectional optative absent #> 53800 Inflectional optative absent #> 53816 Inflectional optative absent #> 53860 Affixes on verbs #> 53886 Affixes on verbs #> 53900 Affixes on verbs #> 53914 Verbal constructions #> 53928 Verbal constructions #> 53938 Verbal constructions #> 53959 Verbal constructions #> 53963 Verbal constructions #> 53986 Verbal constructions #> 53991 Verbal constructions #> 53996 Verbal constructions #> 54017 Verbal constructions #> 54050 Verbal constructions #> 54065 Other kinds of markers #> 54082 Verbal constructions #> 54084 Verbal constructions #> 54094 Verbal constructions #> 54104 Verbal constructions #> 54106 Verbal constructions #> 54117 Verbal constructions #> 54149 Affixes on verbs #> 54156 Affixes on verbs #> 54196 Affixes on verbs #> 54201 Affixes on verbs #> 54205 Affixes on verbs #> 54207 Affixes on verbs #> 54219 Affixes on verbs #> 54246 Other #> 54297 Other #> 54302 Other #> 54311 Other #> 54359 Overlap for either possibility or necessity #> 54367 Overlap for either possibility or necessity #> 54369 Overlap for either possibility or necessity #> 54383 Overlap for either possibility or necessity #> 54387 Overlap for either possibility or necessity #> 54390 Overlap for either possibility or necessity #> 54391 Overlap for either possibility or necessity #> 54398 Overlap for either possibility or necessity #> 54407 Overlap for either possibility or necessity #> 54408 Overlap for either possibility or necessity #> 54422 No overlap #> 54473 No overlap #> 54520 No grammatical evidentials #> 54567 No grammatical evidentials #> 54581 No grammatical evidentials #> 54611 No grammatical evidentials #> 54625 No grammatical evidentials #> 54653 No grammatical evidentials #> 54684 No grammatical evidentials #> 54691 No grammatical evidentials #> 54703 Indirect only #> 54717 Indirect only #> 54727 Indirect only #> 54759 Indirect only #> 54771 Indirect only #> 54775 Indirect only #> 54790 Indirect only #> 54826 Indirect only #> 54897 Direct and indirect #> 54911 Direct and indirect #> 54923 Direct and indirect #> 54927 Direct and indirect #> 54988 No grammatical evidentials #> 55002 No grammatical evidentials #> 55010 No grammatical evidentials #> 55022 No grammatical evidentials #> 55042 No grammatical evidentials #> 55055 No grammatical evidentials #> 55067 No grammatical evidentials #> 55078 No grammatical evidentials #> 55141 Verbal affix or clitic #> 55143 Verbal affix or clitic #> 55159 Verbal affix or clitic #> 55165 Verbal affix or clitic #> 55176 Verbal affix or clitic #> 55212 Verbal affix or clitic #> 55219 Verbal affix or clitic #> 55225 Verbal affix or clitic #> 55226 Verbal affix or clitic #> 55236 Verbal affix or clitic #> 55289 Separate particle #> 55306 Separate particle #> 55357 Tense #> 55372 Tense #> 55379 Tense #> 55381 Tense #> 55382 Tense #> 55389 Tense #> 55394 Aspect #> 55397 Aspect #> 55405 Tense and aspect #> 55419 Tense and aspect #> 55428 None #> 55431 None #> 55476 None #> 55494 None #> 55503 None #> 55509 None #> 55511 None #> 55517 None #> 55519 None #> 55544 None #> 55575 Imperative #> 55580 Imperative #> 55594 None (= no suppletive imperatives reported in the reference material) #> 55603 None (= no suppletive imperatives reported in the reference material) #> 55604 None (= no suppletive imperatives reported in the reference material) #> 55610 None (= no suppletive imperatives reported in the reference material) #> 55616 None (= no suppletive imperatives reported in the reference material) #> 55621 None (= no suppletive imperatives reported in the reference material) #> 55631 None (= no suppletive imperatives reported in the reference material) #> 55641 None (= no suppletive imperatives reported in the reference material) #> 55669 None (= no suppletive imperatives reported in the reference material) #> 55673 None (= no suppletive imperatives reported in the reference material) #> 55683 None (= no suppletive imperatives reported in the reference material) #> 55687 None (= no suppletive imperatives reported in the reference material) #> 55692 None (= no suppletive imperatives reported in the reference material) #> 55695 None (= no suppletive imperatives reported in the reference material) #> 55720 None (= no suppletive imperatives reported in the reference material) #> 55725 None (= no suppletive imperatives reported in the reference material) #> 55728 None (= no suppletive imperatives reported in the reference material) #> 55736 None (= no suppletive imperatives reported in the reference material) #> 55761 No laterals #> 55771 No laterals #> 55784 No laterals #> 55816 No laterals #> 55880 /l/, no obstruent laterals #> 55940 /l/, no obstruent laterals #> 56036 /l/, no obstruent laterals #> 56068 /l/, no obstruent laterals #> 56072 /l/, no obstruent laterals #> 56115 /l/, no obstruent laterals #> 56120 /l/, no obstruent laterals #> 56153 /l/, no obstruent laterals #> 56156 /l/, no obstruent laterals #> 56161 /l/, no obstruent laterals #> 56169 /l/, no obstruent laterals #> 56185 /l/, no obstruent laterals #> 56199 /l/, no obstruent laterals #> 56231 Laterals, but no /l/, no obstruent laterals #> 56279 /l/ and lateral obstruent #> 56301 No /l/, but lateral obstruents #> 56324 None #> 56342 None #> 56354 None #> 56363 None #> 56368 None #> 56370 None #> 56376 None #> 56382 None #> 56384 None #> 56386 None #> 56404 None #> 56427 None #> 56438 None #> 56446 None #> 56452 None #> 56457 None #> 56474 Singular-plural pairs, no suppletion #> 56495 Singular-dual-plural triples, no suppletion #> 56497 Singular-dual-plural triples, no suppletion #> 56498 Singular-dual-plural triples, no suppletion #> 56531 SOV #> 56607 SOV #> 56626 SOV #> 56636 SOV #> 56759 SOV #> 56795 SOV #> 56814 SOV #> 56834 SOV #> 56848 SOV #> 56923 SOV #> 57038 SOV #> 57054 SOV #> 57088 SVO #> 57121 SVO #> 57322 SVO #> 57479 SVO #> 57637 VSO #> 57655 VOS #> 57821 No dominant order #> 57843 No dominant order #> 57942 SOV or OVS #> 57999 SV #> 58042 SV #> 58049 SV #> 58127 SV #> 58178 SV #> 58297 SV #> 58322 SV #> 58342 SV #> 58350 SV #> 58497 SV #> 58723 SV #> 58741 SV #> 58789 SV #> 58792 SV #> 58910 SV #> 59061 SV #> 59160 VS #> 59176 VS #> 59219 VS #> 59403 No dominant order #> 59502 OV #> 59519 OV #> 59558 OV #> 59559 OV #> 59744 OV #> 59817 OV #> 59818 OV #> 59819 OV #> 59855 OV #> 59921 OV #> 59955 OV #> 60008 OV #> 60094 OV #> 60281 VO #> 60339 VO #> 60471 VO #> 60527 VO #> 60696 VO #> 60733 VO #> 60908 No dominant order #> 61120 VOX #> 61144 VOX #> 61148 VOX #> 61188 XOV #> 61204 XOV #> 61213 XOV #> 61249 OVX #> 61250 OVX #> 61272 OVX #> 61324 No dominant order #> 61332 No dominant order #> 61360 No dominant order #> 61440 No dominant order #> 61590 Postpositions #> 61595 Postpositions #> 61643 Postpositions #> 61659 Postpositions #> 61693 Postpositions #> 61733 Postpositions #> 61759 Postpositions #> 61820 Postpositions #> 61829 Postpositions #> 61838 Postpositions #> 61946 Postpositions #> 62022 Postpositions #> 62186 Prepositions #> 62272 Prepositions #> 62355 Prepositions #> 62422 Prepositions #> 62614 No adpositions #> 62626 No adpositions #> 62634 No adpositions #> 62637 No adpositions #> 62697 Genitive-Noun #> 62724 Genitive-Noun #> 62725 Genitive-Noun #> 62808 Genitive-Noun #> 62826 Genitive-Noun #> 62871 Genitive-Noun #> 62955 Genitive-Noun #> 62960 Genitive-Noun #> 63034 Genitive-Noun #> 63085 Genitive-Noun #> 63107 Genitive-Noun #> 63188 Genitive-Noun #> 63297 Genitive-Noun #> 63476 Noun-Genitive #> 63681 Noun-Genitive #> 63703 Noun-Genitive #> 63738 Noun-Genitive #> 63802 No dominant order #> 63873 No dominant order #> 63934 Adjective-Noun #> 64012 Adjective-Noun #> 64052 Adjective-Noun #> 64075 Adjective-Noun #> 64118 Adjective-Noun #> 64127 Adjective-Noun #> 64238 Adjective-Noun #> 64321 Noun-Adjective #> 64476 Noun-Adjective #> 64508 Noun-Adjective #> 64525 Noun-Adjective #> 64526 Noun-Adjective #> 64549 Noun-Adjective #> 64855 Noun-Adjective #> 64969 Noun-Adjective #> 65045 Noun-Adjective #> 65134 Noun-Adjective #> 65135 Noun-Adjective #> 65296 Demonstrative-Noun #> 65342 Demonstrative-Noun #> 65351 Demonstrative-Noun #> 65357 Demonstrative-Noun #> 65401 Demonstrative-Noun #> 65422 Demonstrative-Noun #> 65501 Demonstrative-Noun #> 65502 Demonstrative-Noun #> 65506 Demonstrative-Noun #> 65577 Demonstrative-Noun #> 65586 Demonstrative-Noun #> 65607 Demonstrative-Noun #> 65672 Demonstrative-Noun #> 65714 Demonstrative-Noun #> 66013 Noun-Demonstrative #> 66094 Noun-Demonstrative #> 66142 Noun-Demonstrative #> 66321 Noun-Demonstrative #> 66346 Noun-Demonstrative #> 66477 Mixed #> 66545 Numeral-Noun #> 66552 Numeral-Noun #> 66687 Numeral-Noun #> 66700 Numeral-Noun #> 66740 Numeral-Noun #> 66789 Numeral-Noun #> 66795 Numeral-Noun #> 66796 Numeral-Noun #> 66815 Numeral-Noun #> 66962 Noun-Numeral #> 67041 Noun-Numeral #> 67081 Noun-Numeral #> 67186 Noun-Numeral #> 67201 Noun-Numeral #> 67238 Noun-Numeral #> 67250 Noun-Numeral #> 67387 Noun-Numeral #> 67538 Noun-Numeral #> 67608 No dominant order #> 67645 Initial velar nasal #> 67672 Initial velar nasal #> 67694 Initial velar nasal #> 67698 Initial velar nasal #> 67734 Initial velar nasal #> 67765 Initial velar nasal #> 67849 No initial velar nasal #> 67888 No velar nasal #> 67896 No velar nasal #> 67898 No velar nasal #> 67908 No velar nasal #> 67920 No velar nasal #> 67935 No velar nasal #> 67963 No velar nasal #> 67981 No velar nasal #> 67991 No velar nasal #> 68075 No velar nasal #> 68089 No velar nasal #> 68093 No velar nasal #> 68094 No velar nasal #> 68135 Noun-Relative clause #> 68200 Noun-Relative clause #> 68234 Noun-Relative clause #> 68287 Noun-Relative clause #> 68413 Noun-Relative clause #> 68482 Noun-Relative clause #> 68516 Noun-Relative clause #> 68715 Relative clause-Noun #> 68742 Relative clause-Noun #> 68800 Relative clause-Noun #> 68828 Internally headed #> 68834 Internally headed #> 68853 Correlative #> 68855 Correlative #> 68859 Adjoined #> 68869 Mixed #> 68891 Mixed #> 68908 Mixed #> 68912 Mixed #> 68938 Relative clause-Noun (RelN) dominant #> 68940 Relative clause-Noun (RelN) dominant #> 69054 Relative clause-Noun (RelN) dominant #> 69100 RelN or internally-headed #> 69113 RelN or internally-headed #> 69122 Noun-Relative clause (NRel) dominant #> 69314 Noun-Relative clause (NRel) dominant #> 69335 Noun-Relative clause (NRel) dominant #> 69359 Noun-Relative clause (NRel) dominant #> 69452 Noun-Relative clause (NRel) dominant #> 69469 Noun-Relative clause (NRel) dominant #> 69682 Noun-Relative clause (NRel) dominant #> 69730 NRel or internally-headed #> 69736 NRel or internally-headed #> 69745 Internally-headed relative clause dominant #> 69758 Internally-headed relative clause dominant #> 69771 Internally-headed or RelN #> 69777 Internally-headed or RelN #> 69779 Internally-headed or NRel #> 69784 Internally-headed or NRel #> 69790 Internally-headed occurs as nondominant type #> 69794 Internally-headed occurs as nondominant type #> 69808 Correlative relative clause dominant #> 69809 Correlative relative clause dominant #> 69827 Adjoined relative clause dominant #> 69852 Degree word-Adjective #> 69880 Degree word-Adjective #> 69926 Degree word-Adjective #> 69942 Degree word-Adjective #> 69980 Degree word-Adjective #> 70051 Degree word-Adjective #> 70072 Adjective-Degree word #> 70158 Adjective-Degree word #> 70360 Initial #> 70377 Initial #> 70402 Initial #> 70469 Final #> 70498 Final #> 70527 Final #> 70553 Final #> 70675 Final #> 70760 Final #> 70807 Second position #> 70837 In either of two positions #> 70919 No question particle #> 70929 No question particle #> 70939 No question particle #> 70941 No question particle #> 70972 No question particle #> 70996 No question particle #> 71024 No question particle #> 71270 Initial interrogative phrase #> 71276 Initial interrogative phrase #> 71356 Initial interrogative phrase #> 71395 Initial interrogative phrase #> 71462 Initial interrogative phrase #> 71479 Not initial interrogative phrase #> 71494 Not initial interrogative phrase #> 71515 Not initial interrogative phrase #> 71529 Not initial interrogative phrase #> 71580 Not initial interrogative phrase #> 71923 Not initial interrogative phrase #> 71963 Not initial interrogative phrase #> 72086 Mixed #> 72088 Mixed #> 72093 Mixed #> 72099 Mixed #> 72103 Mixed #> 72117 Initial subordinator word #> 72134 Initial subordinator word #> 72135 Initial subordinator word #> 72137 Initial subordinator word #> 72176 Initial subordinator word #> 72192 Initial subordinator word #> 72371 Initial subordinator word #> 72375 Initial subordinator word #> 72401 Initial subordinator word #> 72404 Initial subordinator word #> 72477 Initial subordinator word #> 72577 Final subordinator word #> 72594 Final subordinator word #> 72612 Subordinating suffix #> 72650 Subordinating suffix #> 72738 Mixed #> 72800 OV and Postpositions #> 72846 OV and Postpositions #> 72848 OV and Postpositions #> 72883 OV and Postpositions #> 72928 OV and Postpositions #> 72941 OV and Postpositions #> 73006 OV and Postpositions #> 73149 OV and Postpositions #> 73155 OV and Postpositions #> 73162 OV and Postpositions #> 73224 OV and Postpositions #> 73307 VO and Prepositions #> 73318 VO and Prepositions #> 73393 VO and Prepositions #> 73642 VO and Prepositions #> 73773 Other #> 73914 OV and RelN #> 73992 OV and RelN #> 74001 OV and RelN #> 74052 OV and NRel #> 74061 OV and NRel #> 74083 OV and NRel #> 74160 VO and NRel #> 74189 VO and NRel #> 74269 VO and NRel #> 74577 Other #> 74619 Other #> 74683 Other #> 74700 Other #> 74717 Other #> 74733 Other #> 74745 Other #> 74757 Other #> 74767 Other #> 74771 Other #> 74815 OV and AdjN #> 74830 OV and AdjN #> 74932 OV and AdjN #> 74954 OV and AdjN #> 75007 OV and NAdj #> 75017 OV and NAdj #> 75179 OV and NAdj #> 75182 OV and NAdj #> 75254 OV and NAdj #> 75256 OV and NAdj #> 75267 OV and NAdj #> 75279 OV and NAdj #> 75359 VO and AdjN #> 75382 VO and AdjN #> 75441 VO and AdjN #> 75810 VO and NAdj #> 75884 VO and NAdj #> 75946 Other #> 76104 Neutral #> 76113 Neutral #> 76116 Neutral #> 76119 Neutral #> 76137 Neutral #> 76146 Neutral #> 76154 Neutral #> 76171 Neutral #> 76177 Neutral #> 76191 Neutral #> 76200 Neutral #> 76202 Nominative - accusative (standard) #> 76211 Nominative - accusative (standard) #> 76245 Nominative - accusative (standard) #> 76250 Nominative - accusative (marked nominative) #> 76253 Nominative - accusative (marked nominative) #> 76257 Ergative - absolutive #> 76284 Ergative - absolutive #> 76287 Tripartite #> 76302 Neutral #> 76325 Neutral #> 76327 Neutral #> 76340 Neutral #> 76353 Neutral #> 76368 Neutral #> 76369 Neutral #> 76398 Nominative - accusative (standard) #> 76399 Nominative - accusative (standard) #> 76407 Nominative - accusative (standard) #> 76434 Nominative - accusative (marked nominative) #> 76438 Ergative - absolutive #> 76439 Ergative - absolutive #> 76447 Ergative - absolutive #> 76459 Tripartite #> 76464 None #> code_ID language_ID iso_code glottocode language #> 35 1A-1 prh myp pira1253 Pirahã #> 37 1A-1 koa cku koas1236 Koasati #> 55 1A-1 apu apu apur1254 Apurinã #> 73 1A-1 ond one onei1249 Oneida #> 90 1A-2 ala amp alam1246 Alamblak #> 146 1A-2 kse ses koyr1242 Koyraboro Senni #> 187 1A-2 kew kjs kewa1250 Kewa #> 220 1A-3 sup spp supy1237 Supyire #> 301 1A-3 tiw tiw tiwi1244 Tiwi #> 309 1A-3 kio kio kiow1266 Kiowa #> 327 1A-3 mar mrc mari1440 Maricopa #> 342 1A-3 kor kor kore1280 Korean #> 360 1A-3 tuk khc tuka1247 Tukang Besi #> 384 1A-3 cha cha cham1312 Chamorro #> 402 1A-3 wic wic wich1260 Wichita #> 407 1A-3 mrt vma mart1255 Martuthunira #> 429 1A-4 orh hae east2652 Oromo (Harar) #> 462 1A-4 hau hau haus1257 Hausa #> 532 1A-5 hin hin hind1269 Hindi #> 533 1A-5 abk abk abkh1244 Abkhaz #> 569 10A-1 apu apu apur1254 Apurinã #> 577 10A-1 sup spp supy1237 Supyire #> 596 10A-1 koa cku koas1236 Koasati #> 625 10A-1 hin hin hind1269 Hindi #> 628 10A-2 tuk khc tuka1247 Tukang Besi #> 637 10A-2 kor kor kore1280 Korean #> 647 10A-2 prh myp pira1253 Pirahã #> 656 10A-2 wic wic wich1260 Wichita #> 659 10A-2 mrt vma mart1255 Martuthunira #> 665 10A-2 abk abk abkh1244 Abkhaz #> 680 10A-2 cha cha cham1312 Chamorro #> 746 10A-2 ala amp alam1246 Alamblak #> 761 10A-2 orh hae east2652 Oromo (Harar) #> 774 10A-2 hau hau haus1257 Hausa #> 783 10A-2 mar mrc mari1440 Maricopa #> 803 10A-2 tiw tiw tiwi1244 Tiwi #> 854 100A-1 kor kor kore1280 Korean #> 860 100A-1 kse ses koyr1242 Koyraboro Senni #> 867 100A-1 sup spp supy1237 Supyire #> 895 100A-1 mrt vma mart1255 Martuthunira #> 922 100A-1 hau hau haus1257 Hausa #> 938 100A-2 tiw tiw tiwi1244 Tiwi #> 980 100A-2 tuk khc tuka1247 Tukang Besi #> 987 100A-2 ala amp alam1246 Alamblak #> 1020 100A-2 orh hae east2652 Oromo (Harar) #> 1028 100A-2 prh myp pira1253 Pirahã #> 1044 100A-2 mar mrc mari1440 Maricopa #> 1117 100A-2 hin hin hind1269 Hindi #> 1150 100A-3 cha cha cham1312 Chamorro #> 1151 100A-3 abk abk abkh1244 Abkhaz #> 1164 100A-4 wic wic wich1260 Wichita #> 1172 100A-4 kew kjs kewa1250 Kewa #> 1173 100A-4 koa cku koas1236 Koasati #> 1185 100A-4 ond one onei1249 Oneida #> 1188 100A-4 apu apu apur1254 Apurinã #> 1197 100A-5 kio kio kiow1266 Kiowa #> 1265 101A-1 sup spp supy1237 Supyire #> 1296 101A-1 kse ses koyr1242 Koyraboro Senni #> 1314 101A-2 kio kio kiow1266 Kiowa #> 1325 101A-2 wic wic wich1260 Wichita #> 1360 101A-2 ala amp alam1246 Alamblak #> 1399 101A-2 tiw tiw tiwi1244 Tiwi #> 1444 101A-2 tuk khc tuka1247 Tukang Besi #> 1461 101A-2 orh hae east2652 Oromo (Harar) #> 1466 101A-2 koa cku koas1236 Koasati #> 1514 101A-2 ond one onei1249 Oneida #> 1560 101A-2 kew kjs kewa1250 Kewa #> 1567 101A-2 apu apu apur1254 Apurinã #> 1569 101A-2 mar mrc mari1440 Maricopa #> 1574 101A-2 abk abk abkh1244 Abkhaz #> 1788 101A-4 hau hau haus1257 Hausa #> 1892 101A-5 kor kor kore1280 Korean #> 1896 101A-5 mrt vma mart1255 Martuthunira #> 1943 102A-1 mrt vma mart1255 Martuthunira #> 1954 102A-1 kse ses koyr1242 Koyraboro Senni #> 1967 102A-1 kor kor kore1280 Korean #> 1984 102A-1 sup spp supy1237 Supyire #> 2002 102A-1 hau hau haus1257 Hausa #> 2037 102A-2 orh hae east2652 Oromo (Harar) #> 2067 102A-2 hin hin hind1269 Hindi #> 2077 102A-2 cha cha cham1312 Chamorro #> 2083 102A-2 kew kjs kewa1250 Kewa #> 2122 102A-4 kio kio kiow1266 Kiowa #> 2134 102A-5 tuk khc tuka1247 Tukang Besi #> 2136 102A-5 apu apu apur1254 Apurinã #> 2150 102A-5 koa cku koas1236 Koasati #> 2158 102A-5 wic wic wich1260 Wichita #> 2159 102A-5 ala amp alam1246 Alamblak #> 2164 102A-5 tiw tiw tiwi1244 Tiwi #> 2199 102A-5 prh myp pira1253 Pirahã #> 2210 102A-5 abk abk abkh1244 Abkhaz #> 2217 102A-5 mar mrc mari1440 Maricopa #> 2286 102A-5 ond one onei1249 Oneida #> 2328 103A-1 sup spp supy1237 Supyire #> 2354 103A-1 kse ses koyr1242 Koyraboro Senni #> 2370 103A-1 mrt vma mart1255 Martuthunira #> 2392 103A-1 kor kor kore1280 Korean #> 2397 103A-1 hau hau haus1257 Hausa #> 2413 103A-2 apu apu apur1254 Apurinã #> 2457 103A-2 kew kjs kewa1250 Kewa #> 2478 103A-2 tuk khc tuka1247 Tukang Besi #> 2492 103A-2 ond one onei1249 Oneida #> 2493 103A-2 hin hin hind1269 Hindi #> 2537 103A-2 ala amp alam1246 Alamblak #> 2558 103A-2 cha cha cham1312 Chamorro #> 2562 103A-2 prh myp pira1253 Pirahã #> 2578 103A-2 tiw tiw tiwi1244 Tiwi #> 2591 103A-2 abk abk abkh1244 Abkhaz #> 2599 103A-3 orh hae east2652 Oromo (Harar) #> 2656 103A-4 kio kio kiow1266 Kiowa #> 2664 103A-5 koa cku koas1236 Koasati #> 2669 103A-5 wic wic wich1260 Wichita #> 2684 103A-5 mar mrc mari1440 Maricopa #> 2697 104A-1 kew kjs kewa1250 Kewa #> 2743 104A-1 orh hae east2652 Oromo (Harar) #> 2757 104A-1 kse ses koyr1242 Koyraboro Senni #> 2764 104A-1 kor kor kore1280 Korean #> 2769 104A-1 sup spp supy1237 Supyire #> 2777 104A-1 cha cha cham1312 Chamorro #> 2778 104A-1 mrt vma mart1255 Martuthunira #> 2803 104A-1 hin hin hind1269 Hindi #> 2851 104A-1 kio kio kiow1266 Kiowa #> 2873 104A-1 hau hau haus1257 Hausa #> 2897 104A-2 wic wic wich1260 Wichita #> 2912 104A-2 ond one onei1249 Oneida #> 2937 104A-2 apu apu apur1254 Apurinã #> 2956 104A-2 ala amp alam1246 Alamblak #> 2965 104A-2 tuk khc tuka1247 Tukang Besi #> 2967 104A-2 prh myp pira1253 Pirahã #> 3001 104A-3 abk abk abkh1244 Abkhaz #> 3036 104A-3 koa cku koas1236 Koasati #> 3049 104A-4 tiw tiw tiwi1244 Tiwi #> 3061 104A-5 mar mrc mari1440 Maricopa #> 3102 105A-1 sup spp supy1237 Supyire #> 3105 105A-1 koa cku koas1236 Koasati #> 3150 105A-1 abk abk abkh1244 Abkhaz #> 3178 105A-1 hin hin hind1269 Hindi #> 3213 105A-1 kor kor kore1280 Korean #> 3259 105A-1 orh hae east2652 Oromo (Harar) #> 3317 105A-2 tuk khc tuka1247 Tukang Besi #> 3330 105A-2 prh myp pira1253 Pirahã #> 3355 105A-3 mrt vma mart1255 Martuthunira #> 3364 105A-3 mar mrc mari1440 Maricopa #> 3384 105A-3 tiw tiw tiwi1244 Tiwi #> 3395 105A-3 cha cha cham1312 Chamorro #> 3406 105A-3 ala amp alam1246 Alamblak #> 3410 105A-3 hau hau haus1257 Hausa #> 3450 105A-4 kse ses koyr1242 Koyraboro Senni #> 3453 105A-4 apu apu apur1254 Apurinã #> 3460 106A-1 wic wic wich1260 Wichita #> 3467 106A-1 prh myp pira1253 Pirahã #> 3468 106A-1 kew kjs kewa1250 Kewa #> 3495 106A-2 orh hae east2652 Oromo (Harar) #> 3498 106A-2 cha cha cham1312 Chamorro #> 3501 106A-2 kor kor kore1280 Korean #> 3505 106A-2 hau hau haus1257 Hausa #> 3506 106A-2 koa cku koas1236 Koasati #> 3511 106A-2 abk abk abkh1244 Abkhaz #> 3513 106A-2 kse ses koyr1242 Koyraboro Senni #> 3515 106A-2 apu apu apur1254 Apurinã #> 3530 106A-2 hin hin hind1269 Hindi #> 3537 106A-2 tiw tiw tiwi1244 Tiwi #> 3555 106A-2 mrt vma mart1255 Martuthunira #> 3559 106A-2 tuk khc tuka1247 Tukang Besi #> 3590 106A-4 ond one onei1249 Oneida #> 3607 106A-4 mar mrc mari1440 Maricopa #> 3622 106A-4 sup spp supy1237 Supyire #> 3626 106A-4 kio kio kiow1266 Kiowa #> 3634 107A-1 mar mrc mari1440 Maricopa #> 3645 107A-1 koa cku koas1236 Koasati #> 3679 107A-1 kor kor kore1280 Korean #> 3714 107A-1 hau hau haus1257 Hausa #> 3715 107A-1 hin hin hind1269 Hindi #> 3731 107A-1 cha cha cham1312 Chamorro #> 3747 107A-1 kse ses koyr1242 Koyraboro Senni #> 3748 107A-1 mrt vma mart1255 Martuthunira #> 3784 107A-1 apu apu apur1254 Apurinã #> 3787 107A-1 tuk khc tuka1247 Tukang Besi #> 3804 107A-2 tiw tiw tiwi1244 Tiwi #> 3811 107A-2 wic wic wich1260 Wichita #> 3813 107A-2 kew kjs kewa1250 Kewa #> 3842 107A-2 ond one onei1249 Oneida #> 3843 107A-2 kio kio kiow1266 Kiowa #> 3844 107A-2 abk abk abkh1244 Abkhaz #> 3921 107A-2 prh myp pira1253 Pirahã #> 3930 107A-2 ala amp alam1246 Alamblak #> 3933 107A-2 sup spp supy1237 Supyire #> 3966 107A-2 orh hae east2652 Oromo (Harar) #> 4002 108A-1 kse ses koyr1242 Koyraboro Senni #> 4007 108A-1 kio kio kiow1266 Kiowa #> 4040 108A-2 cha cha cham1312 Chamorro #> 4055 108A-3 tiw tiw tiwi1244 Tiwi #> 4057 108A-3 ala amp alam1246 Alamblak #> 4082 108A-3 tuk khc tuka1247 Tukang Besi #> 4083 108A-3 hin hin hind1269 Hindi #> 4087 108A-3 apu apu apur1254 Apurinã #> 4088 108A-3 mrt vma mart1255 Martuthunira #> 4097 108A-3 mar mrc mari1440 Maricopa #> 4107 108A-3 hau hau haus1257 Hausa #> 4131 108A-3 koa cku koas1236 Koasati #> 4135 108A-3 prh myp pira1253 Pirahã #> 4150 108A-3 kew kjs kewa1250 Kewa #> 4160 108A-3 sup spp supy1237 Supyire #> 4167 108A-3 wic wic wich1260 Wichita #> 4178 108A-3 orh hae east2652 Oromo (Harar) #> 4182 108A-3 abk abk abkh1244 Abkhaz #> 4186 108A-3 kor kor kore1280 Korean #> 4187 108A-3 ond one onei1249 Oneida #> 4204 108B-1 kse ses koyr1242 Koyraboro Senni #> 4232 108B-2 kio kio kiow1266 Kiowa #> 4233 108B-2 cha cha cham1312 Chamorro #> 4242 108B-4 wic wic wich1260 Wichita #> 4243 108B-4 apu apu apur1254 Apurinã #> 4249 108B-4 abk abk abkh1244 Abkhaz #> 4251 108B-4 ala amp alam1246 Alamblak #> 4264 108B-4 orh hae east2652 Oromo (Harar) #> 4283 108B-4 tuk khc tuka1247 Tukang Besi #> 4284 108B-4 mrt vma mart1255 Martuthunira #> 4287 108B-4 tiw tiw tiwi1244 Tiwi #> 4303 108B-4 mar mrc mari1440 Maricopa #> 4305 108B-4 prh myp pira1253 Pirahã #> 4326 108B-4 ond one onei1249 Oneida #> 4340 108B-4 sup spp supy1237 Supyire #> 4355 108B-4 kew kjs kewa1250 Kewa #> 4361 108B-4 hin hin hind1269 Hindi #> 4362 108B-4 kor kor kore1280 Korean #> 4369 108B-4 hau hau haus1257 Hausa #> 4376 108B-4 koa cku koas1236 Koasati #> 4389 109A-1 ala amp alam1246 Alamblak #> 4392 109A-1 cha cha cham1312 Chamorro #> 4396 109A-1 kew kjs kewa1250 Kewa #> 4414 109A-3 wic wic wich1260 Wichita #> 4430 109A-3 tuk khc tuka1247 Tukang Besi #> 4431 109A-3 mar mrc mari1440 Maricopa #> 4436 109A-3 ond one onei1249 Oneida #> 4447 109A-3 hau hau haus1257 Hausa #> 4451 109A-4 abk abk abkh1244 Abkhaz #> 4457 109A-5 tiw tiw tiwi1244 Tiwi #> 4461 109A-5 kse ses koyr1242 Koyraboro Senni #> 4476 109A-8 apu apu apur1254 Apurinã #> 4484 109A-8 orh hae east2652 Oromo (Harar) #> 4490 109A-8 hin hin hind1269 Hindi #> 4502 109A-8 prh myp pira1253 Pirahã #> 4511 109A-8 koa cku koas1236 Koasati #> 4527 109A-8 kor kor kore1280 Korean #> 4544 109A-8 kio kio kiow1266 Kiowa #> 4557 109A-8 sup spp supy1237 Supyire #> 4562 109A-8 mrt vma mart1255 Martuthunira #> 4568 109B-1 abk abk abkh1244 Abkhaz #> 4569 109B-1 tiw tiw tiwi1244 Tiwi #> 4574 109B-1 wic wic wich1260 Wichita #> 4579 109B-1 kse ses koyr1242 Koyraboro Senni #> 4596 109B-2 mar mrc mari1440 Maricopa #> 4598 109B-2 hau hau haus1257 Hausa #> 4603 109B-3 tuk khc tuka1247 Tukang Besi #> 4604 109B-3 ond one onei1249 Oneida #> 4612 109B-4 kew kjs kewa1250 Kewa #> 4620 109B-4 ala amp alam1246 Alamblak #> 4632 109B-4 cha cha cham1312 Chamorro #> 4656 109B-5 prh myp pira1253 Pirahã #> 4661 109B-5 kor kor kore1280 Korean #> 4664 109B-5 sup spp supy1237 Supyire #> 4668 109B-5 apu apu apur1254 Apurinã #> 4669 109B-5 mrt vma mart1255 Martuthunira #> 4678 109B-5 koa cku koas1236 Koasati #> 4729 109B-5 orh hae east2652 Oromo (Harar) #> 4730 109B-5 hin hin hind1269 Hindi #> 4743 109B-5 kio kio kiow1266 Kiowa #> 4764 11A-1 hin hin hind1269 Hindi #> 4794 11A-1 abk abk abkh1244 Abkhaz #> 4799 11A-1 hau hau haus1257 Hausa #> 4803 11A-1 kse ses koyr1242 Koyraboro Senni #> 4843 11A-1 tuk khc tuka1247 Tukang Besi #> 4885 11A-1 kew kjs kewa1250 Kewa #> 4894 11A-1 apu apu apur1254 Apurinã #> 4940 11A-1 tiw tiw tiwi1244 Tiwi #> 4987 11A-1 prh myp pira1253 Pirahã #> 5000 11A-1 cha cha cham1312 Chamorro #> 5031 11A-1 ala amp alam1246 Alamblak #> 5041 11A-1 koa cku koas1236 Koasati #> 5065 11A-1 ond one onei1249 Oneida #> 5078 11A-1 kor kor kore1280 Korean #> 5089 11A-1 mar mrc mari1440 Maricopa #> 5133 11A-1 kio kio kiow1266 Kiowa #> 5210 11A-1 wic wic wich1260 Wichita #> 5226 11A-1 mrt vma mart1255 Martuthunira #> 5266 11A-1 orh hae east2652 Oromo (Harar) #> 5268 11A-1 sup spp supy1237 Supyire #> 5311 110A-1 hau hau haus1257 Hausa #> 5351 110A-2 prh myp pira1253 Pirahã #> 5354 110A-2 cha cha cham1312 Chamorro #> 5359 110A-2 kor kor kore1280 Korean #> 5361 110A-2 mrt vma mart1255 Martuthunira #> 5364 110A-2 abk abk abkh1244 Abkhaz #> 5395 110A-2 orh hae east2652 Oromo (Harar) #> 5402 110A-2 wic wic wich1260 Wichita #> 5408 110A-2 ond one onei1249 Oneida #> 5409 110A-2 hin hin hind1269 Hindi #> 5413 110A-3 tuk khc tuka1247 Tukang Besi #> 5421 110A-3 kse ses koyr1242 Koyraboro Senni #> 5422 110A-3 sup spp supy1237 Supyire #> 5483 111A-2 apu apu apur1254 Apurinã #> 5514 111A-2 tuk khc tuka1247 Tukang Besi #> 5550 111A-2 hin hin hind1269 Hindi #> 5551 111A-2 abk abk abkh1244 Abkhaz #> 5553 111A-2 kio kio kiow1266 Kiowa #> 5566 111A-2 prh myp pira1253 Pirahã #> 5571 111A-2 wic wic wich1260 Wichita #> 5579 111A-2 cha cha cham1312 Chamorro #> 5592 111A-2 sup spp supy1237 Supyire #> 5593 111A-2 kor kor kore1280 Korean #> 5597 111A-2 tiw tiw tiwi1244 Tiwi #> 5598 111A-2 kew kjs kewa1250 Kewa #> 5617 111A-2 mrt vma mart1255 Martuthunira #> 5622 111A-2 hau hau haus1257 Hausa #> 5640 111A-2 ond one onei1249 Oneida #> 5675 111A-2 orh hae east2652 Oromo (Harar) #> 5721 111A-4 mar mrc mari1440 Maricopa #> 5724 111A-4 ala amp alam1246 Alamblak #> 5731 111A-4 koa cku koas1236 Koasati #> 5732 111A-4 kse ses koyr1242 Koyraboro Senni #> 5842 112A-1 abk abk abkh1244 Abkhaz #> 5973 112A-1 kew kjs kewa1250 Kewa #> 6054 112A-1 prh myp pira1253 Pirahã #> 6125 112A-1 koa cku koas1236 Koasati #> 6194 112A-2 sup spp supy1237 Supyire #> 6197 112A-2 hin hin hind1269 Hindi #> 6256 112A-2 kor kor kore1280 Korean #> 6300 112A-2 apu apu apur1254 Apurinã #> 6304 112A-2 cha cha cham1312 Chamorro #> 6432 112A-2 wic wic wich1260 Wichita #> 6465 112A-2 hau hau haus1257 Hausa #> 6511 112A-2 ond one onei1249 Oneida #> 6525 112A-2 kse ses koyr1242 Koyraboro Senni #> 6586 112A-2 mrt vma mart1255 Martuthunira #> 6615 112A-2 ala amp alam1246 Alamblak #> 6622 112A-2 tiw tiw tiwi1244 Tiwi #> 6810 112A-6 kio kio kiow1266 Kiowa #> 6863 112A-6 mar mrc mari1440 Maricopa #> 6881 112A-6 orh hae east2652 Oromo (Harar) #> 6900 113A-1 cha cha cham1312 Chamorro #> 6936 113A-1 prh myp pira1253 Pirahã #> 6942 113A-1 apu apu apur1254 Apurinã #> 6972 113A-1 mar mrc mari1440 Maricopa #> 6978 113A-1 mrt vma mart1255 Martuthunira #> 6987 113A-1 tuk khc tuka1247 Tukang Besi #> 6998 113A-1 kew kjs kewa1250 Kewa #> 7063 113A-3 ond one onei1249 Oneida #> 7069 113A-3 hau hau haus1257 Hausa #> 7070 113A-3 kse ses koyr1242 Koyraboro Senni #> 7084 113A-3 tiw tiw tiwi1244 Tiwi #> 7087 113A-3 hin hin hind1269 Hindi #> 7090 113A-3 kor kor kore1280 Korean #> 7097 113A-3 koa cku koas1236 Koasati #> 7103 113A-3 ala amp alam1246 Alamblak #> 7153 113A-3 wic wic wich1260 Wichita #> 7173 113A-3 kio kio kiow1266 Kiowa #> 7181 113A-3 abk abk abkh1244 Abkhaz #> 7183 113A-3 sup spp supy1237 Supyire #> 7184 113A-3 orh hae east2652 Oromo (Harar) #> 7245 114A-2 tiw tiw tiwi1244 Tiwi #> 7250 114A-2 ala amp alam1246 Alamblak #> 7254 114A-3 hau hau haus1257 Hausa #> 7266 114A-3 abk abk abkh1244 Abkhaz #> 7267 114A-3 wic wic wich1260 Wichita #> 7271 114A-3 kio kio kiow1266 Kiowa #> 7298 114A-3 kse ses koyr1242 Koyraboro Senni #> 7300 114A-3 ond one onei1249 Oneida #> 7308 114A-3 hin hin hind1269 Hindi #> 7321 114A-3 koa cku koas1236 Koasati #> 7336 114A-4 kor kor kore1280 Korean #> 7352 114A-5 sup spp supy1237 Supyire #> 7355 114A-5 orh hae east2652 Oromo (Harar) #> 7387 114A-7 mrt vma mart1255 Martuthunira #> 7399 114A-7 prh myp pira1253 Pirahã #> 7421 114A-7 mar mrc mari1440 Maricopa #> 7451 114A-7 kew kjs kewa1250 Kewa #> 7461 114A-7 apu apu apur1254 Apurinã #> 7463 114A-7 cha cha cham1312 Chamorro #> 7472 114A-7 tuk khc tuka1247 Tukang Besi #> 7493 115A-1 kor kor kore1280 Korean #> 7505 115A-1 hau hau haus1257 Hausa #> 7514 115A-1 abk abk abkh1244 Abkhaz #> 7522 115A-1 kse ses koyr1242 Koyraboro Senni #> 7535 115A-1 koa cku koas1236 Koasati #> 7568 115A-1 sup spp supy1237 Supyire #> 7577 115A-1 kio kio kiow1266 Kiowa #> 7631 115A-1 orh hae east2652 Oromo (Harar) #> 7658 115A-1 hin hin hind1269 Hindi #> 7661 115A-2 tiw tiw tiwi1244 Tiwi #> 7667 115A-2 cha cha cham1312 Chamorro #> 7706 116A-1 tuk khc tuka1247 Tukang Besi #> 7711 116A-1 sup spp supy1237 Supyire #> 7770 116A-1 kse ses koyr1242 Koyraboro Senni #> 7798 116A-1 wic wic wich1260 Wichita #> 7802 116A-1 hin hin hind1269 Hindi #> 7964 116A-1 kio kio kiow1266 Kiowa #> 7974 116A-1 kew kjs kewa1250 Kewa #> 8084 116A-1 tiw tiw tiwi1244 Tiwi #> 8144 116A-1 ond one onei1249 Oneida #> 8156 116A-1 cha cha cham1312 Chamorro #> 8246 116A-1 hau hau haus1257 Hausa #> 8313 116A-2 mar mrc mari1440 Maricopa #> 8316 116A-2 kor kor kore1280 Korean #> 8387 116A-2 abk abk abkh1244 Abkhaz #> 8454 116A-3 prh myp pira1253 Pirahã #> 8538 116A-6 orh hae east2652 Oromo (Harar) #> 8561 116A-6 mrt vma mart1255 Martuthunira #> 8572 116A-6 ala amp alam1246 Alamblak #> 8648 116A-6 apu apu apur1254 Apurinã #> 8650 117A-1 kor kor kore1280 Korean #> 8659 117A-1 wic wic wich1260 Wichita #> 8688 117A-1 hin hin hind1269 Hindi #> 8743 117A-3 koa cku koas1236 Koasati #> 8746 117A-3 tiw tiw tiwi1244 Tiwi #> 8777 117A-4 hau hau haus1257 Hausa #> 8779 117A-4 sup spp supy1237 Supyire #> 8793 117A-4 ala amp alam1246 Alamblak #> 8851 117A-5 abk abk abkh1244 Abkhaz #> 8853 117A-5 orh hae east2652 Oromo (Harar) #> 8856 117A-5 prh myp pira1253 Pirahã #> 8935 118A-1 tuk khc tuka1247 Tukang Besi #> 8936 118A-1 cha cha cham1312 Chamorro #> 8962 118A-1 kio kio kiow1266 Kiowa #> 8998 118A-1 ond one onei1249 Oneida #> 9014 118A-1 abk abk abkh1244 Abkhaz #> 9054 118A-2 tiw tiw tiwi1244 Tiwi #> 9057 118A-2 hin hin hind1269 Hindi #> 9099 118A-2 hau hau haus1257 Hausa #> 9157 118A-2 kew kjs kewa1250 Kewa #> 9176 118A-3 sup spp supy1237 Supyire #> 9233 118A-3 wic wic wich1260 Wichita #> 9238 118A-3 kor kor kore1280 Korean #> 9245 118A-3 orh hae east2652 Oromo (Harar) #> 9248 118A-3 ala amp alam1246 Alamblak #> 9292 119A-1 tiw tiw tiwi1244 Tiwi #> 9300 119A-1 tuk khc tuka1247 Tukang Besi #> 9330 119A-1 ala amp alam1246 Alamblak #> 9335 119A-1 kio kio kiow1266 Kiowa #> 9357 119A-1 sup spp supy1237 Supyire #> 9371 119A-1 hau hau haus1257 Hausa #> 9427 119A-1 abk abk abkh1244 Abkhaz #> 9444 119A-1 ond one onei1249 Oneida #> 9450 119A-1 kor kor kore1280 Korean #> 9464 119A-1 kew kjs kewa1250 Kewa #> 9512 119A-1 cha cha cham1312 Chamorro #> 9564 119A-2 hin hin hind1269 Hindi #> 9593 119A-2 orh hae east2652 Oromo (Harar) #> 9609 119A-2 wic wic wich1260 Wichita #> 9683 12A-1 kew kjs kewa1250 Kewa #> 9700 12A-1 tuk khc tuka1247 Tukang Besi #> 9704 12A-1 apu apu apur1254 Apurinã #> 9722 12A-1 prh myp pira1253 Pirahã #> 9769 12A-2 mrt vma mart1255 Martuthunira #> 9860 12A-2 tiw tiw tiwi1244 Tiwi #> 9878 12A-2 cha cha cham1312 Chamorro #> 9886 12A-2 orh hae east2652 Oromo (Harar) #> 9895 12A-2 kio kio kiow1266 Kiowa #> 9930 12A-2 sup spp supy1237 Supyire #> 9938 12A-2 kor kor kore1280 Korean #> 9955 12A-2 koa cku koas1236 Koasati #> 9980 12A-2 hau hau haus1257 Hausa #> 9999 12A-3 hin hin hind1269 Hindi #> 10016 12A-3 mar mrc mari1440 Maricopa #> 10077 12A-3 abk abk abkh1244 Abkhaz #> 10108 12A-3 ond one onei1249 Oneida #> 10128 12A-3 ala amp alam1246 Alamblak #> 10154 120A-1 hau hau haus1257 Hausa #> 10163 120A-1 kor kor kore1280 Korean #> 10168 120A-1 cha cha cham1312 Chamorro #> 10172 120A-1 wic wic wich1260 Wichita #> 10201 120A-1 sup spp supy1237 Supyire #> 10269 120A-1 ala amp alam1246 Alamblak #> 10276 120A-1 ond one onei1249 Oneida #> 10291 120A-1 hin hin hind1269 Hindi #> 10296 120A-1 kio kio kiow1266 Kiowa #> 10349 120A-1 abk abk abkh1244 Abkhaz #> 10385 120A-2 orh hae east2652 Oromo (Harar) #> 10398 120A-2 kew kjs kewa1250 Kewa #> 10478 120A-2 tiw tiw tiwi1244 Tiwi #> 10482 120A-2 tuk khc tuka1247 Tukang Besi #> 10538 121A-1 hin hin hind1269 Hindi #> 10578 121A-1 kor kor kore1280 Korean #> 10637 121A-2 hau hau haus1257 Hausa #> 10659 121A-3 prh myp pira1253 Pirahã #> 10719 122A-2 kio kio kiow1266 Kiowa #> 10723 122A-2 mar mrc mari1440 Maricopa #> 10724 122A-2 prh myp pira1253 Pirahã #> 10725 122A-2 koa cku koas1236 Koasati #> 10726 122A-2 sup spp supy1237 Supyire #> 10730 122A-2 hin hin hind1269 Hindi #> 10758 122A-4 kse ses koyr1242 Koyraboro Senni #> 10759 122A-4 wic wic wich1260 Wichita #> 10763 122A-4 ala amp alam1246 Alamblak #> 10766 122A-4 orh hae east2652 Oromo (Harar) #> 10767 122A-4 abk abk abkh1244 Abkhaz #> 10777 122A-4 cha cha cham1312 Chamorro #> 10794 122A-4 mrt vma mart1255 Martuthunira #> 10806 122A-4 tuk khc tuka1247 Tukang Besi #> 10822 122A-4 hau hau haus1257 Hausa #> 10859 122A-4 kor kor kore1280 Korean #> 10885 123A-2 hin hin hind1269 Hindi #> 10892 123A-2 sup spp supy1237 Supyire #> 10908 123A-3 hau hau haus1257 Hausa #> 10918 123A-4 kor kor kore1280 Korean #> 10928 123A-4 ala amp alam1246 Alamblak #> 10936 123A-4 tuk khc tuka1247 Tukang Besi #> 10942 123A-4 abk abk abkh1244 Abkhaz #> 10950 123A-4 orh hae east2652 Oromo (Harar) #> 10967 123A-4 kse ses koyr1242 Koyraboro Senni #> 10968 123A-4 cha cha cham1312 Chamorro #> 10969 123A-5 prh myp pira1253 Pirahã #> 10972 123A-5 mrt vma mart1255 Martuthunira #> 10987 124A-1 mrt vma mart1255 Martuthunira #> 11020 124A-1 kor kor kore1280 Korean #> 11049 124A-1 cha cha cham1312 Chamorro #> 11072 124A-1 sup spp supy1237 Supyire #> 11088 124A-1 hin hin hind1269 Hindi #> 11126 124A-2 kse ses koyr1242 Koyraboro Senni #> 11131 124A-2 hau hau haus1257 Hausa #> 11156 124A-2 mar mrc mari1440 Maricopa #> 11161 124A-2 abk abk abkh1244 Abkhaz #> 11206 124A-3 orh hae east2652 Oromo (Harar) #> 11208 124A-3 tuk khc tuka1247 Tukang Besi #> 11228 124A-4 apu apu apur1254 Apurinã #> 11251 124A-4 prh myp pira1253 Pirahã #> 11287 125A-1 kor kor kore1280 Korean #> 11300 125A-2 sup spp supy1237 Supyire #> 11301 125A-2 abk abk abkh1244 Abkhaz #> 11318 125A-2 prh myp pira1253 Pirahã #> 11321 125A-2 tuk khc tuka1247 Tukang Besi #> 11350 125A-3 hau hau haus1257 Hausa #> 11372 125A-3 orh hae east2652 Oromo (Harar) #> 11396 125A-3 mrt vma mart1255 Martuthunira #> 11398 125A-3 kew kjs kewa1250 Kewa #> 11401 125A-3 kio kio kiow1266 Kiowa #> 11424 125A-3 ala amp alam1246 Alamblak #> 11435 126A-1 apu apu apur1254 Apurinã #> 11439 126A-1 prh myp pira1253 Pirahã #> 11446 126A-1 orh hae east2652 Oromo (Harar) #> 11456 126A-1 cha cha cham1312 Chamorro #> 11469 126A-1 kew kjs kewa1250 Kewa #> 11482 126A-1 tiw tiw tiwi1244 Tiwi #> 11499 126A-1 kor kor kore1280 Korean #> 11516 126A-2 hau hau haus1257 Hausa #> 11520 126A-2 sup spp supy1237 Supyire #> 11526 126A-2 tuk khc tuka1247 Tukang Besi #> 11535 126A-2 hin hin hind1269 Hindi #> 11565 126A-3 abk abk abkh1244 Abkhaz #> 11570 126A-3 mar mrc mari1440 Maricopa #> 11586 126A-3 kio kio kiow1266 Kiowa #> 11596 126A-3 mrt vma mart1255 Martuthunira #> 11598 126A-3 ala amp alam1246 Alamblak #> 11619 127A-1 tuk khc tuka1247 Tukang Besi #> 11620 127A-1 cha cha cham1312 Chamorro #> 11640 127A-1 hau hau haus1257 Hausa #> 11648 127A-1 apu apu apur1254 Apurinã #> 11650 127A-1 tiw tiw tiwi1244 Tiwi #> 11655 127A-1 kor kor kore1280 Korean #> 11666 127A-1 sup spp supy1237 Supyire #> 11679 127A-1 orh hae east2652 Oromo (Harar) #> 11690 127A-1 prh myp pira1253 Pirahã #> 11695 127A-1 kew kjs kewa1250 Kewa #> 11712 127A-2 kio kio kiow1266 Kiowa #> 11717 127A-2 hin hin hind1269 Hindi #> 11733 127A-3 mar mrc mari1440 Maricopa #> 11749 127A-3 ala amp alam1246 Alamblak #> 11751 127A-3 abk abk abkh1244 Abkhaz #> 11762 127A-3 mrt vma mart1255 Martuthunira #> 11792 128A-1 tuk khc tuka1247 Tukang Besi #> 11793 128A-1 hin hin hind1269 Hindi #> 11802 128A-1 kew kjs kewa1250 Kewa #> 11804 128A-1 kio kio kiow1266 Kiowa #> 11828 128A-1 sup spp supy1237 Supyire #> 11849 128A-1 kor kor kore1280 Korean #> 11864 128A-1 apu apu apur1254 Apurinã #> 11866 128A-1 prh myp pira1253 Pirahã #> 11891 128A-2 abk abk abkh1244 Abkhaz #> 11900 128A-2 mar mrc mari1440 Maricopa #> 11915 128A-3 mrt vma mart1255 Martuthunira #> 11920 129A-1 kio kio kiow1266 Kiowa #> 12050 129A-1 hau hau haus1257 Hausa #> 12060 129A-1 cha cha cham1312 Chamorro #> 12168 129A-2 mrt vma mart1255 Martuthunira #> 12178 129A-2 wic wic wich1260 Wichita #> 12209 129A-2 ond one onei1249 Oneida #> 12231 129A-2 koa cku koas1236 Koasati #> 12369 129A-2 abk abk abkh1244 Abkhaz #> 12425 129A-2 tiw tiw tiwi1244 Tiwi #> 12442 129A-2 kew kjs kewa1250 Kewa #> 12531 129A-2 kor kor kore1280 Korean #> 12542 13A-1 ala amp alam1246 Alamblak #> 12564 13A-1 cha cha cham1312 Chamorro #> 12577 13A-1 wic wic wich1260 Wichita #> 12589 13A-1 apu apu apur1254 Apurinã #> 12615 13A-1 kor kor kore1280 Korean #> 12644 13A-1 tuk khc tuka1247 Tukang Besi #> 12699 13A-1 tiw tiw tiwi1244 Tiwi #> 12744 13A-1 hin hin hind1269 Hindi #> 12769 13A-1 abk abk abkh1244 Abkhaz #> 12770 13A-1 mrt vma mart1255 Martuthunira #> 12793 13A-1 mar mrc mari1440 Maricopa #> 12872 13A-2 hau hau haus1257 Hausa #> 12899 13A-2 ond one onei1249 Oneida #> 12920 13A-2 prh myp pira1253 Pirahã #> 12946 13A-2 kew kjs kewa1250 Kewa #> 12961 13A-2 kio kio kiow1266 Kiowa #> 12996 13A-3 sup spp supy1237 Supyire #> 13000 13A-3 koa cku koas1236 Koasati #> 13050 13A-3 orh hae east2652 Oromo (Harar) #> 13069 130A-1 ond one onei1249 Oneida #> 13202 130A-2 hau hau haus1257 Hausa #> 13208 130A-2 kew kjs kewa1250 Kewa #> 13275 130A-2 koa cku koas1236 Koasati #> 13328 130A-2 kio kio kiow1266 Kiowa #> 13355 130A-2 kor kor kore1280 Korean #> 13556 130A-2 mrt vma mart1255 Martuthunira #> 13576 130A-2 abk abk abkh1244 Abkhaz #> 13602 130A-2 wic wic wich1260 Wichita #> 13603 130A-2 cha cha cham1312 Chamorro #> 13707 130B-2 ond one onei1249 Oneida #> 13735 131A-1 hau hau haus1257 Hausa #> 13753 131A-1 koa cku koas1236 Koasati #> 13759 131A-1 tuk khc tuka1247 Tukang Besi #> 13802 131A-1 orh hae east2652 Oromo (Harar) #> 13811 131A-1 kse ses koyr1242 Koyraboro Senni #> 13820 131A-1 cha cha cham1312 Chamorro #> 13821 131A-1 ond one onei1249 Oneida #> 13824 131A-1 kor kor kore1280 Korean #> 13841 131A-1 hin hin hind1269 Hindi #> 13868 131A-2 abk abk abkh1244 Abkhaz #> 13886 131A-3 ala amp alam1246 Alamblak #> 13896 131A-4 sup spp supy1237 Supyire #> 13906 131A-6 prh myp pira1253 Pirahã #> 13913 131A-6 mrt vma mart1255 Martuthunira #> 13939 132A-3 prh myp pira1253 Pirahã #> 14030 132A-7 kor kor kore1280 Korean #> 14049 133A-1 prh myp pira1253 Pirahã #> 14158 133A-7 kor kor kore1280 Korean #> 14181 134A-1 kor kor kore1280 Korean #> 14258 134A-2 prh myp pira1253 Pirahã #> 14346 135A-1 kor kor kore1280 Korean #> 14384 135A-2 prh myp pira1253 Pirahã #> 14415 136A-1 kse ses koyr1242 Koyraboro Senni #> 14426 136A-1 cha cha cham1312 Chamorro #> 14431 136A-1 orh hae east2652 Oromo (Harar) #> 14466 136A-1 kor kor kore1280 Korean #> 14479 136A-1 kio kio kiow1266 Kiowa #> 14487 136A-1 mar mrc mari1440 Maricopa #> 14493 136A-1 tiw tiw tiwi1244 Tiwi #> 14500 136A-1 prh myp pira1253 Pirahã #> 14520 136A-1 sup spp supy1237 Supyire #> 14533 136A-1 tuk khc tuka1247 Tukang Besi #> 14534 136A-1 koa cku koas1236 Koasati #> 14540 136A-1 ond one onei1249 Oneida #> 14556 136A-1 wic wic wich1260 Wichita #> 14557 136A-1 abk abk abkh1244 Abkhaz #> 14565 136A-1 mrt vma mart1255 Martuthunira #> 14568 136A-1 hau hau haus1257 Hausa #> 14569 136A-1 ala amp alam1246 Alamblak #> 14597 136A-1 kew kjs kewa1250 Kewa #> 14599 136A-1 apu apu apur1254 Apurinã #> 14616 136A-2 hin hin hind1269 Hindi #> 14631 136B-1 cha cha cham1312 Chamorro #> 14647 136B-1 tuk khc tuka1247 Tukang Besi #> 14648 136B-1 wic wic wich1260 Wichita #> 14650 136B-1 ala amp alam1246 Alamblak #> 14655 136B-1 koa cku koas1236 Koasati #> 14658 136B-1 ond one onei1249 Oneida #> 14665 136B-1 kse ses koyr1242 Koyraboro Senni #> 14678 136B-1 hau hau haus1257 Hausa #> 14679 136B-1 abk abk abkh1244 Abkhaz #> 14681 136B-1 apu apu apur1254 Apurinã #> 14683 136B-1 mrt vma mart1255 Martuthunira #> 14712 136B-1 mar mrc mari1440 Maricopa #> 14726 136B-1 tiw tiw tiwi1244 Tiwi #> 14743 136B-1 orh hae east2652 Oromo (Harar) #> 14756 136B-1 kor kor kore1280 Korean #> 14769 136B-1 kio kio kiow1266 Kiowa #> 14790 136B-1 prh myp pira1253 Pirahã #> 14797 136B-1 kew kjs kewa1250 Kewa #> 14827 136B-2 hin hin hind1269 Hindi #> 14860 136B-2 sup spp supy1237 Supyire #> 14865 137A-1 tiw tiw tiwi1244 Tiwi #> 14903 137A-1 mar mrc mari1440 Maricopa #> 14906 137A-1 cha cha cham1312 Chamorro #> 14920 137A-1 kse ses koyr1242 Koyraboro Senni #> 14926 137A-1 koa cku koas1236 Koasati #> 14931 137A-1 orh hae east2652 Oromo (Harar) #> 14955 137A-1 ond one onei1249 Oneida #> 14957 137A-1 apu apu apur1254 Apurinã #> 14981 137A-1 abk abk abkh1244 Abkhaz #> 14982 137A-1 prh myp pira1253 Pirahã #> 14994 137A-1 wic wic wich1260 Wichita #> 14999 137A-1 tuk khc tuka1247 Tukang Besi #> 15014 137A-1 mrt vma mart1255 Martuthunira #> 15039 137A-1 kew kjs kewa1250 Kewa #> 15041 137A-1 ala amp alam1246 Alamblak #> 15045 137A-1 hau hau haus1257 Hausa #> 15047 137A-1 hin hin hind1269 Hindi #> 15049 137A-1 kor kor kore1280 Korean #> 15059 137A-2 kio kio kiow1266 Kiowa #> 15061 137A-2 sup spp supy1237 Supyire #> 15092 137B-1 mrt vma mart1255 Martuthunira #> 15108 137B-1 kor kor kore1280 Korean #> 15116 137B-1 tiw tiw tiwi1244 Tiwi #> 15118 137B-1 ala amp alam1246 Alamblak #> 15120 137B-1 orh hae east2652 Oromo (Harar) #> 15150 137B-1 kse ses koyr1242 Koyraboro Senni #> 15151 137B-1 kew kjs kewa1250 Kewa #> 15161 137B-1 hau hau haus1257 Hausa #> 15173 137B-1 tuk khc tuka1247 Tukang Besi #> 15174 137B-1 ond one onei1249 Oneida #> 15204 137B-1 prh myp pira1253 Pirahã #> 15209 137B-1 wic wic wich1260 Wichita #> 15210 137B-1 hin hin hind1269 Hindi #> 15237 137B-1 koa cku koas1236 Koasati #> 15243 137B-2 abk abk abkh1244 Abkhaz #> 15249 137B-2 apu apu apur1254 Apurinã #> 15253 137B-2 kio kio kiow1266 Kiowa #> 15291 137B-2 cha cha cham1312 Chamorro #> 15301 137B-2 mar mrc mari1440 Maricopa #> 15306 137B-2 sup spp supy1237 Supyire #> 15327 138A-1 orh hae east2652 Oromo (Harar) #> 15368 138A-1 hin hin hind1269 Hindi #> 15404 138A-1 hau hau haus1257 Hausa #> 15405 138A-1 kor kor kore1280 Korean #> 15417 138A-1 cha cha cham1312 Chamorro #> 15530 138A-3 kse ses koyr1242 Koyraboro Senni #> 15538 138A-3 tiw tiw tiwi1244 Tiwi #> 15619 14A-1 wic wic wich1260 Wichita #> 15631 14A-1 kew kjs kewa1250 Kewa #> 15643 14A-1 ala amp alam1246 Alamblak #> 15644 14A-1 hin hin hind1269 Hindi #> 15668 14A-1 koa cku koas1236 Koasati #> 15671 14A-1 prh myp pira1253 Pirahã #> 15710 14A-1 apu apu apur1254 Apurinã #> 15742 14A-1 cha cha cham1312 Chamorro #> 15758 14A-1 abk abk abkh1244 Abkhaz #> 15837 14A-2 sup spp supy1237 Supyire #> 15894 14A-2 mrt vma mart1255 Martuthunira #> 15976 14A-6 ond one onei1249 Oneida #> 15996 14A-6 tuk khc tuka1247 Tukang Besi #> 16024 14A-6 tiw tiw tiwi1244 Tiwi #> 16061 14A-7 mar mrc mari1440 Maricopa #> 16173 142A-1 hin hin hind1269 Hindi #> 16187 142A-2 kor kor kore1280 Korean #> 16216 142A-2 hau hau haus1257 Hausa #> 16235 142A-2 tuk khc tuka1247 Tukang Besi #> 16264 142A-3 prh myp pira1253 Pirahã #> 16331 143A-1 hin hin hind1269 Hindi #> 16350 143A-1 tiw tiw tiwi1244 Tiwi #> 16391 143A-1 apu apu apur1254 Apurinã #> 16477 143A-1 tuk khc tuka1247 Tukang Besi #> 16509 143A-1 kse ses koyr1242 Koyraboro Senni #> 16512 143A-1 mrt vma mart1255 Martuthunira #> 16616 143A-1 ala amp alam1246 Alamblak #> 16679 143A-1 cha cha cham1312 Chamorro #> 16780 143A-1 wic wic wich1260 Wichita #> 16781 143A-1 kor kor kore1280 Korean #> 16812 143A-11 abk abk abkh1244 Abkhaz #> 16826 143A-14 mar mrc mari1440 Maricopa #> 16898 143A-14 orh hae east2652 Oromo (Harar) #> 16923 143A-14 kio kio kiow1266 Kiowa #> 16943 143A-15 hau hau haus1257 Hausa #> 16953 143A-15 sup spp supy1237 Supyire #> 17008 143A-15 ond one onei1249 Oneida #> 17283 143A-3 kew kjs kewa1250 Kewa #> 17396 143A-4 koa cku koas1236 Koasati #> 17510 143A-4 prh myp pira1253 Pirahã #> 17672 143B-2 kio kio kiow1266 Kiowa #> 17687 143B-4 mar mrc mari1440 Maricopa #> 17711 143B-6 orh hae east2652 Oromo (Harar) #> 17719 143C-1 hau hau haus1257 Hausa #> 17733 143C-12 ond one onei1249 Oneida #> 17761 143C-2 sup spp supy1237 Supyire #> 17840 143E-1 mrt vma mart1255 Martuthunira #> 17848 143E-1 hin hin hind1269 Hindi #> 17885 143E-1 apu apu apur1254 Apurinã #> 17920 143E-1 ala amp alam1246 Alamblak #> 17934 143E-1 hau hau haus1257 Hausa #> 17948 143E-1 kor kor kore1280 Korean #> 17974 143E-1 kse ses koyr1242 Koyraboro Senni #> 17994 143E-1 wic wic wich1260 Wichita #> 18000 143E-1 kio kio kiow1266 Kiowa #> 18022 143E-1 sup spp supy1237 Supyire #> 18232 143E-1 tiw tiw tiwi1244 Tiwi #> 18278 143E-1 cha cha cham1312 Chamorro #> 18416 143E-1 tuk khc tuka1247 Tukang Besi #> 18514 143E-2 abk abk abkh1244 Abkhaz #> 18570 143E-2 orh hae east2652 Oromo (Harar) #> 18627 143E-2 kew kjs kewa1250 Kewa #> 18630 143E-2 mar mrc mari1440 Maricopa #> 18717 143E-3 ond one onei1249 Oneida #> 18885 143E-4 koa cku koas1236 Koasati #> 18922 143E-4 prh myp pira1253 Pirahã #> 19221 143F-1 sup spp supy1237 Supyire #> 19281 143F-1 hau hau haus1257 Hausa #> 19425 143F-2 prh myp pira1253 Pirahã #> 19472 143F-2 mar mrc mari1440 Maricopa #> 19476 143F-2 kio kio kiow1266 Kiowa #> 19613 143F-2 abk abk abkh1244 Abkhaz #> 19699 143F-2 koa cku koas1236 Koasati #> 19758 143F-4 tuk khc tuka1247 Tukang Besi #> 19776 143F-4 kse ses koyr1242 Koyraboro Senni #> 19779 143F-4 kor kor kore1280 Korean #> 19903 143F-4 hin hin hind1269 Hindi #> 19944 143F-4 kew kjs kewa1250 Kewa #> 20079 143F-4 cha cha cham1312 Chamorro #> 20105 143F-4 mrt vma mart1255 Martuthunira #> 20152 143F-4 ala amp alam1246 Alamblak #> 20178 143F-4 ond one onei1249 Oneida #> 20314 143F-4 apu apu apur1254 Apurinã #> 20379 143F-4 tiw tiw tiwi1244 Tiwi #> 20428 143F-4 wic wic wich1260 Wichita #> 20436 143F-4 orh hae east2652 Oromo (Harar) #> 20457 143G-1 orh hae east2652 Oromo (Harar) #> 20465 143G-4 tuk khc tuka1247 Tukang Besi #> 20641 143G-4 kor kor kore1280 Korean #> 20671 143G-4 kew kjs kewa1250 Kewa #> 20673 143G-4 mrt vma mart1255 Martuthunira #> 20695 143G-4 kio kio kiow1266 Kiowa #> 20764 143G-4 sup spp supy1237 Supyire #> 20798 143G-4 prh myp pira1253 Pirahã #> 20957 143G-4 ala amp alam1246 Alamblak #> 20980 143G-4 hin hin hind1269 Hindi #> 21074 143G-4 tiw tiw tiwi1244 Tiwi #> 21138 143G-4 abk abk abkh1244 Abkhaz #> 21255 143G-4 wic wic wich1260 Wichita #> 21291 143G-4 hau hau haus1257 Hausa #> 21331 143G-4 koa cku koas1236 Koasati #> 21539 143G-4 cha cha cham1312 Chamorro #> 21637 143G-4 mar mrc mari1440 Maricopa #> 21657 143G-4 apu apu apur1254 Apurinã #> 21660 143G-4 kse ses koyr1242 Koyraboro Senni #> 21684 143G-4 ond one onei1249 Oneida #> 21794 144A-12 tuk khc tuka1247 Tukang Besi #> 21842 144A-16 apu apu apur1254 Apurinã #> 21854 144A-16 wic wic wich1260 Wichita #> 21917 144A-18 kio kio kiow1266 Kiowa #> 21928 144A-18 mar mrc mari1440 Maricopa #> 21983 144A-18 orh hae east2652 Oromo (Harar) #> 22022 144A-19 sup spp supy1237 Supyire #> 22047 144A-19 hau hau haus1257 Hausa #> 22123 144A-2 mrt vma mart1255 Martuthunira #> 22178 144A-2 tiw tiw tiwi1244 Tiwi #> 22220 144A-20 prh myp pira1253 Pirahã #> 22284 144A-20 kew kjs kewa1250 Kewa #> 22315 144A-20 abk abk abkh1244 Abkhaz #> 22451 144A-20 koa cku koas1236 Koasati #> 22621 144A-21 ond one onei1249 Oneida #> 22785 144A-6 kse ses koyr1242 Koyraboro Senni #> 22798 144A-7 hin hin hind1269 Hindi #> 22829 144A-7 kor kor kore1280 Korean #> 22856 144A-7 ala amp alam1246 Alamblak #> 22936 144A-9 cha cha cham1312 Chamorro #> 22968 144B-1 kio kio kiow1266 Kiowa #> 22997 144B-1 wic wic wich1260 Wichita #> 23024 144B-2 kse ses koyr1242 Koyraboro Senni #> 23028 144B-3 tiw tiw tiwi1244 Tiwi #> 23034 144B-3 ala amp alam1246 Alamblak #> 23059 144B-3 kor kor kore1280 Korean #> 23112 144B-3 ond one onei1249 Oneida #> 23115 144B-3 hin hin hind1269 Hindi #> 23125 144B-3 mrt vma mart1255 Martuthunira #> 23243 144B-3 hau hau haus1257 Hausa #> 23275 144B-3 cha cha cham1312 Chamorro #> 23342 144B-3 tuk khc tuka1247 Tukang Besi #> 23448 144B-4 sup spp supy1237 Supyire #> 23649 144D-13 apu apu apur1254 Apurinã #> 23777 144D-15 hau hau haus1257 Hausa #> 23822 144D-2 mrt vma mart1255 Martuthunira #> 23861 144D-2 tiw tiw tiwi1244 Tiwi #> 24090 144E-2 apu apu apur1254 Apurinã #> 24175 144G-1 hau hau haus1257 Hausa #> 24212 144H-1 apu apu apur1254 Apurinã #> 24272 144H-4 hau hau haus1257 Hausa #> 24297 144H-4 tiw tiw tiwi1244 Tiwi #> 24549 144H-4 mrt vma mart1255 Martuthunira #> 24640 144I-1 apu apu apur1254 Apurinã #> 24661 144I-1 mrt vma mart1255 Martuthunira #> 24664 144I-1 tiw tiw tiwi1244 Tiwi #> 24838 144I-3 hau hau haus1257 Hausa #> 25213 144J-7 hau hau haus1257 Hausa #> 25390 144J-7 mrt vma mart1255 Martuthunira #> 25447 144J-7 tiw tiw tiwi1244 Tiwi #> 25475 144J-7 apu apu apur1254 Apurinã #> 25620 144K-3 hau hau haus1257 Hausa #> 25685 144K-4 apu apu apur1254 Apurinã #> 25704 144K-4 tiw tiw tiwi1244 Tiwi #> 25874 144K-4 mrt vma mart1255 Martuthunira #> 26034 144L-15 wic wic wich1260 Wichita #> 26054 144L-15 abk abk abkh1244 Abkhaz #> 26064 144L-16 kio kio kiow1266 Kiowa #> 26068 144L-16 orh hae east2652 Oromo (Harar) #> 26084 144L-16 mar mrc mari1440 Maricopa #> 26111 144L-17 sup spp supy1237 Supyire #> 26167 144L-2 kse ses koyr1242 Koyraboro Senni #> 26235 144L-3 hin hin hind1269 Hindi #> 26240 144L-3 kor kor kore1280 Korean #> 26253 144L-3 ala amp alam1246 Alamblak #> 26366 144L-5 kew kjs kewa1250 Kewa #> 26416 144L-6 koa cku koas1236 Koasati #> 26464 144L-6 prh myp pira1253 Pirahã #> 26519 144M-17 wic wic wich1260 Wichita #> 26556 144M-6 abk abk abkh1244 Abkhaz #> 26588 144N-3 kio kio kiow1266 Kiowa #> 26594 144N-6 mar mrc mari1440 Maricopa #> 26606 144N-7 orh hae east2652 Oromo (Harar) #> 26624 144O-2 sup spp supy1237 Supyire #> 26651 144P-1 wic wic wich1260 Wichita #> 26659 144P-3 kio kio kiow1266 Kiowa #> 26669 144P-4 hin hin hind1269 Hindi #> 26720 144P-4 prh myp pira1253 Pirahã #> 26726 144P-4 kor kor kore1280 Korean #> 26740 144P-4 ala amp alam1246 Alamblak #> 26797 144P-4 orh hae east2652 Oromo (Harar) #> 26803 144P-4 kse ses koyr1242 Koyraboro Senni #> 26813 144P-4 kew kjs kewa1250 Kewa #> 26853 144P-4 koa cku koas1236 Koasati #> 26971 144P-4 abk abk abkh1244 Abkhaz #> 26996 144P-4 mar mrc mari1440 Maricopa #> 26997 144P-4 sup spp supy1237 Supyire #> 27066 144Q-1 kse ses koyr1242 Koyraboro Senni #> 27086 144Q-3 sup spp supy1237 Supyire #> 27103 144Q-4 orh hae east2652 Oromo (Harar) #> 27114 144Q-4 kew kjs kewa1250 Kewa #> 27115 144Q-4 abk abk abkh1244 Abkhaz #> 27231 144Q-4 hin hin hind1269 Hindi #> 27232 144Q-4 koa cku koas1236 Koasati #> 27283 144Q-4 kor kor kore1280 Korean #> 27346 144Q-4 ala amp alam1246 Alamblak #> 27401 144Q-4 kio kio kiow1266 Kiowa #> 27407 144Q-4 mar mrc mari1440 Maricopa #> 27416 144Q-4 wic wic wich1260 Wichita #> 27431 144Q-4 prh myp pira1253 Pirahã #> 27471 144R-1 ala amp alam1246 Alamblak #> 27481 144R-1 hin hin hind1269 Hindi #> 27521 144R-1 kor kor kore1280 Korean #> 27546 144R-2 abk abk abkh1244 Abkhaz #> 27564 144R-2 kew kjs kewa1250 Kewa #> 27607 144R-6 orh hae east2652 Oromo (Harar) #> 27625 144R-6 mar mrc mari1440 Maricopa #> 27703 144R-8 kio kio kiow1266 Kiowa #> 27729 144R-8 wic wic wich1260 Wichita #> 27746 144R-8 koa cku koas1236 Koasati #> 27751 144R-8 prh myp pira1253 Pirahã #> 27788 144R-8 sup spp supy1237 Supyire #> 27824 144R-8 kse ses koyr1242 Koyraboro Senni #> 27941 144S-11 ala amp alam1246 Alamblak #> 27942 144S-11 wic wic wich1260 Wichita #> 27958 144S-11 kew kjs kewa1250 Kewa #> 28006 144S-11 orh hae east2652 Oromo (Harar) #> 28050 144S-11 kor kor kore1280 Korean #> 28064 144S-11 kse ses koyr1242 Koyraboro Senni #> 28103 144S-11 hin hin hind1269 Hindi #> 28215 144S-2 prh myp pira1253 Pirahã #> 28226 144S-2 koa cku koas1236 Koasati #> 28247 144S-2 abk abk abkh1244 Abkhaz #> 28293 144S-3 sup spp supy1237 Supyire #> 28317 144S-6 mar mrc mari1440 Maricopa #> 28323 144S-6 kio kio kiow1266 Kiowa #> 28388 144T-1 cha cha cham1312 Chamorro #> 28444 144T-23 ond one onei1249 Oneida #> 28466 144T-4 tuk khc tuka1247 Tukang Besi #> 28513 144U-13 ond one onei1249 Oneida #> 28577 144V-1 ond one onei1249 Oneida #> 28625 144V-1 tuk khc tuka1247 Tukang Besi #> 28628 144V-1 cha cha cham1312 Chamorro #> 28694 144W-6 tuk khc tuka1247 Tukang Besi #> 28720 144W-6 ond one onei1249 Oneida #> 28764 144W-6 cha cha cham1312 Chamorro #> 28880 144X-4 tuk khc tuka1247 Tukang Besi #> 28962 144X-4 cha cha cham1312 Chamorro #> 28966 144X-4 ond one onei1249 Oneida #> 28993 144Y-8 wic wic wich1260 Wichita #> 29047 15A-3 koa cku koas1236 Koasati #> 29058 15A-3 apu apu apur1254 Apurinã #> 29100 15A-4 prh myp pira1253 Pirahã #> 29114 15A-4 cha cha cham1312 Chamorro #> 29115 15A-4 hin hin hind1269 Hindi #> 29134 15A-5 wic wic wich1260 Wichita #> 29183 15A-6 ala amp alam1246 Alamblak #> 29188 15A-7 abk abk abkh1244 Abkhaz #> 29213 15A-7 kew kjs kewa1250 Kewa #> 29242 15A-8 tiw tiw tiwi1244 Tiwi #> 29297 15A-8 mrt vma mart1255 Martuthunira #> 29308 15A-8 ond one onei1249 Oneida #> 29370 15A-8 mar mrc mari1440 Maricopa #> 29405 15A-8 sup spp supy1237 Supyire #> 29416 15A-8 tuk khc tuka1247 Tukang Besi #> 29553 16A-1 ond one onei1249 Oneida #> 29589 16A-1 mar mrc mari1440 Maricopa #> 29701 16A-1 tuk khc tuka1247 Tukang Besi #> 29705 16A-1 tiw tiw tiwi1244 Tiwi #> 29742 16A-1 sup spp supy1237 Supyire #> 29759 16A-2 mrt vma mart1255 Martuthunira #> 29785 16A-2 koa cku koas1236 Koasati #> 29804 16A-2 apu apu apur1254 Apurinã #> 29836 16A-3 cha cha cham1312 Chamorro #> 29865 16A-4 hin hin hind1269 Hindi #> 29904 16A-5 ala amp alam1246 Alamblak #> 29906 16A-5 wic wic wich1260 Wichita #> 29926 16A-6 abk abk abkh1244 Abkhaz #> 29945 16A-6 kew kjs kewa1250 Kewa #> 29987 16A-7 prh myp pira1253 Pirahã #> 30011 17A-1 apu apu apur1254 Apurinã #> 30030 17A-1 tiw tiw tiwi1244 Tiwi #> 30095 17A-1 mrt vma mart1255 Martuthunira #> 30123 17A-1 tuk khc tuka1247 Tukang Besi #> 30180 17A-3 wic wic wich1260 Wichita #> 30192 17A-4 cha cha cham1312 Chamorro #> 30239 17A-5 ond one onei1249 Oneida #> 30279 17A-5 kew kjs kewa1250 Kewa #> 30299 17A-5 mar mrc mari1440 Maricopa #> 30497 18A-1 koa cku koas1236 Koasati #> 30502 18A-1 cha cha cham1312 Chamorro #> 30548 18A-1 kse ses koyr1242 Koyraboro Senni #> 30582 18A-1 tiw tiw tiwi1244 Tiwi #> 30610 18A-1 kew kjs kewa1250 Kewa #> 30621 18A-1 kor kor kore1280 Korean #> 30655 18A-1 hau hau haus1257 Hausa #> 30662 18A-1 hin hin hind1269 Hindi #> 30669 18A-1 ala amp alam1246 Alamblak #> 30670 18A-1 mar mrc mari1440 Maricopa #> 30718 18A-1 sup spp supy1237 Supyire #> 30731 18A-1 kio kio kiow1266 Kiowa #> 30744 18A-1 orh hae east2652 Oromo (Harar) #> 30756 18A-1 tuk khc tuka1247 Tukang Besi #> 30787 18A-1 apu apu apur1254 Apurinã #> 30796 18A-1 abk abk abkh1244 Abkhaz #> 30821 18A-2 wic wic wich1260 Wichita #> 30822 18A-2 ond one onei1249 Oneida #> 30856 18A-3 mrt vma mart1255 Martuthunira #> 30877 18A-4 prh myp pira1253 Pirahã #> 30914 19A-1 prh myp pira1253 Pirahã #> 30915 19A-1 orh hae east2652 Oromo (Harar) #> 30961 19A-1 kew kjs kewa1250 Kewa #> 30968 19A-1 hau hau haus1257 Hausa #> 30974 19A-1 ond one onei1249 Oneida #> 30986 19A-1 sup spp supy1237 Supyire #> 31014 19A-1 mrt vma mart1255 Martuthunira #> 31021 19A-1 kse ses koyr1242 Koyraboro Senni #> 31041 19A-1 ala amp alam1246 Alamblak #> 31062 19A-1 kio kio kiow1266 Kiowa #> 31091 19A-1 koa cku koas1236 Koasati #> 31161 19A-1 hin hin hind1269 Hindi #> 31219 19A-1 cha cha cham1312 Chamorro #> 31243 19A-1 apu apu apur1254 Apurinã #> 31246 19A-1 tiw tiw tiwi1244 Tiwi #> 31311 19A-1 wic wic wich1260 Wichita #> 31317 19A-1 kor kor kore1280 Korean #> 31329 19A-1 tuk khc tuka1247 Tukang Besi #> 31388 19A-4 abk abk abkh1244 Abkhaz #> 31431 19A-5 mar mrc mari1440 Maricopa #> 31489 2A-1 ond one onei1249 Oneida #> 31490 2A-1 koa cku koas1236 Koasati #> 31527 2A-1 wic wic wich1260 Wichita #> 31532 2A-1 abk abk abkh1244 Abkhaz #> 31539 2A-1 prh myp pira1253 Pirahã #> 31540 2A-1 tiw tiw tiwi1244 Tiwi #> 31543 2A-1 mrt vma mart1255 Martuthunira #> 31564 2A-2 kse ses koyr1242 Koyraboro Senni #> 31574 2A-2 mar mrc mari1440 Maricopa #> 31633 2A-2 kio kio kiow1266 Kiowa #> 31659 2A-2 hin hin hind1269 Hindi #> 31665 2A-2 hau hau haus1257 Hausa #> 31675 2A-2 cha cha cham1312 Chamorro #> 31676 2A-2 kew kjs kewa1250 Kewa #> 31716 2A-2 orh hae east2652 Oromo (Harar) #> 31763 2A-2 apu apu apur1254 Apurinã #> 31783 2A-2 tuk khc tuka1247 Tukang Besi #> 31877 2A-3 sup spp supy1237 Supyire #> 31907 2A-3 ala amp alam1246 Alamblak #> 31917 2A-3 kor kor kore1280 Korean #> 32031 20A-1 kor kor kore1280 Korean #> 32036 20A-1 koa cku koas1236 Koasati #> 32039 20A-1 ond one onei1249 Oneida #> 32062 20A-1 mar mrc mari1440 Maricopa #> 32071 20A-1 mrt vma mart1255 Martuthunira #> 32074 20A-1 hin hin hind1269 Hindi #> 32075 20A-1 tiw tiw tiwi1244 Tiwi #> 32077 20A-1 ala amp alam1246 Alamblak #> 32097 20A-1 kew kjs kewa1250 Kewa #> 32105 20A-1 apu apu apur1254 Apurinã #> 32109 20A-1 abk abk abkh1244 Abkhaz #> 32116 20A-1 wic wic wich1260 Wichita #> 32126 20A-1 kio kio kiow1266 Kiowa #> 32129 20A-1 orh hae east2652 Oromo (Harar) #> 32140 20A-1 prh myp pira1253 Pirahã #> 32142 20A-2 sup spp supy1237 Supyire #> 32148 20A-2 hau hau haus1257 Hausa #> 32179 20A-7 tuk khc tuka1247 Tukang Besi #> 32180 20A-7 cha cha cham1312 Chamorro #> 32181 21A-1 hin hin hind1269 Hindi #> 32205 21A-1 orh hae east2652 Oromo (Harar) #> 32213 21A-1 kor kor kore1280 Korean #> 32219 21A-1 mar mrc mari1440 Maricopa #> 32223 21A-1 koa cku koas1236 Koasati #> 32226 21A-1 kew kjs kewa1250 Kewa #> 32227 21A-1 mrt vma mart1255 Martuthunira #> 32251 21A-1 wic wic wich1260 Wichita #> 32265 21A-3 tuk khc tuka1247 Tukang Besi #> 32286 21A-5 prh myp pira1253 Pirahã #> 32290 21A-5 apu apu apur1254 Apurinã #> 32297 21A-5 kio kio kiow1266 Kiowa #> 32306 21A-5 ond one onei1249 Oneida #> 32310 21A-5 tiw tiw tiwi1244 Tiwi #> 32319 21A-5 abk abk abkh1244 Abkhaz #> 32324 21A-5 sup spp supy1237 Supyire #> 32325 21A-5 cha cha cham1312 Chamorro #> 32336 21A-5 ala amp alam1246 Alamblak #> 32341 21A-5 hau hau haus1257 Hausa #> 32366 21B-1 wic wic wich1260 Wichita #> 32368 21B-1 mrt vma mart1255 Martuthunira #> 32405 21B-1 kio kio kiow1266 Kiowa #> 32415 21B-1 prh myp pira1253 Pirahã #> 32417 21B-1 mar mrc mari1440 Maricopa #> 32422 21B-1 abk abk abkh1244 Abkhaz #> 32430 21B-1 sup spp supy1237 Supyire #> 32445 21B-1 ala amp alam1246 Alamblak #> 32447 21B-1 koa cku koas1236 Koasati #> 32450 21B-1 orh hae east2652 Oromo (Harar) #> 32455 21B-1 ond one onei1249 Oneida #> 32456 21B-1 hau hau haus1257 Hausa #> 32457 21B-1 kor kor kore1280 Korean #> 32467 21B-1 apu apu apur1254 Apurinã #> 32470 21B-2 tuk khc tuka1247 Tukang Besi #> 32472 21B-2 hin hin hind1269 Hindi #> 32473 21B-2 cha cha cham1312 Chamorro #> 32492 21B-3 kew kjs kewa1250 Kewa #> 32499 21B-6 tiw tiw tiwi1244 Tiwi #> 32513 22A-2 hin hin hind1269 Hindi #> 32529 22A-2 mrt vma mart1255 Martuthunira #> 32531 22A-2 sup spp supy1237 Supyire #> 32571 22A-3 tiw tiw tiwi1244 Tiwi #> 32585 22A-4 hau hau haus1257 Hausa #> 32586 22A-4 apu apu apur1254 Apurinã #> 32587 22A-4 kor kor kore1280 Korean #> 32591 22A-4 cha cha cham1312 Chamorro #> 32602 22A-4 kew kjs kewa1250 Kewa #> 32606 22A-4 tuk khc tuka1247 Tukang Besi #> 32610 22A-4 orh hae east2652 Oromo (Harar) #> 32617 22A-5 prh myp pira1253 Pirahã #> 32629 22A-5 kio kio kiow1266 Kiowa #> 32632 22A-5 ond one onei1249 Oneida #> 32633 22A-5 mar mrc mari1440 Maricopa #> 32643 22A-6 abk abk abkh1244 Abkhaz #> 32644 22A-6 ala amp alam1246 Alamblak #> 32646 22A-7 koa cku koas1236 Koasati #> 32647 22A-7 wic wic wich1260 Wichita #> 32657 23A-1 ala amp alam1246 Alamblak #> 32659 23A-1 abk abk abkh1244 Abkhaz #> 32661 23A-1 wic wic wich1260 Wichita #> 32670 23A-1 kio kio kiow1266 Kiowa #> 32680 23A-1 tiw tiw tiwi1244 Tiwi #> 32698 23A-1 apu apu apur1254 Apurinã #> 32702 23A-1 ond one onei1249 Oneida #> 32721 23A-2 kew kjs kewa1250 Kewa #> 32727 23A-2 kor kor kore1280 Korean #> 32764 23A-2 cha cha cham1312 Chamorro #> 32774 23A-2 mrt vma mart1255 Martuthunira #> 32791 23A-3 hau hau haus1257 Hausa #> 32795 23A-3 hin hin hind1269 Hindi #> 32809 23A-3 koa cku koas1236 Koasati #> 32824 23A-3 mar mrc mari1440 Maricopa #> 32845 23A-4 prh myp pira1253 Pirahã #> 32849 23A-4 sup spp supy1237 Supyire #> 32853 23A-4 tuk khc tuka1247 Tukang Besi #> 32861 23A-4 orh hae east2652 Oromo (Harar) #> 32893 24A-1 apu apu apur1254 Apurinã #> 32910 24A-1 wic wic wich1260 Wichita #> 32913 24A-1 mar mrc mari1440 Maricopa #> 32919 24A-1 koa cku koas1236 Koasati #> 32935 24A-1 cha cha cham1312 Chamorro #> 32942 24A-1 abk abk abkh1244 Abkhaz #> 32950 24A-1 kio kio kiow1266 Kiowa #> 32959 24A-1 ond one onei1249 Oneida #> 32961 24A-1 sup spp supy1237 Supyire #> 32990 24A-2 tuk khc tuka1247 Tukang Besi #> 33020 24A-2 kew kjs kewa1250 Kewa #> 33021 24A-2 ala amp alam1246 Alamblak #> 33025 24A-2 hau hau haus1257 Hausa #> 33045 24A-2 mrt vma mart1255 Martuthunira #> 33054 24A-2 hin hin hind1269 Hindi #> 33055 24A-2 kor kor kore1280 Korean #> 33104 24A-4 tiw tiw tiwi1244 Tiwi #> 33106 24A-4 prh myp pira1253 Pirahã #> 33117 24A-5 orh hae east2652 Oromo (Harar) #> 33131 25A-1 wic wic wich1260 Wichita #> 33141 25A-1 ond one onei1249 Oneida #> 33144 25A-1 abk abk abkh1244 Abkhaz #> 33151 25A-1 apu apu apur1254 Apurinã #> 33180 25A-2 kew kjs kewa1250 Kewa #> 33195 25A-2 kor kor kore1280 Korean #> 33201 25A-2 mrt vma mart1255 Martuthunira #> 33234 25A-4 prh myp pira1253 Pirahã #> 33249 25A-5 tuk khc tuka1247 Tukang Besi #> 33267 25A-5 mar mrc mari1440 Maricopa #> 33275 25A-5 kio kio kiow1266 Kiowa #> 33278 25A-5 tiw tiw tiwi1244 Tiwi #> 33289 25A-5 orh hae east2652 Oromo (Harar) #> 33291 25A-5 sup spp supy1237 Supyire #> 33299 25A-5 ala amp alam1246 Alamblak #> 33310 25A-5 hin hin hind1269 Hindi #> 33318 25A-5 hau hau haus1257 Hausa #> 33337 25A-5 cha cha cham1312 Chamorro #> 33346 25A-5 koa cku koas1236 Koasati #> 33358 25B-1 sup spp supy1237 Supyire #> 33362 25B-1 prh myp pira1253 Pirahã #> 33374 25B-2 cha cha cham1312 Chamorro #> 33388 25B-2 mrt vma mart1255 Martuthunira #> 33413 25B-2 tiw tiw tiwi1244 Tiwi #> 33429 25B-2 kio kio kiow1266 Kiowa #> 33436 25B-2 wic wic wich1260 Wichita #> 33448 25B-2 tuk khc tuka1247 Tukang Besi #> 33450 25B-2 kor kor kore1280 Korean #> 33454 25B-2 orh hae east2652 Oromo (Harar) #> 33473 25B-2 abk abk abkh1244 Abkhaz #> 33484 25B-2 hin hin hind1269 Hindi #> 33538 25B-2 apu apu apur1254 Apurinã #> 33546 25B-2 ala amp alam1246 Alamblak #> 33569 25B-2 ond one onei1249 Oneida #> 33570 25B-2 koa cku koas1236 Koasati #> 33573 25B-2 kew kjs kewa1250 Kewa #> 33574 25B-2 mar mrc mari1440 Maricopa #> 33584 25B-2 hau hau haus1257 Hausa #> 33592 26A-1 kse ses koyr1242 Koyraboro Senni #> 33682 26A-1 hau hau haus1257 Hausa #> 33718 26A-1 cha cha cham1312 Chamorro #> 33743 26A-2 hin hin hind1269 Hindi #> 33859 26A-2 orh hae east2652 Oromo (Harar) #> 33953 26A-2 mrt vma mart1255 Martuthunira #> 34015 26A-2 kew kjs kewa1250 Kewa #> 34018 26A-2 ala amp alam1246 Alamblak #> 34028 26A-2 kor kor kore1280 Korean #> 34112 26A-2 prh myp pira1253 Pirahã #> 34139 26A-3 sup spp supy1237 Supyire #> 34305 26A-4 koa cku koas1236 Koasati #> 34311 26A-4 abk abk abkh1244 Abkhaz #> 34327 26A-4 mar mrc mari1440 Maricopa #> 34365 26A-4 kio kio kiow1266 Kiowa #> 34371 26A-4 apu apu apur1254 Apurinã #> 34463 26A-5 wic wic wich1260 Wichita #> 34467 26A-5 ond one onei1249 Oneida #> 34486 26A-5 tuk khc tuka1247 Tukang Besi #> 34543 26A-6 tiw tiw tiwi1244 Tiwi #> 34565 27A-1 abk abk abkh1244 Abkhaz #> 34640 27A-1 tuk khc tuka1247 Tukang Besi #> 34648 27A-1 hin hin hind1269 Hindi #> 34702 27A-1 kor kor kore1280 Korean #> 34739 27A-1 tiw tiw tiwi1244 Tiwi #> 34742 27A-1 hau hau haus1257 Hausa #> 34763 27A-1 ala amp alam1246 Alamblak #> 34764 27A-1 orh hae east2652 Oromo (Harar) #> 34769 27A-1 koa cku koas1236 Koasati #> 34775 27A-1 mar mrc mari1440 Maricopa #> 34821 27A-1 cha cha cham1312 Chamorro #> 34853 27A-2 mrt vma mart1255 Martuthunira #> 34875 27A-3 wic wic wich1260 Wichita #> 34903 27A-3 prh myp pira1253 Pirahã #> 34922 27A-3 apu apu apur1254 Apurinã #> 34924 27A-3 kio kio kiow1266 Kiowa #> 34925 27A-3 ond one onei1249 Oneida #> 34937 28A-1 kor kor kore1280 Korean #> 34941 28A-1 kse ses koyr1242 Koyraboro Senni #> 34942 28A-1 apu apu apur1254 Apurinã #> 34961 28A-1 tiw tiw tiwi1244 Tiwi #> 34995 28A-1 kew kjs kewa1250 Kewa #> 34996 28A-1 sup spp supy1237 Supyire #> 34997 28A-1 tuk khc tuka1247 Tukang Besi #> 35002 28A-1 abk abk abkh1244 Abkhaz #> 35009 28A-1 ala amp alam1246 Alamblak #> 35015 28A-1 kio kio kiow1266 Kiowa #> 35028 28A-1 wic wic wich1260 Wichita #> 35041 28A-1 cha cha cham1312 Chamorro #> 35045 28A-1 prh myp pira1253 Pirahã #> 35056 28A-2 orh hae east2652 Oromo (Harar) #> 35075 28A-3 hin hin hind1269 Hindi #> 35086 28A-3 mrt vma mart1255 Martuthunira #> 35105 28A-4 hau hau haus1257 Hausa #> 35117 28A-4 mar mrc mari1440 Maricopa #> 35124 28A-4 koa cku koas1236 Koasati #> 35131 29A-1 prh myp pira1253 Pirahã #> 35134 29A-1 hau hau haus1257 Hausa #> 35139 29A-1 kor kor kore1280 Korean #> 35145 29A-1 mrt vma mart1255 Martuthunira #> 35158 29A-1 sup spp supy1237 Supyire #> 35161 29A-1 kse ses koyr1242 Koyraboro Senni #> 35194 29A-2 kio kio kiow1266 Kiowa #> 35204 29A-2 hin hin hind1269 Hindi #> 35209 29A-2 tiw tiw tiwi1244 Tiwi #> 35225 29A-2 orh hae east2652 Oromo (Harar) #> 35240 29A-2 kew kjs kewa1250 Kewa #> 35251 29A-3 ala amp alam1246 Alamblak #> 35256 29A-3 cha cha cham1312 Chamorro #> 35274 29A-3 tuk khc tuka1247 Tukang Besi #> 35282 29A-3 koa cku koas1236 Koasati #> 35286 29A-3 apu apu apur1254 Apurinã #> 35297 29A-3 wic wic wich1260 Wichita #> 35307 29A-3 mar mrc mari1440 Maricopa #> 35312 29A-3 ond one onei1249 Oneida #> 35318 29A-3 abk abk abkh1244 Abkhaz #> 35382 3A-2 ond one onei1249 Oneida #> 35414 3A-2 prh myp pira1253 Pirahã #> 35431 3A-2 kor kor kore1280 Korean #> 35471 3A-2 ala amp alam1246 Alamblak #> 35492 3A-3 wic wic wich1260 Wichita #> 35499 3A-3 kse ses koyr1242 Koyraboro Senni #> 35528 3A-3 kio kio kiow1266 Kiowa #> 35547 3A-3 kew kjs kewa1250 Kewa #> 35574 3A-3 cha cha cham1312 Chamorro #> 35647 3A-3 apu apu apur1254 Apurinã #> 35695 3A-3 tuk khc tuka1247 Tukang Besi #> 35699 3A-3 sup spp supy1237 Supyire #> 35723 3A-4 hin hin hind1269 Hindi #> 35740 3A-4 orh hae east2652 Oromo (Harar) #> 35742 3A-4 hau hau haus1257 Hausa #> 35764 3A-4 tiw tiw tiwi1244 Tiwi #> 35813 3A-4 mar mrc mari1440 Maricopa #> 35814 3A-4 koa cku koas1236 Koasati #> 35831 3A-5 mrt vma mart1255 Martuthunira #> 35868 3A-5 abk abk abkh1244 Abkhaz #> 35903 30A-1 tuk khc tuka1247 Tukang Besi #> 35904 30A-1 koa cku koas1236 Koasati #> 35944 30A-1 mar mrc mari1440 Maricopa #> 35954 30A-1 cha cha cham1312 Chamorro #> 35958 30A-1 kew kjs kewa1250 Kewa #> 35971 30A-1 wic wic wich1260 Wichita #> 35975 30A-1 mrt vma mart1255 Martuthunira #> 36019 30A-1 kse ses koyr1242 Koyraboro Senni #> 36033 30A-2 ala amp alam1246 Alamblak #> 36035 30A-2 hau hau haus1257 Hausa #> 36039 30A-2 apu apu apur1254 Apurinã #> 36048 30A-2 tiw tiw tiwi1244 Tiwi #> 36057 30A-2 orh hae east2652 Oromo (Harar) #> 36064 30A-2 hin hin hind1269 Hindi #> 36090 30A-3 ond one onei1249 Oneida #> 36103 30A-3 abk abk abkh1244 Abkhaz #> 36114 30A-4 prh myp pira1253 Pirahã #> 36129 30A-5 sup spp supy1237 Supyire #> 36163 31A-1 koa cku koas1236 Koasati #> 36186 31A-1 mrt vma mart1255 Martuthunira #> 36187 31A-1 tuk khc tuka1247 Tukang Besi #> 36188 31A-1 kew kjs kewa1250 Kewa #> 36210 31A-1 wic wic wich1260 Wichita #> 36232 31A-1 kse ses koyr1242 Koyraboro Senni #> 36243 31A-1 mar mrc mari1440 Maricopa #> 36263 31A-1 cha cha cham1312 Chamorro #> 36295 31A-2 apu apu apur1254 Apurinã #> 36297 31A-2 orh hae east2652 Oromo (Harar) #> 36320 31A-2 prh myp pira1253 Pirahã #> 36332 31A-2 abk abk abkh1244 Abkhaz #> 36336 31A-2 tiw tiw tiwi1244 Tiwi #> 36338 31A-2 hin hin hind1269 Hindi #> 36355 31A-2 hau hau haus1257 Hausa #> 36364 31A-2 ala amp alam1246 Alamblak #> 36369 31A-2 ond one onei1249 Oneida #> 36391 31A-3 sup spp supy1237 Supyire #> 36417 32A-1 koa cku koas1236 Koasati #> 36448 32A-1 tuk khc tuka1247 Tukang Besi #> 36462 32A-1 wic wic wich1260 Wichita #> 36480 32A-1 mar mrc mari1440 Maricopa #> 36486 32A-1 mrt vma mart1255 Martuthunira #> 36521 32A-1 kew kjs kewa1250 Kewa #> 36526 32A-1 cha cha cham1312 Chamorro #> 36530 32A-1 kse ses koyr1242 Koyraboro Senni #> 36552 32A-2 tiw tiw tiwi1244 Tiwi #> 36560 32A-2 prh myp pira1253 Pirahã #> 36564 32A-2 ala amp alam1246 Alamblak #> 36568 32A-2 ond one onei1249 Oneida #> 36571 32A-2 abk abk abkh1244 Abkhaz #> 36601 32A-3 hau hau haus1257 Hausa #> 36618 32A-3 sup spp supy1237 Supyire #> 36644 32A-3 apu apu apur1254 Apurinã #> 36650 32A-3 orh hae east2652 Oromo (Harar) #> 36656 32A-3 hin hin hind1269 Hindi #> 36786 33A-2 hin hin hind1269 Hindi #> 36837 33A-2 kew kjs kewa1250 Kewa #> 36849 33A-2 abk abk abkh1244 Abkhaz #> 36866 33A-2 tiw tiw tiwi1244 Tiwi #> 36910 33A-2 mrt vma mart1255 Martuthunira #> 36965 33A-2 sup spp supy1237 Supyire #> 37051 33A-2 hau hau haus1257 Hausa #> 37075 33A-2 apu apu apur1254 Apurinã #> 37205 33A-2 kio kio kiow1266 Kiowa #> 37287 33A-2 kor kor kore1280 Korean #> 37299 33A-3 mar mrc mari1440 Maricopa #> 37354 33A-6 ond one onei1249 Oneida #> 37500 33A-7 cha cha cham1312 Chamorro #> 37575 33A-8 koa cku koas1236 Koasati #> 37590 33A-8 kse ses koyr1242 Koyraboro Senni #> 37609 33A-8 ala amp alam1246 Alamblak #> 37640 33A-9 orh hae east2652 Oromo (Harar) #> 37663 33A-9 prh myp pira1253 Pirahã #> 37666 33A-9 wic wic wich1260 Wichita #> 37704 33A-9 tuk khc tuka1247 Tukang Besi #> 37728 34A-1 prh myp pira1253 Pirahã #> 37762 34A-2 orh hae east2652 Oromo (Harar) #> 37766 34A-2 koa cku koas1236 Koasati #> 37767 34A-2 cha cha cham1312 Chamorro #> 37772 34A-2 mar mrc mari1440 Maricopa #> 37812 34A-3 tiw tiw tiwi1244 Tiwi #> 37893 34A-6 sup spp supy1237 Supyire #> 37911 34A-6 ala amp alam1246 Alamblak #> 37916 34A-6 apu apu apur1254 Apurinã #> 37921 34A-6 hin hin hind1269 Hindi #> 37928 34A-6 hau hau haus1257 Hausa #> 37998 34A-6 abk abk abkh1244 Abkhaz #> 38019 35A-2 prh myp pira1253 Pirahã #> 38020 35A-2 ond one onei1249 Oneida #> 38024 35A-2 kio kio kiow1266 Kiowa #> 38025 35A-2 mar mrc mari1440 Maricopa #> 38031 35A-3 koa cku koas1236 Koasati #> 38036 35A-3 wic wic wich1260 Wichita #> 38044 35A-3 apu apu apur1254 Apurinã #> 38071 35A-4 tuk khc tuka1247 Tukang Besi #> 38074 35A-4 sup spp supy1237 Supyire #> 38075 35A-4 kew kjs kewa1250 Kewa #> 38085 35A-4 hin hin hind1269 Hindi #> 38090 35A-4 abk abk abkh1244 Abkhaz #> 38100 35A-4 tiw tiw tiwi1244 Tiwi #> 38110 35A-4 orh hae east2652 Oromo (Harar) #> 38117 35A-4 cha cha cham1312 Chamorro #> 38136 35A-4 kse ses koyr1242 Koyraboro Senni #> 38167 35A-5 mrt vma mart1255 Martuthunira #> 38209 35A-5 hau hau haus1257 Hausa #> 38214 35A-6 kor kor kore1280 Korean #> 38219 35A-6 ala amp alam1246 Alamblak #> 38289 36A-1 kor kor kore1280 Korean #> 38324 36A-1 cha cha cham1312 Chamorro #> 38341 36A-1 kse ses koyr1242 Koyraboro Senni #> 38405 36A-2 abk abk abkh1244 Abkhaz #> 38429 36A-3 tuk khc tuka1247 Tukang Besi #> 38445 36A-3 hau hau haus1257 Hausa #> 38448 36A-3 ala amp alam1246 Alamblak #> 38467 36A-3 sup spp supy1237 Supyire #> 38497 36A-4 ond one onei1249 Oneida #> 38499 36A-4 hin hin hind1269 Hindi #> 38503 36A-4 mrt vma mart1255 Martuthunira #> 38504 36A-4 apu apu apur1254 Apurinã #> 38506 36A-4 wic wic wich1260 Wichita #> 38563 37A-1 cha cha cham1312 Chamorro #> 38578 37A-1 mar mrc mari1440 Maricopa #> 38584 37A-1 koa cku koas1236 Koasati #> 38585 37A-1 kse ses koyr1242 Koyraboro Senni #> 38592 37A-1 abk abk abkh1244 Abkhaz #> 38630 37A-1 ond one onei1249 Oneida #> 38655 37A-1 ala amp alam1246 Alamblak #> 38708 37A-1 hau hau haus1257 Hausa #> 38797 37A-2 tuk khc tuka1247 Tukang Besi #> 38801 37A-3 sup spp supy1237 Supyire #> 38954 37A-5 apu apu apur1254 Apurinã #> 38974 37A-5 tiw tiw tiwi1244 Tiwi #> 38988 37A-5 kor kor kore1280 Korean #> 39062 37A-5 hin hin hind1269 Hindi #> 39065 37A-5 orh hae east2652 Oromo (Harar) #> 39070 37A-5 prh myp pira1253 Pirahã #> 39078 37A-5 kew kjs kewa1250 Kewa #> 39124 37A-5 kio kio kiow1266 Kiowa #> 39140 38A-1 sup spp supy1237 Supyire #> 39144 38A-1 hau hau haus1257 Hausa #> 39280 38A-2 abk abk abkh1244 Abkhaz #> 39380 38A-4 mar mrc mari1440 Maricopa #> 39391 38A-4 ond one onei1249 Oneida #> 39442 38A-4 ala amp alam1246 Alamblak #> 39454 38A-4 tuk khc tuka1247 Tukang Besi #> 39465 38A-4 kse ses koyr1242 Koyraboro Senni #> 39509 38A-5 hin hin hind1269 Hindi #> 39557 38A-5 apu apu apur1254 Apurinã #> 39581 38A-5 orh hae east2652 Oromo (Harar) #> 39589 38A-5 kor kor kore1280 Korean #> 39601 38A-5 kio kio kiow1266 Kiowa #> 39603 38A-5 tiw tiw tiwi1244 Tiwi #> 39615 38A-5 prh myp pira1253 Pirahã #> 39656 38A-5 kew kjs kewa1250 Kewa #> 39668 39A-1 prh myp pira1253 Pirahã #> 39674 39A-2 mar mrc mari1440 Maricopa #> 39676 39A-2 ond one onei1249 Oneida #> 39678 39A-2 kio kio kiow1266 Kiowa #> 39700 39A-3 tuk khc tuka1247 Tukang Besi #> 39718 39A-3 sup spp supy1237 Supyire #> 39720 39A-3 kse ses koyr1242 Koyraboro Senni #> 39728 39A-3 hau hau haus1257 Hausa #> 39745 39A-3 koa cku koas1236 Koasati #> 39750 39A-3 kew kjs kewa1250 Kewa #> 39751 39A-3 ala amp alam1246 Alamblak #> 39759 39A-3 hin hin hind1269 Hindi #> 39778 39A-3 kor kor kore1280 Korean #> 39790 39A-3 apu apu apur1254 Apurinã #> 39797 39A-3 orh hae east2652 Oromo (Harar) #> 39808 39A-5 wic wic wich1260 Wichita #> 39818 39A-5 cha cha cham1312 Chamorro #> 39826 39A-5 mrt vma mart1255 Martuthunira #> 39850 39A-5 abk abk abkh1244 Abkhaz #> 39853 39A-5 tiw tiw tiwi1244 Tiwi #> 39901 39B-2 mrt vma mart1255 Martuthunira #> 39944 4A-1 kew kjs kewa1250 Kewa #> 39946 4A-1 ond one onei1249 Oneida #> 39951 4A-1 kor kor kore1280 Korean #> 39954 4A-1 tiw tiw tiwi1244 Tiwi #> 39981 4A-1 mrt vma mart1255 Martuthunira #> 40018 4A-1 apu apu apur1254 Apurinã #> 40019 4A-1 tuk khc tuka1247 Tukang Besi #> 40023 4A-1 wic wic wich1260 Wichita #> 40105 4A-1 mar mrc mari1440 Maricopa #> 40138 4A-2 kse ses koyr1242 Koyraboro Senni #> 40147 4A-2 ala amp alam1246 Alamblak #> 40203 4A-2 koa cku koas1236 Koasati #> 40218 4A-2 prh myp pira1253 Pirahã #> 40240 4A-2 cha cha cham1312 Chamorro #> 40290 4A-2 kio kio kiow1266 Kiowa #> 40372 4A-4 hau hau haus1257 Hausa #> 40403 4A-4 hin hin hind1269 Hindi #> 40442 4A-4 orh hae east2652 Oromo (Harar) #> 40455 4A-4 sup spp supy1237 Supyire #> 40469 4A-4 abk abk abkh1244 Abkhaz #> 40509 40A-1 hin hin hind1269 Hindi #> 40512 40A-1 hau hau haus1257 Hausa #> 40517 40A-1 mrt vma mart1255 Martuthunira #> 40519 40A-1 sup spp supy1237 Supyire #> 40521 40A-1 kse ses koyr1242 Koyraboro Senni #> 40538 40A-1 kor kor kore1280 Korean #> 40550 40A-1 prh myp pira1253 Pirahã #> 40554 40A-1 cha cha cham1312 Chamorro #> 40575 40A-2 mar mrc mari1440 Maricopa #> 40606 40A-3 abk abk abkh1244 Abkhaz #> 40613 40A-3 kew kjs kewa1250 Kewa #> 40625 40A-3 koa cku koas1236 Koasati #> 40638 40A-3 tuk khc tuka1247 Tukang Besi #> 40642 40A-3 orh hae east2652 Oromo (Harar) #> 40648 40A-3 ala amp alam1246 Alamblak #> 40653 40A-3 apu apu apur1254 Apurinã #> 40670 40A-4 wic wic wich1260 Wichita #> 40675 40A-5 ond one onei1249 Oneida #> 40680 40A-5 tiw tiw tiwi1244 Tiwi #> 40702 40A-5 kio kio kiow1266 Kiowa #> 40705 41A-1 sup spp supy1237 Supyire #> 40707 41A-1 kse ses koyr1242 Koyraboro Senni #> 40731 41A-2 ala amp alam1246 Alamblak #> 40756 41A-2 ond one onei1249 Oneida #> 40761 41A-2 apu apu apur1254 Apurinã #> 40773 41A-2 abk abk abkh1244 Abkhaz #> 40778 41A-2 mrt vma mart1255 Martuthunira #> 40783 41A-2 tiw tiw tiwi1244 Tiwi #> 40789 41A-2 kio kio kiow1266 Kiowa #> 40817 41A-2 prh myp pira1253 Pirahã #> 40824 41A-2 orh hae east2652 Oromo (Harar) #> 40836 41A-2 wic wic wich1260 Wichita #> 40878 41A-3 kor kor kore1280 Korean #> 40896 41A-3 cha cha cham1312 Chamorro #> 40908 41A-3 tuk khc tuka1247 Tukang Besi #> 40927 41A-4 hau hau haus1257 Hausa #> 40936 41A-5 mar mrc mari1440 Maricopa #> 40937 41A-5 koa cku koas1236 Koasati #> 40940 42A-1 koa cku koas1236 Koasati #> 40948 42A-1 ond one onei1249 Oneida #> 40969 42A-1 tuk khc tuka1247 Tukang Besi #> 40975 42A-1 mrt vma mart1255 Martuthunira #> 40983 42A-1 wic wic wich1260 Wichita #> 41005 42A-1 sup spp supy1237 Supyire #> 41016 42A-1 cha cha cham1312 Chamorro #> 41017 42A-1 abk abk abkh1244 Abkhaz #> 41020 42A-1 kse ses koyr1242 Koyraboro Senni #> 41036 42A-1 ala amp alam1246 Alamblak #> 41041 42A-1 apu apu apur1254 Apurinã #> 41053 42A-1 orh hae east2652 Oromo (Harar) #> 41057 42A-1 kio kio kiow1266 Kiowa #> 41062 42A-1 prh myp pira1253 Pirahã #> 41063 42A-1 mar mrc mari1440 Maricopa #> 41066 42A-1 hau hau haus1257 Hausa #> 41071 42A-1 tiw tiw tiwi1244 Tiwi #> 41093 42A-2 kor kor kore1280 Korean #> 41148 43A-1 ond one onei1249 Oneida #> 41150 43A-1 orh hae east2652 Oromo (Harar) #> 41153 43A-1 mrt vma mart1255 Martuthunira #> 41160 43A-1 kse ses koyr1242 Koyraboro Senni #> 41163 43A-1 hau hau haus1257 Hausa #> 41167 43A-1 cha cha cham1312 Chamorro #> 41194 43A-1 kew kjs kewa1250 Kewa #> 41217 43A-1 koa cku koas1236 Koasati #> 41221 43A-1 kor kor kore1280 Korean #> 41234 43A-1 tuk khc tuka1247 Tukang Besi #> 41237 43A-1 wic wic wich1260 Wichita #> 41241 43A-2 mar mrc mari1440 Maricopa #> 41244 43A-2 hin hin hind1269 Hindi #> 41284 43A-2 sup spp supy1237 Supyire #> 41304 43A-3 prh myp pira1253 Pirahã #> 41326 43A-5 apu apu apur1254 Apurinã #> 41341 43A-5 ala amp alam1246 Alamblak #> 41370 44A-1 hau hau haus1257 Hausa #> 41379 44A-1 abk abk abkh1244 Abkhaz #> 41394 44A-2 sup spp supy1237 Supyire #> 41412 44A-2 prh myp pira1253 Pirahã #> 41429 44A-3 orh hae east2652 Oromo (Harar) #> 41442 44A-3 ala amp alam1246 Alamblak #> 41453 44A-3 tiw tiw tiwi1244 Tiwi #> 41464 44A-3 apu apu apur1254 Apurinã #> 41482 44A-3 kor kor kore1280 Korean #> 41526 44A-6 tuk khc tuka1247 Tukang Besi #> 41540 44A-6 wic wic wich1260 Wichita #> 41582 44A-6 mrt vma mart1255 Martuthunira #> 41587 44A-6 kew kjs kewa1250 Kewa #> 41605 44A-6 kio kio kiow1266 Kiowa #> 41616 44A-6 hin hin hind1269 Hindi #> 41626 44A-6 mar mrc mari1440 Maricopa #> 41654 44A-6 ond one onei1249 Oneida #> 41695 44A-6 cha cha cham1312 Chamorro #> 41701 44A-6 koa cku koas1236 Koasati #> 41723 44A-6 kse ses koyr1242 Koyraboro Senni #> 41762 45A-1 koa cku koas1236 Koasati #> 41770 45A-1 cha cha cham1312 Chamorro #> 41772 45A-1 mar mrc mari1440 Maricopa #> 41777 45A-1 wic wic wich1260 Wichita #> 41793 45A-1 orh hae east2652 Oromo (Harar) #> 41799 45A-1 ala amp alam1246 Alamblak #> 41809 45A-1 tiw tiw tiwi1244 Tiwi #> 41822 45A-1 hau hau haus1257 Hausa #> 41829 45A-1 prh myp pira1253 Pirahã #> 41834 45A-1 ond one onei1249 Oneida #> 41835 45A-1 sup spp supy1237 Supyire #> 41839 45A-1 kew kjs kewa1250 Kewa #> 41849 45A-1 apu apu apur1254 Apurinã #> 41851 45A-1 kse ses koyr1242 Koyraboro Senni #> 41861 45A-1 mrt vma mart1255 Martuthunira #> 41867 45A-1 kio kio kiow1266 Kiowa #> 41936 45A-3 tuk khc tuka1247 Tukang Besi #> 41942 45A-3 hin hin hind1269 Hindi #> 41948 45A-4 kor kor kore1280 Korean #> 41952 46A-1 mar mrc mari1440 Maricopa #> 41987 46A-1 koa cku koas1236 Koasati #> 42061 46A-1 kor kor kore1280 Korean #> 42075 46A-1 mrt vma mart1255 Martuthunira #> 42094 46A-1 tiw tiw tiwi1244 Tiwi #> 42107 46A-1 wic wic wich1260 Wichita #> 42126 46A-1 kio kio kiow1266 Kiowa #> 42150 46A-2 orh hae east2652 Oromo (Harar) #> 42172 46A-2 hau hau haus1257 Hausa #> 42217 46A-2 kse ses koyr1242 Koyraboro Senni #> 42231 46A-3 hin hin hind1269 Hindi #> 42232 46A-3 abk abk abkh1244 Abkhaz #> 42258 46A-4 prh myp pira1253 Pirahã #> 42284 47A-1 mar mrc mari1440 Maricopa #> 42313 47A-1 kor kor kore1280 Korean #> 42337 47A-1 tiw tiw tiwi1244 Tiwi #> 42343 47A-1 ala amp alam1246 Alamblak #> 42345 47A-1 hin hin hind1269 Hindi #> 42358 47A-1 cha cha cham1312 Chamorro #> 42368 47A-1 tuk khc tuka1247 Tukang Besi #> 42371 47A-2 ond one onei1249 Oneida #> 42372 47A-2 orh hae east2652 Oromo (Harar) #> 42373 47A-2 wic wic wich1260 Wichita #> 42383 47A-2 abk abk abkh1244 Abkhaz #> 42392 47A-2 prh myp pira1253 Pirahã #> 42408 47A-2 apu apu apur1254 Apurinã #> 42414 47A-2 sup spp supy1237 Supyire #> 42415 47A-2 koa cku koas1236 Koasati #> 42422 47A-2 kio kio kiow1266 Kiowa #> 42434 47A-2 kse ses koyr1242 Koyraboro Senni #> 42452 48A-1 mar mrc mari1440 Maricopa #> 42455 48A-1 ond one onei1249 Oneida #> 42466 48A-1 kio kio kiow1266 Kiowa #> 42471 48A-1 apu apu apur1254 Apurinã #> 42487 48A-1 mrt vma mart1255 Martuthunira #> 42496 48A-1 wic wic wich1260 Wichita #> 42531 48A-2 kew kjs kewa1250 Kewa #> 42548 48A-2 kor kor kore1280 Korean #> 42559 48A-2 hin hin hind1269 Hindi #> 42561 48A-2 tiw tiw tiwi1244 Tiwi #> 42582 48A-2 ala amp alam1246 Alamblak #> 42624 48A-2 sup spp supy1237 Supyire #> 42629 48A-2 kse ses koyr1242 Koyraboro Senni #> 42641 48A-2 tuk khc tuka1247 Tukang Besi #> 42678 48A-2 orh hae east2652 Oromo (Harar) #> 42709 48A-2 prh myp pira1253 Pirahã #> 42732 48A-3 hau hau haus1257 Hausa #> 42734 48A-3 koa cku koas1236 Koasati #> 42756 48A-3 cha cha cham1312 Chamorro #> 42808 48A-4 abk abk abkh1244 Abkhaz #> 42822 49A-1 tuk khc tuka1247 Tukang Besi #> 42846 49A-1 cha cha cham1312 Chamorro #> 42880 49A-1 kse ses koyr1242 Koyraboro Senni #> 42886 49A-1 tiw tiw tiwi1244 Tiwi #> 42914 49A-1 hau hau haus1257 Hausa #> 42917 49A-1 ond one onei1249 Oneida #> 42944 49A-2 abk abk abkh1244 Abkhaz #> 42975 49A-6 orh hae east2652 Oromo (Harar) #> 42985 49A-6 koa cku koas1236 Koasati #> 42987 49A-6 mar mrc mari1440 Maricopa #> 42996 49A-6 kor kor kore1280 Korean #> 43002 49A-6 kew kjs kewa1250 Kewa #> 43021 49A-7 ala amp alam1246 Alamblak #> 43050 49A-8 mrt vma mart1255 Martuthunira #> 43059 49A-9 wic wic wich1260 Wichita #> 43060 49A-9 kio kio kiow1266 Kiowa #> 43063 49A-9 prh myp pira1253 Pirahã #> 43074 49A-9 apu apu apur1254 Apurinã #> 43081 49A-9 sup spp supy1237 Supyire #> 43115 5A-1 mrt vma mart1255 Martuthunira #> 43117 5A-1 wic wic wich1260 Wichita #> 43142 5A-1 prh myp pira1253 Pirahã #> 43146 5A-1 mar mrc mari1440 Maricopa #> 43157 5A-1 tuk khc tuka1247 Tukang Besi #> 43232 5A-1 kor kor kore1280 Korean #> 43246 5A-1 ond one onei1249 Oneida #> 43257 5A-1 tiw tiw tiwi1244 Tiwi #> 43262 5A-1 koa cku koas1236 Koasati #> 43277 5A-1 apu apu apur1254 Apurinã #> 43323 5A-1 kew kjs kewa1250 Kewa #> 43327 5A-2 cha cha cham1312 Chamorro #> 43337 5A-2 ala amp alam1246 Alamblak #> 43352 5A-2 kio kio kiow1266 Kiowa #> 43369 5A-2 abk abk abkh1244 Abkhaz #> 43553 5A-2 hin hin hind1269 Hindi #> 43580 5A-3 orh hae east2652 Oromo (Harar) #> 43588 5A-3 hau hau haus1257 Hausa #> 43592 5A-3 kse ses koyr1242 Koyraboro Senni #> 43638 5A-4 sup spp supy1237 Supyire #> 43651 50A-1 hau hau haus1257 Hausa #> 43658 50A-1 tuk khc tuka1247 Tukang Besi #> 43682 50A-1 cha cha cham1312 Chamorro #> 43687 50A-1 tiw tiw tiwi1244 Tiwi #> 43688 50A-1 ond one onei1249 Oneida #> 43733 50A-2 kio kio kiow1266 Kiowa #> 43734 50A-2 wic wic wich1260 Wichita #> 43738 50A-2 abk abk abkh1244 Abkhaz #> 43739 50A-2 sup spp supy1237 Supyire #> 43760 50A-2 kew kjs kewa1250 Kewa #> 43761 50A-2 apu apu apur1254 Apurinã #> 43762 50A-2 mar mrc mari1440 Maricopa #> 43781 50A-2 ala amp alam1246 Alamblak #> 43797 50A-2 prh myp pira1253 Pirahã #> 43798 50A-2 koa cku koas1236 Koasati #> 43804 50A-2 kor kor kore1280 Korean #> 43822 50A-3 kse ses koyr1242 Koyraboro Senni #> 43865 50A-4 orh hae east2652 Oromo (Harar) #> 43909 50A-6 mrt vma mart1255 Martuthunira #> 43991 51A-1 kor kor kore1280 Korean #> 44066 51A-1 kio kio kiow1266 Kiowa #> 44108 51A-1 hin hin hind1269 Hindi #> 44120 51A-1 wic wic wich1260 Wichita #> 44158 51A-1 orh hae east2652 Oromo (Harar) #> 44231 51A-1 ond one onei1249 Oneida #> 44248 51A-1 mrt vma mart1255 Martuthunira #> 44356 51A-1 prh myp pira1253 Pirahã #> 44448 51A-6 apu apu apur1254 Apurinã #> 44490 51A-6 mar mrc mari1440 Maricopa #> 44506 51A-6 koa cku koas1236 Koasati #> 44513 51A-6 ala amp alam1246 Alamblak #> 44534 51A-6 kew kjs kewa1250 Kewa #> 44645 51A-9 abk abk abkh1244 Abkhaz #> 44797 51A-9 sup spp supy1237 Supyire #> 44822 51A-9 hau hau haus1257 Hausa #> 44845 51A-9 tuk khc tuka1247 Tukang Besi #> 44851 51A-9 tiw tiw tiwi1244 Tiwi #> 44928 51A-9 kse ses koyr1242 Koyraboro Senni #> 44969 52A-1 hau hau haus1257 Hausa #> 45048 52A-2 kor kor kore1280 Korean #> 45111 52A-2 ala amp alam1246 Alamblak #> 45125 52A-2 mrt vma mart1255 Martuthunira #> 45135 52A-2 koa cku koas1236 Koasati #> 45153 52A-2 hin hin hind1269 Hindi #> 45160 52A-2 abk abk abkh1244 Abkhaz #> 45175 52A-2 prh myp pira1253 Pirahã #> 45227 52A-2 orh hae east2652 Oromo (Harar) #> 45246 52A-3 sup spp supy1237 Supyire #> 45272 53A-1 mrt vma mart1255 Martuthunira #> 45279 53A-1 tiw tiw tiwi1244 Tiwi #> 45291 53A-1 apu apu apur1254 Apurinã #> 45302 53A-3 tuk khc tuka1247 Tukang Besi #> 45328 53A-4 kor kor kore1280 Korean #> 45371 53A-5 abk abk abkh1244 Abkhaz #> 45387 53A-5 kse ses koyr1242 Koyraboro Senni #> 45416 53A-6 sup spp supy1237 Supyire #> 45431 53A-6 hin hin hind1269 Hindi #> 45432 53A-6 ala amp alam1246 Alamblak #> 45445 53A-6 cha cha cham1312 Chamorro #> 45479 53A-6 hau hau haus1257 Hausa #> 45491 53A-6 koa cku koas1236 Koasati #> 45506 53A-6 orh hae east2652 Oromo (Harar) #> 45578 53A-8 kew kjs kewa1250 Kewa #> 45592 54A-1 mrt vma mart1255 Martuthunira #> 45604 54A-1 tuk khc tuka1247 Tukang Besi #> 45664 54A-2 sup spp supy1237 Supyire #> 45695 54A-2 hin hin hind1269 Hindi #> 45713 54A-2 hau hau haus1257 Hausa #> 45760 54A-4 mar mrc mari1440 Maricopa #> 45774 54A-4 tiw tiw tiwi1244 Tiwi #> 45781 54A-4 kor kor kore1280 Korean #> 45819 54A-7 abk abk abkh1244 Abkhaz #> 45828 54A-7 cha cha cham1312 Chamorro #> 45846 55A-1 sup spp supy1237 Supyire #> 45862 55A-1 hau hau haus1257 Hausa #> 45868 55A-1 hin hin hind1269 Hindi #> 45917 55A-1 apu apu apur1254 Apurinã #> 45928 55A-1 tiw tiw tiwi1244 Tiwi #> 45943 55A-1 mrt vma mart1255 Martuthunira #> 45963 55A-1 orh hae east2652 Oromo (Harar) #> 45971 55A-1 prh myp pira1253 Pirahã #> 45974 55A-1 mar mrc mari1440 Maricopa #> 46005 55A-1 cha cha cham1312 Chamorro #> 46052 55A-1 kew kjs kewa1250 Kewa #> 46063 55A-1 ala amp alam1246 Alamblak #> 46078 55A-1 kio kio kiow1266 Kiowa #> 46091 55A-1 abk abk abkh1244 Abkhaz #> 46144 55A-2 tuk khc tuka1247 Tukang Besi #> 46233 55A-3 kor kor kore1280 Korean #> 46249 56A-1 mar mrc mari1440 Maricopa #> 46259 56A-1 tiw tiw tiwi1244 Tiwi #> 46269 56A-1 tuk khc tuka1247 Tukang Besi #> 46293 56A-2 sup spp supy1237 Supyire #> 46317 56A-3 hin hin hind1269 Hindi #> 46356 57A-1 wic wic wich1260 Wichita #> 46369 57A-1 abk abk abkh1244 Abkhaz #> 46373 57A-1 kio kio kiow1266 Kiowa #> 46408 57A-1 mar mrc mari1440 Maricopa #> 46498 57A-1 ond one onei1249 Oneida #> 46512 57A-1 apu apu apur1254 Apurinã #> 46602 57A-1 koa cku koas1236 Koasati #> 46691 57A-2 cha cha cham1312 Chamorro #> 46708 57A-2 mrt vma mart1255 Martuthunira #> 46833 57A-2 hau hau haus1257 Hausa #> 46995 57A-4 kew kjs kewa1250 Kewa #> 47015 57A-4 kse ses koyr1242 Koyraboro Senni #> 47024 57A-4 sup spp supy1237 Supyire #> 47119 57A-4 ala amp alam1246 Alamblak #> 47142 57A-4 tuk khc tuka1247 Tukang Besi #> 47159 57A-4 tiw tiw tiwi1244 Tiwi #> 47214 57A-4 orh hae east2652 Oromo (Harar) #> 47283 58A-1 tiw tiw tiwi1244 Tiwi #> 47288 58A-1 koa cku koas1236 Koasati #> 47306 58A-2 ond one onei1249 Oneida #> 47342 58A-2 orh hae east2652 Oromo (Harar) #> 47380 58A-2 prh myp pira1253 Pirahã #> 47384 58A-2 cha cha cham1312 Chamorro #> 47387 58A-2 kew kjs kewa1250 Kewa #> 47391 58A-2 apu apu apur1254 Apurinã #> 47404 58A-2 sup spp supy1237 Supyire #> 47408 58A-2 hau hau haus1257 Hausa #> 47416 58A-2 wic wic wich1260 Wichita #> 47421 58A-2 hin hin hind1269 Hindi #> 47427 58A-2 mar mrc mari1440 Maricopa #> 47436 58A-2 ala amp alam1246 Alamblak #> 47451 58A-2 kor kor kore1280 Korean #> 47459 58A-2 mrt vma mart1255 Martuthunira #> 47469 58A-2 kio kio kiow1266 Kiowa #> 47478 58A-2 abk abk abkh1244 Abkhaz #> 47495 58A-2 tuk khc tuka1247 Tukang Besi #> 47513 58B-1 orh hae east2652 Oromo (Harar) #> 47517 58B-1 hau hau haus1257 Hausa #> 47547 58B-1 prh myp pira1253 Pirahã #> 47548 58B-1 ala amp alam1246 Alamblak #> 47586 58B-1 abk abk abkh1244 Abkhaz #> 47595 58B-1 sup spp supy1237 Supyire #> 47641 58B-1 apu apu apur1254 Apurinã #> 47647 58B-1 ond one onei1249 Oneida #> 47651 58B-1 koa cku koas1236 Koasati #> 47661 58B-1 hin hin hind1269 Hindi #> 47663 58B-1 wic wic wich1260 Wichita #> 47680 58B-1 kio kio kiow1266 Kiowa #> 47683 58B-1 tuk khc tuka1247 Tukang Besi #> 47686 58B-1 mrt vma mart1255 Martuthunira #> 47689 58B-1 kew kjs kewa1250 Kewa #> 47698 58B-1 mar mrc mari1440 Maricopa #> 47702 58B-1 tiw tiw tiwi1244 Tiwi #> 47722 58B-1 kor kor kore1280 Korean #> 47737 58B-3 cha cha cham1312 Chamorro #> 47752 59A-1 hin hin hind1269 Hindi #> 47754 59A-1 kor kor kore1280 Korean #> 47760 59A-1 ala amp alam1246 Alamblak #> 47770 59A-1 cha cha cham1312 Chamorro #> 47776 59A-1 ond one onei1249 Oneida #> 47785 59A-1 apu apu apur1254 Apurinã #> 47793 59A-1 wic wic wich1260 Wichita #> 47819 59A-1 hau hau haus1257 Hausa #> 47826 59A-1 kew kjs kewa1250 Kewa #> 47832 59A-1 abk abk abkh1244 Abkhaz #> 47863 59A-1 sup spp supy1237 Supyire #> 47864 59A-1 prh myp pira1253 Pirahã #> 47887 59A-2 koa cku koas1236 Koasati #> 47902 59A-2 tiw tiw tiwi1244 Tiwi #> 47933 59A-2 mrt vma mart1255 Martuthunira #> 47937 59A-2 kio kio kiow1266 Kiowa #> 47938 59A-2 orh hae east2652 Oromo (Harar) #> 47940 59A-2 tuk khc tuka1247 Tukang Besi #> 47968 59A-3 mar mrc mari1440 Maricopa #> 47990 6A-1 wic wic wich1260 Wichita #> 48060 6A-1 orh hae east2652 Oromo (Harar) #> 48077 6A-1 kio kio kiow1266 Kiowa #> 48093 6A-1 mrt vma mart1255 Martuthunira #> 48109 6A-1 hin hin hind1269 Hindi #> 48144 6A-1 tiw tiw tiwi1244 Tiwi #> 48154 6A-1 cha cha cham1312 Chamorro #> 48160 6A-1 kse ses koyr1242 Koyraboro Senni #> 48191 6A-1 ala amp alam1246 Alamblak #> 48193 6A-1 tuk khc tuka1247 Tukang Besi #> 48232 6A-1 prh myp pira1253 Pirahã #> 48278 6A-1 apu apu apur1254 Apurinã #> 48322 6A-1 ond one onei1249 Oneida #> 48342 6A-1 kor kor kore1280 Korean #> 48354 6A-1 sup spp supy1237 Supyire #> 48357 6A-1 koa cku koas1236 Koasati #> 48369 6A-1 hau hau haus1257 Hausa #> 48449 6A-1 kew kjs kewa1250 Kewa #> 48459 6A-2 abk abk abkh1244 Abkhaz #> 48468 6A-2 mar mrc mari1440 Maricopa #> 48593 60A-4 mrt vma mart1255 Martuthunira #> 48603 60A-4 mar mrc mari1440 Maricopa #> 48624 60A-6 tiw tiw tiwi1244 Tiwi #> 48632 60A-6 abk abk abkh1244 Abkhaz #> 48644 60A-6 tuk khc tuka1247 Tukang Besi #> 48658 60A-6 kor kor kore1280 Korean #> 48664 60A-6 cha cha cham1312 Chamorro #> 48671 60A-6 hin hin hind1269 Hindi #> 48677 60A-6 sup spp supy1237 Supyire #> 48702 61A-2 sup spp supy1237 Supyire #> 48706 61A-2 abk abk abkh1244 Abkhaz #> 48728 61A-2 tiw tiw tiwi1244 Tiwi #> 48730 61A-2 cha cha cham1312 Chamorro #> 48733 61A-2 tuk khc tuka1247 Tukang Besi #> 48746 61A-2 mar mrc mari1440 Maricopa #> 48748 61A-2 mrt vma mart1255 Martuthunira #> 48805 61A-6 hin hin hind1269 Hindi #> 48806 61A-6 kor kor kore1280 Korean #> 48817 62A-1 kor kor kore1280 Korean #> 48822 62A-1 apu apu apur1254 Apurinã #> 48836 62A-1 prh myp pira1253 Pirahã #> 48842 62A-2 orh hae east2652 Oromo (Harar) #> 48852 62A-2 mar mrc mari1440 Maricopa #> 48853 62A-2 hin hin hind1269 Hindi #> 48879 62A-3 abk abk abkh1244 Abkhaz #> 48894 62A-4 tuk khc tuka1247 Tukang Besi #> 48900 62A-5 cha cha cham1312 Chamorro #> 48907 62A-6 sup spp supy1237 Supyire #> 48917 62A-7 hau hau haus1257 Hausa #> 48923 62A-7 kio kio kiow1266 Kiowa #> 48938 62A-7 kse ses koyr1242 Koyraboro Senni #> 48945 62A-8 ala amp alam1246 Alamblak #> 48947 62A-8 ond one onei1249 Oneida #> 48974 62A-8 wic wic wich1260 Wichita #> 48975 62A-8 mrt vma mart1255 Martuthunira #> 48991 63A-1 abk abk abkh1244 Abkhaz #> 49003 63A-1 hin hin hind1269 Hindi #> 49013 63A-1 tiw tiw tiwi1244 Tiwi #> 49021 63A-1 orh hae east2652 Oromo (Harar) #> 49058 63A-1 kio kio kiow1266 Kiowa #> 49088 63A-1 kor kor kore1280 Korean #> 49106 63A-1 ala amp alam1246 Alamblak #> 49113 63A-2 cha cha cham1312 Chamorro #> 49166 63A-2 hau hau haus1257 Hausa #> 49277 64A-1 hin hin hind1269 Hindi #> 49301 64A-1 cha cha cham1312 Chamorro #> 49303 64A-1 tuk khc tuka1247 Tukang Besi #> 49304 64A-1 prh myp pira1253 Pirahã #> 49338 64A-1 abk abk abkh1244 Abkhaz #> 49407 64A-2 orh hae east2652 Oromo (Harar) #> 49408 64A-2 ala amp alam1246 Alamblak #> 49410 64A-2 kse ses koyr1242 Koyraboro Senni #> 49416 64A-2 kor kor kore1280 Korean #> 49422 64A-2 mar mrc mari1440 Maricopa #> 49426 64A-2 hau hau haus1257 Hausa #> 49467 64A-2 sup spp supy1237 Supyire #> 49496 64A-2 koa cku koas1236 Koasati #> 49508 64A-3 tiw tiw tiwi1244 Tiwi #> 49514 64A-3 apu apu apur1254 Apurinã #> 49528 65A-1 ond one onei1249 Oneida #> 49530 65A-1 wic wic wich1260 Wichita #> 49532 65A-1 orh hae east2652 Oromo (Harar) #> 49543 65A-1 kor kor kore1280 Korean #> 49557 65A-1 kio kio kiow1266 Kiowa #> 49561 65A-1 sup spp supy1237 Supyire #> 49564 65A-1 prh myp pira1253 Pirahã #> 49581 65A-1 cha cha cham1312 Chamorro #> 49591 65A-1 abk abk abkh1244 Abkhaz #> 49594 65A-1 hin hin hind1269 Hindi #> 49600 65A-1 ala amp alam1246 Alamblak #> 49608 65A-1 kse ses koyr1242 Koyraboro Senni #> 49625 65A-2 tuk khc tuka1247 Tukang Besi #> 49626 65A-2 kew kjs kewa1250 Kewa #> 49634 65A-2 mar mrc mari1440 Maricopa #> 49668 65A-2 tiw tiw tiwi1244 Tiwi #> 49689 65A-2 koa cku koas1236 Koasati #> 49704 65A-2 hau hau haus1257 Hausa #> 49728 65A-2 apu apu apur1254 Apurinã #> 49732 65A-2 mrt vma mart1255 Martuthunira #> 49741 66A-1 mrt vma mart1255 Martuthunira #> 49750 66A-1 kor kor kore1280 Korean #> 49755 66A-1 hin hin hind1269 Hindi #> 49759 66A-1 abk abk abkh1244 Abkhaz #> 49792 66A-1 tiw tiw tiwi1244 Tiwi #> 49830 66A-1 orh hae east2652 Oromo (Harar) #> 49833 66A-2 kew kjs kewa1250 Kewa #> 49836 66A-2 sup spp supy1237 Supyire #> 49856 66A-2 koa cku koas1236 Koasati #> 49864 66A-2 ala amp alam1246 Alamblak #> 49882 66A-4 hau hau haus1257 Hausa #> 49913 66A-4 tuk khc tuka1247 Tukang Besi #> 49919 66A-4 kse ses koyr1242 Koyraboro Senni #> 49923 66A-4 cha cha cham1312 Chamorro #> 49927 66A-4 ond one onei1249 Oneida #> 49934 66A-4 mar mrc mari1440 Maricopa #> 49941 66A-4 wic wic wich1260 Wichita #> 49943 66A-4 apu apu apur1254 Apurinã #> 49952 66A-4 kio kio kiow1266 Kiowa #> 49954 66A-4 prh myp pira1253 Pirahã #> 49969 67A-1 ala amp alam1246 Alamblak #> 50008 67A-1 mrt vma mart1255 Martuthunira #> 50009 67A-1 kio kio kiow1266 Kiowa #> 50011 67A-1 hin hin hind1269 Hindi #> 50015 67A-1 mar mrc mari1440 Maricopa #> 50025 67A-1 tuk khc tuka1247 Tukang Besi #> 50026 67A-1 koa cku koas1236 Koasati #> 50030 67A-1 apu apu apur1254 Apurinã #> 50041 67A-1 abk abk abkh1244 Abkhaz #> 50042 67A-1 tiw tiw tiwi1244 Tiwi #> 50051 67A-1 ond one onei1249 Oneida #> 50062 67A-1 wic wic wich1260 Wichita #> 50068 67A-1 kew kjs kewa1250 Kewa #> 50075 67A-2 kse ses koyr1242 Koyraboro Senni #> 50076 67A-2 cha cha cham1312 Chamorro #> 50078 67A-2 orh hae east2652 Oromo (Harar) #> 50082 67A-2 prh myp pira1253 Pirahã #> 50097 67A-2 hau hau haus1257 Hausa #> 50100 67A-2 sup spp supy1237 Supyire #> 50160 67A-2 kor kor kore1280 Korean #> 50221 68A-3 abk abk abkh1244 Abkhaz #> 50250 68A-3 hin hin hind1269 Hindi #> 50268 68A-3 kew kjs kewa1250 Kewa #> 50271 68A-3 orh hae east2652 Oromo (Harar) #> 50287 68A-3 sup spp supy1237 Supyire #> 50292 68A-4 tiw tiw tiwi1244 Tiwi #> 50297 68A-4 mrt vma mart1255 Martuthunira #> 50315 68A-4 apu apu apur1254 Apurinã #> 50321 68A-4 kor kor kore1280 Korean #> 50327 68A-4 kio kio kiow1266 Kiowa #> 50343 68A-4 ala amp alam1246 Alamblak #> 50347 68A-4 cha cha cham1312 Chamorro #> 50348 68A-4 koa cku koas1236 Koasati #> 50349 68A-4 hau hau haus1257 Hausa #> 50362 68A-4 tuk khc tuka1247 Tukang Besi #> 50383 68A-4 ond one onei1249 Oneida #> 50386 68A-4 prh myp pira1253 Pirahã #> 50392 68A-4 wic wic wich1260 Wichita #> 50393 68A-4 kse ses koyr1242 Koyraboro Senni #> 50396 68A-4 mar mrc mari1440 Maricopa #> 50541 69A-1 tuk khc tuka1247 Tukang Besi #> 50555 69A-1 tiw tiw tiwi1244 Tiwi #> 50559 69A-2 orh hae east2652 Oromo (Harar) #> 50609 69A-2 mrt vma mart1255 Martuthunira #> 50682 69A-2 hin hin hind1269 Hindi #> 50705 69A-2 abk abk abkh1244 Abkhaz #> 50738 69A-2 kor kor kore1280 Korean #> 50755 69A-2 kio kio kiow1266 Kiowa #> 50794 69A-2 kew kjs kewa1250 Kewa #> 50908 69A-2 ala amp alam1246 Alamblak #> 50915 69A-2 prh myp pira1253 Pirahã #> 51004 69A-2 mar mrc mari1440 Maricopa #> 51024 69A-2 apu apu apur1254 Apurinã #> 51285 69A-4 wic wic wich1260 Wichita #> 51312 69A-4 ond one onei1249 Oneida #> 51371 69A-4 sup spp supy1237 Supyire #> 51421 69A-5 kse ses koyr1242 Koyraboro Senni #> 51453 69A-5 hau hau haus1257 Hausa #> 51572 7A-1 koa cku koas1236 Koasati #> 51630 7A-1 mrt vma mart1255 Martuthunira #> 51671 7A-1 sup spp supy1237 Supyire #> 51673 7A-1 kew kjs kewa1250 Kewa #> 51708 7A-1 ala amp alam1246 Alamblak #> 51713 7A-1 tiw tiw tiwi1244 Tiwi #> 51741 7A-1 mar mrc mari1440 Maricopa #> 51753 7A-1 cha cha cham1312 Chamorro #> 51770 7A-1 ond one onei1249 Oneida #> 51779 7A-1 hin hin hind1269 Hindi #> 51829 7A-1 prh myp pira1253 Pirahã #> 51830 7A-1 apu apu apur1254 Apurinã #> 51934 7A-1 kse ses koyr1242 Koyraboro Senni #> 51962 7A-2 kor kor kore1280 Korean #> 51976 7A-2 abk abk abkh1244 Abkhaz #> 51979 7A-2 kio kio kiow1266 Kiowa #> 52018 7A-3 tuk khc tuka1247 Tukang Besi #> 52063 7A-5 orh hae east2652 Oromo (Harar) #> 52072 7A-5 hau hau haus1257 Hausa #> 52089 7A-6 wic wic wich1260 Wichita #> 52106 70A-1 orh hae east2652 Oromo (Harar) #> 52116 70A-1 kse ses koyr1242 Koyraboro Senni #> 52193 70A-1 ala amp alam1246 Alamblak #> 52227 70A-1 mar mrc mari1440 Maricopa #> 52231 70A-1 hin hin hind1269 Hindi #> 52264 70A-1 kew kjs kewa1250 Kewa #> 52296 70A-1 abk abk abkh1244 Abkhaz #> 52313 70A-1 wic wic wich1260 Wichita #> 52318 70A-1 koa cku koas1236 Koasati #> 52320 70A-1 tiw tiw tiwi1244 Tiwi #> 52360 70A-1 kio kio kiow1266 Kiowa #> 52399 70A-2 tuk khc tuka1247 Tukang Besi #> 52407 70A-2 hau hau haus1257 Hausa #> 52427 70A-2 sup spp supy1237 Supyire #> 52437 70A-3 apu apu apur1254 Apurinã #> 52479 70A-4 mrt vma mart1255 Martuthunira #> 52490 70A-4 kor kor kore1280 Korean #> 52516 70A-4 ond one onei1249 Oneida #> 52639 70A-5 prh myp pira1253 Pirahã #> 52682 71A-1 mar mrc mari1440 Maricopa #> 52691 71A-1 wic wic wich1260 Wichita #> 52696 71A-1 kew kjs kewa1250 Kewa #> 52764 71A-2 sup spp supy1237 Supyire #> 52852 71A-2 hin hin hind1269 Hindi #> 52855 71A-2 kor kor kore1280 Korean #> 52893 71A-2 cha cha cham1312 Chamorro #> 52898 71A-2 orh hae east2652 Oromo (Harar) #> 52910 71A-2 ond one onei1249 Oneida #> 52954 71A-3 mrt vma mart1255 Martuthunira #> 52979 71A-3 abk abk abkh1244 Abkhaz #> 53009 71A-4 hau hau haus1257 Hausa #> 53010 71A-4 kse ses koyr1242 Koyraboro Senni #> 53034 71A-4 koa cku koas1236 Koasati #> 53044 71A-4 tiw tiw tiwi1244 Tiwi #> 53055 71A-4 tuk khc tuka1247 Tukang Besi #> 53085 71A-4 kio kio kiow1266 Kiowa #> 53115 71A-4 ala amp alam1246 Alamblak #> 53175 72A-1 koa cku koas1236 Koasati #> 53190 72A-1 prh myp pira1253 Pirahã #> 53198 72A-1 ala amp alam1246 Alamblak #> 53240 72A-1 ond one onei1249 Oneida #> 53284 72A-2 sup spp supy1237 Supyire #> 53298 72A-3 kse ses koyr1242 Koyraboro Senni #> 53302 72A-3 hau hau haus1257 Hausa #> 53322 72A-4 hin hin hind1269 Hindi #> 53329 72A-4 apu apu apur1254 Apurinã #> 53335 72A-4 kio kio kiow1266 Kiowa #> 53346 72A-4 abk abk abkh1244 Abkhaz #> 53353 72A-4 mrt vma mart1255 Martuthunira #> 53381 72A-4 tiw tiw tiwi1244 Tiwi #> 53382 72A-4 orh hae east2652 Oromo (Harar) #> 53401 72A-4 tuk khc tuka1247 Tukang Besi #> 53429 72A-4 mar mrc mari1440 Maricopa #> 53437 72A-4 kew kjs kewa1250 Kewa #> 53471 72A-4 cha cha cham1312 Chamorro #> 53474 72A-4 kor kor kore1280 Korean #> 53527 73A-1 wic wic wich1260 Wichita #> 53529 73A-1 abk abk abkh1244 Abkhaz #> 53545 73A-1 mar mrc mari1440 Maricopa #> 53571 73A-2 sup spp supy1237 Supyire #> 53572 73A-2 mrt vma mart1255 Martuthunira #> 53593 73A-2 koa cku koas1236 Koasati #> 53596 73A-2 hin hin hind1269 Hindi #> 53599 73A-2 kew kjs kewa1250 Kewa #> 53605 73A-2 prh myp pira1253 Pirahã #> 53628 73A-2 hau hau haus1257 Hausa #> 53630 73A-2 kse ses koyr1242 Koyraboro Senni #> 53664 73A-2 apu apu apur1254 Apurinã #> 53667 73A-2 ond one onei1249 Oneida #> 53693 73A-2 kor kor kore1280 Korean #> 53704 73A-2 orh hae east2652 Oromo (Harar) #> 53706 73A-2 cha cha cham1312 Chamorro #> 53732 73A-2 tuk khc tuka1247 Tukang Besi #> 53791 73A-2 tiw tiw tiwi1244 Tiwi #> 53800 73A-2 ala amp alam1246 Alamblak #> 53816 73A-2 kio kio kiow1266 Kiowa #> 53860 74A-1 koa cku koas1236 Koasati #> 53886 74A-1 cha cha cham1312 Chamorro #> 53900 74A-1 kio kio kiow1266 Kiowa #> 53914 74A-2 hin hin hind1269 Hindi #> 53928 74A-2 hau hau haus1257 Hausa #> 53938 74A-2 kse ses koyr1242 Koyraboro Senni #> 53959 74A-2 abk abk abkh1244 Abkhaz #> 53963 74A-2 tuk khc tuka1247 Tukang Besi #> 53986 74A-2 apu apu apur1254 Apurinã #> 53991 74A-2 orh hae east2652 Oromo (Harar) #> 53996 74A-2 ond one onei1249 Oneida #> 54017 74A-2 sup spp supy1237 Supyire #> 54050 74A-2 wic wic wich1260 Wichita #> 54065 74A-3 kor kor kore1280 Korean #> 54082 75A-1 hau hau haus1257 Hausa #> 54084 75A-1 tuk khc tuka1247 Tukang Besi #> 54094 75A-1 abk abk abkh1244 Abkhaz #> 54104 75A-1 sup spp supy1237 Supyire #> 54106 75A-1 hin hin hind1269 Hindi #> 54117 75A-1 orh hae east2652 Oromo (Harar) #> 54149 75A-2 tiw tiw tiwi1244 Tiwi #> 54156 75A-2 prh myp pira1253 Pirahã #> 54196 75A-2 apu apu apur1254 Apurinã #> 54201 75A-2 ond one onei1249 Oneida #> 54205 75A-2 kio kio kiow1266 Kiowa #> 54207 75A-2 koa cku koas1236 Koasati #> 54219 75A-2 mar mrc mari1440 Maricopa #> 54246 75A-3 cha cha cham1312 Chamorro #> 54297 75A-3 kor kor kore1280 Korean #> 54302 75A-3 kew kjs kewa1250 Kewa #> 54311 75A-3 mrt vma mart1255 Martuthunira #> 54359 76A-2 kor kor kore1280 Korean #> 54367 76A-2 abk abk abkh1244 Abkhaz #> 54369 76A-2 koa cku koas1236 Koasati #> 54383 76A-2 cha cha cham1312 Chamorro #> 54387 76A-2 ond one onei1249 Oneida #> 54390 76A-2 hau hau haus1257 Hausa #> 54391 76A-2 hin hin hind1269 Hindi #> 54398 76A-2 kse ses koyr1242 Koyraboro Senni #> 54407 76A-2 orh hae east2652 Oromo (Harar) #> 54408 76A-2 kio kio kiow1266 Kiowa #> 54422 76A-3 tuk khc tuka1247 Tukang Besi #> 54473 76A-3 sup spp supy1237 Supyire #> 54520 77A-1 orh hae east2652 Oromo (Harar) #> 54567 77A-1 hau hau haus1257 Hausa #> 54581 77A-1 tiw tiw tiwi1244 Tiwi #> 54611 77A-1 sup spp supy1237 Supyire #> 54625 77A-1 tuk khc tuka1247 Tukang Besi #> 54653 77A-1 ala amp alam1246 Alamblak #> 54684 77A-1 kse ses koyr1242 Koyraboro Senni #> 54691 77A-1 hin hin hind1269 Hindi #> 54703 77A-2 cha cha cham1312 Chamorro #> 54717 77A-2 kio kio kiow1266 Kiowa #> 54727 77A-2 kor kor kore1280 Korean #> 54759 77A-2 abk abk abkh1244 Abkhaz #> 54771 77A-2 ond one onei1249 Oneida #> 54775 77A-2 mrt vma mart1255 Martuthunira #> 54790 77A-2 apu apu apur1254 Apurinã #> 54826 77A-2 wic wic wich1260 Wichita #> 54897 77A-3 kew kjs kewa1250 Kewa #> 54911 77A-3 prh myp pira1253 Pirahã #> 54923 77A-3 mar mrc mari1440 Maricopa #> 54927 77A-3 koa cku koas1236 Koasati #> 54988 78A-1 hau hau haus1257 Hausa #> 55002 78A-1 sup spp supy1237 Supyire #> 55010 78A-1 hin hin hind1269 Hindi #> 55022 78A-1 orh hae east2652 Oromo (Harar) #> 55042 78A-1 kse ses koyr1242 Koyraboro Senni #> 55055 78A-1 tiw tiw tiwi1244 Tiwi #> 55067 78A-1 tuk khc tuka1247 Tukang Besi #> 55078 78A-1 ala amp alam1246 Alamblak #> 55141 78A-2 kew kjs kewa1250 Kewa #> 55143 78A-2 kor kor kore1280 Korean #> 55159 78A-2 wic wic wich1260 Wichita #> 55165 78A-2 mar mrc mari1440 Maricopa #> 55176 78A-2 prh myp pira1253 Pirahã #> 55212 78A-2 koa cku koas1236 Koasati #> 55219 78A-2 kio kio kiow1266 Kiowa #> 55225 78A-2 apu apu apur1254 Apurinã #> 55226 78A-2 abk abk abkh1244 Abkhaz #> 55236 78A-2 mrt vma mart1255 Martuthunira #> 55289 78A-4 cha cha cham1312 Chamorro #> 55306 78A-4 ond one onei1249 Oneida #> 55357 79A-1 tuk khc tuka1247 Tukang Besi #> 55372 79A-1 abk abk abkh1244 Abkhaz #> 55379 79A-1 ala amp alam1246 Alamblak #> 55381 79A-1 orh hae east2652 Oromo (Harar) #> 55382 79A-1 cha cha cham1312 Chamorro #> 55389 79A-1 kew kjs kewa1250 Kewa #> 55394 79A-2 wic wic wich1260 Wichita #> 55397 79A-2 ond one onei1249 Oneida #> 55405 79A-3 sup spp supy1237 Supyire #> 55419 79A-3 hin hin hind1269 Hindi #> 55428 79A-4 kse ses koyr1242 Koyraboro Senni #> 55431 79A-4 koa cku koas1236 Koasati #> 55476 79A-4 apu apu apur1254 Apurinã #> 55494 79A-4 mrt vma mart1255 Martuthunira #> 55503 79A-4 mar mrc mari1440 Maricopa #> 55509 79A-4 hau hau haus1257 Hausa #> 55511 79A-4 kio kio kiow1266 Kiowa #> 55517 79A-4 kor kor kore1280 Korean #> 55519 79A-4 prh myp pira1253 Pirahã #> 55544 79A-4 tiw tiw tiwi1244 Tiwi #> 55575 79B-2 kse ses koyr1242 Koyraboro Senni #> 55580 79B-2 orh hae east2652 Oromo (Harar) #> 55594 79B-5 mar mrc mari1440 Maricopa #> 55603 79B-5 sup spp supy1237 Supyire #> 55604 79B-5 hau hau haus1257 Hausa #> 55610 79B-5 tuk khc tuka1247 Tukang Besi #> 55616 79B-5 kio kio kiow1266 Kiowa #> 55621 79B-5 hin hin hind1269 Hindi #> 55631 79B-5 kew kjs kewa1250 Kewa #> 55641 79B-5 cha cha cham1312 Chamorro #> 55669 79B-5 ala amp alam1246 Alamblak #> 55673 79B-5 apu apu apur1254 Apurinã #> 55683 79B-5 ond one onei1249 Oneida #> 55687 79B-5 wic wic wich1260 Wichita #> 55692 79B-5 kor kor kore1280 Korean #> 55695 79B-5 prh myp pira1253 Pirahã #> 55720 79B-5 koa cku koas1236 Koasati #> 55725 79B-5 tiw tiw tiwi1244 Tiwi #> 55728 79B-5 mrt vma mart1255 Martuthunira #> 55736 79B-5 abk abk abkh1244 Abkhaz #> 55761 8A-1 ala amp alam1246 Alamblak #> 55771 8A-1 apu apu apur1254 Apurinã #> 55784 8A-1 prh myp pira1253 Pirahã #> 55816 8A-1 wic wic wich1260 Wichita #> 55880 8A-2 hin hin hind1269 Hindi #> 55940 8A-2 hau hau haus1257 Hausa #> 56036 8A-2 orh hae east2652 Oromo (Harar) #> 56068 8A-2 tiw tiw tiwi1244 Tiwi #> 56072 8A-2 kse ses koyr1242 Koyraboro Senni #> 56115 8A-2 abk abk abkh1244 Abkhaz #> 56120 8A-2 sup spp supy1237 Supyire #> 56153 8A-2 ond one onei1249 Oneida #> 56156 8A-2 tuk khc tuka1247 Tukang Besi #> 56161 8A-2 mrt vma mart1255 Martuthunira #> 56169 8A-2 cha cha cham1312 Chamorro #> 56185 8A-2 mar mrc mari1440 Maricopa #> 56199 8A-2 kor kor kore1280 Korean #> 56231 8A-3 kew kjs kewa1250 Kewa #> 56279 8A-4 koa cku koas1236 Koasati #> 56301 8A-5 kio kio kiow1266 Kiowa #> 56324 80A-1 kor kor kore1280 Korean #> 56342 80A-1 apu apu apur1254 Apurinã #> 56354 80A-1 kse ses koyr1242 Koyraboro Senni #> 56363 80A-1 hin hin hind1269 Hindi #> 56368 80A-1 hau hau haus1257 Hausa #> 56370 80A-1 ond one onei1249 Oneida #> 56376 80A-1 sup spp supy1237 Supyire #> 56382 80A-1 kew kjs kewa1250 Kewa #> 56384 80A-1 cha cha cham1312 Chamorro #> 56386 80A-1 prh myp pira1253 Pirahã #> 56404 80A-1 abk abk abkh1244 Abkhaz #> 56427 80A-1 tuk khc tuka1247 Tukang Besi #> 56438 80A-1 orh hae east2652 Oromo (Harar) #> 56446 80A-1 mrt vma mart1255 Martuthunira #> 56452 80A-1 ala amp alam1246 Alamblak #> 56457 80A-1 tiw tiw tiwi1244 Tiwi #> 56474 80A-2 kio kio kiow1266 Kiowa #> 56495 80A-4 wic wic wich1260 Wichita #> 56497 80A-4 koa cku koas1236 Koasati #> 56498 80A-4 mar mrc mari1440 Maricopa #> 56531 81A-1 kew kjs kewa1250 Kewa #> 56607 81A-1 mar mrc mari1440 Maricopa #> 56626 81A-1 sup spp supy1237 Supyire #> 56636 81A-1 orh hae east2652 Oromo (Harar) #> 56759 81A-1 abk abk abkh1244 Abkhaz #> 56795 81A-1 kse ses koyr1242 Koyraboro Senni #> 56814 81A-1 prh myp pira1253 Pirahã #> 56834 81A-1 kor kor kore1280 Korean #> 56848 81A-1 ala amp alam1246 Alamblak #> 56923 81A-1 koa cku koas1236 Koasati #> 57038 81A-1 hin hin hind1269 Hindi #> 57054 81A-1 kio kio kiow1266 Kiowa #> 57088 81A-2 hau hau haus1257 Hausa #> 57121 81A-2 tiw tiw tiwi1244 Tiwi #> 57322 81A-2 apu apu apur1254 Apurinã #> 57479 81A-2 mrt vma mart1255 Martuthunira #> 57637 81A-3 cha cha cham1312 Chamorro #> 57655 81A-4 tuk khc tuka1247 Tukang Besi #> 57821 81A-7 ond one onei1249 Oneida #> 57843 81A-7 wic wic wich1260 Wichita #> 57942 81B-5 wic wic wich1260 Wichita #> 57999 82A-1 kse ses koyr1242 Koyraboro Senni #> 58042 82A-1 sup spp supy1237 Supyire #> 58049 82A-1 apu apu apur1254 Apurinã #> 58127 82A-1 ala amp alam1246 Alamblak #> 58178 82A-1 tiw tiw tiwi1244 Tiwi #> 58297 82A-1 kor kor kore1280 Korean #> 58322 82A-1 mar mrc mari1440 Maricopa #> 58342 82A-1 koa cku koas1236 Koasati #> 58350 82A-1 prh myp pira1253 Pirahã #> 58497 82A-1 kio kio kiow1266 Kiowa #> 58723 82A-1 hin hin hind1269 Hindi #> 58741 82A-1 orh hae east2652 Oromo (Harar) #> 58789 82A-1 abk abk abkh1244 Abkhaz #> 58792 82A-1 kew kjs kewa1250 Kewa #> 58910 82A-1 hau hau haus1257 Hausa #> 59061 82A-1 mrt vma mart1255 Martuthunira #> 59160 82A-2 ond one onei1249 Oneida #> 59176 82A-2 cha cha cham1312 Chamorro #> 59219 82A-2 tuk khc tuka1247 Tukang Besi #> 59403 82A-3 wic wic wich1260 Wichita #> 59502 83A-1 kio kio kiow1266 Kiowa #> 59519 83A-1 orh hae east2652 Oromo (Harar) #> 59558 83A-1 kew kjs kewa1250 Kewa #> 59559 83A-1 kor kor kore1280 Korean #> 59744 83A-1 ala amp alam1246 Alamblak #> 59817 83A-1 koa cku koas1236 Koasati #> 59818 83A-1 wic wic wich1260 Wichita #> 59819 83A-1 sup spp supy1237 Supyire #> 59855 83A-1 mar mrc mari1440 Maricopa #> 59921 83A-1 abk abk abkh1244 Abkhaz #> 59955 83A-1 kse ses koyr1242 Koyraboro Senni #> 60008 83A-1 hin hin hind1269 Hindi #> 60094 83A-1 prh myp pira1253 Pirahã #> 60281 83A-2 tiw tiw tiwi1244 Tiwi #> 60339 83A-2 cha cha cham1312 Chamorro #> 60471 83A-2 hau hau haus1257 Hausa #> 60527 83A-2 mrt vma mart1255 Martuthunira #> 60696 83A-2 ond one onei1249 Oneida #> 60733 83A-2 tuk khc tuka1247 Tukang Besi #> 60908 83A-3 apu apu apur1254 Apurinã #> 61120 84A-1 hau hau haus1257 Hausa #> 61144 84A-1 mrt vma mart1255 Martuthunira #> 61148 84A-1 tiw tiw tiwi1244 Tiwi #> 61188 84A-3 abk abk abkh1244 Abkhaz #> 61204 84A-3 prh myp pira1253 Pirahã #> 61213 84A-3 orh hae east2652 Oromo (Harar) #> 61249 84A-5 koa cku koas1236 Koasati #> 61250 84A-5 sup spp supy1237 Supyire #> 61272 84A-5 kse ses koyr1242 Koyraboro Senni #> 61324 84A-6 wic wic wich1260 Wichita #> 61332 84A-6 ond one onei1249 Oneida #> 61360 84A-6 apu apu apur1254 Apurinã #> 61440 84A-6 ala amp alam1246 Alamblak #> 61590 85A-1 mar mrc mari1440 Maricopa #> 61595 85A-1 orh hae east2652 Oromo (Harar) #> 61643 85A-1 koa cku koas1236 Koasati #> 61659 85A-1 ala amp alam1246 Alamblak #> 61693 85A-1 prh myp pira1253 Pirahã #> 61733 85A-1 abk abk abkh1244 Abkhaz #> 61759 85A-1 apu apu apur1254 Apurinã #> 61820 85A-1 kse ses koyr1242 Koyraboro Senni #> 61829 85A-1 kew kjs kewa1250 Kewa #> 61838 85A-1 kor kor kore1280 Korean #> 61946 85A-1 sup spp supy1237 Supyire #> 62022 85A-1 hin hin hind1269 Hindi #> 62186 85A-2 tuk khc tuka1247 Tukang Besi #> 62272 85A-2 hau hau haus1257 Hausa #> 62355 85A-2 cha cha cham1312 Chamorro #> 62422 85A-2 tiw tiw tiwi1244 Tiwi #> 62614 85A-5 ond one onei1249 Oneida #> 62626 85A-5 kio kio kiow1266 Kiowa #> 62634 85A-5 wic wic wich1260 Wichita #> 62637 85A-5 mrt vma mart1255 Martuthunira #> 62697 86A-1 sup spp supy1237 Supyire #> 62724 86A-1 abk abk abkh1244 Abkhaz #> 62725 86A-1 ala amp alam1246 Alamblak #> 62808 86A-1 kio kio kiow1266 Kiowa #> 62826 86A-1 apu apu apur1254 Apurinã #> 62871 86A-1 kse ses koyr1242 Koyraboro Senni #> 62955 86A-1 koa cku koas1236 Koasati #> 62960 86A-1 kor kor kore1280 Korean #> 63034 86A-1 mar mrc mari1440 Maricopa #> 63085 86A-1 kew kjs kewa1250 Kewa #> 63107 86A-1 tiw tiw tiwi1244 Tiwi #> 63188 86A-1 prh myp pira1253 Pirahã #> 63297 86A-1 hin hin hind1269 Hindi #> 63476 86A-2 orh hae east2652 Oromo (Harar) #> 63681 86A-2 hau hau haus1257 Hausa #> 63703 86A-2 cha cha cham1312 Chamorro #> 63738 86A-2 tuk khc tuka1247 Tukang Besi #> 63802 86A-3 ond one onei1249 Oneida #> 63873 86A-3 mrt vma mart1255 Martuthunira #> 63934 87A-1 hin hin hind1269 Hindi #> 64012 87A-1 kor kor kore1280 Korean #> 64052 87A-1 ala amp alam1246 Alamblak #> 64075 87A-1 cha cha cham1312 Chamorro #> 64118 87A-1 tiw tiw tiwi1244 Tiwi #> 64127 87A-1 hau hau haus1257 Hausa #> 64238 87A-1 kew kjs kewa1250 Kewa #> 64321 87A-2 mar mrc mari1440 Maricopa #> 64476 87A-2 tuk khc tuka1247 Tukang Besi #> 64508 87A-2 koa cku koas1236 Koasati #> 64525 87A-2 kse ses koyr1242 Koyraboro Senni #> 64526 87A-2 prh myp pira1253 Pirahã #> 64549 87A-2 orh hae east2652 Oromo (Harar) #> 64855 87A-2 abk abk abkh1244 Abkhaz #> 64969 87A-2 sup spp supy1237 Supyire #> 65045 87A-2 mrt vma mart1255 Martuthunira #> 65134 87A-2 wic wic wich1260 Wichita #> 65135 87A-2 apu apu apur1254 Apurinã #> 65296 88A-1 sup spp supy1237 Supyire #> 65342 88A-1 cha cha cham1312 Chamorro #> 65351 88A-1 kew kjs kewa1250 Kewa #> 65357 88A-1 kor kor kore1280 Korean #> 65401 88A-1 koa cku koas1236 Koasati #> 65422 88A-1 kio kio kiow1266 Kiowa #> 65501 88A-1 abk abk abkh1244 Abkhaz #> 65502 88A-1 ala amp alam1246 Alamblak #> 65506 88A-1 tiw tiw tiwi1244 Tiwi #> 65577 88A-1 hin hin hind1269 Hindi #> 65586 88A-1 mrt vma mart1255 Martuthunira #> 65607 88A-1 wic wic wich1260 Wichita #> 65672 88A-1 ond one onei1249 Oneida #> 65714 88A-1 apu apu apur1254 Apurinã #> 66013 88A-2 mar mrc mari1440 Maricopa #> 66094 88A-2 tuk khc tuka1247 Tukang Besi #> 66142 88A-2 kse ses koyr1242 Koyraboro Senni #> 66321 88A-2 orh hae east2652 Oromo (Harar) #> 66346 88A-2 prh myp pira1253 Pirahã #> 66477 88A-6 hau hau haus1257 Hausa #> 66545 89A-1 cha cha cham1312 Chamorro #> 66552 89A-1 tiw tiw tiwi1244 Tiwi #> 66687 89A-1 apu apu apur1254 Apurinã #> 66700 89A-1 wic wic wich1260 Wichita #> 66740 89A-1 kio kio kiow1266 Kiowa #> 66789 89A-1 kor kor kore1280 Korean #> 66795 89A-1 hin hin hind1269 Hindi #> 66796 89A-1 mrt vma mart1255 Martuthunira #> 66815 89A-1 ala amp alam1246 Alamblak #> 66962 89A-2 mar mrc mari1440 Maricopa #> 67041 89A-2 kse ses koyr1242 Koyraboro Senni #> 67081 89A-2 sup spp supy1237 Supyire #> 67186 89A-2 kew kjs kewa1250 Kewa #> 67201 89A-2 koa cku koas1236 Koasati #> 67238 89A-2 hau hau haus1257 Hausa #> 67250 89A-2 orh hae east2652 Oromo (Harar) #> 67387 89A-2 prh myp pira1253 Pirahã #> 67538 89A-2 tuk khc tuka1247 Tukang Besi #> 67608 89A-3 abk abk abkh1244 Abkhaz #> 67645 9A-1 tiw tiw tiwi1244 Tiwi #> 67672 9A-1 cha cha cham1312 Chamorro #> 67694 9A-1 mrt vma mart1255 Martuthunira #> 67698 9A-1 sup spp supy1237 Supyire #> 67734 9A-1 kse ses koyr1242 Koyraboro Senni #> 67765 9A-1 tuk khc tuka1247 Tukang Besi #> 67849 9A-2 kor kor kore1280 Korean #> 67888 9A-3 mar mrc mari1440 Maricopa #> 67896 9A-3 hin hin hind1269 Hindi #> 67898 9A-3 hau hau haus1257 Hausa #> 67908 9A-3 kew kjs kewa1250 Kewa #> 67920 9A-3 wic wic wich1260 Wichita #> 67935 9A-3 abk abk abkh1244 Abkhaz #> 67963 9A-3 ala amp alam1246 Alamblak #> 67981 9A-3 apu apu apur1254 Apurinã #> 67991 9A-3 ond one onei1249 Oneida #> 68075 9A-3 koa cku koas1236 Koasati #> 68089 9A-3 kio kio kiow1266 Kiowa #> 68093 9A-3 prh myp pira1253 Pirahã #> 68094 9A-3 orh hae east2652 Oromo (Harar) #> 68135 90A-1 cha cha cham1312 Chamorro #> 68200 90A-1 apu apu apur1254 Apurinã #> 68234 90A-1 hau hau haus1257 Hausa #> 68287 90A-1 kse ses koyr1242 Koyraboro Senni #> 68413 90A-1 wic wic wich1260 Wichita #> 68482 90A-1 orh hae east2652 Oromo (Harar) #> 68516 90A-1 tiw tiw tiwi1244 Tiwi #> 68715 90A-2 kor kor kore1280 Korean #> 68742 90A-2 ala amp alam1246 Alamblak #> 68800 90A-2 abk abk abkh1244 Abkhaz #> 68828 90A-3 ond one onei1249 Oneida #> 68834 90A-3 kio kio kiow1266 Kiowa #> 68853 90A-4 hin hin hind1269 Hindi #> 68855 90A-4 sup spp supy1237 Supyire #> 68859 90A-5 mrt vma mart1255 Martuthunira #> 68869 90A-7 tuk khc tuka1247 Tukang Besi #> 68891 90A-7 kew kjs kewa1250 Kewa #> 68908 90A-7 koa cku koas1236 Koasati #> 68912 90A-7 mar mrc mari1440 Maricopa #> 68938 90B-1 ala amp alam1246 Alamblak #> 68940 90B-1 abk abk abkh1244 Abkhaz #> 69054 90B-1 kor kor kore1280 Korean #> 69100 90B-3 kew kjs kewa1250 Kewa #> 69113 90B-3 koa cku koas1236 Koasati #> 69122 90C-1 hau hau haus1257 Hausa #> 69314 90C-1 orh hae east2652 Oromo (Harar) #> 69335 90C-1 cha cha cham1312 Chamorro #> 69359 90C-1 wic wic wich1260 Wichita #> 69452 90C-1 tiw tiw tiwi1244 Tiwi #> 69469 90C-1 apu apu apur1254 Apurinã #> 69682 90C-1 kse ses koyr1242 Koyraboro Senni #> 69730 90C-3 tuk khc tuka1247 Tukang Besi #> 69736 90C-3 mar mrc mari1440 Maricopa #> 69745 90D-1 kio kio kiow1266 Kiowa #> 69758 90D-1 ond one onei1249 Oneida #> 69771 90D-2 koa cku koas1236 Koasati #> 69777 90D-2 kew kjs kewa1250 Kewa #> 69779 90D-3 mar mrc mari1440 Maricopa #> 69784 90D-3 tuk khc tuka1247 Tukang Besi #> 69790 90D-6 kor kor kore1280 Korean #> 69794 90D-6 sup spp supy1237 Supyire #> 69808 90E-1 hin hin hind1269 Hindi #> 69809 90E-1 sup spp supy1237 Supyire #> 69827 90F-1 mrt vma mart1255 Martuthunira #> 69852 91A-1 orh hae east2652 Oromo (Harar) #> 69880 91A-1 hin hin hind1269 Hindi #> 69926 91A-1 abk abk abkh1244 Abkhaz #> 69942 91A-1 ond one onei1249 Oneida #> 69980 91A-1 cha cha cham1312 Chamorro #> 70051 91A-1 kor kor kore1280 Korean #> 70072 91A-2 hau hau haus1257 Hausa #> 70158 91A-2 ala amp alam1246 Alamblak #> 70360 92A-1 kio kio kiow1266 Kiowa #> 70377 92A-1 hin hin hind1269 Hindi #> 70402 92A-1 cha cha cham1312 Chamorro #> 70469 92A-2 kew kjs kewa1250 Kewa #> 70498 92A-2 hau hau haus1257 Hausa #> 70527 92A-2 prh myp pira1253 Pirahã #> 70553 92A-2 sup spp supy1237 Supyire #> 70675 92A-2 tuk khc tuka1247 Tukang Besi #> 70760 92A-2 tiw tiw tiwi1244 Tiwi #> 70807 92A-3 ond one onei1249 Oneida #> 70837 92A-5 kse ses koyr1242 Koyraboro Senni #> 70919 92A-6 ala amp alam1246 Alamblak #> 70929 92A-6 orh hae east2652 Oromo (Harar) #> 70939 92A-6 abk abk abkh1244 Abkhaz #> 70941 92A-6 mar mrc mari1440 Maricopa #> 70972 92A-6 apu apu apur1254 Apurinã #> 70996 92A-6 kor kor kore1280 Korean #> 71024 92A-6 mrt vma mart1255 Martuthunira #> 71270 93A-1 mrt vma mart1255 Martuthunira #> 71276 93A-1 ond one onei1249 Oneida #> 71356 93A-1 kse ses koyr1242 Koyraboro Senni #> 71395 93A-1 kio kio kiow1266 Kiowa #> 71462 93A-1 apu apu apur1254 Apurinã #> 71479 93A-2 prh myp pira1253 Pirahã #> 71494 93A-2 abk abk abkh1244 Abkhaz #> 71515 93A-2 hin hin hind1269 Hindi #> 71529 93A-2 kor kor kore1280 Korean #> 71580 93A-2 kew kjs kewa1250 Kewa #> 71923 93A-2 orh hae east2652 Oromo (Harar) #> 71963 93A-2 ala amp alam1246 Alamblak #> 72086 93A-3 tuk khc tuka1247 Tukang Besi #> 72088 93A-3 hau hau haus1257 Hausa #> 72093 93A-3 sup spp supy1237 Supyire #> 72099 93A-3 cha cha cham1312 Chamorro #> 72103 93A-3 tiw tiw tiwi1244 Tiwi #> 72117 94A-1 cha cha cham1312 Chamorro #> 72134 94A-1 apu apu apur1254 Apurinã #> 72135 94A-1 tiw tiw tiwi1244 Tiwi #> 72137 94A-1 wic wic wich1260 Wichita #> 72176 94A-1 tuk khc tuka1247 Tukang Besi #> 72192 94A-1 ond one onei1249 Oneida #> 72371 94A-1 orh hae east2652 Oromo (Harar) #> 72375 94A-1 hin hin hind1269 Hindi #> 72401 94A-1 hau hau haus1257 Hausa #> 72404 94A-1 sup spp supy1237 Supyire #> 72477 94A-1 kse ses koyr1242 Koyraboro Senni #> 72577 94A-2 kew kjs kewa1250 Kewa #> 72594 94A-2 kor kor kore1280 Korean #> 72612 94A-4 kio kio kiow1266 Kiowa #> 72650 94A-4 abk abk abkh1244 Abkhaz #> 72738 94A-5 mar mrc mari1440 Maricopa #> 72800 95A-1 ala amp alam1246 Alamblak #> 72846 95A-1 kor kor kore1280 Korean #> 72848 95A-1 abk abk abkh1244 Abkhaz #> 72883 95A-1 koa cku koas1236 Koasati #> 72928 95A-1 hin hin hind1269 Hindi #> 72941 95A-1 kse ses koyr1242 Koyraboro Senni #> 73006 95A-1 mar mrc mari1440 Maricopa #> 73149 95A-1 orh hae east2652 Oromo (Harar) #> 73155 95A-1 kew kjs kewa1250 Kewa #> 73162 95A-1 sup spp supy1237 Supyire #> 73224 95A-1 prh myp pira1253 Pirahã #> 73307 95A-4 tuk khc tuka1247 Tukang Besi #> 73318 95A-4 hau hau haus1257 Hausa #> 73393 95A-4 cha cha cham1312 Chamorro #> 73642 95A-4 tiw tiw tiwi1244 Tiwi #> 73773 95A-5 apu apu apur1254 Apurinã #> 73914 96A-1 abk abk abkh1244 Abkhaz #> 73992 96A-1 kor kor kore1280 Korean #> 74001 96A-1 ala amp alam1246 Alamblak #> 74052 96A-2 orh hae east2652 Oromo (Harar) #> 74061 96A-2 kse ses koyr1242 Koyraboro Senni #> 74083 96A-2 wic wic wich1260 Wichita #> 74160 96A-4 hau hau haus1257 Hausa #> 74189 96A-4 tiw tiw tiwi1244 Tiwi #> 74269 96A-4 cha cha cham1312 Chamorro #> 74577 96A-5 tuk khc tuka1247 Tukang Besi #> 74619 96A-5 apu apu apur1254 Apurinã #> 74683 96A-5 mrt vma mart1255 Martuthunira #> 74700 96A-5 ond one onei1249 Oneida #> 74717 96A-5 koa cku koas1236 Koasati #> 74733 96A-5 sup spp supy1237 Supyire #> 74745 96A-5 kew kjs kewa1250 Kewa #> 74757 96A-5 hin hin hind1269 Hindi #> 74767 96A-5 kio kio kiow1266 Kiowa #> 74771 96A-5 mar mrc mari1440 Maricopa #> 74815 97A-1 kew kjs kewa1250 Kewa #> 74830 97A-1 hin hin hind1269 Hindi #> 74932 97A-1 kor kor kore1280 Korean #> 74954 97A-1 ala amp alam1246 Alamblak #> 75007 97A-2 kse ses koyr1242 Koyraboro Senni #> 75017 97A-2 mar mrc mari1440 Maricopa #> 75179 97A-2 koa cku koas1236 Koasati #> 75182 97A-2 prh myp pira1253 Pirahã #> 75254 97A-2 wic wic wich1260 Wichita #> 75256 97A-2 abk abk abkh1244 Abkhaz #> 75267 97A-2 sup spp supy1237 Supyire #> 75279 97A-2 orh hae east2652 Oromo (Harar) #> 75359 97A-3 hau hau haus1257 Hausa #> 75382 97A-3 cha cha cham1312 Chamorro #> 75441 97A-3 tiw tiw tiwi1244 Tiwi #> 75810 97A-4 tuk khc tuka1247 Tukang Besi #> 75884 97A-4 mrt vma mart1255 Martuthunira #> 75946 97A-5 apu apu apur1254 Apurinã #> 76104 98A-1 kse ses koyr1242 Koyraboro Senni #> 76113 98A-1 wic wic wich1260 Wichita #> 76116 98A-1 abk abk abkh1244 Abkhaz #> 76119 98A-1 cha cha cham1312 Chamorro #> 76137 98A-1 apu apu apur1254 Apurinã #> 76146 98A-1 sup spp supy1237 Supyire #> 76154 98A-1 prh myp pira1253 Pirahã #> 76171 98A-1 hau hau haus1257 Hausa #> 76177 98A-1 tiw tiw tiwi1244 Tiwi #> 76191 98A-1 ala amp alam1246 Alamblak #> 76200 98A-1 kio kio kiow1266 Kiowa #> 76202 98A-2 koa cku koas1236 Koasati #> 76211 98A-2 kor kor kore1280 Korean #> 76245 98A-2 mrt vma mart1255 Martuthunira #> 76250 98A-3 orh hae east2652 Oromo (Harar) #> 76253 98A-3 mar mrc mari1440 Maricopa #> 76257 98A-4 kew kjs kewa1250 Kewa #> 76284 98A-4 tuk khc tuka1247 Tukang Besi #> 76287 98A-5 hin hin hind1269 Hindi #> 76302 99A-1 sup spp supy1237 Supyire #> 76325 99A-1 kse ses koyr1242 Koyraboro Senni #> 76327 99A-1 hau hau haus1257 Hausa #> 76340 99A-1 prh myp pira1253 Pirahã #> 76353 99A-1 abk abk abkh1244 Abkhaz #> 76368 99A-1 apu apu apur1254 Apurinã #> 76369 99A-1 tiw tiw tiwi1244 Tiwi #> 76398 99A-2 orh hae east2652 Oromo (Harar) #> 76399 99A-2 mrt vma mart1255 Martuthunira #> 76407 99A-2 kor kor kore1280 Korean #> 76434 99A-3 mar mrc mari1440 Maricopa #> 76438 99A-4 tuk khc tuka1247 Tukang Besi #> 76439 99A-4 kew kjs kewa1250 Kewa #> 76447 99A-4 cha cha cham1312 Chamorro #> 76459 99A-5 hin hin hind1269 Hindi #> 76464 99A-7 wic wic wich1260 Wichita #> family genus macroarea countrycodes #> 35 Mura Mura South America BR #> 37 Muskogean Muskogean North America US #> 55 Arawakan Purus South America BR #> 73 Iroquoian Northern Iroquoian North America US #> 90 Sepik Sepik Hill Papunesia PG #> 146 Songhay Songhay Africa NE ML #> 187 Trans-New Guinea Engan Papunesia PG #> 220 Niger-Congo Gur Africa ML #> 301 Tiwian Tiwian Australia AU #> 309 Kiowa-Tanoan Kiowa-Tanoan North America US #> 327 Hokan Yuman North America US #> 342 Korean Korean Eurasia KR KP #> 360 Austronesian Celebic Papunesia ID #> 384 Austronesian Chamorro Papunesia GU #> 402 Caddoan Caddoan North America US #> 407 Pama-Nyungan Western Pama-Nyungan Australia AU #> 429 Afro-Asiatic Lowland East Cushitic Africa ET #> 462 Afro-Asiatic West Chadic Africa NG NE #> 532 Indo-European Indic Eurasia IN #> 533 Northwest Caucasian Northwest Caucasian Eurasia GE #> 569 Arawakan Purus South America BR #> 577 Niger-Congo Gur Africa ML #> 596 Muskogean Muskogean North America US #> 625 Indo-European Indic Eurasia IN #> 628 Austronesian Celebic Papunesia ID #> 637 Korean Korean Eurasia KR KP #> 647 Mura Mura South America BR #> 656 Caddoan Caddoan North America US #> 659 Pama-Nyungan Western Pama-Nyungan Australia AU #> 665 Northwest Caucasian Northwest Caucasian Eurasia GE #> 680 Austronesian Chamorro Papunesia GU #> 746 Sepik Sepik Hill Papunesia PG #> 761 Afro-Asiatic Lowland East Cushitic Africa ET #> 774 Afro-Asiatic West Chadic Africa NG NE #> 783 Hokan Yuman North America US #> 803 Tiwian Tiwian Australia AU #> 854 Korean Korean Eurasia KR KP #> 860 Songhay Songhay Africa NE ML #> 867 Niger-Congo Gur Africa ML #> 895 Pama-Nyungan Western Pama-Nyungan Australia AU #> 922 Afro-Asiatic West Chadic Africa NG NE #> 938 Tiwian Tiwian Australia AU #> 980 Austronesian Celebic Papunesia ID #> 987 Sepik Sepik Hill Papunesia PG #> 1020 Afro-Asiatic Lowland East Cushitic Africa ET #> 1028 Mura Mura South America BR #> 1044 Hokan Yuman North America US #> 1117 Indo-European Indic Eurasia IN #> 1150 Austronesian Chamorro Papunesia GU #> 1151 Northwest Caucasian Northwest Caucasian Eurasia GE #> 1164 Caddoan Caddoan North America US #> 1172 Trans-New Guinea Engan Papunesia PG #> 1173 Muskogean Muskogean North America US #> 1185 Iroquoian Northern Iroquoian North America US #> 1188 Arawakan Purus South America BR #> 1197 Kiowa-Tanoan Kiowa-Tanoan North America US #> 1265 Niger-Congo Gur Africa ML #> 1296 Songhay Songhay Africa NE ML #> 1314 Kiowa-Tanoan Kiowa-Tanoan North America US #> 1325 Caddoan Caddoan North America US #> 1360 Sepik Sepik Hill Papunesia PG #> 1399 Tiwian Tiwian Australia AU #> 1444 Austronesian Celebic Papunesia ID #> 1461 Afro-Asiatic Lowland East Cushitic Africa ET #> 1466 Muskogean Muskogean North America US #> 1514 Iroquoian Northern Iroquoian North America US #> 1560 Trans-New Guinea Engan Papunesia PG #> 1567 Arawakan Purus South America BR #> 1569 Hokan Yuman North America US #> 1574 Northwest Caucasian Northwest Caucasian Eurasia GE #> 1788 Afro-Asiatic West Chadic Africa NG NE #> 1892 Korean Korean Eurasia KR KP #> 1896 Pama-Nyungan Western Pama-Nyungan Australia AU #> 1943 Pama-Nyungan Western Pama-Nyungan Australia AU #> 1954 Songhay Songhay Africa NE ML #> 1967 Korean Korean Eurasia KR KP #> 1984 Niger-Congo Gur Africa ML #> 2002 Afro-Asiatic West Chadic Africa NG NE #> 2037 Afro-Asiatic Lowland East Cushitic Africa ET #> 2067 Indo-European Indic Eurasia IN #> 2077 Austronesian Chamorro Papunesia GU #> 2083 Trans-New Guinea Engan Papunesia PG #> 2122 Kiowa-Tanoan Kiowa-Tanoan North America US #> 2134 Austronesian Celebic Papunesia ID #> 2136 Arawakan Purus South America BR #> 2150 Muskogean Muskogean North America US #> 2158 Caddoan Caddoan North America US #> 2159 Sepik Sepik Hill Papunesia PG #> 2164 Tiwian Tiwian Australia AU #> 2199 Mura Mura South America BR #> 2210 Northwest Caucasian Northwest Caucasian Eurasia GE #> 2217 Hokan Yuman North America US #> 2286 Iroquoian Northern Iroquoian North America US #> 2328 Niger-Congo Gur Africa ML #> 2354 Songhay Songhay Africa NE ML #> 2370 Pama-Nyungan Western Pama-Nyungan Australia AU #> 2392 Korean Korean Eurasia KR KP #> 2397 Afro-Asiatic West Chadic Africa NG NE #> 2413 Arawakan Purus South America BR #> 2457 Trans-New Guinea Engan Papunesia PG #> 2478 Austronesian Celebic Papunesia ID #> 2492 Iroquoian Northern Iroquoian North America US #> 2493 Indo-European Indic Eurasia IN #> 2537 Sepik Sepik Hill Papunesia PG #> 2558 Austronesian Chamorro Papunesia GU #> 2562 Mura Mura South America BR #> 2578 Tiwian Tiwian Australia AU #> 2591 Northwest Caucasian Northwest Caucasian Eurasia GE #> 2599 Afro-Asiatic Lowland East Cushitic Africa ET #> 2656 Kiowa-Tanoan Kiowa-Tanoan North America US #> 2664 Muskogean Muskogean North America US #> 2669 Caddoan Caddoan North America US #> 2684 Hokan Yuman North America US #> 2697 Trans-New Guinea Engan Papunesia PG #> 2743 Afro-Asiatic Lowland East Cushitic Africa ET #> 2757 Songhay Songhay Africa NE ML #> 2764 Korean Korean Eurasia KR KP #> 2769 Niger-Congo Gur Africa ML #> 2777 Austronesian Chamorro Papunesia GU #> 2778 Pama-Nyungan Western Pama-Nyungan Australia AU #> 2803 Indo-European Indic Eurasia IN #> 2851 Kiowa-Tanoan Kiowa-Tanoan North America US #> 2873 Afro-Asiatic West Chadic Africa NG NE #> 2897 Caddoan Caddoan North America US #> 2912 Iroquoian Northern Iroquoian North America US #> 2937 Arawakan Purus South America BR #> 2956 Sepik Sepik Hill Papunesia PG #> 2965 Austronesian Celebic Papunesia ID #> 2967 Mura Mura South America BR #> 3001 Northwest Caucasian Northwest Caucasian Eurasia GE #> 3036 Muskogean Muskogean North America US #> 3049 Tiwian Tiwian Australia AU #> 3061 Hokan Yuman North America US #> 3102 Niger-Congo Gur Africa ML #> 3105 Muskogean Muskogean North America US #> 3150 Northwest Caucasian Northwest Caucasian Eurasia GE #> 3178 Indo-European Indic Eurasia IN #> 3213 Korean Korean Eurasia KR KP #> 3259 Afro-Asiatic Lowland East Cushitic Africa ET #> 3317 Austronesian Celebic Papunesia ID #> 3330 Mura Mura South America BR #> 3355 Pama-Nyungan Western Pama-Nyungan Australia AU #> 3364 Hokan Yuman North America US #> 3384 Tiwian Tiwian Australia AU #> 3395 Austronesian Chamorro Papunesia GU #> 3406 Sepik Sepik Hill Papunesia PG #> 3410 Afro-Asiatic West Chadic Africa NG NE #> 3450 Songhay Songhay Africa NE ML #> 3453 Arawakan Purus South America BR #> 3460 Caddoan Caddoan North America US #> 3467 Mura Mura South America BR #> 3468 Trans-New Guinea Engan Papunesia PG #> 3495 Afro-Asiatic Lowland East Cushitic Africa ET #> 3498 Austronesian Chamorro Papunesia GU #> 3501 Korean Korean Eurasia KR KP #> 3505 Afro-Asiatic West Chadic Africa NG NE #> 3506 Muskogean Muskogean North America US #> 3511 Northwest Caucasian Northwest Caucasian Eurasia GE #> 3513 Songhay Songhay Africa NE ML #> 3515 Arawakan Purus South America BR #> 3530 Indo-European Indic Eurasia IN #> 3537 Tiwian Tiwian Australia AU #> 3555 Pama-Nyungan Western Pama-Nyungan Australia AU #> 3559 Austronesian Celebic Papunesia ID #> 3590 Iroquoian Northern Iroquoian North America US #> 3607 Hokan Yuman North America US #> 3622 Niger-Congo Gur Africa ML #> 3626 Kiowa-Tanoan Kiowa-Tanoan North America US #> 3634 Hokan Yuman North America US #> 3645 Muskogean Muskogean North America US #> 3679 Korean Korean Eurasia KR KP #> 3714 Afro-Asiatic West Chadic Africa NG NE #> 3715 Indo-European Indic Eurasia IN #> 3731 Austronesian Chamorro Papunesia GU #> 3747 Songhay Songhay Africa NE ML #> 3748 Pama-Nyungan Western Pama-Nyungan Australia AU #> 3784 Arawakan Purus South America BR #> 3787 Austronesian Celebic Papunesia ID #> 3804 Tiwian Tiwian Australia AU #> 3811 Caddoan Caddoan North America US #> 3813 Trans-New Guinea Engan Papunesia PG #> 3842 Iroquoian Northern Iroquoian North America US #> 3843 Kiowa-Tanoan Kiowa-Tanoan North America US #> 3844 Northwest Caucasian Northwest Caucasian Eurasia GE #> 3921 Mura Mura South America BR #> 3930 Sepik Sepik Hill Papunesia PG #> 3933 Niger-Congo Gur Africa ML #> 3966 Afro-Asiatic Lowland East Cushitic Africa ET #> 4002 Songhay Songhay Africa NE ML #> 4007 Kiowa-Tanoan Kiowa-Tanoan North America US #> 4040 Austronesian Chamorro Papunesia GU #> 4055 Tiwian Tiwian Australia AU #> 4057 Sepik Sepik Hill Papunesia PG #> 4082 Austronesian Celebic Papunesia ID #> 4083 Indo-European Indic Eurasia IN #> 4087 Arawakan Purus South America BR #> 4088 Pama-Nyungan Western Pama-Nyungan Australia AU #> 4097 Hokan Yuman North America US #> 4107 Afro-Asiatic West Chadic Africa NG NE #> 4131 Muskogean Muskogean North America US #> 4135 Mura Mura South America BR #> 4150 Trans-New Guinea Engan Papunesia PG #> 4160 Niger-Congo Gur Africa ML #> 4167 Caddoan Caddoan North America US #> 4178 Afro-Asiatic Lowland East Cushitic Africa ET #> 4182 Northwest Caucasian Northwest Caucasian Eurasia GE #> 4186 Korean Korean Eurasia KR KP #> 4187 Iroquoian Northern Iroquoian North America US #> 4204 Songhay Songhay Africa NE ML #> 4232 Kiowa-Tanoan Kiowa-Tanoan North America US #> 4233 Austronesian Chamorro Papunesia GU #> 4242 Caddoan Caddoan North America US #> 4243 Arawakan Purus South America BR #> 4249 Northwest Caucasian Northwest Caucasian Eurasia GE #> 4251 Sepik Sepik Hill Papunesia PG #> 4264 Afro-Asiatic Lowland East Cushitic Africa ET #> 4283 Austronesian Celebic Papunesia ID #> 4284 Pama-Nyungan Western Pama-Nyungan Australia AU #> 4287 Tiwian Tiwian Australia AU #> 4303 Hokan Yuman North America US #> 4305 Mura Mura South America BR #> 4326 Iroquoian Northern Iroquoian North America US #> 4340 Niger-Congo Gur Africa ML #> 4355 Trans-New Guinea Engan Papunesia PG #> 4361 Indo-European Indic Eurasia IN #> 4362 Korean Korean Eurasia KR KP #> 4369 Afro-Asiatic West Chadic Africa NG NE #> 4376 Muskogean Muskogean North America US #> 4389 Sepik Sepik Hill Papunesia PG #> 4392 Austronesian Chamorro Papunesia GU #> 4396 Trans-New Guinea Engan Papunesia PG #> 4414 Caddoan Caddoan North America US #> 4430 Austronesian Celebic Papunesia ID #> 4431 Hokan Yuman North America US #> 4436 Iroquoian Northern Iroquoian North America US #> 4447 Afro-Asiatic West Chadic Africa NG NE #> 4451 Northwest Caucasian Northwest Caucasian Eurasia GE #> 4457 Tiwian Tiwian Australia AU #> 4461 Songhay Songhay Africa NE ML #> 4476 Arawakan Purus South America BR #> 4484 Afro-Asiatic Lowland East Cushitic Africa ET #> 4490 Indo-European Indic Eurasia IN #> 4502 Mura Mura South America BR #> 4511 Muskogean Muskogean North America US #> 4527 Korean Korean Eurasia KR KP #> 4544 Kiowa-Tanoan Kiowa-Tanoan North America US #> 4557 Niger-Congo Gur Africa ML #> 4562 Pama-Nyungan Western Pama-Nyungan Australia AU #> 4568 Northwest Caucasian Northwest Caucasian Eurasia GE #> 4569 Tiwian Tiwian Australia AU #> 4574 Caddoan Caddoan North America US #> 4579 Songhay Songhay Africa NE ML #> 4596 Hokan Yuman North America US #> 4598 Afro-Asiatic West Chadic Africa NG NE #> 4603 Austronesian Celebic Papunesia ID #> 4604 Iroquoian Northern Iroquoian North America US #> 4612 Trans-New Guinea Engan Papunesia PG #> 4620 Sepik Sepik Hill Papunesia PG #> 4632 Austronesian Chamorro Papunesia GU #> 4656 Mura Mura South America BR #> 4661 Korean Korean Eurasia KR KP #> 4664 Niger-Congo Gur Africa ML #> 4668 Arawakan Purus South America BR #> 4669 Pama-Nyungan Western Pama-Nyungan Australia AU #> 4678 Muskogean Muskogean North America US #> 4729 Afro-Asiatic Lowland East Cushitic Africa ET #> 4730 Indo-European Indic Eurasia IN #> 4743 Kiowa-Tanoan Kiowa-Tanoan North America US #> 4764 Indo-European Indic Eurasia IN #> 4794 Northwest Caucasian Northwest Caucasian Eurasia GE #> 4799 Afro-Asiatic West Chadic Africa NG NE #> 4803 Songhay Songhay Africa NE ML #> 4843 Austronesian Celebic Papunesia ID #> 4885 Trans-New Guinea Engan Papunesia PG #> 4894 Arawakan Purus South America BR #> 4940 Tiwian Tiwian Australia AU #> 4987 Mura Mura South America BR #> 5000 Austronesian Chamorro Papunesia GU #> 5031 Sepik Sepik Hill Papunesia PG #> 5041 Muskogean Muskogean North America US #> 5065 Iroquoian Northern Iroquoian North America US #> 5078 Korean Korean Eurasia KR KP #> 5089 Hokan Yuman North America US #> 5133 Kiowa-Tanoan Kiowa-Tanoan North America US #> 5210 Caddoan Caddoan North America US #> 5226 Pama-Nyungan Western Pama-Nyungan Australia AU #> 5266 Afro-Asiatic Lowland East Cushitic Africa ET #> 5268 Niger-Congo Gur Africa ML #> 5311 Afro-Asiatic West Chadic Africa NG NE #> 5351 Mura Mura South America BR #> 5354 Austronesian Chamorro Papunesia GU #> 5359 Korean Korean Eurasia KR KP #> 5361 Pama-Nyungan Western Pama-Nyungan Australia AU #> 5364 Northwest Caucasian Northwest Caucasian Eurasia GE #> 5395 Afro-Asiatic Lowland East Cushitic Africa ET #> 5402 Caddoan Caddoan North America US #> 5408 Iroquoian Northern Iroquoian North America US #> 5409 Indo-European Indic Eurasia IN #> 5413 Austronesian Celebic Papunesia ID #> 5421 Songhay Songhay Africa NE ML #> 5422 Niger-Congo Gur Africa ML #> 5483 Arawakan Purus South America BR #> 5514 Austronesian Celebic Papunesia ID #> 5550 Indo-European Indic Eurasia IN #> 5551 Northwest Caucasian Northwest Caucasian Eurasia GE #> 5553 Kiowa-Tanoan Kiowa-Tanoan North America US #> 5566 Mura Mura South America BR #> 5571 Caddoan Caddoan North America US #> 5579 Austronesian Chamorro Papunesia GU #> 5592 Niger-Congo Gur Africa ML #> 5593 Korean Korean Eurasia KR KP #> 5597 Tiwian Tiwian Australia AU #> 5598 Trans-New Guinea Engan Papunesia PG #> 5617 Pama-Nyungan Western Pama-Nyungan Australia AU #> 5622 Afro-Asiatic West Chadic Africa NG NE #> 5640 Iroquoian Northern Iroquoian North America US #> 5675 Afro-Asiatic Lowland East Cushitic Africa ET #> 5721 Hokan Yuman North America US #> 5724 Sepik Sepik Hill Papunesia PG #> 5731 Muskogean Muskogean North America US #> 5732 Songhay Songhay Africa NE ML #> 5842 Northwest Caucasian Northwest Caucasian Eurasia GE #> 5973 Trans-New Guinea Engan Papunesia PG #> 6054 Mura Mura South America BR #> 6125 Muskogean Muskogean North America US #> 6194 Niger-Congo Gur Africa ML #> 6197 Indo-European Indic Eurasia IN #> 6256 Korean Korean Eurasia KR KP #> 6300 Arawakan Purus South America BR #> 6304 Austronesian Chamorro Papunesia GU #> 6432 Caddoan Caddoan North America US #> 6465 Afro-Asiatic West Chadic Africa NG NE #> 6511 Iroquoian Northern Iroquoian North America US #> 6525 Songhay Songhay Africa NE ML #> 6586 Pama-Nyungan Western Pama-Nyungan Australia AU #> 6615 Sepik Sepik Hill Papunesia PG #> 6622 Tiwian Tiwian Australia AU #> 6810 Kiowa-Tanoan Kiowa-Tanoan North America US #> 6863 Hokan Yuman North America US #> 6881 Afro-Asiatic Lowland East Cushitic Africa ET #> 6900 Austronesian Chamorro Papunesia GU #> 6936 Mura Mura South America BR #> 6942 Arawakan Purus South America BR #> 6972 Hokan Yuman North America US #> 6978 Pama-Nyungan Western Pama-Nyungan Australia AU #> 6987 Austronesian Celebic Papunesia ID #> 6998 Trans-New Guinea Engan Papunesia PG #> 7063 Iroquoian Northern Iroquoian North America US #> 7069 Afro-Asiatic West Chadic Africa NG NE #> 7070 Songhay Songhay Africa NE ML #> 7084 Tiwian Tiwian Australia AU #> 7087 Indo-European Indic Eurasia IN #> 7090 Korean Korean Eurasia KR KP #> 7097 Muskogean Muskogean North America US #> 7103 Sepik Sepik Hill Papunesia PG #> 7153 Caddoan Caddoan North America US #> 7173 Kiowa-Tanoan Kiowa-Tanoan North America US #> 7181 Northwest Caucasian Northwest Caucasian Eurasia GE #> 7183 Niger-Congo Gur Africa ML #> 7184 Afro-Asiatic Lowland East Cushitic Africa ET #> 7245 Tiwian Tiwian Australia AU #> 7250 Sepik Sepik Hill Papunesia PG #> 7254 Afro-Asiatic West Chadic Africa NG NE #> 7266 Northwest Caucasian Northwest Caucasian Eurasia GE #> 7267 Caddoan Caddoan North America US #> 7271 Kiowa-Tanoan Kiowa-Tanoan North America US #> 7298 Songhay Songhay Africa NE ML #> 7300 Iroquoian Northern Iroquoian North America US #> 7308 Indo-European Indic Eurasia IN #> 7321 Muskogean Muskogean North America US #> 7336 Korean Korean Eurasia KR KP #> 7352 Niger-Congo Gur Africa ML #> 7355 Afro-Asiatic Lowland East Cushitic Africa ET #> 7387 Pama-Nyungan Western Pama-Nyungan Australia AU #> 7399 Mura Mura South America BR #> 7421 Hokan Yuman North America US #> 7451 Trans-New Guinea Engan Papunesia PG #> 7461 Arawakan Purus South America BR #> 7463 Austronesian Chamorro Papunesia GU #> 7472 Austronesian Celebic Papunesia ID #> 7493 Korean Korean Eurasia KR KP #> 7505 Afro-Asiatic West Chadic Africa NG NE #> 7514 Northwest Caucasian Northwest Caucasian Eurasia GE #> 7522 Songhay Songhay Africa NE ML #> 7535 Muskogean Muskogean North America US #> 7568 Niger-Congo Gur Africa ML #> 7577 Kiowa-Tanoan Kiowa-Tanoan North America US #> 7631 Afro-Asiatic Lowland East Cushitic Africa ET #> 7658 Indo-European Indic Eurasia IN #> 7661 Tiwian Tiwian Australia AU #> 7667 Austronesian Chamorro Papunesia GU #> 7706 Austronesian Celebic Papunesia ID #> 7711 Niger-Congo Gur Africa ML #> 7770 Songhay Songhay Africa NE ML #> 7798 Caddoan Caddoan North America US #> 7802 Indo-European Indic Eurasia IN #> 7964 Kiowa-Tanoan Kiowa-Tanoan North America US #> 7974 Trans-New Guinea Engan Papunesia PG #> 8084 Tiwian Tiwian Australia AU #> 8144 Iroquoian Northern Iroquoian North America US #> 8156 Austronesian Chamorro Papunesia GU #> 8246 Afro-Asiatic West Chadic Africa NG NE #> 8313 Hokan Yuman North America US #> 8316 Korean Korean Eurasia KR KP #> 8387 Northwest Caucasian Northwest Caucasian Eurasia GE #> 8454 Mura Mura South America BR #> 8538 Afro-Asiatic Lowland East Cushitic Africa ET #> 8561 Pama-Nyungan Western Pama-Nyungan Australia AU #> 8572 Sepik Sepik Hill Papunesia PG #> 8648 Arawakan Purus South America BR #> 8650 Korean Korean Eurasia KR KP #> 8659 Caddoan Caddoan North America US #> 8688 Indo-European Indic Eurasia IN #> 8743 Muskogean Muskogean North America US #> 8746 Tiwian Tiwian Australia AU #> 8777 Afro-Asiatic West Chadic Africa NG NE #> 8779 Niger-Congo Gur Africa ML #> 8793 Sepik Sepik Hill Papunesia PG #> 8851 Northwest Caucasian Northwest Caucasian Eurasia GE #> 8853 Afro-Asiatic Lowland East Cushitic Africa ET #> 8856 Mura Mura South America BR #> 8935 Austronesian Celebic Papunesia ID #> 8936 Austronesian Chamorro Papunesia GU #> 8962 Kiowa-Tanoan Kiowa-Tanoan North America US #> 8998 Iroquoian Northern Iroquoian North America US #> 9014 Northwest Caucasian Northwest Caucasian Eurasia GE #> 9054 Tiwian Tiwian Australia AU #> 9057 Indo-European Indic Eurasia IN #> 9099 Afro-Asiatic West Chadic Africa NG NE #> 9157 Trans-New Guinea Engan Papunesia PG #> 9176 Niger-Congo Gur Africa ML #> 9233 Caddoan Caddoan North America US #> 9238 Korean Korean Eurasia KR KP #> 9245 Afro-Asiatic Lowland East Cushitic Africa ET #> 9248 Sepik Sepik Hill Papunesia PG #> 9292 Tiwian Tiwian Australia AU #> 9300 Austronesian Celebic Papunesia ID #> 9330 Sepik Sepik Hill Papunesia PG #> 9335 Kiowa-Tanoan Kiowa-Tanoan North America US #> 9357 Niger-Congo Gur Africa ML #> 9371 Afro-Asiatic West Chadic Africa NG NE #> 9427 Northwest Caucasian Northwest Caucasian Eurasia GE #> 9444 Iroquoian Northern Iroquoian North America US #> 9450 Korean Korean Eurasia KR KP #> 9464 Trans-New Guinea Engan Papunesia PG #> 9512 Austronesian Chamorro Papunesia GU #> 9564 Indo-European Indic Eurasia IN #> 9593 Afro-Asiatic Lowland East Cushitic Africa ET #> 9609 Caddoan Caddoan North America US #> 9683 Trans-New Guinea Engan Papunesia PG #> 9700 Austronesian Celebic Papunesia ID #> 9704 Arawakan Purus South America BR #> 9722 Mura Mura South America BR #> 9769 Pama-Nyungan Western Pama-Nyungan Australia AU #> 9860 Tiwian Tiwian Australia AU #> 9878 Austronesian Chamorro Papunesia GU #> 9886 Afro-Asiatic Lowland East Cushitic Africa ET #> 9895 Kiowa-Tanoan Kiowa-Tanoan North America US #> 9930 Niger-Congo Gur Africa ML #> 9938 Korean Korean Eurasia KR KP #> 9955 Muskogean Muskogean North America US #> 9980 Afro-Asiatic West Chadic Africa NG NE #> 9999 Indo-European Indic Eurasia IN #> 10016 Hokan Yuman North America US #> 10077 Northwest Caucasian Northwest Caucasian Eurasia GE #> 10108 Iroquoian Northern Iroquoian North America US #> 10128 Sepik Sepik Hill Papunesia PG #> 10154 Afro-Asiatic West Chadic Africa NG NE #> 10163 Korean Korean Eurasia KR KP #> 10168 Austronesian Chamorro Papunesia GU #> 10172 Caddoan Caddoan North America US #> 10201 Niger-Congo Gur Africa ML #> 10269 Sepik Sepik Hill Papunesia PG #> 10276 Iroquoian Northern Iroquoian North America US #> 10291 Indo-European Indic Eurasia IN #> 10296 Kiowa-Tanoan Kiowa-Tanoan North America US #> 10349 Northwest Caucasian Northwest Caucasian Eurasia GE #> 10385 Afro-Asiatic Lowland East Cushitic Africa ET #> 10398 Trans-New Guinea Engan Papunesia PG #> 10478 Tiwian Tiwian Australia AU #> 10482 Austronesian Celebic Papunesia ID #> 10538 Indo-European Indic Eurasia IN #> 10578 Korean Korean Eurasia KR KP #> 10637 Afro-Asiatic West Chadic Africa NG NE #> 10659 Mura Mura South America BR #> 10719 Kiowa-Tanoan Kiowa-Tanoan North America US #> 10723 Hokan Yuman North America US #> 10724 Mura Mura South America BR #> 10725 Muskogean Muskogean North America US #> 10726 Niger-Congo Gur Africa ML #> 10730 Indo-European Indic Eurasia IN #> 10758 Songhay Songhay Africa NE ML #> 10759 Caddoan Caddoan North America US #> 10763 Sepik Sepik Hill Papunesia PG #> 10766 Afro-Asiatic Lowland East Cushitic Africa ET #> 10767 Northwest Caucasian Northwest Caucasian Eurasia GE #> 10777 Austronesian Chamorro Papunesia GU #> 10794 Pama-Nyungan Western Pama-Nyungan Australia AU #> 10806 Austronesian Celebic Papunesia ID #> 10822 Afro-Asiatic West Chadic Africa NG NE #> 10859 Korean Korean Eurasia KR KP #> 10885 Indo-European Indic Eurasia IN #> 10892 Niger-Congo Gur Africa ML #> 10908 Afro-Asiatic West Chadic Africa NG NE #> 10918 Korean Korean Eurasia KR KP #> 10928 Sepik Sepik Hill Papunesia PG #> 10936 Austronesian Celebic Papunesia ID #> 10942 Northwest Caucasian Northwest Caucasian Eurasia GE #> 10950 Afro-Asiatic Lowland East Cushitic Africa ET #> 10967 Songhay Songhay Africa NE ML #> 10968 Austronesian Chamorro Papunesia GU #> 10969 Mura Mura South America BR #> 10972 Pama-Nyungan Western Pama-Nyungan Australia AU #> 10987 Pama-Nyungan Western Pama-Nyungan Australia AU #> 11020 Korean Korean Eurasia KR KP #> 11049 Austronesian Chamorro Papunesia GU #> 11072 Niger-Congo Gur Africa ML #> 11088 Indo-European Indic Eurasia IN #> 11126 Songhay Songhay Africa NE ML #> 11131 Afro-Asiatic West Chadic Africa NG NE #> 11156 Hokan Yuman North America US #> 11161 Northwest Caucasian Northwest Caucasian Eurasia GE #> 11206 Afro-Asiatic Lowland East Cushitic Africa ET #> 11208 Austronesian Celebic Papunesia ID #> 11228 Arawakan Purus South America BR #> 11251 Mura Mura South America BR #> 11287 Korean Korean Eurasia KR KP #> 11300 Niger-Congo Gur Africa ML #> 11301 Northwest Caucasian Northwest Caucasian Eurasia GE #> 11318 Mura Mura South America BR #> 11321 Austronesian Celebic Papunesia ID #> 11350 Afro-Asiatic West Chadic Africa NG NE #> 11372 Afro-Asiatic Lowland East Cushitic Africa ET #> 11396 Pama-Nyungan Western Pama-Nyungan Australia AU #> 11398 Trans-New Guinea Engan Papunesia PG #> 11401 Kiowa-Tanoan Kiowa-Tanoan North America US #> 11424 Sepik Sepik Hill Papunesia PG #> 11435 Arawakan Purus South America BR #> 11439 Mura Mura South America BR #> 11446 Afro-Asiatic Lowland East Cushitic Africa ET #> 11456 Austronesian Chamorro Papunesia GU #> 11469 Trans-New Guinea Engan Papunesia PG #> 11482 Tiwian Tiwian Australia AU #> 11499 Korean Korean Eurasia KR KP #> 11516 Afro-Asiatic West Chadic Africa NG NE #> 11520 Niger-Congo Gur Africa ML #> 11526 Austronesian Celebic Papunesia ID #> 11535 Indo-European Indic Eurasia IN #> 11565 Northwest Caucasian Northwest Caucasian Eurasia GE #> 11570 Hokan Yuman North America US #> 11586 Kiowa-Tanoan Kiowa-Tanoan North America US #> 11596 Pama-Nyungan Western Pama-Nyungan Australia AU #> 11598 Sepik Sepik Hill Papunesia PG #> 11619 Austronesian Celebic Papunesia ID #> 11620 Austronesian Chamorro Papunesia GU #> 11640 Afro-Asiatic West Chadic Africa NG NE #> 11648 Arawakan Purus South America BR #> 11650 Tiwian Tiwian Australia AU #> 11655 Korean Korean Eurasia KR KP #> 11666 Niger-Congo Gur Africa ML #> 11679 Afro-Asiatic Lowland East Cushitic Africa ET #> 11690 Mura Mura South America BR #> 11695 Trans-New Guinea Engan Papunesia PG #> 11712 Kiowa-Tanoan Kiowa-Tanoan North America US #> 11717 Indo-European Indic Eurasia IN #> 11733 Hokan Yuman North America US #> 11749 Sepik Sepik Hill Papunesia PG #> 11751 Northwest Caucasian Northwest Caucasian Eurasia GE #> 11762 Pama-Nyungan Western Pama-Nyungan Australia AU #> 11792 Austronesian Celebic Papunesia ID #> 11793 Indo-European Indic Eurasia IN #> 11802 Trans-New Guinea Engan Papunesia PG #> 11804 Kiowa-Tanoan Kiowa-Tanoan North America US #> 11828 Niger-Congo Gur Africa ML #> 11849 Korean Korean Eurasia KR KP #> 11864 Arawakan Purus South America BR #> 11866 Mura Mura South America BR #> 11891 Northwest Caucasian Northwest Caucasian Eurasia GE #> 11900 Hokan Yuman North America US #> 11915 Pama-Nyungan Western Pama-Nyungan Australia AU #> 11920 Kiowa-Tanoan Kiowa-Tanoan North America US #> 12050 Afro-Asiatic West Chadic Africa NG NE #> 12060 Austronesian Chamorro Papunesia GU #> 12168 Pama-Nyungan Western Pama-Nyungan Australia AU #> 12178 Caddoan Caddoan North America US #> 12209 Iroquoian Northern Iroquoian North America US #> 12231 Muskogean Muskogean North America US #> 12369 Northwest Caucasian Northwest Caucasian Eurasia GE #> 12425 Tiwian Tiwian Australia AU #> 12442 Trans-New Guinea Engan Papunesia PG #> 12531 Korean Korean Eurasia KR KP #> 12542 Sepik Sepik Hill Papunesia PG #> 12564 Austronesian Chamorro Papunesia GU #> 12577 Caddoan Caddoan North America US #> 12589 Arawakan Purus South America BR #> 12615 Korean Korean Eurasia KR KP #> 12644 Austronesian Celebic Papunesia ID #> 12699 Tiwian Tiwian Australia AU #> 12744 Indo-European Indic Eurasia IN #> 12769 Northwest Caucasian Northwest Caucasian Eurasia GE #> 12770 Pama-Nyungan Western Pama-Nyungan Australia AU #> 12793 Hokan Yuman North America US #> 12872 Afro-Asiatic West Chadic Africa NG NE #> 12899 Iroquoian Northern Iroquoian North America US #> 12920 Mura Mura South America BR #> 12946 Trans-New Guinea Engan Papunesia PG #> 12961 Kiowa-Tanoan Kiowa-Tanoan North America US #> 12996 Niger-Congo Gur Africa ML #> 13000 Muskogean Muskogean North America US #> 13050 Afro-Asiatic Lowland East Cushitic Africa ET #> 13069 Iroquoian Northern Iroquoian North America US #> 13202 Afro-Asiatic West Chadic Africa NG NE #> 13208 Trans-New Guinea Engan Papunesia PG #> 13275 Muskogean Muskogean North America US #> 13328 Kiowa-Tanoan Kiowa-Tanoan North America US #> 13355 Korean Korean Eurasia KR KP #> 13556 Pama-Nyungan Western Pama-Nyungan Australia AU #> 13576 Northwest Caucasian Northwest Caucasian Eurasia GE #> 13602 Caddoan Caddoan North America US #> 13603 Austronesian Chamorro Papunesia GU #> 13707 Iroquoian Northern Iroquoian North America US #> 13735 Afro-Asiatic West Chadic Africa NG NE #> 13753 Muskogean Muskogean North America US #> 13759 Austronesian Celebic Papunesia ID #> 13802 Afro-Asiatic Lowland East Cushitic Africa ET #> 13811 Songhay Songhay Africa NE ML #> 13820 Austronesian Chamorro Papunesia GU #> 13821 Iroquoian Northern Iroquoian North America US #> 13824 Korean Korean Eurasia KR KP #> 13841 Indo-European Indic Eurasia IN #> 13868 Northwest Caucasian Northwest Caucasian Eurasia GE #> 13886 Sepik Sepik Hill Papunesia PG #> 13896 Niger-Congo Gur Africa ML #> 13906 Mura Mura South America BR #> 13913 Pama-Nyungan Western Pama-Nyungan Australia AU #> 13939 Mura Mura South America BR #> 14030 Korean Korean Eurasia KR KP #> 14049 Mura Mura South America BR #> 14158 Korean Korean Eurasia KR KP #> 14181 Korean Korean Eurasia KR KP #> 14258 Mura Mura South America BR #> 14346 Korean Korean Eurasia KR KP #> 14384 Mura Mura South America BR #> 14415 Songhay Songhay Africa NE ML #> 14426 Austronesian Chamorro Papunesia GU #> 14431 Afro-Asiatic Lowland East Cushitic Africa ET #> 14466 Korean Korean Eurasia KR KP #> 14479 Kiowa-Tanoan Kiowa-Tanoan North America US #> 14487 Hokan Yuman North America US #> 14493 Tiwian Tiwian Australia AU #> 14500 Mura Mura South America BR #> 14520 Niger-Congo Gur Africa ML #> 14533 Austronesian Celebic Papunesia ID #> 14534 Muskogean Muskogean North America US #> 14540 Iroquoian Northern Iroquoian North America US #> 14556 Caddoan Caddoan North America US #> 14557 Northwest Caucasian Northwest Caucasian Eurasia GE #> 14565 Pama-Nyungan Western Pama-Nyungan Australia AU #> 14568 Afro-Asiatic West Chadic Africa NG NE #> 14569 Sepik Sepik Hill Papunesia PG #> 14597 Trans-New Guinea Engan Papunesia PG #> 14599 Arawakan Purus South America BR #> 14616 Indo-European Indic Eurasia IN #> 14631 Austronesian Chamorro Papunesia GU #> 14647 Austronesian Celebic Papunesia ID #> 14648 Caddoan Caddoan North America US #> 14650 Sepik Sepik Hill Papunesia PG #> 14655 Muskogean Muskogean North America US #> 14658 Iroquoian Northern Iroquoian North America US #> 14665 Songhay Songhay Africa NE ML #> 14678 Afro-Asiatic West Chadic Africa NG NE #> 14679 Northwest Caucasian Northwest Caucasian Eurasia GE #> 14681 Arawakan Purus South America BR #> 14683 Pama-Nyungan Western Pama-Nyungan Australia AU #> 14712 Hokan Yuman North America US #> 14726 Tiwian Tiwian Australia AU #> 14743 Afro-Asiatic Lowland East Cushitic Africa ET #> 14756 Korean Korean Eurasia KR KP #> 14769 Kiowa-Tanoan Kiowa-Tanoan North America US #> 14790 Mura Mura South America BR #> 14797 Trans-New Guinea Engan Papunesia PG #> 14827 Indo-European Indic Eurasia IN #> 14860 Niger-Congo Gur Africa ML #> 14865 Tiwian Tiwian Australia AU #> 14903 Hokan Yuman North America US #> 14906 Austronesian Chamorro Papunesia GU #> 14920 Songhay Songhay Africa NE ML #> 14926 Muskogean Muskogean North America US #> 14931 Afro-Asiatic Lowland East Cushitic Africa ET #> 14955 Iroquoian Northern Iroquoian North America US #> 14957 Arawakan Purus South America BR #> 14981 Northwest Caucasian Northwest Caucasian Eurasia GE #> 14982 Mura Mura South America BR #> 14994 Caddoan Caddoan North America US #> 14999 Austronesian Celebic Papunesia ID #> 15014 Pama-Nyungan Western Pama-Nyungan Australia AU #> 15039 Trans-New Guinea Engan Papunesia PG #> 15041 Sepik Sepik Hill Papunesia PG #> 15045 Afro-Asiatic West Chadic Africa NG NE #> 15047 Indo-European Indic Eurasia IN #> 15049 Korean Korean Eurasia KR KP #> 15059 Kiowa-Tanoan Kiowa-Tanoan North America US #> 15061 Niger-Congo Gur Africa ML #> 15092 Pama-Nyungan Western Pama-Nyungan Australia AU #> 15108 Korean Korean Eurasia KR KP #> 15116 Tiwian Tiwian Australia AU #> 15118 Sepik Sepik Hill Papunesia PG #> 15120 Afro-Asiatic Lowland East Cushitic Africa ET #> 15150 Songhay Songhay Africa NE ML #> 15151 Trans-New Guinea Engan Papunesia PG #> 15161 Afro-Asiatic West Chadic Africa NG NE #> 15173 Austronesian Celebic Papunesia ID #> 15174 Iroquoian Northern Iroquoian North America US #> 15204 Mura Mura South America BR #> 15209 Caddoan Caddoan North America US #> 15210 Indo-European Indic Eurasia IN #> 15237 Muskogean Muskogean North America US #> 15243 Northwest Caucasian Northwest Caucasian Eurasia GE #> 15249 Arawakan Purus South America BR #> 15253 Kiowa-Tanoan Kiowa-Tanoan North America US #> 15291 Austronesian Chamorro Papunesia GU #> 15301 Hokan Yuman North America US #> 15306 Niger-Congo Gur Africa ML #> 15327 Afro-Asiatic Lowland East Cushitic Africa ET #> 15368 Indo-European Indic Eurasia IN #> 15404 Afro-Asiatic West Chadic Africa NG NE #> 15405 Korean Korean Eurasia KR KP #> 15417 Austronesian Chamorro Papunesia GU #> 15530 Songhay Songhay Africa NE ML #> 15538 Tiwian Tiwian Australia AU #> 15619 Caddoan Caddoan North America US #> 15631 Trans-New Guinea Engan Papunesia PG #> 15643 Sepik Sepik Hill Papunesia PG #> 15644 Indo-European Indic Eurasia IN #> 15668 Muskogean Muskogean North America US #> 15671 Mura Mura South America BR #> 15710 Arawakan Purus South America BR #> 15742 Austronesian Chamorro Papunesia GU #> 15758 Northwest Caucasian Northwest Caucasian Eurasia GE #> 15837 Niger-Congo Gur Africa ML #> 15894 Pama-Nyungan Western Pama-Nyungan Australia AU #> 15976 Iroquoian Northern Iroquoian North America US #> 15996 Austronesian Celebic Papunesia ID #> 16024 Tiwian Tiwian Australia AU #> 16061 Hokan Yuman North America US #> 16173 Indo-European Indic Eurasia IN #> 16187 Korean Korean Eurasia KR KP #> 16216 Afro-Asiatic West Chadic Africa NG NE #> 16235 Austronesian Celebic Papunesia ID #> 16264 Mura Mura South America BR #> 16331 Indo-European Indic Eurasia IN #> 16350 Tiwian Tiwian Australia AU #> 16391 Arawakan Purus South America BR #> 16477 Austronesian Celebic Papunesia ID #> 16509 Songhay Songhay Africa NE ML #> 16512 Pama-Nyungan Western Pama-Nyungan Australia AU #> 16616 Sepik Sepik Hill Papunesia PG #> 16679 Austronesian Chamorro Papunesia GU #> 16780 Caddoan Caddoan North America US #> 16781 Korean Korean Eurasia KR KP #> 16812 Northwest Caucasian Northwest Caucasian Eurasia GE #> 16826 Hokan Yuman North America US #> 16898 Afro-Asiatic Lowland East Cushitic Africa ET #> 16923 Kiowa-Tanoan Kiowa-Tanoan North America US #> 16943 Afro-Asiatic West Chadic Africa NG NE #> 16953 Niger-Congo Gur Africa ML #> 17008 Iroquoian Northern Iroquoian North America US #> 17283 Trans-New Guinea Engan Papunesia PG #> 17396 Muskogean Muskogean North America US #> 17510 Mura Mura South America BR #> 17672 Kiowa-Tanoan Kiowa-Tanoan North America US #> 17687 Hokan Yuman North America US #> 17711 Afro-Asiatic Lowland East Cushitic Africa ET #> 17719 Afro-Asiatic West Chadic Africa NG NE #> 17733 Iroquoian Northern Iroquoian North America US #> 17761 Niger-Congo Gur Africa ML #> 17840 Pama-Nyungan Western Pama-Nyungan Australia AU #> 17848 Indo-European Indic Eurasia IN #> 17885 Arawakan Purus South America BR #> 17920 Sepik Sepik Hill Papunesia PG #> 17934 Afro-Asiatic West Chadic Africa NG NE #> 17948 Korean Korean Eurasia KR KP #> 17974 Songhay Songhay Africa NE ML #> 17994 Caddoan Caddoan North America US #> 18000 Kiowa-Tanoan Kiowa-Tanoan North America US #> 18022 Niger-Congo Gur Africa ML #> 18232 Tiwian Tiwian Australia AU #> 18278 Austronesian Chamorro Papunesia GU #> 18416 Austronesian Celebic Papunesia ID #> 18514 Northwest Caucasian Northwest Caucasian Eurasia GE #> 18570 Afro-Asiatic Lowland East Cushitic Africa ET #> 18627 Trans-New Guinea Engan Papunesia PG #> 18630 Hokan Yuman North America US #> 18717 Iroquoian Northern Iroquoian North America US #> 18885 Muskogean Muskogean North America US #> 18922 Mura Mura South America BR #> 19221 Niger-Congo Gur Africa ML #> 19281 Afro-Asiatic West Chadic Africa NG NE #> 19425 Mura Mura South America BR #> 19472 Hokan Yuman North America US #> 19476 Kiowa-Tanoan Kiowa-Tanoan North America US #> 19613 Northwest Caucasian Northwest Caucasian Eurasia GE #> 19699 Muskogean Muskogean North America US #> 19758 Austronesian Celebic Papunesia ID #> 19776 Songhay Songhay Africa NE ML #> 19779 Korean Korean Eurasia KR KP #> 19903 Indo-European Indic Eurasia IN #> 19944 Trans-New Guinea Engan Papunesia PG #> 20079 Austronesian Chamorro Papunesia GU #> 20105 Pama-Nyungan Western Pama-Nyungan Australia AU #> 20152 Sepik Sepik Hill Papunesia PG #> 20178 Iroquoian Northern Iroquoian North America US #> 20314 Arawakan Purus South America BR #> 20379 Tiwian Tiwian Australia AU #> 20428 Caddoan Caddoan North America US #> 20436 Afro-Asiatic Lowland East Cushitic Africa ET #> 20457 Afro-Asiatic Lowland East Cushitic Africa ET #> 20465 Austronesian Celebic Papunesia ID #> 20641 Korean Korean Eurasia KR KP #> 20671 Trans-New Guinea Engan Papunesia PG #> 20673 Pama-Nyungan Western Pama-Nyungan Australia AU #> 20695 Kiowa-Tanoan Kiowa-Tanoan North America US #> 20764 Niger-Congo Gur Africa ML #> 20798 Mura Mura South America BR #> 20957 Sepik Sepik Hill Papunesia PG #> 20980 Indo-European Indic Eurasia IN #> 21074 Tiwian Tiwian Australia AU #> 21138 Northwest Caucasian Northwest Caucasian Eurasia GE #> 21255 Caddoan Caddoan North America US #> 21291 Afro-Asiatic West Chadic Africa NG NE #> 21331 Muskogean Muskogean North America US #> 21539 Austronesian Chamorro Papunesia GU #> 21637 Hokan Yuman North America US #> 21657 Arawakan Purus South America BR #> 21660 Songhay Songhay Africa NE ML #> 21684 Iroquoian Northern Iroquoian North America US #> 21794 Austronesian Celebic Papunesia ID #> 21842 Arawakan Purus South America BR #> 21854 Caddoan Caddoan North America US #> 21917 Kiowa-Tanoan Kiowa-Tanoan North America US #> 21928 Hokan Yuman North America US #> 21983 Afro-Asiatic Lowland East Cushitic Africa ET #> 22022 Niger-Congo Gur Africa ML #> 22047 Afro-Asiatic West Chadic Africa NG NE #> 22123 Pama-Nyungan Western Pama-Nyungan Australia AU #> 22178 Tiwian Tiwian Australia AU #> 22220 Mura Mura South America BR #> 22284 Trans-New Guinea Engan Papunesia PG #> 22315 Northwest Caucasian Northwest Caucasian Eurasia GE #> 22451 Muskogean Muskogean North America US #> 22621 Iroquoian Northern Iroquoian North America US #> 22785 Songhay Songhay Africa NE ML #> 22798 Indo-European Indic Eurasia IN #> 22829 Korean Korean Eurasia KR KP #> 22856 Sepik Sepik Hill Papunesia PG #> 22936 Austronesian Chamorro Papunesia GU #> 22968 Kiowa-Tanoan Kiowa-Tanoan North America US #> 22997 Caddoan Caddoan North America US #> 23024 Songhay Songhay Africa NE ML #> 23028 Tiwian Tiwian Australia AU #> 23034 Sepik Sepik Hill Papunesia PG #> 23059 Korean Korean Eurasia KR KP #> 23112 Iroquoian Northern Iroquoian North America US #> 23115 Indo-European Indic Eurasia IN #> 23125 Pama-Nyungan Western Pama-Nyungan Australia AU #> 23243 Afro-Asiatic West Chadic Africa NG NE #> 23275 Austronesian Chamorro Papunesia GU #> 23342 Austronesian Celebic Papunesia ID #> 23448 Niger-Congo Gur Africa ML #> 23649 Arawakan Purus South America BR #> 23777 Afro-Asiatic West Chadic Africa NG NE #> 23822 Pama-Nyungan Western Pama-Nyungan Australia AU #> 23861 Tiwian Tiwian Australia AU #> 24090 Arawakan Purus South America BR #> 24175 Afro-Asiatic West Chadic Africa NG NE #> 24212 Arawakan Purus South America BR #> 24272 Afro-Asiatic West Chadic Africa NG NE #> 24297 Tiwian Tiwian Australia AU #> 24549 Pama-Nyungan Western Pama-Nyungan Australia AU #> 24640 Arawakan Purus South America BR #> 24661 Pama-Nyungan Western Pama-Nyungan Australia AU #> 24664 Tiwian Tiwian Australia AU #> 24838 Afro-Asiatic West Chadic Africa NG NE #> 25213 Afro-Asiatic West Chadic Africa NG NE #> 25390 Pama-Nyungan Western Pama-Nyungan Australia AU #> 25447 Tiwian Tiwian Australia AU #> 25475 Arawakan Purus South America BR #> 25620 Afro-Asiatic West Chadic Africa NG NE #> 25685 Arawakan Purus South America BR #> 25704 Tiwian Tiwian Australia AU #> 25874 Pama-Nyungan Western Pama-Nyungan Australia AU #> 26034 Caddoan Caddoan North America US #> 26054 Northwest Caucasian Northwest Caucasian Eurasia GE #> 26064 Kiowa-Tanoan Kiowa-Tanoan North America US #> 26068 Afro-Asiatic Lowland East Cushitic Africa ET #> 26084 Hokan Yuman North America US #> 26111 Niger-Congo Gur Africa ML #> 26167 Songhay Songhay Africa NE ML #> 26235 Indo-European Indic Eurasia IN #> 26240 Korean Korean Eurasia KR KP #> 26253 Sepik Sepik Hill Papunesia PG #> 26366 Trans-New Guinea Engan Papunesia PG #> 26416 Muskogean Muskogean North America US #> 26464 Mura Mura South America BR #> 26519 Caddoan Caddoan North America US #> 26556 Northwest Caucasian Northwest Caucasian Eurasia GE #> 26588 Kiowa-Tanoan Kiowa-Tanoan North America US #> 26594 Hokan Yuman North America US #> 26606 Afro-Asiatic Lowland East Cushitic Africa ET #> 26624 Niger-Congo Gur Africa ML #> 26651 Caddoan Caddoan North America US #> 26659 Kiowa-Tanoan Kiowa-Tanoan North America US #> 26669 Indo-European Indic Eurasia IN #> 26720 Mura Mura South America BR #> 26726 Korean Korean Eurasia KR KP #> 26740 Sepik Sepik Hill Papunesia PG #> 26797 Afro-Asiatic Lowland East Cushitic Africa ET #> 26803 Songhay Songhay Africa NE ML #> 26813 Trans-New Guinea Engan Papunesia PG #> 26853 Muskogean Muskogean North America US #> 26971 Northwest Caucasian Northwest Caucasian Eurasia GE #> 26996 Hokan Yuman North America US #> 26997 Niger-Congo Gur Africa ML #> 27066 Songhay Songhay Africa NE ML #> 27086 Niger-Congo Gur Africa ML #> 27103 Afro-Asiatic Lowland East Cushitic Africa ET #> 27114 Trans-New Guinea Engan Papunesia PG #> 27115 Northwest Caucasian Northwest Caucasian Eurasia GE #> 27231 Indo-European Indic Eurasia IN #> 27232 Muskogean Muskogean North America US #> 27283 Korean Korean Eurasia KR KP #> 27346 Sepik Sepik Hill Papunesia PG #> 27401 Kiowa-Tanoan Kiowa-Tanoan North America US #> 27407 Hokan Yuman North America US #> 27416 Caddoan Caddoan North America US #> 27431 Mura Mura South America BR #> 27471 Sepik Sepik Hill Papunesia PG #> 27481 Indo-European Indic Eurasia IN #> 27521 Korean Korean Eurasia KR KP #> 27546 Northwest Caucasian Northwest Caucasian Eurasia GE #> 27564 Trans-New Guinea Engan Papunesia PG #> 27607 Afro-Asiatic Lowland East Cushitic Africa ET #> 27625 Hokan Yuman North America US #> 27703 Kiowa-Tanoan Kiowa-Tanoan North America US #> 27729 Caddoan Caddoan North America US #> 27746 Muskogean Muskogean North America US #> 27751 Mura Mura South America BR #> 27788 Niger-Congo Gur Africa ML #> 27824 Songhay Songhay Africa NE ML #> 27941 Sepik Sepik Hill Papunesia PG #> 27942 Caddoan Caddoan North America US #> 27958 Trans-New Guinea Engan Papunesia PG #> 28006 Afro-Asiatic Lowland East Cushitic Africa ET #> 28050 Korean Korean Eurasia KR KP #> 28064 Songhay Songhay Africa NE ML #> 28103 Indo-European Indic Eurasia IN #> 28215 Mura Mura South America BR #> 28226 Muskogean Muskogean North America US #> 28247 Northwest Caucasian Northwest Caucasian Eurasia GE #> 28293 Niger-Congo Gur Africa ML #> 28317 Hokan Yuman North America US #> 28323 Kiowa-Tanoan Kiowa-Tanoan North America US #> 28388 Austronesian Chamorro Papunesia GU #> 28444 Iroquoian Northern Iroquoian North America US #> 28466 Austronesian Celebic Papunesia ID #> 28513 Iroquoian Northern Iroquoian North America US #> 28577 Iroquoian Northern Iroquoian North America US #> 28625 Austronesian Celebic Papunesia ID #> 28628 Austronesian Chamorro Papunesia GU #> 28694 Austronesian Celebic Papunesia ID #> 28720 Iroquoian Northern Iroquoian North America US #> 28764 Austronesian Chamorro Papunesia GU #> 28880 Austronesian Celebic Papunesia ID #> 28962 Austronesian Chamorro Papunesia GU #> 28966 Iroquoian Northern Iroquoian North America US #> 28993 Caddoan Caddoan North America US #> 29047 Muskogean Muskogean North America US #> 29058 Arawakan Purus South America BR #> 29100 Mura Mura South America BR #> 29114 Austronesian Chamorro Papunesia GU #> 29115 Indo-European Indic Eurasia IN #> 29134 Caddoan Caddoan North America US #> 29183 Sepik Sepik Hill Papunesia PG #> 29188 Northwest Caucasian Northwest Caucasian Eurasia GE #> 29213 Trans-New Guinea Engan Papunesia PG #> 29242 Tiwian Tiwian Australia AU #> 29297 Pama-Nyungan Western Pama-Nyungan Australia AU #> 29308 Iroquoian Northern Iroquoian North America US #> 29370 Hokan Yuman North America US #> 29405 Niger-Congo Gur Africa ML #> 29416 Austronesian Celebic Papunesia ID #> 29553 Iroquoian Northern Iroquoian North America US #> 29589 Hokan Yuman North America US #> 29701 Austronesian Celebic Papunesia ID #> 29705 Tiwian Tiwian Australia AU #> 29742 Niger-Congo Gur Africa ML #> 29759 Pama-Nyungan Western Pama-Nyungan Australia AU #> 29785 Muskogean Muskogean North America US #> 29804 Arawakan Purus South America BR #> 29836 Austronesian Chamorro Papunesia GU #> 29865 Indo-European Indic Eurasia IN #> 29904 Sepik Sepik Hill Papunesia PG #> 29906 Caddoan Caddoan North America US #> 29926 Northwest Caucasian Northwest Caucasian Eurasia GE #> 29945 Trans-New Guinea Engan Papunesia PG #> 29987 Mura Mura South America BR #> 30011 Arawakan Purus South America BR #> 30030 Tiwian Tiwian Australia AU #> 30095 Pama-Nyungan Western Pama-Nyungan Australia AU #> 30123 Austronesian Celebic Papunesia ID #> 30180 Caddoan Caddoan North America US #> 30192 Austronesian Chamorro Papunesia GU #> 30239 Iroquoian Northern Iroquoian North America US #> 30279 Trans-New Guinea Engan Papunesia PG #> 30299 Hokan Yuman North America US #> 30497 Muskogean Muskogean North America US #> 30502 Austronesian Chamorro Papunesia GU #> 30548 Songhay Songhay Africa NE ML #> 30582 Tiwian Tiwian Australia AU #> 30610 Trans-New Guinea Engan Papunesia PG #> 30621 Korean Korean Eurasia KR KP #> 30655 Afro-Asiatic West Chadic Africa NG NE #> 30662 Indo-European Indic Eurasia IN #> 30669 Sepik Sepik Hill Papunesia PG #> 30670 Hokan Yuman North America US #> 30718 Niger-Congo Gur Africa ML #> 30731 Kiowa-Tanoan Kiowa-Tanoan North America US #> 30744 Afro-Asiatic Lowland East Cushitic Africa ET #> 30756 Austronesian Celebic Papunesia ID #> 30787 Arawakan Purus South America BR #> 30796 Northwest Caucasian Northwest Caucasian Eurasia GE #> 30821 Caddoan Caddoan North America US #> 30822 Iroquoian Northern Iroquoian North America US #> 30856 Pama-Nyungan Western Pama-Nyungan Australia AU #> 30877 Mura Mura South America BR #> 30914 Mura Mura South America BR #> 30915 Afro-Asiatic Lowland East Cushitic Africa ET #> 30961 Trans-New Guinea Engan Papunesia PG #> 30968 Afro-Asiatic West Chadic Africa NG NE #> 30974 Iroquoian Northern Iroquoian North America US #> 30986 Niger-Congo Gur Africa ML #> 31014 Pama-Nyungan Western Pama-Nyungan Australia AU #> 31021 Songhay Songhay Africa NE ML #> 31041 Sepik Sepik Hill Papunesia PG #> 31062 Kiowa-Tanoan Kiowa-Tanoan North America US #> 31091 Muskogean Muskogean North America US #> 31161 Indo-European Indic Eurasia IN #> 31219 Austronesian Chamorro Papunesia GU #> 31243 Arawakan Purus South America BR #> 31246 Tiwian Tiwian Australia AU #> 31311 Caddoan Caddoan North America US #> 31317 Korean Korean Eurasia KR KP #> 31329 Austronesian Celebic Papunesia ID #> 31388 Northwest Caucasian Northwest Caucasian Eurasia GE #> 31431 Hokan Yuman North America US #> 31489 Iroquoian Northern Iroquoian North America US #> 31490 Muskogean Muskogean North America US #> 31527 Caddoan Caddoan North America US #> 31532 Northwest Caucasian Northwest Caucasian Eurasia GE #> 31539 Mura Mura South America BR #> 31540 Tiwian Tiwian Australia AU #> 31543 Pama-Nyungan Western Pama-Nyungan Australia AU #> 31564 Songhay Songhay Africa NE ML #> 31574 Hokan Yuman North America US #> 31633 Kiowa-Tanoan Kiowa-Tanoan North America US #> 31659 Indo-European Indic Eurasia IN #> 31665 Afro-Asiatic West Chadic Africa NG NE #> 31675 Austronesian Chamorro Papunesia GU #> 31676 Trans-New Guinea Engan Papunesia PG #> 31716 Afro-Asiatic Lowland East Cushitic Africa ET #> 31763 Arawakan Purus South America BR #> 31783 Austronesian Celebic Papunesia ID #> 31877 Niger-Congo Gur Africa ML #> 31907 Sepik Sepik Hill Papunesia PG #> 31917 Korean Korean Eurasia KR KP #> 32031 Korean Korean Eurasia KR KP #> 32036 Muskogean Muskogean North America US #> 32039 Iroquoian Northern Iroquoian North America US #> 32062 Hokan Yuman North America US #> 32071 Pama-Nyungan Western Pama-Nyungan Australia AU #> 32074 Indo-European Indic Eurasia IN #> 32075 Tiwian Tiwian Australia AU #> 32077 Sepik Sepik Hill Papunesia PG #> 32097 Trans-New Guinea Engan Papunesia PG #> 32105 Arawakan Purus South America BR #> 32109 Northwest Caucasian Northwest Caucasian Eurasia GE #> 32116 Caddoan Caddoan North America US #> 32126 Kiowa-Tanoan Kiowa-Tanoan North America US #> 32129 Afro-Asiatic Lowland East Cushitic Africa ET #> 32140 Mura Mura South America BR #> 32142 Niger-Congo Gur Africa ML #> 32148 Afro-Asiatic West Chadic Africa NG NE #> 32179 Austronesian Celebic Papunesia ID #> 32180 Austronesian Chamorro Papunesia GU #> 32181 Indo-European Indic Eurasia IN #> 32205 Afro-Asiatic Lowland East Cushitic Africa ET #> 32213 Korean Korean Eurasia KR KP #> 32219 Hokan Yuman North America US #> 32223 Muskogean Muskogean North America US #> 32226 Trans-New Guinea Engan Papunesia PG #> 32227 Pama-Nyungan Western Pama-Nyungan Australia AU #> 32251 Caddoan Caddoan North America US #> 32265 Austronesian Celebic Papunesia ID #> 32286 Mura Mura South America BR #> 32290 Arawakan Purus South America BR #> 32297 Kiowa-Tanoan Kiowa-Tanoan North America US #> 32306 Iroquoian Northern Iroquoian North America US #> 32310 Tiwian Tiwian Australia AU #> 32319 Northwest Caucasian Northwest Caucasian Eurasia GE #> 32324 Niger-Congo Gur Africa ML #> 32325 Austronesian Chamorro Papunesia GU #> 32336 Sepik Sepik Hill Papunesia PG #> 32341 Afro-Asiatic West Chadic Africa NG NE #> 32366 Caddoan Caddoan North America US #> 32368 Pama-Nyungan Western Pama-Nyungan Australia AU #> 32405 Kiowa-Tanoan Kiowa-Tanoan North America US #> 32415 Mura Mura South America BR #> 32417 Hokan Yuman North America US #> 32422 Northwest Caucasian Northwest Caucasian Eurasia GE #> 32430 Niger-Congo Gur Africa ML #> 32445 Sepik Sepik Hill Papunesia PG #> 32447 Muskogean Muskogean North America US #> 32450 Afro-Asiatic Lowland East Cushitic Africa ET #> 32455 Iroquoian Northern Iroquoian North America US #> 32456 Afro-Asiatic West Chadic Africa NG NE #> 32457 Korean Korean Eurasia KR KP #> 32467 Arawakan Purus South America BR #> 32470 Austronesian Celebic Papunesia ID #> 32472 Indo-European Indic Eurasia IN #> 32473 Austronesian Chamorro Papunesia GU #> 32492 Trans-New Guinea Engan Papunesia PG #> 32499 Tiwian Tiwian Australia AU #> 32513 Indo-European Indic Eurasia IN #> 32529 Pama-Nyungan Western Pama-Nyungan Australia AU #> 32531 Niger-Congo Gur Africa ML #> 32571 Tiwian Tiwian Australia AU #> 32585 Afro-Asiatic West Chadic Africa NG NE #> 32586 Arawakan Purus South America BR #> 32587 Korean Korean Eurasia KR KP #> 32591 Austronesian Chamorro Papunesia GU #> 32602 Trans-New Guinea Engan Papunesia PG #> 32606 Austronesian Celebic Papunesia ID #> 32610 Afro-Asiatic Lowland East Cushitic Africa ET #> 32617 Mura Mura South America BR #> 32629 Kiowa-Tanoan Kiowa-Tanoan North America US #> 32632 Iroquoian Northern Iroquoian North America US #> 32633 Hokan Yuman North America US #> 32643 Northwest Caucasian Northwest Caucasian Eurasia GE #> 32644 Sepik Sepik Hill Papunesia PG #> 32646 Muskogean Muskogean North America US #> 32647 Caddoan Caddoan North America US #> 32657 Sepik Sepik Hill Papunesia PG #> 32659 Northwest Caucasian Northwest Caucasian Eurasia GE #> 32661 Caddoan Caddoan North America US #> 32670 Kiowa-Tanoan Kiowa-Tanoan North America US #> 32680 Tiwian Tiwian Australia AU #> 32698 Arawakan Purus South America BR #> 32702 Iroquoian Northern Iroquoian North America US #> 32721 Trans-New Guinea Engan Papunesia PG #> 32727 Korean Korean Eurasia KR KP #> 32764 Austronesian Chamorro Papunesia GU #> 32774 Pama-Nyungan Western Pama-Nyungan Australia AU #> 32791 Afro-Asiatic West Chadic Africa NG NE #> 32795 Indo-European Indic Eurasia IN #> 32809 Muskogean Muskogean North America US #> 32824 Hokan Yuman North America US #> 32845 Mura Mura South America BR #> 32849 Niger-Congo Gur Africa ML #> 32853 Austronesian Celebic Papunesia ID #> 32861 Afro-Asiatic Lowland East Cushitic Africa ET #> 32893 Arawakan Purus South America BR #> 32910 Caddoan Caddoan North America US #> 32913 Hokan Yuman North America US #> 32919 Muskogean Muskogean North America US #> 32935 Austronesian Chamorro Papunesia GU #> 32942 Northwest Caucasian Northwest Caucasian Eurasia GE #> 32950 Kiowa-Tanoan Kiowa-Tanoan North America US #> 32959 Iroquoian Northern Iroquoian North America US #> 32961 Niger-Congo Gur Africa ML #> 32990 Austronesian Celebic Papunesia ID #> 33020 Trans-New Guinea Engan Papunesia PG #> 33021 Sepik Sepik Hill Papunesia PG #> 33025 Afro-Asiatic West Chadic Africa NG NE #> 33045 Pama-Nyungan Western Pama-Nyungan Australia AU #> 33054 Indo-European Indic Eurasia IN #> 33055 Korean Korean Eurasia KR KP #> 33104 Tiwian Tiwian Australia AU #> 33106 Mura Mura South America BR #> 33117 Afro-Asiatic Lowland East Cushitic Africa ET #> 33131 Caddoan Caddoan North America US #> 33141 Iroquoian Northern Iroquoian North America US #> 33144 Northwest Caucasian Northwest Caucasian Eurasia GE #> 33151 Arawakan Purus South America BR #> 33180 Trans-New Guinea Engan Papunesia PG #> 33195 Korean Korean Eurasia KR KP #> 33201 Pama-Nyungan Western Pama-Nyungan Australia AU #> 33234 Mura Mura South America BR #> 33249 Austronesian Celebic Papunesia ID #> 33267 Hokan Yuman North America US #> 33275 Kiowa-Tanoan Kiowa-Tanoan North America US #> 33278 Tiwian Tiwian Australia AU #> 33289 Afro-Asiatic Lowland East Cushitic Africa ET #> 33291 Niger-Congo Gur Africa ML #> 33299 Sepik Sepik Hill Papunesia PG #> 33310 Indo-European Indic Eurasia IN #> 33318 Afro-Asiatic West Chadic Africa NG NE #> 33337 Austronesian Chamorro Papunesia GU #> 33346 Muskogean Muskogean North America US #> 33358 Niger-Congo Gur Africa ML #> 33362 Mura Mura South America BR #> 33374 Austronesian Chamorro Papunesia GU #> 33388 Pama-Nyungan Western Pama-Nyungan Australia AU #> 33413 Tiwian Tiwian Australia AU #> 33429 Kiowa-Tanoan Kiowa-Tanoan North America US #> 33436 Caddoan Caddoan North America US #> 33448 Austronesian Celebic Papunesia ID #> 33450 Korean Korean Eurasia KR KP #> 33454 Afro-Asiatic Lowland East Cushitic Africa ET #> 33473 Northwest Caucasian Northwest Caucasian Eurasia GE #> 33484 Indo-European Indic Eurasia IN #> 33538 Arawakan Purus South America BR #> 33546 Sepik Sepik Hill Papunesia PG #> 33569 Iroquoian Northern Iroquoian North America US #> 33570 Muskogean Muskogean North America US #> 33573 Trans-New Guinea Engan Papunesia PG #> 33574 Hokan Yuman North America US #> 33584 Afro-Asiatic West Chadic Africa NG NE #> 33592 Songhay Songhay Africa NE ML #> 33682 Afro-Asiatic West Chadic Africa NG NE #> 33718 Austronesian Chamorro Papunesia GU #> 33743 Indo-European Indic Eurasia IN #> 33859 Afro-Asiatic Lowland East Cushitic Africa ET #> 33953 Pama-Nyungan Western Pama-Nyungan Australia AU #> 34015 Trans-New Guinea Engan Papunesia PG #> 34018 Sepik Sepik Hill Papunesia PG #> 34028 Korean Korean Eurasia KR KP #> 34112 Mura Mura South America BR #> 34139 Niger-Congo Gur Africa ML #> 34305 Muskogean Muskogean North America US #> 34311 Northwest Caucasian Northwest Caucasian Eurasia GE #> 34327 Hokan Yuman North America US #> 34365 Kiowa-Tanoan Kiowa-Tanoan North America US #> 34371 Arawakan Purus South America BR #> 34463 Caddoan Caddoan North America US #> 34467 Iroquoian Northern Iroquoian North America US #> 34486 Austronesian Celebic Papunesia ID #> 34543 Tiwian Tiwian Australia AU #> 34565 Northwest Caucasian Northwest Caucasian Eurasia GE #> 34640 Austronesian Celebic Papunesia ID #> 34648 Indo-European Indic Eurasia IN #> 34702 Korean Korean Eurasia KR KP #> 34739 Tiwian Tiwian Australia AU #> 34742 Afro-Asiatic West Chadic Africa NG NE #> 34763 Sepik Sepik Hill Papunesia PG #> 34764 Afro-Asiatic Lowland East Cushitic Africa ET #> 34769 Muskogean Muskogean North America US #> 34775 Hokan Yuman North America US #> 34821 Austronesian Chamorro Papunesia GU #> 34853 Pama-Nyungan Western Pama-Nyungan Australia AU #> 34875 Caddoan Caddoan North America US #> 34903 Mura Mura South America BR #> 34922 Arawakan Purus South America BR #> 34924 Kiowa-Tanoan Kiowa-Tanoan North America US #> 34925 Iroquoian Northern Iroquoian North America US #> 34937 Korean Korean Eurasia KR KP #> 34941 Songhay Songhay Africa NE ML #> 34942 Arawakan Purus South America BR #> 34961 Tiwian Tiwian Australia AU #> 34995 Trans-New Guinea Engan Papunesia PG #> 34996 Niger-Congo Gur Africa ML #> 34997 Austronesian Celebic Papunesia ID #> 35002 Northwest Caucasian Northwest Caucasian Eurasia GE #> 35009 Sepik Sepik Hill Papunesia PG #> 35015 Kiowa-Tanoan Kiowa-Tanoan North America US #> 35028 Caddoan Caddoan North America US #> 35041 Austronesian Chamorro Papunesia GU #> 35045 Mura Mura South America BR #> 35056 Afro-Asiatic Lowland East Cushitic Africa ET #> 35075 Indo-European Indic Eurasia IN #> 35086 Pama-Nyungan Western Pama-Nyungan Australia AU #> 35105 Afro-Asiatic West Chadic Africa NG NE #> 35117 Hokan Yuman North America US #> 35124 Muskogean Muskogean North America US #> 35131 Mura Mura South America BR #> 35134 Afro-Asiatic West Chadic Africa NG NE #> 35139 Korean Korean Eurasia KR KP #> 35145 Pama-Nyungan Western Pama-Nyungan Australia AU #> 35158 Niger-Congo Gur Africa ML #> 35161 Songhay Songhay Africa NE ML #> 35194 Kiowa-Tanoan Kiowa-Tanoan North America US #> 35204 Indo-European Indic Eurasia IN #> 35209 Tiwian Tiwian Australia AU #> 35225 Afro-Asiatic Lowland East Cushitic Africa ET #> 35240 Trans-New Guinea Engan Papunesia PG #> 35251 Sepik Sepik Hill Papunesia PG #> 35256 Austronesian Chamorro Papunesia GU #> 35274 Austronesian Celebic Papunesia ID #> 35282 Muskogean Muskogean North America US #> 35286 Arawakan Purus South America BR #> 35297 Caddoan Caddoan North America US #> 35307 Hokan Yuman North America US #> 35312 Iroquoian Northern Iroquoian North America US #> 35318 Northwest Caucasian Northwest Caucasian Eurasia GE #> 35382 Iroquoian Northern Iroquoian North America US #> 35414 Mura Mura South America BR #> 35431 Korean Korean Eurasia KR KP #> 35471 Sepik Sepik Hill Papunesia PG #> 35492 Caddoan Caddoan North America US #> 35499 Songhay Songhay Africa NE ML #> 35528 Kiowa-Tanoan Kiowa-Tanoan North America US #> 35547 Trans-New Guinea Engan Papunesia PG #> 35574 Austronesian Chamorro Papunesia GU #> 35647 Arawakan Purus South America BR #> 35695 Austronesian Celebic Papunesia ID #> 35699 Niger-Congo Gur Africa ML #> 35723 Indo-European Indic Eurasia IN #> 35740 Afro-Asiatic Lowland East Cushitic Africa ET #> 35742 Afro-Asiatic West Chadic Africa NG NE #> 35764 Tiwian Tiwian Australia AU #> 35813 Hokan Yuman North America US #> 35814 Muskogean Muskogean North America US #> 35831 Pama-Nyungan Western Pama-Nyungan Australia AU #> 35868 Northwest Caucasian Northwest Caucasian Eurasia GE #> 35903 Austronesian Celebic Papunesia ID #> 35904 Muskogean Muskogean North America US #> 35944 Hokan Yuman North America US #> 35954 Austronesian Chamorro Papunesia GU #> 35958 Trans-New Guinea Engan Papunesia PG #> 35971 Caddoan Caddoan North America US #> 35975 Pama-Nyungan Western Pama-Nyungan Australia AU #> 36019 Songhay Songhay Africa NE ML #> 36033 Sepik Sepik Hill Papunesia PG #> 36035 Afro-Asiatic West Chadic Africa NG NE #> 36039 Arawakan Purus South America BR #> 36048 Tiwian Tiwian Australia AU #> 36057 Afro-Asiatic Lowland East Cushitic Africa ET #> 36064 Indo-European Indic Eurasia IN #> 36090 Iroquoian Northern Iroquoian North America US #> 36103 Northwest Caucasian Northwest Caucasian Eurasia GE #> 36114 Mura Mura South America BR #> 36129 Niger-Congo Gur Africa ML #> 36163 Muskogean Muskogean North America US #> 36186 Pama-Nyungan Western Pama-Nyungan Australia AU #> 36187 Austronesian Celebic Papunesia ID #> 36188 Trans-New Guinea Engan Papunesia PG #> 36210 Caddoan Caddoan North America US #> 36232 Songhay Songhay Africa NE ML #> 36243 Hokan Yuman North America US #> 36263 Austronesian Chamorro Papunesia GU #> 36295 Arawakan Purus South America BR #> 36297 Afro-Asiatic Lowland East Cushitic Africa ET #> 36320 Mura Mura South America BR #> 36332 Northwest Caucasian Northwest Caucasian Eurasia GE #> 36336 Tiwian Tiwian Australia AU #> 36338 Indo-European Indic Eurasia IN #> 36355 Afro-Asiatic West Chadic Africa NG NE #> 36364 Sepik Sepik Hill Papunesia PG #> 36369 Iroquoian Northern Iroquoian North America US #> 36391 Niger-Congo Gur Africa ML #> 36417 Muskogean Muskogean North America US #> 36448 Austronesian Celebic Papunesia ID #> 36462 Caddoan Caddoan North America US #> 36480 Hokan Yuman North America US #> 36486 Pama-Nyungan Western Pama-Nyungan Australia AU #> 36521 Trans-New Guinea Engan Papunesia PG #> 36526 Austronesian Chamorro Papunesia GU #> 36530 Songhay Songhay Africa NE ML #> 36552 Tiwian Tiwian Australia AU #> 36560 Mura Mura South America BR #> 36564 Sepik Sepik Hill Papunesia PG #> 36568 Iroquoian Northern Iroquoian North America US #> 36571 Northwest Caucasian Northwest Caucasian Eurasia GE #> 36601 Afro-Asiatic West Chadic Africa NG NE #> 36618 Niger-Congo Gur Africa ML #> 36644 Arawakan Purus South America BR #> 36650 Afro-Asiatic Lowland East Cushitic Africa ET #> 36656 Indo-European Indic Eurasia IN #> 36786 Indo-European Indic Eurasia IN #> 36837 Trans-New Guinea Engan Papunesia PG #> 36849 Northwest Caucasian Northwest Caucasian Eurasia GE #> 36866 Tiwian Tiwian Australia AU #> 36910 Pama-Nyungan Western Pama-Nyungan Australia AU #> 36965 Niger-Congo Gur Africa ML #> 37051 Afro-Asiatic West Chadic Africa NG NE #> 37075 Arawakan Purus South America BR #> 37205 Kiowa-Tanoan Kiowa-Tanoan North America US #> 37287 Korean Korean Eurasia KR KP #> 37299 Hokan Yuman North America US #> 37354 Iroquoian Northern Iroquoian North America US #> 37500 Austronesian Chamorro Papunesia GU #> 37575 Muskogean Muskogean North America US #> 37590 Songhay Songhay Africa NE ML #> 37609 Sepik Sepik Hill Papunesia PG #> 37640 Afro-Asiatic Lowland East Cushitic Africa ET #> 37663 Mura Mura South America BR #> 37666 Caddoan Caddoan North America US #> 37704 Austronesian Celebic Papunesia ID #> 37728 Mura Mura South America BR #> 37762 Afro-Asiatic Lowland East Cushitic Africa ET #> 37766 Muskogean Muskogean North America US #> 37767 Austronesian Chamorro Papunesia GU #> 37772 Hokan Yuman North America US #> 37812 Tiwian Tiwian Australia AU #> 37893 Niger-Congo Gur Africa ML #> 37911 Sepik Sepik Hill Papunesia PG #> 37916 Arawakan Purus South America BR #> 37921 Indo-European Indic Eurasia IN #> 37928 Afro-Asiatic West Chadic Africa NG NE #> 37998 Northwest Caucasian Northwest Caucasian Eurasia GE #> 38019 Mura Mura South America BR #> 38020 Iroquoian Northern Iroquoian North America US #> 38024 Kiowa-Tanoan Kiowa-Tanoan North America US #> 38025 Hokan Yuman North America US #> 38031 Muskogean Muskogean North America US #> 38036 Caddoan Caddoan North America US #> 38044 Arawakan Purus South America BR #> 38071 Austronesian Celebic Papunesia ID #> 38074 Niger-Congo Gur Africa ML #> 38075 Trans-New Guinea Engan Papunesia PG #> 38085 Indo-European Indic Eurasia IN #> 38090 Northwest Caucasian Northwest Caucasian Eurasia GE #> 38100 Tiwian Tiwian Australia AU #> 38110 Afro-Asiatic Lowland East Cushitic Africa ET #> 38117 Austronesian Chamorro Papunesia GU #> 38136 Songhay Songhay Africa NE ML #> 38167 Pama-Nyungan Western Pama-Nyungan Australia AU #> 38209 Afro-Asiatic West Chadic Africa NG NE #> 38214 Korean Korean Eurasia KR KP #> 38219 Sepik Sepik Hill Papunesia PG #> 38289 Korean Korean Eurasia KR KP #> 38324 Austronesian Chamorro Papunesia GU #> 38341 Songhay Songhay Africa NE ML #> 38405 Northwest Caucasian Northwest Caucasian Eurasia GE #> 38429 Austronesian Celebic Papunesia ID #> 38445 Afro-Asiatic West Chadic Africa NG NE #> 38448 Sepik Sepik Hill Papunesia PG #> 38467 Niger-Congo Gur Africa ML #> 38497 Iroquoian Northern Iroquoian North America US #> 38499 Indo-European Indic Eurasia IN #> 38503 Pama-Nyungan Western Pama-Nyungan Australia AU #> 38504 Arawakan Purus South America BR #> 38506 Caddoan Caddoan North America US #> 38563 Austronesian Chamorro Papunesia GU #> 38578 Hokan Yuman North America US #> 38584 Muskogean Muskogean North America US #> 38585 Songhay Songhay Africa NE ML #> 38592 Northwest Caucasian Northwest Caucasian Eurasia GE #> 38630 Iroquoian Northern Iroquoian North America US #> 38655 Sepik Sepik Hill Papunesia PG #> 38708 Afro-Asiatic West Chadic Africa NG NE #> 38797 Austronesian Celebic Papunesia ID #> 38801 Niger-Congo Gur Africa ML #> 38954 Arawakan Purus South America BR #> 38974 Tiwian Tiwian Australia AU #> 38988 Korean Korean Eurasia KR KP #> 39062 Indo-European Indic Eurasia IN #> 39065 Afro-Asiatic Lowland East Cushitic Africa ET #> 39070 Mura Mura South America BR #> 39078 Trans-New Guinea Engan Papunesia PG #> 39124 Kiowa-Tanoan Kiowa-Tanoan North America US #> 39140 Niger-Congo Gur Africa ML #> 39144 Afro-Asiatic West Chadic Africa NG NE #> 39280 Northwest Caucasian Northwest Caucasian Eurasia GE #> 39380 Hokan Yuman North America US #> 39391 Iroquoian Northern Iroquoian North America US #> 39442 Sepik Sepik Hill Papunesia PG #> 39454 Austronesian Celebic Papunesia ID #> 39465 Songhay Songhay Africa NE ML #> 39509 Indo-European Indic Eurasia IN #> 39557 Arawakan Purus South America BR #> 39581 Afro-Asiatic Lowland East Cushitic Africa ET #> 39589 Korean Korean Eurasia KR KP #> 39601 Kiowa-Tanoan Kiowa-Tanoan North America US #> 39603 Tiwian Tiwian Australia AU #> 39615 Mura Mura South America BR #> 39656 Trans-New Guinea Engan Papunesia PG #> 39668 Mura Mura South America BR #> 39674 Hokan Yuman North America US #> 39676 Iroquoian Northern Iroquoian North America US #> 39678 Kiowa-Tanoan Kiowa-Tanoan North America US #> 39700 Austronesian Celebic Papunesia ID #> 39718 Niger-Congo Gur Africa ML #> 39720 Songhay Songhay Africa NE ML #> 39728 Afro-Asiatic West Chadic Africa NG NE #> 39745 Muskogean Muskogean North America US #> 39750 Trans-New Guinea Engan Papunesia PG #> 39751 Sepik Sepik Hill Papunesia PG #> 39759 Indo-European Indic Eurasia IN #> 39778 Korean Korean Eurasia KR KP #> 39790 Arawakan Purus South America BR #> 39797 Afro-Asiatic Lowland East Cushitic Africa ET #> 39808 Caddoan Caddoan North America US #> 39818 Austronesian Chamorro Papunesia GU #> 39826 Pama-Nyungan Western Pama-Nyungan Australia AU #> 39850 Northwest Caucasian Northwest Caucasian Eurasia GE #> 39853 Tiwian Tiwian Australia AU #> 39901 Pama-Nyungan Western Pama-Nyungan Australia AU #> 39944 Trans-New Guinea Engan Papunesia PG #> 39946 Iroquoian Northern Iroquoian North America US #> 39951 Korean Korean Eurasia KR KP #> 39954 Tiwian Tiwian Australia AU #> 39981 Pama-Nyungan Western Pama-Nyungan Australia AU #> 40018 Arawakan Purus South America BR #> 40019 Austronesian Celebic Papunesia ID #> 40023 Caddoan Caddoan North America US #> 40105 Hokan Yuman North America US #> 40138 Songhay Songhay Africa NE ML #> 40147 Sepik Sepik Hill Papunesia PG #> 40203 Muskogean Muskogean North America US #> 40218 Mura Mura South America BR #> 40240 Austronesian Chamorro Papunesia GU #> 40290 Kiowa-Tanoan Kiowa-Tanoan North America US #> 40372 Afro-Asiatic West Chadic Africa NG NE #> 40403 Indo-European Indic Eurasia IN #> 40442 Afro-Asiatic Lowland East Cushitic Africa ET #> 40455 Niger-Congo Gur Africa ML #> 40469 Northwest Caucasian Northwest Caucasian Eurasia GE #> 40509 Indo-European Indic Eurasia IN #> 40512 Afro-Asiatic West Chadic Africa NG NE #> 40517 Pama-Nyungan Western Pama-Nyungan Australia AU #> 40519 Niger-Congo Gur Africa ML #> 40521 Songhay Songhay Africa NE ML #> 40538 Korean Korean Eurasia KR KP #> 40550 Mura Mura South America BR #> 40554 Austronesian Chamorro Papunesia GU #> 40575 Hokan Yuman North America US #> 40606 Northwest Caucasian Northwest Caucasian Eurasia GE #> 40613 Trans-New Guinea Engan Papunesia PG #> 40625 Muskogean Muskogean North America US #> 40638 Austronesian Celebic Papunesia ID #> 40642 Afro-Asiatic Lowland East Cushitic Africa ET #> 40648 Sepik Sepik Hill Papunesia PG #> 40653 Arawakan Purus South America BR #> 40670 Caddoan Caddoan North America US #> 40675 Iroquoian Northern Iroquoian North America US #> 40680 Tiwian Tiwian Australia AU #> 40702 Kiowa-Tanoan Kiowa-Tanoan North America US #> 40705 Niger-Congo Gur Africa ML #> 40707 Songhay Songhay Africa NE ML #> 40731 Sepik Sepik Hill Papunesia PG #> 40756 Iroquoian Northern Iroquoian North America US #> 40761 Arawakan Purus South America BR #> 40773 Northwest Caucasian Northwest Caucasian Eurasia GE #> 40778 Pama-Nyungan Western Pama-Nyungan Australia AU #> 40783 Tiwian Tiwian Australia AU #> 40789 Kiowa-Tanoan Kiowa-Tanoan North America US #> 40817 Mura Mura South America BR #> 40824 Afro-Asiatic Lowland East Cushitic Africa ET #> 40836 Caddoan Caddoan North America US #> 40878 Korean Korean Eurasia KR KP #> 40896 Austronesian Chamorro Papunesia GU #> 40908 Austronesian Celebic Papunesia ID #> 40927 Afro-Asiatic West Chadic Africa NG NE #> 40936 Hokan Yuman North America US #> 40937 Muskogean Muskogean North America US #> 40940 Muskogean Muskogean North America US #> 40948 Iroquoian Northern Iroquoian North America US #> 40969 Austronesian Celebic Papunesia ID #> 40975 Pama-Nyungan Western Pama-Nyungan Australia AU #> 40983 Caddoan Caddoan North America US #> 41005 Niger-Congo Gur Africa ML #> 41016 Austronesian Chamorro Papunesia GU #> 41017 Northwest Caucasian Northwest Caucasian Eurasia GE #> 41020 Songhay Songhay Africa NE ML #> 41036 Sepik Sepik Hill Papunesia PG #> 41041 Arawakan Purus South America BR #> 41053 Afro-Asiatic Lowland East Cushitic Africa ET #> 41057 Kiowa-Tanoan Kiowa-Tanoan North America US #> 41062 Mura Mura South America BR #> 41063 Hokan Yuman North America US #> 41066 Afro-Asiatic West Chadic Africa NG NE #> 41071 Tiwian Tiwian Australia AU #> 41093 Korean Korean Eurasia KR KP #> 41148 Iroquoian Northern Iroquoian North America US #> 41150 Afro-Asiatic Lowland East Cushitic Africa ET #> 41153 Pama-Nyungan Western Pama-Nyungan Australia AU #> 41160 Songhay Songhay Africa NE ML #> 41163 Afro-Asiatic West Chadic Africa NG NE #> 41167 Austronesian Chamorro Papunesia GU #> 41194 Trans-New Guinea Engan Papunesia PG #> 41217 Muskogean Muskogean North America US #> 41221 Korean Korean Eurasia KR KP #> 41234 Austronesian Celebic Papunesia ID #> 41237 Caddoan Caddoan North America US #> 41241 Hokan Yuman North America US #> 41244 Indo-European Indic Eurasia IN #> 41284 Niger-Congo Gur Africa ML #> 41304 Mura Mura South America BR #> 41326 Arawakan Purus South America BR #> 41341 Sepik Sepik Hill Papunesia PG #> 41370 Afro-Asiatic West Chadic Africa NG NE #> 41379 Northwest Caucasian Northwest Caucasian Eurasia GE #> 41394 Niger-Congo Gur Africa ML #> 41412 Mura Mura South America BR #> 41429 Afro-Asiatic Lowland East Cushitic Africa ET #> 41442 Sepik Sepik Hill Papunesia PG #> 41453 Tiwian Tiwian Australia AU #> 41464 Arawakan Purus South America BR #> 41482 Korean Korean Eurasia KR KP #> 41526 Austronesian Celebic Papunesia ID #> 41540 Caddoan Caddoan North America US #> 41582 Pama-Nyungan Western Pama-Nyungan Australia AU #> 41587 Trans-New Guinea Engan Papunesia PG #> 41605 Kiowa-Tanoan Kiowa-Tanoan North America US #> 41616 Indo-European Indic Eurasia IN #> 41626 Hokan Yuman North America US #> 41654 Iroquoian Northern Iroquoian North America US #> 41695 Austronesian Chamorro Papunesia GU #> 41701 Muskogean Muskogean North America US #> 41723 Songhay Songhay Africa NE ML #> 41762 Muskogean Muskogean North America US #> 41770 Austronesian Chamorro Papunesia GU #> 41772 Hokan Yuman North America US #> 41777 Caddoan Caddoan North America US #> 41793 Afro-Asiatic Lowland East Cushitic Africa ET #> 41799 Sepik Sepik Hill Papunesia PG #> 41809 Tiwian Tiwian Australia AU #> 41822 Afro-Asiatic West Chadic Africa NG NE #> 41829 Mura Mura South America BR #> 41834 Iroquoian Northern Iroquoian North America US #> 41835 Niger-Congo Gur Africa ML #> 41839 Trans-New Guinea Engan Papunesia PG #> 41849 Arawakan Purus South America BR #> 41851 Songhay Songhay Africa NE ML #> 41861 Pama-Nyungan Western Pama-Nyungan Australia AU #> 41867 Kiowa-Tanoan Kiowa-Tanoan North America US #> 41936 Austronesian Celebic Papunesia ID #> 41942 Indo-European Indic Eurasia IN #> 41948 Korean Korean Eurasia KR KP #> 41952 Hokan Yuman North America US #> 41987 Muskogean Muskogean North America US #> 42061 Korean Korean Eurasia KR KP #> 42075 Pama-Nyungan Western Pama-Nyungan Australia AU #> 42094 Tiwian Tiwian Australia AU #> 42107 Caddoan Caddoan North America US #> 42126 Kiowa-Tanoan Kiowa-Tanoan North America US #> 42150 Afro-Asiatic Lowland East Cushitic Africa ET #> 42172 Afro-Asiatic West Chadic Africa NG NE #> 42217 Songhay Songhay Africa NE ML #> 42231 Indo-European Indic Eurasia IN #> 42232 Northwest Caucasian Northwest Caucasian Eurasia GE #> 42258 Mura Mura South America BR #> 42284 Hokan Yuman North America US #> 42313 Korean Korean Eurasia KR KP #> 42337 Tiwian Tiwian Australia AU #> 42343 Sepik Sepik Hill Papunesia PG #> 42345 Indo-European Indic Eurasia IN #> 42358 Austronesian Chamorro Papunesia GU #> 42368 Austronesian Celebic Papunesia ID #> 42371 Iroquoian Northern Iroquoian North America US #> 42372 Afro-Asiatic Lowland East Cushitic Africa ET #> 42373 Caddoan Caddoan North America US #> 42383 Northwest Caucasian Northwest Caucasian Eurasia GE #> 42392 Mura Mura South America BR #> 42408 Arawakan Purus South America BR #> 42414 Niger-Congo Gur Africa ML #> 42415 Muskogean Muskogean North America US #> 42422 Kiowa-Tanoan Kiowa-Tanoan North America US #> 42434 Songhay Songhay Africa NE ML #> 42452 Hokan Yuman North America US #> 42455 Iroquoian Northern Iroquoian North America US #> 42466 Kiowa-Tanoan Kiowa-Tanoan North America US #> 42471 Arawakan Purus South America BR #> 42487 Pama-Nyungan Western Pama-Nyungan Australia AU #> 42496 Caddoan Caddoan North America US #> 42531 Trans-New Guinea Engan Papunesia PG #> 42548 Korean Korean Eurasia KR KP #> 42559 Indo-European Indic Eurasia IN #> 42561 Tiwian Tiwian Australia AU #> 42582 Sepik Sepik Hill Papunesia PG #> 42624 Niger-Congo Gur Africa ML #> 42629 Songhay Songhay Africa NE ML #> 42641 Austronesian Celebic Papunesia ID #> 42678 Afro-Asiatic Lowland East Cushitic Africa ET #> 42709 Mura Mura South America BR #> 42732 Afro-Asiatic West Chadic Africa NG NE #> 42734 Muskogean Muskogean North America US #> 42756 Austronesian Chamorro Papunesia GU #> 42808 Northwest Caucasian Northwest Caucasian Eurasia GE #> 42822 Austronesian Celebic Papunesia ID #> 42846 Austronesian Chamorro Papunesia GU #> 42880 Songhay Songhay Africa NE ML #> 42886 Tiwian Tiwian Australia AU #> 42914 Afro-Asiatic West Chadic Africa NG NE #> 42917 Iroquoian Northern Iroquoian North America US #> 42944 Northwest Caucasian Northwest Caucasian Eurasia GE #> 42975 Afro-Asiatic Lowland East Cushitic Africa ET #> 42985 Muskogean Muskogean North America US #> 42987 Hokan Yuman North America US #> 42996 Korean Korean Eurasia KR KP #> 43002 Trans-New Guinea Engan Papunesia PG #> 43021 Sepik Sepik Hill Papunesia PG #> 43050 Pama-Nyungan Western Pama-Nyungan Australia AU #> 43059 Caddoan Caddoan North America US #> 43060 Kiowa-Tanoan Kiowa-Tanoan North America US #> 43063 Mura Mura South America BR #> 43074 Arawakan Purus South America BR #> 43081 Niger-Congo Gur Africa ML #> 43115 Pama-Nyungan Western Pama-Nyungan Australia AU #> 43117 Caddoan Caddoan North America US #> 43142 Mura Mura South America BR #> 43146 Hokan Yuman North America US #> 43157 Austronesian Celebic Papunesia ID #> 43232 Korean Korean Eurasia KR KP #> 43246 Iroquoian Northern Iroquoian North America US #> 43257 Tiwian Tiwian Australia AU #> 43262 Muskogean Muskogean North America US #> 43277 Arawakan Purus South America BR #> 43323 Trans-New Guinea Engan Papunesia PG #> 43327 Austronesian Chamorro Papunesia GU #> 43337 Sepik Sepik Hill Papunesia PG #> 43352 Kiowa-Tanoan Kiowa-Tanoan North America US #> 43369 Northwest Caucasian Northwest Caucasian Eurasia GE #> 43553 Indo-European Indic Eurasia IN #> 43580 Afro-Asiatic Lowland East Cushitic Africa ET #> 43588 Afro-Asiatic West Chadic Africa NG NE #> 43592 Songhay Songhay Africa NE ML #> 43638 Niger-Congo Gur Africa ML #> 43651 Afro-Asiatic West Chadic Africa NG NE #> 43658 Austronesian Celebic Papunesia ID #> 43682 Austronesian Chamorro Papunesia GU #> 43687 Tiwian Tiwian Australia AU #> 43688 Iroquoian Northern Iroquoian North America US #> 43733 Kiowa-Tanoan Kiowa-Tanoan North America US #> 43734 Caddoan Caddoan North America US #> 43738 Northwest Caucasian Northwest Caucasian Eurasia GE #> 43739 Niger-Congo Gur Africa ML #> 43760 Trans-New Guinea Engan Papunesia PG #> 43761 Arawakan Purus South America BR #> 43762 Hokan Yuman North America US #> 43781 Sepik Sepik Hill Papunesia PG #> 43797 Mura Mura South America BR #> 43798 Muskogean Muskogean North America US #> 43804 Korean Korean Eurasia KR KP #> 43822 Songhay Songhay Africa NE ML #> 43865 Afro-Asiatic Lowland East Cushitic Africa ET #> 43909 Pama-Nyungan Western Pama-Nyungan Australia AU #> 43991 Korean Korean Eurasia KR KP #> 44066 Kiowa-Tanoan Kiowa-Tanoan North America US #> 44108 Indo-European Indic Eurasia IN #> 44120 Caddoan Caddoan North America US #> 44158 Afro-Asiatic Lowland East Cushitic Africa ET #> 44231 Iroquoian Northern Iroquoian North America US #> 44248 Pama-Nyungan Western Pama-Nyungan Australia AU #> 44356 Mura Mura South America BR #> 44448 Arawakan Purus South America BR #> 44490 Hokan Yuman North America US #> 44506 Muskogean Muskogean North America US #> 44513 Sepik Sepik Hill Papunesia PG #> 44534 Trans-New Guinea Engan Papunesia PG #> 44645 Northwest Caucasian Northwest Caucasian Eurasia GE #> 44797 Niger-Congo Gur Africa ML #> 44822 Afro-Asiatic West Chadic Africa NG NE #> 44845 Austronesian Celebic Papunesia ID #> 44851 Tiwian Tiwian Australia AU #> 44928 Songhay Songhay Africa NE ML #> 44969 Afro-Asiatic West Chadic Africa NG NE #> 45048 Korean Korean Eurasia KR KP #> 45111 Sepik Sepik Hill Papunesia PG #> 45125 Pama-Nyungan Western Pama-Nyungan Australia AU #> 45135 Muskogean Muskogean North America US #> 45153 Indo-European Indic Eurasia IN #> 45160 Northwest Caucasian Northwest Caucasian Eurasia GE #> 45175 Mura Mura South America BR #> 45227 Afro-Asiatic Lowland East Cushitic Africa ET #> 45246 Niger-Congo Gur Africa ML #> 45272 Pama-Nyungan Western Pama-Nyungan Australia AU #> 45279 Tiwian Tiwian Australia AU #> 45291 Arawakan Purus South America BR #> 45302 Austronesian Celebic Papunesia ID #> 45328 Korean Korean Eurasia KR KP #> 45371 Northwest Caucasian Northwest Caucasian Eurasia GE #> 45387 Songhay Songhay Africa NE ML #> 45416 Niger-Congo Gur Africa ML #> 45431 Indo-European Indic Eurasia IN #> 45432 Sepik Sepik Hill Papunesia PG #> 45445 Austronesian Chamorro Papunesia GU #> 45479 Afro-Asiatic West Chadic Africa NG NE #> 45491 Muskogean Muskogean North America US #> 45506 Afro-Asiatic Lowland East Cushitic Africa ET #> 45578 Trans-New Guinea Engan Papunesia PG #> 45592 Pama-Nyungan Western Pama-Nyungan Australia AU #> 45604 Austronesian Celebic Papunesia ID #> 45664 Niger-Congo Gur Africa ML #> 45695 Indo-European Indic Eurasia IN #> 45713 Afro-Asiatic West Chadic Africa NG NE #> 45760 Hokan Yuman North America US #> 45774 Tiwian Tiwian Australia AU #> 45781 Korean Korean Eurasia KR KP #> 45819 Northwest Caucasian Northwest Caucasian Eurasia GE #> 45828 Austronesian Chamorro Papunesia GU #> 45846 Niger-Congo Gur Africa ML #> 45862 Afro-Asiatic West Chadic Africa NG NE #> 45868 Indo-European Indic Eurasia IN #> 45917 Arawakan Purus South America BR #> 45928 Tiwian Tiwian Australia AU #> 45943 Pama-Nyungan Western Pama-Nyungan Australia AU #> 45963 Afro-Asiatic Lowland East Cushitic Africa ET #> 45971 Mura Mura South America BR #> 45974 Hokan Yuman North America US #> 46005 Austronesian Chamorro Papunesia GU #> 46052 Trans-New Guinea Engan Papunesia PG #> 46063 Sepik Sepik Hill Papunesia PG #> 46078 Kiowa-Tanoan Kiowa-Tanoan North America US #> 46091 Northwest Caucasian Northwest Caucasian Eurasia GE #> 46144 Austronesian Celebic Papunesia ID #> 46233 Korean Korean Eurasia KR KP #> 46249 Hokan Yuman North America US #> 46259 Tiwian Tiwian Australia AU #> 46269 Austronesian Celebic Papunesia ID #> 46293 Niger-Congo Gur Africa ML #> 46317 Indo-European Indic Eurasia IN #> 46356 Caddoan Caddoan North America US #> 46369 Northwest Caucasian Northwest Caucasian Eurasia GE #> 46373 Kiowa-Tanoan Kiowa-Tanoan North America US #> 46408 Hokan Yuman North America US #> 46498 Iroquoian Northern Iroquoian North America US #> 46512 Arawakan Purus South America BR #> 46602 Muskogean Muskogean North America US #> 46691 Austronesian Chamorro Papunesia GU #> 46708 Pama-Nyungan Western Pama-Nyungan Australia AU #> 46833 Afro-Asiatic West Chadic Africa NG NE #> 46995 Trans-New Guinea Engan Papunesia PG #> 47015 Songhay Songhay Africa NE ML #> 47024 Niger-Congo Gur Africa ML #> 47119 Sepik Sepik Hill Papunesia PG #> 47142 Austronesian Celebic Papunesia ID #> 47159 Tiwian Tiwian Australia AU #> 47214 Afro-Asiatic Lowland East Cushitic Africa ET #> 47283 Tiwian Tiwian Australia AU #> 47288 Muskogean Muskogean North America US #> 47306 Iroquoian Northern Iroquoian North America US #> 47342 Afro-Asiatic Lowland East Cushitic Africa ET #> 47380 Mura Mura South America BR #> 47384 Austronesian Chamorro Papunesia GU #> 47387 Trans-New Guinea Engan Papunesia PG #> 47391 Arawakan Purus South America BR #> 47404 Niger-Congo Gur Africa ML #> 47408 Afro-Asiatic West Chadic Africa NG NE #> 47416 Caddoan Caddoan North America US #> 47421 Indo-European Indic Eurasia IN #> 47427 Hokan Yuman North America US #> 47436 Sepik Sepik Hill Papunesia PG #> 47451 Korean Korean Eurasia KR KP #> 47459 Pama-Nyungan Western Pama-Nyungan Australia AU #> 47469 Kiowa-Tanoan Kiowa-Tanoan North America US #> 47478 Northwest Caucasian Northwest Caucasian Eurasia GE #> 47495 Austronesian Celebic Papunesia ID #> 47513 Afro-Asiatic Lowland East Cushitic Africa ET #> 47517 Afro-Asiatic West Chadic Africa NG NE #> 47547 Mura Mura South America BR #> 47548 Sepik Sepik Hill Papunesia PG #> 47586 Northwest Caucasian Northwest Caucasian Eurasia GE #> 47595 Niger-Congo Gur Africa ML #> 47641 Arawakan Purus South America BR #> 47647 Iroquoian Northern Iroquoian North America US #> 47651 Muskogean Muskogean North America US #> 47661 Indo-European Indic Eurasia IN #> 47663 Caddoan Caddoan North America US #> 47680 Kiowa-Tanoan Kiowa-Tanoan North America US #> 47683 Austronesian Celebic Papunesia ID #> 47686 Pama-Nyungan Western Pama-Nyungan Australia AU #> 47689 Trans-New Guinea Engan Papunesia PG #> 47698 Hokan Yuman North America US #> 47702 Tiwian Tiwian Australia AU #> 47722 Korean Korean Eurasia KR KP #> 47737 Austronesian Chamorro Papunesia GU #> 47752 Indo-European Indic Eurasia IN #> 47754 Korean Korean Eurasia KR KP #> 47760 Sepik Sepik Hill Papunesia PG #> 47770 Austronesian Chamorro Papunesia GU #> 47776 Iroquoian Northern Iroquoian North America US #> 47785 Arawakan Purus South America BR #> 47793 Caddoan Caddoan North America US #> 47819 Afro-Asiatic West Chadic Africa NG NE #> 47826 Trans-New Guinea Engan Papunesia PG #> 47832 Northwest Caucasian Northwest Caucasian Eurasia GE #> 47863 Niger-Congo Gur Africa ML #> 47864 Mura Mura South America BR #> 47887 Muskogean Muskogean North America US #> 47902 Tiwian Tiwian Australia AU #> 47933 Pama-Nyungan Western Pama-Nyungan Australia AU #> 47937 Kiowa-Tanoan Kiowa-Tanoan North America US #> 47938 Afro-Asiatic Lowland East Cushitic Africa ET #> 47940 Austronesian Celebic Papunesia ID #> 47968 Hokan Yuman North America US #> 47990 Caddoan Caddoan North America US #> 48060 Afro-Asiatic Lowland East Cushitic Africa ET #> 48077 Kiowa-Tanoan Kiowa-Tanoan North America US #> 48093 Pama-Nyungan Western Pama-Nyungan Australia AU #> 48109 Indo-European Indic Eurasia IN #> 48144 Tiwian Tiwian Australia AU #> 48154 Austronesian Chamorro Papunesia GU #> 48160 Songhay Songhay Africa NE ML #> 48191 Sepik Sepik Hill Papunesia PG #> 48193 Austronesian Celebic Papunesia ID #> 48232 Mura Mura South America BR #> 48278 Arawakan Purus South America BR #> 48322 Iroquoian Northern Iroquoian North America US #> 48342 Korean Korean Eurasia KR KP #> 48354 Niger-Congo Gur Africa ML #> 48357 Muskogean Muskogean North America US #> 48369 Afro-Asiatic West Chadic Africa NG NE #> 48449 Trans-New Guinea Engan Papunesia PG #> 48459 Northwest Caucasian Northwest Caucasian Eurasia GE #> 48468 Hokan Yuman North America US #> 48593 Pama-Nyungan Western Pama-Nyungan Australia AU #> 48603 Hokan Yuman North America US #> 48624 Tiwian Tiwian Australia AU #> 48632 Northwest Caucasian Northwest Caucasian Eurasia GE #> 48644 Austronesian Celebic Papunesia ID #> 48658 Korean Korean Eurasia KR KP #> 48664 Austronesian Chamorro Papunesia GU #> 48671 Indo-European Indic Eurasia IN #> 48677 Niger-Congo Gur Africa ML #> 48702 Niger-Congo Gur Africa ML #> 48706 Northwest Caucasian Northwest Caucasian Eurasia GE #> 48728 Tiwian Tiwian Australia AU #> 48730 Austronesian Chamorro Papunesia GU #> 48733 Austronesian Celebic Papunesia ID #> 48746 Hokan Yuman North America US #> 48748 Pama-Nyungan Western Pama-Nyungan Australia AU #> 48805 Indo-European Indic Eurasia IN #> 48806 Korean Korean Eurasia KR KP #> 48817 Korean Korean Eurasia KR KP #> 48822 Arawakan Purus South America BR #> 48836 Mura Mura South America BR #> 48842 Afro-Asiatic Lowland East Cushitic Africa ET #> 48852 Hokan Yuman North America US #> 48853 Indo-European Indic Eurasia IN #> 48879 Northwest Caucasian Northwest Caucasian Eurasia GE #> 48894 Austronesian Celebic Papunesia ID #> 48900 Austronesian Chamorro Papunesia GU #> 48907 Niger-Congo Gur Africa ML #> 48917 Afro-Asiatic West Chadic Africa NG NE #> 48923 Kiowa-Tanoan Kiowa-Tanoan North America US #> 48938 Songhay Songhay Africa NE ML #> 48945 Sepik Sepik Hill Papunesia PG #> 48947 Iroquoian Northern Iroquoian North America US #> 48974 Caddoan Caddoan North America US #> 48975 Pama-Nyungan Western Pama-Nyungan Australia AU #> 48991 Northwest Caucasian Northwest Caucasian Eurasia GE #> 49003 Indo-European Indic Eurasia IN #> 49013 Tiwian Tiwian Australia AU #> 49021 Afro-Asiatic Lowland East Cushitic Africa ET #> 49058 Kiowa-Tanoan Kiowa-Tanoan North America US #> 49088 Korean Korean Eurasia KR KP #> 49106 Sepik Sepik Hill Papunesia PG #> 49113 Austronesian Chamorro Papunesia GU #> 49166 Afro-Asiatic West Chadic Africa NG NE #> 49277 Indo-European Indic Eurasia IN #> 49301 Austronesian Chamorro Papunesia GU #> 49303 Austronesian Celebic Papunesia ID #> 49304 Mura Mura South America BR #> 49338 Northwest Caucasian Northwest Caucasian Eurasia GE #> 49407 Afro-Asiatic Lowland East Cushitic Africa ET #> 49408 Sepik Sepik Hill Papunesia PG #> 49410 Songhay Songhay Africa NE ML #> 49416 Korean Korean Eurasia KR KP #> 49422 Hokan Yuman North America US #> 49426 Afro-Asiatic West Chadic Africa NG NE #> 49467 Niger-Congo Gur Africa ML #> 49496 Muskogean Muskogean North America US #> 49508 Tiwian Tiwian Australia AU #> 49514 Arawakan Purus South America BR #> 49528 Iroquoian Northern Iroquoian North America US #> 49530 Caddoan Caddoan North America US #> 49532 Afro-Asiatic Lowland East Cushitic Africa ET #> 49543 Korean Korean Eurasia KR KP #> 49557 Kiowa-Tanoan Kiowa-Tanoan North America US #> 49561 Niger-Congo Gur Africa ML #> 49564 Mura Mura South America BR #> 49581 Austronesian Chamorro Papunesia GU #> 49591 Northwest Caucasian Northwest Caucasian Eurasia GE #> 49594 Indo-European Indic Eurasia IN #> 49600 Sepik Sepik Hill Papunesia PG #> 49608 Songhay Songhay Africa NE ML #> 49625 Austronesian Celebic Papunesia ID #> 49626 Trans-New Guinea Engan Papunesia PG #> 49634 Hokan Yuman North America US #> 49668 Tiwian Tiwian Australia AU #> 49689 Muskogean Muskogean North America US #> 49704 Afro-Asiatic West Chadic Africa NG NE #> 49728 Arawakan Purus South America BR #> 49732 Pama-Nyungan Western Pama-Nyungan Australia AU #> 49741 Pama-Nyungan Western Pama-Nyungan Australia AU #> 49750 Korean Korean Eurasia KR KP #> 49755 Indo-European Indic Eurasia IN #> 49759 Northwest Caucasian Northwest Caucasian Eurasia GE #> 49792 Tiwian Tiwian Australia AU #> 49830 Afro-Asiatic Lowland East Cushitic Africa ET #> 49833 Trans-New Guinea Engan Papunesia PG #> 49836 Niger-Congo Gur Africa ML #> 49856 Muskogean Muskogean North America US #> 49864 Sepik Sepik Hill Papunesia PG #> 49882 Afro-Asiatic West Chadic Africa NG NE #> 49913 Austronesian Celebic Papunesia ID #> 49919 Songhay Songhay Africa NE ML #> 49923 Austronesian Chamorro Papunesia GU #> 49927 Iroquoian Northern Iroquoian North America US #> 49934 Hokan Yuman North America US #> 49941 Caddoan Caddoan North America US #> 49943 Arawakan Purus South America BR #> 49952 Kiowa-Tanoan Kiowa-Tanoan North America US #> 49954 Mura Mura South America BR #> 49969 Sepik Sepik Hill Papunesia PG #> 50008 Pama-Nyungan Western Pama-Nyungan Australia AU #> 50009 Kiowa-Tanoan Kiowa-Tanoan North America US #> 50011 Indo-European Indic Eurasia IN #> 50015 Hokan Yuman North America US #> 50025 Austronesian Celebic Papunesia ID #> 50026 Muskogean Muskogean North America US #> 50030 Arawakan Purus South America BR #> 50041 Northwest Caucasian Northwest Caucasian Eurasia GE #> 50042 Tiwian Tiwian Australia AU #> 50051 Iroquoian Northern Iroquoian North America US #> 50062 Caddoan Caddoan North America US #> 50068 Trans-New Guinea Engan Papunesia PG #> 50075 Songhay Songhay Africa NE ML #> 50076 Austronesian Chamorro Papunesia GU #> 50078 Afro-Asiatic Lowland East Cushitic Africa ET #> 50082 Mura Mura South America BR #> 50097 Afro-Asiatic West Chadic Africa NG NE #> 50100 Niger-Congo Gur Africa ML #> 50160 Korean Korean Eurasia KR KP #> 50221 Northwest Caucasian Northwest Caucasian Eurasia GE #> 50250 Indo-European Indic Eurasia IN #> 50268 Trans-New Guinea Engan Papunesia PG #> 50271 Afro-Asiatic Lowland East Cushitic Africa ET #> 50287 Niger-Congo Gur Africa ML #> 50292 Tiwian Tiwian Australia AU #> 50297 Pama-Nyungan Western Pama-Nyungan Australia AU #> 50315 Arawakan Purus South America BR #> 50321 Korean Korean Eurasia KR KP #> 50327 Kiowa-Tanoan Kiowa-Tanoan North America US #> 50343 Sepik Sepik Hill Papunesia PG #> 50347 Austronesian Chamorro Papunesia GU #> 50348 Muskogean Muskogean North America US #> 50349 Afro-Asiatic West Chadic Africa NG NE #> 50362 Austronesian Celebic Papunesia ID #> 50383 Iroquoian Northern Iroquoian North America US #> 50386 Mura Mura South America BR #> 50392 Caddoan Caddoan North America US #> 50393 Songhay Songhay Africa NE ML #> 50396 Hokan Yuman North America US #> 50541 Austronesian Celebic Papunesia ID #> 50555 Tiwian Tiwian Australia AU #> 50559 Afro-Asiatic Lowland East Cushitic Africa ET #> 50609 Pama-Nyungan Western Pama-Nyungan Australia AU #> 50682 Indo-European Indic Eurasia IN #> 50705 Northwest Caucasian Northwest Caucasian Eurasia GE #> 50738 Korean Korean Eurasia KR KP #> 50755 Kiowa-Tanoan Kiowa-Tanoan North America US #> 50794 Trans-New Guinea Engan Papunesia PG #> 50908 Sepik Sepik Hill Papunesia PG #> 50915 Mura Mura South America BR #> 51004 Hokan Yuman North America US #> 51024 Arawakan Purus South America BR #> 51285 Caddoan Caddoan North America US #> 51312 Iroquoian Northern Iroquoian North America US #> 51371 Niger-Congo Gur Africa ML #> 51421 Songhay Songhay Africa NE ML #> 51453 Afro-Asiatic West Chadic Africa NG NE #> 51572 Muskogean Muskogean North America US #> 51630 Pama-Nyungan Western Pama-Nyungan Australia AU #> 51671 Niger-Congo Gur Africa ML #> 51673 Trans-New Guinea Engan Papunesia PG #> 51708 Sepik Sepik Hill Papunesia PG #> 51713 Tiwian Tiwian Australia AU #> 51741 Hokan Yuman North America US #> 51753 Austronesian Chamorro Papunesia GU #> 51770 Iroquoian Northern Iroquoian North America US #> 51779 Indo-European Indic Eurasia IN #> 51829 Mura Mura South America BR #> 51830 Arawakan Purus South America BR #> 51934 Songhay Songhay Africa NE ML #> 51962 Korean Korean Eurasia KR KP #> 51976 Northwest Caucasian Northwest Caucasian Eurasia GE #> 51979 Kiowa-Tanoan Kiowa-Tanoan North America US #> 52018 Austronesian Celebic Papunesia ID #> 52063 Afro-Asiatic Lowland East Cushitic Africa ET #> 52072 Afro-Asiatic West Chadic Africa NG NE #> 52089 Caddoan Caddoan North America US #> 52106 Afro-Asiatic Lowland East Cushitic Africa ET #> 52116 Songhay Songhay Africa NE ML #> 52193 Sepik Sepik Hill Papunesia PG #> 52227 Hokan Yuman North America US #> 52231 Indo-European Indic Eurasia IN #> 52264 Trans-New Guinea Engan Papunesia PG #> 52296 Northwest Caucasian Northwest Caucasian Eurasia GE #> 52313 Caddoan Caddoan North America US #> 52318 Muskogean Muskogean North America US #> 52320 Tiwian Tiwian Australia AU #> 52360 Kiowa-Tanoan Kiowa-Tanoan North America US #> 52399 Austronesian Celebic Papunesia ID #> 52407 Afro-Asiatic West Chadic Africa NG NE #> 52427 Niger-Congo Gur Africa ML #> 52437 Arawakan Purus South America BR #> 52479 Pama-Nyungan Western Pama-Nyungan Australia AU #> 52490 Korean Korean Eurasia KR KP #> 52516 Iroquoian Northern Iroquoian North America US #> 52639 Mura Mura South America BR #> 52682 Hokan Yuman North America US #> 52691 Caddoan Caddoan North America US #> 52696 Trans-New Guinea Engan Papunesia PG #> 52764 Niger-Congo Gur Africa ML #> 52852 Indo-European Indic Eurasia IN #> 52855 Korean Korean Eurasia KR KP #> 52893 Austronesian Chamorro Papunesia GU #> 52898 Afro-Asiatic Lowland East Cushitic Africa ET #> 52910 Iroquoian Northern Iroquoian North America US #> 52954 Pama-Nyungan Western Pama-Nyungan Australia AU #> 52979 Northwest Caucasian Northwest Caucasian Eurasia GE #> 53009 Afro-Asiatic West Chadic Africa NG NE #> 53010 Songhay Songhay Africa NE ML #> 53034 Muskogean Muskogean North America US #> 53044 Tiwian Tiwian Australia AU #> 53055 Austronesian Celebic Papunesia ID #> 53085 Kiowa-Tanoan Kiowa-Tanoan North America US #> 53115 Sepik Sepik Hill Papunesia PG #> 53175 Muskogean Muskogean North America US #> 53190 Mura Mura South America BR #> 53198 Sepik Sepik Hill Papunesia PG #> 53240 Iroquoian Northern Iroquoian North America US #> 53284 Niger-Congo Gur Africa ML #> 53298 Songhay Songhay Africa NE ML #> 53302 Afro-Asiatic West Chadic Africa NG NE #> 53322 Indo-European Indic Eurasia IN #> 53329 Arawakan Purus South America BR #> 53335 Kiowa-Tanoan Kiowa-Tanoan North America US #> 53346 Northwest Caucasian Northwest Caucasian Eurasia GE #> 53353 Pama-Nyungan Western Pama-Nyungan Australia AU #> 53381 Tiwian Tiwian Australia AU #> 53382 Afro-Asiatic Lowland East Cushitic Africa ET #> 53401 Austronesian Celebic Papunesia ID #> 53429 Hokan Yuman North America US #> 53437 Trans-New Guinea Engan Papunesia PG #> 53471 Austronesian Chamorro Papunesia GU #> 53474 Korean Korean Eurasia KR KP #> 53527 Caddoan Caddoan North America US #> 53529 Northwest Caucasian Northwest Caucasian Eurasia GE #> 53545 Hokan Yuman North America US #> 53571 Niger-Congo Gur Africa ML #> 53572 Pama-Nyungan Western Pama-Nyungan Australia AU #> 53593 Muskogean Muskogean North America US #> 53596 Indo-European Indic Eurasia IN #> 53599 Trans-New Guinea Engan Papunesia PG #> 53605 Mura Mura South America BR #> 53628 Afro-Asiatic West Chadic Africa NG NE #> 53630 Songhay Songhay Africa NE ML #> 53664 Arawakan Purus South America BR #> 53667 Iroquoian Northern Iroquoian North America US #> 53693 Korean Korean Eurasia KR KP #> 53704 Afro-Asiatic Lowland East Cushitic Africa ET #> 53706 Austronesian Chamorro Papunesia GU #> 53732 Austronesian Celebic Papunesia ID #> 53791 Tiwian Tiwian Australia AU #> 53800 Sepik Sepik Hill Papunesia PG #> 53816 Kiowa-Tanoan Kiowa-Tanoan North America US #> 53860 Muskogean Muskogean North America US #> 53886 Austronesian Chamorro Papunesia GU #> 53900 Kiowa-Tanoan Kiowa-Tanoan North America US #> 53914 Indo-European Indic Eurasia IN #> 53928 Afro-Asiatic West Chadic Africa NG NE #> 53938 Songhay Songhay Africa NE ML #> 53959 Northwest Caucasian Northwest Caucasian Eurasia GE #> 53963 Austronesian Celebic Papunesia ID #> 53986 Arawakan Purus South America BR #> 53991 Afro-Asiatic Lowland East Cushitic Africa ET #> 53996 Iroquoian Northern Iroquoian North America US #> 54017 Niger-Congo Gur Africa ML #> 54050 Caddoan Caddoan North America US #> 54065 Korean Korean Eurasia KR KP #> 54082 Afro-Asiatic West Chadic Africa NG NE #> 54084 Austronesian Celebic Papunesia ID #> 54094 Northwest Caucasian Northwest Caucasian Eurasia GE #> 54104 Niger-Congo Gur Africa ML #> 54106 Indo-European Indic Eurasia IN #> 54117 Afro-Asiatic Lowland East Cushitic Africa ET #> 54149 Tiwian Tiwian Australia AU #> 54156 Mura Mura South America BR #> 54196 Arawakan Purus South America BR #> 54201 Iroquoian Northern Iroquoian North America US #> 54205 Kiowa-Tanoan Kiowa-Tanoan North America US #> 54207 Muskogean Muskogean North America US #> 54219 Hokan Yuman North America US #> 54246 Austronesian Chamorro Papunesia GU #> 54297 Korean Korean Eurasia KR KP #> 54302 Trans-New Guinea Engan Papunesia PG #> 54311 Pama-Nyungan Western Pama-Nyungan Australia AU #> 54359 Korean Korean Eurasia KR KP #> 54367 Northwest Caucasian Northwest Caucasian Eurasia GE #> 54369 Muskogean Muskogean North America US #> 54383 Austronesian Chamorro Papunesia GU #> 54387 Iroquoian Northern Iroquoian North America US #> 54390 Afro-Asiatic West Chadic Africa NG NE #> 54391 Indo-European Indic Eurasia IN #> 54398 Songhay Songhay Africa NE ML #> 54407 Afro-Asiatic Lowland East Cushitic Africa ET #> 54408 Kiowa-Tanoan Kiowa-Tanoan North America US #> 54422 Austronesian Celebic Papunesia ID #> 54473 Niger-Congo Gur Africa ML #> 54520 Afro-Asiatic Lowland East Cushitic Africa ET #> 54567 Afro-Asiatic West Chadic Africa NG NE #> 54581 Tiwian Tiwian Australia AU #> 54611 Niger-Congo Gur Africa ML #> 54625 Austronesian Celebic Papunesia ID #> 54653 Sepik Sepik Hill Papunesia PG #> 54684 Songhay Songhay Africa NE ML #> 54691 Indo-European Indic Eurasia IN #> 54703 Austronesian Chamorro Papunesia GU #> 54717 Kiowa-Tanoan Kiowa-Tanoan North America US #> 54727 Korean Korean Eurasia KR KP #> 54759 Northwest Caucasian Northwest Caucasian Eurasia GE #> 54771 Iroquoian Northern Iroquoian North America US #> 54775 Pama-Nyungan Western Pama-Nyungan Australia AU #> 54790 Arawakan Purus South America BR #> 54826 Caddoan Caddoan North America US #> 54897 Trans-New Guinea Engan Papunesia PG #> 54911 Mura Mura South America BR #> 54923 Hokan Yuman North America US #> 54927 Muskogean Muskogean North America US #> 54988 Afro-Asiatic West Chadic Africa NG NE #> 55002 Niger-Congo Gur Africa ML #> 55010 Indo-European Indic Eurasia IN #> 55022 Afro-Asiatic Lowland East Cushitic Africa ET #> 55042 Songhay Songhay Africa NE ML #> 55055 Tiwian Tiwian Australia AU #> 55067 Austronesian Celebic Papunesia ID #> 55078 Sepik Sepik Hill Papunesia PG #> 55141 Trans-New Guinea Engan Papunesia PG #> 55143 Korean Korean Eurasia KR KP #> 55159 Caddoan Caddoan North America US #> 55165 Hokan Yuman North America US #> 55176 Mura Mura South America BR #> 55212 Muskogean Muskogean North America US #> 55219 Kiowa-Tanoan Kiowa-Tanoan North America US #> 55225 Arawakan Purus South America BR #> 55226 Northwest Caucasian Northwest Caucasian Eurasia GE #> 55236 Pama-Nyungan Western Pama-Nyungan Australia AU #> 55289 Austronesian Chamorro Papunesia GU #> 55306 Iroquoian Northern Iroquoian North America US #> 55357 Austronesian Celebic Papunesia ID #> 55372 Northwest Caucasian Northwest Caucasian Eurasia GE #> 55379 Sepik Sepik Hill Papunesia PG #> 55381 Afro-Asiatic Lowland East Cushitic Africa ET #> 55382 Austronesian Chamorro Papunesia GU #> 55389 Trans-New Guinea Engan Papunesia PG #> 55394 Caddoan Caddoan North America US #> 55397 Iroquoian Northern Iroquoian North America US #> 55405 Niger-Congo Gur Africa ML #> 55419 Indo-European Indic Eurasia IN #> 55428 Songhay Songhay Africa NE ML #> 55431 Muskogean Muskogean North America US #> 55476 Arawakan Purus South America BR #> 55494 Pama-Nyungan Western Pama-Nyungan Australia AU #> 55503 Hokan Yuman North America US #> 55509 Afro-Asiatic West Chadic Africa NG NE #> 55511 Kiowa-Tanoan Kiowa-Tanoan North America US #> 55517 Korean Korean Eurasia KR KP #> 55519 Mura Mura South America BR #> 55544 Tiwian Tiwian Australia AU #> 55575 Songhay Songhay Africa NE ML #> 55580 Afro-Asiatic Lowland East Cushitic Africa ET #> 55594 Hokan Yuman North America US #> 55603 Niger-Congo Gur Africa ML #> 55604 Afro-Asiatic West Chadic Africa NG NE #> 55610 Austronesian Celebic Papunesia ID #> 55616 Kiowa-Tanoan Kiowa-Tanoan North America US #> 55621 Indo-European Indic Eurasia IN #> 55631 Trans-New Guinea Engan Papunesia PG #> 55641 Austronesian Chamorro Papunesia GU #> 55669 Sepik Sepik Hill Papunesia PG #> 55673 Arawakan Purus South America BR #> 55683 Iroquoian Northern Iroquoian North America US #> 55687 Caddoan Caddoan North America US #> 55692 Korean Korean Eurasia KR KP #> 55695 Mura Mura South America BR #> 55720 Muskogean Muskogean North America US #> 55725 Tiwian Tiwian Australia AU #> 55728 Pama-Nyungan Western Pama-Nyungan Australia AU #> 55736 Northwest Caucasian Northwest Caucasian Eurasia GE #> 55761 Sepik Sepik Hill Papunesia PG #> 55771 Arawakan Purus South America BR #> 55784 Mura Mura South America BR #> 55816 Caddoan Caddoan North America US #> 55880 Indo-European Indic Eurasia IN #> 55940 Afro-Asiatic West Chadic Africa NG NE #> 56036 Afro-Asiatic Lowland East Cushitic Africa ET #> 56068 Tiwian Tiwian Australia AU #> 56072 Songhay Songhay Africa NE ML #> 56115 Northwest Caucasian Northwest Caucasian Eurasia GE #> 56120 Niger-Congo Gur Africa ML #> 56153 Iroquoian Northern Iroquoian North America US #> 56156 Austronesian Celebic Papunesia ID #> 56161 Pama-Nyungan Western Pama-Nyungan Australia AU #> 56169 Austronesian Chamorro Papunesia GU #> 56185 Hokan Yuman North America US #> 56199 Korean Korean Eurasia KR KP #> 56231 Trans-New Guinea Engan Papunesia PG #> 56279 Muskogean Muskogean North America US #> 56301 Kiowa-Tanoan Kiowa-Tanoan North America US #> 56324 Korean Korean Eurasia KR KP #> 56342 Arawakan Purus South America BR #> 56354 Songhay Songhay Africa NE ML #> 56363 Indo-European Indic Eurasia IN #> 56368 Afro-Asiatic West Chadic Africa NG NE #> 56370 Iroquoian Northern Iroquoian North America US #> 56376 Niger-Congo Gur Africa ML #> 56382 Trans-New Guinea Engan Papunesia PG #> 56384 Austronesian Chamorro Papunesia GU #> 56386 Mura Mura South America BR #> 56404 Northwest Caucasian Northwest Caucasian Eurasia GE #> 56427 Austronesian Celebic Papunesia ID #> 56438 Afro-Asiatic Lowland East Cushitic Africa ET #> 56446 Pama-Nyungan Western Pama-Nyungan Australia AU #> 56452 Sepik Sepik Hill Papunesia PG #> 56457 Tiwian Tiwian Australia AU #> 56474 Kiowa-Tanoan Kiowa-Tanoan North America US #> 56495 Caddoan Caddoan North America US #> 56497 Muskogean Muskogean North America US #> 56498 Hokan Yuman North America US #> 56531 Trans-New Guinea Engan Papunesia PG #> 56607 Hokan Yuman North America US #> 56626 Niger-Congo Gur Africa ML #> 56636 Afro-Asiatic Lowland East Cushitic Africa ET #> 56759 Northwest Caucasian Northwest Caucasian Eurasia GE #> 56795 Songhay Songhay Africa NE ML #> 56814 Mura Mura South America BR #> 56834 Korean Korean Eurasia KR KP #> 56848 Sepik Sepik Hill Papunesia PG #> 56923 Muskogean Muskogean North America US #> 57038 Indo-European Indic Eurasia IN #> 57054 Kiowa-Tanoan Kiowa-Tanoan North America US #> 57088 Afro-Asiatic West Chadic Africa NG NE #> 57121 Tiwian Tiwian Australia AU #> 57322 Arawakan Purus South America BR #> 57479 Pama-Nyungan Western Pama-Nyungan Australia AU #> 57637 Austronesian Chamorro Papunesia GU #> 57655 Austronesian Celebic Papunesia ID #> 57821 Iroquoian Northern Iroquoian North America US #> 57843 Caddoan Caddoan North America US #> 57942 Caddoan Caddoan North America US #> 57999 Songhay Songhay Africa NE ML #> 58042 Niger-Congo Gur Africa ML #> 58049 Arawakan Purus South America BR #> 58127 Sepik Sepik Hill Papunesia PG #> 58178 Tiwian Tiwian Australia AU #> 58297 Korean Korean Eurasia KR KP #> 58322 Hokan Yuman North America US #> 58342 Muskogean Muskogean North America US #> 58350 Mura Mura South America BR #> 58497 Kiowa-Tanoan Kiowa-Tanoan North America US #> 58723 Indo-European Indic Eurasia IN #> 58741 Afro-Asiatic Lowland East Cushitic Africa ET #> 58789 Northwest Caucasian Northwest Caucasian Eurasia GE #> 58792 Trans-New Guinea Engan Papunesia PG #> 58910 Afro-Asiatic West Chadic Africa NG NE #> 59061 Pama-Nyungan Western Pama-Nyungan Australia AU #> 59160 Iroquoian Northern Iroquoian North America US #> 59176 Austronesian Chamorro Papunesia GU #> 59219 Austronesian Celebic Papunesia ID #> 59403 Caddoan Caddoan North America US #> 59502 Kiowa-Tanoan Kiowa-Tanoan North America US #> 59519 Afro-Asiatic Lowland East Cushitic Africa ET #> 59558 Trans-New Guinea Engan Papunesia PG #> 59559 Korean Korean Eurasia KR KP #> 59744 Sepik Sepik Hill Papunesia PG #> 59817 Muskogean Muskogean North America US #> 59818 Caddoan Caddoan North America US #> 59819 Niger-Congo Gur Africa ML #> 59855 Hokan Yuman North America US #> 59921 Northwest Caucasian Northwest Caucasian Eurasia GE #> 59955 Songhay Songhay Africa NE ML #> 60008 Indo-European Indic Eurasia IN #> 60094 Mura Mura South America BR #> 60281 Tiwian Tiwian Australia AU #> 60339 Austronesian Chamorro Papunesia GU #> 60471 Afro-Asiatic West Chadic Africa NG NE #> 60527 Pama-Nyungan Western Pama-Nyungan Australia AU #> 60696 Iroquoian Northern Iroquoian North America US #> 60733 Austronesian Celebic Papunesia ID #> 60908 Arawakan Purus South America BR #> 61120 Afro-Asiatic West Chadic Africa NG NE #> 61144 Pama-Nyungan Western Pama-Nyungan Australia AU #> 61148 Tiwian Tiwian Australia AU #> 61188 Northwest Caucasian Northwest Caucasian Eurasia GE #> 61204 Mura Mura South America BR #> 61213 Afro-Asiatic Lowland East Cushitic Africa ET #> 61249 Muskogean Muskogean North America US #> 61250 Niger-Congo Gur Africa ML #> 61272 Songhay Songhay Africa NE ML #> 61324 Caddoan Caddoan North America US #> 61332 Iroquoian Northern Iroquoian North America US #> 61360 Arawakan Purus South America BR #> 61440 Sepik Sepik Hill Papunesia PG #> 61590 Hokan Yuman North America US #> 61595 Afro-Asiatic Lowland East Cushitic Africa ET #> 61643 Muskogean Muskogean North America US #> 61659 Sepik Sepik Hill Papunesia PG #> 61693 Mura Mura South America BR #> 61733 Northwest Caucasian Northwest Caucasian Eurasia GE #> 61759 Arawakan Purus South America BR #> 61820 Songhay Songhay Africa NE ML #> 61829 Trans-New Guinea Engan Papunesia PG #> 61838 Korean Korean Eurasia KR KP #> 61946 Niger-Congo Gur Africa ML #> 62022 Indo-European Indic Eurasia IN #> 62186 Austronesian Celebic Papunesia ID #> 62272 Afro-Asiatic West Chadic Africa NG NE #> 62355 Austronesian Chamorro Papunesia GU #> 62422 Tiwian Tiwian Australia AU #> 62614 Iroquoian Northern Iroquoian North America US #> 62626 Kiowa-Tanoan Kiowa-Tanoan North America US #> 62634 Caddoan Caddoan North America US #> 62637 Pama-Nyungan Western Pama-Nyungan Australia AU #> 62697 Niger-Congo Gur Africa ML #> 62724 Northwest Caucasian Northwest Caucasian Eurasia GE #> 62725 Sepik Sepik Hill Papunesia PG #> 62808 Kiowa-Tanoan Kiowa-Tanoan North America US #> 62826 Arawakan Purus South America BR #> 62871 Songhay Songhay Africa NE ML #> 62955 Muskogean Muskogean North America US #> 62960 Korean Korean Eurasia KR KP #> 63034 Hokan Yuman North America US #> 63085 Trans-New Guinea Engan Papunesia PG #> 63107 Tiwian Tiwian Australia AU #> 63188 Mura Mura South America BR #> 63297 Indo-European Indic Eurasia IN #> 63476 Afro-Asiatic Lowland East Cushitic Africa ET #> 63681 Afro-Asiatic West Chadic Africa NG NE #> 63703 Austronesian Chamorro Papunesia GU #> 63738 Austronesian Celebic Papunesia ID #> 63802 Iroquoian Northern Iroquoian North America US #> 63873 Pama-Nyungan Western Pama-Nyungan Australia AU #> 63934 Indo-European Indic Eurasia IN #> 64012 Korean Korean Eurasia KR KP #> 64052 Sepik Sepik Hill Papunesia PG #> 64075 Austronesian Chamorro Papunesia GU #> 64118 Tiwian Tiwian Australia AU #> 64127 Afro-Asiatic West Chadic Africa NG NE #> 64238 Trans-New Guinea Engan Papunesia PG #> 64321 Hokan Yuman North America US #> 64476 Austronesian Celebic Papunesia ID #> 64508 Muskogean Muskogean North America US #> 64525 Songhay Songhay Africa NE ML #> 64526 Mura Mura South America BR #> 64549 Afro-Asiatic Lowland East Cushitic Africa ET #> 64855 Northwest Caucasian Northwest Caucasian Eurasia GE #> 64969 Niger-Congo Gur Africa ML #> 65045 Pama-Nyungan Western Pama-Nyungan Australia AU #> 65134 Caddoan Caddoan North America US #> 65135 Arawakan Purus South America BR #> 65296 Niger-Congo Gur Africa ML #> 65342 Austronesian Chamorro Papunesia GU #> 65351 Trans-New Guinea Engan Papunesia PG #> 65357 Korean Korean Eurasia KR KP #> 65401 Muskogean Muskogean North America US #> 65422 Kiowa-Tanoan Kiowa-Tanoan North America US #> 65501 Northwest Caucasian Northwest Caucasian Eurasia GE #> 65502 Sepik Sepik Hill Papunesia PG #> 65506 Tiwian Tiwian Australia AU #> 65577 Indo-European Indic Eurasia IN #> 65586 Pama-Nyungan Western Pama-Nyungan Australia AU #> 65607 Caddoan Caddoan North America US #> 65672 Iroquoian Northern Iroquoian North America US #> 65714 Arawakan Purus South America BR #> 66013 Hokan Yuman North America US #> 66094 Austronesian Celebic Papunesia ID #> 66142 Songhay Songhay Africa NE ML #> 66321 Afro-Asiatic Lowland East Cushitic Africa ET #> 66346 Mura Mura South America BR #> 66477 Afro-Asiatic West Chadic Africa NG NE #> 66545 Austronesian Chamorro Papunesia GU #> 66552 Tiwian Tiwian Australia AU #> 66687 Arawakan Purus South America BR #> 66700 Caddoan Caddoan North America US #> 66740 Kiowa-Tanoan Kiowa-Tanoan North America US #> 66789 Korean Korean Eurasia KR KP #> 66795 Indo-European Indic Eurasia IN #> 66796 Pama-Nyungan Western Pama-Nyungan Australia AU #> 66815 Sepik Sepik Hill Papunesia PG #> 66962 Hokan Yuman North America US #> 67041 Songhay Songhay Africa NE ML #> 67081 Niger-Congo Gur Africa ML #> 67186 Trans-New Guinea Engan Papunesia PG #> 67201 Muskogean Muskogean North America US #> 67238 Afro-Asiatic West Chadic Africa NG NE #> 67250 Afro-Asiatic Lowland East Cushitic Africa ET #> 67387 Mura Mura South America BR #> 67538 Austronesian Celebic Papunesia ID #> 67608 Northwest Caucasian Northwest Caucasian Eurasia GE #> 67645 Tiwian Tiwian Australia AU #> 67672 Austronesian Chamorro Papunesia GU #> 67694 Pama-Nyungan Western Pama-Nyungan Australia AU #> 67698 Niger-Congo Gur Africa ML #> 67734 Songhay Songhay Africa NE ML #> 67765 Austronesian Celebic Papunesia ID #> 67849 Korean Korean Eurasia KR KP #> 67888 Hokan Yuman North America US #> 67896 Indo-European Indic Eurasia IN #> 67898 Afro-Asiatic West Chadic Africa NG NE #> 67908 Trans-New Guinea Engan Papunesia PG #> 67920 Caddoan Caddoan North America US #> 67935 Northwest Caucasian Northwest Caucasian Eurasia GE #> 67963 Sepik Sepik Hill Papunesia PG #> 67981 Arawakan Purus South America BR #> 67991 Iroquoian Northern Iroquoian North America US #> 68075 Muskogean Muskogean North America US #> 68089 Kiowa-Tanoan Kiowa-Tanoan North America US #> 68093 Mura Mura South America BR #> 68094 Afro-Asiatic Lowland East Cushitic Africa ET #> 68135 Austronesian Chamorro Papunesia GU #> 68200 Arawakan Purus South America BR #> 68234 Afro-Asiatic West Chadic Africa NG NE #> 68287 Songhay Songhay Africa NE ML #> 68413 Caddoan Caddoan North America US #> 68482 Afro-Asiatic Lowland East Cushitic Africa ET #> 68516 Tiwian Tiwian Australia AU #> 68715 Korean Korean Eurasia KR KP #> 68742 Sepik Sepik Hill Papunesia PG #> 68800 Northwest Caucasian Northwest Caucasian Eurasia GE #> 68828 Iroquoian Northern Iroquoian North America US #> 68834 Kiowa-Tanoan Kiowa-Tanoan North America US #> 68853 Indo-European Indic Eurasia IN #> 68855 Niger-Congo Gur Africa ML #> 68859 Pama-Nyungan Western Pama-Nyungan Australia AU #> 68869 Austronesian Celebic Papunesia ID #> 68891 Trans-New Guinea Engan Papunesia PG #> 68908 Muskogean Muskogean North America US #> 68912 Hokan Yuman North America US #> 68938 Sepik Sepik Hill Papunesia PG #> 68940 Northwest Caucasian Northwest Caucasian Eurasia GE #> 69054 Korean Korean Eurasia KR KP #> 69100 Trans-New Guinea Engan Papunesia PG #> 69113 Muskogean Muskogean North America US #> 69122 Afro-Asiatic West Chadic Africa NG NE #> 69314 Afro-Asiatic Lowland East Cushitic Africa ET #> 69335 Austronesian Chamorro Papunesia GU #> 69359 Caddoan Caddoan North America US #> 69452 Tiwian Tiwian Australia AU #> 69469 Arawakan Purus South America BR #> 69682 Songhay Songhay Africa NE ML #> 69730 Austronesian Celebic Papunesia ID #> 69736 Hokan Yuman North America US #> 69745 Kiowa-Tanoan Kiowa-Tanoan North America US #> 69758 Iroquoian Northern Iroquoian North America US #> 69771 Muskogean Muskogean North America US #> 69777 Trans-New Guinea Engan Papunesia PG #> 69779 Hokan Yuman North America US #> 69784 Austronesian Celebic Papunesia ID #> 69790 Korean Korean Eurasia KR KP #> 69794 Niger-Congo Gur Africa ML #> 69808 Indo-European Indic Eurasia IN #> 69809 Niger-Congo Gur Africa ML #> 69827 Pama-Nyungan Western Pama-Nyungan Australia AU #> 69852 Afro-Asiatic Lowland East Cushitic Africa ET #> 69880 Indo-European Indic Eurasia IN #> 69926 Northwest Caucasian Northwest Caucasian Eurasia GE #> 69942 Iroquoian Northern Iroquoian North America US #> 69980 Austronesian Chamorro Papunesia GU #> 70051 Korean Korean Eurasia KR KP #> 70072 Afro-Asiatic West Chadic Africa NG NE #> 70158 Sepik Sepik Hill Papunesia PG #> 70360 Kiowa-Tanoan Kiowa-Tanoan North America US #> 70377 Indo-European Indic Eurasia IN #> 70402 Austronesian Chamorro Papunesia GU #> 70469 Trans-New Guinea Engan Papunesia PG #> 70498 Afro-Asiatic West Chadic Africa NG NE #> 70527 Mura Mura South America BR #> 70553 Niger-Congo Gur Africa ML #> 70675 Austronesian Celebic Papunesia ID #> 70760 Tiwian Tiwian Australia AU #> 70807 Iroquoian Northern Iroquoian North America US #> 70837 Songhay Songhay Africa NE ML #> 70919 Sepik Sepik Hill Papunesia PG #> 70929 Afro-Asiatic Lowland East Cushitic Africa ET #> 70939 Northwest Caucasian Northwest Caucasian Eurasia GE #> 70941 Hokan Yuman North America US #> 70972 Arawakan Purus South America BR #> 70996 Korean Korean Eurasia KR KP #> 71024 Pama-Nyungan Western Pama-Nyungan Australia AU #> 71270 Pama-Nyungan Western Pama-Nyungan Australia AU #> 71276 Iroquoian Northern Iroquoian North America US #> 71356 Songhay Songhay Africa NE ML #> 71395 Kiowa-Tanoan Kiowa-Tanoan North America US #> 71462 Arawakan Purus South America BR #> 71479 Mura Mura South America BR #> 71494 Northwest Caucasian Northwest Caucasian Eurasia GE #> 71515 Indo-European Indic Eurasia IN #> 71529 Korean Korean Eurasia KR KP #> 71580 Trans-New Guinea Engan Papunesia PG #> 71923 Afro-Asiatic Lowland East Cushitic Africa ET #> 71963 Sepik Sepik Hill Papunesia PG #> 72086 Austronesian Celebic Papunesia ID #> 72088 Afro-Asiatic West Chadic Africa NG NE #> 72093 Niger-Congo Gur Africa ML #> 72099 Austronesian Chamorro Papunesia GU #> 72103 Tiwian Tiwian Australia AU #> 72117 Austronesian Chamorro Papunesia GU #> 72134 Arawakan Purus South America BR #> 72135 Tiwian Tiwian Australia AU #> 72137 Caddoan Caddoan North America US #> 72176 Austronesian Celebic Papunesia ID #> 72192 Iroquoian Northern Iroquoian North America US #> 72371 Afro-Asiatic Lowland East Cushitic Africa ET #> 72375 Indo-European Indic Eurasia IN #> 72401 Afro-Asiatic West Chadic Africa NG NE #> 72404 Niger-Congo Gur Africa ML #> 72477 Songhay Songhay Africa NE ML #> 72577 Trans-New Guinea Engan Papunesia PG #> 72594 Korean Korean Eurasia KR KP #> 72612 Kiowa-Tanoan Kiowa-Tanoan North America US #> 72650 Northwest Caucasian Northwest Caucasian Eurasia GE #> 72738 Hokan Yuman North America US #> 72800 Sepik Sepik Hill Papunesia PG #> 72846 Korean Korean Eurasia KR KP #> 72848 Northwest Caucasian Northwest Caucasian Eurasia GE #> 72883 Muskogean Muskogean North America US #> 72928 Indo-European Indic Eurasia IN #> 72941 Songhay Songhay Africa NE ML #> 73006 Hokan Yuman North America US #> 73149 Afro-Asiatic Lowland East Cushitic Africa ET #> 73155 Trans-New Guinea Engan Papunesia PG #> 73162 Niger-Congo Gur Africa ML #> 73224 Mura Mura South America BR #> 73307 Austronesian Celebic Papunesia ID #> 73318 Afro-Asiatic West Chadic Africa NG NE #> 73393 Austronesian Chamorro Papunesia GU #> 73642 Tiwian Tiwian Australia AU #> 73773 Arawakan Purus South America BR #> 73914 Northwest Caucasian Northwest Caucasian Eurasia GE #> 73992 Korean Korean Eurasia KR KP #> 74001 Sepik Sepik Hill Papunesia PG #> 74052 Afro-Asiatic Lowland East Cushitic Africa ET #> 74061 Songhay Songhay Africa NE ML #> 74083 Caddoan Caddoan North America US #> 74160 Afro-Asiatic West Chadic Africa NG NE #> 74189 Tiwian Tiwian Australia AU #> 74269 Austronesian Chamorro Papunesia GU #> 74577 Austronesian Celebic Papunesia ID #> 74619 Arawakan Purus South America BR #> 74683 Pama-Nyungan Western Pama-Nyungan Australia AU #> 74700 Iroquoian Northern Iroquoian North America US #> 74717 Muskogean Muskogean North America US #> 74733 Niger-Congo Gur Africa ML #> 74745 Trans-New Guinea Engan Papunesia PG #> 74757 Indo-European Indic Eurasia IN #> 74767 Kiowa-Tanoan Kiowa-Tanoan North America US #> 74771 Hokan Yuman North America US #> 74815 Trans-New Guinea Engan Papunesia PG #> 74830 Indo-European Indic Eurasia IN #> 74932 Korean Korean Eurasia KR KP #> 74954 Sepik Sepik Hill Papunesia PG #> 75007 Songhay Songhay Africa NE ML #> 75017 Hokan Yuman North America US #> 75179 Muskogean Muskogean North America US #> 75182 Mura Mura South America BR #> 75254 Caddoan Caddoan North America US #> 75256 Northwest Caucasian Northwest Caucasian Eurasia GE #> 75267 Niger-Congo Gur Africa ML #> 75279 Afro-Asiatic Lowland East Cushitic Africa ET #> 75359 Afro-Asiatic West Chadic Africa NG NE #> 75382 Austronesian Chamorro Papunesia GU #> 75441 Tiwian Tiwian Australia AU #> 75810 Austronesian Celebic Papunesia ID #> 75884 Pama-Nyungan Western Pama-Nyungan Australia AU #> 75946 Arawakan Purus South America BR #> 76104 Songhay Songhay Africa NE ML #> 76113 Caddoan Caddoan North America US #> 76116 Northwest Caucasian Northwest Caucasian Eurasia GE #> 76119 Austronesian Chamorro Papunesia GU #> 76137 Arawakan Purus South America BR #> 76146 Niger-Congo Gur Africa ML #> 76154 Mura Mura South America BR #> 76171 Afro-Asiatic West Chadic Africa NG NE #> 76177 Tiwian Tiwian Australia AU #> 76191 Sepik Sepik Hill Papunesia PG #> 76200 Kiowa-Tanoan Kiowa-Tanoan North America US #> 76202 Muskogean Muskogean North America US #> 76211 Korean Korean Eurasia KR KP #> 76245 Pama-Nyungan Western Pama-Nyungan Australia AU #> 76250 Afro-Asiatic Lowland East Cushitic Africa ET #> 76253 Hokan Yuman North America US #> 76257 Trans-New Guinea Engan Papunesia PG #> 76284 Austronesian Celebic Papunesia ID #> 76287 Indo-European Indic Eurasia IN #> 76302 Niger-Congo Gur Africa ML #> 76325 Songhay Songhay Africa NE ML #> 76327 Afro-Asiatic West Chadic Africa NG NE #> 76340 Mura Mura South America BR #> 76353 Northwest Caucasian Northwest Caucasian Eurasia GE #> 76368 Arawakan Purus South America BR #> 76369 Tiwian Tiwian Australia AU #> 76398 Afro-Asiatic Lowland East Cushitic Africa ET #> 76399 Pama-Nyungan Western Pama-Nyungan Australia AU #> 76407 Korean Korean Eurasia KR KP #> 76434 Hokan Yuman North America US #> 76438 Austronesian Celebic Papunesia ID #> 76439 Trans-New Guinea Engan Papunesia PG #> 76447 Austronesian Chamorro Papunesia GU #> 76459 Indo-European Indic Eurasia IN #> 76464 Caddoan Caddoan North America US #> latitude longitude in_WALS_100 in_WALS_200 #> 35 -7.000000 -62.000000 TRUE TRUE #> 37 34.833333 -85.166667 TRUE TRUE #> 55 -9.000000 -67.000000 TRUE TRUE #> 73 43.000000 -75.666667 TRUE TRUE #> 90 -4.666667 143.333333 TRUE TRUE #> 146 16.000000 0.000000 TRUE TRUE #> 187 -6.500000 143.833333 TRUE TRUE #> 220 11.500000 -5.583333 TRUE TRUE #> 301 -11.500000 131.000000 TRUE TRUE #> 309 37.000000 -99.000000 TRUE TRUE #> 327 33.166667 -113.166667 TRUE TRUE #> 342 37.500000 128.000000 TRUE TRUE #> 360 -5.500000 123.500000 TRUE TRUE #> 384 13.450000 144.750000 TRUE TRUE #> 402 33.333333 -97.333333 TRUE TRUE #> 407 -20.833333 116.500000 TRUE TRUE #> 429 9.000000 42.000000 TRUE TRUE #> 462 12.000000 7.000000 TRUE TRUE #> 532 25.000000 77.000000 TRUE TRUE #> 533 43.083333 41.000000 TRUE TRUE #> 569 -9.000000 -67.000000 TRUE TRUE #> 577 11.500000 -5.583333 TRUE TRUE #> 596 34.833333 -85.166667 TRUE TRUE #> 625 25.000000 77.000000 TRUE TRUE #> 628 -5.500000 123.500000 TRUE TRUE #> 637 37.500000 128.000000 TRUE TRUE #> 647 -7.000000 -62.000000 TRUE TRUE #> 656 33.333333 -97.333333 TRUE TRUE #> 659 -20.833333 116.500000 TRUE TRUE #> 665 43.083333 41.000000 TRUE TRUE #> 680 13.450000 144.750000 TRUE TRUE #> 746 -4.666667 143.333333 TRUE TRUE #> 761 9.000000 42.000000 TRUE TRUE #> 774 12.000000 7.000000 TRUE TRUE #> 783 33.166667 -113.166667 TRUE TRUE #> 803 -11.500000 131.000000 TRUE TRUE #> 854 37.500000 128.000000 TRUE TRUE #> 860 16.000000 0.000000 TRUE TRUE #> 867 11.500000 -5.583333 TRUE TRUE #> 895 -20.833333 116.500000 TRUE TRUE #> 922 12.000000 7.000000 TRUE TRUE #> 938 -11.500000 131.000000 TRUE TRUE #> 980 -5.500000 123.500000 TRUE TRUE #> 987 -4.666667 143.333333 TRUE TRUE #> 1020 9.000000 42.000000 TRUE TRUE #> 1028 -7.000000 -62.000000 TRUE TRUE #> 1044 33.166667 -113.166667 TRUE TRUE #> 1117 25.000000 77.000000 TRUE TRUE #> 1150 13.450000 144.750000 TRUE TRUE #> 1151 43.083333 41.000000 TRUE TRUE #> 1164 33.333333 -97.333333 TRUE TRUE #> 1172 -6.500000 143.833333 TRUE TRUE #> 1173 34.833333 -85.166667 TRUE TRUE #> 1185 43.000000 -75.666667 TRUE TRUE #> 1188 -9.000000 -67.000000 TRUE TRUE #> 1197 37.000000 -99.000000 TRUE TRUE #> 1265 11.500000 -5.583333 TRUE TRUE #> 1296 16.000000 0.000000 TRUE TRUE #> 1314 37.000000 -99.000000 TRUE TRUE #> 1325 33.333333 -97.333333 TRUE TRUE #> 1360 -4.666667 143.333333 TRUE TRUE #> 1399 -11.500000 131.000000 TRUE TRUE #> 1444 -5.500000 123.500000 TRUE TRUE #> 1461 9.000000 42.000000 TRUE TRUE #> 1466 34.833333 -85.166667 TRUE TRUE #> 1514 43.000000 -75.666667 TRUE TRUE #> 1560 -6.500000 143.833333 TRUE TRUE #> 1567 -9.000000 -67.000000 TRUE TRUE #> 1569 33.166667 -113.166667 TRUE TRUE #> 1574 43.083333 41.000000 TRUE TRUE #> 1788 12.000000 7.000000 TRUE TRUE #> 1892 37.500000 128.000000 TRUE TRUE #> 1896 -20.833333 116.500000 TRUE TRUE #> 1943 -20.833333 116.500000 TRUE TRUE #> 1954 16.000000 0.000000 TRUE TRUE #> 1967 37.500000 128.000000 TRUE TRUE #> 1984 11.500000 -5.583333 TRUE TRUE #> 2002 12.000000 7.000000 TRUE TRUE #> 2037 9.000000 42.000000 TRUE TRUE #> 2067 25.000000 77.000000 TRUE TRUE #> 2077 13.450000 144.750000 TRUE TRUE #> 2083 -6.500000 143.833333 TRUE TRUE #> 2122 37.000000 -99.000000 TRUE TRUE #> 2134 -5.500000 123.500000 TRUE TRUE #> 2136 -9.000000 -67.000000 TRUE TRUE #> 2150 34.833333 -85.166667 TRUE TRUE #> 2158 33.333333 -97.333333 TRUE TRUE #> 2159 -4.666667 143.333333 TRUE TRUE #> 2164 -11.500000 131.000000 TRUE TRUE #> 2199 -7.000000 -62.000000 TRUE TRUE #> 2210 43.083333 41.000000 TRUE TRUE #> 2217 33.166667 -113.166667 TRUE TRUE #> 2286 43.000000 -75.666667 TRUE TRUE #> 2328 11.500000 -5.583333 TRUE TRUE #> 2354 16.000000 0.000000 TRUE TRUE #> 2370 -20.833333 116.500000 TRUE TRUE #> 2392 37.500000 128.000000 TRUE TRUE #> 2397 12.000000 7.000000 TRUE TRUE #> 2413 -9.000000 -67.000000 TRUE TRUE #> 2457 -6.500000 143.833333 TRUE TRUE #> 2478 -5.500000 123.500000 TRUE TRUE #> 2492 43.000000 -75.666667 TRUE TRUE #> 2493 25.000000 77.000000 TRUE TRUE #> 2537 -4.666667 143.333333 TRUE TRUE #> 2558 13.450000 144.750000 TRUE TRUE #> 2562 -7.000000 -62.000000 TRUE TRUE #> 2578 -11.500000 131.000000 TRUE TRUE #> 2591 43.083333 41.000000 TRUE TRUE #> 2599 9.000000 42.000000 TRUE TRUE #> 2656 37.000000 -99.000000 TRUE TRUE #> 2664 34.833333 -85.166667 TRUE TRUE #> 2669 33.333333 -97.333333 TRUE TRUE #> 2684 33.166667 -113.166667 TRUE TRUE #> 2697 -6.500000 143.833333 TRUE TRUE #> 2743 9.000000 42.000000 TRUE TRUE #> 2757 16.000000 0.000000 TRUE TRUE #> 2764 37.500000 128.000000 TRUE TRUE #> 2769 11.500000 -5.583333 TRUE TRUE #> 2777 13.450000 144.750000 TRUE TRUE #> 2778 -20.833333 116.500000 TRUE TRUE #> 2803 25.000000 77.000000 TRUE TRUE #> 2851 37.000000 -99.000000 TRUE TRUE #> 2873 12.000000 7.000000 TRUE TRUE #> 2897 33.333333 -97.333333 TRUE TRUE #> 2912 43.000000 -75.666667 TRUE TRUE #> 2937 -9.000000 -67.000000 TRUE TRUE #> 2956 -4.666667 143.333333 TRUE TRUE #> 2965 -5.500000 123.500000 TRUE TRUE #> 2967 -7.000000 -62.000000 TRUE TRUE #> 3001 43.083333 41.000000 TRUE TRUE #> 3036 34.833333 -85.166667 TRUE TRUE #> 3049 -11.500000 131.000000 TRUE TRUE #> 3061 33.166667 -113.166667 TRUE TRUE #> 3102 11.500000 -5.583333 TRUE TRUE #> 3105 34.833333 -85.166667 TRUE TRUE #> 3150 43.083333 41.000000 TRUE TRUE #> 3178 25.000000 77.000000 TRUE TRUE #> 3213 37.500000 128.000000 TRUE TRUE #> 3259 9.000000 42.000000 TRUE TRUE #> 3317 -5.500000 123.500000 TRUE TRUE #> 3330 -7.000000 -62.000000 TRUE TRUE #> 3355 -20.833333 116.500000 TRUE TRUE #> 3364 33.166667 -113.166667 TRUE TRUE #> 3384 -11.500000 131.000000 TRUE TRUE #> 3395 13.450000 144.750000 TRUE TRUE #> 3406 -4.666667 143.333333 TRUE TRUE #> 3410 12.000000 7.000000 TRUE TRUE #> 3450 16.000000 0.000000 TRUE TRUE #> 3453 -9.000000 -67.000000 TRUE TRUE #> 3460 33.333333 -97.333333 TRUE TRUE #> 3467 -7.000000 -62.000000 TRUE TRUE #> 3468 -6.500000 143.833333 TRUE TRUE #> 3495 9.000000 42.000000 TRUE TRUE #> 3498 13.450000 144.750000 TRUE TRUE #> 3501 37.500000 128.000000 TRUE TRUE #> 3505 12.000000 7.000000 TRUE TRUE #> 3506 34.833333 -85.166667 TRUE TRUE #> 3511 43.083333 41.000000 TRUE TRUE #> 3513 16.000000 0.000000 TRUE TRUE #> 3515 -9.000000 -67.000000 TRUE TRUE #> 3530 25.000000 77.000000 TRUE TRUE #> 3537 -11.500000 131.000000 TRUE TRUE #> 3555 -20.833333 116.500000 TRUE TRUE #> 3559 -5.500000 123.500000 TRUE TRUE #> 3590 43.000000 -75.666667 TRUE TRUE #> 3607 33.166667 -113.166667 TRUE TRUE #> 3622 11.500000 -5.583333 TRUE TRUE #> 3626 37.000000 -99.000000 TRUE TRUE #> 3634 33.166667 -113.166667 TRUE TRUE #> 3645 34.833333 -85.166667 TRUE TRUE #> 3679 37.500000 128.000000 TRUE TRUE #> 3714 12.000000 7.000000 TRUE TRUE #> 3715 25.000000 77.000000 TRUE TRUE #> 3731 13.450000 144.750000 TRUE TRUE #> 3747 16.000000 0.000000 TRUE TRUE #> 3748 -20.833333 116.500000 TRUE TRUE #> 3784 -9.000000 -67.000000 TRUE TRUE #> 3787 -5.500000 123.500000 TRUE TRUE #> 3804 -11.500000 131.000000 TRUE TRUE #> 3811 33.333333 -97.333333 TRUE TRUE #> 3813 -6.500000 143.833333 TRUE TRUE #> 3842 43.000000 -75.666667 TRUE TRUE #> 3843 37.000000 -99.000000 TRUE TRUE #> 3844 43.083333 41.000000 TRUE TRUE #> 3921 -7.000000 -62.000000 TRUE TRUE #> 3930 -4.666667 143.333333 TRUE TRUE #> 3933 11.500000 -5.583333 TRUE TRUE #> 3966 9.000000 42.000000 TRUE TRUE #> 4002 16.000000 0.000000 TRUE TRUE #> 4007 37.000000 -99.000000 TRUE TRUE #> 4040 13.450000 144.750000 TRUE TRUE #> 4055 -11.500000 131.000000 TRUE TRUE #> 4057 -4.666667 143.333333 TRUE TRUE #> 4082 -5.500000 123.500000 TRUE TRUE #> 4083 25.000000 77.000000 TRUE TRUE #> 4087 -9.000000 -67.000000 TRUE TRUE #> 4088 -20.833333 116.500000 TRUE TRUE #> 4097 33.166667 -113.166667 TRUE TRUE #> 4107 12.000000 7.000000 TRUE TRUE #> 4131 34.833333 -85.166667 TRUE TRUE #> 4135 -7.000000 -62.000000 TRUE TRUE #> 4150 -6.500000 143.833333 TRUE TRUE #> 4160 11.500000 -5.583333 TRUE TRUE #> 4167 33.333333 -97.333333 TRUE TRUE #> 4178 9.000000 42.000000 TRUE TRUE #> 4182 43.083333 41.000000 TRUE TRUE #> 4186 37.500000 128.000000 TRUE TRUE #> 4187 43.000000 -75.666667 TRUE TRUE #> 4204 16.000000 0.000000 TRUE TRUE #> 4232 37.000000 -99.000000 TRUE TRUE #> 4233 13.450000 144.750000 TRUE TRUE #> 4242 33.333333 -97.333333 TRUE TRUE #> 4243 -9.000000 -67.000000 TRUE TRUE #> 4249 43.083333 41.000000 TRUE TRUE #> 4251 -4.666667 143.333333 TRUE TRUE #> 4264 9.000000 42.000000 TRUE TRUE #> 4283 -5.500000 123.500000 TRUE TRUE #> 4284 -20.833333 116.500000 TRUE TRUE #> 4287 -11.500000 131.000000 TRUE TRUE #> 4303 33.166667 -113.166667 TRUE TRUE #> 4305 -7.000000 -62.000000 TRUE TRUE #> 4326 43.000000 -75.666667 TRUE TRUE #> 4340 11.500000 -5.583333 TRUE TRUE #> 4355 -6.500000 143.833333 TRUE TRUE #> 4361 25.000000 77.000000 TRUE TRUE #> 4362 37.500000 128.000000 TRUE TRUE #> 4369 12.000000 7.000000 TRUE TRUE #> 4376 34.833333 -85.166667 TRUE TRUE #> 4389 -4.666667 143.333333 TRUE TRUE #> 4392 13.450000 144.750000 TRUE TRUE #> 4396 -6.500000 143.833333 TRUE TRUE #> 4414 33.333333 -97.333333 TRUE TRUE #> 4430 -5.500000 123.500000 TRUE TRUE #> 4431 33.166667 -113.166667 TRUE TRUE #> 4436 43.000000 -75.666667 TRUE TRUE #> 4447 12.000000 7.000000 TRUE TRUE #> 4451 43.083333 41.000000 TRUE TRUE #> 4457 -11.500000 131.000000 TRUE TRUE #> 4461 16.000000 0.000000 TRUE TRUE #> 4476 -9.000000 -67.000000 TRUE TRUE #> 4484 9.000000 42.000000 TRUE TRUE #> 4490 25.000000 77.000000 TRUE TRUE #> 4502 -7.000000 -62.000000 TRUE TRUE #> 4511 34.833333 -85.166667 TRUE TRUE #> 4527 37.500000 128.000000 TRUE TRUE #> 4544 37.000000 -99.000000 TRUE TRUE #> 4557 11.500000 -5.583333 TRUE TRUE #> 4562 -20.833333 116.500000 TRUE TRUE #> 4568 43.083333 41.000000 TRUE TRUE #> 4569 -11.500000 131.000000 TRUE TRUE #> 4574 33.333333 -97.333333 TRUE TRUE #> 4579 16.000000 0.000000 TRUE TRUE #> 4596 33.166667 -113.166667 TRUE TRUE #> 4598 12.000000 7.000000 TRUE TRUE #> 4603 -5.500000 123.500000 TRUE TRUE #> 4604 43.000000 -75.666667 TRUE TRUE #> 4612 -6.500000 143.833333 TRUE TRUE #> 4620 -4.666667 143.333333 TRUE TRUE #> 4632 13.450000 144.750000 TRUE TRUE #> 4656 -7.000000 -62.000000 TRUE TRUE #> 4661 37.500000 128.000000 TRUE TRUE #> 4664 11.500000 -5.583333 TRUE TRUE #> 4668 -9.000000 -67.000000 TRUE TRUE #> 4669 -20.833333 116.500000 TRUE TRUE #> 4678 34.833333 -85.166667 TRUE TRUE #> 4729 9.000000 42.000000 TRUE TRUE #> 4730 25.000000 77.000000 TRUE TRUE #> 4743 37.000000 -99.000000 TRUE TRUE #> 4764 25.000000 77.000000 TRUE TRUE #> 4794 43.083333 41.000000 TRUE TRUE #> 4799 12.000000 7.000000 TRUE TRUE #> 4803 16.000000 0.000000 TRUE TRUE #> 4843 -5.500000 123.500000 TRUE TRUE #> 4885 -6.500000 143.833333 TRUE TRUE #> 4894 -9.000000 -67.000000 TRUE TRUE #> 4940 -11.500000 131.000000 TRUE TRUE #> 4987 -7.000000 -62.000000 TRUE TRUE #> 5000 13.450000 144.750000 TRUE TRUE #> 5031 -4.666667 143.333333 TRUE TRUE #> 5041 34.833333 -85.166667 TRUE TRUE #> 5065 43.000000 -75.666667 TRUE TRUE #> 5078 37.500000 128.000000 TRUE TRUE #> 5089 33.166667 -113.166667 TRUE TRUE #> 5133 37.000000 -99.000000 TRUE TRUE #> 5210 33.333333 -97.333333 TRUE TRUE #> 5226 -20.833333 116.500000 TRUE TRUE #> 5266 9.000000 42.000000 TRUE TRUE #> 5268 11.500000 -5.583333 TRUE TRUE #> 5311 12.000000 7.000000 TRUE TRUE #> 5351 -7.000000 -62.000000 TRUE TRUE #> 5354 13.450000 144.750000 TRUE TRUE #> 5359 37.500000 128.000000 TRUE TRUE #> 5361 -20.833333 116.500000 TRUE TRUE #> 5364 43.083333 41.000000 TRUE TRUE #> 5395 9.000000 42.000000 TRUE TRUE #> 5402 33.333333 -97.333333 TRUE TRUE #> 5408 43.000000 -75.666667 TRUE TRUE #> 5409 25.000000 77.000000 TRUE TRUE #> 5413 -5.500000 123.500000 TRUE TRUE #> 5421 16.000000 0.000000 TRUE TRUE #> 5422 11.500000 -5.583333 TRUE TRUE #> 5483 -9.000000 -67.000000 TRUE TRUE #> 5514 -5.500000 123.500000 TRUE TRUE #> 5550 25.000000 77.000000 TRUE TRUE #> 5551 43.083333 41.000000 TRUE TRUE #> 5553 37.000000 -99.000000 TRUE TRUE #> 5566 -7.000000 -62.000000 TRUE TRUE #> 5571 33.333333 -97.333333 TRUE TRUE #> 5579 13.450000 144.750000 TRUE TRUE #> 5592 11.500000 -5.583333 TRUE TRUE #> 5593 37.500000 128.000000 TRUE TRUE #> 5597 -11.500000 131.000000 TRUE TRUE #> 5598 -6.500000 143.833333 TRUE TRUE #> 5617 -20.833333 116.500000 TRUE TRUE #> 5622 12.000000 7.000000 TRUE TRUE #> 5640 43.000000 -75.666667 TRUE TRUE #> 5675 9.000000 42.000000 TRUE TRUE #> 5721 33.166667 -113.166667 TRUE TRUE #> 5724 -4.666667 143.333333 TRUE TRUE #> 5731 34.833333 -85.166667 TRUE TRUE #> 5732 16.000000 0.000000 TRUE TRUE #> 5842 43.083333 41.000000 TRUE TRUE #> 5973 -6.500000 143.833333 TRUE TRUE #> 6054 -7.000000 -62.000000 TRUE TRUE #> 6125 34.833333 -85.166667 TRUE TRUE #> 6194 11.500000 -5.583333 TRUE TRUE #> 6197 25.000000 77.000000 TRUE TRUE #> 6256 37.500000 128.000000 TRUE TRUE #> 6300 -9.000000 -67.000000 TRUE TRUE #> 6304 13.450000 144.750000 TRUE TRUE #> 6432 33.333333 -97.333333 TRUE TRUE #> 6465 12.000000 7.000000 TRUE TRUE #> 6511 43.000000 -75.666667 TRUE TRUE #> 6525 16.000000 0.000000 TRUE TRUE #> 6586 -20.833333 116.500000 TRUE TRUE #> 6615 -4.666667 143.333333 TRUE TRUE #> 6622 -11.500000 131.000000 TRUE TRUE #> 6810 37.000000 -99.000000 TRUE TRUE #> 6863 33.166667 -113.166667 TRUE TRUE #> 6881 9.000000 42.000000 TRUE TRUE #> 6900 13.450000 144.750000 TRUE TRUE #> 6936 -7.000000 -62.000000 TRUE TRUE #> 6942 -9.000000 -67.000000 TRUE TRUE #> 6972 33.166667 -113.166667 TRUE TRUE #> 6978 -20.833333 116.500000 TRUE TRUE #> 6987 -5.500000 123.500000 TRUE TRUE #> 6998 -6.500000 143.833333 TRUE TRUE #> 7063 43.000000 -75.666667 TRUE TRUE #> 7069 12.000000 7.000000 TRUE TRUE #> 7070 16.000000 0.000000 TRUE TRUE #> 7084 -11.500000 131.000000 TRUE TRUE #> 7087 25.000000 77.000000 TRUE TRUE #> 7090 37.500000 128.000000 TRUE TRUE #> 7097 34.833333 -85.166667 TRUE TRUE #> 7103 -4.666667 143.333333 TRUE TRUE #> 7153 33.333333 -97.333333 TRUE TRUE #> 7173 37.000000 -99.000000 TRUE TRUE #> 7181 43.083333 41.000000 TRUE TRUE #> 7183 11.500000 -5.583333 TRUE TRUE #> 7184 9.000000 42.000000 TRUE TRUE #> 7245 -11.500000 131.000000 TRUE TRUE #> 7250 -4.666667 143.333333 TRUE TRUE #> 7254 12.000000 7.000000 TRUE TRUE #> 7266 43.083333 41.000000 TRUE TRUE #> 7267 33.333333 -97.333333 TRUE TRUE #> 7271 37.000000 -99.000000 TRUE TRUE #> 7298 16.000000 0.000000 TRUE TRUE #> 7300 43.000000 -75.666667 TRUE TRUE #> 7308 25.000000 77.000000 TRUE TRUE #> 7321 34.833333 -85.166667 TRUE TRUE #> 7336 37.500000 128.000000 TRUE TRUE #> 7352 11.500000 -5.583333 TRUE TRUE #> 7355 9.000000 42.000000 TRUE TRUE #> 7387 -20.833333 116.500000 TRUE TRUE #> 7399 -7.000000 -62.000000 TRUE TRUE #> 7421 33.166667 -113.166667 TRUE TRUE #> 7451 -6.500000 143.833333 TRUE TRUE #> 7461 -9.000000 -67.000000 TRUE TRUE #> 7463 13.450000 144.750000 TRUE TRUE #> 7472 -5.500000 123.500000 TRUE TRUE #> 7493 37.500000 128.000000 TRUE TRUE #> 7505 12.000000 7.000000 TRUE TRUE #> 7514 43.083333 41.000000 TRUE TRUE #> 7522 16.000000 0.000000 TRUE TRUE #> 7535 34.833333 -85.166667 TRUE TRUE #> 7568 11.500000 -5.583333 TRUE TRUE #> 7577 37.000000 -99.000000 TRUE TRUE #> 7631 9.000000 42.000000 TRUE TRUE #> 7658 25.000000 77.000000 TRUE TRUE #> 7661 -11.500000 131.000000 TRUE TRUE #> 7667 13.450000 144.750000 TRUE TRUE #> 7706 -5.500000 123.500000 TRUE TRUE #> 7711 11.500000 -5.583333 TRUE TRUE #> 7770 16.000000 0.000000 TRUE TRUE #> 7798 33.333333 -97.333333 TRUE TRUE #> 7802 25.000000 77.000000 TRUE TRUE #> 7964 37.000000 -99.000000 TRUE TRUE #> 7974 -6.500000 143.833333 TRUE TRUE #> 8084 -11.500000 131.000000 TRUE TRUE #> 8144 43.000000 -75.666667 TRUE TRUE #> 8156 13.450000 144.750000 TRUE TRUE #> 8246 12.000000 7.000000 TRUE TRUE #> 8313 33.166667 -113.166667 TRUE TRUE #> 8316 37.500000 128.000000 TRUE TRUE #> 8387 43.083333 41.000000 TRUE TRUE #> 8454 -7.000000 -62.000000 TRUE TRUE #> 8538 9.000000 42.000000 TRUE TRUE #> 8561 -20.833333 116.500000 TRUE TRUE #> 8572 -4.666667 143.333333 TRUE TRUE #> 8648 -9.000000 -67.000000 TRUE TRUE #> 8650 37.500000 128.000000 TRUE TRUE #> 8659 33.333333 -97.333333 TRUE TRUE #> 8688 25.000000 77.000000 TRUE TRUE #> 8743 34.833333 -85.166667 TRUE TRUE #> 8746 -11.500000 131.000000 TRUE TRUE #> 8777 12.000000 7.000000 TRUE TRUE #> 8779 11.500000 -5.583333 TRUE TRUE #> 8793 -4.666667 143.333333 TRUE TRUE #> 8851 43.083333 41.000000 TRUE TRUE #> 8853 9.000000 42.000000 TRUE TRUE #> 8856 -7.000000 -62.000000 TRUE TRUE #> 8935 -5.500000 123.500000 TRUE TRUE #> 8936 13.450000 144.750000 TRUE TRUE #> 8962 37.000000 -99.000000 TRUE TRUE #> 8998 43.000000 -75.666667 TRUE TRUE #> 9014 43.083333 41.000000 TRUE TRUE #> 9054 -11.500000 131.000000 TRUE TRUE #> 9057 25.000000 77.000000 TRUE TRUE #> 9099 12.000000 7.000000 TRUE TRUE #> 9157 -6.500000 143.833333 TRUE TRUE #> 9176 11.500000 -5.583333 TRUE TRUE #> 9233 33.333333 -97.333333 TRUE TRUE #> 9238 37.500000 128.000000 TRUE TRUE #> 9245 9.000000 42.000000 TRUE TRUE #> 9248 -4.666667 143.333333 TRUE TRUE #> 9292 -11.500000 131.000000 TRUE TRUE #> 9300 -5.500000 123.500000 TRUE TRUE #> 9330 -4.666667 143.333333 TRUE TRUE #> 9335 37.000000 -99.000000 TRUE TRUE #> 9357 11.500000 -5.583333 TRUE TRUE #> 9371 12.000000 7.000000 TRUE TRUE #> 9427 43.083333 41.000000 TRUE TRUE #> 9444 43.000000 -75.666667 TRUE TRUE #> 9450 37.500000 128.000000 TRUE TRUE #> 9464 -6.500000 143.833333 TRUE TRUE #> 9512 13.450000 144.750000 TRUE TRUE #> 9564 25.000000 77.000000 TRUE TRUE #> 9593 9.000000 42.000000 TRUE TRUE #> 9609 33.333333 -97.333333 TRUE TRUE #> 9683 -6.500000 143.833333 TRUE TRUE #> 9700 -5.500000 123.500000 TRUE TRUE #> 9704 -9.000000 -67.000000 TRUE TRUE #> 9722 -7.000000 -62.000000 TRUE TRUE #> 9769 -20.833333 116.500000 TRUE TRUE #> 9860 -11.500000 131.000000 TRUE TRUE #> 9878 13.450000 144.750000 TRUE TRUE #> 9886 9.000000 42.000000 TRUE TRUE #> 9895 37.000000 -99.000000 TRUE TRUE #> 9930 11.500000 -5.583333 TRUE TRUE #> 9938 37.500000 128.000000 TRUE TRUE #> 9955 34.833333 -85.166667 TRUE TRUE #> 9980 12.000000 7.000000 TRUE TRUE #> 9999 25.000000 77.000000 TRUE TRUE #> 10016 33.166667 -113.166667 TRUE TRUE #> 10077 43.083333 41.000000 TRUE TRUE #> 10108 43.000000 -75.666667 TRUE TRUE #> 10128 -4.666667 143.333333 TRUE TRUE #> 10154 12.000000 7.000000 TRUE TRUE #> 10163 37.500000 128.000000 TRUE TRUE #> 10168 13.450000 144.750000 TRUE TRUE #> 10172 33.333333 -97.333333 TRUE TRUE #> 10201 11.500000 -5.583333 TRUE TRUE #> 10269 -4.666667 143.333333 TRUE TRUE #> 10276 43.000000 -75.666667 TRUE TRUE #> 10291 25.000000 77.000000 TRUE TRUE #> 10296 37.000000 -99.000000 TRUE TRUE #> 10349 43.083333 41.000000 TRUE TRUE #> 10385 9.000000 42.000000 TRUE TRUE #> 10398 -6.500000 143.833333 TRUE TRUE #> 10478 -11.500000 131.000000 TRUE TRUE #> 10482 -5.500000 123.500000 TRUE TRUE #> 10538 25.000000 77.000000 TRUE TRUE #> 10578 37.500000 128.000000 TRUE TRUE #> 10637 12.000000 7.000000 TRUE TRUE #> 10659 -7.000000 -62.000000 TRUE TRUE #> 10719 37.000000 -99.000000 TRUE TRUE #> 10723 33.166667 -113.166667 TRUE TRUE #> 10724 -7.000000 -62.000000 TRUE TRUE #> 10725 34.833333 -85.166667 TRUE TRUE #> 10726 11.500000 -5.583333 TRUE TRUE #> 10730 25.000000 77.000000 TRUE TRUE #> 10758 16.000000 0.000000 TRUE TRUE #> 10759 33.333333 -97.333333 TRUE TRUE #> 10763 -4.666667 143.333333 TRUE TRUE #> 10766 9.000000 42.000000 TRUE TRUE #> 10767 43.083333 41.000000 TRUE TRUE #> 10777 13.450000 144.750000 TRUE TRUE #> 10794 -20.833333 116.500000 TRUE TRUE #> 10806 -5.500000 123.500000 TRUE TRUE #> 10822 12.000000 7.000000 TRUE TRUE #> 10859 37.500000 128.000000 TRUE TRUE #> 10885 25.000000 77.000000 TRUE TRUE #> 10892 11.500000 -5.583333 TRUE TRUE #> 10908 12.000000 7.000000 TRUE TRUE #> 10918 37.500000 128.000000 TRUE TRUE #> 10928 -4.666667 143.333333 TRUE TRUE #> 10936 -5.500000 123.500000 TRUE TRUE #> 10942 43.083333 41.000000 TRUE TRUE #> 10950 9.000000 42.000000 TRUE TRUE #> 10967 16.000000 0.000000 TRUE TRUE #> 10968 13.450000 144.750000 TRUE TRUE #> 10969 -7.000000 -62.000000 TRUE TRUE #> 10972 -20.833333 116.500000 TRUE TRUE #> 10987 -20.833333 116.500000 TRUE TRUE #> 11020 37.500000 128.000000 TRUE TRUE #> 11049 13.450000 144.750000 TRUE TRUE #> 11072 11.500000 -5.583333 TRUE TRUE #> 11088 25.000000 77.000000 TRUE TRUE #> 11126 16.000000 0.000000 TRUE TRUE #> 11131 12.000000 7.000000 TRUE TRUE #> 11156 33.166667 -113.166667 TRUE TRUE #> 11161 43.083333 41.000000 TRUE TRUE #> 11206 9.000000 42.000000 TRUE TRUE #> 11208 -5.500000 123.500000 TRUE TRUE #> 11228 -9.000000 -67.000000 TRUE TRUE #> 11251 -7.000000 -62.000000 TRUE TRUE #> 11287 37.500000 128.000000 TRUE TRUE #> 11300 11.500000 -5.583333 TRUE TRUE #> 11301 43.083333 41.000000 TRUE TRUE #> 11318 -7.000000 -62.000000 TRUE TRUE #> 11321 -5.500000 123.500000 TRUE TRUE #> 11350 12.000000 7.000000 TRUE TRUE #> 11372 9.000000 42.000000 TRUE TRUE #> 11396 -20.833333 116.500000 TRUE TRUE #> 11398 -6.500000 143.833333 TRUE TRUE #> 11401 37.000000 -99.000000 TRUE TRUE #> 11424 -4.666667 143.333333 TRUE TRUE #> 11435 -9.000000 -67.000000 TRUE TRUE #> 11439 -7.000000 -62.000000 TRUE TRUE #> 11446 9.000000 42.000000 TRUE TRUE #> 11456 13.450000 144.750000 TRUE TRUE #> 11469 -6.500000 143.833333 TRUE TRUE #> 11482 -11.500000 131.000000 TRUE TRUE #> 11499 37.500000 128.000000 TRUE TRUE #> 11516 12.000000 7.000000 TRUE TRUE #> 11520 11.500000 -5.583333 TRUE TRUE #> 11526 -5.500000 123.500000 TRUE TRUE #> 11535 25.000000 77.000000 TRUE TRUE #> 11565 43.083333 41.000000 TRUE TRUE #> 11570 33.166667 -113.166667 TRUE TRUE #> 11586 37.000000 -99.000000 TRUE TRUE #> 11596 -20.833333 116.500000 TRUE TRUE #> 11598 -4.666667 143.333333 TRUE TRUE #> 11619 -5.500000 123.500000 TRUE TRUE #> 11620 13.450000 144.750000 TRUE TRUE #> 11640 12.000000 7.000000 TRUE TRUE #> 11648 -9.000000 -67.000000 TRUE TRUE #> 11650 -11.500000 131.000000 TRUE TRUE #> 11655 37.500000 128.000000 TRUE TRUE #> 11666 11.500000 -5.583333 TRUE TRUE #> 11679 9.000000 42.000000 TRUE TRUE #> 11690 -7.000000 -62.000000 TRUE TRUE #> 11695 -6.500000 143.833333 TRUE TRUE #> 11712 37.000000 -99.000000 TRUE TRUE #> 11717 25.000000 77.000000 TRUE TRUE #> 11733 33.166667 -113.166667 TRUE TRUE #> 11749 -4.666667 143.333333 TRUE TRUE #> 11751 43.083333 41.000000 TRUE TRUE #> 11762 -20.833333 116.500000 TRUE TRUE #> 11792 -5.500000 123.500000 TRUE TRUE #> 11793 25.000000 77.000000 TRUE TRUE #> 11802 -6.500000 143.833333 TRUE TRUE #> 11804 37.000000 -99.000000 TRUE TRUE #> 11828 11.500000 -5.583333 TRUE TRUE #> 11849 37.500000 128.000000 TRUE TRUE #> 11864 -9.000000 -67.000000 TRUE TRUE #> 11866 -7.000000 -62.000000 TRUE TRUE #> 11891 43.083333 41.000000 TRUE TRUE #> 11900 33.166667 -113.166667 TRUE TRUE #> 11915 -20.833333 116.500000 TRUE TRUE #> 11920 37.000000 -99.000000 TRUE TRUE #> 12050 12.000000 7.000000 TRUE TRUE #> 12060 13.450000 144.750000 TRUE TRUE #> 12168 -20.833333 116.500000 TRUE TRUE #> 12178 33.333333 -97.333333 TRUE TRUE #> 12209 43.000000 -75.666667 TRUE TRUE #> 12231 34.833333 -85.166667 TRUE TRUE #> 12369 43.083333 41.000000 TRUE TRUE #> 12425 -11.500000 131.000000 TRUE TRUE #> 12442 -6.500000 143.833333 TRUE TRUE #> 12531 37.500000 128.000000 TRUE TRUE #> 12542 -4.666667 143.333333 TRUE TRUE #> 12564 13.450000 144.750000 TRUE TRUE #> 12577 33.333333 -97.333333 TRUE TRUE #> 12589 -9.000000 -67.000000 TRUE TRUE #> 12615 37.500000 128.000000 TRUE TRUE #> 12644 -5.500000 123.500000 TRUE TRUE #> 12699 -11.500000 131.000000 TRUE TRUE #> 12744 25.000000 77.000000 TRUE TRUE #> 12769 43.083333 41.000000 TRUE TRUE #> 12770 -20.833333 116.500000 TRUE TRUE #> 12793 33.166667 -113.166667 TRUE TRUE #> 12872 12.000000 7.000000 TRUE TRUE #> 12899 43.000000 -75.666667 TRUE TRUE #> 12920 -7.000000 -62.000000 TRUE TRUE #> 12946 -6.500000 143.833333 TRUE TRUE #> 12961 37.000000 -99.000000 TRUE TRUE #> 12996 11.500000 -5.583333 TRUE TRUE #> 13000 34.833333 -85.166667 TRUE TRUE #> 13050 9.000000 42.000000 TRUE TRUE #> 13069 43.000000 -75.666667 TRUE TRUE #> 13202 12.000000 7.000000 TRUE TRUE #> 13208 -6.500000 143.833333 TRUE TRUE #> 13275 34.833333 -85.166667 TRUE TRUE #> 13328 37.000000 -99.000000 TRUE TRUE #> 13355 37.500000 128.000000 TRUE TRUE #> 13556 -20.833333 116.500000 TRUE TRUE #> 13576 43.083333 41.000000 TRUE TRUE #> 13602 33.333333 -97.333333 TRUE TRUE #> 13603 13.450000 144.750000 TRUE TRUE #> 13707 43.000000 -75.666667 TRUE TRUE #> 13735 12.000000 7.000000 TRUE TRUE #> 13753 34.833333 -85.166667 TRUE TRUE #> 13759 -5.500000 123.500000 TRUE TRUE #> 13802 9.000000 42.000000 TRUE TRUE #> 13811 16.000000 0.000000 TRUE TRUE #> 13820 13.450000 144.750000 TRUE TRUE #> 13821 43.000000 -75.666667 TRUE TRUE #> 13824 37.500000 128.000000 TRUE TRUE #> 13841 25.000000 77.000000 TRUE TRUE #> 13868 43.083333 41.000000 TRUE TRUE #> 13886 -4.666667 143.333333 TRUE TRUE #> 13896 11.500000 -5.583333 TRUE TRUE #> 13906 -7.000000 -62.000000 TRUE TRUE #> 13913 -20.833333 116.500000 TRUE TRUE #> 13939 -7.000000 -62.000000 TRUE TRUE #> 14030 37.500000 128.000000 TRUE TRUE #> 14049 -7.000000 -62.000000 TRUE TRUE #> 14158 37.500000 128.000000 TRUE TRUE #> 14181 37.500000 128.000000 TRUE TRUE #> 14258 -7.000000 -62.000000 TRUE TRUE #> 14346 37.500000 128.000000 TRUE TRUE #> 14384 -7.000000 -62.000000 TRUE TRUE #> 14415 16.000000 0.000000 TRUE TRUE #> 14426 13.450000 144.750000 TRUE TRUE #> 14431 9.000000 42.000000 TRUE TRUE #> 14466 37.500000 128.000000 TRUE TRUE #> 14479 37.000000 -99.000000 TRUE TRUE #> 14487 33.166667 -113.166667 TRUE TRUE #> 14493 -11.500000 131.000000 TRUE TRUE #> 14500 -7.000000 -62.000000 TRUE TRUE #> 14520 11.500000 -5.583333 TRUE TRUE #> 14533 -5.500000 123.500000 TRUE TRUE #> 14534 34.833333 -85.166667 TRUE TRUE #> 14540 43.000000 -75.666667 TRUE TRUE #> 14556 33.333333 -97.333333 TRUE TRUE #> 14557 43.083333 41.000000 TRUE TRUE #> 14565 -20.833333 116.500000 TRUE TRUE #> 14568 12.000000 7.000000 TRUE TRUE #> 14569 -4.666667 143.333333 TRUE TRUE #> 14597 -6.500000 143.833333 TRUE TRUE #> 14599 -9.000000 -67.000000 TRUE TRUE #> 14616 25.000000 77.000000 TRUE TRUE #> 14631 13.450000 144.750000 TRUE TRUE #> 14647 -5.500000 123.500000 TRUE TRUE #> 14648 33.333333 -97.333333 TRUE TRUE #> 14650 -4.666667 143.333333 TRUE TRUE #> 14655 34.833333 -85.166667 TRUE TRUE #> 14658 43.000000 -75.666667 TRUE TRUE #> 14665 16.000000 0.000000 TRUE TRUE #> 14678 12.000000 7.000000 TRUE TRUE #> 14679 43.083333 41.000000 TRUE TRUE #> 14681 -9.000000 -67.000000 TRUE TRUE #> 14683 -20.833333 116.500000 TRUE TRUE #> 14712 33.166667 -113.166667 TRUE TRUE #> 14726 -11.500000 131.000000 TRUE TRUE #> 14743 9.000000 42.000000 TRUE TRUE #> 14756 37.500000 128.000000 TRUE TRUE #> 14769 37.000000 -99.000000 TRUE TRUE #> 14790 -7.000000 -62.000000 TRUE TRUE #> 14797 -6.500000 143.833333 TRUE TRUE #> 14827 25.000000 77.000000 TRUE TRUE #> 14860 11.500000 -5.583333 TRUE TRUE #> 14865 -11.500000 131.000000 TRUE TRUE #> 14903 33.166667 -113.166667 TRUE TRUE #> 14906 13.450000 144.750000 TRUE TRUE #> 14920 16.000000 0.000000 TRUE TRUE #> 14926 34.833333 -85.166667 TRUE TRUE #> 14931 9.000000 42.000000 TRUE TRUE #> 14955 43.000000 -75.666667 TRUE TRUE #> 14957 -9.000000 -67.000000 TRUE TRUE #> 14981 43.083333 41.000000 TRUE TRUE #> 14982 -7.000000 -62.000000 TRUE TRUE #> 14994 33.333333 -97.333333 TRUE TRUE #> 14999 -5.500000 123.500000 TRUE TRUE #> 15014 -20.833333 116.500000 TRUE TRUE #> 15039 -6.500000 143.833333 TRUE TRUE #> 15041 -4.666667 143.333333 TRUE TRUE #> 15045 12.000000 7.000000 TRUE TRUE #> 15047 25.000000 77.000000 TRUE TRUE #> 15049 37.500000 128.000000 TRUE TRUE #> 15059 37.000000 -99.000000 TRUE TRUE #> 15061 11.500000 -5.583333 TRUE TRUE #> 15092 -20.833333 116.500000 TRUE TRUE #> 15108 37.500000 128.000000 TRUE TRUE #> 15116 -11.500000 131.000000 TRUE TRUE #> 15118 -4.666667 143.333333 TRUE TRUE #> 15120 9.000000 42.000000 TRUE TRUE #> 15150 16.000000 0.000000 TRUE TRUE #> 15151 -6.500000 143.833333 TRUE TRUE #> 15161 12.000000 7.000000 TRUE TRUE #> 15173 -5.500000 123.500000 TRUE TRUE #> 15174 43.000000 -75.666667 TRUE TRUE #> 15204 -7.000000 -62.000000 TRUE TRUE #> 15209 33.333333 -97.333333 TRUE TRUE #> 15210 25.000000 77.000000 TRUE TRUE #> 15237 34.833333 -85.166667 TRUE TRUE #> 15243 43.083333 41.000000 TRUE TRUE #> 15249 -9.000000 -67.000000 TRUE TRUE #> 15253 37.000000 -99.000000 TRUE TRUE #> 15291 13.450000 144.750000 TRUE TRUE #> 15301 33.166667 -113.166667 TRUE TRUE #> 15306 11.500000 -5.583333 TRUE TRUE #> 15327 9.000000 42.000000 TRUE TRUE #> 15368 25.000000 77.000000 TRUE TRUE #> 15404 12.000000 7.000000 TRUE TRUE #> 15405 37.500000 128.000000 TRUE TRUE #> 15417 13.450000 144.750000 TRUE TRUE #> 15530 16.000000 0.000000 TRUE TRUE #> 15538 -11.500000 131.000000 TRUE TRUE #> 15619 33.333333 -97.333333 TRUE TRUE #> 15631 -6.500000 143.833333 TRUE TRUE #> 15643 -4.666667 143.333333 TRUE TRUE #> 15644 25.000000 77.000000 TRUE TRUE #> 15668 34.833333 -85.166667 TRUE TRUE #> 15671 -7.000000 -62.000000 TRUE TRUE #> 15710 -9.000000 -67.000000 TRUE TRUE #> 15742 13.450000 144.750000 TRUE TRUE #> 15758 43.083333 41.000000 TRUE TRUE #> 15837 11.500000 -5.583333 TRUE TRUE #> 15894 -20.833333 116.500000 TRUE TRUE #> 15976 43.000000 -75.666667 TRUE TRUE #> 15996 -5.500000 123.500000 TRUE TRUE #> 16024 -11.500000 131.000000 TRUE TRUE #> 16061 33.166667 -113.166667 TRUE TRUE #> 16173 25.000000 77.000000 TRUE TRUE #> 16187 37.500000 128.000000 TRUE TRUE #> 16216 12.000000 7.000000 TRUE TRUE #> 16235 -5.500000 123.500000 TRUE TRUE #> 16264 -7.000000 -62.000000 TRUE TRUE #> 16331 25.000000 77.000000 TRUE TRUE #> 16350 -11.500000 131.000000 TRUE TRUE #> 16391 -9.000000 -67.000000 TRUE TRUE #> 16477 -5.500000 123.500000 TRUE TRUE #> 16509 16.000000 0.000000 TRUE TRUE #> 16512 -20.833333 116.500000 TRUE TRUE #> 16616 -4.666667 143.333333 TRUE TRUE #> 16679 13.450000 144.750000 TRUE TRUE #> 16780 33.333333 -97.333333 TRUE TRUE #> 16781 37.500000 128.000000 TRUE TRUE #> 16812 43.083333 41.000000 TRUE TRUE #> 16826 33.166667 -113.166667 TRUE TRUE #> 16898 9.000000 42.000000 TRUE TRUE #> 16923 37.000000 -99.000000 TRUE TRUE #> 16943 12.000000 7.000000 TRUE TRUE #> 16953 11.500000 -5.583333 TRUE TRUE #> 17008 43.000000 -75.666667 TRUE TRUE #> 17283 -6.500000 143.833333 TRUE TRUE #> 17396 34.833333 -85.166667 TRUE TRUE #> 17510 -7.000000 -62.000000 TRUE TRUE #> 17672 37.000000 -99.000000 TRUE TRUE #> 17687 33.166667 -113.166667 TRUE TRUE #> 17711 9.000000 42.000000 TRUE TRUE #> 17719 12.000000 7.000000 TRUE TRUE #> 17733 43.000000 -75.666667 TRUE TRUE #> 17761 11.500000 -5.583333 TRUE TRUE #> 17840 -20.833333 116.500000 TRUE TRUE #> 17848 25.000000 77.000000 TRUE TRUE #> 17885 -9.000000 -67.000000 TRUE TRUE #> 17920 -4.666667 143.333333 TRUE TRUE #> 17934 12.000000 7.000000 TRUE TRUE #> 17948 37.500000 128.000000 TRUE TRUE #> 17974 16.000000 0.000000 TRUE TRUE #> 17994 33.333333 -97.333333 TRUE TRUE #> 18000 37.000000 -99.000000 TRUE TRUE #> 18022 11.500000 -5.583333 TRUE TRUE #> 18232 -11.500000 131.000000 TRUE TRUE #> 18278 13.450000 144.750000 TRUE TRUE #> 18416 -5.500000 123.500000 TRUE TRUE #> 18514 43.083333 41.000000 TRUE TRUE #> 18570 9.000000 42.000000 TRUE TRUE #> 18627 -6.500000 143.833333 TRUE TRUE #> 18630 33.166667 -113.166667 TRUE TRUE #> 18717 43.000000 -75.666667 TRUE TRUE #> 18885 34.833333 -85.166667 TRUE TRUE #> 18922 -7.000000 -62.000000 TRUE TRUE #> 19221 11.500000 -5.583333 TRUE TRUE #> 19281 12.000000 7.000000 TRUE TRUE #> 19425 -7.000000 -62.000000 TRUE TRUE #> 19472 33.166667 -113.166667 TRUE TRUE #> 19476 37.000000 -99.000000 TRUE TRUE #> 19613 43.083333 41.000000 TRUE TRUE #> 19699 34.833333 -85.166667 TRUE TRUE #> 19758 -5.500000 123.500000 TRUE TRUE #> 19776 16.000000 0.000000 TRUE TRUE #> 19779 37.500000 128.000000 TRUE TRUE #> 19903 25.000000 77.000000 TRUE TRUE #> 19944 -6.500000 143.833333 TRUE TRUE #> 20079 13.450000 144.750000 TRUE TRUE #> 20105 -20.833333 116.500000 TRUE TRUE #> 20152 -4.666667 143.333333 TRUE TRUE #> 20178 43.000000 -75.666667 TRUE TRUE #> 20314 -9.000000 -67.000000 TRUE TRUE #> 20379 -11.500000 131.000000 TRUE TRUE #> 20428 33.333333 -97.333333 TRUE TRUE #> 20436 9.000000 42.000000 TRUE TRUE #> 20457 9.000000 42.000000 TRUE TRUE #> 20465 -5.500000 123.500000 TRUE TRUE #> 20641 37.500000 128.000000 TRUE TRUE #> 20671 -6.500000 143.833333 TRUE TRUE #> 20673 -20.833333 116.500000 TRUE TRUE #> 20695 37.000000 -99.000000 TRUE TRUE #> 20764 11.500000 -5.583333 TRUE TRUE #> 20798 -7.000000 -62.000000 TRUE TRUE #> 20957 -4.666667 143.333333 TRUE TRUE #> 20980 25.000000 77.000000 TRUE TRUE #> 21074 -11.500000 131.000000 TRUE TRUE #> 21138 43.083333 41.000000 TRUE TRUE #> 21255 33.333333 -97.333333 TRUE TRUE #> 21291 12.000000 7.000000 TRUE TRUE #> 21331 34.833333 -85.166667 TRUE TRUE #> 21539 13.450000 144.750000 TRUE TRUE #> 21637 33.166667 -113.166667 TRUE TRUE #> 21657 -9.000000 -67.000000 TRUE TRUE #> 21660 16.000000 0.000000 TRUE TRUE #> 21684 43.000000 -75.666667 TRUE TRUE #> 21794 -5.500000 123.500000 TRUE TRUE #> 21842 -9.000000 -67.000000 TRUE TRUE #> 21854 33.333333 -97.333333 TRUE TRUE #> 21917 37.000000 -99.000000 TRUE TRUE #> 21928 33.166667 -113.166667 TRUE TRUE #> 21983 9.000000 42.000000 TRUE TRUE #> 22022 11.500000 -5.583333 TRUE TRUE #> 22047 12.000000 7.000000 TRUE TRUE #> 22123 -20.833333 116.500000 TRUE TRUE #> 22178 -11.500000 131.000000 TRUE TRUE #> 22220 -7.000000 -62.000000 TRUE TRUE #> 22284 -6.500000 143.833333 TRUE TRUE #> 22315 43.083333 41.000000 TRUE TRUE #> 22451 34.833333 -85.166667 TRUE TRUE #> 22621 43.000000 -75.666667 TRUE TRUE #> 22785 16.000000 0.000000 TRUE TRUE #> 22798 25.000000 77.000000 TRUE TRUE #> 22829 37.500000 128.000000 TRUE TRUE #> 22856 -4.666667 143.333333 TRUE TRUE #> 22936 13.450000 144.750000 TRUE TRUE #> 22968 37.000000 -99.000000 TRUE TRUE #> 22997 33.333333 -97.333333 TRUE TRUE #> 23024 16.000000 0.000000 TRUE TRUE #> 23028 -11.500000 131.000000 TRUE TRUE #> 23034 -4.666667 143.333333 TRUE TRUE #> 23059 37.500000 128.000000 TRUE TRUE #> 23112 43.000000 -75.666667 TRUE TRUE #> 23115 25.000000 77.000000 TRUE TRUE #> 23125 -20.833333 116.500000 TRUE TRUE #> 23243 12.000000 7.000000 TRUE TRUE #> 23275 13.450000 144.750000 TRUE TRUE #> 23342 -5.500000 123.500000 TRUE TRUE #> 23448 11.500000 -5.583333 TRUE TRUE #> 23649 -9.000000 -67.000000 TRUE TRUE #> 23777 12.000000 7.000000 TRUE TRUE #> 23822 -20.833333 116.500000 TRUE TRUE #> 23861 -11.500000 131.000000 TRUE TRUE #> 24090 -9.000000 -67.000000 TRUE TRUE #> 24175 12.000000 7.000000 TRUE TRUE #> 24212 -9.000000 -67.000000 TRUE TRUE #> 24272 12.000000 7.000000 TRUE TRUE #> 24297 -11.500000 131.000000 TRUE TRUE #> 24549 -20.833333 116.500000 TRUE TRUE #> 24640 -9.000000 -67.000000 TRUE TRUE #> 24661 -20.833333 116.500000 TRUE TRUE #> 24664 -11.500000 131.000000 TRUE TRUE #> 24838 12.000000 7.000000 TRUE TRUE #> 25213 12.000000 7.000000 TRUE TRUE #> 25390 -20.833333 116.500000 TRUE TRUE #> 25447 -11.500000 131.000000 TRUE TRUE #> 25475 -9.000000 -67.000000 TRUE TRUE #> 25620 12.000000 7.000000 TRUE TRUE #> 25685 -9.000000 -67.000000 TRUE TRUE #> 25704 -11.500000 131.000000 TRUE TRUE #> 25874 -20.833333 116.500000 TRUE TRUE #> 26034 33.333333 -97.333333 TRUE TRUE #> 26054 43.083333 41.000000 TRUE TRUE #> 26064 37.000000 -99.000000 TRUE TRUE #> 26068 9.000000 42.000000 TRUE TRUE #> 26084 33.166667 -113.166667 TRUE TRUE #> 26111 11.500000 -5.583333 TRUE TRUE #> 26167 16.000000 0.000000 TRUE TRUE #> 26235 25.000000 77.000000 TRUE TRUE #> 26240 37.500000 128.000000 TRUE TRUE #> 26253 -4.666667 143.333333 TRUE TRUE #> 26366 -6.500000 143.833333 TRUE TRUE #> 26416 34.833333 -85.166667 TRUE TRUE #> 26464 -7.000000 -62.000000 TRUE TRUE #> 26519 33.333333 -97.333333 TRUE TRUE #> 26556 43.083333 41.000000 TRUE TRUE #> 26588 37.000000 -99.000000 TRUE TRUE #> 26594 33.166667 -113.166667 TRUE TRUE #> 26606 9.000000 42.000000 TRUE TRUE #> 26624 11.500000 -5.583333 TRUE TRUE #> 26651 33.333333 -97.333333 TRUE TRUE #> 26659 37.000000 -99.000000 TRUE TRUE #> 26669 25.000000 77.000000 TRUE TRUE #> 26720 -7.000000 -62.000000 TRUE TRUE #> 26726 37.500000 128.000000 TRUE TRUE #> 26740 -4.666667 143.333333 TRUE TRUE #> 26797 9.000000 42.000000 TRUE TRUE #> 26803 16.000000 0.000000 TRUE TRUE #> 26813 -6.500000 143.833333 TRUE TRUE #> 26853 34.833333 -85.166667 TRUE TRUE #> 26971 43.083333 41.000000 TRUE TRUE #> 26996 33.166667 -113.166667 TRUE TRUE #> 26997 11.500000 -5.583333 TRUE TRUE #> 27066 16.000000 0.000000 TRUE TRUE #> 27086 11.500000 -5.583333 TRUE TRUE #> 27103 9.000000 42.000000 TRUE TRUE #> 27114 -6.500000 143.833333 TRUE TRUE #> 27115 43.083333 41.000000 TRUE TRUE #> 27231 25.000000 77.000000 TRUE TRUE #> 27232 34.833333 -85.166667 TRUE TRUE #> 27283 37.500000 128.000000 TRUE TRUE #> 27346 -4.666667 143.333333 TRUE TRUE #> 27401 37.000000 -99.000000 TRUE TRUE #> 27407 33.166667 -113.166667 TRUE TRUE #> 27416 33.333333 -97.333333 TRUE TRUE #> 27431 -7.000000 -62.000000 TRUE TRUE #> 27471 -4.666667 143.333333 TRUE TRUE #> 27481 25.000000 77.000000 TRUE TRUE #> 27521 37.500000 128.000000 TRUE TRUE #> 27546 43.083333 41.000000 TRUE TRUE #> 27564 -6.500000 143.833333 TRUE TRUE #> 27607 9.000000 42.000000 TRUE TRUE #> 27625 33.166667 -113.166667 TRUE TRUE #> 27703 37.000000 -99.000000 TRUE TRUE #> 27729 33.333333 -97.333333 TRUE TRUE #> 27746 34.833333 -85.166667 TRUE TRUE #> 27751 -7.000000 -62.000000 TRUE TRUE #> 27788 11.500000 -5.583333 TRUE TRUE #> 27824 16.000000 0.000000 TRUE TRUE #> 27941 -4.666667 143.333333 TRUE TRUE #> 27942 33.333333 -97.333333 TRUE TRUE #> 27958 -6.500000 143.833333 TRUE TRUE #> 28006 9.000000 42.000000 TRUE TRUE #> 28050 37.500000 128.000000 TRUE TRUE #> 28064 16.000000 0.000000 TRUE TRUE #> 28103 25.000000 77.000000 TRUE TRUE #> 28215 -7.000000 -62.000000 TRUE TRUE #> 28226 34.833333 -85.166667 TRUE TRUE #> 28247 43.083333 41.000000 TRUE TRUE #> 28293 11.500000 -5.583333 TRUE TRUE #> 28317 33.166667 -113.166667 TRUE TRUE #> 28323 37.000000 -99.000000 TRUE TRUE #> 28388 13.450000 144.750000 TRUE TRUE #> 28444 43.000000 -75.666667 TRUE TRUE #> 28466 -5.500000 123.500000 TRUE TRUE #> 28513 43.000000 -75.666667 TRUE TRUE #> 28577 43.000000 -75.666667 TRUE TRUE #> 28625 -5.500000 123.500000 TRUE TRUE #> 28628 13.450000 144.750000 TRUE TRUE #> 28694 -5.500000 123.500000 TRUE TRUE #> 28720 43.000000 -75.666667 TRUE TRUE #> 28764 13.450000 144.750000 TRUE TRUE #> 28880 -5.500000 123.500000 TRUE TRUE #> 28962 13.450000 144.750000 TRUE TRUE #> 28966 43.000000 -75.666667 TRUE TRUE #> 28993 33.333333 -97.333333 TRUE TRUE #> 29047 34.833333 -85.166667 TRUE TRUE #> 29058 -9.000000 -67.000000 TRUE TRUE #> 29100 -7.000000 -62.000000 TRUE TRUE #> 29114 13.450000 144.750000 TRUE TRUE #> 29115 25.000000 77.000000 TRUE TRUE #> 29134 33.333333 -97.333333 TRUE TRUE #> 29183 -4.666667 143.333333 TRUE TRUE #> 29188 43.083333 41.000000 TRUE TRUE #> 29213 -6.500000 143.833333 TRUE TRUE #> 29242 -11.500000 131.000000 TRUE TRUE #> 29297 -20.833333 116.500000 TRUE TRUE #> 29308 43.000000 -75.666667 TRUE TRUE #> 29370 33.166667 -113.166667 TRUE TRUE #> 29405 11.500000 -5.583333 TRUE TRUE #> 29416 -5.500000 123.500000 TRUE TRUE #> 29553 43.000000 -75.666667 TRUE TRUE #> 29589 33.166667 -113.166667 TRUE TRUE #> 29701 -5.500000 123.500000 TRUE TRUE #> 29705 -11.500000 131.000000 TRUE TRUE #> 29742 11.500000 -5.583333 TRUE TRUE #> 29759 -20.833333 116.500000 TRUE TRUE #> 29785 34.833333 -85.166667 TRUE TRUE #> 29804 -9.000000 -67.000000 TRUE TRUE #> 29836 13.450000 144.750000 TRUE TRUE #> 29865 25.000000 77.000000 TRUE TRUE #> 29904 -4.666667 143.333333 TRUE TRUE #> 29906 33.333333 -97.333333 TRUE TRUE #> 29926 43.083333 41.000000 TRUE TRUE #> 29945 -6.500000 143.833333 TRUE TRUE #> 29987 -7.000000 -62.000000 TRUE TRUE #> 30011 -9.000000 -67.000000 TRUE TRUE #> 30030 -11.500000 131.000000 TRUE TRUE #> 30095 -20.833333 116.500000 TRUE TRUE #> 30123 -5.500000 123.500000 TRUE TRUE #> 30180 33.333333 -97.333333 TRUE TRUE #> 30192 13.450000 144.750000 TRUE TRUE #> 30239 43.000000 -75.666667 TRUE TRUE #> 30279 -6.500000 143.833333 TRUE TRUE #> 30299 33.166667 -113.166667 TRUE TRUE #> 30497 34.833333 -85.166667 TRUE TRUE #> 30502 13.450000 144.750000 TRUE TRUE #> 30548 16.000000 0.000000 TRUE TRUE #> 30582 -11.500000 131.000000 TRUE TRUE #> 30610 -6.500000 143.833333 TRUE TRUE #> 30621 37.500000 128.000000 TRUE TRUE #> 30655 12.000000 7.000000 TRUE TRUE #> 30662 25.000000 77.000000 TRUE TRUE #> 30669 -4.666667 143.333333 TRUE TRUE #> 30670 33.166667 -113.166667 TRUE TRUE #> 30718 11.500000 -5.583333 TRUE TRUE #> 30731 37.000000 -99.000000 TRUE TRUE #> 30744 9.000000 42.000000 TRUE TRUE #> 30756 -5.500000 123.500000 TRUE TRUE #> 30787 -9.000000 -67.000000 TRUE TRUE #> 30796 43.083333 41.000000 TRUE TRUE #> 30821 33.333333 -97.333333 TRUE TRUE #> 30822 43.000000 -75.666667 TRUE TRUE #> 30856 -20.833333 116.500000 TRUE TRUE #> 30877 -7.000000 -62.000000 TRUE TRUE #> 30914 -7.000000 -62.000000 TRUE TRUE #> 30915 9.000000 42.000000 TRUE TRUE #> 30961 -6.500000 143.833333 TRUE TRUE #> 30968 12.000000 7.000000 TRUE TRUE #> 30974 43.000000 -75.666667 TRUE TRUE #> 30986 11.500000 -5.583333 TRUE TRUE #> 31014 -20.833333 116.500000 TRUE TRUE #> 31021 16.000000 0.000000 TRUE TRUE #> 31041 -4.666667 143.333333 TRUE TRUE #> 31062 37.000000 -99.000000 TRUE TRUE #> 31091 34.833333 -85.166667 TRUE TRUE #> 31161 25.000000 77.000000 TRUE TRUE #> 31219 13.450000 144.750000 TRUE TRUE #> 31243 -9.000000 -67.000000 TRUE TRUE #> 31246 -11.500000 131.000000 TRUE TRUE #> 31311 33.333333 -97.333333 TRUE TRUE #> 31317 37.500000 128.000000 TRUE TRUE #> 31329 -5.500000 123.500000 TRUE TRUE #> 31388 43.083333 41.000000 TRUE TRUE #> 31431 33.166667 -113.166667 TRUE TRUE #> 31489 43.000000 -75.666667 TRUE TRUE #> 31490 34.833333 -85.166667 TRUE TRUE #> 31527 33.333333 -97.333333 TRUE TRUE #> 31532 43.083333 41.000000 TRUE TRUE #> 31539 -7.000000 -62.000000 TRUE TRUE #> 31540 -11.500000 131.000000 TRUE TRUE #> 31543 -20.833333 116.500000 TRUE TRUE #> 31564 16.000000 0.000000 TRUE TRUE #> 31574 33.166667 -113.166667 TRUE TRUE #> 31633 37.000000 -99.000000 TRUE TRUE #> 31659 25.000000 77.000000 TRUE TRUE #> 31665 12.000000 7.000000 TRUE TRUE #> 31675 13.450000 144.750000 TRUE TRUE #> 31676 -6.500000 143.833333 TRUE TRUE #> 31716 9.000000 42.000000 TRUE TRUE #> 31763 -9.000000 -67.000000 TRUE TRUE #> 31783 -5.500000 123.500000 TRUE TRUE #> 31877 11.500000 -5.583333 TRUE TRUE #> 31907 -4.666667 143.333333 TRUE TRUE #> 31917 37.500000 128.000000 TRUE TRUE #> 32031 37.500000 128.000000 TRUE TRUE #> 32036 34.833333 -85.166667 TRUE TRUE #> 32039 43.000000 -75.666667 TRUE TRUE #> 32062 33.166667 -113.166667 TRUE TRUE #> 32071 -20.833333 116.500000 TRUE TRUE #> 32074 25.000000 77.000000 TRUE TRUE #> 32075 -11.500000 131.000000 TRUE TRUE #> 32077 -4.666667 143.333333 TRUE TRUE #> 32097 -6.500000 143.833333 TRUE TRUE #> 32105 -9.000000 -67.000000 TRUE TRUE #> 32109 43.083333 41.000000 TRUE TRUE #> 32116 33.333333 -97.333333 TRUE TRUE #> 32126 37.000000 -99.000000 TRUE TRUE #> 32129 9.000000 42.000000 TRUE TRUE #> 32140 -7.000000 -62.000000 TRUE TRUE #> 32142 11.500000 -5.583333 TRUE TRUE #> 32148 12.000000 7.000000 TRUE TRUE #> 32179 -5.500000 123.500000 TRUE TRUE #> 32180 13.450000 144.750000 TRUE TRUE #> 32181 25.000000 77.000000 TRUE TRUE #> 32205 9.000000 42.000000 TRUE TRUE #> 32213 37.500000 128.000000 TRUE TRUE #> 32219 33.166667 -113.166667 TRUE TRUE #> 32223 34.833333 -85.166667 TRUE TRUE #> 32226 -6.500000 143.833333 TRUE TRUE #> 32227 -20.833333 116.500000 TRUE TRUE #> 32251 33.333333 -97.333333 TRUE TRUE #> 32265 -5.500000 123.500000 TRUE TRUE #> 32286 -7.000000 -62.000000 TRUE TRUE #> 32290 -9.000000 -67.000000 TRUE TRUE #> 32297 37.000000 -99.000000 TRUE TRUE #> 32306 43.000000 -75.666667 TRUE TRUE #> 32310 -11.500000 131.000000 TRUE TRUE #> 32319 43.083333 41.000000 TRUE TRUE #> 32324 11.500000 -5.583333 TRUE TRUE #> 32325 13.450000 144.750000 TRUE TRUE #> 32336 -4.666667 143.333333 TRUE TRUE #> 32341 12.000000 7.000000 TRUE TRUE #> 32366 33.333333 -97.333333 TRUE TRUE #> 32368 -20.833333 116.500000 TRUE TRUE #> 32405 37.000000 -99.000000 TRUE TRUE #> 32415 -7.000000 -62.000000 TRUE TRUE #> 32417 33.166667 -113.166667 TRUE TRUE #> 32422 43.083333 41.000000 TRUE TRUE #> 32430 11.500000 -5.583333 TRUE TRUE #> 32445 -4.666667 143.333333 TRUE TRUE #> 32447 34.833333 -85.166667 TRUE TRUE #> 32450 9.000000 42.000000 TRUE TRUE #> 32455 43.000000 -75.666667 TRUE TRUE #> 32456 12.000000 7.000000 TRUE TRUE #> 32457 37.500000 128.000000 TRUE TRUE #> 32467 -9.000000 -67.000000 TRUE TRUE #> 32470 -5.500000 123.500000 TRUE TRUE #> 32472 25.000000 77.000000 TRUE TRUE #> 32473 13.450000 144.750000 TRUE TRUE #> 32492 -6.500000 143.833333 TRUE TRUE #> 32499 -11.500000 131.000000 TRUE TRUE #> 32513 25.000000 77.000000 TRUE TRUE #> 32529 -20.833333 116.500000 TRUE TRUE #> 32531 11.500000 -5.583333 TRUE TRUE #> 32571 -11.500000 131.000000 TRUE TRUE #> 32585 12.000000 7.000000 TRUE TRUE #> 32586 -9.000000 -67.000000 TRUE TRUE #> 32587 37.500000 128.000000 TRUE TRUE #> 32591 13.450000 144.750000 TRUE TRUE #> 32602 -6.500000 143.833333 TRUE TRUE #> 32606 -5.500000 123.500000 TRUE TRUE #> 32610 9.000000 42.000000 TRUE TRUE #> 32617 -7.000000 -62.000000 TRUE TRUE #> 32629 37.000000 -99.000000 TRUE TRUE #> 32632 43.000000 -75.666667 TRUE TRUE #> 32633 33.166667 -113.166667 TRUE TRUE #> 32643 43.083333 41.000000 TRUE TRUE #> 32644 -4.666667 143.333333 TRUE TRUE #> 32646 34.833333 -85.166667 TRUE TRUE #> 32647 33.333333 -97.333333 TRUE TRUE #> 32657 -4.666667 143.333333 TRUE TRUE #> 32659 43.083333 41.000000 TRUE TRUE #> 32661 33.333333 -97.333333 TRUE TRUE #> 32670 37.000000 -99.000000 TRUE TRUE #> 32680 -11.500000 131.000000 TRUE TRUE #> 32698 -9.000000 -67.000000 TRUE TRUE #> 32702 43.000000 -75.666667 TRUE TRUE #> 32721 -6.500000 143.833333 TRUE TRUE #> 32727 37.500000 128.000000 TRUE TRUE #> 32764 13.450000 144.750000 TRUE TRUE #> 32774 -20.833333 116.500000 TRUE TRUE #> 32791 12.000000 7.000000 TRUE TRUE #> 32795 25.000000 77.000000 TRUE TRUE #> 32809 34.833333 -85.166667 TRUE TRUE #> 32824 33.166667 -113.166667 TRUE TRUE #> 32845 -7.000000 -62.000000 TRUE TRUE #> 32849 11.500000 -5.583333 TRUE TRUE #> 32853 -5.500000 123.500000 TRUE TRUE #> 32861 9.000000 42.000000 TRUE TRUE #> 32893 -9.000000 -67.000000 TRUE TRUE #> 32910 33.333333 -97.333333 TRUE TRUE #> 32913 33.166667 -113.166667 TRUE TRUE #> 32919 34.833333 -85.166667 TRUE TRUE #> 32935 13.450000 144.750000 TRUE TRUE #> 32942 43.083333 41.000000 TRUE TRUE #> 32950 37.000000 -99.000000 TRUE TRUE #> 32959 43.000000 -75.666667 TRUE TRUE #> 32961 11.500000 -5.583333 TRUE TRUE #> 32990 -5.500000 123.500000 TRUE TRUE #> 33020 -6.500000 143.833333 TRUE TRUE #> 33021 -4.666667 143.333333 TRUE TRUE #> 33025 12.000000 7.000000 TRUE TRUE #> 33045 -20.833333 116.500000 TRUE TRUE #> 33054 25.000000 77.000000 TRUE TRUE #> 33055 37.500000 128.000000 TRUE TRUE #> 33104 -11.500000 131.000000 TRUE TRUE #> 33106 -7.000000 -62.000000 TRUE TRUE #> 33117 9.000000 42.000000 TRUE TRUE #> 33131 33.333333 -97.333333 TRUE TRUE #> 33141 43.000000 -75.666667 TRUE TRUE #> 33144 43.083333 41.000000 TRUE TRUE #> 33151 -9.000000 -67.000000 TRUE TRUE #> 33180 -6.500000 143.833333 TRUE TRUE #> 33195 37.500000 128.000000 TRUE TRUE #> 33201 -20.833333 116.500000 TRUE TRUE #> 33234 -7.000000 -62.000000 TRUE TRUE #> 33249 -5.500000 123.500000 TRUE TRUE #> 33267 33.166667 -113.166667 TRUE TRUE #> 33275 37.000000 -99.000000 TRUE TRUE #> 33278 -11.500000 131.000000 TRUE TRUE #> 33289 9.000000 42.000000 TRUE TRUE #> 33291 11.500000 -5.583333 TRUE TRUE #> 33299 -4.666667 143.333333 TRUE TRUE #> 33310 25.000000 77.000000 TRUE TRUE #> 33318 12.000000 7.000000 TRUE TRUE #> 33337 13.450000 144.750000 TRUE TRUE #> 33346 34.833333 -85.166667 TRUE TRUE #> 33358 11.500000 -5.583333 TRUE TRUE #> 33362 -7.000000 -62.000000 TRUE TRUE #> 33374 13.450000 144.750000 TRUE TRUE #> 33388 -20.833333 116.500000 TRUE TRUE #> 33413 -11.500000 131.000000 TRUE TRUE #> 33429 37.000000 -99.000000 TRUE TRUE #> 33436 33.333333 -97.333333 TRUE TRUE #> 33448 -5.500000 123.500000 TRUE TRUE #> 33450 37.500000 128.000000 TRUE TRUE #> 33454 9.000000 42.000000 TRUE TRUE #> 33473 43.083333 41.000000 TRUE TRUE #> 33484 25.000000 77.000000 TRUE TRUE #> 33538 -9.000000 -67.000000 TRUE TRUE #> 33546 -4.666667 143.333333 TRUE TRUE #> 33569 43.000000 -75.666667 TRUE TRUE #> 33570 34.833333 -85.166667 TRUE TRUE #> 33573 -6.500000 143.833333 TRUE TRUE #> 33574 33.166667 -113.166667 TRUE TRUE #> 33584 12.000000 7.000000 TRUE TRUE #> 33592 16.000000 0.000000 TRUE TRUE #> 33682 12.000000 7.000000 TRUE TRUE #> 33718 13.450000 144.750000 TRUE TRUE #> 33743 25.000000 77.000000 TRUE TRUE #> 33859 9.000000 42.000000 TRUE TRUE #> 33953 -20.833333 116.500000 TRUE TRUE #> 34015 -6.500000 143.833333 TRUE TRUE #> 34018 -4.666667 143.333333 TRUE TRUE #> 34028 37.500000 128.000000 TRUE TRUE #> 34112 -7.000000 -62.000000 TRUE TRUE #> 34139 11.500000 -5.583333 TRUE TRUE #> 34305 34.833333 -85.166667 TRUE TRUE #> 34311 43.083333 41.000000 TRUE TRUE #> 34327 33.166667 -113.166667 TRUE TRUE #> 34365 37.000000 -99.000000 TRUE TRUE #> 34371 -9.000000 -67.000000 TRUE TRUE #> 34463 33.333333 -97.333333 TRUE TRUE #> 34467 43.000000 -75.666667 TRUE TRUE #> 34486 -5.500000 123.500000 TRUE TRUE #> 34543 -11.500000 131.000000 TRUE TRUE #> 34565 43.083333 41.000000 TRUE TRUE #> 34640 -5.500000 123.500000 TRUE TRUE #> 34648 25.000000 77.000000 TRUE TRUE #> 34702 37.500000 128.000000 TRUE TRUE #> 34739 -11.500000 131.000000 TRUE TRUE #> 34742 12.000000 7.000000 TRUE TRUE #> 34763 -4.666667 143.333333 TRUE TRUE #> 34764 9.000000 42.000000 TRUE TRUE #> 34769 34.833333 -85.166667 TRUE TRUE #> 34775 33.166667 -113.166667 TRUE TRUE #> 34821 13.450000 144.750000 TRUE TRUE #> 34853 -20.833333 116.500000 TRUE TRUE #> 34875 33.333333 -97.333333 TRUE TRUE #> 34903 -7.000000 -62.000000 TRUE TRUE #> 34922 -9.000000 -67.000000 TRUE TRUE #> 34924 37.000000 -99.000000 TRUE TRUE #> 34925 43.000000 -75.666667 TRUE TRUE #> 34937 37.500000 128.000000 TRUE TRUE #> 34941 16.000000 0.000000 TRUE TRUE #> 34942 -9.000000 -67.000000 TRUE TRUE #> 34961 -11.500000 131.000000 TRUE TRUE #> 34995 -6.500000 143.833333 TRUE TRUE #> 34996 11.500000 -5.583333 TRUE TRUE #> 34997 -5.500000 123.500000 TRUE TRUE #> 35002 43.083333 41.000000 TRUE TRUE #> 35009 -4.666667 143.333333 TRUE TRUE #> 35015 37.000000 -99.000000 TRUE TRUE #> 35028 33.333333 -97.333333 TRUE TRUE #> 35041 13.450000 144.750000 TRUE TRUE #> 35045 -7.000000 -62.000000 TRUE TRUE #> 35056 9.000000 42.000000 TRUE TRUE #> 35075 25.000000 77.000000 TRUE TRUE #> 35086 -20.833333 116.500000 TRUE TRUE #> 35105 12.000000 7.000000 TRUE TRUE #> 35117 33.166667 -113.166667 TRUE TRUE #> 35124 34.833333 -85.166667 TRUE TRUE #> 35131 -7.000000 -62.000000 TRUE TRUE #> 35134 12.000000 7.000000 TRUE TRUE #> 35139 37.500000 128.000000 TRUE TRUE #> 35145 -20.833333 116.500000 TRUE TRUE #> 35158 11.500000 -5.583333 TRUE TRUE #> 35161 16.000000 0.000000 TRUE TRUE #> 35194 37.000000 -99.000000 TRUE TRUE #> 35204 25.000000 77.000000 TRUE TRUE #> 35209 -11.500000 131.000000 TRUE TRUE #> 35225 9.000000 42.000000 TRUE TRUE #> 35240 -6.500000 143.833333 TRUE TRUE #> 35251 -4.666667 143.333333 TRUE TRUE #> 35256 13.450000 144.750000 TRUE TRUE #> 35274 -5.500000 123.500000 TRUE TRUE #> 35282 34.833333 -85.166667 TRUE TRUE #> 35286 -9.000000 -67.000000 TRUE TRUE #> 35297 33.333333 -97.333333 TRUE TRUE #> 35307 33.166667 -113.166667 TRUE TRUE #> 35312 43.000000 -75.666667 TRUE TRUE #> 35318 43.083333 41.000000 TRUE TRUE #> 35382 43.000000 -75.666667 TRUE TRUE #> 35414 -7.000000 -62.000000 TRUE TRUE #> 35431 37.500000 128.000000 TRUE TRUE #> 35471 -4.666667 143.333333 TRUE TRUE #> 35492 33.333333 -97.333333 TRUE TRUE #> 35499 16.000000 0.000000 TRUE TRUE #> 35528 37.000000 -99.000000 TRUE TRUE #> 35547 -6.500000 143.833333 TRUE TRUE #> 35574 13.450000 144.750000 TRUE TRUE #> 35647 -9.000000 -67.000000 TRUE TRUE #> 35695 -5.500000 123.500000 TRUE TRUE #> 35699 11.500000 -5.583333 TRUE TRUE #> 35723 25.000000 77.000000 TRUE TRUE #> 35740 9.000000 42.000000 TRUE TRUE #> 35742 12.000000 7.000000 TRUE TRUE #> 35764 -11.500000 131.000000 TRUE TRUE #> 35813 33.166667 -113.166667 TRUE TRUE #> 35814 34.833333 -85.166667 TRUE TRUE #> 35831 -20.833333 116.500000 TRUE TRUE #> 35868 43.083333 41.000000 TRUE TRUE #> 35903 -5.500000 123.500000 TRUE TRUE #> 35904 34.833333 -85.166667 TRUE TRUE #> 35944 33.166667 -113.166667 TRUE TRUE #> 35954 13.450000 144.750000 TRUE TRUE #> 35958 -6.500000 143.833333 TRUE TRUE #> 35971 33.333333 -97.333333 TRUE TRUE #> 35975 -20.833333 116.500000 TRUE TRUE #> 36019 16.000000 0.000000 TRUE TRUE #> 36033 -4.666667 143.333333 TRUE TRUE #> 36035 12.000000 7.000000 TRUE TRUE #> 36039 -9.000000 -67.000000 TRUE TRUE #> 36048 -11.500000 131.000000 TRUE TRUE #> 36057 9.000000 42.000000 TRUE TRUE #> 36064 25.000000 77.000000 TRUE TRUE #> 36090 43.000000 -75.666667 TRUE TRUE #> 36103 43.083333 41.000000 TRUE TRUE #> 36114 -7.000000 -62.000000 TRUE TRUE #> 36129 11.500000 -5.583333 TRUE TRUE #> 36163 34.833333 -85.166667 TRUE TRUE #> 36186 -20.833333 116.500000 TRUE TRUE #> 36187 -5.500000 123.500000 TRUE TRUE #> 36188 -6.500000 143.833333 TRUE TRUE #> 36210 33.333333 -97.333333 TRUE TRUE #> 36232 16.000000 0.000000 TRUE TRUE #> 36243 33.166667 -113.166667 TRUE TRUE #> 36263 13.450000 144.750000 TRUE TRUE #> 36295 -9.000000 -67.000000 TRUE TRUE #> 36297 9.000000 42.000000 TRUE TRUE #> 36320 -7.000000 -62.000000 TRUE TRUE #> 36332 43.083333 41.000000 TRUE TRUE #> 36336 -11.500000 131.000000 TRUE TRUE #> 36338 25.000000 77.000000 TRUE TRUE #> 36355 12.000000 7.000000 TRUE TRUE #> 36364 -4.666667 143.333333 TRUE TRUE #> 36369 43.000000 -75.666667 TRUE TRUE #> 36391 11.500000 -5.583333 TRUE TRUE #> 36417 34.833333 -85.166667 TRUE TRUE #> 36448 -5.500000 123.500000 TRUE TRUE #> 36462 33.333333 -97.333333 TRUE TRUE #> 36480 33.166667 -113.166667 TRUE TRUE #> 36486 -20.833333 116.500000 TRUE TRUE #> 36521 -6.500000 143.833333 TRUE TRUE #> 36526 13.450000 144.750000 TRUE TRUE #> 36530 16.000000 0.000000 TRUE TRUE #> 36552 -11.500000 131.000000 TRUE TRUE #> 36560 -7.000000 -62.000000 TRUE TRUE #> 36564 -4.666667 143.333333 TRUE TRUE #> 36568 43.000000 -75.666667 TRUE TRUE #> 36571 43.083333 41.000000 TRUE TRUE #> 36601 12.000000 7.000000 TRUE TRUE #> 36618 11.500000 -5.583333 TRUE TRUE #> 36644 -9.000000 -67.000000 TRUE TRUE #> 36650 9.000000 42.000000 TRUE TRUE #> 36656 25.000000 77.000000 TRUE TRUE #> 36786 25.000000 77.000000 TRUE TRUE #> 36837 -6.500000 143.833333 TRUE TRUE #> 36849 43.083333 41.000000 TRUE TRUE #> 36866 -11.500000 131.000000 TRUE TRUE #> 36910 -20.833333 116.500000 TRUE TRUE #> 36965 11.500000 -5.583333 TRUE TRUE #> 37051 12.000000 7.000000 TRUE TRUE #> 37075 -9.000000 -67.000000 TRUE TRUE #> 37205 37.000000 -99.000000 TRUE TRUE #> 37287 37.500000 128.000000 TRUE TRUE #> 37299 33.166667 -113.166667 TRUE TRUE #> 37354 43.000000 -75.666667 TRUE TRUE #> 37500 13.450000 144.750000 TRUE TRUE #> 37575 34.833333 -85.166667 TRUE TRUE #> 37590 16.000000 0.000000 TRUE TRUE #> 37609 -4.666667 143.333333 TRUE TRUE #> 37640 9.000000 42.000000 TRUE TRUE #> 37663 -7.000000 -62.000000 TRUE TRUE #> 37666 33.333333 -97.333333 TRUE TRUE #> 37704 -5.500000 123.500000 TRUE TRUE #> 37728 -7.000000 -62.000000 TRUE TRUE #> 37762 9.000000 42.000000 TRUE TRUE #> 37766 34.833333 -85.166667 TRUE TRUE #> 37767 13.450000 144.750000 TRUE TRUE #> 37772 33.166667 -113.166667 TRUE TRUE #> 37812 -11.500000 131.000000 TRUE TRUE #> 37893 11.500000 -5.583333 TRUE TRUE #> 37911 -4.666667 143.333333 TRUE TRUE #> 37916 -9.000000 -67.000000 TRUE TRUE #> 37921 25.000000 77.000000 TRUE TRUE #> 37928 12.000000 7.000000 TRUE TRUE #> 37998 43.083333 41.000000 TRUE TRUE #> 38019 -7.000000 -62.000000 TRUE TRUE #> 38020 43.000000 -75.666667 TRUE TRUE #> 38024 37.000000 -99.000000 TRUE TRUE #> 38025 33.166667 -113.166667 TRUE TRUE #> 38031 34.833333 -85.166667 TRUE TRUE #> 38036 33.333333 -97.333333 TRUE TRUE #> 38044 -9.000000 -67.000000 TRUE TRUE #> 38071 -5.500000 123.500000 TRUE TRUE #> 38074 11.500000 -5.583333 TRUE TRUE #> 38075 -6.500000 143.833333 TRUE TRUE #> 38085 25.000000 77.000000 TRUE TRUE #> 38090 43.083333 41.000000 TRUE TRUE #> 38100 -11.500000 131.000000 TRUE TRUE #> 38110 9.000000 42.000000 TRUE TRUE #> 38117 13.450000 144.750000 TRUE TRUE #> 38136 16.000000 0.000000 TRUE TRUE #> 38167 -20.833333 116.500000 TRUE TRUE #> 38209 12.000000 7.000000 TRUE TRUE #> 38214 37.500000 128.000000 TRUE TRUE #> 38219 -4.666667 143.333333 TRUE TRUE #> 38289 37.500000 128.000000 TRUE TRUE #> 38324 13.450000 144.750000 TRUE TRUE #> 38341 16.000000 0.000000 TRUE TRUE #> 38405 43.083333 41.000000 TRUE TRUE #> 38429 -5.500000 123.500000 TRUE TRUE #> 38445 12.000000 7.000000 TRUE TRUE #> 38448 -4.666667 143.333333 TRUE TRUE #> 38467 11.500000 -5.583333 TRUE TRUE #> 38497 43.000000 -75.666667 TRUE TRUE #> 38499 25.000000 77.000000 TRUE TRUE #> 38503 -20.833333 116.500000 TRUE TRUE #> 38504 -9.000000 -67.000000 TRUE TRUE #> 38506 33.333333 -97.333333 TRUE TRUE #> 38563 13.450000 144.750000 TRUE TRUE #> 38578 33.166667 -113.166667 TRUE TRUE #> 38584 34.833333 -85.166667 TRUE TRUE #> 38585 16.000000 0.000000 TRUE TRUE #> 38592 43.083333 41.000000 TRUE TRUE #> 38630 43.000000 -75.666667 TRUE TRUE #> 38655 -4.666667 143.333333 TRUE TRUE #> 38708 12.000000 7.000000 TRUE TRUE #> 38797 -5.500000 123.500000 TRUE TRUE #> 38801 11.500000 -5.583333 TRUE TRUE #> 38954 -9.000000 -67.000000 TRUE TRUE #> 38974 -11.500000 131.000000 TRUE TRUE #> 38988 37.500000 128.000000 TRUE TRUE #> 39062 25.000000 77.000000 TRUE TRUE #> 39065 9.000000 42.000000 TRUE TRUE #> 39070 -7.000000 -62.000000 TRUE TRUE #> 39078 -6.500000 143.833333 TRUE TRUE #> 39124 37.000000 -99.000000 TRUE TRUE #> 39140 11.500000 -5.583333 TRUE TRUE #> 39144 12.000000 7.000000 TRUE TRUE #> 39280 43.083333 41.000000 TRUE TRUE #> 39380 33.166667 -113.166667 TRUE TRUE #> 39391 43.000000 -75.666667 TRUE TRUE #> 39442 -4.666667 143.333333 TRUE TRUE #> 39454 -5.500000 123.500000 TRUE TRUE #> 39465 16.000000 0.000000 TRUE TRUE #> 39509 25.000000 77.000000 TRUE TRUE #> 39557 -9.000000 -67.000000 TRUE TRUE #> 39581 9.000000 42.000000 TRUE TRUE #> 39589 37.500000 128.000000 TRUE TRUE #> 39601 37.000000 -99.000000 TRUE TRUE #> 39603 -11.500000 131.000000 TRUE TRUE #> 39615 -7.000000 -62.000000 TRUE TRUE #> 39656 -6.500000 143.833333 TRUE TRUE #> 39668 -7.000000 -62.000000 TRUE TRUE #> 39674 33.166667 -113.166667 TRUE TRUE #> 39676 43.000000 -75.666667 TRUE TRUE #> 39678 37.000000 -99.000000 TRUE TRUE #> 39700 -5.500000 123.500000 TRUE TRUE #> 39718 11.500000 -5.583333 TRUE TRUE #> 39720 16.000000 0.000000 TRUE TRUE #> 39728 12.000000 7.000000 TRUE TRUE #> 39745 34.833333 -85.166667 TRUE TRUE #> 39750 -6.500000 143.833333 TRUE TRUE #> 39751 -4.666667 143.333333 TRUE TRUE #> 39759 25.000000 77.000000 TRUE TRUE #> 39778 37.500000 128.000000 TRUE TRUE #> 39790 -9.000000 -67.000000 TRUE TRUE #> 39797 9.000000 42.000000 TRUE TRUE #> 39808 33.333333 -97.333333 TRUE TRUE #> 39818 13.450000 144.750000 TRUE TRUE #> 39826 -20.833333 116.500000 TRUE TRUE #> 39850 43.083333 41.000000 TRUE TRUE #> 39853 -11.500000 131.000000 TRUE TRUE #> 39901 -20.833333 116.500000 TRUE TRUE #> 39944 -6.500000 143.833333 TRUE TRUE #> 39946 43.000000 -75.666667 TRUE TRUE #> 39951 37.500000 128.000000 TRUE TRUE #> 39954 -11.500000 131.000000 TRUE TRUE #> 39981 -20.833333 116.500000 TRUE TRUE #> 40018 -9.000000 -67.000000 TRUE TRUE #> 40019 -5.500000 123.500000 TRUE TRUE #> 40023 33.333333 -97.333333 TRUE TRUE #> 40105 33.166667 -113.166667 TRUE TRUE #> 40138 16.000000 0.000000 TRUE TRUE #> 40147 -4.666667 143.333333 TRUE TRUE #> 40203 34.833333 -85.166667 TRUE TRUE #> 40218 -7.000000 -62.000000 TRUE TRUE #> 40240 13.450000 144.750000 TRUE TRUE #> 40290 37.000000 -99.000000 TRUE TRUE #> 40372 12.000000 7.000000 TRUE TRUE #> 40403 25.000000 77.000000 TRUE TRUE #> 40442 9.000000 42.000000 TRUE TRUE #> 40455 11.500000 -5.583333 TRUE TRUE #> 40469 43.083333 41.000000 TRUE TRUE #> 40509 25.000000 77.000000 TRUE TRUE #> 40512 12.000000 7.000000 TRUE TRUE #> 40517 -20.833333 116.500000 TRUE TRUE #> 40519 11.500000 -5.583333 TRUE TRUE #> 40521 16.000000 0.000000 TRUE TRUE #> 40538 37.500000 128.000000 TRUE TRUE #> 40550 -7.000000 -62.000000 TRUE TRUE #> 40554 13.450000 144.750000 TRUE TRUE #> 40575 33.166667 -113.166667 TRUE TRUE #> 40606 43.083333 41.000000 TRUE TRUE #> 40613 -6.500000 143.833333 TRUE TRUE #> 40625 34.833333 -85.166667 TRUE TRUE #> 40638 -5.500000 123.500000 TRUE TRUE #> 40642 9.000000 42.000000 TRUE TRUE #> 40648 -4.666667 143.333333 TRUE TRUE #> 40653 -9.000000 -67.000000 TRUE TRUE #> 40670 33.333333 -97.333333 TRUE TRUE #> 40675 43.000000 -75.666667 TRUE TRUE #> 40680 -11.500000 131.000000 TRUE TRUE #> 40702 37.000000 -99.000000 TRUE TRUE #> 40705 11.500000 -5.583333 TRUE TRUE #> 40707 16.000000 0.000000 TRUE TRUE #> 40731 -4.666667 143.333333 TRUE TRUE #> 40756 43.000000 -75.666667 TRUE TRUE #> 40761 -9.000000 -67.000000 TRUE TRUE #> 40773 43.083333 41.000000 TRUE TRUE #> 40778 -20.833333 116.500000 TRUE TRUE #> 40783 -11.500000 131.000000 TRUE TRUE #> 40789 37.000000 -99.000000 TRUE TRUE #> 40817 -7.000000 -62.000000 TRUE TRUE #> 40824 9.000000 42.000000 TRUE TRUE #> 40836 33.333333 -97.333333 TRUE TRUE #> 40878 37.500000 128.000000 TRUE TRUE #> 40896 13.450000 144.750000 TRUE TRUE #> 40908 -5.500000 123.500000 TRUE TRUE #> 40927 12.000000 7.000000 TRUE TRUE #> 40936 33.166667 -113.166667 TRUE TRUE #> 40937 34.833333 -85.166667 TRUE TRUE #> 40940 34.833333 -85.166667 TRUE TRUE #> 40948 43.000000 -75.666667 TRUE TRUE #> 40969 -5.500000 123.500000 TRUE TRUE #> 40975 -20.833333 116.500000 TRUE TRUE #> 40983 33.333333 -97.333333 TRUE TRUE #> 41005 11.500000 -5.583333 TRUE TRUE #> 41016 13.450000 144.750000 TRUE TRUE #> 41017 43.083333 41.000000 TRUE TRUE #> 41020 16.000000 0.000000 TRUE TRUE #> 41036 -4.666667 143.333333 TRUE TRUE #> 41041 -9.000000 -67.000000 TRUE TRUE #> 41053 9.000000 42.000000 TRUE TRUE #> 41057 37.000000 -99.000000 TRUE TRUE #> 41062 -7.000000 -62.000000 TRUE TRUE #> 41063 33.166667 -113.166667 TRUE TRUE #> 41066 12.000000 7.000000 TRUE TRUE #> 41071 -11.500000 131.000000 TRUE TRUE #> 41093 37.500000 128.000000 TRUE TRUE #> 41148 43.000000 -75.666667 TRUE TRUE #> 41150 9.000000 42.000000 TRUE TRUE #> 41153 -20.833333 116.500000 TRUE TRUE #> 41160 16.000000 0.000000 TRUE TRUE #> 41163 12.000000 7.000000 TRUE TRUE #> 41167 13.450000 144.750000 TRUE TRUE #> 41194 -6.500000 143.833333 TRUE TRUE #> 41217 34.833333 -85.166667 TRUE TRUE #> 41221 37.500000 128.000000 TRUE TRUE #> 41234 -5.500000 123.500000 TRUE TRUE #> 41237 33.333333 -97.333333 TRUE TRUE #> 41241 33.166667 -113.166667 TRUE TRUE #> 41244 25.000000 77.000000 TRUE TRUE #> 41284 11.500000 -5.583333 TRUE TRUE #> 41304 -7.000000 -62.000000 TRUE TRUE #> 41326 -9.000000 -67.000000 TRUE TRUE #> 41341 -4.666667 143.333333 TRUE TRUE #> 41370 12.000000 7.000000 TRUE TRUE #> 41379 43.083333 41.000000 TRUE TRUE #> 41394 11.500000 -5.583333 TRUE TRUE #> 41412 -7.000000 -62.000000 TRUE TRUE #> 41429 9.000000 42.000000 TRUE TRUE #> 41442 -4.666667 143.333333 TRUE TRUE #> 41453 -11.500000 131.000000 TRUE TRUE #> 41464 -9.000000 -67.000000 TRUE TRUE #> 41482 37.500000 128.000000 TRUE TRUE #> 41526 -5.500000 123.500000 TRUE TRUE #> 41540 33.333333 -97.333333 TRUE TRUE #> 41582 -20.833333 116.500000 TRUE TRUE #> 41587 -6.500000 143.833333 TRUE TRUE #> 41605 37.000000 -99.000000 TRUE TRUE #> 41616 25.000000 77.000000 TRUE TRUE #> 41626 33.166667 -113.166667 TRUE TRUE #> 41654 43.000000 -75.666667 TRUE TRUE #> 41695 13.450000 144.750000 TRUE TRUE #> 41701 34.833333 -85.166667 TRUE TRUE #> 41723 16.000000 0.000000 TRUE TRUE #> 41762 34.833333 -85.166667 TRUE TRUE #> 41770 13.450000 144.750000 TRUE TRUE #> 41772 33.166667 -113.166667 TRUE TRUE #> 41777 33.333333 -97.333333 TRUE TRUE #> 41793 9.000000 42.000000 TRUE TRUE #> 41799 -4.666667 143.333333 TRUE TRUE #> 41809 -11.500000 131.000000 TRUE TRUE #> 41822 12.000000 7.000000 TRUE TRUE #> 41829 -7.000000 -62.000000 TRUE TRUE #> 41834 43.000000 -75.666667 TRUE TRUE #> 41835 11.500000 -5.583333 TRUE TRUE #> 41839 -6.500000 143.833333 TRUE TRUE #> 41849 -9.000000 -67.000000 TRUE TRUE #> 41851 16.000000 0.000000 TRUE TRUE #> 41861 -20.833333 116.500000 TRUE TRUE #> 41867 37.000000 -99.000000 TRUE TRUE #> 41936 -5.500000 123.500000 TRUE TRUE #> 41942 25.000000 77.000000 TRUE TRUE #> 41948 37.500000 128.000000 TRUE TRUE #> 41952 33.166667 -113.166667 TRUE TRUE #> 41987 34.833333 -85.166667 TRUE TRUE #> 42061 37.500000 128.000000 TRUE TRUE #> 42075 -20.833333 116.500000 TRUE TRUE #> 42094 -11.500000 131.000000 TRUE TRUE #> 42107 33.333333 -97.333333 TRUE TRUE #> 42126 37.000000 -99.000000 TRUE TRUE #> 42150 9.000000 42.000000 TRUE TRUE #> 42172 12.000000 7.000000 TRUE TRUE #> 42217 16.000000 0.000000 TRUE TRUE #> 42231 25.000000 77.000000 TRUE TRUE #> 42232 43.083333 41.000000 TRUE TRUE #> 42258 -7.000000 -62.000000 TRUE TRUE #> 42284 33.166667 -113.166667 TRUE TRUE #> 42313 37.500000 128.000000 TRUE TRUE #> 42337 -11.500000 131.000000 TRUE TRUE #> 42343 -4.666667 143.333333 TRUE TRUE #> 42345 25.000000 77.000000 TRUE TRUE #> 42358 13.450000 144.750000 TRUE TRUE #> 42368 -5.500000 123.500000 TRUE TRUE #> 42371 43.000000 -75.666667 TRUE TRUE #> 42372 9.000000 42.000000 TRUE TRUE #> 42373 33.333333 -97.333333 TRUE TRUE #> 42383 43.083333 41.000000 TRUE TRUE #> 42392 -7.000000 -62.000000 TRUE TRUE #> 42408 -9.000000 -67.000000 TRUE TRUE #> 42414 11.500000 -5.583333 TRUE TRUE #> 42415 34.833333 -85.166667 TRUE TRUE #> 42422 37.000000 -99.000000 TRUE TRUE #> 42434 16.000000 0.000000 TRUE TRUE #> 42452 33.166667 -113.166667 TRUE TRUE #> 42455 43.000000 -75.666667 TRUE TRUE #> 42466 37.000000 -99.000000 TRUE TRUE #> 42471 -9.000000 -67.000000 TRUE TRUE #> 42487 -20.833333 116.500000 TRUE TRUE #> 42496 33.333333 -97.333333 TRUE TRUE #> 42531 -6.500000 143.833333 TRUE TRUE #> 42548 37.500000 128.000000 TRUE TRUE #> 42559 25.000000 77.000000 TRUE TRUE #> 42561 -11.500000 131.000000 TRUE TRUE #> 42582 -4.666667 143.333333 TRUE TRUE #> 42624 11.500000 -5.583333 TRUE TRUE #> 42629 16.000000 0.000000 TRUE TRUE #> 42641 -5.500000 123.500000 TRUE TRUE #> 42678 9.000000 42.000000 TRUE TRUE #> 42709 -7.000000 -62.000000 TRUE TRUE #> 42732 12.000000 7.000000 TRUE TRUE #> 42734 34.833333 -85.166667 TRUE TRUE #> 42756 13.450000 144.750000 TRUE TRUE #> 42808 43.083333 41.000000 TRUE TRUE #> 42822 -5.500000 123.500000 TRUE TRUE #> 42846 13.450000 144.750000 TRUE TRUE #> 42880 16.000000 0.000000 TRUE TRUE #> 42886 -11.500000 131.000000 TRUE TRUE #> 42914 12.000000 7.000000 TRUE TRUE #> 42917 43.000000 -75.666667 TRUE TRUE #> 42944 43.083333 41.000000 TRUE TRUE #> 42975 9.000000 42.000000 TRUE TRUE #> 42985 34.833333 -85.166667 TRUE TRUE #> 42987 33.166667 -113.166667 TRUE TRUE #> 42996 37.500000 128.000000 TRUE TRUE #> 43002 -6.500000 143.833333 TRUE TRUE #> 43021 -4.666667 143.333333 TRUE TRUE #> 43050 -20.833333 116.500000 TRUE TRUE #> 43059 33.333333 -97.333333 TRUE TRUE #> 43060 37.000000 -99.000000 TRUE TRUE #> 43063 -7.000000 -62.000000 TRUE TRUE #> 43074 -9.000000 -67.000000 TRUE TRUE #> 43081 11.500000 -5.583333 TRUE TRUE #> 43115 -20.833333 116.500000 TRUE TRUE #> 43117 33.333333 -97.333333 TRUE TRUE #> 43142 -7.000000 -62.000000 TRUE TRUE #> 43146 33.166667 -113.166667 TRUE TRUE #> 43157 -5.500000 123.500000 TRUE TRUE #> 43232 37.500000 128.000000 TRUE TRUE #> 43246 43.000000 -75.666667 TRUE TRUE #> 43257 -11.500000 131.000000 TRUE TRUE #> 43262 34.833333 -85.166667 TRUE TRUE #> 43277 -9.000000 -67.000000 TRUE TRUE #> 43323 -6.500000 143.833333 TRUE TRUE #> 43327 13.450000 144.750000 TRUE TRUE #> 43337 -4.666667 143.333333 TRUE TRUE #> 43352 37.000000 -99.000000 TRUE TRUE #> 43369 43.083333 41.000000 TRUE TRUE #> 43553 25.000000 77.000000 TRUE TRUE #> 43580 9.000000 42.000000 TRUE TRUE #> 43588 12.000000 7.000000 TRUE TRUE #> 43592 16.000000 0.000000 TRUE TRUE #> 43638 11.500000 -5.583333 TRUE TRUE #> 43651 12.000000 7.000000 TRUE TRUE #> 43658 -5.500000 123.500000 TRUE TRUE #> 43682 13.450000 144.750000 TRUE TRUE #> 43687 -11.500000 131.000000 TRUE TRUE #> 43688 43.000000 -75.666667 TRUE TRUE #> 43733 37.000000 -99.000000 TRUE TRUE #> 43734 33.333333 -97.333333 TRUE TRUE #> 43738 43.083333 41.000000 TRUE TRUE #> 43739 11.500000 -5.583333 TRUE TRUE #> 43760 -6.500000 143.833333 TRUE TRUE #> 43761 -9.000000 -67.000000 TRUE TRUE #> 43762 33.166667 -113.166667 TRUE TRUE #> 43781 -4.666667 143.333333 TRUE TRUE #> 43797 -7.000000 -62.000000 TRUE TRUE #> 43798 34.833333 -85.166667 TRUE TRUE #> 43804 37.500000 128.000000 TRUE TRUE #> 43822 16.000000 0.000000 TRUE TRUE #> 43865 9.000000 42.000000 TRUE TRUE #> 43909 -20.833333 116.500000 TRUE TRUE #> 43991 37.500000 128.000000 TRUE TRUE #> 44066 37.000000 -99.000000 TRUE TRUE #> 44108 25.000000 77.000000 TRUE TRUE #> 44120 33.333333 -97.333333 TRUE TRUE #> 44158 9.000000 42.000000 TRUE TRUE #> 44231 43.000000 -75.666667 TRUE TRUE #> 44248 -20.833333 116.500000 TRUE TRUE #> 44356 -7.000000 -62.000000 TRUE TRUE #> 44448 -9.000000 -67.000000 TRUE TRUE #> 44490 33.166667 -113.166667 TRUE TRUE #> 44506 34.833333 -85.166667 TRUE TRUE #> 44513 -4.666667 143.333333 TRUE TRUE #> 44534 -6.500000 143.833333 TRUE TRUE #> 44645 43.083333 41.000000 TRUE TRUE #> 44797 11.500000 -5.583333 TRUE TRUE #> 44822 12.000000 7.000000 TRUE TRUE #> 44845 -5.500000 123.500000 TRUE TRUE #> 44851 -11.500000 131.000000 TRUE TRUE #> 44928 16.000000 0.000000 TRUE TRUE #> 44969 12.000000 7.000000 TRUE TRUE #> 45048 37.500000 128.000000 TRUE TRUE #> 45111 -4.666667 143.333333 TRUE TRUE #> 45125 -20.833333 116.500000 TRUE TRUE #> 45135 34.833333 -85.166667 TRUE TRUE #> 45153 25.000000 77.000000 TRUE TRUE #> 45160 43.083333 41.000000 TRUE TRUE #> 45175 -7.000000 -62.000000 TRUE TRUE #> 45227 9.000000 42.000000 TRUE TRUE #> 45246 11.500000 -5.583333 TRUE TRUE #> 45272 -20.833333 116.500000 TRUE TRUE #> 45279 -11.500000 131.000000 TRUE TRUE #> 45291 -9.000000 -67.000000 TRUE TRUE #> 45302 -5.500000 123.500000 TRUE TRUE #> 45328 37.500000 128.000000 TRUE TRUE #> 45371 43.083333 41.000000 TRUE TRUE #> 45387 16.000000 0.000000 TRUE TRUE #> 45416 11.500000 -5.583333 TRUE TRUE #> 45431 25.000000 77.000000 TRUE TRUE #> 45432 -4.666667 143.333333 TRUE TRUE #> 45445 13.450000 144.750000 TRUE TRUE #> 45479 12.000000 7.000000 TRUE TRUE #> 45491 34.833333 -85.166667 TRUE TRUE #> 45506 9.000000 42.000000 TRUE TRUE #> 45578 -6.500000 143.833333 TRUE TRUE #> 45592 -20.833333 116.500000 TRUE TRUE #> 45604 -5.500000 123.500000 TRUE TRUE #> 45664 11.500000 -5.583333 TRUE TRUE #> 45695 25.000000 77.000000 TRUE TRUE #> 45713 12.000000 7.000000 TRUE TRUE #> 45760 33.166667 -113.166667 TRUE TRUE #> 45774 -11.500000 131.000000 TRUE TRUE #> 45781 37.500000 128.000000 TRUE TRUE #> 45819 43.083333 41.000000 TRUE TRUE #> 45828 13.450000 144.750000 TRUE TRUE #> 45846 11.500000 -5.583333 TRUE TRUE #> 45862 12.000000 7.000000 TRUE TRUE #> 45868 25.000000 77.000000 TRUE TRUE #> 45917 -9.000000 -67.000000 TRUE TRUE #> 45928 -11.500000 131.000000 TRUE TRUE #> 45943 -20.833333 116.500000 TRUE TRUE #> 45963 9.000000 42.000000 TRUE TRUE #> 45971 -7.000000 -62.000000 TRUE TRUE #> 45974 33.166667 -113.166667 TRUE TRUE #> 46005 13.450000 144.750000 TRUE TRUE #> 46052 -6.500000 143.833333 TRUE TRUE #> 46063 -4.666667 143.333333 TRUE TRUE #> 46078 37.000000 -99.000000 TRUE TRUE #> 46091 43.083333 41.000000 TRUE TRUE #> 46144 -5.500000 123.500000 TRUE TRUE #> 46233 37.500000 128.000000 TRUE TRUE #> 46249 33.166667 -113.166667 TRUE TRUE #> 46259 -11.500000 131.000000 TRUE TRUE #> 46269 -5.500000 123.500000 TRUE TRUE #> 46293 11.500000 -5.583333 TRUE TRUE #> 46317 25.000000 77.000000 TRUE TRUE #> 46356 33.333333 -97.333333 TRUE TRUE #> 46369 43.083333 41.000000 TRUE TRUE #> 46373 37.000000 -99.000000 TRUE TRUE #> 46408 33.166667 -113.166667 TRUE TRUE #> 46498 43.000000 -75.666667 TRUE TRUE #> 46512 -9.000000 -67.000000 TRUE TRUE #> 46602 34.833333 -85.166667 TRUE TRUE #> 46691 13.450000 144.750000 TRUE TRUE #> 46708 -20.833333 116.500000 TRUE TRUE #> 46833 12.000000 7.000000 TRUE TRUE #> 46995 -6.500000 143.833333 TRUE TRUE #> 47015 16.000000 0.000000 TRUE TRUE #> 47024 11.500000 -5.583333 TRUE TRUE #> 47119 -4.666667 143.333333 TRUE TRUE #> 47142 -5.500000 123.500000 TRUE TRUE #> 47159 -11.500000 131.000000 TRUE TRUE #> 47214 9.000000 42.000000 TRUE TRUE #> 47283 -11.500000 131.000000 TRUE TRUE #> 47288 34.833333 -85.166667 TRUE TRUE #> 47306 43.000000 -75.666667 TRUE TRUE #> 47342 9.000000 42.000000 TRUE TRUE #> 47380 -7.000000 -62.000000 TRUE TRUE #> 47384 13.450000 144.750000 TRUE TRUE #> 47387 -6.500000 143.833333 TRUE TRUE #> 47391 -9.000000 -67.000000 TRUE TRUE #> 47404 11.500000 -5.583333 TRUE TRUE #> 47408 12.000000 7.000000 TRUE TRUE #> 47416 33.333333 -97.333333 TRUE TRUE #> 47421 25.000000 77.000000 TRUE TRUE #> 47427 33.166667 -113.166667 TRUE TRUE #> 47436 -4.666667 143.333333 TRUE TRUE #> 47451 37.500000 128.000000 TRUE TRUE #> 47459 -20.833333 116.500000 TRUE TRUE #> 47469 37.000000 -99.000000 TRUE TRUE #> 47478 43.083333 41.000000 TRUE TRUE #> 47495 -5.500000 123.500000 TRUE TRUE #> 47513 9.000000 42.000000 TRUE TRUE #> 47517 12.000000 7.000000 TRUE TRUE #> 47547 -7.000000 -62.000000 TRUE TRUE #> 47548 -4.666667 143.333333 TRUE TRUE #> 47586 43.083333 41.000000 TRUE TRUE #> 47595 11.500000 -5.583333 TRUE TRUE #> 47641 -9.000000 -67.000000 TRUE TRUE #> 47647 43.000000 -75.666667 TRUE TRUE #> 47651 34.833333 -85.166667 TRUE TRUE #> 47661 25.000000 77.000000 TRUE TRUE #> 47663 33.333333 -97.333333 TRUE TRUE #> 47680 37.000000 -99.000000 TRUE TRUE #> 47683 -5.500000 123.500000 TRUE TRUE #> 47686 -20.833333 116.500000 TRUE TRUE #> 47689 -6.500000 143.833333 TRUE TRUE #> 47698 33.166667 -113.166667 TRUE TRUE #> 47702 -11.500000 131.000000 TRUE TRUE #> 47722 37.500000 128.000000 TRUE TRUE #> 47737 13.450000 144.750000 TRUE TRUE #> 47752 25.000000 77.000000 TRUE TRUE #> 47754 37.500000 128.000000 TRUE TRUE #> 47760 -4.666667 143.333333 TRUE TRUE #> 47770 13.450000 144.750000 TRUE TRUE #> 47776 43.000000 -75.666667 TRUE TRUE #> 47785 -9.000000 -67.000000 TRUE TRUE #> 47793 33.333333 -97.333333 TRUE TRUE #> 47819 12.000000 7.000000 TRUE TRUE #> 47826 -6.500000 143.833333 TRUE TRUE #> 47832 43.083333 41.000000 TRUE TRUE #> 47863 11.500000 -5.583333 TRUE TRUE #> 47864 -7.000000 -62.000000 TRUE TRUE #> 47887 34.833333 -85.166667 TRUE TRUE #> 47902 -11.500000 131.000000 TRUE TRUE #> 47933 -20.833333 116.500000 TRUE TRUE #> 47937 37.000000 -99.000000 TRUE TRUE #> 47938 9.000000 42.000000 TRUE TRUE #> 47940 -5.500000 123.500000 TRUE TRUE #> 47968 33.166667 -113.166667 TRUE TRUE #> 47990 33.333333 -97.333333 TRUE TRUE #> 48060 9.000000 42.000000 TRUE TRUE #> 48077 37.000000 -99.000000 TRUE TRUE #> 48093 -20.833333 116.500000 TRUE TRUE #> 48109 25.000000 77.000000 TRUE TRUE #> 48144 -11.500000 131.000000 TRUE TRUE #> 48154 13.450000 144.750000 TRUE TRUE #> 48160 16.000000 0.000000 TRUE TRUE #> 48191 -4.666667 143.333333 TRUE TRUE #> 48193 -5.500000 123.500000 TRUE TRUE #> 48232 -7.000000 -62.000000 TRUE TRUE #> 48278 -9.000000 -67.000000 TRUE TRUE #> 48322 43.000000 -75.666667 TRUE TRUE #> 48342 37.500000 128.000000 TRUE TRUE #> 48354 11.500000 -5.583333 TRUE TRUE #> 48357 34.833333 -85.166667 TRUE TRUE #> 48369 12.000000 7.000000 TRUE TRUE #> 48449 -6.500000 143.833333 TRUE TRUE #> 48459 43.083333 41.000000 TRUE TRUE #> 48468 33.166667 -113.166667 TRUE TRUE #> 48593 -20.833333 116.500000 TRUE TRUE #> 48603 33.166667 -113.166667 TRUE TRUE #> 48624 -11.500000 131.000000 TRUE TRUE #> 48632 43.083333 41.000000 TRUE TRUE #> 48644 -5.500000 123.500000 TRUE TRUE #> 48658 37.500000 128.000000 TRUE TRUE #> 48664 13.450000 144.750000 TRUE TRUE #> 48671 25.000000 77.000000 TRUE TRUE #> 48677 11.500000 -5.583333 TRUE TRUE #> 48702 11.500000 -5.583333 TRUE TRUE #> 48706 43.083333 41.000000 TRUE TRUE #> 48728 -11.500000 131.000000 TRUE TRUE #> 48730 13.450000 144.750000 TRUE TRUE #> 48733 -5.500000 123.500000 TRUE TRUE #> 48746 33.166667 -113.166667 TRUE TRUE #> 48748 -20.833333 116.500000 TRUE TRUE #> 48805 25.000000 77.000000 TRUE TRUE #> 48806 37.500000 128.000000 TRUE TRUE #> 48817 37.500000 128.000000 TRUE TRUE #> 48822 -9.000000 -67.000000 TRUE TRUE #> 48836 -7.000000 -62.000000 TRUE TRUE #> 48842 9.000000 42.000000 TRUE TRUE #> 48852 33.166667 -113.166667 TRUE TRUE #> 48853 25.000000 77.000000 TRUE TRUE #> 48879 43.083333 41.000000 TRUE TRUE #> 48894 -5.500000 123.500000 TRUE TRUE #> 48900 13.450000 144.750000 TRUE TRUE #> 48907 11.500000 -5.583333 TRUE TRUE #> 48917 12.000000 7.000000 TRUE TRUE #> 48923 37.000000 -99.000000 TRUE TRUE #> 48938 16.000000 0.000000 TRUE TRUE #> 48945 -4.666667 143.333333 TRUE TRUE #> 48947 43.000000 -75.666667 TRUE TRUE #> 48974 33.333333 -97.333333 TRUE TRUE #> 48975 -20.833333 116.500000 TRUE TRUE #> 48991 43.083333 41.000000 TRUE TRUE #> 49003 25.000000 77.000000 TRUE TRUE #> 49013 -11.500000 131.000000 TRUE TRUE #> 49021 9.000000 42.000000 TRUE TRUE #> 49058 37.000000 -99.000000 TRUE TRUE #> 49088 37.500000 128.000000 TRUE TRUE #> 49106 -4.666667 143.333333 TRUE TRUE #> 49113 13.450000 144.750000 TRUE TRUE #> 49166 12.000000 7.000000 TRUE TRUE #> 49277 25.000000 77.000000 TRUE TRUE #> 49301 13.450000 144.750000 TRUE TRUE #> 49303 -5.500000 123.500000 TRUE TRUE #> 49304 -7.000000 -62.000000 TRUE TRUE #> 49338 43.083333 41.000000 TRUE TRUE #> 49407 9.000000 42.000000 TRUE TRUE #> 49408 -4.666667 143.333333 TRUE TRUE #> 49410 16.000000 0.000000 TRUE TRUE #> 49416 37.500000 128.000000 TRUE TRUE #> 49422 33.166667 -113.166667 TRUE TRUE #> 49426 12.000000 7.000000 TRUE TRUE #> 49467 11.500000 -5.583333 TRUE TRUE #> 49496 34.833333 -85.166667 TRUE TRUE #> 49508 -11.500000 131.000000 TRUE TRUE #> 49514 -9.000000 -67.000000 TRUE TRUE #> 49528 43.000000 -75.666667 TRUE TRUE #> 49530 33.333333 -97.333333 TRUE TRUE #> 49532 9.000000 42.000000 TRUE TRUE #> 49543 37.500000 128.000000 TRUE TRUE #> 49557 37.000000 -99.000000 TRUE TRUE #> 49561 11.500000 -5.583333 TRUE TRUE #> 49564 -7.000000 -62.000000 TRUE TRUE #> 49581 13.450000 144.750000 TRUE TRUE #> 49591 43.083333 41.000000 TRUE TRUE #> 49594 25.000000 77.000000 TRUE TRUE #> 49600 -4.666667 143.333333 TRUE TRUE #> 49608 16.000000 0.000000 TRUE TRUE #> 49625 -5.500000 123.500000 TRUE TRUE #> 49626 -6.500000 143.833333 TRUE TRUE #> 49634 33.166667 -113.166667 TRUE TRUE #> 49668 -11.500000 131.000000 TRUE TRUE #> 49689 34.833333 -85.166667 TRUE TRUE #> 49704 12.000000 7.000000 TRUE TRUE #> 49728 -9.000000 -67.000000 TRUE TRUE #> 49732 -20.833333 116.500000 TRUE TRUE #> 49741 -20.833333 116.500000 TRUE TRUE #> 49750 37.500000 128.000000 TRUE TRUE #> 49755 25.000000 77.000000 TRUE TRUE #> 49759 43.083333 41.000000 TRUE TRUE #> 49792 -11.500000 131.000000 TRUE TRUE #> 49830 9.000000 42.000000 TRUE TRUE #> 49833 -6.500000 143.833333 TRUE TRUE #> 49836 11.500000 -5.583333 TRUE TRUE #> 49856 34.833333 -85.166667 TRUE TRUE #> 49864 -4.666667 143.333333 TRUE TRUE #> 49882 12.000000 7.000000 TRUE TRUE #> 49913 -5.500000 123.500000 TRUE TRUE #> 49919 16.000000 0.000000 TRUE TRUE #> 49923 13.450000 144.750000 TRUE TRUE #> 49927 43.000000 -75.666667 TRUE TRUE #> 49934 33.166667 -113.166667 TRUE TRUE #> 49941 33.333333 -97.333333 TRUE TRUE #> 49943 -9.000000 -67.000000 TRUE TRUE #> 49952 37.000000 -99.000000 TRUE TRUE #> 49954 -7.000000 -62.000000 TRUE TRUE #> 49969 -4.666667 143.333333 TRUE TRUE #> 50008 -20.833333 116.500000 TRUE TRUE #> 50009 37.000000 -99.000000 TRUE TRUE #> 50011 25.000000 77.000000 TRUE TRUE #> 50015 33.166667 -113.166667 TRUE TRUE #> 50025 -5.500000 123.500000 TRUE TRUE #> 50026 34.833333 -85.166667 TRUE TRUE #> 50030 -9.000000 -67.000000 TRUE TRUE #> 50041 43.083333 41.000000 TRUE TRUE #> 50042 -11.500000 131.000000 TRUE TRUE #> 50051 43.000000 -75.666667 TRUE TRUE #> 50062 33.333333 -97.333333 TRUE TRUE #> 50068 -6.500000 143.833333 TRUE TRUE #> 50075 16.000000 0.000000 TRUE TRUE #> 50076 13.450000 144.750000 TRUE TRUE #> 50078 9.000000 42.000000 TRUE TRUE #> 50082 -7.000000 -62.000000 TRUE TRUE #> 50097 12.000000 7.000000 TRUE TRUE #> 50100 11.500000 -5.583333 TRUE TRUE #> 50160 37.500000 128.000000 TRUE TRUE #> 50221 43.083333 41.000000 TRUE TRUE #> 50250 25.000000 77.000000 TRUE TRUE #> 50268 -6.500000 143.833333 TRUE TRUE #> 50271 9.000000 42.000000 TRUE TRUE #> 50287 11.500000 -5.583333 TRUE TRUE #> 50292 -11.500000 131.000000 TRUE TRUE #> 50297 -20.833333 116.500000 TRUE TRUE #> 50315 -9.000000 -67.000000 TRUE TRUE #> 50321 37.500000 128.000000 TRUE TRUE #> 50327 37.000000 -99.000000 TRUE TRUE #> 50343 -4.666667 143.333333 TRUE TRUE #> 50347 13.450000 144.750000 TRUE TRUE #> 50348 34.833333 -85.166667 TRUE TRUE #> 50349 12.000000 7.000000 TRUE TRUE #> 50362 -5.500000 123.500000 TRUE TRUE #> 50383 43.000000 -75.666667 TRUE TRUE #> 50386 -7.000000 -62.000000 TRUE TRUE #> 50392 33.333333 -97.333333 TRUE TRUE #> 50393 16.000000 0.000000 TRUE TRUE #> 50396 33.166667 -113.166667 TRUE TRUE #> 50541 -5.500000 123.500000 TRUE TRUE #> 50555 -11.500000 131.000000 TRUE TRUE #> 50559 9.000000 42.000000 TRUE TRUE #> 50609 -20.833333 116.500000 TRUE TRUE #> 50682 25.000000 77.000000 TRUE TRUE #> 50705 43.083333 41.000000 TRUE TRUE #> 50738 37.500000 128.000000 TRUE TRUE #> 50755 37.000000 -99.000000 TRUE TRUE #> 50794 -6.500000 143.833333 TRUE TRUE #> 50908 -4.666667 143.333333 TRUE TRUE #> 50915 -7.000000 -62.000000 TRUE TRUE #> 51004 33.166667 -113.166667 TRUE TRUE #> 51024 -9.000000 -67.000000 TRUE TRUE #> 51285 33.333333 -97.333333 TRUE TRUE #> 51312 43.000000 -75.666667 TRUE TRUE #> 51371 11.500000 -5.583333 TRUE TRUE #> 51421 16.000000 0.000000 TRUE TRUE #> 51453 12.000000 7.000000 TRUE TRUE #> 51572 34.833333 -85.166667 TRUE TRUE #> 51630 -20.833333 116.500000 TRUE TRUE #> 51671 11.500000 -5.583333 TRUE TRUE #> 51673 -6.500000 143.833333 TRUE TRUE #> 51708 -4.666667 143.333333 TRUE TRUE #> 51713 -11.500000 131.000000 TRUE TRUE #> 51741 33.166667 -113.166667 TRUE TRUE #> 51753 13.450000 144.750000 TRUE TRUE #> 51770 43.000000 -75.666667 TRUE TRUE #> 51779 25.000000 77.000000 TRUE TRUE #> 51829 -7.000000 -62.000000 TRUE TRUE #> 51830 -9.000000 -67.000000 TRUE TRUE #> 51934 16.000000 0.000000 TRUE TRUE #> 51962 37.500000 128.000000 TRUE TRUE #> 51976 43.083333 41.000000 TRUE TRUE #> 51979 37.000000 -99.000000 TRUE TRUE #> 52018 -5.500000 123.500000 TRUE TRUE #> 52063 9.000000 42.000000 TRUE TRUE #> 52072 12.000000 7.000000 TRUE TRUE #> 52089 33.333333 -97.333333 TRUE TRUE #> 52106 9.000000 42.000000 TRUE TRUE #> 52116 16.000000 0.000000 TRUE TRUE #> 52193 -4.666667 143.333333 TRUE TRUE #> 52227 33.166667 -113.166667 TRUE TRUE #> 52231 25.000000 77.000000 TRUE TRUE #> 52264 -6.500000 143.833333 TRUE TRUE #> 52296 43.083333 41.000000 TRUE TRUE #> 52313 33.333333 -97.333333 TRUE TRUE #> 52318 34.833333 -85.166667 TRUE TRUE #> 52320 -11.500000 131.000000 TRUE TRUE #> 52360 37.000000 -99.000000 TRUE TRUE #> 52399 -5.500000 123.500000 TRUE TRUE #> 52407 12.000000 7.000000 TRUE TRUE #> 52427 11.500000 -5.583333 TRUE TRUE #> 52437 -9.000000 -67.000000 TRUE TRUE #> 52479 -20.833333 116.500000 TRUE TRUE #> 52490 37.500000 128.000000 TRUE TRUE #> 52516 43.000000 -75.666667 TRUE TRUE #> 52639 -7.000000 -62.000000 TRUE TRUE #> 52682 33.166667 -113.166667 TRUE TRUE #> 52691 33.333333 -97.333333 TRUE TRUE #> 52696 -6.500000 143.833333 TRUE TRUE #> 52764 11.500000 -5.583333 TRUE TRUE #> 52852 25.000000 77.000000 TRUE TRUE #> 52855 37.500000 128.000000 TRUE TRUE #> 52893 13.450000 144.750000 TRUE TRUE #> 52898 9.000000 42.000000 TRUE TRUE #> 52910 43.000000 -75.666667 TRUE TRUE #> 52954 -20.833333 116.500000 TRUE TRUE #> 52979 43.083333 41.000000 TRUE TRUE #> 53009 12.000000 7.000000 TRUE TRUE #> 53010 16.000000 0.000000 TRUE TRUE #> 53034 34.833333 -85.166667 TRUE TRUE #> 53044 -11.500000 131.000000 TRUE TRUE #> 53055 -5.500000 123.500000 TRUE TRUE #> 53085 37.000000 -99.000000 TRUE TRUE #> 53115 -4.666667 143.333333 TRUE TRUE #> 53175 34.833333 -85.166667 TRUE TRUE #> 53190 -7.000000 -62.000000 TRUE TRUE #> 53198 -4.666667 143.333333 TRUE TRUE #> 53240 43.000000 -75.666667 TRUE TRUE #> 53284 11.500000 -5.583333 TRUE TRUE #> 53298 16.000000 0.000000 TRUE TRUE #> 53302 12.000000 7.000000 TRUE TRUE #> 53322 25.000000 77.000000 TRUE TRUE #> 53329 -9.000000 -67.000000 TRUE TRUE #> 53335 37.000000 -99.000000 TRUE TRUE #> 53346 43.083333 41.000000 TRUE TRUE #> 53353 -20.833333 116.500000 TRUE TRUE #> 53381 -11.500000 131.000000 TRUE TRUE #> 53382 9.000000 42.000000 TRUE TRUE #> 53401 -5.500000 123.500000 TRUE TRUE #> 53429 33.166667 -113.166667 TRUE TRUE #> 53437 -6.500000 143.833333 TRUE TRUE #> 53471 13.450000 144.750000 TRUE TRUE #> 53474 37.500000 128.000000 TRUE TRUE #> 53527 33.333333 -97.333333 TRUE TRUE #> 53529 43.083333 41.000000 TRUE TRUE #> 53545 33.166667 -113.166667 TRUE TRUE #> 53571 11.500000 -5.583333 TRUE TRUE #> 53572 -20.833333 116.500000 TRUE TRUE #> 53593 34.833333 -85.166667 TRUE TRUE #> 53596 25.000000 77.000000 TRUE TRUE #> 53599 -6.500000 143.833333 TRUE TRUE #> 53605 -7.000000 -62.000000 TRUE TRUE #> 53628 12.000000 7.000000 TRUE TRUE #> 53630 16.000000 0.000000 TRUE TRUE #> 53664 -9.000000 -67.000000 TRUE TRUE #> 53667 43.000000 -75.666667 TRUE TRUE #> 53693 37.500000 128.000000 TRUE TRUE #> 53704 9.000000 42.000000 TRUE TRUE #> 53706 13.450000 144.750000 TRUE TRUE #> 53732 -5.500000 123.500000 TRUE TRUE #> 53791 -11.500000 131.000000 TRUE TRUE #> 53800 -4.666667 143.333333 TRUE TRUE #> 53816 37.000000 -99.000000 TRUE TRUE #> 53860 34.833333 -85.166667 TRUE TRUE #> 53886 13.450000 144.750000 TRUE TRUE #> 53900 37.000000 -99.000000 TRUE TRUE #> 53914 25.000000 77.000000 TRUE TRUE #> 53928 12.000000 7.000000 TRUE TRUE #> 53938 16.000000 0.000000 TRUE TRUE #> 53959 43.083333 41.000000 TRUE TRUE #> 53963 -5.500000 123.500000 TRUE TRUE #> 53986 -9.000000 -67.000000 TRUE TRUE #> 53991 9.000000 42.000000 TRUE TRUE #> 53996 43.000000 -75.666667 TRUE TRUE #> 54017 11.500000 -5.583333 TRUE TRUE #> 54050 33.333333 -97.333333 TRUE TRUE #> 54065 37.500000 128.000000 TRUE TRUE #> 54082 12.000000 7.000000 TRUE TRUE #> 54084 -5.500000 123.500000 TRUE TRUE #> 54094 43.083333 41.000000 TRUE TRUE #> 54104 11.500000 -5.583333 TRUE TRUE #> 54106 25.000000 77.000000 TRUE TRUE #> 54117 9.000000 42.000000 TRUE TRUE #> 54149 -11.500000 131.000000 TRUE TRUE #> 54156 -7.000000 -62.000000 TRUE TRUE #> 54196 -9.000000 -67.000000 TRUE TRUE #> 54201 43.000000 -75.666667 TRUE TRUE #> 54205 37.000000 -99.000000 TRUE TRUE #> 54207 34.833333 -85.166667 TRUE TRUE #> 54219 33.166667 -113.166667 TRUE TRUE #> 54246 13.450000 144.750000 TRUE TRUE #> 54297 37.500000 128.000000 TRUE TRUE #> 54302 -6.500000 143.833333 TRUE TRUE #> 54311 -20.833333 116.500000 TRUE TRUE #> 54359 37.500000 128.000000 TRUE TRUE #> 54367 43.083333 41.000000 TRUE TRUE #> 54369 34.833333 -85.166667 TRUE TRUE #> 54383 13.450000 144.750000 TRUE TRUE #> 54387 43.000000 -75.666667 TRUE TRUE #> 54390 12.000000 7.000000 TRUE TRUE #> 54391 25.000000 77.000000 TRUE TRUE #> 54398 16.000000 0.000000 TRUE TRUE #> 54407 9.000000 42.000000 TRUE TRUE #> 54408 37.000000 -99.000000 TRUE TRUE #> 54422 -5.500000 123.500000 TRUE TRUE #> 54473 11.500000 -5.583333 TRUE TRUE #> 54520 9.000000 42.000000 TRUE TRUE #> 54567 12.000000 7.000000 TRUE TRUE #> 54581 -11.500000 131.000000 TRUE TRUE #> 54611 11.500000 -5.583333 TRUE TRUE #> 54625 -5.500000 123.500000 TRUE TRUE #> 54653 -4.666667 143.333333 TRUE TRUE #> 54684 16.000000 0.000000 TRUE TRUE #> 54691 25.000000 77.000000 TRUE TRUE #> 54703 13.450000 144.750000 TRUE TRUE #> 54717 37.000000 -99.000000 TRUE TRUE #> 54727 37.500000 128.000000 TRUE TRUE #> 54759 43.083333 41.000000 TRUE TRUE #> 54771 43.000000 -75.666667 TRUE TRUE #> 54775 -20.833333 116.500000 TRUE TRUE #> 54790 -9.000000 -67.000000 TRUE TRUE #> 54826 33.333333 -97.333333 TRUE TRUE #> 54897 -6.500000 143.833333 TRUE TRUE #> 54911 -7.000000 -62.000000 TRUE TRUE #> 54923 33.166667 -113.166667 TRUE TRUE #> 54927 34.833333 -85.166667 TRUE TRUE #> 54988 12.000000 7.000000 TRUE TRUE #> 55002 11.500000 -5.583333 TRUE TRUE #> 55010 25.000000 77.000000 TRUE TRUE #> 55022 9.000000 42.000000 TRUE TRUE #> 55042 16.000000 0.000000 TRUE TRUE #> 55055 -11.500000 131.000000 TRUE TRUE #> 55067 -5.500000 123.500000 TRUE TRUE #> 55078 -4.666667 143.333333 TRUE TRUE #> 55141 -6.500000 143.833333 TRUE TRUE #> 55143 37.500000 128.000000 TRUE TRUE #> 55159 33.333333 -97.333333 TRUE TRUE #> 55165 33.166667 -113.166667 TRUE TRUE #> 55176 -7.000000 -62.000000 TRUE TRUE #> 55212 34.833333 -85.166667 TRUE TRUE #> 55219 37.000000 -99.000000 TRUE TRUE #> 55225 -9.000000 -67.000000 TRUE TRUE #> 55226 43.083333 41.000000 TRUE TRUE #> 55236 -20.833333 116.500000 TRUE TRUE #> 55289 13.450000 144.750000 TRUE TRUE #> 55306 43.000000 -75.666667 TRUE TRUE #> 55357 -5.500000 123.500000 TRUE TRUE #> 55372 43.083333 41.000000 TRUE TRUE #> 55379 -4.666667 143.333333 TRUE TRUE #> 55381 9.000000 42.000000 TRUE TRUE #> 55382 13.450000 144.750000 TRUE TRUE #> 55389 -6.500000 143.833333 TRUE TRUE #> 55394 33.333333 -97.333333 TRUE TRUE #> 55397 43.000000 -75.666667 TRUE TRUE #> 55405 11.500000 -5.583333 TRUE TRUE #> 55419 25.000000 77.000000 TRUE TRUE #> 55428 16.000000 0.000000 TRUE TRUE #> 55431 34.833333 -85.166667 TRUE TRUE #> 55476 -9.000000 -67.000000 TRUE TRUE #> 55494 -20.833333 116.500000 TRUE TRUE #> 55503 33.166667 -113.166667 TRUE TRUE #> 55509 12.000000 7.000000 TRUE TRUE #> 55511 37.000000 -99.000000 TRUE TRUE #> 55517 37.500000 128.000000 TRUE TRUE #> 55519 -7.000000 -62.000000 TRUE TRUE #> 55544 -11.500000 131.000000 TRUE TRUE #> 55575 16.000000 0.000000 TRUE TRUE #> 55580 9.000000 42.000000 TRUE TRUE #> 55594 33.166667 -113.166667 TRUE TRUE #> 55603 11.500000 -5.583333 TRUE TRUE #> 55604 12.000000 7.000000 TRUE TRUE #> 55610 -5.500000 123.500000 TRUE TRUE #> 55616 37.000000 -99.000000 TRUE TRUE #> 55621 25.000000 77.000000 TRUE TRUE #> 55631 -6.500000 143.833333 TRUE TRUE #> 55641 13.450000 144.750000 TRUE TRUE #> 55669 -4.666667 143.333333 TRUE TRUE #> 55673 -9.000000 -67.000000 TRUE TRUE #> 55683 43.000000 -75.666667 TRUE TRUE #> 55687 33.333333 -97.333333 TRUE TRUE #> 55692 37.500000 128.000000 TRUE TRUE #> 55695 -7.000000 -62.000000 TRUE TRUE #> 55720 34.833333 -85.166667 TRUE TRUE #> 55725 -11.500000 131.000000 TRUE TRUE #> 55728 -20.833333 116.500000 TRUE TRUE #> 55736 43.083333 41.000000 TRUE TRUE #> 55761 -4.666667 143.333333 TRUE TRUE #> 55771 -9.000000 -67.000000 TRUE TRUE #> 55784 -7.000000 -62.000000 TRUE TRUE #> 55816 33.333333 -97.333333 TRUE TRUE #> 55880 25.000000 77.000000 TRUE TRUE #> 55940 12.000000 7.000000 TRUE TRUE #> 56036 9.000000 42.000000 TRUE TRUE #> 56068 -11.500000 131.000000 TRUE TRUE #> 56072 16.000000 0.000000 TRUE TRUE #> 56115 43.083333 41.000000 TRUE TRUE #> 56120 11.500000 -5.583333 TRUE TRUE #> 56153 43.000000 -75.666667 TRUE TRUE #> 56156 -5.500000 123.500000 TRUE TRUE #> 56161 -20.833333 116.500000 TRUE TRUE #> 56169 13.450000 144.750000 TRUE TRUE #> 56185 33.166667 -113.166667 TRUE TRUE #> 56199 37.500000 128.000000 TRUE TRUE #> 56231 -6.500000 143.833333 TRUE TRUE #> 56279 34.833333 -85.166667 TRUE TRUE #> 56301 37.000000 -99.000000 TRUE TRUE #> 56324 37.500000 128.000000 TRUE TRUE #> 56342 -9.000000 -67.000000 TRUE TRUE #> 56354 16.000000 0.000000 TRUE TRUE #> 56363 25.000000 77.000000 TRUE TRUE #> 56368 12.000000 7.000000 TRUE TRUE #> 56370 43.000000 -75.666667 TRUE TRUE #> 56376 11.500000 -5.583333 TRUE TRUE #> 56382 -6.500000 143.833333 TRUE TRUE #> 56384 13.450000 144.750000 TRUE TRUE #> 56386 -7.000000 -62.000000 TRUE TRUE #> 56404 43.083333 41.000000 TRUE TRUE #> 56427 -5.500000 123.500000 TRUE TRUE #> 56438 9.000000 42.000000 TRUE TRUE #> 56446 -20.833333 116.500000 TRUE TRUE #> 56452 -4.666667 143.333333 TRUE TRUE #> 56457 -11.500000 131.000000 TRUE TRUE #> 56474 37.000000 -99.000000 TRUE TRUE #> 56495 33.333333 -97.333333 TRUE TRUE #> 56497 34.833333 -85.166667 TRUE TRUE #> 56498 33.166667 -113.166667 TRUE TRUE #> 56531 -6.500000 143.833333 TRUE TRUE #> 56607 33.166667 -113.166667 TRUE TRUE #> 56626 11.500000 -5.583333 TRUE TRUE #> 56636 9.000000 42.000000 TRUE TRUE #> 56759 43.083333 41.000000 TRUE TRUE #> 56795 16.000000 0.000000 TRUE TRUE #> 56814 -7.000000 -62.000000 TRUE TRUE #> 56834 37.500000 128.000000 TRUE TRUE #> 56848 -4.666667 143.333333 TRUE TRUE #> 56923 34.833333 -85.166667 TRUE TRUE #> 57038 25.000000 77.000000 TRUE TRUE #> 57054 37.000000 -99.000000 TRUE TRUE #> 57088 12.000000 7.000000 TRUE TRUE #> 57121 -11.500000 131.000000 TRUE TRUE #> 57322 -9.000000 -67.000000 TRUE TRUE #> 57479 -20.833333 116.500000 TRUE TRUE #> 57637 13.450000 144.750000 TRUE TRUE #> 57655 -5.500000 123.500000 TRUE TRUE #> 57821 43.000000 -75.666667 TRUE TRUE #> 57843 33.333333 -97.333333 TRUE TRUE #> 57942 33.333333 -97.333333 TRUE TRUE #> 57999 16.000000 0.000000 TRUE TRUE #> 58042 11.500000 -5.583333 TRUE TRUE #> 58049 -9.000000 -67.000000 TRUE TRUE #> 58127 -4.666667 143.333333 TRUE TRUE #> 58178 -11.500000 131.000000 TRUE TRUE #> 58297 37.500000 128.000000 TRUE TRUE #> 58322 33.166667 -113.166667 TRUE TRUE #> 58342 34.833333 -85.166667 TRUE TRUE #> 58350 -7.000000 -62.000000 TRUE TRUE #> 58497 37.000000 -99.000000 TRUE TRUE #> 58723 25.000000 77.000000 TRUE TRUE #> 58741 9.000000 42.000000 TRUE TRUE #> 58789 43.083333 41.000000 TRUE TRUE #> 58792 -6.500000 143.833333 TRUE TRUE #> 58910 12.000000 7.000000 TRUE TRUE #> 59061 -20.833333 116.500000 TRUE TRUE #> 59160 43.000000 -75.666667 TRUE TRUE #> 59176 13.450000 144.750000 TRUE TRUE #> 59219 -5.500000 123.500000 TRUE TRUE #> 59403 33.333333 -97.333333 TRUE TRUE #> 59502 37.000000 -99.000000 TRUE TRUE #> 59519 9.000000 42.000000 TRUE TRUE #> 59558 -6.500000 143.833333 TRUE TRUE #> 59559 37.500000 128.000000 TRUE TRUE #> 59744 -4.666667 143.333333 TRUE TRUE #> 59817 34.833333 -85.166667 TRUE TRUE #> 59818 33.333333 -97.333333 TRUE TRUE #> 59819 11.500000 -5.583333 TRUE TRUE #> 59855 33.166667 -113.166667 TRUE TRUE #> 59921 43.083333 41.000000 TRUE TRUE #> 59955 16.000000 0.000000 TRUE TRUE #> 60008 25.000000 77.000000 TRUE TRUE #> 60094 -7.000000 -62.000000 TRUE TRUE #> 60281 -11.500000 131.000000 TRUE TRUE #> 60339 13.450000 144.750000 TRUE TRUE #> 60471 12.000000 7.000000 TRUE TRUE #> 60527 -20.833333 116.500000 TRUE TRUE #> 60696 43.000000 -75.666667 TRUE TRUE #> 60733 -5.500000 123.500000 TRUE TRUE #> 60908 -9.000000 -67.000000 TRUE TRUE #> 61120 12.000000 7.000000 TRUE TRUE #> 61144 -20.833333 116.500000 TRUE TRUE #> 61148 -11.500000 131.000000 TRUE TRUE #> 61188 43.083333 41.000000 TRUE TRUE #> 61204 -7.000000 -62.000000 TRUE TRUE #> 61213 9.000000 42.000000 TRUE TRUE #> 61249 34.833333 -85.166667 TRUE TRUE #> 61250 11.500000 -5.583333 TRUE TRUE #> 61272 16.000000 0.000000 TRUE TRUE #> 61324 33.333333 -97.333333 TRUE TRUE #> 61332 43.000000 -75.666667 TRUE TRUE #> 61360 -9.000000 -67.000000 TRUE TRUE #> 61440 -4.666667 143.333333 TRUE TRUE #> 61590 33.166667 -113.166667 TRUE TRUE #> 61595 9.000000 42.000000 TRUE TRUE #> 61643 34.833333 -85.166667 TRUE TRUE #> 61659 -4.666667 143.333333 TRUE TRUE #> 61693 -7.000000 -62.000000 TRUE TRUE #> 61733 43.083333 41.000000 TRUE TRUE #> 61759 -9.000000 -67.000000 TRUE TRUE #> 61820 16.000000 0.000000 TRUE TRUE #> 61829 -6.500000 143.833333 TRUE TRUE #> 61838 37.500000 128.000000 TRUE TRUE #> 61946 11.500000 -5.583333 TRUE TRUE #> 62022 25.000000 77.000000 TRUE TRUE #> 62186 -5.500000 123.500000 TRUE TRUE #> 62272 12.000000 7.000000 TRUE TRUE #> 62355 13.450000 144.750000 TRUE TRUE #> 62422 -11.500000 131.000000 TRUE TRUE #> 62614 43.000000 -75.666667 TRUE TRUE #> 62626 37.000000 -99.000000 TRUE TRUE #> 62634 33.333333 -97.333333 TRUE TRUE #> 62637 -20.833333 116.500000 TRUE TRUE #> 62697 11.500000 -5.583333 TRUE TRUE #> 62724 43.083333 41.000000 TRUE TRUE #> 62725 -4.666667 143.333333 TRUE TRUE #> 62808 37.000000 -99.000000 TRUE TRUE #> 62826 -9.000000 -67.000000 TRUE TRUE #> 62871 16.000000 0.000000 TRUE TRUE #> 62955 34.833333 -85.166667 TRUE TRUE #> 62960 37.500000 128.000000 TRUE TRUE #> 63034 33.166667 -113.166667 TRUE TRUE #> 63085 -6.500000 143.833333 TRUE TRUE #> 63107 -11.500000 131.000000 TRUE TRUE #> 63188 -7.000000 -62.000000 TRUE TRUE #> 63297 25.000000 77.000000 TRUE TRUE #> 63476 9.000000 42.000000 TRUE TRUE #> 63681 12.000000 7.000000 TRUE TRUE #> 63703 13.450000 144.750000 TRUE TRUE #> 63738 -5.500000 123.500000 TRUE TRUE #> 63802 43.000000 -75.666667 TRUE TRUE #> 63873 -20.833333 116.500000 TRUE TRUE #> 63934 25.000000 77.000000 TRUE TRUE #> 64012 37.500000 128.000000 TRUE TRUE #> 64052 -4.666667 143.333333 TRUE TRUE #> 64075 13.450000 144.750000 TRUE TRUE #> 64118 -11.500000 131.000000 TRUE TRUE #> 64127 12.000000 7.000000 TRUE TRUE #> 64238 -6.500000 143.833333 TRUE TRUE #> 64321 33.166667 -113.166667 TRUE TRUE #> 64476 -5.500000 123.500000 TRUE TRUE #> 64508 34.833333 -85.166667 TRUE TRUE #> 64525 16.000000 0.000000 TRUE TRUE #> 64526 -7.000000 -62.000000 TRUE TRUE #> 64549 9.000000 42.000000 TRUE TRUE #> 64855 43.083333 41.000000 TRUE TRUE #> 64969 11.500000 -5.583333 TRUE TRUE #> 65045 -20.833333 116.500000 TRUE TRUE #> 65134 33.333333 -97.333333 TRUE TRUE #> 65135 -9.000000 -67.000000 TRUE TRUE #> 65296 11.500000 -5.583333 TRUE TRUE #> 65342 13.450000 144.750000 TRUE TRUE #> 65351 -6.500000 143.833333 TRUE TRUE #> 65357 37.500000 128.000000 TRUE TRUE #> 65401 34.833333 -85.166667 TRUE TRUE #> 65422 37.000000 -99.000000 TRUE TRUE #> 65501 43.083333 41.000000 TRUE TRUE #> 65502 -4.666667 143.333333 TRUE TRUE #> 65506 -11.500000 131.000000 TRUE TRUE #> 65577 25.000000 77.000000 TRUE TRUE #> 65586 -20.833333 116.500000 TRUE TRUE #> 65607 33.333333 -97.333333 TRUE TRUE #> 65672 43.000000 -75.666667 TRUE TRUE #> 65714 -9.000000 -67.000000 TRUE TRUE #> 66013 33.166667 -113.166667 TRUE TRUE #> 66094 -5.500000 123.500000 TRUE TRUE #> 66142 16.000000 0.000000 TRUE TRUE #> 66321 9.000000 42.000000 TRUE TRUE #> 66346 -7.000000 -62.000000 TRUE TRUE #> 66477 12.000000 7.000000 TRUE TRUE #> 66545 13.450000 144.750000 TRUE TRUE #> 66552 -11.500000 131.000000 TRUE TRUE #> 66687 -9.000000 -67.000000 TRUE TRUE #> 66700 33.333333 -97.333333 TRUE TRUE #> 66740 37.000000 -99.000000 TRUE TRUE #> 66789 37.500000 128.000000 TRUE TRUE #> 66795 25.000000 77.000000 TRUE TRUE #> 66796 -20.833333 116.500000 TRUE TRUE #> 66815 -4.666667 143.333333 TRUE TRUE #> 66962 33.166667 -113.166667 TRUE TRUE #> 67041 16.000000 0.000000 TRUE TRUE #> 67081 11.500000 -5.583333 TRUE TRUE #> 67186 -6.500000 143.833333 TRUE TRUE #> 67201 34.833333 -85.166667 TRUE TRUE #> 67238 12.000000 7.000000 TRUE TRUE #> 67250 9.000000 42.000000 TRUE TRUE #> 67387 -7.000000 -62.000000 TRUE TRUE #> 67538 -5.500000 123.500000 TRUE TRUE #> 67608 43.083333 41.000000 TRUE TRUE #> 67645 -11.500000 131.000000 TRUE TRUE #> 67672 13.450000 144.750000 TRUE TRUE #> 67694 -20.833333 116.500000 TRUE TRUE #> 67698 11.500000 -5.583333 TRUE TRUE #> 67734 16.000000 0.000000 TRUE TRUE #> 67765 -5.500000 123.500000 TRUE TRUE #> 67849 37.500000 128.000000 TRUE TRUE #> 67888 33.166667 -113.166667 TRUE TRUE #> 67896 25.000000 77.000000 TRUE TRUE #> 67898 12.000000 7.000000 TRUE TRUE #> 67908 -6.500000 143.833333 TRUE TRUE #> 67920 33.333333 -97.333333 TRUE TRUE #> 67935 43.083333 41.000000 TRUE TRUE #> 67963 -4.666667 143.333333 TRUE TRUE #> 67981 -9.000000 -67.000000 TRUE TRUE #> 67991 43.000000 -75.666667 TRUE TRUE #> 68075 34.833333 -85.166667 TRUE TRUE #> 68089 37.000000 -99.000000 TRUE TRUE #> 68093 -7.000000 -62.000000 TRUE TRUE #> 68094 9.000000 42.000000 TRUE TRUE #> 68135 13.450000 144.750000 TRUE TRUE #> 68200 -9.000000 -67.000000 TRUE TRUE #> 68234 12.000000 7.000000 TRUE TRUE #> 68287 16.000000 0.000000 TRUE TRUE #> 68413 33.333333 -97.333333 TRUE TRUE #> 68482 9.000000 42.000000 TRUE TRUE #> 68516 -11.500000 131.000000 TRUE TRUE #> 68715 37.500000 128.000000 TRUE TRUE #> 68742 -4.666667 143.333333 TRUE TRUE #> 68800 43.083333 41.000000 TRUE TRUE #> 68828 43.000000 -75.666667 TRUE TRUE #> 68834 37.000000 -99.000000 TRUE TRUE #> 68853 25.000000 77.000000 TRUE TRUE #> 68855 11.500000 -5.583333 TRUE TRUE #> 68859 -20.833333 116.500000 TRUE TRUE #> 68869 -5.500000 123.500000 TRUE TRUE #> 68891 -6.500000 143.833333 TRUE TRUE #> 68908 34.833333 -85.166667 TRUE TRUE #> 68912 33.166667 -113.166667 TRUE TRUE #> 68938 -4.666667 143.333333 TRUE TRUE #> 68940 43.083333 41.000000 TRUE TRUE #> 69054 37.500000 128.000000 TRUE TRUE #> 69100 -6.500000 143.833333 TRUE TRUE #> 69113 34.833333 -85.166667 TRUE TRUE #> 69122 12.000000 7.000000 TRUE TRUE #> 69314 9.000000 42.000000 TRUE TRUE #> 69335 13.450000 144.750000 TRUE TRUE #> 69359 33.333333 -97.333333 TRUE TRUE #> 69452 -11.500000 131.000000 TRUE TRUE #> 69469 -9.000000 -67.000000 TRUE TRUE #> 69682 16.000000 0.000000 TRUE TRUE #> 69730 -5.500000 123.500000 TRUE TRUE #> 69736 33.166667 -113.166667 TRUE TRUE #> 69745 37.000000 -99.000000 TRUE TRUE #> 69758 43.000000 -75.666667 TRUE TRUE #> 69771 34.833333 -85.166667 TRUE TRUE #> 69777 -6.500000 143.833333 TRUE TRUE #> 69779 33.166667 -113.166667 TRUE TRUE #> 69784 -5.500000 123.500000 TRUE TRUE #> 69790 37.500000 128.000000 TRUE TRUE #> 69794 11.500000 -5.583333 TRUE TRUE #> 69808 25.000000 77.000000 TRUE TRUE #> 69809 11.500000 -5.583333 TRUE TRUE #> 69827 -20.833333 116.500000 TRUE TRUE #> 69852 9.000000 42.000000 TRUE TRUE #> 69880 25.000000 77.000000 TRUE TRUE #> 69926 43.083333 41.000000 TRUE TRUE #> 69942 43.000000 -75.666667 TRUE TRUE #> 69980 13.450000 144.750000 TRUE TRUE #> 70051 37.500000 128.000000 TRUE TRUE #> 70072 12.000000 7.000000 TRUE TRUE #> 70158 -4.666667 143.333333 TRUE TRUE #> 70360 37.000000 -99.000000 TRUE TRUE #> 70377 25.000000 77.000000 TRUE TRUE #> 70402 13.450000 144.750000 TRUE TRUE #> 70469 -6.500000 143.833333 TRUE TRUE #> 70498 12.000000 7.000000 TRUE TRUE #> 70527 -7.000000 -62.000000 TRUE TRUE #> 70553 11.500000 -5.583333 TRUE TRUE #> 70675 -5.500000 123.500000 TRUE TRUE #> 70760 -11.500000 131.000000 TRUE TRUE #> 70807 43.000000 -75.666667 TRUE TRUE #> 70837 16.000000 0.000000 TRUE TRUE #> 70919 -4.666667 143.333333 TRUE TRUE #> 70929 9.000000 42.000000 TRUE TRUE #> 70939 43.083333 41.000000 TRUE TRUE #> 70941 33.166667 -113.166667 TRUE TRUE #> 70972 -9.000000 -67.000000 TRUE TRUE #> 70996 37.500000 128.000000 TRUE TRUE #> 71024 -20.833333 116.500000 TRUE TRUE #> 71270 -20.833333 116.500000 TRUE TRUE #> 71276 43.000000 -75.666667 TRUE TRUE #> 71356 16.000000 0.000000 TRUE TRUE #> 71395 37.000000 -99.000000 TRUE TRUE #> 71462 -9.000000 -67.000000 TRUE TRUE #> 71479 -7.000000 -62.000000 TRUE TRUE #> 71494 43.083333 41.000000 TRUE TRUE #> 71515 25.000000 77.000000 TRUE TRUE #> 71529 37.500000 128.000000 TRUE TRUE #> 71580 -6.500000 143.833333 TRUE TRUE #> 71923 9.000000 42.000000 TRUE TRUE #> 71963 -4.666667 143.333333 TRUE TRUE #> 72086 -5.500000 123.500000 TRUE TRUE #> 72088 12.000000 7.000000 TRUE TRUE #> 72093 11.500000 -5.583333 TRUE TRUE #> 72099 13.450000 144.750000 TRUE TRUE #> 72103 -11.500000 131.000000 TRUE TRUE #> 72117 13.450000 144.750000 TRUE TRUE #> 72134 -9.000000 -67.000000 TRUE TRUE #> 72135 -11.500000 131.000000 TRUE TRUE #> 72137 33.333333 -97.333333 TRUE TRUE #> 72176 -5.500000 123.500000 TRUE TRUE #> 72192 43.000000 -75.666667 TRUE TRUE #> 72371 9.000000 42.000000 TRUE TRUE #> 72375 25.000000 77.000000 TRUE TRUE #> 72401 12.000000 7.000000 TRUE TRUE #> 72404 11.500000 -5.583333 TRUE TRUE #> 72477 16.000000 0.000000 TRUE TRUE #> 72577 -6.500000 143.833333 TRUE TRUE #> 72594 37.500000 128.000000 TRUE TRUE #> 72612 37.000000 -99.000000 TRUE TRUE #> 72650 43.083333 41.000000 TRUE TRUE #> 72738 33.166667 -113.166667 TRUE TRUE #> 72800 -4.666667 143.333333 TRUE TRUE #> 72846 37.500000 128.000000 TRUE TRUE #> 72848 43.083333 41.000000 TRUE TRUE #> 72883 34.833333 -85.166667 TRUE TRUE #> 72928 25.000000 77.000000 TRUE TRUE #> 72941 16.000000 0.000000 TRUE TRUE #> 73006 33.166667 -113.166667 TRUE TRUE #> 73149 9.000000 42.000000 TRUE TRUE #> 73155 -6.500000 143.833333 TRUE TRUE #> 73162 11.500000 -5.583333 TRUE TRUE #> 73224 -7.000000 -62.000000 TRUE TRUE #> 73307 -5.500000 123.500000 TRUE TRUE #> 73318 12.000000 7.000000 TRUE TRUE #> 73393 13.450000 144.750000 TRUE TRUE #> 73642 -11.500000 131.000000 TRUE TRUE #> 73773 -9.000000 -67.000000 TRUE TRUE #> 73914 43.083333 41.000000 TRUE TRUE #> 73992 37.500000 128.000000 TRUE TRUE #> 74001 -4.666667 143.333333 TRUE TRUE #> 74052 9.000000 42.000000 TRUE TRUE #> 74061 16.000000 0.000000 TRUE TRUE #> 74083 33.333333 -97.333333 TRUE TRUE #> 74160 12.000000 7.000000 TRUE TRUE #> 74189 -11.500000 131.000000 TRUE TRUE #> 74269 13.450000 144.750000 TRUE TRUE #> 74577 -5.500000 123.500000 TRUE TRUE #> 74619 -9.000000 -67.000000 TRUE TRUE #> 74683 -20.833333 116.500000 TRUE TRUE #> 74700 43.000000 -75.666667 TRUE TRUE #> 74717 34.833333 -85.166667 TRUE TRUE #> 74733 11.500000 -5.583333 TRUE TRUE #> 74745 -6.500000 143.833333 TRUE TRUE #> 74757 25.000000 77.000000 TRUE TRUE #> 74767 37.000000 -99.000000 TRUE TRUE #> 74771 33.166667 -113.166667 TRUE TRUE #> 74815 -6.500000 143.833333 TRUE TRUE #> 74830 25.000000 77.000000 TRUE TRUE #> 74932 37.500000 128.000000 TRUE TRUE #> 74954 -4.666667 143.333333 TRUE TRUE #> 75007 16.000000 0.000000 TRUE TRUE #> 75017 33.166667 -113.166667 TRUE TRUE #> 75179 34.833333 -85.166667 TRUE TRUE #> 75182 -7.000000 -62.000000 TRUE TRUE #> 75254 33.333333 -97.333333 TRUE TRUE #> 75256 43.083333 41.000000 TRUE TRUE #> 75267 11.500000 -5.583333 TRUE TRUE #> 75279 9.000000 42.000000 TRUE TRUE #> 75359 12.000000 7.000000 TRUE TRUE #> 75382 13.450000 144.750000 TRUE TRUE #> 75441 -11.500000 131.000000 TRUE TRUE #> 75810 -5.500000 123.500000 TRUE TRUE #> 75884 -20.833333 116.500000 TRUE TRUE #> 75946 -9.000000 -67.000000 TRUE TRUE #> 76104 16.000000 0.000000 TRUE TRUE #> 76113 33.333333 -97.333333 TRUE TRUE #> 76116 43.083333 41.000000 TRUE TRUE #> 76119 13.450000 144.750000 TRUE TRUE #> 76137 -9.000000 -67.000000 TRUE TRUE #> 76146 11.500000 -5.583333 TRUE TRUE #> 76154 -7.000000 -62.000000 TRUE TRUE #> 76171 12.000000 7.000000 TRUE TRUE #> 76177 -11.500000 131.000000 TRUE TRUE #> 76191 -4.666667 143.333333 TRUE TRUE #> 76200 37.000000 -99.000000 TRUE TRUE #> 76202 34.833333 -85.166667 TRUE TRUE #> 76211 37.500000 128.000000 TRUE TRUE #> 76245 -20.833333 116.500000 TRUE TRUE #> 76250 9.000000 42.000000 TRUE TRUE #> 76253 33.166667 -113.166667 TRUE TRUE #> 76257 -6.500000 143.833333 TRUE TRUE #> 76284 -5.500000 123.500000 TRUE TRUE #> 76287 25.000000 77.000000 TRUE TRUE #> 76302 11.500000 -5.583333 TRUE TRUE #> 76325 16.000000 0.000000 TRUE TRUE #> 76327 12.000000 7.000000 TRUE TRUE #> 76340 -7.000000 -62.000000 TRUE TRUE #> 76353 43.083333 41.000000 TRUE TRUE #> 76368 -9.000000 -67.000000 TRUE TRUE #> 76369 -11.500000 131.000000 TRUE TRUE #> 76398 9.000000 42.000000 TRUE TRUE #> 76399 -20.833333 116.500000 TRUE TRUE #> 76407 37.500000 128.000000 TRUE TRUE #> 76434 33.166667 -113.166667 TRUE TRUE #> 76438 -5.500000 123.500000 TRUE TRUE #> 76439 -6.500000 143.833333 TRUE TRUE #> 76447 13.450000 144.750000 TRUE TRUE #> 76459 25.000000 77.000000 TRUE TRUE #> 76464 33.333333 -97.333333 TRUE TRUE #> source #> 35 Everett-1986 #> 37 Rising-1992;Haas-1944 #> 55 Facundes-2000 #> 73 Michelson-1988;Abbott-2000 #> 90 Bruce-1984 #> 146 Williamson-1967;Prost-1956 #> 187 Franklin-and-Franklin-1962 #> 220 Carlson-1994 #> 301 Osborne-1974;Lee-1983;Anderson-and-Maddieson-1994;Lee-1984 #> 309 Sivertsen-1956;Watkins-1984 #> 327 Gordon-1986 #> 342 Martin-1951;Kim-1986;Cho-1967;Martin-and-Lee-1969;Kim-1972;Martin-1954;Lee-1999 #> 360 Donohue-1999c;Donohue-1999a #> 384 Seiden-1960;Topping-1973 #> 402 Rood-1976 #> 407 Dench-1995 #> 429 Owens-1985 #> 462 Newman-2000;Schuh-and-Bagari-1999 #> 532 Ohala-1999;Ohala-1983;Kelkar-1968 #> 533 Hewitt-1979 #> 569 Facundes-2000 #> 577 Carlson-1994 #> 596 Kimball-1991 #> 625 Ohala-1999 #> 628 Donohue-1999a #> 637 Chang-1996;Lee-1999 #> 647 Everett-1986 #> 656 Rood-1996 #> 659 Dench-1995 #> 665 Hewitt-1979 #> 680 Witucki-1974 #> 746 Bruce-1984 #> 761 Owens-1985 #> 774 Kraft-and-Kirk-Greene-1973;Schuh-and-Yalwa-1999 #> 783 Gordon-1986 #> 803 Lee-1987 #> 854 Sohn-1994[358] #> 860 Heath-1999a[157-63] #> 867 Carlson-1994[127] #> 895 Dench-1995[136-140] #> 922 Robinson-1942[485] #> 938 Osborne-1974[37-39] #> 980 Donohue-1999a[52] #> 987 Bruce-1984[147-9] #> 1020 Owens-1985[67] #> 1028 Everett-1986[281, 297] #> 1044 Gordon-1986[16-21] #> 1117 McGregor-1977[16] #> 1150 Topping-1973[106-111] #> 1151 Hewitt-1979[101-3] #> 1164 Rood-1976[19, 184-88] #> 1172 Franklin-1971[39] #> 1173 Kimball-1991[114-123] #> 1185 Lounsbury-1953[52] #> 1188 Facundes-2000[484] #> 1197 Watkins-1984[115] #> 1265 Carlson-1994[passim] #> 1296 Heath-1999a[10] #> 1314 Watkins-1984[110ff] #> 1325 Rood-1976[19] #> 1360 Bruce-1984[131] #> 1399 Osborne-1974[24] #> 1444 Donohue-1999a[51, 113, 152] #> 1461 Owens-1985[60, 66] #> 1466 Kimball-1991[58-87] #> 1514 #> 1560 Franklin-1971[39, 40] #> 1567 Facundes-2000[146, 386];Polak-1894[7] #> 1569 Gordon-1986[16] #> 1574 Hewitt-1979[102] #> 1788 Migeod-1914[passim];Newman-2000[ passim] #> 1892 Ramstedt-1968[passim];Sohn-1999[ passim] #> 1896 Dench-1995[passim] #> 1943 Dench-1995[136-140] #> 1954 Heath-1999a[157-63] #> 1967 Sohn-1994[358] #> 1984 Carlson-1994[127] #> 2002 Robinson-1942[485] #> 2037 Owens-1985[67, 66] #> 2067 McGregor-1977[16] #> 2077 Topping-1973[106, 107] #> 2083 Franklin-1971[39, 58] #> 2122 Watkins-1984[115] #> 2134 Donohue-1999a[113] #> 2136 Facundes-2000[352] #> 2150 Kimball-1991[113] #> 2158 Rood-1976[19, 184-88] #> 2159 Bruce-1984[149] #> 2164 Osborne-1974[37] #> 2199 Everett-1986[281, 297] #> 2210 Hewitt-1979[103] #> 2217 Gordon-1986[20] #> 2286 Lounsbury-1953[59] #> 2328 Carlson-1994[127] #> 2354 Heath-1999a[157-63] #> 2370 Dench-1995[136-40] #> 2392 Sohn-1994[358] #> 2397 Robinson-1942[485] #> 2413 Facundes-2000[352] #> 2457 Franklin-1971[39] #> 2478 Donohue-1999a[113] #> 2492 Lounsbury-1953[56, 59] #> 2493 McGregor-1977[16] #> 2537 Bruce-1984[147] #> 2558 Topping-1973[107] #> 2562 Everett-1986[281, 297] #> 2578 Osborne-1974[38] #> 2591 Hewitt-1979[101] #> 2599 Owens-1985[66] #> 2656 Watkins-1984[115] #> 2664 Kimball-1991[114] #> 2669 Rood-1976[19] #> 2684 Gordon-1986[16-17] #> 2697 Franklin-1971[39, 58, 39] #> 2743 Owens-1985[67, 66] #> 2757 Heath-1999a[157-63] #> 2764 Sohn-1994[358] #> 2769 Carlson-1994[127] #> 2777 Topping-1973[106, 107] #> 2778 Dench-1995[136-140] #> 2803 McGregor-1977[16] #> 2851 Watkins-1984[115] #> 2873 Robinson-1942[485] #> 2897 Rood-1976[19, 184-88] #> 2912 Lounsbury-1953[59] #> 2937 Facundes-2000[352] #> 2956 Bruce-1984[149] #> 2965 Donohue-1999a[113] #> 2967 Everett-1986[281, 297] #> 3001 Hewitt-1979[103] #> 3036 Kimball-1991[113] #> 3049 Osborne-1974[37] #> 3061 Gordon-1986[20] #> 3102 Carlson-1994[270] #> 3105 Kimball-1991[102-3, 517] #> 3150 Hewitt-1979[105] #> 3178 #> 3213 Chang-1996[93] #> 3259 Owens-1985[99, 115, 187] #> 3317 Donohue-1999a[102, 134] #> 3330 Everett-1986[206] #> 3355 Dench-1995[217, 230, 256] #> 3364 Gordon-1986[41-2] #> 3384 Osborne-1974[39-41] #> 3395 Topping-1973[251] #> 3406 Bruce-1984[174, 187] #> 3410 Kraft-and-Kirk-Greene-1973[74-5] #> 3450 Heath-1999a[285] #> 3453 Facundes-2000[289-92, 302, 471-2, 482, 500] #> 3460 Rood-1976 #> 3467 Everett-1986[215-219] #> 3468 Franklin-1971 #> 3495 Owens-1985[188-192] #> 3498 Costenoble-1940[336] #> 3501 Sohn-1994[164-166] #> 3505 Newman-2000[485, 530] #> 3506 Kimball-1991[127-130] #> 3511 Lomtatidze-1996[144-147] #> 3513 Heath-1999a[357] #> 3515 Facundes-2000[331] #> 3530 Davison-2000[431-432] #> 3537 Osborne-1974[44-45] #> 3555 Dench-1995[152-153, 155] #> 3559 Donohue-1999a[273] #> 3590 Lounsbury-1953[74] #> 3607 Gordon-1986[66] #> 3622 Carlson-1994[416-417] #> 3626 Watkins-1984[129-130] #> 3634 Gordon-1986[82] #> 3645 Kimball-1991[138] #> 3679 Sohn-1994[301, 306] #> 3714 Robinson-1942[665-67] #> 3715 McGregor-1977[116] #> 3731 Topping-1973[256-258] #> 3747 Heath-1999a[166] #> 3748 Dench-1995[136, 152] #> 3784 Facundes-2000[522] #> 3787 Donohue-1999a[274] #> 3804 Osborne-1974[37] #> 3811 Rood-1976[117-119] #> 3813 Franklin-1971[83] #> 3842 Lounsbury-1953[45, 71, 89] #> 3843 Watkins-1984[146, 152] #> 3844 Hewitt-1979[166] #> 3921 Everett-1986[219] #> 3930 Bruce-1984[98, 308] #> 3933 Carlson-1994[401] #> 3966 Owens-1985[172-175] #> 4002 Heath-1999a[166-167] #> 4007 Watkins-1984[140-141, 149-150] #> 4040 Chung-1998[37-39];Cooreman-1988;Cooreman-1982 #> 4055 Osborne-1974[ch. 3];Lee-1987[ch. 4] #> 4057 Bruce-1984 #> 4082 Donohue-1999a[164-166] #> 4083 #> 4087 Pickering-1977 #> 4088 Dench-1995 #> 4097 Gordon-1986 #> 4107 Newman-2000 #> 4131 Kimball-1991 #> 4135 Everett-1986 #> 4150 Franklin-1971 #> 4160 Carlson-1994 #> 4167 Rood-1976 #> 4178 Owens-1985[87-88, 94-96] #> 4182 Hewitt-1979[168-9, 220-221] #> 4186 #> 4187 Abbott-1984 #> 4204 Heath-1999a #> 4232 Watkins-1984 #> 4233 Chung-1998;Cooreman-1982;Cooreman-1988 #> 4242 Rood-1976 #> 4243 Pickering-1977 #> 4249 Hewitt-1979 #> 4251 Bruce-1984 #> 4264 Owens-1985 #> 4283 Donohue-1999a #> 4284 Dench-1995 #> 4287 Osborne-1974;Lee-1987 #> 4303 Gordon-1986 #> 4305 Everett-1986 #> 4326 Abbott-1984 #> 4340 Carlson-1994 #> 4355 Franklin-1971 #> 4361 #> 4362 #> 4369 Newman-2000 #> 4376 Kimball-1991 #> 4389 Bruce-1984[154-160] #> 4392 Topping-1973 #> 4396 Franklin-1971[38-40] #> 4414 Rood-1976[40-45] #> 4430 Donohue-1999a[ch. 10] #> 4431 Gordon-1986[43-50, 85-86] #> 4436 Abbott-1984 #> 4447 Newman-2000[287, 634-636] #> 4451 Hewitt-1979[113-115] #> 4457 Osborne-1974[ch.3];Lee-1987[ch.4] #> 4461 Heath-1999a[168-169] #> 4476 Facundes-2000 #> 4484 Owens-1985 #> 4490 McGregor-1995 #> 4502 Everett-1986 #> 4511 Kimball-1991 #> 4527 #> 4544 Watkins-1984 #> 4557 Carlson-1994 #> 4562 Dench-1995 #> 4568 #> 4569 #> 4574 #> 4579 #> 4596 #> 4598 #> 4603 #> 4604 #> 4612 #> 4620 #> 4632 #> 4656 #> 4661 #> 4664 #> 4668 #> 4669 #> 4678 #> 4729 #> 4730 #> 4743 #> 4764 Ohala-1983;Kelkar-1968;Ohala-1999 #> 4794 Hewitt-1979 #> 4799 Schuh-and-Bagari-1999;Newman-2000 #> 4803 Williamson-1967;Prost-1956 #> 4843 Donohue-1999c;Donohue-1999a #> 4885 Franklin-and-Franklin-1962 #> 4894 Facundes-2000 #> 4940 Osborne-1974;Lee-1983;Lee-1984;Anderson-and-Maddieson-1994 #> 4987 Everett-1986 #> 5000 Topping-1973;Seiden-1960 #> 5031 Bruce-1984 #> 5041 Rising-1992;Haas-1944 #> 5065 Michelson-1988;Abbott-2000 #> 5078 Kim-1986;Lee-1999;Martin-1951;Martin-1954;Martin-and-Lee-1969;Cho-1967;Kim-1972 #> 5089 Gordon-1986 #> 5133 Sivertsen-1956;Watkins-1984 #> 5210 Rood-1976 #> 5226 Dench-1995 #> 5266 Owens-1985 #> 5268 Carlson-1994 #> 5311 Smirnova-1982[48] #> 5351 Everett-1986[219-220] #> 5354 Topping-1973[95-96] #> 5359 #> 5361 Dench-1995[passim] #> 5364 Hewitt-1979[170-171] #> 5395 Owens-1985[77, 145, 175-185] #> 5402 Rood-1976[21];Rood-1996[580] #> 5408 Lounsbury-1953[78-80] #> 5409 McGregor-1977[113-115] #> 5413 Donohue-1999a[passim] #> 5421 Heath-1999a[164-166, 286-289, 321-322] #> 5422 Carlson-1994[142-144, 413-416, 429-438] #> 5483 Facundes-2000[313, 315-316] #> 5514 Donohue-1999a[passim] #> 5550 McGregor-1977[113-115] #> 5551 Hewitt-1979[170-171] #> 5553 Watkins-1984[149, 153] #> 5566 Everett-1986[219-220] #> 5571 Rood-1996[580];Rood-1976[21] #> 5579 Topping-1973[95-96] #> 5592 Carlson-1994[142-144, 413-416, 429-438] #> 5593 #> 5597 Osborne-1974[38, 45] #> 5598 Franklin-1971[47-48] #> 5617 Dench-1995[passim] #> 5622 Smirnova-1982[48] #> 5640 Lounsbury-1953[78-80] #> 5675 Owens-1985[77, 145, 175-185] #> 5721 Gordon-1986[87-90, 179-180] #> 5724 Bruce-1984[153, 155, 156] #> 5731 Kimball-1991[341-342] #> 5732 Heath-1999a[164-166, 286-289, 321-322] #> 5842 Hewitt-1979[70] #> 5973 Franklin-1971[30, 47] #> 6054 Everett-1986[289, passim] #> 6125 Kimball-1991[58-87] #> 6194 Carlson-1994[passim] #> 6197 McGregor-1977[passim] #> 6256 Ramstedt-1968[passim] #> 6300 Facundes-2000[ 535];Polak-1894[passim] #> 6304 Topping-1973[265] #> 6432 Rood-1976[passim];Rood-1996[ 600] #> 6465 Migeod-1914[179];Newman-2000[357ff] #> 6511 #> 6525 Prost-1956[passim] #> 6586 Dench-1995[passim] #> 6615 Bruce-1984[passim] #> 6622 Osborne-1974[passim] #> 6810 Watkins-1984[passim] #> 6863 Gordon-1986[71] #> 6881 Owens-1985[66] #> 6900 Topping-1973[265] #> 6936 Everett-1986[250] #> 6942 Facundes-2000[534-537] #> 6972 Gordon-1986[71-73, passim] #> 6978 Dench-1995[178-179] #> 6987 Donohue-1999a[170-177, 448-449] #> 6998 Franklin-1964[112-113];Franklin-1971[47-48] #> 7063 Abbott-2000[10-20, 56];Lounsbury-1953[35-50] #> 7069 Newman-2000[357-361, 564-596] #> 7070 Heath-1999a[192-193, passim] #> 7084 Osborne-1974[43-44, 68-69] #> 7087 Tikkanen-1991[116, passim];McGregor-1977[18-19] #> 7090 Chang-1996[100-103];Song-1988[72-75] #> 7097 Kimball-1991[passim] #> 7103 Bruce-1984[131-138, 191-194] #> 7153 Rood-1976[157-163] #> 7173 Watkins-1984[176-178, 214-215] #> 7181 Hewitt-1979[70-71] #> 7183 Carlson-1994[376-385] #> 7184 Owens-1985[66-67, passim] #> 7245 Osborne-1974[43-44, 68-69] #> 7250 Bruce-1984[131-138, 191-194] #> 7254 Newman-2000[357-361, 564-596] #> 7266 Hewitt-1979[70-71] #> 7267 Rood-1976[157-163] #> 7271 Watkins-1984[176-178, 214-215] #> 7298 Heath-1999a[192-193, passim] #> 7300 Abbott-2000[10-20, 56];Lounsbury-1953[35-50] #> 7308 Tikkanen-1991[116, passim];McGregor-1977[18-19] #> 7321 Kimball-1991[passim] #> 7336 Song-1988[72-75];Chang-1996[100-103] #> 7352 Carlson-1994[376-385] #> 7355 Owens-1985[66-67, passim] #> 7387 Dench-1995[178-179] #> 7399 Everett-1986[250] #> 7421 Gordon-1986[71-73, passim] #> 7451 Franklin-1964[112-113];Franklin-1971[47-48] #> 7461 Facundes-2000[534-537] #> 7463 Topping-1973[265] #> 7472 Donohue-1999a[170-177, 448-449] #> 7493 Chang-1996[105] #> 7505 Haspelmath-1997[301];Kraft-and-Kirk-Greene-1973 #> 7514 Hewitt-1979[72] #> 7522 Heath-1999a[299-300] #> 7535 Kimball-1991[426] #> 7568 Carlson-1994[379, 385, 388] #> 7577 Watkins-1984[215] #> 7631 Owens-1985[193] #> 7658 Haspelmath-1997[285] #> 7661 Osborne-1974[57, 68-9] #> 7667 Topping-1973[268-9] #> 7706 Donohue-1999a[450] #> 7711 Carlson-1994[527] #> 7770 Heath-1999a[225];Prost-1956[150-151] #> 7798 Rood-1976[79, passim] #> 7802 McGregor-1977[5] #> 7964 Watkins-1984[211-212] #> 7974 Franklin-1971[124] #> 8084 Osborne-1974[67] #> 8144 #> 8156 Topping-1973[155] #> 8246 Kraft-and-Kraft-1973[200];Kraft-1963[(Vol. 1) 117];Newman-2000[500] #> 8313 Gordon-1986[331-335] #> 8316 Ramstedt-1968[80];Sohn-1999[269] #> 8387 Hewitt-1979[8] #> 8454 Everett-1986[passim] #> 8538 Owens-1985[204] #> 8561 Dench-1995[236] #> 8572 Bruce-1984[71-72, 188] #> 8648 Facundes-2000[540] #> 8650 Lizotte-1983 #> 8659 Rood-1976 #> 8688 McGregor-1972 #> 8743 Kimball-1991 #> 8746 Osborne-1974 #> 8777 Abraham-1941 #> 8779 Carlson-1994 #> 8793 Bruce-1984 #> 8851 Hewitt-1979 #> 8853 Owens-1985 #> 8856 Everett-1986 #> 8935 #> 8936 Topping-1973 #> 8962 Watkins-1980 #> 8998 Lounsbury-1953 #> 9014 Hewitt-1979 #> 9054 Osborne-1974 #> 9057 McGregor-1977 #> 9099 Newman-and-Schuh-1974 #> 9157 Franklin-1971 #> 9176 Carlson-1994 #> 9233 Rood-1976 #> 9238 Lee-1989 #> 9245 Owens-1985 #> 9248 Bruce-1984 #> 9292 Osborne-1974 #> 9300 #> 9330 Bruce-1984 #> 9335 Watkins-1980 #> 9357 Carlson-1994 #> 9371 Newman-and-Schuh-1974 #> 9427 Hewitt-1979 #> 9444 Lounsbury-1953 #> 9450 Lee-1989 #> 9464 Franklin-1971 #> 9512 Topping-1973 #> 9564 McGregor-1977 #> 9593 Owens-1985 #> 9609 Rood-1976 #> 9683 Franklin-and-Franklin-1962 #> 9700 Donohue-1999c;Donohue-1999a #> 9704 Facundes-2000 #> 9722 Everett-1986 #> 9769 Dench-1995 #> 9860 Anderson-and-Maddieson-1994;Osborne-1974;Lee-1983;Lee-1984 #> 9878 Topping-1973;Seiden-1960 #> 9886 Owens-1985 #> 9895 Sivertsen-1956;Watkins-1984 #> 9930 Carlson-1994 #> 9938 Lee-1999;Kim-1972;Martin-1951;Martin-and-Lee-1969;Martin-1954;Kim-1986;Cho-1967 #> 9955 Rising-1992;Haas-1944 #> 9980 Schuh-and-Bagari-1999;Newman-2000 #> 9999 Ohala-1999;Ohala-1983;Kelkar-1968 #> 10016 Gordon-1986 #> 10077 Hewitt-1979 #> 10108 Abbott-2000;Michelson-1988 #> 10128 Bruce-1984 #> 10154 Newman-and-Schuh-1974 #> 10163 Lee-1989 #> 10168 Topping-1973 #> 10172 Rood-1976 #> 10201 Carlson-1994 #> 10269 Bruce-1984 #> 10276 Lounsbury-1953 #> 10291 McGregor-1977 #> 10296 Watkins-1980 #> 10349 Hewitt-1979 #> 10385 Owens-1985 #> 10398 Franklin-1971 #> 10478 Osborne-1974 #> 10482 #> 10538 McGregor-1977 #> 10578 Ramstedt-1968 #> 10637 Abraham-1941 #> 10659 Everett-1986 #> 10719 Watkins-1984 #> 10723 Gordon-1986 #> 10724 Everett-1986 #> 10725 Kimball-1991 #> 10726 Carlson-1994 #> 10730 McGregor-1995 #> 10758 Heath-1999a #> 10759 Rood-1976 #> 10763 Bruce-1984 #> 10766 Owens-1985 #> 10767 Hewitt-1979 #> 10777 Chung-1998;Topping-1973 #> 10794 Dench-1995 #> 10806 Donohue-1999a #> 10822 Newman-2000 #> 10859 Sohn-1994 #> 10885 McGregor-1995 #> 10892 Carlson-1994 #> 10908 Newman-2000 #> 10918 Sohn-1994 #> 10928 Bruce-1984 #> 10936 Donohue-1999a #> 10942 Hewitt-1979 #> 10950 Owens-1985 #> 10967 Heath-1999a #> 10968 Chung-1998;Topping-1973 #> 10969 Everett-1986 #> 10972 Dench-1995 #> 10987 Dench-1995[256] #> 11020 Chang-1996[65, 126] #> 11049 Topping-1973[94, 267] #> 11072 Carlson-1994[370, 428, 437] #> 11088 #> 11126 Heath-1999a[326] #> 11131 Kraft-and-Kirk-Greene-1973[167] #> 11156 Gordon-1986[248-50] #> 11161 Hewitt-1979[33] #> 11206 Owens-1985[145-6, 154, 188] #> 11208 Donohue-1999a[133, 394ff.] #> 11228 Facundes-2000[321] #> 11251 Everett-1986[278, 296] #> 11287 Chang-1996[164-5] #> 11300 Carlson-1994[585-8] #> 11301 Hewitt-1987[37-9] #> 11318 Everett-1986[265] #> 11321 Donohue-1999a[409] #> 11350 Smirnova-1982[63] #> 11372 Owens-1985[146, 154] #> 11396 Dench-1995[251-5] #> 11398 Franklin-1971[97-8] #> 11401 Watkins-1984[236-40] #> 11424 Bruce-1984[289-90] #> 11435 Facundes-2000[615] #> 11439 Everett-1986[262-5] #> 11446 Owens-1985[142] #> 11456 Topping-1973[147-8, 276] #> 11469 Franklin-1971[83] #> 11482 Osborne-1974[70] #> 11499 Chang-1996[152-4] #> 11516 Smirnova-1982[79] #> 11520 Carlson-1994[550-5] #> 11526 Donohue-1999a[412-5] #> 11535 McGregor-1995[138-9, 174] #> 11565 Hewitt-1987[139] #> 11570 Gordon-1986[131-2, 266-79] #> 11586 Watkins-1984[236-40] #> 11596 Dench-1995[242] #> 11598 Bruce-1984[284, 287-8] #> 11619 Donohue-1999a[410] #> 11620 Topping-1973[148-9, 276] #> 11640 Smirnova-1982[89] #> 11648 Facundes-2000[614-5] #> 11650 Osborne-1974[70] #> 11655 Chang-1996[155-7] #> 11666 Carlson-1994[580-1] #> 11679 Owens-1985[151] #> 11690 Everett-1986[265-6] #> 11695 Franklin-1971[114-5] #> 11712 Watkins-1984[236-40] #> 11717 McGregor-1995[139-40] #> 11733 Gordon-1986[131-2, 266-79] #> 11749 Bruce-1984[280-1] #> 11751 Hewitt-1987[64-5] #> 11762 Dench-1995[244-6] #> 11792 Donohue-1999a[406-7] #> 11793 McGregor-1995[106-7] #> 11802 Franklin-1971[121] #> 11804 Watkins-1984[235] #> 11828 Carlson-1994[422-3] #> 11849 Chang-1996[145] #> 11864 Facundes-2000[603-4] #> 11866 Everett-1986[269-70] #> 11891 Hewitt-1987[234-5, 239] #> 11900 Gordon-1986[130-1] #> 11915 Dench-1995[223] #> 11920 Harrington-1928 #> 12050 Newman-1990 #> 12060 Topping-et-al-1975 #> 12168 Dench-1995 #> 12178 Rood-1996 #> 12209 Christjohn-and-Hinton-1996 #> 12231 Kimball-1994 #> 12369 Hewitt-1989d #> 12425 Osborne-1974 #> 12442 Franklin-and-Franklin-1978 #> 12531 Underwood-1954 #> 12542 Bruce-1984 #> 12564 Seiden-1960;Topping-1973 #> 12577 Rood-1976 #> 12589 Facundes-2000 #> 12615 Martin-1954;Kim-1986;Cho-1967;Kim-1972;Martin-and-Lee-1969;Martin-1951;Lee-1999 #> 12644 Donohue-1999a;Donohue-1999c #> 12699 Lee-1983;Lee-1984;Osborne-1974;Anderson-and-Maddieson-1994 #> 12744 Ohala-1983;Kelkar-1968;Ohala-1999 #> 12769 Hewitt-1979 #> 12770 Dench-1995 #> 12793 Gordon-1986 #> 12872 Schuh-and-Bagari-1999;Newman-2000 #> 12899 Michelson-1988;Abbott-2000 #> 12920 Everett-1986 #> 12946 Franklin-and-Franklin-1962 #> 12961 Watkins-1984;Sivertsen-1956 #> 12996 Carlson-1994 #> 13000 Rising-1992;Haas-1944 #> 13050 Owens-1985 #> 13069 Christjohn-and-Hinton-1996 #> 13202 Newman-1990 #> 13208 Franklin-and-Franklin-1978 #> 13275 Kimball-1994 #> 13328 Harrington-1928 #> 13355 Underwood-1954 #> 13556 Dench-1995 #> 13576 Hewitt-1989d #> 13602 Rood-1996 #> 13603 Topping-et-al-1975 #> 13707 #> 13735 Newman-2000[380] #> 13753 Kimball-1991[356] #> 13759 Donohue-1999a[109] #> 13802 Owens-1985[90] #> 13811 Heath-1999a[105] #> 13820 Topping-1973[167] #> 13821 Abbott-2000[54] #> 13824 Sohn-1994[380] #> 13841 McGregor-1995[68] #> 13868 Hewitt-1979[47] #> 13886 Bruce-1984[320] #> 13896 Carlson-1994[169] #> 13906 #> 13913 Dench-1995[190] #> 13939 #> 14030 #> 14049 #> 14158 #> 14181 #> 14258 #> 14346 #> 14384 #> 14415 Heath-1999a #> 14426 Topping-1973 #> 14431 Owens-1985 #> 14466 Lee-1989 #> 14479 Watkins-1984 #> 14487 Gordon-1986 #> 14493 Osborne-1974 #> 14500 Everett-1986 #> 14520 Carlson-1994 #> 14533 Donohue-1999a #> 14534 Kimball-1991 #> 14540 Lounsbury-1953 #> 14556 Rood-1976 #> 14557 Hewitt-1979 #> 14565 Dench-1995 #> 14568 Kraft-and-Kirk-Greene-1973 #> 14569 Bruce-1984 #> 14597 Franklin-1971 #> 14599 Facundes-2000 #> 14616 McGregor-1977 #> 14631 Topping-1973 #> 14647 Donohue-1999a #> 14648 Rood-1976 #> 14650 Bruce-1984 #> 14655 Kimball-1991 #> 14658 Lounsbury-1953 #> 14665 Heath-1999a #> 14678 Kraft-and-Kirk-Greene-1973 #> 14679 Hewitt-1979 #> 14681 Facundes-2000 #> 14683 Dench-1995 #> 14712 Gordon-1986 #> 14726 Osborne-1974 #> 14743 Owens-1985 #> 14756 Lee-1989 #> 14769 Watkins-1984 #> 14790 Everett-1986 #> 14797 Franklin-1971 #> 14827 McGregor-1977 #> 14860 Carlson-1994 #> 14865 Osborne-1974 #> 14903 Gordon-1986 #> 14906 Topping-1973 #> 14920 Heath-1999a #> 14926 Kimball-1991 #> 14931 Owens-1985 #> 14955 Lounsbury-1953 #> 14957 Facundes-2000 #> 14981 Hewitt-1979 #> 14982 Everett-1986 #> 14994 Rood-1976 #> 14999 Donohue-1999a #> 15014 Dench-1995 #> 15039 Franklin-1971 #> 15041 Bruce-1984 #> 15045 Kraft-and-Kirk-Greene-1973 #> 15047 McGregor-1977 #> 15049 Lee-1989 #> 15059 Watkins-1984 #> 15061 Carlson-1994 #> 15092 Dench-1995 #> 15108 Lee-1989 #> 15116 Osborne-1974 #> 15118 Bruce-1984 #> 15120 Owens-1985 #> 15150 Heath-1999a #> 15151 Franklin-1971 #> 15161 Kraft-and-Kirk-Greene-1973 #> 15173 Donohue-1999a #> 15174 Lounsbury-1953 #> 15204 Everett-1986 #> 15209 Rood-1976 #> 15210 McGregor-1977 #> 15237 Kimball-1991 #> 15243 Hewitt-1979 #> 15249 Facundes-2000 #> 15253 Watkins-1984 #> 15291 Topping-1973 #> 15301 Gordon-1986 #> 15306 Carlson-1994 #> 15327 Owens-1985 #> 15368 Malherbe-and-Rosenberg-1996[940] #> 15404 Malherbe-and-Rosenberg-1996[923] #> 15405 Malherbe-and-Rosenberg-1996[747] #> 15417 Malherbe-and-Rosenberg-1996[718] #> 15530 Malherbe-and-Rosenberg-1996[1485] #> 15538 Osborne-1974 #> 15619 Rood-1996 #> 15631 Franklin-1971;Franklin-1967;Franklin-and-Franklin-1978 #> 15643 Bruce-1984 #> 15644 McGregor-1977;Fairbanks-1981 #> 15668 Kimball-1991 #> 15671 Everett-and-Everett-1984;Everett-1988 #> 15710 Facundes-2000 #> 15742 Seiden-1960;Chung-1983 #> 15758 Hewitt-1979 #> 15837 Carlson-1994 #> 15894 Dench-1987;Dench-1995 #> 15976 Michelson-1988 #> 15996 Donohue-1999a #> 16024 Osborne-1974;Lee-1987 #> 16061 Gordon-1986 #> 16173 #> 16187 #> 16216 #> 16235 #> 16264 #> 16331 McGregor-1977[ 18-19, 26, 58] #> 16350 Osborne-1974[ 68] #> 16391 Facundes-2000[ 535] #> 16477 Donohue-1999a[ 176, 448] #> 16509 Heath-1999a[ 8];Prost-1956[ passim] #> 16512 Dench-1995[ 178] #> 16616 Bruce-1984[ 192-193] #> 16679 Topping-1973[ passim] #> 16780 Rood-1996[ 600];Rood-1976[ 157-158] #> 16781 Ramstedt-1968[ 104, 159];Sohn-1999[ 389] #> 16812 Hewitt-1979[ 70] #> 16826 Gordon-1986[ 71] #> 16898 Owens-1985[ 66] #> 16923 Watkins-1984[ 176-178, 214-215] #> 16943 Kraft-1963[ Vol. 1:125, 132-134, 149];Newman-2000[ 357ff];Migeod-1914[ 179];Kraft-and-Kirk-Greene-1973[ 37] #> 16953 Carlson-1994[ 376] #> 17008 #> 17283 Franklin-1971[ 30, 47] #> 17396 Kimball-1991[ 58-87] #> 17510 Everett-1986[ 289, passim] #> 17672 Watkins-1984[ 176-178, 214-215] #> 17687 Gordon-1986[ 71] #> 17711 Owens-1985[ 66] #> 17719 Migeod-1914[ 179];Kraft-1963[ Vol. 1:125, 132-134, 149];Kraft-and-Kirk-Greene-1973[ 37];Newman-2000[ 357ff] #> 17733 #> 17761 Carlson-1994[ 376] #> 17840 Dench-1995[ 178] #> 17848 McGregor-1977[ 18-19, 26, 58] #> 17885 Facundes-2000[ 535] #> 17920 Bruce-1984[ 192-193] #> 17934 Migeod-1914[ 179];Kraft-1963[ Vol. 1:125, 132-134, 149];Newman-2000[ 357ff];Kraft-and-Kirk-Greene-1973[ 37] #> 17948 Sohn-1999[ 389];Ramstedt-1968[ 104, 159] #> 17974 Heath-1999a[ 8];Prost-1956[ passim] #> 17994 Rood-1976[ 157-158];Rood-1996[ 600] #> 18000 Watkins-1984[ 176-178, 214-215] #> 18022 Carlson-1994[ 376] #> 18232 Osborne-1974[ 68] #> 18278 Topping-1973[ passim] #> 18416 Donohue-1999a[ 176, 448] #> 18514 Hewitt-1979[ 70] #> 18570 Owens-1985[ 66] #> 18627 Franklin-1971[ 30, 47] #> 18630 Gordon-1986[ 71] #> 18717 #> 18885 Kimball-1991[ 58-87] #> 18922 Everett-1986[ 289, passim] #> 19221 Carlson-1994[ 376] #> 19281 Kraft-1963[ Vol. 1:125, 132-134, 149];Migeod-1914[ 179];Kraft-and-Kirk-Greene-1973[ 37];Newman-2000[ 357ff] #> 19425 Everett-1986[ 289, passim] #> 19472 Gordon-1986[ 71] #> 19476 Watkins-1984[ 176-178, 214-215] #> 19613 Hewitt-1979[ 70] #> 19699 Kimball-1991[ 58-87] #> 19758 Donohue-1999a[ 176, 448] #> 19776 Prost-1956[ passim];Heath-1999a[ 8] #> 19779 Sohn-1999[ 389];Ramstedt-1968[ 104, 159] #> 19903 McGregor-1977[ 18-19, 26, 58] #> 19944 Franklin-1971[ 30, 47] #> 20079 Topping-1973[ passim] #> 20105 Dench-1995[ 178] #> 20152 Bruce-1984[ 192-193] #> 20178 #> 20314 Facundes-2000[ 535] #> 20379 Osborne-1974[ 68] #> 20428 Rood-1976[ 157-158];Rood-1996[ 600] #> 20436 Owens-1985[ 66] #> 20457 Owens-1985[ 66] #> 20465 Donohue-1999a[ 176, 448] #> 20641 Ramstedt-1968[ 104, 159];Sohn-1999[ 389] #> 20671 Franklin-1971[ 30, 47] #> 20673 Dench-1995[ 178] #> 20695 Watkins-1984[ 176-178, 214-215] #> 20764 Carlson-1994[ 376] #> 20798 Everett-1986[ 289, passim] #> 20957 Bruce-1984[ 192-193] #> 20980 McGregor-1977[ 18-19, 26, 58] #> 21074 Osborne-1974[ 68] #> 21138 Hewitt-1979[ 70] #> 21255 Rood-1976[ 157-158];Rood-1996[ 600] #> 21291 Kraft-and-Kirk-Greene-1973[ 37];Newman-2000[ 357ff];Kraft-1963[ Vol. 1:125, 132-134, 149];Migeod-1914[ 179] #> 21331 Kimball-1991[ 58-87] #> 21539 Topping-1973[ passim] #> 21637 Gordon-1986[ 71] #> 21657 Facundes-2000[ 535] #> 21660 Prost-1956[ passim];Heath-1999a[ 8] #> 21684 #> 21794 Donohue-1999a[ 176, 448] #> 21842 Facundes-2000[ 535] #> 21854 Rood-1996[ 600];Rood-1976[ 157-158] #> 21917 Watkins-1984[ 176-178, 214-215] #> 21928 Gordon-1986[ 71] #> 21983 Owens-1985[ 66] #> 22022 Carlson-1994[ 376] #> 22047 Kraft-and-Kirk-Greene-1973[ 37];Newman-2000[ 357ff];Kraft-1963[ Vol. 1:125, 132-134, 149];Migeod-1914[ 179] #> 22123 Dench-1995[ 178] #> 22178 Osborne-1974[ 68-69] #> 22220 Everett-1986[ 289, passim] #> 22284 Franklin-1971[ 30, 47] #> 22315 Hewitt-1979[ 70] #> 22451 Kimball-1991[ 58-87] #> 22621 #> 22785 Prost-1956[ passim] #> 22798 McGregor-1977[ 18, 58] #> 22829 #> 22856 Bruce-1984[ 192-193] #> 22936 Topping-1973[ passim] #> 22968 Watkins-1984[ 176-178, 214-215] #> 22997 Rood-1996[ 600];Rood-1976[ 157-158] #> 23024 Prost-1956[ passim] #> 23028 Osborne-1974[ 68-69] #> 23034 Bruce-1984[ 192-193] #> 23059 #> 23112 #> 23115 McGregor-1977[ 18, 58] #> 23125 Dench-1995[ 178] #> 23243 Migeod-1914[ 179];Kraft-and-Kirk-Greene-1973[ 37];Kraft-1963[ Vol. 1:125, 132-134, 149];Newman-2000[ 357ff] #> 23275 Topping-1973[ passim] #> 23342 Donohue-1999a[ 176, 448] #> 23448 Carlson-1994[ 376] #> 23649 Facundes-2000[ 535] #> 23777 Migeod-1914[ 179];Newman-2000[ 357ff];Kraft-and-Kirk-Greene-1973[ 37];Kraft-1963[ Vol. 1:125, 132-134, 149] #> 23822 Dench-1995[ 178] #> 23861 Osborne-1974[ 68-69] #> 24090 Facundes-2000[ 535] #> 24175 Migeod-1914[ 179];Kraft-1963[ Vol. 1:125, 132-134, 149];Kraft-and-Kirk-Greene-1973[ 37];Newman-2000[ 357ff] #> 24212 Facundes-2000[ 535] #> 24272 Kraft-and-Kirk-Greene-1973[ 37];Migeod-1914[ 179];Newman-2000[ 357ff];Kraft-1963[ Vol. 1:125, 132-134, 149] #> 24297 Osborne-1974[ 68-69] #> 24549 Dench-1995[ 178] #> 24640 Facundes-2000[ 535] #> 24661 Dench-1995[ 178] #> 24664 Osborne-1974[ 68-69] #> 24838 Kraft-1963[ Vol. 1:125, 132-134, 149];Migeod-1914[ 179];Newman-2000[ 357ff];Kraft-and-Kirk-Greene-1973[ 37] #> 25213 Kraft-1963[ Vol. 1:125, 132-134, 149];Newman-2000[ 357ff];Kraft-and-Kirk-Greene-1973[ 37];Migeod-1914[ 179] #> 25390 Dench-1995[ 178] #> 25447 Osborne-1974[ 68-69] #> 25475 Facundes-2000[ 535] #> 25620 Kraft-and-Kirk-Greene-1973[ 37];Migeod-1914[ 179];Kraft-1963[ Vol. 1:125, 132-134, 149];Newman-2000[ 357ff] #> 25685 Facundes-2000[ 535] #> 25704 Osborne-1974[ 68-69] #> 25874 Dench-1995[ 178] #> 26034 Rood-1996[ 600];Rood-1976[ 157-158] #> 26054 Hewitt-1979[ 70] #> 26064 Watkins-1984[ 176-178, 214-215] #> 26068 Owens-1985[ 66] #> 26084 Gordon-1986[ 71] #> 26111 Carlson-1994[ 376] #> 26167 Prost-1956[ passim] #> 26235 McGregor-1977[ 18, 58] #> 26240 #> 26253 Bruce-1984[ 192-193] #> 26366 Franklin-1971[ 30, 47] #> 26416 Kimball-1991[ 58-87] #> 26464 Everett-1986[ 289, passim] #> 26519 Rood-1976[ 157-158];Rood-1996[ 600] #> 26556 Hewitt-1979[ 70] #> 26588 Watkins-1984[ 176-178, 214-215] #> 26594 Gordon-1986[ 71] #> 26606 Owens-1985[ 66] #> 26624 Carlson-1994[ 376] #> 26651 Rood-1996[ 600];Rood-1976[ 157-158] #> 26659 Watkins-1984[ 176-178, 214-215] #> 26669 McGregor-1977[ 18, 58] #> 26720 Everett-1986[ 289, passim] #> 26726 #> 26740 Bruce-1984[ 192-193] #> 26797 Owens-1985[ 66] #> 26803 Prost-1956[ passim] #> 26813 Franklin-1971[ 30, 47] #> 26853 Kimball-1991[ 58-87] #> 26971 Hewitt-1979[ 70] #> 26996 Gordon-1986[ 71] #> 26997 Carlson-1994[ 376] #> 27066 Prost-1956[ passim] #> 27086 Carlson-1994[ 376] #> 27103 Owens-1985[ 66] #> 27114 Franklin-1971[ 30, 47] #> 27115 Hewitt-1979[ 70] #> 27231 McGregor-1977[ 18, 58] #> 27232 Kimball-1991[ 58-87] #> 27283 #> 27346 Bruce-1984[ 192-193] #> 27401 Watkins-1984[ 176-178, 214-215] #> 27407 Gordon-1986[ 71] #> 27416 Rood-1976[ 157-158];Rood-1996[ 600] #> 27431 Everett-1986[ 289, passim] #> 27471 Bruce-1984[ 192-193] #> 27481 McGregor-1977[ 18, 58] #> 27521 #> 27546 Hewitt-1979[ 70] #> 27564 Franklin-1971[ 30, 47] #> 27607 Owens-1985[ 66] #> 27625 Gordon-1986[ 71] #> 27703 Watkins-1984[ 176-178, 214-215] #> 27729 Rood-1996[ 600];Rood-1976[ 157-158] #> 27746 Kimball-1991[ 58-87] #> 27751 Everett-1986[ 289, passim] #> 27788 Carlson-1994[ 376] #> 27824 Prost-1956[ passim] #> 27941 Bruce-1984[ 192-193] #> 27942 Rood-1976[ 157-158];Rood-1996[ 600] #> 27958 Franklin-1971[ 30, 47] #> 28006 Owens-1985[ 66] #> 28050 #> 28064 Prost-1956[ passim] #> 28103 McGregor-1977[ 18, 58] #> 28215 Everett-1986[ 289, passim] #> 28226 Kimball-1991[ 58-87] #> 28247 Hewitt-1979[ 70] #> 28293 Carlson-1994[ 376] #> 28317 Gordon-1986[ 71] #> 28323 Watkins-1984[ 176-178, 214-215] #> 28388 Topping-1973[ passim] #> 28444 #> 28466 Donohue-1999a[ 176, 448] #> 28513 #> 28577 #> 28625 Donohue-1999a[ 176, 448] #> 28628 Topping-1973[ passim] #> 28694 Donohue-1999a[ 176, 448] #> 28720 #> 28764 Topping-1973[ passim] #> 28880 Donohue-1999a[ 176, 448] #> 28962 Topping-1973[ passim] #> 28966 #> 28993 Rood-1976[ 157-158];Rood-1996[ 600] #> 29047 Kimball-1991 #> 29058 Facundes-2000 #> 29100 Everett-and-Everett-1984;Everett-1988 #> 29114 Chung-1983;Seiden-1960 #> 29115 Fairbanks-1981;McGregor-1977 #> 29134 Rood-1996 #> 29183 Bruce-1984 #> 29188 Hewitt-1979 #> 29213 Franklin-1971;Franklin-and-Franklin-1978;Franklin-1967 #> 29242 Osborne-1974;Lee-1987 #> 29297 Dench-1995;Dench-1987 #> 29308 Michelson-1988 #> 29370 Gordon-1986 #> 29405 Carlson-1994 #> 29416 Donohue-1999a #> 29553 Michelson-1988 #> 29589 Gordon-1986 #> 29701 Donohue-1999a #> 29705 Osborne-1974;Lee-1987 #> 29742 Carlson-1994 #> 29759 Dench-1995;Dench-1987 #> 29785 Kimball-1991 #> 29804 Facundes-2000 #> 29836 Chung-1983;Seiden-1960 #> 29865 McGregor-1977;Fairbanks-1981 #> 29904 Bruce-1984 #> 29906 Rood-1996 #> 29926 Hewitt-1979 #> 29945 Franklin-1971;Franklin-and-Franklin-1978;Franklin-1967 #> 29987 Everett-and-Everett-1984;Everett-1988 #> 30011 Facundes-2000 #> 30030 Lee-1987;Osborne-1974 #> 30095 Dench-1987;Dench-1995 #> 30123 Donohue-1999a #> 30180 Rood-1996 #> 30192 Seiden-1960;Chung-1983 #> 30239 Michelson-1988 #> 30279 Franklin-1971;Franklin-1967;Franklin-and-Franklin-1978 #> 30299 Gordon-1986 #> 30497 Rising-1992;Haas-1944 #> 30502 Topping-1973;Seiden-1960 #> 30548 Williamson-1967;Prost-1956 #> 30582 Lee-1983;Lee-1984;Osborne-1974;Anderson-and-Maddieson-1994 #> 30610 Franklin-and-Franklin-1962 #> 30621 Martin-and-Lee-1969;Kim-1972;Lee-1999;Cho-1967;Martin-1954;Martin-1951;Kim-1986 #> 30655 Schuh-and-Bagari-1999;Newman-2000 #> 30662 Kelkar-1968;Ohala-1983;Ohala-1999 #> 30669 Bruce-1984 #> 30670 Gordon-1986 #> 30718 Carlson-1994 #> 30731 Sivertsen-1956;Watkins-1984 #> 30744 Owens-1985 #> 30756 Donohue-1999c;Donohue-1999a #> 30787 Facundes-2000 #> 30796 Hewitt-1979 #> 30821 Rood-1976 #> 30822 Michelson-1988;Abbott-2000 #> 30856 Dench-1995 #> 30877 Everett-1986 #> 30914 Everett-1986 #> 30915 Owens-1985 #> 30961 Franklin-and-Franklin-1962 #> 30968 Newman-2000;Schuh-and-Bagari-1999 #> 30974 Abbott-2000;Michelson-1988 #> 30986 Carlson-1994 #> 31014 Dench-1995 #> 31021 Williamson-1967;Prost-1956 #> 31041 Bruce-1984 #> 31062 Watkins-1984;Sivertsen-1956 #> 31091 Haas-1944;Rising-1992 #> 31161 Ohala-1999;Ohala-1983;Kelkar-1968 #> 31219 Topping-1973;Seiden-1960 #> 31243 Facundes-2000 #> 31246 Lee-1983;Lee-1984;Anderson-and-Maddieson-1994;Osborne-1974 #> 31311 Rood-1976 #> 31317 Martin-1954;Martin-and-Lee-1969;Cho-1967;Kim-1972;Kim-1986;Martin-1951;Lee-1999 #> 31329 Donohue-1999c;Donohue-1999a #> 31388 Hewitt-1979 #> 31431 Gordon-1986 #> 31489 Abbott-2000;Michelson-1988 #> 31490 Haas-1944;Rising-1992 #> 31527 Rood-1976 #> 31532 Hewitt-1979 #> 31539 Everett-1986 #> 31540 Osborne-1974;Lee-1984;Lee-1983;Anderson-and-Maddieson-1994 #> 31543 Dench-1995 #> 31564 Williamson-1967;Prost-1956 #> 31574 Gordon-1986 #> 31633 Sivertsen-1956;Watkins-1984 #> 31659 Ohala-1999;Ohala-1983;Kelkar-1968 #> 31665 Newman-2000;Schuh-and-Bagari-1999 #> 31675 Seiden-1960;Topping-1973 #> 31676 Franklin-and-Franklin-1962 #> 31716 Owens-1985 #> 31763 Facundes-2000 #> 31783 Donohue-1999c;Donohue-1999a #> 31877 Carlson-1994 #> 31907 Bruce-1984 #> 31917 Martin-and-Lee-1969;Cho-1967;Lee-1999;Martin-1951;Kim-1986;Martin-1954;Kim-1972 #> 32031 Ramstedt-1968;Song-1988;Sohn-1994;Chang-1996;Martin-and-Lee-1969 #> 32036 Kimball-1991 #> 32039 Abbott-2000;Lounsbury-1953 #> 32062 Gordon-1986 #> 32071 Dench-1995 #> 32074 Butt-1994;McGregor-1977;Sandahl-2000;Snell-and-Weightman-1989 #> 32075 Osborne-1974 #> 32077 Bruce-1984 #> 32097 Franklin-1967;Franklin-1971 #> 32105 Facundes-2000 #> 32109 Hewitt-1979;Gecadze-1979 #> 32116 Rood-1976 #> 32126 Watkins-and-McKenzie-1984 #> 32129 Heine-1981;Owens-1985 #> 32140 Everett-1986 #> 32142 Carlson-1994 #> 32148 Newman-2000;Wolff-1993;Smirnova-1982;Kraft-and-Kraft-1973 #> 32179 Donohue-1999a #> 32180 Costenoble-1940;Topping-1973;Chung-1983 #> 32181 Sandahl-2000;Butt-1994;Snell-and-Weightman-1989;McGregor-1977 #> 32205 Heine-1981;Owens-1985 #> 32213 Song-1988;Chang-1996;Ramstedt-1968;Martin-and-Lee-1969;Sohn-1994 #> 32219 Gordon-1986 #> 32223 Kimball-1991 #> 32226 Franklin-1967;Franklin-1971 #> 32227 Dench-1995 #> 32251 Rood-1976 #> 32265 Donohue-1999a #> 32286 Everett-1986 #> 32290 Facundes-2000 #> 32297 Watkins-and-McKenzie-1984 #> 32306 Lounsbury-1953;Abbott-2000 #> 32310 Osborne-1974 #> 32319 Gecadze-1979;Hewitt-1979 #> 32324 Carlson-1994 #> 32325 Topping-1973;Chung-1983;Costenoble-1940 #> 32336 Bruce-1984 #> 32341 Wolff-1993;Smirnova-1982;Newman-2000;Kraft-and-Kraft-1973 #> 32366 Rood-1976 #> 32368 Dench-1995 #> 32405 Watkins-and-McKenzie-1984 #> 32415 Everett-1986 #> 32417 Gordon-1986 #> 32422 Gecadze-1979;Hewitt-1979 #> 32430 Carlson-1994 #> 32445 Bruce-1984 #> 32447 Kimball-1991 #> 32450 Owens-1985;Heine-1981 #> 32455 Abbott-2000;Lounsbury-1953 #> 32456 Newman-2000;Smirnova-1982;Wolff-1993;Kraft-and-Kraft-1973 #> 32457 Chang-1996;Martin-and-Lee-1969;Song-1988;Sohn-1994;Ramstedt-1968 #> 32467 Facundes-2000 #> 32470 Donohue-1999a #> 32472 Snell-and-Weightman-1989;Sandahl-2000;Butt-1994;McGregor-1977 #> 32473 Chung-1983;Costenoble-1940;Topping-1973 #> 32492 Franklin-1967;Franklin-1971 #> 32499 Osborne-1974 #> 32513 Snell-and-Weightman-1989 #> 32529 Dench-1995 #> 32531 Carlson-1994 #> 32571 Osborne-1974 #> 32585 Wolff-1993;Kraft-and-Kraft-1973 #> 32586 Facundes-2000 #> 32587 Chang-1996;Song-1988 #> 32591 Topping-1973;Chung-1983 #> 32602 Franklin-1971 #> 32606 Donohue-1999a #> 32610 Owens-1985;Heine-1981 #> 32617 Everett-1986 #> 32629 Watkins-and-McKenzie-1984 #> 32632 Lounsbury-1953;Abbott-2000 #> 32633 Gordon-1986 #> 32643 Hewitt-and-Khiba-1979 #> 32644 Bruce-1984 #> 32646 Kimball-1991 #> 32647 Rood-1976 #> 32657 Bruce-1984 #> 32659 Hewitt-1979 #> 32661 Rood-1976 #> 32670 Watkins-1984 #> 32680 Osborne-1974 #> 32698 Facundes-2000 #> 32702 Abbott-2000 #> 32721 Franklin-1971 #> 32727 Chang-1996;Sohn-1994 #> 32764 Topping-1973 #> 32774 Dench-1995 #> 32791 Wolff-1993;Newman-2000 #> 32795 #> 32809 Kimball-1991 #> 32824 Gordon-1986 #> 32845 Everett-1986 #> 32849 Carlson-1994 #> 32853 Donohue-1999a #> 32861 Owens-1985 #> 32893 Facundes-2000 #> 32910 Rood-1976 #> 32913 Gordon-1986 #> 32919 Kimball-1991 #> 32935 Topping-1973 #> 32942 Hewitt-1979 #> 32950 Watkins-1984 #> 32959 Abbott-2000 #> 32961 Carlson-1994 #> 32990 Donohue-1999a #> 33020 Franklin-1971 #> 33021 Bruce-1984 #> 33025 Newman-2000;Wolff-1993 #> 33045 Dench-1995 #> 33054 #> 33055 Sohn-1994;Chang-1996 #> 33104 Osborne-1974 #> 33106 Everett-1986 #> 33117 Owens-1985 #> 33131 Rood-1976 #> 33141 Abbott-2000 #> 33144 Hewitt-1979 #> 33151 Facundes-2000 #> 33180 Franklin-1971 #> 33195 Sohn-1994;Chang-1996 #> 33201 Dench-1995 #> 33234 Everett-1986 #> 33249 Donohue-1999a #> 33267 Gordon-1986 #> 33275 Watkins-1984 #> 33278 Osborne-1974 #> 33289 Owens-1985 #> 33291 Carlson-1994 #> 33299 Bruce-1984 #> 33310 #> 33318 Newman-2000;Wolff-1993 #> 33337 Topping-1973 #> 33346 Kimball-1991 #> 33358 Carlson-1994 #> 33362 Everett-1986 #> 33374 Topping-1973 #> 33388 Dench-1995 #> 33413 Osborne-1974 #> 33429 Watkins-1984 #> 33436 Rood-1976 #> 33448 Donohue-1999a #> 33450 Chang-1996;Sohn-1994 #> 33454 Owens-1985 #> 33473 Hewitt-1979 #> 33484 #> 33538 Facundes-2000 #> 33546 Bruce-1984 #> 33569 Abbott-2000 #> 33570 Kimball-1991 #> 33573 Franklin-1971 #> 33574 Gordon-1986 #> 33584 Newman-2000;Wolff-1993 #> 33592 Heath-1999a[passim];Prost-1956[passim] #> 33682 Howeidy-1959[passim];Kraft-and-Kraft-1973[passim];Migeod-1914[passim];Kraft-1963[passim];Kraft-and-Kirk-Greene-1973[passim];Newman-2000[passim];Smirnova-1982[passim] #> 33718 Topping-1973[passim] #> 33743 McGregor-1977[passim];McGregor-1995[ passim] #> 33859 Owens-1985[passim] #> 33953 Dench-1995[passim] #> 34015 Franklin-1967[passim];Franklin-1971[passim] #> 34018 Bruce-1984[passim] #> 34028 Sohn-1999[passim];Ramstedt-1968[passim] #> 34112 Everett-1986[passim] #> 34139 Carlson-1994[passim] #> 34305 Kimball-1991[passim] #> 34311 Hewitt-1979[passim] #> 34327 Gordon-1986[passim] #> 34365 Watkins-1984[passim] #> 34371 Facundes-2000[passim];Polak-1894[passim] #> 34463 Rood-1996[passim];Rood-1976[passim] #> 34467 #> 34486 Donohue-1999a[passim] #> 34543 Osborne-1974[passim] #> 34565 Hewitt-1979[265] #> 34640 Donohue-1999a #> 34648 McGregor-1977 #> 34702 Sohn-1999 #> 34739 Fabricius-1998 #> 34742 Sapir-1949[78] #> 34763 Bruce-1984 #> 34764 #> 34769 Kimball-1991[325, 350, 352] #> 34775 #> 34821 Topping-1973 #> 34853 Dench-1995 #> 34875 Rood-1976 #> 34903 Everett-1991 #> 34922 Facundes-2000 #> 34924 Watkins-1984 #> 34925 #> 34937 Sohn-1999 #> 34941 Heath-1999a #> 34942 Facundes-2000 #> 34961 Osborne-1974 #> 34995 Franklin-1971 #> 34996 Carlson-1994 #> 34997 Donohue-1999a #> 35002 Hewitt-1979 #> 35009 Bruce-1984 #> 35015 Watkins-1984 #> 35028 Rood-1996 #> 35041 Topping-1980b #> 35045 Everett-1986 #> 35056 Owens-1985 #> 35075 McGregor-1977 #> 35086 Dench-1995 #> 35105 Newman-2000 #> 35117 Gordon-1986 #> 35124 Kimball-1991 #> 35131 Everett-1986 #> 35134 Newman-2000 #> 35139 Sohn-1999 #> 35145 Dench-1995 #> 35158 Carlson-1994 #> 35161 Heath-1999a #> 35194 Watkins-1984 #> 35204 McGregor-1977 #> 35209 Osborne-1974 #> 35225 Owens-1985 #> 35240 Franklin-1971 #> 35251 Bruce-1984 #> 35256 Topping-1980b #> 35274 Donohue-1999a #> 35282 Kimball-1991 #> 35286 Facundes-2000 #> 35297 Rood-1996 #> 35307 Gordon-1986 #> 35312 Lounsbury-1953 #> 35318 Hewitt-1979 #> 35382 Michelson-1988;Abbott-2000 #> 35414 Everett-1986 #> 35431 Martin-1951;Cho-1967;Kim-1972;Lee-1999;Martin-1954;Martin-and-Lee-1969;Kim-1986 #> 35471 Bruce-1984 #> 35492 Rood-1976 #> 35499 Williamson-1967;Prost-1956 #> 35528 Sivertsen-1956;Watkins-1984 #> 35547 Franklin-and-Franklin-1962 #> 35574 Topping-1973;Seiden-1960 #> 35647 Facundes-2000 #> 35695 Donohue-1999c;Donohue-1999a #> 35699 Carlson-1994 #> 35723 Kelkar-1968;Ohala-1999;Ohala-1983 #> 35740 Owens-1985 #> 35742 Newman-2000;Schuh-and-Bagari-1999 #> 35764 Osborne-1974;Lee-1984;Anderson-and-Maddieson-1994;Lee-1983 #> 35813 Gordon-1986 #> 35814 Haas-1944;Rising-1992 #> 35831 Dench-1995 #> 35868 Hewitt-1979 #> 35903 Donohue-1999a #> 35904 Kimball-1991 #> 35944 Gordon-1986 #> 35954 Topping-1973 #> 35958 Franklin-1971 #> 35971 Rood-1976 #> 35975 Dench-1995 #> 36019 Heath-1999a #> 36033 Bruce-1984[75, 96-98, 149] #> 36035 Newman-2000[200-215];Newman-1979 #> 36039 Facundes-2000[145-148, 222-232] #> 36048 Osborne-1974[37-40, 51-57] #> 36057 Owens-1985[87-88, 94-96] #> 36064 McGregor-1995[1-3] #> 36090 Abbott-1984 #> 36103 Hewitt-1979[101-103, 152, 157] #> 36114 Everett-1986[280-281, 283-284] #> 36129 Carlson-1994[75-116] #> 36163 Kimball-1991 #> 36186 Dench-1995 #> 36187 Donohue-1999a #> 36188 Franklin-1971 #> 36210 Rood-1976 #> 36232 Heath-1999a #> 36243 Gordon-1986 #> 36263 Topping-1973 #> 36295 Facundes-2000[145-148, 222-232] #> 36297 Owens-1985[87-88, 94-96] #> 36320 Everett-1986[280-281, 283-284] #> 36332 Hewitt-1979[101-103, 152, 157] #> 36336 Osborne-1974[37-40, 51-57] #> 36338 McGregor-1995[1-3] #> 36355 Newman-2000[200-215];Newman-1979 #> 36364 Bruce-1984[75, 96-98, 149] #> 36369 Abbott-1984 #> 36391 Carlson-1994[75-116] #> 36417 Kimball-1991 #> 36448 Donohue-1999a #> 36462 Rood-1976 #> 36480 Gordon-1986 #> 36486 Dench-1995 #> 36521 Franklin-1971 #> 36526 Topping-1973 #> 36530 Heath-1999a #> 36552 Osborne-1974[37-40, 51-57] #> 36560 Everett-1986[280-281, 283-284] #> 36564 Bruce-1984[75, 96-98, 149] #> 36568 Abbott-1984 #> 36571 Hewitt-1979[101-103, 152, 157] #> 36601 Newman-2000[200-215];Newman-1979 #> 36618 Carlson-1994[75-116] #> 36644 Facundes-2000[145-148, 222-232] #> 36650 Owens-1985[87-88, 94-96] #> 36656 McGregor-1995[1-3] #> 36786 McGregor-1977[1-2] #> 36837 Franklin-1971[53] #> 36849 Hewitt-1979[149] #> 36866 Osborne-1974[34, 52] #> 36910 Dench-1995[95] #> 36965 Carlson-1994[79ff] #> 37051 Migeod-1914[22];Newman-2000[430] #> 37075 Facundes-2000[264];Polak-1894[4] #> 37205 Watkins-1984[74, 78-84] #> 37287 Sohn-1999[300] #> 37299 Gordon-1986[29] #> 37354 #> 37500 Topping-1973[234-235] #> 37575 Kimball-1991[passim 403, 446] #> 37590 Heath-1999a[114];Prost-1956[44-45, 58] #> 37609 Bruce-1984[96] #> 37640 Owens-1985[94] #> 37663 Everett-1986[passim] #> 37666 Rood-1976[6] #> 37704 Donohue-1999a[passim] #> 37728 Everett-1986 #> 37762 Owens-1985[94] #> 37766 Kimball-1991[446-7] #> 37767 Topping-1973[234-5] #> 37772 Gordon-1986[29] #> 37812 Osborne-1974[52-3] #> 37893 Carlson-1994[75ff.] #> 37911 Bruce-1984[96] #> 37916 Facundes-2000[264-8] #> 37921 #> 37928 Kraft-and-Kirk-Greene-1973 #> 37998 Hewitt-1979[149-50] #> 38019 Everett-1986[280-282] #> 38020 Abbott-2000[55] #> 38024 Watkins-1984[100-101] #> 38025 Gordon-1986[57-59] #> 38031 Kimball-1991[417-419] #> 38036 Rood-1976[10] #> 38044 Facundes-2000[348-352] #> 38071 Donohue-1999a[113-115] #> 38074 Carlson-1994[151-155] #> 38075 Franklin-1971[34] #> 38085 Kachru-1980[26-27] #> 38090 Hewitt-1979[155-157] #> 38100 Osborne-1974[54] #> 38110 Owens-1985[98] #> 38117 Topping-1973[106-107] #> 38136 Heath-1999a[79] #> 38167 Dench-1995[100-103] #> 38209 Newman-2000[217] #> 38214 Sohn-1994[281-287] #> 38219 Bruce-1984[127] #> 38289 Sohn-1994[268-269] #> 38324 Safford-1903-1905[13-14, 304] #> 38341 Heath-1999a[127] #> 38405 Hewitt-1979[152] #> 38429 Donohue-1999a[chapter 18] #> 38445 Newman-2000[460] #> 38448 #> 38467 #> 38497 #> 38499 #> 38503 #> 38504 Facundes-2000 #> 38506 #> 38563 Topping-1973[130-132] #> 38578 Gordon-1986[28, 53, 55] #> 38584 Kimball-1991[405, 480] #> 38585 Heath-1999a[114];Prost-1956[44-45, 58] #> 38592 Hewitt-1979[56-57] #> 38630 #> 38655 Bruce-1984[81, 99, 100] #> 38708 Howeidy-1959[26-27];Newman-2000[143, 372] #> 38797 Donohue-1999a[ passim] #> 38801 Carlson-1994[79ff., 190ff] #> 38954 Polak-1894[passim] #> 38974 Osborne-1974[passim] #> 38988 Sohn-1999[265] #> 39062 McGregor-1977[3] #> 39065 Owens-1985[passim] #> 39070 Everett-1986[273] #> 39078 Franklin-1967[passim] #> 39124 Watkins-1984[passim] #> 39140 Carlson-1994[passim] #> 39144 Kraft-and-Kraft-1973[136, 383];Kraft-1963[(Vol. 1) 74, (Vol. 2) 204, (Vol. 2) 205];Newman-2000[154] #> 39280 Hewitt-1979[57, 60] #> 39380 Gordon-1986[passim] #> 39391 #> 39442 Bruce-1984[passim] #> 39454 Donohue-1999a[ passim] #> 39465 Prost-1956[passim];Heath-1999a[ 114] #> 39509 McGregor-1977[3] #> 39557 Polak-1894[passim] #> 39581 Owens-1985[passim] #> 39589 Sohn-1999[265] #> 39601 Watkins-1984[passim] #> 39603 Osborne-1974[passim] #> 39615 Everett-1986[273] #> 39656 Franklin-1967[passim] #> 39668 Everett-1986[280-283] #> 39674 Gordon-1986[56-61] #> 39676 Abbott-2000[55] #> 39678 McKenzie-and-Harrington-1948[15] #> 39700 Donohue-1999a[112-113] #> 39718 Carlson-1990[151-155] #> 39720 Heath-1999a[79] #> 39728 Wolff-1993[91-113] #> 39745 Kimball-1991[417] #> 39750 Franklin-1971[34] #> 39751 Bruce-1984[75] #> 39759 McGregor-1995[12] #> 39778 Sohn-1994[283] #> 39790 Facundes-2000[348-358];Polak-1894[5-6] #> 39797 Owens-1985[98] #> 39808 Rood-1996[606-608] #> 39818 Topping-1973[106-108] #> 39826 Dench-1995[100] #> 39850 Hewitt-1979[156-158] #> 39853 Lee-1987[101] #> 39901 #> 39944 Franklin-and-Franklin-1962 #> 39946 Abbott-2000;Michelson-1988 #> 39951 Cho-1967;Lee-1999;Martin-and-Lee-1969;Kim-1986;Martin-1951;Martin-1954;Kim-1972 #> 39954 Lee-1983;Anderson-and-Maddieson-1994;Lee-1984;Osborne-1974 #> 39981 Dench-1995 #> 40018 Facundes-2000 #> 40019 Donohue-1999a;Donohue-1999c #> 40023 Rood-1976 #> 40105 Gordon-1986 #> 40138 Prost-1956;Williamson-1967 #> 40147 Bruce-1984 #> 40203 Haas-1944;Rising-1992 #> 40218 Everett-1986 #> 40240 Topping-1973;Seiden-1960 #> 40290 Watkins-1984;Sivertsen-1956 #> 40372 Schuh-and-Bagari-1999;Newman-2000 #> 40403 Kelkar-1968;Ohala-1999;Ohala-1983 #> 40442 Owens-1985 #> 40455 Carlson-1994 #> 40469 Hewitt-1979 #> 40509 McGregor-1995[18 ff.] #> 40512 Wolff-1993[231 ff.] #> 40517 Dench-1995[136 ff.] #> 40519 Carlson-1990[126-150] #> 40521 Heath-1999a[157 ff.] #> 40538 Sohn-1994[299 ff.] #> 40550 Everett-1986[288 ff.] #> 40554 Topping-1973[82 ff.] #> 40575 Gordon-1986[15-21] #> 40606 Hewitt-1979[103-104] #> 40613 Franklin-1971[57-58] #> 40625 Kimball-1991[58 ff.] #> 40638 Donohue-1999a[112-113] #> 40642 Owens-1985[60 ff.] #> 40648 Bruce-1984[149] #> 40653 Facundes-2000[274];Polak-1894[7] #> 40670 Rood-1996[600] #> 40675 Abbott-2000[20-31] #> 40680 Lee-1987[173] #> 40702 Harrington-1928[237] #> 40705 Carlson-1994[161] #> 40707 Heath-1999a[130] #> 40731 Bruce-1984[81] #> 40756 Diessel-1999[passim] #> 40761 Facundes-2000[359] #> 40773 Hewitt-1979[163] #> 40778 Dench-1995[110-1] #> 40783 Osborne-1974[56] #> 40789 Watkins-1984[96] #> 40817 Everett-1986[285] #> 40824 Owens-1985[87] #> 40836 Rood-1976[121, 181] #> 40878 Sohn-1994[294] #> 40896 Topping-1973[112] #> 40908 Donohue-1999a[106, 137] #> 40927 Wolff-1993[119-20] #> 40936 Gordon-1986[55] #> 40937 Kimball-1991[486] #> 40940 Kimball-1991[485] #> 40948 Diessel-1999[passim] #> 40969 Donohue-1999a[144, 147] #> 40975 Dench-1995[112-121] #> 40983 #> 41005 Carlson-1994[190] #> 41016 Topping-1973[112] #> 41017 Hewitt-1979[164] #> 41020 Heath-1999a[129] #> 41036 #> 41041 Facundes-2000[359] #> 41053 Owens-1985[88-9] #> 41057 Watkins-1984[98] #> 41062 Everett-1986[285] #> 41063 Gordon-1986[55] #> 41066 Wolff-1993[120] #> 41071 Osborne-1974[56] #> 41093 Sohn-1994[294] #> 41148 Abbott-2000[55] #> 41150 Owens-1985[87, 98] #> 41153 Dench-1995[100, 109] #> 41160 Heath-1999a[79, 82] #> 41163 Newman-2000[147, 217] #> 41167 Topping-1973[106, 112] #> 41194 Franklin-1971[34, 36] #> 41217 Kimball-1991[417, 456] #> 41221 Sohn-1999[107-8] #> 41234 Donohue-1999a[113, 137] #> 41237 Rood-1976[10, 120] #> 41241 Gordon-1986[56, 58] #> 41244 McGregor-1995[12] #> 41284 Carlson-1994[155] #> 41304 Everett-1986[280, 285] #> 41326 Facundes-2000[350, 361] #> 41341 Bruce-1984[75, 81] #> 41370 Robinson-1942[477] #> 41379 Hewitt-1979[157] #> 41394 Carlson-1994[155] #> 41412 Everett-1986[280] #> 41429 Owens-1985[98, 102] #> 41442 Bruce-1984[75] #> 41453 Osborne-1974[54] #> 41464 Facundes-2000[352] #> 41482 Sohn-1994[287] #> 41526 Donohue-1999a[113] #> 41540 Rood-1976[10] #> 41582 Dench-1995[100] #> 41587 Franklin-1971[34] #> 41605 Watkins-1984[100] #> 41616 McGregor-1977[11] #> 41626 Gordon-1986[59] #> 41654 Abbott-2000[55] #> 41695 Topping-1973[110] #> 41701 Kimball-1991[417] #> 41723 Heath-1999a[79] #> 41762 Kimball-1991[417] #> 41770 Topping-1973[106-111, 144] #> 41772 Gordon-1986[21] #> 41777 Rood-1976[10, 19] #> 41793 Owens-1985[187, 137, 19, 85, 93] #> 41799 Bruce-1984[96, 148] #> 41809 Osborne-1974[54f] #> 41822 Smirnova-1982[40ff] #> 41829 Everett-1986[281f] #> 41834 Lounsbury-1953[51-61] #> 41835 Carlson-1994[151-158] #> 41839 Franklin-1971[34, 37] #> 41849 Facundes-2000[348-367, 380] #> 41851 Heath-1999a[55-61] #> 41861 Dench-1995[100f] #> 41867 Watkins-1984[100, 117] #> 41936 Donohue-1999a[113-137] #> 41942 Sharma-and-Vermeer-1963[48] #> 41948 Sohn-1999[207f 251f 407-413] #> 41952 Gordon-1986[61, 64] #> 41987 Kimball-1991[423] #> 42061 Chang-1996[37-8] #> 42075 Dench-1995[107, 109] #> 42094 Osborne-1974[56-7] #> 42107 Rood-1976[10-1, 56] #> 42126 Watkins-1984[108, 183] #> 42150 Owens-1985[192] #> 42172 Newman-2000[154];Kraft-and-Kirk-Greene-1973 #> 42217 Heath-1999a #> 42231 #> 42232 Hewitt-1979[158] #> 42258 Everett-1986[258, 260, 265, 286] #> 42284 Gordon-1986[6, 66-67] #> 42313 Chang-1996[38-39] #> 42337 Osborne-1974[54-57] #> 42343 Bruce-1984[75-76, 233] #> 42345 Davison-2000[402-08] #> 42358 #> 42368 Donohue-1999a[417-419] #> 42371 Lounsbury-1953[72ff.] #> 42372 Owens-1985[108, 187] #> 42373 #> 42383 Hewitt-1979[58-59, 77ff.] #> 42392 #> 42408 Facundes-2000 #> 42414 Carlson-1994[156ff.] #> 42415 Kimball-1991[127ff.] #> 42422 Watkins-and-McKenzie-1984[100, 140-141] #> 42434 Heath-1999a[265-267, 351ff.] #> 42452 Gordon-1986[36-49, 57-9] #> 42455 Abbott-2000[94-5] #> 42466 Watkins-1984[193, 209] #> 42471 Facundes-2000[389] #> 42487 Dench-1995[63-98] #> 42496 Rood-1976[23] #> 42531 Franklin-1971[94-5] #> 42548 Sohn-1994[106, 375] #> 42559 McGregor-1977[3] #> 42561 Osborne-1974[76] #> 42582 Bruce-1984[84] #> 42624 Carlson-1994[178] #> 42629 Heath-1999a[134-146] #> 42641 Donohue-1999a[106] #> 42678 Owens-1985[120-1] #> 42709 Everett-1986[287] #> 42732 Robinson-1942[466/482] #> 42734 Kimball-1991[495] #> 42756 Topping-1973[109, 122, 129] #> 42808 Hewitt-1979[155] #> 42822 Donohue-1999a[56-58, 63-67, 111-112, 320-332, 338-341] #> 42846 Topping-1973[106-111, 130-136, 203-207, 243-254] #> 42880 Heath-1999a[54-59, 79-81, 134-141] #> 42886 Osborne-1974[51, 76] #> 42914 Wolff-1993[91-117] #> 42917 Abbott-2000[49-50] #> 42944 Hewitt-1979[101, 161] #> 42975 Owens-1985[98-121] #> 42985 Kimball-1991[388-404, 417-430] #> 42987 Gordon-1986[36-51, 55-60] #> 42996 Chang-1996[55-57];Lee-and-Ramsey-2000[143-160, 171];Sohn-1999[326-345] #> 43002 Franklin-1971[62-69, 86-90, 94-95] #> 43021 Bruce-1984[74, 115-117, 195-207] #> 43050 Dench-1995[59-60, 63-94, 100-103, 107-112] #> 43059 Rood-1976[3-4, 10] #> 43060 Watkins-1984[100-101, 183-184, 186-192, 210-211] #> 43063 Everett-1986[205-208, 271, 286-288] #> 43074 Facundes-2000[391-396] #> 43081 Carlson-1994[151-154, 178-181, 274-278] #> 43115 Dench-1995 #> 43117 Rood-1976 #> 43142 Everett-1986 #> 43146 Gordon-1986 #> 43157 Donohue-1999c;Donohue-1999a #> 43232 Martin-1954;Martin-1951;Kim-1986;Kim-1972;Lee-1999;Cho-1967;Martin-and-Lee-1969 #> 43246 Michelson-1988;Abbott-2000 #> 43257 Osborne-1974;Anderson-and-Maddieson-1994;Lee-1983;Lee-1984 #> 43262 Rising-1992;Haas-1944 #> 43277 Facundes-2000 #> 43323 Franklin-and-Franklin-1962 #> 43327 Seiden-1960;Topping-1973 #> 43337 Bruce-1984 #> 43352 Sivertsen-1956;Watkins-1984 #> 43369 Hewitt-1979 #> 43553 Kelkar-1968;Ohala-1983;Ohala-1999 #> 43580 Owens-1985 #> 43588 Newman-2000;Schuh-and-Bagari-1999 #> 43592 Prost-1956;Williamson-1967 #> 43638 Carlson-1994 #> 43651 Wolff-1993[91-117] #> 43658 Donohue-1999a[56-58, 63-67, 111-112, 320-332, 338-341] #> 43682 Topping-1973[106-111, 130-136, 203-207, 243-254] #> 43687 Osborne-1974[51, 76] #> 43688 Abbott-2000[49-50] #> 43733 Watkins-1984[100-101, 183-184, 186-192, 210-211] #> 43734 Rood-1976[3-4, 10] #> 43738 Hewitt-1979[101, 161] #> 43739 Carlson-1994[151-154, 178-181, 274-278] #> 43760 Franklin-1971[62-69, 86-90, 94-95] #> 43761 Facundes-2000[391-396] #> 43762 Gordon-1986[36-51, 55-60] #> 43781 Bruce-1984[74, 115-117, 195-207] #> 43797 Everett-1986[205-208, 271, 286-288] #> 43798 Kimball-1991[388-404, 417-430] #> 43804 Lee-and-Ramsey-2000[143-160, 171];Sohn-1999[326-345];Chang-1996[55-57] #> 43822 Heath-1999a[54-59, 79-81, 134-141] #> 43865 Owens-1985[98-121] #> 43909 Dench-1995[59-60, 63-94, 100-103, 107-112] #> 43991 Ramstedt-1968[36] #> 44066 Watkins-1984[193-194, 210-211] #> 44108 McGregor-1977[1-2] #> 44120 Rood-1976[3] #> 44158 Owens-1985[100-102] #> 44231 #> 44248 Dench-1995[60] #> 44356 Everett-1986[271] #> 44448 Facundes-2000[391];Polak-1894[12] #> 44490 Gordon-1986[15, 28, 36] #> 44506 Kimball-1991[480, 495] #> 44513 Bruce-1984[ 183, 195-207] #> 44534 Franklin-1971[31, 94] #> 44645 Hewitt-1979[101] #> 44797 Carlson-1994[passim] #> 44822 Migeod-1914[passim] #> 44845 Donohue-1999a[passim] #> 44851 Osborne-1974[passim] #> 44928 Prost-1956[passim] #> 44969 Kraft-and-Kirk-Greene-1973 #> 45048 Sohn-1994 #> 45111 Bruce-1984[202, 206] #> 45125 Dench-1995[72, 75, 86] #> 45135 Kimball-1991[140f] #> 45153 McGregor-1977 #> 45160 Hewitt-1989a #> 45175 Everett-1986[passim] #> 45227 Owens-1985[117, 120] #> 45246 Carlson-1994[275] #> 45272 Dench-1995 #> 45279 Osborne-1974 #> 45291 Facundes-2000 #> 45302 #> 45328 Sohn-1994[380-384] #> 45371 Hewitt-1989a #> 45387 Heath-1999a #> 45416 Carlson-1994[167-171] #> 45431 McGregor-1977[61-3] #> 45432 Bruce-1984 #> 45445 Topping-1973[167-168] #> 45479 Kraft-and-Kirk-Greene-1973 #> 45491 Kimball-1991[355-63] #> 45506 Owens-1985 #> 45578 Franklin-1971 #> 45592 #> 45604 Donohue-1999a #> 45664 Carlson-1994[209-210] #> 45695 Abbi-1992[79] #> 45713 Newman-2000[509] #> 45760 #> 45774 Osborne-1974 #> 45781 Gil-1991 #> 45819 Lomtatidze-1967b[111] #> 45828 Topping-1973[168-169] #> 45846 Carlson-1994[206-211] #> 45862 Nichols-1992[295] #> 45868 #> 45917 Derbyshire-and-Payne-1990[248-249] #> 45928 Nichols-1992[299] #> 45943 Dench-1995 #> 45963 Nichols-1992[295] #> 45971 Derbyshire-and-Payne-1990[252-253];Nichols-1992[301] #> 45974 #> 46005 Nichols-1992[299] #> 46052 Nichols-1992[297] #> 46063 Nichols-1992[297] #> 46078 Nichols-1992[301] #> 46091 #> 46144 Donohue-1999a[107-111] #> 46233 #> 46249 #> 46259 Osborne-1974 #> 46269 Donohue-1999a #> 46293 Carlson-1994[686] #> 46317 Gil-1994b;Emeneau-1980 #> 46356 Rood-1976[passim] #> 46369 Hewitt-1979[56] #> 46373 Watkins-1984[101-103, 106] #> 46408 Gordon-1986[30] #> 46498 #> 46512 Polak-1894[4];Facundes-2000[146] #> 46602 Kimball-1991[432] #> 46691 Topping-1973[221] #> 46708 Dench-1995[106] #> 46833 Newman-2000[482];Migeod-1914[75-78];Kraft-and-Kirk-Greene-1973[46] #> 46995 Franklin-1967[passim] #> 47015 Prost-1956[passim] #> 47024 Carlson-1994[passim] #> 47119 Bruce-1984[passim] #> 47142 Donohue-1999a[passim] #> 47159 Osborne-1974[passim] #> 47214 Owens-1985[passim] #> 47283 Osborne-1974 #> 47288 Kimball-1991 #> 47306 Abbott-2000 #> 47342 Owens-1985 #> 47380 Everett-1986 #> 47384 Topping-1973 #> 47387 Franklin-1971 #> 47391 Facundes-2000 #> 47404 Carlson-1994 #> 47408 Newman-2000;Wolff-1993 #> 47416 Rood-1976 #> 47421 #> 47427 Gordon-1986 #> 47436 Bruce-1984 #> 47451 Chang-1996;Sohn-1994 #> 47459 Dench-1995 #> 47469 Watkins-1984 #> 47478 Hewitt-1979 #> 47495 Donohue-1999a #> 47513 Owens-1985 #> 47517 Wolff-1993;Newman-2000 #> 47547 Everett-1986 #> 47548 Bruce-1984 #> 47586 Hewitt-1979 #> 47595 Carlson-1994 #> 47641 Facundes-2000 #> 47647 Abbott-2000 #> 47651 Kimball-1991 #> 47661 #> 47663 Rood-1976 #> 47680 Watkins-1984 #> 47683 Donohue-1999a #> 47686 Dench-1995 #> 47689 Franklin-1971 #> 47698 Gordon-1986 #> 47702 Osborne-1974 #> 47722 Sohn-1994;Chang-1996 #> 47737 Topping-1973 #> 47752 #> 47754 Sohn-1994;Chang-1996 #> 47760 Bruce-1984 #> 47770 Topping-1973 #> 47776 Abbott-2000 #> 47785 Facundes-2000 #> 47793 Rood-1976 #> 47819 Wolff-1993;Newman-2000 #> 47826 Franklin-1971 #> 47832 Hewitt-1979 #> 47863 Carlson-1994 #> 47864 Everett-1986 #> 47887 Kimball-1991 #> 47902 Osborne-1974 #> 47933 Dench-1995 #> 47937 Watkins-1984 #> 47938 Owens-1985 #> 47940 Donohue-1999a #> 47968 Gordon-1986 #> 47990 Rood-1976 #> 48060 Owens-1985 #> 48077 Watkins-1984;Sivertsen-1956 #> 48093 Dench-1995 #> 48109 Ohala-1999;Ohala-1983;Kelkar-1968 #> 48144 Osborne-1974;Lee-1984;Anderson-and-Maddieson-1994;Lee-1983 #> 48154 Topping-1973;Seiden-1960 #> 48160 Williamson-1967;Prost-1956 #> 48191 Bruce-1984 #> 48193 Donohue-1999c;Donohue-1999a #> 48232 Everett-1986 #> 48278 Facundes-2000 #> 48322 Abbott-2000;Michelson-1988 #> 48342 Kim-1972;Martin-and-Lee-1969;Lee-1999;Kim-1986;Martin-1951;Martin-1954;Cho-1967 #> 48354 Carlson-1994 #> 48357 Rising-1992;Haas-1944 #> 48369 Newman-2000;Schuh-and-Bagari-1999 #> 48449 Franklin-and-Franklin-1962 #> 48459 Hewitt-1979 #> 48468 Gordon-1986 #> 48593 Dench-1995 #> 48603 #> 48624 Osborne-1974 #> 48632 #> 48644 Donohue-1999a #> 48658 #> 48664 Topping-1973 #> 48671 #> 48677 Carlson-1994 #> 48702 Carlson-1994[227] #> 48706 #> 48728 Osborne-1974 #> 48730 Topping-1973[104] #> 48733 Donohue-1999a[309] #> 48746 #> 48748 Dench-1995[52-55] #> 48805 #> 48806 #> 48817 Sohn-1994[243] #> 48822 Facundes-2000[251-254, 430, 605-613] #> 48836 #> 48842 Owens-1985[152-162] #> 48852 Gordon-1986[37, 227-234] #> 48853 #> 48879 Hewitt-1979[112] #> 48894 Donohue-1999a[ch. 12-13] #> 48900 Topping-1973[221] #> 48907 #> 48917 Shcheglov-1970[174, 253, 273] #> 48923 #> 48938 Heath-1999a[88-94] #> 48945 #> 48947 #> 48974 Rood-1976[passim] #> 48975 Dench-1995[passim] #> 48991 Hewitt-1979 #> 49003 McGregor-1977 #> 49013 Osborne-1974 #> 49021 Owens-1985 #> 49058 Watkins-1980 #> 49088 Lee-1989 #> 49106 Bruce-1984 #> 49113 Topping-1973 #> 49166 Kraft-and-Kirk-Greene-1973 #> 49277 #> 49301 Topping-1973[146] #> 49303 Donohue-1999a[426, 431] #> 49304 Everett-1986[225-7] #> 49338 Hewitt-1979[62, 65] #> 49407 Owens-1985[212, 214ff., 221] #> 49408 Bruce-1984[123, 129, 251, 264] #> 49410 Heath-1999a[147-8, 308] #> 49416 Chang-1996[57, 137] #> 49422 Gordon-1986[67, 284] #> 49426 Abdoulaye-2004[86];Newman-2000[575] #> 49467 Carlson-1994[183] #> 49496 Kimball-1991[527, 531] #> 49508 Osborne-1974[70, 72] #> 49514 Facundes-2000[429] #> 49528 Dahl-1985[173] #> 49530 Rood-1976[90] #> 49532 Owens-1985[65] #> 49543 Lee-1991[261-269] #> 49557 Watkins-1984[157-160] #> 49561 Carlson-1994[309-311] #> 49564 Everett-1986[290-291] #> 49581 Topping-1973[259] #> 49591 Bybee-et-al-1994[84, 332-333, quoting Hewitt 1979:173] #> 49594 Dahl-1985[168-169] #> 49600 Bruce-1984[133] #> 49608 Heath-1999a[194, 195] #> 49625 Donohue-1999a #> 49626 Franklin-1971 #> 49634 Gordon-1986 #> 49668 Osborne-1974 #> 49689 Kimball-1991 #> 49704 Newman-2000 #> 49728 Facundes-2000 #> 49732 Dench-1995 #> 49741 Dench-1995[144] #> 49750 Lee-1991[225] #> 49755 Dahl-1985[168-169] #> 49759 Bybee-et-al-1994[142, quoting Hewitt 1979:173] #> 49792 Osborne-1974[40] #> 49830 Owens-1985[73] #> 49833 Franklin-1971 #> 49836 Carlson-1994[329-334] #> 49856 Kimball-1991[203] #> 49864 Bruce-1984[133] #> 49882 Newman-2000 #> 49913 Donohue-1999a #> 49919 Heath-1999a #> 49923 Topping-1973 #> 49927 Dahl-1985[173] #> 49934 Gordon-1986 #> 49941 Rood-1976 #> 49943 Facundes-2000 #> 49952 Watkins-1984 #> 49954 Everett-1986 #> 49969 Bruce-1984[133-134] #> 50008 Dench-1995[148] #> 50009 Watkins-1984[170-173] #> 50011 Dahl-1985[168-169] #> 50015 Gordon-1986[109] #> 50025 Donohue-1999a[11.3] #> 50026 Kimball-1991[190] #> 50030 Facundes-2000[517] #> 50041 Lomtatidze-1967b[114] #> 50042 Osborne-1974[40] #> 50051 Dahl-1985[173] #> 50062 Rood-1976[36] #> 50068 Franklin-1971[82] #> 50075 Heath-1999a #> 50076 Topping-1973 #> 50078 Owens-1985 #> 50082 Everett-1986 #> 50097 Newman-2000 #> 50100 Carlson-1994 #> 50160 Lee-1991;Chang-1996 #> 50221 Bybee-et-al-1994[79-80, 330, quoting Hewitt 1979:175, 180-81] #> 50250 Dahl-1985[168-169] #> 50268 Franklin-1971[109] #> 50271 Owens-1985[74] #> 50287 Carlson-1994[337] #> 50292 Osborne-1974 #> 50297 Dench-1995 #> 50315 Facundes-2000 #> 50321 Lee-1991 #> 50327 Watkins-1984 #> 50343 Bruce-1984 #> 50347 Topping-1973 #> 50348 Kimball-1991 #> 50349 Newman-2000 #> 50362 Donohue-1999a #> 50383 Dahl-1985[173] #> 50386 Everett-1986 #> 50392 Rood-1976 #> 50393 Heath-1999a #> 50396 Gordon-1986 #> 50541 Donohue-1999a[153, 170-173] #> 50555 Osborne-1974[37-38, 42] #> 50559 Owens-1985[68] #> 50609 Dench-1995[139] #> 50682 McGregor-1977[16, 18, 27] #> 50705 Hewitt-1979[172-178, 180-183] #> 50738 Ramstedt-1968[61ff] #> 50755 Watkins-1984[158ff] #> 50794 Franklin-1971[30, 49-50] #> 50908 Bruce-1984[132-133] #> 50915 Everett-1986[288-289] #> 51004 Gordon-1986[23, 102, 107] #> 51024 Facundes-2000[319, 331, 516];Polak-1894[8] #> 51285 Rood-1996[591] #> 51312 #> 51371 Carlson-1994[128, 130, 145] #> 51421 Prost-1956[passim] #> 51453 Migeod-1914[passim] #> 51572 Rising-1992;Haas-1944 #> 51630 Dench-1995 #> 51671 Carlson-1994 #> 51673 Franklin-and-Franklin-1962 #> 51708 Bruce-1984 #> 51713 Lee-1984;Osborne-1974;Anderson-and-Maddieson-1994;Lee-1983 #> 51741 Gordon-1986 #> 51753 Topping-1973;Seiden-1960 #> 51770 Abbott-2000;Michelson-1988 #> 51779 Kelkar-1968;Ohala-1983;Ohala-1999 #> 51829 Everett-1986 #> 51830 Facundes-2000 #> 51934 Williamson-1967;Prost-1956 #> 51962 Martin-and-Lee-1969;Martin-1954;Cho-1967;Kim-1972;Kim-1986;Martin-1951;Lee-1999 #> 51976 Hewitt-1979 #> 51979 Watkins-1984;Sivertsen-1956 #> 52018 Donohue-1999c;Donohue-1999a #> 52063 Owens-1985 #> 52072 Schuh-and-Bagari-1999;Newman-2000 #> 52089 Rood-1976 #> 52106 Owens-1985[67] #> 52116 Heath-1999a[164-165] #> 52193 Bruce-1984[136-140] #> 52227 Gordon-1986[18-21] #> 52231 Kachru-1980[119];McGregor-1992a[39-41] #> 52264 Franklin-1967[53];Franklin-and-Franklin-1978[54] #> 52296 Spruyt-1986[47];Hewitt-and-Khiba-1979[189] #> 52313 Rood-1996[590] #> 52318 Kimball-1991[262-266] #> 52320 Osborne-1974[38-39, 43] #> 52360 Watkins-and-McKenzie-1984[167-168] #> 52399 Donohue-1999a[452-453] #> 52407 Smirnova-1982[58];Cowan-and-Schuh-1976[122];Dobronravin-and-Smirnova-2001[329-330] #> 52427 Carlson-1994[520-521] #> 52437 Facundes-2000[545-546] #> 52479 Dench-1995[149] #> 52490 Sohn-1994[42];Chang-1996[87] #> 52516 Abbott-2000[42-43] #> 52639 Everett-1986[246-249] #> 52682 Gordon-1986[184] #> 52691 #> 52696 Franklin-and-Franklin-1978[61] #> 52764 Carlson-1994[524] #> 52852 Kachru-1980[109-110];McGregor-1992a[39-41] #> 52855 Sohn-1994[43, 131];Chang-1996[101] #> 52893 Topping-1973[267-268] #> 52898 Owens-1985[67] #> 52910 Abbott-2000[20, 56] #> 52954 Dench-1995[149, 178-179] #> 52979 Hewitt-and-Khiba-1979[70, 189];Hewitt-1989a[57] #> 53009 Smirnova-1982[58];Cowan-and-Schuh-1976[166];Dobronravin-and-Smirnova-2001[345-346] #> 53010 Heath-1999a[165] #> 53034 Kimball-1991[263] #> 53044 Osborne-1974[44, 69] #> 53055 Donohue-1999a[453-454] #> 53085 Watkins-and-McKenzie-1984[214] #> 53115 Bruce-1984[140] #> 53175 Kimball-1991[262-263, 269] #> 53190 Everett-1986[247-250, 295] #> 53198 Bruce-1984[137-139] #> 53240 #> 53284 Carlson-1994[520-522, 525] #> 53298 Heath-1999a[212-213, 332-333];Prost-1956[88, 90-92] #> 53302 Cowan-and-Schuh-1976[122, 147-148] #> 53322 McGregor-1992a[39-41, 130-132];Kachru-1980[119] #> 53329 Facundes-2000[545-546] #> 53335 Watkins-1984[167-169, 183, 222] #> 53346 Hewitt-1979[176, 189, 198] #> 53353 Dench-1995[132, 139, 149, 186] #> 53381 Osborne-1974[38-39, 43] #> 53382 Owens-1985[67, 79, p.c.] #> 53401 Donohue-1999a[453-454, 456, 458] #> 53429 Gordon-1986[18, 22, 184] #> 53437 Franklin-1971[31, 53];Franklin-and-Franklin-1978[54] #> 53471 Topping-1973[264] #> 53474 Sohn-1994[40, 42, 45, 344, p.c.] #> 53527 Rood-1976[89] #> 53529 Hewitt-1979[190] #> 53545 Gordon-1986[110] #> 53571 Carlson-1994 #> 53572 Dench-1995 #> 53593 Kimball-1991 #> 53596 McGregor-1977 #> 53599 Franklin-1971 #> 53605 Everett-1986 #> 53628 Dobronravin-and-Smirnova-2001 #> 53630 Heath-1999a #> 53664 Facundes-2000 #> 53667 Abbott-2000 #> 53693 Sohn-1994 #> 53704 Owens-1985 #> 53706 Topping-1973 #> 53732 Donohue-1999a #> 53791 Osborne-1974 #> 53800 Bruce-1984 #> 53816 Watkins-1984 #> 53860 Kimball-1991[158f., 188] #> 53886 Topping-1980a[197] #> 53900 Watkins-1984[171f.] #> 53914 Kachru-1980[49-51] #> 53928 Cowan-and-Schuh-1976;Jungraithmayr-and-Mohlig-1976[302];Newman-2000 #> 53938 Heath-1999a[337] #> 53959 Hewitt-1979[194] #> 53963 Donohue-1999a[190f., 457] #> 53986 Facundes-2000[87, 606] #> 53991 Owens-1985[77f.] #> 53996 Abbott-2000[62] #> 54017 Carlson-1994[296, 372] #> 54050 Rood-1976[37] #> 54065 Wymann-1996[75, 106-108] #> 54082 #> 54084 #> 54094 Hewitt-1979[197] #> 54104 Carlson-1994[367] #> 54106 #> 54117 Owens-1985[78] #> 54149 Osborne-1974[43] #> 54156 Everett-1986[295] #> 54196 Facundes-2000[329] #> 54201 Abbott-2000[62] #> 54205 Watkins-1984[171] #> 54207 Kimball-1991[160, 195, 200-202] #> 54219 Gordon-1986[109] #> 54246 Topping-1980a[152] #> 54297 Wymann-1996[136, 145f.] #> 54302 Franklin-and-Franklin-1978[51] #> 54311 Dench-1995[179-181] #> 54359 Wymann-1996[111-117] #> 54367 Hewitt-1979[192-197] #> 54369 Kimball-1991[158-160, 200] #> 54383 Topping-1980a[91, 152] #> 54387 Abbott-2000[15f., 62] #> 54390 #> 54391 Kachru-1980[48-51] #> 54398 Heath-1999a[327] #> 54407 Owens-1985[77f.] #> 54408 Watkins-1984[220-222] #> 54422 #> 54473 Carlson-1994[296, 364-367, 372] #> 54520 Owens-1985 #> 54567 Smirnova-1982 #> 54581 Osborne-1974 #> 54611 Carlson-1994 #> 54625 Donohue-1999a #> 54653 Bruce-1984 #> 54684 Heath-1999a #> 54691 McGregor-1977 #> 54703 Topping-1973[144-5] #> 54717 Watkins-1984[173-4] #> 54727 Chang-1996 #> 54759 Hewitt-1979[196] #> 54771 Mithun-1986[102-3] #> 54775 Dench-1995[167, p.c.] #> 54790 Facundes-2000[116, ] #> 54826 Rood-1976[18, 101] #> 54897 Franklin-1971[50] #> 54911 Everett-1986[297-9] #> 54923 Gordon-1986 #> 54927 Kimball-1991[195, 203-6] #> 54988 Smirnova-1982 #> 55002 Carlson-1994 #> 55010 McGregor-1977 #> 55022 Owens-1985 #> 55042 Heath-1999a #> 55055 Osborne-1974 #> 55067 Donohue-1999a #> 55078 Bruce-1984 #> 55141 Franklin-1971[50] #> 55143 Chang-1996 #> 55159 Rood-1976[18, 101] #> 55165 Gordon-1986 #> 55176 Everett-1986[297-9] #> 55212 Kimball-1991[195, 203-6] #> 55219 Watkins-1984[173-4] #> 55225 Facundes-2000[116, ] #> 55226 Hewitt-1979[196] #> 55236 Dench-1995[167, p.c.] #> 55289 Topping-1973[144-5] #> 55306 Mithun-1986[102-3] #> 55357 #> 55372 #> 55379 Bruce-1984[146] #> 55381 Owens-1985[66, 81] #> 55382 Topping-1973[89] #> 55389 Franklin-1971[60] #> 55394 Rood-1976 #> 55397 #> 55405 Carlson-1994[242, 140] #> 55419 Harley-1944[11, 27] #> 55428 Heath-1999a #> 55431 Kimball-1991 #> 55476 Facundes-2000 #> 55494 Dench-1995 #> 55503 Gordon-1986 #> 55509 Cowan-and-Schuh-1976 #> 55511 Watkins-1984 #> 55517 Sohn-1994 #> 55519 Everett-1986 #> 55544 Osborne-1974 #> 55575 #> 55580 #> 55594 #> 55603 #> 55604 #> 55610 #> 55616 #> 55621 #> 55631 #> 55641 #> 55669 #> 55673 #> 55683 #> 55687 #> 55692 #> 55695 #> 55720 #> 55725 #> 55728 #> 55736 #> 55761 Bruce-1984 #> 55771 Facundes-2000 #> 55784 Everett-1986 #> 55816 Rood-1976 #> 55880 Ohala-1983;Kelkar-1968;Ohala-1999 #> 55940 Schuh-and-Bagari-1999;Newman-2000 #> 56036 Owens-1985 #> 56068 Lee-1983;Anderson-and-Maddieson-1994;Osborne-1974;Lee-1984 #> 56072 Williamson-1967;Prost-1956 #> 56115 Hewitt-1979 #> 56120 Carlson-1994 #> 56153 Abbott-2000;Michelson-1988 #> 56156 Donohue-1999c;Donohue-1999a #> 56161 Dench-1995 #> 56169 Topping-1973;Seiden-1960 #> 56185 Gordon-1986 #> 56199 Martin-1954;Kim-1986;Kim-1972;Cho-1967;Lee-1999;Martin-and-Lee-1969;Martin-1951 #> 56231 Franklin-and-Franklin-1962 #> 56279 Haas-1944;Rising-1992 #> 56301 Watkins-1984;Sivertsen-1956 #> 56324 Sohn-1994 #> 56342 Facundes-2000 #> 56354 Heath-1999a #> 56363 Harley-1944[11, 27] #> 56368 Cowan-and-Schuh-1976 #> 56370 #> 56376 Carlson-1994 #> 56382 Franklin-1971 #> 56384 Topping-1973 #> 56386 Everett-1986 #> 56404 #> 56427 #> 56438 Owens-1985[66] #> 56446 Dench-1995 #> 56452 Bruce-1984[146] #> 56457 Osborne-1974 #> 56474 Watkins-1984[98-99] #> 56495 Rood-1976 #> 56497 Kimball-1991[323-324] #> 56498 Gordon-1986[223] #> 56531 Franklin-1967[35, 54-55];Franklin-1971[71-72] #> 56607 Gordon-1986[15, 74] #> 56626 Carlson-1994[239] #> 56636 Owens-1985[129] #> 56759 Hewitt-1979[103] #> 56795 Heath-1999a[8];Prost-1956[57, 124] #> 56814 Everett-1986[201-203] #> 56834 Ramstedt-1968[184];Sohn-1999[293] #> 56848 Bruce-1984[188] #> 56923 Kimball-1991[513] #> 57038 McGregor-1977[4] #> 57054 Watkins-1984[205-207] #> 57088 Kraft-1963[(Vol. 1) 35, 105, 149, 165];Newman-2000[718];Migeod-1914[45];Smirnova-1982[71] #> 57121 Osborne-1974[64] #> 57322 Facundes-2000[560] #> 57479 Dench-1995[238] #> 57637 #> 57655 Donohue-1999a[51] #> 57821 #> 57843 Rood-1976[23] #> 57942 Rood-1976[ 23] #> 57999 Heath-1999a[8];Prost-1956[57, 124] #> 58042 Carlson-1994[239] #> 58049 Facundes-2000[560] #> 58127 Bruce-1984[188] #> 58178 Osborne-1974[64] #> 58297 Sohn-1999[293];Ramstedt-1968[184] #> 58322 Gordon-1986[15, 74] #> 58342 Kimball-1991[514-516] #> 58350 Everett-1986[201-203] #> 58497 Watkins-1984[205-207] #> 58723 McGregor-1977[4] #> 58741 Owens-1985[129] #> 58789 Hewitt-1979[103] #> 58792 Franklin-1967[35, 54-55];Franklin-1971[71-72] #> 58910 Newman-2000[718];Smirnova-1982[71];Migeod-1914[45];Kraft-1963[(Vol. 1) 35, 105, 149, 165] #> 59061 Dench-1995[238] #> 59160 #> 59176 Topping-1973[230-231, 238] #> 59219 Donohue-1999a[51] #> 59403 Rood-1996[599] #> 59502 Watkins-1984[205-207] #> 59519 Owens-1985[129] #> 59558 Franklin-1967[35, 54-55];Franklin-1971[71-72] #> 59559 Ramstedt-1968[184];Sohn-1999[293] #> 59744 Bruce-1984[188] #> 59817 Kimball-1991[516-517] #> 59818 Rood-1976[23];Rood-1996[599] #> 59819 Carlson-1994[239] #> 59855 Gordon-1986[15, 74] #> 59921 Hewitt-1979[103] #> 59955 Prost-1956[57, 124];Heath-1999a[8] #> 60008 McGregor-1977[4] #> 60094 Everett-1986[201-203] #> 60281 Osborne-1974[64] #> 60339 Topping-1973[237] #> 60471 Newman-2000[718];Kraft-1963[(Vol. 1) 35, 105, 149, 165];Smirnova-1982[71];Migeod-1914[45] #> 60527 Dench-1995[238] #> 60696 #> 60733 Donohue-1999a[51] #> 60908 Facundes-2000[561] #> 61120 Kraft-1963[(Vol. 1) 104, 115-117, 159-160];Newman-2000[720] #> 61144 Dench-1995[239] #> 61148 Osborne-1974[65] #> 61188 Hewitt-1979[52] #> 61204 Everett-1986[206] #> 61213 Owens-1985[129] #> 61249 Kimball-1991[513, 518] #> 61250 Carlson-1994[239] #> 61272 Heath-1999a[8];Prost-1956[124, 89] #> 61324 Rood-1996[ 599];Rood-1976[passim] #> 61332 #> 61360 Facundes-2000[468-469] #> 61440 Bruce-1984[passim 184-188] #> 61590 Gordon-1986[15, 28, 36] #> 61595 Owens-1985[103, 120, passim 128] #> 61643 Kimball-1991[480, 495] #> 61659 Bruce-1984[183, 195-207] #> 61693 Everett-1986[287] #> 61733 Hewitt-1979[103] #> 61759 Facundes-2000[391];Polak-1894[12] #> 61820 Heath-1999a[10, 134-146];Prost-1956[70, 118-119] #> 61829 Franklin-1971[31, 94] #> 61838 Sohn-1999[213] #> 61946 Carlson-1994[274ff] #> 62022 McGregor-1977[3, 30-32, 49-52] #> 62186 Donohue-1999a[106, 111, 304, 327ff] #> 62272 Newman-2000[466];Migeod-1914[44] #> 62355 Topping-1973[119] #> 62422 Osborne-1974[76] #> 62614 #> 62626 Watkins-1984[210, 193-194, 210-211] #> 62634 Rood-1976[passim] #> 62637 Dench-1995[passim] #> 62697 Carlson-1994[200] #> 62724 Hewitt-1979[116] #> 62725 Bruce-1984[99] #> 62808 Watkins-1984[107] #> 62826 Facundes-2000[156, 206, 452, 458];Polak-1894[3] #> 62871 Prost-1956[54];Heath-1999a[10, 114] #> 62955 Kimball-1991[442] #> 62960 Sohn-1999[265, 293];Ramstedt-1968[42] #> 63034 Gordon-1986[28, 31, 33] #> 63085 Franklin-1971[89] #> 63107 Osborne-1974[74] #> 63188 Everett-1986[272] #> 63297 McGregor-1977[9, passim] #> 63476 Owens-1985[86] #> 63681 Newman-2000[passim 374];Kraft-1963[(Vol. 1) 27, 54-58];Kraft-and-Kraft-1973[121];Migeod-1914[45] #> 63703 Topping-1973[222] #> 63738 Donohue-1999a[304, 338] #> 63802 #> 63873 Dench-1995[193, 197-198] #> 63934 McGregor-1977[7] #> 64012 Sohn-1999[265, 293];Ramstedt-1968[34, 105, 185] #> 64052 Bruce-1984[2, 117-118] #> 64075 Topping-1973[208-209] #> 64118 Osborne-1974[73] #> 64127 Smirnova-1982[38];Kraft-and-Kraft-1973[86, 199];Howeidy-1959[55];Migeod-1914[54, 210];Newman-2000[ 30];Kraft-1963[(Vol. 1) 27, 78-79] #> 64238 Franklin-1971[86-87] #> 64321 Gordon-1986[28, 52, 250] #> 64476 Donohue-1999a[304] #> 64508 Kimball-1991[479] #> 64525 Heath-1999a[10, 114];Prost-1956[56-57] #> 64526 Everett-1986[272-273] #> 64549 Owens-1985[86] #> 64855 Hewitt-1979[56] #> 64969 Carlson-1994[165-166, 189, 223ff] #> 65045 Dench-1995[189, 192] #> 65134 Rood-1996[599];Rood-1976[23] #> 65135 Polak-1894[4] #> 65296 Carlson-1994[189] #> 65342 Topping-1973[passim] #> 65351 Franklin-1967[31-32] #> 65357 Ramstedt-1968[35, 48, 385] #> 65401 Kimball-1991[485] #> 65422 Watkins-1984[208, 97-98] #> 65501 Hewitt-1979[57] #> 65502 Bruce-1984[99, 100] #> 65506 Osborne-1974[73] #> 65577 McGregor-1977[8] #> 65586 Dench-1995[189-190] #> 65607 Rood-1976[23] #> 65672 #> 65714 Facundes-2000[458] #> 66013 Gordon-1986[28, 56] #> 66094 Donohue-1999a[304] #> 66142 Prost-1956[62];Heath-1999a[10, 114] #> 66321 Owens-1985[86] #> 66346 Everett-1986[272-273] #> 66477 Migeod-1914[ passim];Newman-2000[370-372] #> 66545 Topping-1973[168, 208-209] #> 66552 Osborne-1974[73] #> 66687 Facundes-2000[365, 458] #> 66700 Rood-1976[23] #> 66740 Watkins-1984[208] #> 66789 Ramstedt-1968[34-35, 54, 185] #> 66795 McGregor-1977[63, passim] #> 66796 Dench-1995[189, 190, 192] #> 66815 Bruce-1984[102] #> 66962 Gordon-1986[233, 250] #> 67041 Heath-1999a[10, 114];Prost-1956[60] #> 67081 Carlson-1994[206] #> 67186 Franklin-1971[87-88] #> 67201 Kimball-1991[357-358, 485] #> 67238 Howeidy-1959[74];Newman-2000[155];Migeod-1914[64];Smirnova-1982[38] #> 67250 Owens-1985[86] #> 67387 Everett-1986[272] #> 67538 Donohue-1999a[304] #> 67608 Hewitt-1979[236-237] #> 67645 Lee-1993[91] #> 67672 Topping-1973[27] #> 67694 Dench-1995[25] #> 67698 Carlson-1994[26] #> 67734 Heath-1999a[27] #> 67765 Donohue-1999a[19] #> 67849 Sohn-1994 #> 67888 Gordon-1986[6] #> 67896 Ohala-1983[5] #> 67898 Kraft-and-Kraft-1973[24] #> 67908 Franklin-1971[11] #> 67920 Rood-1976 #> 67935 Hewitt-1979[258] #> 67963 Bruce-1984[21] #> 67981 #> 67991 Abbott-2000 #> 68075 Kimball-1991[18] #> 68089 Watkins-1984[7] #> 68093 Everett-1986 #> 68094 Owens-1985[10] #> 68135 Topping-1973[280-282] #> 68200 Facundes-2000[576] #> 68234 Newman-2000[376];Kraft-1963[(Vol. 1) 66, (Vol. 1) 71, (Vol. 2) 85] #> 68287 Prost-1956[passim 56];Heath-1999a[242] #> 68413 Rood-1976[passim] #> 68482 Owens-1985[86] #> 68516 Osborne-1974[72] #> 68715 Sohn-1999[293] #> 68742 Bruce-1984[99, 105, 109] #> 68800 Hewitt-1979[35, 56] #> 68828 #> 68834 Watkins-1984[230-233] #> 68853 McGregor-1977[46-47, 82] #> 68855 Carlson-1994[488ff] #> 68859 Dench-1995[240] #> 68869 Donohue-1999a[304, 367] #> 68891 Franklin-1971[77-78, 92, passim] #> 68908 Kimball-1991[525] #> 68912 Gordon-1986[250-265] #> 68938 Bruce-1984[ 99, 105, 109] #> 68940 Hewitt-1979[ 35, 56] #> 69054 Sohn-1999[ 293] #> 69100 Franklin-1971[ 77-78, 92] #> 69113 Kimball-1991[ 525] #> 69122 Kraft-1963[ Vol. 1:66-Vol. 1:71];Newman-2000[ 376] #> 69314 Owens-1985[ 86] #> 69335 Topping-1973[ 280-282] #> 69359 Rood-1976[ passim] #> 69452 Osborne-1974[ 72] #> 69469 Facundes-2000[ 576] #> 69682 Prost-1956[ passim, 56];Heath-1999a[ 242] #> 69730 Donohue-1999a[ 304, 367] #> 69736 Gordon-1986[ 250-265] #> 69745 Watkins-1984[ 230-233] #> 69758 #> 69771 Kimball-1991[ 525] #> 69777 Franklin-1971[ 77-78, 92] #> 69779 Gordon-1986[ 250-265] #> 69784 Donohue-1999a[ 304, 367] #> 69790 Sohn-1999[ 293] #> 69794 Carlson-1994[ 488ff] #> 69808 McGregor-1977[ 46-47, 82] #> 69809 Carlson-1994[ 488ff] #> 69827 Dench-1995[ 240] #> 69852 Owens-1985[226] #> 69880 McGregor-1977[95, 147-148] #> 69926 Hewitt-1979[53] #> 69942 #> 69980 Topping-1973[214] #> 70051 Sohn-1999[265] #> 70072 Newman-2000[33];Migeod-1914[175];Smirnova-1982[passim] #> 70158 Bruce-1984[118-121] #> 70360 Watkins-1984[211-212] #> 70377 McGregor-1977[5] #> 70402 Topping-1973[155] #> 70469 Franklin-1971[124] #> 70498 Kraft-and-Kraft-1973[200];Kraft-1963[(Vol. 1) 117];Newman-2000[500] #> 70527 Everett-1986[passim] #> 70553 Carlson-1994[527] #> 70675 Donohue-1999a[450] #> 70760 Osborne-1974[67] #> 70807 #> 70837 Prost-1956[150-151];Heath-1999a[225] #> 70919 Bruce-1984[71-72, 188] #> 70929 Owens-1985[204] #> 70939 Hewitt-1979[8] #> 70941 Gordon-1986[331-335] #> 70972 Facundes-2000[540] #> 70996 Ramstedt-1968[80];Sohn-1999[269] #> 71024 Dench-1995[236] #> 71270 Dench-1995[237] #> 71276 #> 71356 Heath-1999a[228, 237];Prost-1956[150] #> 71395 Watkins-1984[213-214] #> 71462 Facundes-2000[541] #> 71479 Everett-1986[passim] #> 71494 Hewitt-1979[21] #> 71515 McGregor-1977[4] #> 71529 Sohn-1999[265] #> 71580 Franklin-1971[passim] #> 71923 Owens-1985[207] #> 71963 Bruce-1984[189] #> 72086 Donohue-1999a[355, 451] #> 72088 Newman-2000[495-496];Kraft-and-Kirk-Greene-1973[112-117] #> 72093 Carlson-1994[533, 538, 541-543] #> 72099 Topping-1973[155] #> 72103 Osborne-1974[68] #> 72117 Topping-1973[147] #> 72134 Facundes-2000[614] #> 72135 Osborne-1974[70] #> 72137 Rood-1976[passim] #> 72176 Donohue-1999a[410, 411, 413, 415, 416] #> 72192 #> 72371 Owens-1985[142-143, 149-150] #> 72375 McGregor-1977[123-127] #> 72401 Newman-2000[556-563];Kraft-and-Kirk-Greene-1973[87];Kraft-1963[(Vol. 1) 120, (Vol. 1) 121, 242-254] #> 72404 Carlson-1994[556, 562, 564, 570, 578] #> 72477 Prost-1956[146-147] #> 72577 Franklin-1971[114] #> 72594 #> 72612 Watkins-1984[237-243] #> 72650 Hewitt-1979[231-233] #> 72738 Gordon-1986[266-277] #> 72800 #> 72846 #> 72848 #> 72883 #> 72928 #> 72941 #> 73006 #> 73149 #> 73155 #> 73162 #> 73224 #> 73307 #> 73318 #> 73393 #> 73642 #> 73773 #> 73914 #> 73992 #> 74001 #> 74052 #> 74061 #> 74083 #> 74160 #> 74189 #> 74269 #> 74577 #> 74619 #> 74683 #> 74700 #> 74717 #> 74733 #> 74745 #> 74757 #> 74767 #> 74771 #> 74815 #> 74830 #> 74932 #> 74954 #> 75007 #> 75017 #> 75179 #> 75182 #> 75254 #> 75256 #> 75267 #> 75279 #> 75359 #> 75382 #> 75441 #> 75810 #> 75884 #> 75946 #> 76104 Heath-1999a[212, 299] #> 76113 Rood-1976[44, 50] #> 76116 Hewitt-1979[98, 104] #> 76119 Topping-1973[83, 85, 108, 240] #> 76137 Facundes-2000[281, 290] #> 76146 Carlson-1994[245, 251] #> 76154 Everett-1986[302, 304] #> 76171 Newman-2000[683, 687] #> 76177 Osborne-1974[62] #> 76191 Bruce-1984[137, 208, 209] #> 76200 Watkins-1984[204-205] #> 76202 Kimball-1991[77, 147, 410] #> 76211 Sohn-1994[235, 302] #> 76245 Dench-1995[121, 210] #> 76250 Owens-1985[100, 101, 251] #> 76253 Gordon-1986[37, 43] #> 76257 Franklin-1971[62, 65] #> 76284 Donohue-1999a[51] #> 76287 #> 76302 Carlson-1994[129, 152] #> 76325 Heath-1999a[8-9] #> 76327 Newman-2000[477-478] #> 76340 Everett-1986[269, 271] #> 76353 Hewitt-1979[104] #> 76368 Facundes-2000[281, 290, 299] #> 76369 Osborne-1974[54, 101] #> 76398 Owens-1985[194-195, 201] #> 76399 Dench-1995[77, 81] #> 76407 Sohn-1994[82, 187, 282] #> 76434 Gordon-1986[59, 61] #> 76438 Donohue-1999a[119-121] #> 76439 Franklin-1971[63, 68, 71] #> 76447 Topping-1973[83, 108, 240] #> 76459 #> 76464 Rood-1976[10] #> contributors #> 35 Ian Maddieson #> 37 Ian Maddieson #> 55 Ian Maddieson #> 73 Ian Maddieson #> 90 Ian Maddieson #> 146 Ian Maddieson #> 187 Ian Maddieson #> 220 Ian Maddieson #> 301 Ian Maddieson #> 309 Ian Maddieson #> 327 Ian Maddieson #> 342 Ian Maddieson #> 360 Ian Maddieson #> 384 Ian Maddieson #> 402 Ian Maddieson #> 407 Ian Maddieson #> 429 Ian Maddieson #> 462 Ian Maddieson #> 532 Ian Maddieson #> 533 Ian Maddieson #> 569 John Hajek #> 577 John Hajek #> 596 John Hajek #> 625 John Hajek #> 628 John Hajek #> 637 John Hajek #> 647 John Hajek #> 656 John Hajek #> 659 John Hajek #> 665 John Hajek #> 680 John Hajek #> 746 John Hajek #> 761 John Hajek #> 774 John Hajek #> 783 John Hajek #> 803 John Hajek #> 854 Anna Siewierska #> 860 Anna Siewierska #> 867 Anna Siewierska #> 895 Anna Siewierska #> 922 Anna Siewierska #> 938 Anna Siewierska #> 980 Anna Siewierska #> 987 Anna Siewierska #> 1020 Anna Siewierska #> 1028 Anna Siewierska #> 1044 Anna Siewierska #> 1117 Anna Siewierska #> 1150 Anna Siewierska #> 1151 Anna Siewierska #> 1164 Anna Siewierska #> 1172 Anna Siewierska #> 1173 Anna Siewierska #> 1185 Anna Siewierska #> 1188 Anna Siewierska #> 1197 Anna Siewierska #> 1265 Matthew S. Dryer #> 1296 Matthew S. Dryer #> 1314 Matthew S. Dryer #> 1325 Matthew S. Dryer #> 1360 Matthew S. Dryer #> 1399 Matthew S. Dryer #> 1444 Matthew S. Dryer #> 1461 Matthew S. Dryer #> 1466 Matthew S. Dryer #> 1514 Matthew S. Dryer #> 1560 Matthew S. Dryer #> 1567 Matthew S. Dryer #> 1569 Matthew S. Dryer #> 1574 Matthew S. Dryer #> 1788 Matthew S. Dryer #> 1892 Matthew S. Dryer #> 1896 Matthew S. Dryer #> 1943 Anna Siewierska #> 1954 Anna Siewierska #> 1967 Anna Siewierska #> 1984 Anna Siewierska #> 2002 Anna Siewierska #> 2037 Anna Siewierska #> 2067 Anna Siewierska #> 2077 Anna Siewierska #> 2083 Anna Siewierska #> 2122 Anna Siewierska #> 2134 Anna Siewierska #> 2136 Anna Siewierska #> 2150 Anna Siewierska #> 2158 Anna Siewierska #> 2159 Anna Siewierska #> 2164 Anna Siewierska #> 2199 Anna Siewierska #> 2210 Anna Siewierska #> 2217 Anna Siewierska #> 2286 Anna Siewierska #> 2328 Anna Siewierska #> 2354 Anna Siewierska #> 2370 Anna Siewierska #> 2392 Anna Siewierska #> 2397 Anna Siewierska #> 2413 Anna Siewierska #> 2457 Anna Siewierska #> 2478 Anna Siewierska #> 2492 Anna Siewierska #> 2493 Anna Siewierska #> 2537 Anna Siewierska #> 2558 Anna Siewierska #> 2562 Anna Siewierska #> 2578 Anna Siewierska #> 2591 Anna Siewierska #> 2599 Anna Siewierska #> 2656 Anna Siewierska #> 2664 Anna Siewierska #> 2669 Anna Siewierska #> 2684 Anna Siewierska #> 2697 Anna Siewierska #> 2743 Anna Siewierska #> 2757 Anna Siewierska #> 2764 Anna Siewierska #> 2769 Anna Siewierska #> 2777 Anna Siewierska #> 2778 Anna Siewierska #> 2803 Anna Siewierska #> 2851 Anna Siewierska #> 2873 Anna Siewierska #> 2897 Anna Siewierska #> 2912 Anna Siewierska #> 2937 Anna Siewierska #> 2956 Anna Siewierska #> 2965 Anna Siewierska #> 2967 Anna Siewierska #> 3001 Anna Siewierska #> 3036 Anna Siewierska #> 3049 Anna Siewierska #> 3061 Anna Siewierska #> 3102 Martin Haspelmath #> 3105 Martin Haspelmath #> 3150 Martin Haspelmath #> 3178 Martin Haspelmath #> 3213 Martin Haspelmath #> 3259 Martin Haspelmath #> 3317 Martin Haspelmath #> 3330 Martin Haspelmath #> 3355 Martin Haspelmath #> 3364 Martin Haspelmath #> 3384 Martin Haspelmath #> 3395 Martin Haspelmath #> 3406 Martin Haspelmath #> 3410 Martin Haspelmath #> 3450 Martin Haspelmath #> 3453 Martin Haspelmath #> 3460 Elena Maslova and Vladimir P. Nedjalkov #> 3467 Elena Maslova and Vladimir P. Nedjalkov #> 3468 Elena Maslova and Vladimir P. Nedjalkov #> 3495 Elena Maslova and Vladimir P. Nedjalkov #> 3498 Elena Maslova and Vladimir P. Nedjalkov #> 3501 Elena Maslova and Vladimir P. Nedjalkov #> 3505 Elena Maslova and Vladimir P. Nedjalkov #> 3506 Elena Maslova and Vladimir P. Nedjalkov #> 3511 Elena Maslova and Vladimir P. Nedjalkov #> 3513 Elena Maslova and Vladimir P. Nedjalkov #> 3515 Elena Maslova and Vladimir P. Nedjalkov #> 3530 Elena Maslova and Vladimir P. Nedjalkov #> 3537 Elena Maslova and Vladimir P. Nedjalkov #> 3555 Elena Maslova and Vladimir P. Nedjalkov #> 3559 Elena Maslova and Vladimir P. Nedjalkov #> 3590 Elena Maslova and Vladimir P. Nedjalkov #> 3607 Elena Maslova and Vladimir P. Nedjalkov #> 3622 Elena Maslova and Vladimir P. Nedjalkov #> 3626 Elena Maslova and Vladimir P. Nedjalkov #> 3634 Anna Siewierska #> 3645 Anna Siewierska #> 3679 Anna Siewierska #> 3714 Anna Siewierska #> 3715 Anna Siewierska #> 3731 Anna Siewierska #> 3747 Anna Siewierska #> 3748 Anna Siewierska #> 3784 Anna Siewierska #> 3787 Anna Siewierska #> 3804 Anna Siewierska #> 3811 Anna Siewierska #> 3813 Anna Siewierska #> 3842 Anna Siewierska #> 3843 Anna Siewierska #> 3844 Anna Siewierska #> 3921 Anna Siewierska #> 3930 Anna Siewierska #> 3933 Anna Siewierska #> 3966 Anna Siewierska #> 4002 Maria Polinsky #> 4007 Maria Polinsky #> 4040 Maria Polinsky #> 4055 Maria Polinsky #> 4057 Maria Polinsky #> 4082 Maria Polinsky #> 4083 Maria Polinsky #> 4087 Maria Polinsky #> 4088 Maria Polinsky #> 4097 Maria Polinsky #> 4107 Maria Polinsky #> 4131 Maria Polinsky #> 4135 Maria Polinsky #> 4150 Maria Polinsky #> 4160 Maria Polinsky #> 4167 Maria Polinsky #> 4178 Maria Polinsky #> 4182 Maria Polinsky #> 4186 Maria Polinsky #> 4187 Maria Polinsky #> 4204 Maria Polinsky #> 4232 Maria Polinsky #> 4233 Maria Polinsky #> 4242 Maria Polinsky #> 4243 Maria Polinsky #> 4249 Maria Polinsky #> 4251 Maria Polinsky #> 4264 Maria Polinsky #> 4283 Maria Polinsky #> 4284 Maria Polinsky #> 4287 Maria Polinsky #> 4303 Maria Polinsky #> 4305 Maria Polinsky #> 4326 Maria Polinsky #> 4340 Maria Polinsky #> 4355 Maria Polinsky #> 4361 Maria Polinsky #> 4362 Maria Polinsky #> 4369 Maria Polinsky #> 4376 Maria Polinsky #> 4389 Maria Polinsky #> 4392 Maria Polinsky #> 4396 Maria Polinsky #> 4414 Maria Polinsky #> 4430 Maria Polinsky #> 4431 Maria Polinsky #> 4436 Maria Polinsky #> 4447 Maria Polinsky #> 4451 Maria Polinsky #> 4457 Maria Polinsky #> 4461 Maria Polinsky #> 4476 Maria Polinsky #> 4484 Maria Polinsky #> 4490 Maria Polinsky #> 4502 Maria Polinsky #> 4511 Maria Polinsky #> 4527 Maria Polinsky #> 4544 Maria Polinsky #> 4557 Maria Polinsky #> 4562 Maria Polinsky #> 4568 Maria Polinsky #> 4569 Maria Polinsky #> 4574 Maria Polinsky #> 4579 Maria Polinsky #> 4596 Maria Polinsky #> 4598 Maria Polinsky #> 4603 Maria Polinsky #> 4604 Maria Polinsky #> 4612 Maria Polinsky #> 4620 Maria Polinsky #> 4632 Maria Polinsky #> 4656 Maria Polinsky #> 4661 Maria Polinsky #> 4664 Maria Polinsky #> 4668 Maria Polinsky #> 4669 Maria Polinsky #> 4678 Maria Polinsky #> 4729 Maria Polinsky #> 4730 Maria Polinsky #> 4743 Maria Polinsky #> 4764 Ian Maddieson #> 4794 Ian Maddieson #> 4799 Ian Maddieson #> 4803 Ian Maddieson #> 4843 Ian Maddieson #> 4885 Ian Maddieson #> 4894 Ian Maddieson #> 4940 Ian Maddieson #> 4987 Ian Maddieson #> 5000 Ian Maddieson #> 5031 Ian Maddieson #> 5041 Ian Maddieson #> 5065 Ian Maddieson #> 5078 Ian Maddieson #> 5089 Ian Maddieson #> 5133 Ian Maddieson #> 5210 Ian Maddieson #> 5226 Ian Maddieson #> 5266 Ian Maddieson #> 5268 Ian Maddieson #> 5311 Jae Jung Song #> 5351 Jae Jung Song #> 5354 Jae Jung Song #> 5359 Jae Jung Song #> 5361 Jae Jung Song #> 5364 Jae Jung Song #> 5395 Jae Jung Song #> 5402 Jae Jung Song #> 5408 Jae Jung Song #> 5409 Jae Jung Song #> 5413 Jae Jung Song #> 5421 Jae Jung Song #> 5422 Jae Jung Song #> 5483 Jae Jung Song #> 5514 Jae Jung Song #> 5550 Jae Jung Song #> 5551 Jae Jung Song #> 5553 Jae Jung Song #> 5566 Jae Jung Song #> 5571 Jae Jung Song #> 5579 Jae Jung Song #> 5592 Jae Jung Song #> 5593 Jae Jung Song #> 5597 Jae Jung Song #> 5598 Jae Jung Song #> 5617 Jae Jung Song #> 5622 Jae Jung Song #> 5640 Jae Jung Song #> 5675 Jae Jung Song #> 5721 Jae Jung Song #> 5724 Jae Jung Song #> 5731 Jae Jung Song #> 5732 Jae Jung Song #> 5842 Matthew S. Dryer #> 5973 Matthew S. Dryer #> 6054 Matthew S. Dryer #> 6125 Matthew S. Dryer #> 6194 Matthew S. Dryer #> 6197 Matthew S. Dryer #> 6256 Matthew S. Dryer #> 6300 Matthew S. Dryer #> 6304 Matthew S. Dryer #> 6432 Matthew S. Dryer #> 6465 Matthew S. Dryer #> 6511 Matthew S. Dryer #> 6525 Matthew S. Dryer #> 6586 Matthew S. Dryer #> 6615 Matthew S. Dryer #> 6622 Matthew S. Dryer #> 6810 Matthew S. Dryer #> 6863 Matthew S. Dryer #> 6881 Matthew S. Dryer #> 6900 Matti Miestamo #> 6936 Matti Miestamo #> 6942 Matti Miestamo #> 6972 Matti Miestamo #> 6978 Matti Miestamo #> 6987 Matti Miestamo #> 6998 Matti Miestamo #> 7063 Matti Miestamo #> 7069 Matti Miestamo #> 7070 Matti Miestamo #> 7084 Matti Miestamo #> 7087 Matti Miestamo #> 7090 Matti Miestamo #> 7097 Matti Miestamo #> 7103 Matti Miestamo #> 7153 Matti Miestamo #> 7173 Matti Miestamo #> 7181 Matti Miestamo #> 7183 Matti Miestamo #> 7184 Matti Miestamo #> 7245 Matti Miestamo #> 7250 Matti Miestamo #> 7254 Matti Miestamo #> 7266 Matti Miestamo #> 7267 Matti Miestamo #> 7271 Matti Miestamo #> 7298 Matti Miestamo #> 7300 Matti Miestamo #> 7308 Matti Miestamo #> 7321 Matti Miestamo #> 7336 Matti Miestamo #> 7352 Matti Miestamo #> 7355 Matti Miestamo #> 7387 Matti Miestamo #> 7399 Matti Miestamo #> 7421 Matti Miestamo #> 7451 Matti Miestamo #> 7461 Matti Miestamo #> 7463 Matti Miestamo #> 7472 Matti Miestamo #> 7493 Martin Haspelmath #> 7505 Martin Haspelmath #> 7514 Martin Haspelmath #> 7522 Martin Haspelmath #> 7535 Martin Haspelmath #> 7568 Martin Haspelmath #> 7577 Martin Haspelmath #> 7631 Martin Haspelmath #> 7658 Martin Haspelmath #> 7661 Martin Haspelmath #> 7667 Martin Haspelmath #> 7706 Matthew S. Dryer #> 7711 Matthew S. Dryer #> 7770 Matthew S. Dryer #> 7798 Matthew S. Dryer #> 7802 Matthew S. Dryer #> 7964 Matthew S. Dryer #> 7974 Matthew S. Dryer #> 8084 Matthew S. Dryer #> 8144 Matthew S. Dryer #> 8156 Matthew S. Dryer #> 8246 Matthew S. Dryer #> 8313 Matthew S. Dryer #> 8316 Matthew S. Dryer #> 8387 Matthew S. Dryer #> 8454 Matthew S. Dryer #> 8538 Matthew S. Dryer #> 8561 Matthew S. Dryer #> 8572 Matthew S. Dryer #> 8648 Matthew S. Dryer #> 8650 Leon Stassen #> 8659 Leon Stassen #> 8688 Leon Stassen #> 8743 Leon Stassen #> 8746 Leon Stassen #> 8777 Leon Stassen #> 8779 Leon Stassen #> 8793 Leon Stassen #> 8851 Leon Stassen #> 8853 Leon Stassen #> 8856 Leon Stassen #> 8935 Leon Stassen #> 8936 Leon Stassen #> 8962 Leon Stassen #> 8998 Leon Stassen #> 9014 Leon Stassen #> 9054 Leon Stassen #> 9057 Leon Stassen #> 9099 Leon Stassen #> 9157 Leon Stassen #> 9176 Leon Stassen #> 9233 Leon Stassen #> 9238 Leon Stassen #> 9245 Leon Stassen #> 9248 Leon Stassen #> 9292 Leon Stassen #> 9300 Leon Stassen #> 9330 Leon Stassen #> 9335 Leon Stassen #> 9357 Leon Stassen #> 9371 Leon Stassen #> 9427 Leon Stassen #> 9444 Leon Stassen #> 9450 Leon Stassen #> 9464 Leon Stassen #> 9512 Leon Stassen #> 9564 Leon Stassen #> 9593 Leon Stassen #> 9609 Leon Stassen #> 9683 Ian Maddieson #> 9700 Ian Maddieson #> 9704 Ian Maddieson #> 9722 Ian Maddieson #> 9769 Ian Maddieson #> 9860 Ian Maddieson #> 9878 Ian Maddieson #> 9886 Ian Maddieson #> 9895 Ian Maddieson #> 9930 Ian Maddieson #> 9938 Ian Maddieson #> 9955 Ian Maddieson #> 9980 Ian Maddieson #> 9999 Ian Maddieson #> 10016 Ian Maddieson #> 10077 Ian Maddieson #> 10108 Ian Maddieson #> 10128 Ian Maddieson #> 10154 Leon Stassen #> 10163 Leon Stassen #> 10168 Leon Stassen #> 10172 Leon Stassen #> 10201 Leon Stassen #> 10269 Leon Stassen #> 10276 Leon Stassen #> 10291 Leon Stassen #> 10296 Leon Stassen #> 10349 Leon Stassen #> 10385 Leon Stassen #> 10398 Leon Stassen #> 10478 Leon Stassen #> 10482 Leon Stassen #> 10538 Leon Stassen #> 10578 Leon Stassen #> 10637 Leon Stassen #> 10659 Leon Stassen #> 10719 Bernard Comrie and Tania Kuteva #> 10723 Bernard Comrie and Tania Kuteva #> 10724 Bernard Comrie and Tania Kuteva #> 10725 Bernard Comrie and Tania Kuteva #> 10726 Bernard Comrie and Tania Kuteva #> 10730 Bernard Comrie and Tania Kuteva #> 10758 Bernard Comrie and Tania Kuteva #> 10759 Bernard Comrie and Tania Kuteva #> 10763 Bernard Comrie and Tania Kuteva #> 10766 Bernard Comrie and Tania Kuteva #> 10767 Bernard Comrie and Tania Kuteva #> 10777 Bernard Comrie and Tania Kuteva #> 10794 Bernard Comrie and Tania Kuteva #> 10806 Bernard Comrie and Tania Kuteva #> 10822 Bernard Comrie and Tania Kuteva #> 10859 Bernard Comrie and Tania Kuteva #> 10885 Bernard Comrie and Tania Kuteva #> 10892 Bernard Comrie and Tania Kuteva #> 10908 Bernard Comrie and Tania Kuteva #> 10918 Bernard Comrie and Tania Kuteva #> 10928 Bernard Comrie and Tania Kuteva #> 10936 Bernard Comrie and Tania Kuteva #> 10942 Bernard Comrie and Tania Kuteva #> 10950 Bernard Comrie and Tania Kuteva #> 10967 Bernard Comrie and Tania Kuteva #> 10968 Bernard Comrie and Tania Kuteva #> 10969 Bernard Comrie and Tania Kuteva #> 10972 Bernard Comrie and Tania Kuteva #> 10987 Martin Haspelmath #> 11020 Martin Haspelmath #> 11049 Martin Haspelmath #> 11072 Martin Haspelmath #> 11088 Martin Haspelmath #> 11126 Martin Haspelmath #> 11131 Martin Haspelmath #> 11156 Martin Haspelmath #> 11161 Martin Haspelmath #> 11206 Martin Haspelmath #> 11208 Martin Haspelmath #> 11228 Martin Haspelmath #> 11251 Martin Haspelmath #> 11287 Sonia Cristofaro #> 11300 Sonia Cristofaro #> 11301 Sonia Cristofaro #> 11318 Sonia Cristofaro #> 11321 Sonia Cristofaro #> 11350 Sonia Cristofaro #> 11372 Sonia Cristofaro #> 11396 Sonia Cristofaro #> 11398 Sonia Cristofaro #> 11401 Sonia Cristofaro #> 11424 Sonia Cristofaro #> 11435 Sonia Cristofaro #> 11439 Sonia Cristofaro #> 11446 Sonia Cristofaro #> 11456 Sonia Cristofaro #> 11469 Sonia Cristofaro #> 11482 Sonia Cristofaro #> 11499 Sonia Cristofaro #> 11516 Sonia Cristofaro #> 11520 Sonia Cristofaro #> 11526 Sonia Cristofaro #> 11535 Sonia Cristofaro #> 11565 Sonia Cristofaro #> 11570 Sonia Cristofaro #> 11586 Sonia Cristofaro #> 11596 Sonia Cristofaro #> 11598 Sonia Cristofaro #> 11619 Sonia Cristofaro #> 11620 Sonia Cristofaro #> 11640 Sonia Cristofaro #> 11648 Sonia Cristofaro #> 11650 Sonia Cristofaro #> 11655 Sonia Cristofaro #> 11666 Sonia Cristofaro #> 11679 Sonia Cristofaro #> 11690 Sonia Cristofaro #> 11695 Sonia Cristofaro #> 11712 Sonia Cristofaro #> 11717 Sonia Cristofaro #> 11733 Sonia Cristofaro #> 11749 Sonia Cristofaro #> 11751 Sonia Cristofaro #> 11762 Sonia Cristofaro #> 11792 Sonia Cristofaro #> 11793 Sonia Cristofaro #> 11802 Sonia Cristofaro #> 11804 Sonia Cristofaro #> 11828 Sonia Cristofaro #> 11849 Sonia Cristofaro #> 11864 Sonia Cristofaro #> 11866 Sonia Cristofaro #> 11891 Sonia Cristofaro #> 11900 Sonia Cristofaro #> 11915 Sonia Cristofaro #> 11920 Cecil H. Brown #> 12050 Cecil H. Brown #> 12060 Cecil H. Brown #> 12168 Cecil H. Brown #> 12178 Cecil H. Brown #> 12209 Cecil H. Brown #> 12231 Cecil H. Brown #> 12369 Cecil H. Brown #> 12425 Cecil H. Brown #> 12442 Cecil H. Brown #> 12531 Cecil H. Brown #> 12542 Ian Maddieson #> 12564 Ian Maddieson #> 12577 Ian Maddieson #> 12589 Ian Maddieson #> 12615 Ian Maddieson #> 12644 Ian Maddieson #> 12699 Ian Maddieson #> 12744 Ian Maddieson #> 12769 Ian Maddieson #> 12770 Ian Maddieson #> 12793 Ian Maddieson #> 12872 Ian Maddieson #> 12899 Ian Maddieson #> 12920 Ian Maddieson #> 12946 Ian Maddieson #> 12961 Ian Maddieson #> 12996 Ian Maddieson #> 13000 Ian Maddieson #> 13050 Ian Maddieson #> 13069 Cecil H. Brown #> 13202 Cecil H. Brown #> 13208 Cecil H. Brown #> 13275 Cecil H. Brown #> 13328 Cecil H. Brown #> 13355 Cecil H. Brown #> 13556 Cecil H. Brown #> 13576 Cecil H. Brown #> 13602 Cecil H. Brown #> 13603 Cecil H. Brown #> 13707 Cecil H. Brown #> 13735 Bernard Comrie #> 13753 Bernard Comrie #> 13759 Bernard Comrie #> 13802 Bernard Comrie #> 13811 Bernard Comrie #> 13820 Bernard Comrie #> 13821 Bernard Comrie #> 13824 Bernard Comrie #> 13841 Bernard Comrie #> 13868 Bernard Comrie #> 13886 Bernard Comrie #> 13896 Bernard Comrie #> 13906 Bernard Comrie #> 13913 Bernard Comrie #> 13939 Paul Kay and Luisa Maffi #> 14030 Paul Kay and Luisa Maffi #> 14049 Paul Kay and Luisa Maffi #> 14158 Paul Kay and Luisa Maffi #> 14181 Paul Kay and Luisa Maffi #> 14258 Paul Kay and Luisa Maffi #> 14346 Paul Kay and Luisa Maffi #> 14384 Paul Kay and Luisa Maffi #> 14415 Johanna Nichols and David A. Peterson #> 14426 Johanna Nichols and David A. Peterson #> 14431 Johanna Nichols and David A. Peterson #> 14466 Johanna Nichols and David A. Peterson #> 14479 Johanna Nichols and David A. Peterson #> 14487 Johanna Nichols and David A. Peterson #> 14493 Johanna Nichols and David A. Peterson #> 14500 Johanna Nichols and David A. Peterson #> 14520 Johanna Nichols and David A. Peterson #> 14533 Johanna Nichols and David A. Peterson #> 14534 Johanna Nichols and David A. Peterson #> 14540 Johanna Nichols and David A. Peterson #> 14556 Johanna Nichols and David A. Peterson #> 14557 Johanna Nichols and David A. Peterson #> 14565 Johanna Nichols and David A. Peterson #> 14568 Johanna Nichols and David A. Peterson #> 14569 Johanna Nichols and David A. Peterson #> 14597 Johanna Nichols and David A. Peterson #> 14599 Johanna Nichols and David A. Peterson #> 14616 Johanna Nichols and David A. Peterson #> 14631 Johanna Nichols and David A. Peterson #> 14647 Johanna Nichols and David A. Peterson #> 14648 Johanna Nichols and David A. Peterson #> 14650 Johanna Nichols and David A. Peterson #> 14655 Johanna Nichols and David A. Peterson #> 14658 Johanna Nichols and David A. Peterson #> 14665 Johanna Nichols and David A. Peterson #> 14678 Johanna Nichols and David A. Peterson #> 14679 Johanna Nichols and David A. Peterson #> 14681 Johanna Nichols and David A. Peterson #> 14683 Johanna Nichols and David A. Peterson #> 14712 Johanna Nichols and David A. Peterson #> 14726 Johanna Nichols and David A. Peterson #> 14743 Johanna Nichols and David A. Peterson #> 14756 Johanna Nichols and David A. Peterson #> 14769 Johanna Nichols and David A. Peterson #> 14790 Johanna Nichols and David A. Peterson #> 14797 Johanna Nichols and David A. Peterson #> 14827 Johanna Nichols and David A. Peterson #> 14860 Johanna Nichols and David A. Peterson #> 14865 Johanna Nichols and David A. Peterson #> 14903 Johanna Nichols and David A. Peterson #> 14906 Johanna Nichols and David A. Peterson #> 14920 Johanna Nichols and David A. Peterson #> 14926 Johanna Nichols and David A. Peterson #> 14931 Johanna Nichols and David A. Peterson #> 14955 Johanna Nichols and David A. Peterson #> 14957 Johanna Nichols and David A. Peterson #> 14981 Johanna Nichols and David A. Peterson #> 14982 Johanna Nichols and David A. Peterson #> 14994 Johanna Nichols and David A. Peterson #> 14999 Johanna Nichols and David A. Peterson #> 15014 Johanna Nichols and David A. Peterson #> 15039 Johanna Nichols and David A. Peterson #> 15041 Johanna Nichols and David A. Peterson #> 15045 Johanna Nichols and David A. Peterson #> 15047 Johanna Nichols and David A. Peterson #> 15049 Johanna Nichols and David A. Peterson #> 15059 Johanna Nichols and David A. Peterson #> 15061 Johanna Nichols and David A. Peterson #> 15092 Johanna Nichols and David A. Peterson #> 15108 Johanna Nichols and David A. Peterson #> 15116 Johanna Nichols and David A. Peterson #> 15118 Johanna Nichols and David A. Peterson #> 15120 Johanna Nichols and David A. Peterson #> 15150 Johanna Nichols and David A. Peterson #> 15151 Johanna Nichols and David A. Peterson #> 15161 Johanna Nichols and David A. Peterson #> 15173 Johanna Nichols and David A. Peterson #> 15174 Johanna Nichols and David A. Peterson #> 15204 Johanna Nichols and David A. Peterson #> 15209 Johanna Nichols and David A. Peterson #> 15210 Johanna Nichols and David A. Peterson #> 15237 Johanna Nichols and David A. Peterson #> 15243 Johanna Nichols and David A. Peterson #> 15249 Johanna Nichols and David A. Peterson #> 15253 Johanna Nichols and David A. Peterson #> 15291 Johanna Nichols and David A. Peterson #> 15301 Johanna Nichols and David A. Peterson #> 15306 Johanna Nichols and David A. Peterson #> 15327 Östen Dahl #> 15368 Östen Dahl #> 15404 Östen Dahl #> 15405 Östen Dahl #> 15417 Östen Dahl #> 15530 Östen Dahl #> 15538 Östen Dahl #> 15619 Rob Goedemans and Harry van der Hulst #> 15631 Rob Goedemans and Harry van der Hulst #> 15643 Rob Goedemans and Harry van der Hulst #> 15644 Rob Goedemans and Harry van der Hulst #> 15668 Rob Goedemans and Harry van der Hulst #> 15671 Rob Goedemans and Harry van der Hulst #> 15710 Rob Goedemans and Harry van der Hulst #> 15742 Rob Goedemans and Harry van der Hulst #> 15758 Rob Goedemans and Harry van der Hulst #> 15837 Rob Goedemans and Harry van der Hulst #> 15894 Rob Goedemans and Harry van der Hulst #> 15976 Rob Goedemans and Harry van der Hulst #> 15996 Rob Goedemans and Harry van der Hulst #> 16024 Rob Goedemans and Harry van der Hulst #> 16061 Rob Goedemans and Harry van der Hulst #> 16173 David Gil #> 16187 David Gil #> 16216 David Gil #> 16235 David Gil #> 16264 David Gil #> 16331 Matthew S. Dryer #> 16350 Matthew S. Dryer #> 16391 Matthew S. Dryer #> 16477 Matthew S. Dryer #> 16509 Matthew S. Dryer #> 16512 Matthew S. Dryer #> 16616 Matthew S. Dryer #> 16679 Matthew S. Dryer #> 16780 Matthew S. Dryer #> 16781 Matthew S. Dryer #> 16812 Matthew S. Dryer #> 16826 Matthew S. Dryer #> 16898 Matthew S. Dryer #> 16923 Matthew S. Dryer #> 16943 Matthew S. Dryer #> 16953 Matthew S. Dryer #> 17008 Matthew S. Dryer #> 17283 Matthew S. Dryer #> 17396 Matthew S. Dryer #> 17510 Matthew S. Dryer #> 17672 Matthew S. Dryer #> 17687 Matthew S. Dryer #> 17711 Matthew S. Dryer #> 17719 Matthew S. Dryer #> 17733 Matthew S. Dryer #> 17761 Matthew S. Dryer #> 17840 Matthew S. Dryer #> 17848 Matthew S. Dryer #> 17885 Matthew S. Dryer #> 17920 Matthew S. Dryer #> 17934 Matthew S. Dryer #> 17948 Matthew S. Dryer #> 17974 Matthew S. Dryer #> 17994 Matthew S. Dryer #> 18000 Matthew S. Dryer #> 18022 Matthew S. Dryer #> 18232 Matthew S. Dryer #> 18278 Matthew S. Dryer #> 18416 Matthew S. Dryer #> 18514 Matthew S. Dryer #> 18570 Matthew S. Dryer #> 18627 Matthew S. Dryer #> 18630 Matthew S. Dryer #> 18717 Matthew S. Dryer #> 18885 Matthew S. Dryer #> 18922 Matthew S. Dryer #> 19221 Matthew S. Dryer #> 19281 Matthew S. Dryer #> 19425 Matthew S. Dryer #> 19472 Matthew S. Dryer #> 19476 Matthew S. Dryer #> 19613 Matthew S. Dryer #> 19699 Matthew S. Dryer #> 19758 Matthew S. Dryer #> 19776 Matthew S. Dryer #> 19779 Matthew S. Dryer #> 19903 Matthew S. Dryer #> 19944 Matthew S. Dryer #> 20079 Matthew S. Dryer #> 20105 Matthew S. Dryer #> 20152 Matthew S. Dryer #> 20178 Matthew S. Dryer #> 20314 Matthew S. Dryer #> 20379 Matthew S. Dryer #> 20428 Matthew S. Dryer #> 20436 Matthew S. Dryer #> 20457 Matthew S. Dryer #> 20465 Matthew S. Dryer #> 20641 Matthew S. Dryer #> 20671 Matthew S. Dryer #> 20673 Matthew S. Dryer #> 20695 Matthew S. Dryer #> 20764 Matthew S. Dryer #> 20798 Matthew S. Dryer #> 20957 Matthew S. Dryer #> 20980 Matthew S. Dryer #> 21074 Matthew S. Dryer #> 21138 Matthew S. Dryer #> 21255 Matthew S. Dryer #> 21291 Matthew S. Dryer #> 21331 Matthew S. Dryer #> 21539 Matthew S. Dryer #> 21637 Matthew S. Dryer #> 21657 Matthew S. Dryer #> 21660 Matthew S. Dryer #> 21684 Matthew S. Dryer #> 21794 Matthew S. Dryer #> 21842 Matthew S. Dryer #> 21854 Matthew S. Dryer #> 21917 Matthew S. Dryer #> 21928 Matthew S. Dryer #> 21983 Matthew S. Dryer #> 22022 Matthew S. Dryer #> 22047 Matthew S. Dryer #> 22123 Matthew S. Dryer #> 22178 Matthew S. Dryer #> 22220 Matthew S. Dryer #> 22284 Matthew S. Dryer #> 22315 Matthew S. Dryer #> 22451 Matthew S. Dryer #> 22621 Matthew S. Dryer #> 22785 Matthew S. Dryer #> 22798 Matthew S. Dryer #> 22829 Matthew S. Dryer #> 22856 Matthew S. Dryer #> 22936 Matthew S. Dryer #> 22968 Matthew S. Dryer #> 22997 Matthew S. Dryer #> 23024 Matthew S. Dryer #> 23028 Matthew S. Dryer #> 23034 Matthew S. Dryer #> 23059 Matthew S. Dryer #> 23112 Matthew S. Dryer #> 23115 Matthew S. Dryer #> 23125 Matthew S. Dryer #> 23243 Matthew S. Dryer #> 23275 Matthew S. Dryer #> 23342 Matthew S. Dryer #> 23448 Matthew S. Dryer #> 23649 Matthew S. Dryer #> 23777 Matthew S. Dryer #> 23822 Matthew S. Dryer #> 23861 Matthew S. Dryer #> 24090 Matthew S. Dryer #> 24175 Matthew S. Dryer #> 24212 Matthew S. Dryer #> 24272 Matthew S. Dryer #> 24297 Matthew S. Dryer #> 24549 Matthew S. Dryer #> 24640 Matthew S. Dryer #> 24661 Matthew S. Dryer #> 24664 Matthew S. Dryer #> 24838 Matthew S. Dryer #> 25213 Matthew S. Dryer #> 25390 Matthew S. Dryer #> 25447 Matthew S. Dryer #> 25475 Matthew S. Dryer #> 25620 Matthew S. Dryer #> 25685 Matthew S. Dryer #> 25704 Matthew S. Dryer #> 25874 Matthew S. Dryer #> 26034 Matthew S. Dryer #> 26054 Matthew S. Dryer #> 26064 Matthew S. Dryer #> 26068 Matthew S. Dryer #> 26084 Matthew S. Dryer #> 26111 Matthew S. Dryer #> 26167 Matthew S. Dryer #> 26235 Matthew S. Dryer #> 26240 Matthew S. Dryer #> 26253 Matthew S. Dryer #> 26366 Matthew S. Dryer #> 26416 Matthew S. Dryer #> 26464 Matthew S. Dryer #> 26519 Matthew S. Dryer #> 26556 Matthew S. Dryer #> 26588 Matthew S. Dryer #> 26594 Matthew S. Dryer #> 26606 Matthew S. Dryer #> 26624 Matthew S. Dryer #> 26651 Matthew S. Dryer #> 26659 Matthew S. Dryer #> 26669 Matthew S. Dryer #> 26720 Matthew S. Dryer #> 26726 Matthew S. Dryer #> 26740 Matthew S. Dryer #> 26797 Matthew S. Dryer #> 26803 Matthew S. Dryer #> 26813 Matthew S. Dryer #> 26853 Matthew S. Dryer #> 26971 Matthew S. Dryer #> 26996 Matthew S. Dryer #> 26997 Matthew S. Dryer #> 27066 Matthew S. Dryer #> 27086 Matthew S. Dryer #> 27103 Matthew S. Dryer #> 27114 Matthew S. Dryer #> 27115 Matthew S. Dryer #> 27231 Matthew S. Dryer #> 27232 Matthew S. Dryer #> 27283 Matthew S. Dryer #> 27346 Matthew S. Dryer #> 27401 Matthew S. Dryer #> 27407 Matthew S. Dryer #> 27416 Matthew S. Dryer #> 27431 Matthew S. Dryer #> 27471 Matthew S. Dryer #> 27481 Matthew S. Dryer #> 27521 Matthew S. Dryer #> 27546 Matthew S. Dryer #> 27564 Matthew S. Dryer #> 27607 Matthew S. Dryer #> 27625 Matthew S. Dryer #> 27703 Matthew S. Dryer #> 27729 Matthew S. Dryer #> 27746 Matthew S. Dryer #> 27751 Matthew S. Dryer #> 27788 Matthew S. Dryer #> 27824 Matthew S. Dryer #> 27941 Matthew S. Dryer #> 27942 Matthew S. Dryer #> 27958 Matthew S. Dryer #> 28006 Matthew S. Dryer #> 28050 Matthew S. Dryer #> 28064 Matthew S. Dryer #> 28103 Matthew S. Dryer #> 28215 Matthew S. Dryer #> 28226 Matthew S. Dryer #> 28247 Matthew S. Dryer #> 28293 Matthew S. Dryer #> 28317 Matthew S. Dryer #> 28323 Matthew S. Dryer #> 28388 Matthew S. Dryer #> 28444 Matthew S. Dryer #> 28466 Matthew S. Dryer #> 28513 Matthew S. Dryer #> 28577 Matthew S. Dryer #> 28625 Matthew S. Dryer #> 28628 Matthew S. Dryer #> 28694 Matthew S. Dryer #> 28720 Matthew S. Dryer #> 28764 Matthew S. Dryer #> 28880 Matthew S. Dryer #> 28962 Matthew S. Dryer #> 28966 Matthew S. Dryer #> 28993 Matthew S. Dryer #> 29047 Rob Goedemans and Harry van der Hulst #> 29058 Rob Goedemans and Harry van der Hulst #> 29100 Rob Goedemans and Harry van der Hulst #> 29114 Rob Goedemans and Harry van der Hulst #> 29115 Rob Goedemans and Harry van der Hulst #> 29134 Rob Goedemans and Harry van der Hulst #> 29183 Rob Goedemans and Harry van der Hulst #> 29188 Rob Goedemans and Harry van der Hulst #> 29213 Rob Goedemans and Harry van der Hulst #> 29242 Rob Goedemans and Harry van der Hulst #> 29297 Rob Goedemans and Harry van der Hulst #> 29308 Rob Goedemans and Harry van der Hulst #> 29370 Rob Goedemans and Harry van der Hulst #> 29405 Rob Goedemans and Harry van der Hulst #> 29416 Rob Goedemans and Harry van der Hulst #> 29553 Rob Goedemans and Harry van der Hulst #> 29589 Rob Goedemans and Harry van der Hulst #> 29701 Rob Goedemans and Harry van der Hulst #> 29705 Rob Goedemans and Harry van der Hulst #> 29742 Rob Goedemans and Harry van der Hulst #> 29759 Rob Goedemans and Harry van der Hulst #> 29785 Rob Goedemans and Harry van der Hulst #> 29804 Rob Goedemans and Harry van der Hulst #> 29836 Rob Goedemans and Harry van der Hulst #> 29865 Rob Goedemans and Harry van der Hulst #> 29904 Rob Goedemans and Harry van der Hulst #> 29906 Rob Goedemans and Harry van der Hulst #> 29926 Rob Goedemans and Harry van der Hulst #> 29945 Rob Goedemans and Harry van der Hulst #> 29987 Rob Goedemans and Harry van der Hulst #> 30011 Rob Goedemans and Harry van der Hulst #> 30030 Rob Goedemans and Harry van der Hulst #> 30095 Rob Goedemans and Harry van der Hulst #> 30123 Rob Goedemans and Harry van der Hulst #> 30180 Rob Goedemans and Harry van der Hulst #> 30192 Rob Goedemans and Harry van der Hulst #> 30239 Rob Goedemans and Harry van der Hulst #> 30279 Rob Goedemans and Harry van der Hulst #> 30299 Rob Goedemans and Harry van der Hulst #> 30497 Ian Maddieson #> 30502 Ian Maddieson #> 30548 Ian Maddieson #> 30582 Ian Maddieson #> 30610 Ian Maddieson #> 30621 Ian Maddieson #> 30655 Ian Maddieson #> 30662 Ian Maddieson #> 30669 Ian Maddieson #> 30670 Ian Maddieson #> 30718 Ian Maddieson #> 30731 Ian Maddieson #> 30744 Ian Maddieson #> 30756 Ian Maddieson #> 30787 Ian Maddieson #> 30796 Ian Maddieson #> 30821 Ian Maddieson #> 30822 Ian Maddieson #> 30856 Ian Maddieson #> 30877 Ian Maddieson #> 30914 Ian Maddieson #> 30915 Ian Maddieson #> 30961 Ian Maddieson #> 30968 Ian Maddieson #> 30974 Ian Maddieson #> 30986 Ian Maddieson #> 31014 Ian Maddieson #> 31021 Ian Maddieson #> 31041 Ian Maddieson #> 31062 Ian Maddieson #> 31091 Ian Maddieson #> 31161 Ian Maddieson #> 31219 Ian Maddieson #> 31243 Ian Maddieson #> 31246 Ian Maddieson #> 31311 Ian Maddieson #> 31317 Ian Maddieson #> 31329 Ian Maddieson #> 31388 Ian Maddieson #> 31431 Ian Maddieson #> 31489 Ian Maddieson #> 31490 Ian Maddieson #> 31527 Ian Maddieson #> 31532 Ian Maddieson #> 31539 Ian Maddieson #> 31540 Ian Maddieson #> 31543 Ian Maddieson #> 31564 Ian Maddieson #> 31574 Ian Maddieson #> 31633 Ian Maddieson #> 31659 Ian Maddieson #> 31665 Ian Maddieson #> 31675 Ian Maddieson #> 31676 Ian Maddieson #> 31716 Ian Maddieson #> 31763 Ian Maddieson #> 31783 Ian Maddieson #> 31877 Ian Maddieson #> 31907 Ian Maddieson #> 31917 Ian Maddieson #> 32031 Balthasar Bickel and Johanna Nichols #> 32036 Balthasar Bickel and Johanna Nichols #> 32039 Balthasar Bickel and Johanna Nichols #> 32062 Balthasar Bickel and Johanna Nichols #> 32071 Balthasar Bickel and Johanna Nichols #> 32074 Balthasar Bickel and Johanna Nichols #> 32075 Balthasar Bickel and Johanna Nichols #> 32077 Balthasar Bickel and Johanna Nichols #> 32097 Balthasar Bickel and Johanna Nichols #> 32105 Balthasar Bickel and Johanna Nichols #> 32109 Balthasar Bickel and Johanna Nichols #> 32116 Balthasar Bickel and Johanna Nichols #> 32126 Balthasar Bickel and Johanna Nichols #> 32129 Balthasar Bickel and Johanna Nichols #> 32140 Balthasar Bickel and Johanna Nichols #> 32142 Balthasar Bickel and Johanna Nichols #> 32148 Balthasar Bickel and Johanna Nichols #> 32179 Balthasar Bickel and Johanna Nichols #> 32180 Balthasar Bickel and Johanna Nichols #> 32181 Balthasar Bickel and Johanna Nichols #> 32205 Balthasar Bickel and Johanna Nichols #> 32213 Balthasar Bickel and Johanna Nichols #> 32219 Balthasar Bickel and Johanna Nichols #> 32223 Balthasar Bickel and Johanna Nichols #> 32226 Balthasar Bickel and Johanna Nichols #> 32227 Balthasar Bickel and Johanna Nichols #> 32251 Balthasar Bickel and Johanna Nichols #> 32265 Balthasar Bickel and Johanna Nichols #> 32286 Balthasar Bickel and Johanna Nichols #> 32290 Balthasar Bickel and Johanna Nichols #> 32297 Balthasar Bickel and Johanna Nichols #> 32306 Balthasar Bickel and Johanna Nichols #> 32310 Balthasar Bickel and Johanna Nichols #> 32319 Balthasar Bickel and Johanna Nichols #> 32324 Balthasar Bickel and Johanna Nichols #> 32325 Balthasar Bickel and Johanna Nichols #> 32336 Balthasar Bickel and Johanna Nichols #> 32341 Balthasar Bickel and Johanna Nichols #> 32366 Balthasar Bickel and Johanna Nichols #> 32368 Balthasar Bickel and Johanna Nichols #> 32405 Balthasar Bickel and Johanna Nichols #> 32415 Balthasar Bickel and Johanna Nichols #> 32417 Balthasar Bickel and Johanna Nichols #> 32422 Balthasar Bickel and Johanna Nichols #> 32430 Balthasar Bickel and Johanna Nichols #> 32445 Balthasar Bickel and Johanna Nichols #> 32447 Balthasar Bickel and Johanna Nichols #> 32450 Balthasar Bickel and Johanna Nichols #> 32455 Balthasar Bickel and Johanna Nichols #> 32456 Balthasar Bickel and Johanna Nichols #> 32457 Balthasar Bickel and Johanna Nichols #> 32467 Balthasar Bickel and Johanna Nichols #> 32470 Balthasar Bickel and Johanna Nichols #> 32472 Balthasar Bickel and Johanna Nichols #> 32473 Balthasar Bickel and Johanna Nichols #> 32492 Balthasar Bickel and Johanna Nichols #> 32499 Balthasar Bickel and Johanna Nichols #> 32513 Balthasar Bickel and Johanna Nichols #> 32529 Balthasar Bickel and Johanna Nichols #> 32531 Balthasar Bickel and Johanna Nichols #> 32571 Balthasar Bickel and Johanna Nichols #> 32585 Balthasar Bickel and Johanna Nichols #> 32586 Balthasar Bickel and Johanna Nichols #> 32587 Balthasar Bickel and Johanna Nichols #> 32591 Balthasar Bickel and Johanna Nichols #> 32602 Balthasar Bickel and Johanna Nichols #> 32606 Balthasar Bickel and Johanna Nichols #> 32610 Balthasar Bickel and Johanna Nichols #> 32617 Balthasar Bickel and Johanna Nichols #> 32629 Balthasar Bickel and Johanna Nichols #> 32632 Balthasar Bickel and Johanna Nichols #> 32633 Balthasar Bickel and Johanna Nichols #> 32643 Balthasar Bickel and Johanna Nichols #> 32644 Balthasar Bickel and Johanna Nichols #> 32646 Balthasar Bickel and Johanna Nichols #> 32647 Balthasar Bickel and Johanna Nichols #> 32657 Johanna Nichols and Balthasar Bickel #> 32659 Johanna Nichols and Balthasar Bickel #> 32661 Johanna Nichols and Balthasar Bickel #> 32670 Johanna Nichols and Balthasar Bickel #> 32680 Johanna Nichols and Balthasar Bickel #> 32698 Johanna Nichols and Balthasar Bickel #> 32702 Johanna Nichols and Balthasar Bickel #> 32721 Johanna Nichols and Balthasar Bickel #> 32727 Johanna Nichols and Balthasar Bickel #> 32764 Johanna Nichols and Balthasar Bickel #> 32774 Johanna Nichols and Balthasar Bickel #> 32791 Johanna Nichols and Balthasar Bickel #> 32795 Johanna Nichols and Balthasar Bickel #> 32809 Johanna Nichols and Balthasar Bickel #> 32824 Johanna Nichols and Balthasar Bickel #> 32845 Johanna Nichols and Balthasar Bickel #> 32849 Johanna Nichols and Balthasar Bickel #> 32853 Johanna Nichols and Balthasar Bickel #> 32861 Johanna Nichols and Balthasar Bickel #> 32893 Johanna Nichols and Balthasar Bickel #> 32910 Johanna Nichols and Balthasar Bickel #> 32913 Johanna Nichols and Balthasar Bickel #> 32919 Johanna Nichols and Balthasar Bickel #> 32935 Johanna Nichols and Balthasar Bickel #> 32942 Johanna Nichols and Balthasar Bickel #> 32950 Johanna Nichols and Balthasar Bickel #> 32959 Johanna Nichols and Balthasar Bickel #> 32961 Johanna Nichols and Balthasar Bickel #> 32990 Johanna Nichols and Balthasar Bickel #> 33020 Johanna Nichols and Balthasar Bickel #> 33021 Johanna Nichols and Balthasar Bickel #> 33025 Johanna Nichols and Balthasar Bickel #> 33045 Johanna Nichols and Balthasar Bickel #> 33054 Johanna Nichols and Balthasar Bickel #> 33055 Johanna Nichols and Balthasar Bickel #> 33104 Johanna Nichols and Balthasar Bickel #> 33106 Johanna Nichols and Balthasar Bickel #> 33117 Johanna Nichols and Balthasar Bickel #> 33131 Johanna Nichols and Balthasar Bickel #> 33141 Johanna Nichols and Balthasar Bickel #> 33144 Johanna Nichols and Balthasar Bickel #> 33151 Johanna Nichols and Balthasar Bickel #> 33180 Johanna Nichols and Balthasar Bickel #> 33195 Johanna Nichols and Balthasar Bickel #> 33201 Johanna Nichols and Balthasar Bickel #> 33234 Johanna Nichols and Balthasar Bickel #> 33249 Johanna Nichols and Balthasar Bickel #> 33267 Johanna Nichols and Balthasar Bickel #> 33275 Johanna Nichols and Balthasar Bickel #> 33278 Johanna Nichols and Balthasar Bickel #> 33289 Johanna Nichols and Balthasar Bickel #> 33291 Johanna Nichols and Balthasar Bickel #> 33299 Johanna Nichols and Balthasar Bickel #> 33310 Johanna Nichols and Balthasar Bickel #> 33318 Johanna Nichols and Balthasar Bickel #> 33337 Johanna Nichols and Balthasar Bickel #> 33346 Johanna Nichols and Balthasar Bickel #> 33358 Johanna Nichols and Balthasar Bickel #> 33362 Johanna Nichols and Balthasar Bickel #> 33374 Johanna Nichols and Balthasar Bickel #> 33388 Johanna Nichols and Balthasar Bickel #> 33413 Johanna Nichols and Balthasar Bickel #> 33429 Johanna Nichols and Balthasar Bickel #> 33436 Johanna Nichols and Balthasar Bickel #> 33448 Johanna Nichols and Balthasar Bickel #> 33450 Johanna Nichols and Balthasar Bickel #> 33454 Johanna Nichols and Balthasar Bickel #> 33473 Johanna Nichols and Balthasar Bickel #> 33484 Johanna Nichols and Balthasar Bickel #> 33538 Johanna Nichols and Balthasar Bickel #> 33546 Johanna Nichols and Balthasar Bickel #> 33569 Johanna Nichols and Balthasar Bickel #> 33570 Johanna Nichols and Balthasar Bickel #> 33573 Johanna Nichols and Balthasar Bickel #> 33574 Johanna Nichols and Balthasar Bickel #> 33584 Johanna Nichols and Balthasar Bickel #> 33592 Matthew S. Dryer #> 33682 Matthew S. Dryer #> 33718 Matthew S. Dryer #> 33743 Matthew S. Dryer #> 33859 Matthew S. Dryer #> 33953 Matthew S. Dryer #> 34015 Matthew S. Dryer #> 34018 Matthew S. Dryer #> 34028 Matthew S. Dryer #> 34112 Matthew S. Dryer #> 34139 Matthew S. Dryer #> 34305 Matthew S. Dryer #> 34311 Matthew S. Dryer #> 34327 Matthew S. Dryer #> 34365 Matthew S. Dryer #> 34371 Matthew S. Dryer #> 34463 Matthew S. Dryer #> 34467 Matthew S. Dryer #> 34486 Matthew S. Dryer #> 34543 Matthew S. Dryer #> 34565 Carl Rubino #> 34640 Carl Rubino #> 34648 Carl Rubino #> 34702 Carl Rubino #> 34739 Carl Rubino #> 34742 Carl Rubino #> 34763 Carl Rubino #> 34764 Carl Rubino #> 34769 Carl Rubino #> 34775 Carl Rubino #> 34821 Carl Rubino #> 34853 Carl Rubino #> 34875 Carl Rubino #> 34903 Carl Rubino #> 34922 Carl Rubino #> 34924 Carl Rubino #> 34925 Carl Rubino #> 34937 Matthew Baerman and Dunstan Brown #> 34941 Matthew Baerman and Dunstan Brown #> 34942 Matthew Baerman and Dunstan Brown #> 34961 Matthew Baerman and Dunstan Brown #> 34995 Matthew Baerman and Dunstan Brown #> 34996 Matthew Baerman and Dunstan Brown #> 34997 Matthew Baerman and Dunstan Brown #> 35002 Matthew Baerman and Dunstan Brown #> 35009 Matthew Baerman and Dunstan Brown #> 35015 Matthew Baerman and Dunstan Brown #> 35028 Matthew Baerman and Dunstan Brown #> 35041 Matthew Baerman and Dunstan Brown #> 35045 Matthew Baerman and Dunstan Brown #> 35056 Matthew Baerman and Dunstan Brown #> 35075 Matthew Baerman and Dunstan Brown #> 35086 Matthew Baerman and Dunstan Brown #> 35105 Matthew Baerman and Dunstan Brown #> 35117 Matthew Baerman and Dunstan Brown #> 35124 Matthew Baerman and Dunstan Brown #> 35131 Matthew Baerman and Dunstan Brown #> 35134 Matthew Baerman and Dunstan Brown #> 35139 Matthew Baerman and Dunstan Brown #> 35145 Matthew Baerman and Dunstan Brown #> 35158 Matthew Baerman and Dunstan Brown #> 35161 Matthew Baerman and Dunstan Brown #> 35194 Matthew Baerman and Dunstan Brown #> 35204 Matthew Baerman and Dunstan Brown #> 35209 Matthew Baerman and Dunstan Brown #> 35225 Matthew Baerman and Dunstan Brown #> 35240 Matthew Baerman and Dunstan Brown #> 35251 Matthew Baerman and Dunstan Brown #> 35256 Matthew Baerman and Dunstan Brown #> 35274 Matthew Baerman and Dunstan Brown #> 35282 Matthew Baerman and Dunstan Brown #> 35286 Matthew Baerman and Dunstan Brown #> 35297 Matthew Baerman and Dunstan Brown #> 35307 Matthew Baerman and Dunstan Brown #> 35312 Matthew Baerman and Dunstan Brown #> 35318 Matthew Baerman and Dunstan Brown #> 35382 Ian Maddieson #> 35414 Ian Maddieson #> 35431 Ian Maddieson #> 35471 Ian Maddieson #> 35492 Ian Maddieson #> 35499 Ian Maddieson #> 35528 Ian Maddieson #> 35547 Ian Maddieson #> 35574 Ian Maddieson #> 35647 Ian Maddieson #> 35695 Ian Maddieson #> 35699 Ian Maddieson #> 35723 Ian Maddieson #> 35740 Ian Maddieson #> 35742 Ian Maddieson #> 35764 Ian Maddieson #> 35813 Ian Maddieson #> 35814 Ian Maddieson #> 35831 Ian Maddieson #> 35868 Ian Maddieson #> 35903 Greville G. Corbett #> 35904 Greville G. Corbett #> 35944 Greville G. Corbett #> 35954 Greville G. Corbett #> 35958 Greville G. Corbett #> 35971 Greville G. Corbett #> 35975 Greville G. Corbett #> 36019 Greville G. Corbett #> 36033 Greville G. Corbett #> 36035 Greville G. Corbett #> 36039 Greville G. Corbett #> 36048 Greville G. Corbett #> 36057 Greville G. Corbett #> 36064 Greville G. Corbett #> 36090 Greville G. Corbett #> 36103 Greville G. Corbett #> 36114 Greville G. Corbett #> 36129 Greville G. Corbett #> 36163 Greville G. Corbett #> 36186 Greville G. Corbett #> 36187 Greville G. Corbett #> 36188 Greville G. Corbett #> 36210 Greville G. Corbett #> 36232 Greville G. Corbett #> 36243 Greville G. Corbett #> 36263 Greville G. Corbett #> 36295 Greville G. Corbett #> 36297 Greville G. Corbett #> 36320 Greville G. Corbett #> 36332 Greville G. Corbett #> 36336 Greville G. Corbett #> 36338 Greville G. Corbett #> 36355 Greville G. Corbett #> 36364 Greville G. Corbett #> 36369 Greville G. Corbett #> 36391 Greville G. Corbett #> 36417 Greville G. Corbett #> 36448 Greville G. Corbett #> 36462 Greville G. Corbett #> 36480 Greville G. Corbett #> 36486 Greville G. Corbett #> 36521 Greville G. Corbett #> 36526 Greville G. Corbett #> 36530 Greville G. Corbett #> 36552 Greville G. Corbett #> 36560 Greville G. Corbett #> 36564 Greville G. Corbett #> 36568 Greville G. Corbett #> 36571 Greville G. Corbett #> 36601 Greville G. Corbett #> 36618 Greville G. Corbett #> 36644 Greville G. Corbett #> 36650 Greville G. Corbett #> 36656 Greville G. Corbett #> 36786 Matthew S. Dryer #> 36837 Matthew S. Dryer #> 36849 Matthew S. Dryer #> 36866 Matthew S. Dryer #> 36910 Matthew S. Dryer #> 36965 Matthew S. Dryer #> 37051 Matthew S. Dryer #> 37075 Matthew S. Dryer #> 37205 Matthew S. Dryer #> 37287 Matthew S. Dryer #> 37299 Matthew S. Dryer #> 37354 Matthew S. Dryer #> 37500 Matthew S. Dryer #> 37575 Matthew S. Dryer #> 37590 Matthew S. Dryer #> 37609 Matthew S. Dryer #> 37640 Matthew S. Dryer #> 37663 Matthew S. Dryer #> 37666 Matthew S. Dryer #> 37704 Matthew S. Dryer #> 37728 Martin Haspelmath #> 37762 Martin Haspelmath #> 37766 Martin Haspelmath #> 37767 Martin Haspelmath #> 37772 Martin Haspelmath #> 37812 Martin Haspelmath #> 37893 Martin Haspelmath #> 37911 Martin Haspelmath #> 37916 Martin Haspelmath #> 37921 Martin Haspelmath #> 37928 Martin Haspelmath #> 37998 Martin Haspelmath #> 38019 Michael Daniel #> 38020 Michael Daniel #> 38024 Michael Daniel #> 38025 Michael Daniel #> 38031 Michael Daniel #> 38036 Michael Daniel #> 38044 Michael Daniel #> 38071 Michael Daniel #> 38074 Michael Daniel #> 38075 Michael Daniel #> 38085 Michael Daniel #> 38090 Michael Daniel #> 38100 Michael Daniel #> 38110 Michael Daniel #> 38117 Michael Daniel #> 38136 Michael Daniel #> 38167 Michael Daniel #> 38209 Michael Daniel #> 38214 Michael Daniel #> 38219 Michael Daniel #> 38289 Michael Daniel and Edith Moravcsik #> 38324 Michael Daniel and Edith Moravcsik #> 38341 Michael Daniel and Edith Moravcsik #> 38405 Michael Daniel and Edith Moravcsik #> 38429 Michael Daniel and Edith Moravcsik #> 38445 Michael Daniel and Edith Moravcsik #> 38448 Michael Daniel and Edith Moravcsik #> 38467 Michael Daniel and Edith Moravcsik #> 38497 Michael Daniel and Edith Moravcsik #> 38499 Michael Daniel and Edith Moravcsik #> 38503 Michael Daniel and Edith Moravcsik #> 38504 Michael Daniel and Edith Moravcsik #> 38506 Michael Daniel and Edith Moravcsik #> 38563 Matthew S. Dryer #> 38578 Matthew S. Dryer #> 38584 Matthew S. Dryer #> 38585 Matthew S. Dryer #> 38592 Matthew S. Dryer #> 38630 Matthew S. Dryer #> 38655 Matthew S. Dryer #> 38708 Matthew S. Dryer #> 38797 Matthew S. Dryer #> 38801 Matthew S. Dryer #> 38954 Matthew S. Dryer #> 38974 Matthew S. Dryer #> 38988 Matthew S. Dryer #> 39062 Matthew S. Dryer #> 39065 Matthew S. Dryer #> 39070 Matthew S. Dryer #> 39078 Matthew S. Dryer #> 39124 Matthew S. Dryer #> 39140 Matthew S. Dryer #> 39144 Matthew S. Dryer #> 39280 Matthew S. Dryer #> 39380 Matthew S. Dryer #> 39391 Matthew S. Dryer #> 39442 Matthew S. Dryer #> 39454 Matthew S. Dryer #> 39465 Matthew S. Dryer #> 39509 Matthew S. Dryer #> 39557 Matthew S. Dryer #> 39581 Matthew S. Dryer #> 39589 Matthew S. Dryer #> 39601 Matthew S. Dryer #> 39603 Matthew S. Dryer #> 39615 Matthew S. Dryer #> 39656 Matthew S. Dryer #> 39668 Michael Cysouw #> 39674 Michael Cysouw #> 39676 Michael Cysouw #> 39678 Michael Cysouw #> 39700 Michael Cysouw #> 39718 Michael Cysouw #> 39720 Michael Cysouw #> 39728 Michael Cysouw #> 39745 Michael Cysouw #> 39750 Michael Cysouw #> 39751 Michael Cysouw #> 39759 Michael Cysouw #> 39778 Michael Cysouw #> 39790 Michael Cysouw #> 39797 Michael Cysouw #> 39808 Michael Cysouw #> 39818 Michael Cysouw #> 39826 Michael Cysouw #> 39850 Michael Cysouw #> 39853 Michael Cysouw #> 39901 Michael Cysouw #> 39944 Ian Maddieson #> 39946 Ian Maddieson #> 39951 Ian Maddieson #> 39954 Ian Maddieson #> 39981 Ian Maddieson #> 40018 Ian Maddieson #> 40019 Ian Maddieson #> 40023 Ian Maddieson #> 40105 Ian Maddieson #> 40138 Ian Maddieson #> 40147 Ian Maddieson #> 40203 Ian Maddieson #> 40218 Ian Maddieson #> 40240 Ian Maddieson #> 40290 Ian Maddieson #> 40372 Ian Maddieson #> 40403 Ian Maddieson #> 40442 Ian Maddieson #> 40455 Ian Maddieson #> 40469 Ian Maddieson #> 40509 Michael Cysouw #> 40512 Michael Cysouw #> 40517 Michael Cysouw #> 40519 Michael Cysouw #> 40521 Michael Cysouw #> 40538 Michael Cysouw #> 40550 Michael Cysouw #> 40554 Michael Cysouw #> 40575 Michael Cysouw #> 40606 Michael Cysouw #> 40613 Michael Cysouw #> 40625 Michael Cysouw #> 40638 Michael Cysouw #> 40642 Michael Cysouw #> 40648 Michael Cysouw #> 40653 Michael Cysouw #> 40670 Michael Cysouw #> 40675 Michael Cysouw #> 40680 Michael Cysouw #> 40702 Michael Cysouw #> 40705 Holger Diessel #> 40707 Holger Diessel #> 40731 Holger Diessel #> 40756 Holger Diessel #> 40761 Holger Diessel #> 40773 Holger Diessel #> 40778 Holger Diessel #> 40783 Holger Diessel #> 40789 Holger Diessel #> 40817 Holger Diessel #> 40824 Holger Diessel #> 40836 Holger Diessel #> 40878 Holger Diessel #> 40896 Holger Diessel #> 40908 Holger Diessel #> 40927 Holger Diessel #> 40936 Holger Diessel #> 40937 Holger Diessel #> 40940 Holger Diessel #> 40948 Holger Diessel #> 40969 Holger Diessel #> 40975 Holger Diessel #> 40983 Holger Diessel #> 41005 Holger Diessel #> 41016 Holger Diessel #> 41017 Holger Diessel #> 41020 Holger Diessel #> 41036 Holger Diessel #> 41041 Holger Diessel #> 41053 Holger Diessel #> 41057 Holger Diessel #> 41062 Holger Diessel #> 41063 Holger Diessel #> 41066 Holger Diessel #> 41071 Holger Diessel #> 41093 Holger Diessel #> 41148 D.N.S. Bhat #> 41150 D.N.S. Bhat #> 41153 D.N.S. Bhat #> 41160 D.N.S. Bhat #> 41163 D.N.S. Bhat #> 41167 D.N.S. Bhat #> 41194 D.N.S. Bhat #> 41217 D.N.S. Bhat #> 41221 D.N.S. Bhat #> 41234 D.N.S. Bhat #> 41237 D.N.S. Bhat #> 41241 D.N.S. Bhat #> 41244 D.N.S. Bhat #> 41284 D.N.S. Bhat #> 41304 D.N.S. Bhat #> 41326 D.N.S. Bhat #> 41341 D.N.S. Bhat #> 41370 Anna Siewierska #> 41379 Anna Siewierska #> 41394 Anna Siewierska #> 41412 Anna Siewierska #> 41429 Anna Siewierska #> 41442 Anna Siewierska #> 41453 Anna Siewierska #> 41464 Anna Siewierska #> 41482 Anna Siewierska #> 41526 Anna Siewierska #> 41540 Anna Siewierska #> 41582 Anna Siewierska #> 41587 Anna Siewierska #> 41605 Anna Siewierska #> 41616 Anna Siewierska #> 41626 Anna Siewierska #> 41654 Anna Siewierska #> 41695 Anna Siewierska #> 41701 Anna Siewierska #> 41723 Anna Siewierska #> 41762 Johannes Helmbrecht #> 41770 Johannes Helmbrecht #> 41772 Johannes Helmbrecht #> 41777 Johannes Helmbrecht #> 41793 Johannes Helmbrecht #> 41799 Johannes Helmbrecht #> 41809 Johannes Helmbrecht #> 41822 Johannes Helmbrecht #> 41829 Johannes Helmbrecht #> 41834 Johannes Helmbrecht #> 41835 Johannes Helmbrecht #> 41839 Johannes Helmbrecht #> 41849 Johannes Helmbrecht #> 41851 Johannes Helmbrecht #> 41861 Johannes Helmbrecht #> 41867 Johannes Helmbrecht #> 41936 Johannes Helmbrecht #> 41942 Johannes Helmbrecht #> 41948 Johannes Helmbrecht #> 41952 Martin Haspelmath #> 41987 Martin Haspelmath #> 42061 Martin Haspelmath #> 42075 Martin Haspelmath #> 42094 Martin Haspelmath #> 42107 Martin Haspelmath #> 42126 Martin Haspelmath #> 42150 Martin Haspelmath #> 42172 Martin Haspelmath #> 42217 Martin Haspelmath #> 42231 Martin Haspelmath #> 42232 Martin Haspelmath #> 42258 Martin Haspelmath #> 42284 Ekkehard König and Peter Siemund with Stephan Töpper #> 42313 Ekkehard König and Peter Siemund with Stephan Töpper #> 42337 Ekkehard König and Peter Siemund with Stephan Töpper #> 42343 Ekkehard König and Peter Siemund with Stephan Töpper #> 42345 Ekkehard König and Peter Siemund with Stephan Töpper #> 42358 Ekkehard König and Peter Siemund with Stephan Töpper #> 42368 Ekkehard König and Peter Siemund with Stephan Töpper #> 42371 Ekkehard König and Peter Siemund with Stephan Töpper #> 42372 Ekkehard König and Peter Siemund with Stephan Töpper #> 42373 Ekkehard König and Peter Siemund with Stephan Töpper #> 42383 Ekkehard König and Peter Siemund with Stephan Töpper #> 42392 Ekkehard König and Peter Siemund with Stephan Töpper #> 42408 Ekkehard König and Peter Siemund with Stephan Töpper #> 42414 Ekkehard König and Peter Siemund with Stephan Töpper #> 42415 Ekkehard König and Peter Siemund with Stephan Töpper #> 42422 Ekkehard König and Peter Siemund with Stephan Töpper #> 42434 Ekkehard König and Peter Siemund with Stephan Töpper #> 42452 Dik Bakker #> 42455 Dik Bakker #> 42466 Dik Bakker #> 42471 Dik Bakker #> 42487 Dik Bakker #> 42496 Dik Bakker #> 42531 Dik Bakker #> 42548 Dik Bakker #> 42559 Dik Bakker #> 42561 Dik Bakker #> 42582 Dik Bakker #> 42624 Dik Bakker #> 42629 Dik Bakker #> 42641 Dik Bakker #> 42678 Dik Bakker #> 42709 Dik Bakker #> 42732 Dik Bakker #> 42734 Dik Bakker #> 42756 Dik Bakker #> 42808 Dik Bakker #> 42822 Oliver A. Iggesen #> 42846 Oliver A. Iggesen #> 42880 Oliver A. Iggesen #> 42886 Oliver A. Iggesen #> 42914 Oliver A. Iggesen #> 42917 Oliver A. Iggesen #> 42944 Oliver A. Iggesen #> 42975 Oliver A. Iggesen #> 42985 Oliver A. Iggesen #> 42987 Oliver A. Iggesen #> 42996 Oliver A. Iggesen #> 43002 Oliver A. Iggesen #> 43021 Oliver A. Iggesen #> 43050 Oliver A. Iggesen #> 43059 Oliver A. Iggesen #> 43060 Oliver A. Iggesen #> 43063 Oliver A. Iggesen #> 43074 Oliver A. Iggesen #> 43081 Oliver A. Iggesen #> 43115 Ian Maddieson #> 43117 Ian Maddieson #> 43142 Ian Maddieson #> 43146 Ian Maddieson #> 43157 Ian Maddieson #> 43232 Ian Maddieson #> 43246 Ian Maddieson #> 43257 Ian Maddieson #> 43262 Ian Maddieson #> 43277 Ian Maddieson #> 43323 Ian Maddieson #> 43327 Ian Maddieson #> 43337 Ian Maddieson #> 43352 Ian Maddieson #> 43369 Ian Maddieson #> 43553 Ian Maddieson #> 43580 Ian Maddieson #> 43588 Ian Maddieson #> 43592 Ian Maddieson #> 43638 Ian Maddieson #> 43651 Oliver A. Iggesen #> 43658 Oliver A. Iggesen #> 43682 Oliver A. Iggesen #> 43687 Oliver A. Iggesen #> 43688 Oliver A. Iggesen #> 43733 Oliver A. Iggesen #> 43734 Oliver A. Iggesen #> 43738 Oliver A. Iggesen #> 43739 Oliver A. Iggesen #> 43760 Oliver A. Iggesen #> 43761 Oliver A. Iggesen #> 43762 Oliver A. Iggesen #> 43781 Oliver A. Iggesen #> 43797 Oliver A. Iggesen #> 43798 Oliver A. Iggesen #> 43804 Oliver A. Iggesen #> 43822 Oliver A. Iggesen #> 43865 Oliver A. Iggesen #> 43909 Oliver A. Iggesen #> 43991 Matthew S. Dryer #> 44066 Matthew S. Dryer #> 44108 Matthew S. Dryer #> 44120 Matthew S. Dryer #> 44158 Matthew S. Dryer #> 44231 Matthew S. Dryer #> 44248 Matthew S. Dryer #> 44356 Matthew S. Dryer #> 44448 Matthew S. Dryer #> 44490 Matthew S. Dryer #> 44506 Matthew S. Dryer #> 44513 Matthew S. Dryer #> 44534 Matthew S. Dryer #> 44645 Matthew S. Dryer #> 44797 Matthew S. Dryer #> 44822 Matthew S. Dryer #> 44845 Matthew S. Dryer #> 44851 Matthew S. Dryer #> 44928 Matthew S. Dryer #> 44969 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45048 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45111 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45125 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45135 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45153 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45160 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45175 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45227 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45246 Thomas Stolz and Cornelia Stroh and Aina Urdze #> 45272 Thomas Stolz and Ljuba N. Veselinova #> 45279 Thomas Stolz and Ljuba N. Veselinova #> 45291 Thomas Stolz and Ljuba N. Veselinova #> 45302 Thomas Stolz and Ljuba N. Veselinova #> 45328 Thomas Stolz and Ljuba N. Veselinova #> 45371 Thomas Stolz and Ljuba N. Veselinova #> 45387 Thomas Stolz and Ljuba N. Veselinova #> 45416 Thomas Stolz and Ljuba N. Veselinova #> 45431 Thomas Stolz and Ljuba N. Veselinova #> 45432 Thomas Stolz and Ljuba N. Veselinova #> 45445 Thomas Stolz and Ljuba N. Veselinova #> 45479 Thomas Stolz and Ljuba N. Veselinova #> 45491 Thomas Stolz and Ljuba N. Veselinova #> 45506 Thomas Stolz and Ljuba N. Veselinova #> 45578 Thomas Stolz and Ljuba N. Veselinova #> 45592 David Gil #> 45604 David Gil #> 45664 David Gil #> 45695 David Gil #> 45713 David Gil #> 45760 David Gil #> 45774 David Gil #> 45781 David Gil #> 45819 David Gil #> 45828 David Gil #> 45846 David Gil #> 45862 David Gil #> 45868 David Gil #> 45917 David Gil #> 45928 David Gil #> 45943 David Gil #> 45963 David Gil #> 45971 David Gil #> 45974 David Gil #> 46005 David Gil #> 46052 David Gil #> 46063 David Gil #> 46078 David Gil #> 46091 David Gil #> 46144 David Gil #> 46233 David Gil #> 46249 David Gil #> 46259 David Gil #> 46269 David Gil #> 46293 David Gil #> 46317 David Gil #> 46356 Matthew S. Dryer #> 46369 Matthew S. Dryer #> 46373 Matthew S. Dryer #> 46408 Matthew S. Dryer #> 46498 Matthew S. Dryer #> 46512 Matthew S. Dryer #> 46602 Matthew S. Dryer #> 46691 Matthew S. Dryer #> 46708 Matthew S. Dryer #> 46833 Matthew S. Dryer #> 46995 Matthew S. Dryer #> 47015 Matthew S. Dryer #> 47024 Matthew S. Dryer #> 47119 Matthew S. Dryer #> 47142 Matthew S. Dryer #> 47159 Matthew S. Dryer #> 47214 Matthew S. Dryer #> 47283 Balthasar Bickel and Johanna Nichols #> 47288 Balthasar Bickel and Johanna Nichols #> 47306 Balthasar Bickel and Johanna Nichols #> 47342 Balthasar Bickel and Johanna Nichols #> 47380 Balthasar Bickel and Johanna Nichols #> 47384 Balthasar Bickel and Johanna Nichols #> 47387 Balthasar Bickel and Johanna Nichols #> 47391 Balthasar Bickel and Johanna Nichols #> 47404 Balthasar Bickel and Johanna Nichols #> 47408 Balthasar Bickel and Johanna Nichols #> 47416 Balthasar Bickel and Johanna Nichols #> 47421 Balthasar Bickel and Johanna Nichols #> 47427 Balthasar Bickel and Johanna Nichols #> 47436 Balthasar Bickel and Johanna Nichols #> 47451 Balthasar Bickel and Johanna Nichols #> 47459 Balthasar Bickel and Johanna Nichols #> 47469 Balthasar Bickel and Johanna Nichols #> 47478 Balthasar Bickel and Johanna Nichols #> 47495 Balthasar Bickel and Johanna Nichols #> 47513 Balthasar Bickel and Johanna Nichols #> 47517 Balthasar Bickel and Johanna Nichols #> 47547 Balthasar Bickel and Johanna Nichols #> 47548 Balthasar Bickel and Johanna Nichols #> 47586 Balthasar Bickel and Johanna Nichols #> 47595 Balthasar Bickel and Johanna Nichols #> 47641 Balthasar Bickel and Johanna Nichols #> 47647 Balthasar Bickel and Johanna Nichols #> 47651 Balthasar Bickel and Johanna Nichols #> 47661 Balthasar Bickel and Johanna Nichols #> 47663 Balthasar Bickel and Johanna Nichols #> 47680 Balthasar Bickel and Johanna Nichols #> 47683 Balthasar Bickel and Johanna Nichols #> 47686 Balthasar Bickel and Johanna Nichols #> 47689 Balthasar Bickel and Johanna Nichols #> 47698 Balthasar Bickel and Johanna Nichols #> 47702 Balthasar Bickel and Johanna Nichols #> 47722 Balthasar Bickel and Johanna Nichols #> 47737 Balthasar Bickel and Johanna Nichols #> 47752 Johanna Nichols and Balthasar Bickel #> 47754 Johanna Nichols and Balthasar Bickel #> 47760 Johanna Nichols and Balthasar Bickel #> 47770 Johanna Nichols and Balthasar Bickel #> 47776 Johanna Nichols and Balthasar Bickel #> 47785 Johanna Nichols and Balthasar Bickel #> 47793 Johanna Nichols and Balthasar Bickel #> 47819 Johanna Nichols and Balthasar Bickel #> 47826 Johanna Nichols and Balthasar Bickel #> 47832 Johanna Nichols and Balthasar Bickel #> 47863 Johanna Nichols and Balthasar Bickel #> 47864 Johanna Nichols and Balthasar Bickel #> 47887 Johanna Nichols and Balthasar Bickel #> 47902 Johanna Nichols and Balthasar Bickel #> 47933 Johanna Nichols and Balthasar Bickel #> 47937 Johanna Nichols and Balthasar Bickel #> 47938 Johanna Nichols and Balthasar Bickel #> 47940 Johanna Nichols and Balthasar Bickel #> 47968 Johanna Nichols and Balthasar Bickel #> 47990 Ian Maddieson #> 48060 Ian Maddieson #> 48077 Ian Maddieson #> 48093 Ian Maddieson #> 48109 Ian Maddieson #> 48144 Ian Maddieson #> 48154 Ian Maddieson #> 48160 Ian Maddieson #> 48191 Ian Maddieson #> 48193 Ian Maddieson #> 48232 Ian Maddieson #> 48278 Ian Maddieson #> 48322 Ian Maddieson #> 48342 Ian Maddieson #> 48354 Ian Maddieson #> 48357 Ian Maddieson #> 48369 Ian Maddieson #> 48449 Ian Maddieson #> 48459 Ian Maddieson #> 48468 Ian Maddieson #> 48593 David Gil #> 48603 David Gil #> 48624 David Gil #> 48632 David Gil #> 48644 David Gil #> 48658 David Gil #> 48664 David Gil #> 48671 David Gil #> 48677 David Gil #> 48702 David Gil #> 48706 David Gil #> 48728 David Gil #> 48730 David Gil #> 48733 David Gil #> 48746 David Gil #> 48748 David Gil #> 48805 David Gil #> 48806 David Gil #> 48817 Maria Koptjevskaja-Tamm #> 48822 Maria Koptjevskaja-Tamm #> 48836 Maria Koptjevskaja-Tamm #> 48842 Maria Koptjevskaja-Tamm #> 48852 Maria Koptjevskaja-Tamm #> 48853 Maria Koptjevskaja-Tamm #> 48879 Maria Koptjevskaja-Tamm #> 48894 Maria Koptjevskaja-Tamm #> 48900 Maria Koptjevskaja-Tamm #> 48907 Maria Koptjevskaja-Tamm #> 48917 Maria Koptjevskaja-Tamm #> 48923 Maria Koptjevskaja-Tamm #> 48938 Maria Koptjevskaja-Tamm #> 48945 Maria Koptjevskaja-Tamm #> 48947 Maria Koptjevskaja-Tamm #> 48974 Maria Koptjevskaja-Tamm #> 48975 Maria Koptjevskaja-Tamm #> 48991 Leon Stassen #> 49003 Leon Stassen #> 49013 Leon Stassen #> 49021 Leon Stassen #> 49058 Leon Stassen #> 49088 Leon Stassen #> 49106 Leon Stassen #> 49113 Leon Stassen #> 49166 Leon Stassen #> 49277 Martin Haspelmath #> 49301 Martin Haspelmath #> 49303 Martin Haspelmath #> 49304 Martin Haspelmath #> 49338 Martin Haspelmath #> 49407 Martin Haspelmath #> 49408 Martin Haspelmath #> 49410 Martin Haspelmath #> 49416 Martin Haspelmath #> 49422 Martin Haspelmath #> 49426 Martin Haspelmath #> 49467 Martin Haspelmath #> 49496 Martin Haspelmath #> 49508 Martin Haspelmath #> 49514 Martin Haspelmath #> 49528 Östen Dahl and Viveka Velupillai #> 49530 Östen Dahl and Viveka Velupillai #> 49532 Östen Dahl and Viveka Velupillai #> 49543 Östen Dahl and Viveka Velupillai #> 49557 Östen Dahl and Viveka Velupillai #> 49561 Östen Dahl and Viveka Velupillai #> 49564 Östen Dahl and Viveka Velupillai #> 49581 Östen Dahl and Viveka Velupillai #> 49591 Östen Dahl and Viveka Velupillai #> 49594 Östen Dahl and Viveka Velupillai #> 49600 Östen Dahl and Viveka Velupillai #> 49608 Östen Dahl and Viveka Velupillai #> 49625 Östen Dahl and Viveka Velupillai #> 49626 Östen Dahl and Viveka Velupillai #> 49634 Östen Dahl and Viveka Velupillai #> 49668 Östen Dahl and Viveka Velupillai #> 49689 Östen Dahl and Viveka Velupillai #> 49704 Östen Dahl and Viveka Velupillai #> 49728 Östen Dahl and Viveka Velupillai #> 49732 Östen Dahl and Viveka Velupillai #> 49741 Östen Dahl and Viveka Velupillai #> 49750 Östen Dahl and Viveka Velupillai #> 49755 Östen Dahl and Viveka Velupillai #> 49759 Östen Dahl and Viveka Velupillai #> 49792 Östen Dahl and Viveka Velupillai #> 49830 Östen Dahl and Viveka Velupillai #> 49833 Östen Dahl and Viveka Velupillai #> 49836 Östen Dahl and Viveka Velupillai #> 49856 Östen Dahl and Viveka Velupillai #> 49864 Östen Dahl and Viveka Velupillai #> 49882 Östen Dahl and Viveka Velupillai #> 49913 Östen Dahl and Viveka Velupillai #> 49919 Östen Dahl and Viveka Velupillai #> 49923 Östen Dahl and Viveka Velupillai #> 49927 Östen Dahl and Viveka Velupillai #> 49934 Östen Dahl and Viveka Velupillai #> 49941 Östen Dahl and Viveka Velupillai #> 49943 Östen Dahl and Viveka Velupillai #> 49952 Östen Dahl and Viveka Velupillai #> 49954 Östen Dahl and Viveka Velupillai #> 49969 Östen Dahl and Viveka Velupillai #> 50008 Östen Dahl and Viveka Velupillai #> 50009 Östen Dahl and Viveka Velupillai #> 50011 Östen Dahl and Viveka Velupillai #> 50015 Östen Dahl and Viveka Velupillai #> 50025 Östen Dahl and Viveka Velupillai #> 50026 Östen Dahl and Viveka Velupillai #> 50030 Östen Dahl and Viveka Velupillai #> 50041 Östen Dahl and Viveka Velupillai #> 50042 Östen Dahl and Viveka Velupillai #> 50051 Östen Dahl and Viveka Velupillai #> 50062 Östen Dahl and Viveka Velupillai #> 50068 Östen Dahl and Viveka Velupillai #> 50075 Östen Dahl and Viveka Velupillai #> 50076 Östen Dahl and Viveka Velupillai #> 50078 Östen Dahl and Viveka Velupillai #> 50082 Östen Dahl and Viveka Velupillai #> 50097 Östen Dahl and Viveka Velupillai #> 50100 Östen Dahl and Viveka Velupillai #> 50160 Östen Dahl and Viveka Velupillai #> 50221 Östen Dahl and Viveka Velupillai #> 50250 Östen Dahl and Viveka Velupillai #> 50268 Östen Dahl and Viveka Velupillai #> 50271 Östen Dahl and Viveka Velupillai #> 50287 Östen Dahl and Viveka Velupillai #> 50292 Östen Dahl and Viveka Velupillai #> 50297 Östen Dahl and Viveka Velupillai #> 50315 Östen Dahl and Viveka Velupillai #> 50321 Östen Dahl and Viveka Velupillai #> 50327 Östen Dahl and Viveka Velupillai #> 50343 Östen Dahl and Viveka Velupillai #> 50347 Östen Dahl and Viveka Velupillai #> 50348 Östen Dahl and Viveka Velupillai #> 50349 Östen Dahl and Viveka Velupillai #> 50362 Östen Dahl and Viveka Velupillai #> 50383 Östen Dahl and Viveka Velupillai #> 50386 Östen Dahl and Viveka Velupillai #> 50392 Östen Dahl and Viveka Velupillai #> 50393 Östen Dahl and Viveka Velupillai #> 50396 Östen Dahl and Viveka Velupillai #> 50541 Matthew S. Dryer #> 50555 Matthew S. Dryer #> 50559 Matthew S. Dryer #> 50609 Matthew S. Dryer #> 50682 Matthew S. Dryer #> 50705 Matthew S. Dryer #> 50738 Matthew S. Dryer #> 50755 Matthew S. Dryer #> 50794 Matthew S. Dryer #> 50908 Matthew S. Dryer #> 50915 Matthew S. Dryer #> 51004 Matthew S. Dryer #> 51024 Matthew S. Dryer #> 51285 Matthew S. Dryer #> 51312 Matthew S. Dryer #> 51371 Matthew S. Dryer #> 51421 Matthew S. Dryer #> 51453 Matthew S. Dryer #> 51572 Ian Maddieson #> 51630 Ian Maddieson #> 51671 Ian Maddieson #> 51673 Ian Maddieson #> 51708 Ian Maddieson #> 51713 Ian Maddieson #> 51741 Ian Maddieson #> 51753 Ian Maddieson #> 51770 Ian Maddieson #> 51779 Ian Maddieson #> 51829 Ian Maddieson #> 51830 Ian Maddieson #> 51934 Ian Maddieson #> 51962 Ian Maddieson #> 51976 Ian Maddieson #> 51979 Ian Maddieson #> 52018 Ian Maddieson #> 52063 Ian Maddieson #> 52072 Ian Maddieson #> 52089 Ian Maddieson #> 52106 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52116 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52193 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52227 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52231 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52264 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52296 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52313 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52318 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52320 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52360 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52399 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52407 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52427 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52437 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52479 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52490 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52516 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52639 Johan van der Auwera and Ludo Lejeune with Umarani Pappuswamy and Valentin Goussev #> 52682 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52691 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52696 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52764 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52852 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52855 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52893 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52898 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52910 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52954 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 52979 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53009 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53010 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53034 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53044 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53055 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53085 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53115 Johan van der Auwera and Ludo Lejeune with Valentin Goussev #> 53175 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53190 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53198 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53240 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53284 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53298 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53302 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53322 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53329 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53335 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53346 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53353 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53381 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53382 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53401 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53429 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53437 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53471 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53474 Johan van der Auwera and Nina Dobrushina and Valentin Goussev #> 53527 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53529 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53545 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53571 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53572 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53593 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53596 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53599 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53605 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53628 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53630 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53664 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53667 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53693 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53704 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53706 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53732 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53791 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53800 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53816 Nina Dobrushina and Johan van der Auwera and Valentin Goussev #> 53860 Johan van der Auwera and Andreas Ammann #> 53886 Johan van der Auwera and Andreas Ammann #> 53900 Johan van der Auwera and Andreas Ammann #> 53914 Johan van der Auwera and Andreas Ammann #> 53928 Johan van der Auwera and Andreas Ammann #> 53938 Johan van der Auwera and Andreas Ammann #> 53959 Johan van der Auwera and Andreas Ammann #> 53963 Johan van der Auwera and Andreas Ammann #> 53986 Johan van der Auwera and Andreas Ammann #> 53991 Johan van der Auwera and Andreas Ammann #> 53996 Johan van der Auwera and Andreas Ammann #> 54017 Johan van der Auwera and Andreas Ammann #> 54050 Johan van der Auwera and Andreas Ammann #> 54065 Johan van der Auwera and Andreas Ammann #> 54082 Johan van der Auwera and Andreas Ammann #> 54084 Johan van der Auwera and Andreas Ammann #> 54094 Johan van der Auwera and Andreas Ammann #> 54104 Johan van der Auwera and Andreas Ammann #> 54106 Johan van der Auwera and Andreas Ammann #> 54117 Johan van der Auwera and Andreas Ammann #> 54149 Johan van der Auwera and Andreas Ammann #> 54156 Johan van der Auwera and Andreas Ammann #> 54196 Johan van der Auwera and Andreas Ammann #> 54201 Johan van der Auwera and Andreas Ammann #> 54205 Johan van der Auwera and Andreas Ammann #> 54207 Johan van der Auwera and Andreas Ammann #> 54219 Johan van der Auwera and Andreas Ammann #> 54246 Johan van der Auwera and Andreas Ammann #> 54297 Johan van der Auwera and Andreas Ammann #> 54302 Johan van der Auwera and Andreas Ammann #> 54311 Johan van der Auwera and Andreas Ammann #> 54359 Johan van der Auwera and Andreas Ammann #> 54367 Johan van der Auwera and Andreas Ammann #> 54369 Johan van der Auwera and Andreas Ammann #> 54383 Johan van der Auwera and Andreas Ammann #> 54387 Johan van der Auwera and Andreas Ammann #> 54390 Johan van der Auwera and Andreas Ammann #> 54391 Johan van der Auwera and Andreas Ammann #> 54398 Johan van der Auwera and Andreas Ammann #> 54407 Johan van der Auwera and Andreas Ammann #> 54408 Johan van der Auwera and Andreas Ammann #> 54422 Johan van der Auwera and Andreas Ammann #> 54473 Johan van der Auwera and Andreas Ammann #> 54520 Ferdinand de Haan #> 54567 Ferdinand de Haan #> 54581 Ferdinand de Haan #> 54611 Ferdinand de Haan #> 54625 Ferdinand de Haan #> 54653 Ferdinand de Haan #> 54684 Ferdinand de Haan #> 54691 Ferdinand de Haan #> 54703 Ferdinand de Haan #> 54717 Ferdinand de Haan #> 54727 Ferdinand de Haan #> 54759 Ferdinand de Haan #> 54771 Ferdinand de Haan #> 54775 Ferdinand de Haan #> 54790 Ferdinand de Haan #> 54826 Ferdinand de Haan #> 54897 Ferdinand de Haan #> 54911 Ferdinand de Haan #> 54923 Ferdinand de Haan #> 54927 Ferdinand de Haan #> 54988 Ferdinand de Haan #> 55002 Ferdinand de Haan #> 55010 Ferdinand de Haan #> 55022 Ferdinand de Haan #> 55042 Ferdinand de Haan #> 55055 Ferdinand de Haan #> 55067 Ferdinand de Haan #> 55078 Ferdinand de Haan #> 55141 Ferdinand de Haan #> 55143 Ferdinand de Haan #> 55159 Ferdinand de Haan #> 55165 Ferdinand de Haan #> 55176 Ferdinand de Haan #> 55212 Ferdinand de Haan #> 55219 Ferdinand de Haan #> 55225 Ferdinand de Haan #> 55226 Ferdinand de Haan #> 55236 Ferdinand de Haan #> 55289 Ferdinand de Haan #> 55306 Ferdinand de Haan #> 55357 Ljuba N. Veselinova #> 55372 Ljuba N. Veselinova #> 55379 Ljuba N. Veselinova #> 55381 Ljuba N. Veselinova #> 55382 Ljuba N. Veselinova #> 55389 Ljuba N. Veselinova #> 55394 Ljuba N. Veselinova #> 55397 Ljuba N. Veselinova #> 55405 Ljuba N. Veselinova #> 55419 Ljuba N. Veselinova #> 55428 Ljuba N. Veselinova #> 55431 Ljuba N. Veselinova #> 55476 Ljuba N. Veselinova #> 55494 Ljuba N. Veselinova #> 55503 Ljuba N. Veselinova #> 55509 Ljuba N. Veselinova #> 55511 Ljuba N. Veselinova #> 55517 Ljuba N. Veselinova #> 55519 Ljuba N. Veselinova #> 55544 Ljuba N. Veselinova #> 55575 Ljuba N. Veselinova #> 55580 Ljuba N. Veselinova #> 55594 Ljuba N. Veselinova #> 55603 Ljuba N. Veselinova #> 55604 Ljuba N. Veselinova #> 55610 Ljuba N. Veselinova #> 55616 Ljuba N. Veselinova #> 55621 Ljuba N. Veselinova #> 55631 Ljuba N. Veselinova #> 55641 Ljuba N. Veselinova #> 55669 Ljuba N. Veselinova #> 55673 Ljuba N. Veselinova #> 55683 Ljuba N. Veselinova #> 55687 Ljuba N. Veselinova #> 55692 Ljuba N. Veselinova #> 55695 Ljuba N. Veselinova #> 55720 Ljuba N. Veselinova #> 55725 Ljuba N. Veselinova #> 55728 Ljuba N. Veselinova #> 55736 Ljuba N. Veselinova #> 55761 Ian Maddieson #> 55771 Ian Maddieson #> 55784 Ian Maddieson #> 55816 Ian Maddieson #> 55880 Ian Maddieson #> 55940 Ian Maddieson #> 56036 Ian Maddieson #> 56068 Ian Maddieson #> 56072 Ian Maddieson #> 56115 Ian Maddieson #> 56120 Ian Maddieson #> 56153 Ian Maddieson #> 56156 Ian Maddieson #> 56161 Ian Maddieson #> 56169 Ian Maddieson #> 56185 Ian Maddieson #> 56199 Ian Maddieson #> 56231 Ian Maddieson #> 56279 Ian Maddieson #> 56301 Ian Maddieson #> 56324 Ljuba N. Veselinova #> 56342 Ljuba N. Veselinova #> 56354 Ljuba N. Veselinova #> 56363 Ljuba N. Veselinova #> 56368 Ljuba N. Veselinova #> 56370 Ljuba N. Veselinova #> 56376 Ljuba N. Veselinova #> 56382 Ljuba N. Veselinova #> 56384 Ljuba N. Veselinova #> 56386 Ljuba N. Veselinova #> 56404 Ljuba N. Veselinova #> 56427 Ljuba N. Veselinova #> 56438 Ljuba N. Veselinova #> 56446 Ljuba N. Veselinova #> 56452 Ljuba N. Veselinova #> 56457 Ljuba N. Veselinova #> 56474 Ljuba N. Veselinova #> 56495 Ljuba N. Veselinova #> 56497 Ljuba N. Veselinova #> 56498 Ljuba N. Veselinova #> 56531 Matthew S. Dryer #> 56607 Matthew S. Dryer #> 56626 Matthew S. Dryer #> 56636 Matthew S. Dryer #> 56759 Matthew S. Dryer #> 56795 Matthew S. Dryer #> 56814 Matthew S. Dryer #> 56834 Matthew S. Dryer #> 56848 Matthew S. Dryer #> 56923 Matthew S. Dryer #> 57038 Matthew S. Dryer #> 57054 Matthew S. Dryer #> 57088 Matthew S. Dryer #> 57121 Matthew S. Dryer #> 57322 Matthew S. Dryer #> 57479 Matthew S. Dryer #> 57637 Matthew S. Dryer #> 57655 Matthew S. Dryer #> 57821 Matthew S. Dryer #> 57843 Matthew S. Dryer #> 57942 Matthew S. Dryer #> 57999 Matthew S. Dryer #> 58042 Matthew S. Dryer #> 58049 Matthew S. Dryer #> 58127 Matthew S. Dryer #> 58178 Matthew S. Dryer #> 58297 Matthew S. Dryer #> 58322 Matthew S. Dryer #> 58342 Matthew S. Dryer #> 58350 Matthew S. Dryer #> 58497 Matthew S. Dryer #> 58723 Matthew S. Dryer #> 58741 Matthew S. Dryer #> 58789 Matthew S. Dryer #> 58792 Matthew S. Dryer #> 58910 Matthew S. Dryer #> 59061 Matthew S. Dryer #> 59160 Matthew S. Dryer #> 59176 Matthew S. Dryer #> 59219 Matthew S. Dryer #> 59403 Matthew S. Dryer #> 59502 Matthew S. Dryer #> 59519 Matthew S. Dryer #> 59558 Matthew S. Dryer #> 59559 Matthew S. Dryer #> 59744 Matthew S. Dryer #> 59817 Matthew S. Dryer #> 59818 Matthew S. Dryer #> 59819 Matthew S. Dryer #> 59855 Matthew S. Dryer #> 59921 Matthew S. Dryer #> 59955 Matthew S. Dryer #> 60008 Matthew S. Dryer #> 60094 Matthew S. Dryer #> 60281 Matthew S. Dryer #> 60339 Matthew S. Dryer #> 60471 Matthew S. Dryer #> 60527 Matthew S. Dryer #> 60696 Matthew S. Dryer #> 60733 Matthew S. Dryer #> 60908 Matthew S. Dryer #> 61120 Matthew S. Dryer with Orin D. Gensler #> 61144 Matthew S. Dryer with Orin D. Gensler #> 61148 Matthew S. Dryer with Orin D. Gensler #> 61188 Matthew S. Dryer with Orin D. Gensler #> 61204 Matthew S. Dryer with Orin D. Gensler #> 61213 Matthew S. Dryer with Orin D. Gensler #> 61249 Matthew S. Dryer with Orin D. Gensler #> 61250 Matthew S. Dryer with Orin D. Gensler #> 61272 Matthew S. Dryer with Orin D. Gensler #> 61324 Matthew S. Dryer with Orin D. Gensler #> 61332 Matthew S. Dryer with Orin D. Gensler #> 61360 Matthew S. Dryer with Orin D. Gensler #> 61440 Matthew S. Dryer with Orin D. Gensler #> 61590 Matthew S. Dryer #> 61595 Matthew S. Dryer #> 61643 Matthew S. Dryer #> 61659 Matthew S. Dryer #> 61693 Matthew S. Dryer #> 61733 Matthew S. Dryer #> 61759 Matthew S. Dryer #> 61820 Matthew S. Dryer #> 61829 Matthew S. Dryer #> 61838 Matthew S. Dryer #> 61946 Matthew S. Dryer #> 62022 Matthew S. Dryer #> 62186 Matthew S. Dryer #> 62272 Matthew S. Dryer #> 62355 Matthew S. Dryer #> 62422 Matthew S. Dryer #> 62614 Matthew S. Dryer #> 62626 Matthew S. Dryer #> 62634 Matthew S. Dryer #> 62637 Matthew S. Dryer #> 62697 Matthew S. Dryer #> 62724 Matthew S. Dryer #> 62725 Matthew S. Dryer #> 62808 Matthew S. Dryer #> 62826 Matthew S. Dryer #> 62871 Matthew S. Dryer #> 62955 Matthew S. Dryer #> 62960 Matthew S. Dryer #> 63034 Matthew S. Dryer #> 63085 Matthew S. Dryer #> 63107 Matthew S. Dryer #> 63188 Matthew S. Dryer #> 63297 Matthew S. Dryer #> 63476 Matthew S. Dryer #> 63681 Matthew S. Dryer #> 63703 Matthew S. Dryer #> 63738 Matthew S. Dryer #> 63802 Matthew S. Dryer #> 63873 Matthew S. Dryer #> 63934 Matthew S. Dryer #> 64012 Matthew S. Dryer #> 64052 Matthew S. Dryer #> 64075 Matthew S. Dryer #> 64118 Matthew S. Dryer #> 64127 Matthew S. Dryer #> 64238 Matthew S. Dryer #> 64321 Matthew S. Dryer #> 64476 Matthew S. Dryer #> 64508 Matthew S. Dryer #> 64525 Matthew S. Dryer #> 64526 Matthew S. Dryer #> 64549 Matthew S. Dryer #> 64855 Matthew S. Dryer #> 64969 Matthew S. Dryer #> 65045 Matthew S. Dryer #> 65134 Matthew S. Dryer #> 65135 Matthew S. Dryer #> 65296 Matthew S. Dryer #> 65342 Matthew S. Dryer #> 65351 Matthew S. Dryer #> 65357 Matthew S. Dryer #> 65401 Matthew S. Dryer #> 65422 Matthew S. Dryer #> 65501 Matthew S. Dryer #> 65502 Matthew S. Dryer #> 65506 Matthew S. Dryer #> 65577 Matthew S. Dryer #> 65586 Matthew S. Dryer #> 65607 Matthew S. Dryer #> 65672 Matthew S. Dryer #> 65714 Matthew S. Dryer #> 66013 Matthew S. Dryer #> 66094 Matthew S. Dryer #> 66142 Matthew S. Dryer #> 66321 Matthew S. Dryer #> 66346 Matthew S. Dryer #> 66477 Matthew S. Dryer #> 66545 Matthew S. Dryer #> 66552 Matthew S. Dryer #> 66687 Matthew S. Dryer #> 66700 Matthew S. Dryer #> 66740 Matthew S. Dryer #> 66789 Matthew S. Dryer #> 66795 Matthew S. Dryer #> 66796 Matthew S. Dryer #> 66815 Matthew S. Dryer #> 66962 Matthew S. Dryer #> 67041 Matthew S. Dryer #> 67081 Matthew S. Dryer #> 67186 Matthew S. Dryer #> 67201 Matthew S. Dryer #> 67238 Matthew S. Dryer #> 67250 Matthew S. Dryer #> 67387 Matthew S. Dryer #> 67538 Matthew S. Dryer #> 67608 Matthew S. Dryer #> 67645 Gregory D.S. Anderson #> 67672 Gregory D.S. Anderson #> 67694 Gregory D.S. Anderson #> 67698 Gregory D.S. Anderson #> 67734 Gregory D.S. Anderson #> 67765 Gregory D.S. Anderson #> 67849 Gregory D.S. Anderson #> 67888 Gregory D.S. Anderson #> 67896 Gregory D.S. Anderson #> 67898 Gregory D.S. Anderson #> 67908 Gregory D.S. Anderson #> 67920 Gregory D.S. Anderson #> 67935 Gregory D.S. Anderson #> 67963 Gregory D.S. Anderson #> 67981 Gregory D.S. Anderson #> 67991 Gregory D.S. Anderson #> 68075 Gregory D.S. Anderson #> 68089 Gregory D.S. Anderson #> 68093 Gregory D.S. Anderson #> 68094 Gregory D.S. Anderson #> 68135 Matthew S. Dryer #> 68200 Matthew S. Dryer #> 68234 Matthew S. Dryer #> 68287 Matthew S. Dryer #> 68413 Matthew S. Dryer #> 68482 Matthew S. Dryer #> 68516 Matthew S. Dryer #> 68715 Matthew S. Dryer #> 68742 Matthew S. Dryer #> 68800 Matthew S. Dryer #> 68828 Matthew S. Dryer #> 68834 Matthew S. Dryer #> 68853 Matthew S. Dryer #> 68855 Matthew S. Dryer #> 68859 Matthew S. Dryer #> 68869 Matthew S. Dryer #> 68891 Matthew S. Dryer #> 68908 Matthew S. Dryer #> 68912 Matthew S. Dryer #> 68938 Matthew S. Dryer #> 68940 Matthew S. Dryer #> 69054 Matthew S. Dryer #> 69100 Matthew S. Dryer #> 69113 Matthew S. Dryer #> 69122 Matthew S. Dryer #> 69314 Matthew S. Dryer #> 69335 Matthew S. Dryer #> 69359 Matthew S. Dryer #> 69452 Matthew S. Dryer #> 69469 Matthew S. Dryer #> 69682 Matthew S. Dryer #> 69730 Matthew S. Dryer #> 69736 Matthew S. Dryer #> 69745 Matthew S. Dryer #> 69758 Matthew S. Dryer #> 69771 Matthew S. Dryer #> 69777 Matthew S. Dryer #> 69779 Matthew S. Dryer #> 69784 Matthew S. Dryer #> 69790 Matthew S. Dryer #> 69794 Matthew S. Dryer #> 69808 Matthew S. Dryer #> 69809 Matthew S. Dryer #> 69827 Matthew S. Dryer #> 69852 Matthew S. Dryer #> 69880 Matthew S. Dryer #> 69926 Matthew S. Dryer #> 69942 Matthew S. Dryer #> 69980 Matthew S. Dryer #> 70051 Matthew S. Dryer #> 70072 Matthew S. Dryer #> 70158 Matthew S. Dryer #> 70360 Matthew S. Dryer #> 70377 Matthew S. Dryer #> 70402 Matthew S. Dryer #> 70469 Matthew S. Dryer #> 70498 Matthew S. Dryer #> 70527 Matthew S. Dryer #> 70553 Matthew S. Dryer #> 70675 Matthew S. Dryer #> 70760 Matthew S. Dryer #> 70807 Matthew S. Dryer #> 70837 Matthew S. Dryer #> 70919 Matthew S. Dryer #> 70929 Matthew S. Dryer #> 70939 Matthew S. Dryer #> 70941 Matthew S. Dryer #> 70972 Matthew S. Dryer #> 70996 Matthew S. Dryer #> 71024 Matthew S. Dryer #> 71270 Matthew S. Dryer #> 71276 Matthew S. Dryer #> 71356 Matthew S. Dryer #> 71395 Matthew S. Dryer #> 71462 Matthew S. Dryer #> 71479 Matthew S. Dryer #> 71494 Matthew S. Dryer #> 71515 Matthew S. Dryer #> 71529 Matthew S. Dryer #> 71580 Matthew S. Dryer #> 71923 Matthew S. Dryer #> 71963 Matthew S. Dryer #> 72086 Matthew S. Dryer #> 72088 Matthew S. Dryer #> 72093 Matthew S. Dryer #> 72099 Matthew S. Dryer #> 72103 Matthew S. Dryer #> 72117 Matthew S. Dryer #> 72134 Matthew S. Dryer #> 72135 Matthew S. Dryer #> 72137 Matthew S. Dryer #> 72176 Matthew S. Dryer #> 72192 Matthew S. Dryer #> 72371 Matthew S. Dryer #> 72375 Matthew S. Dryer #> 72401 Matthew S. Dryer #> 72404 Matthew S. Dryer #> 72477 Matthew S. Dryer #> 72577 Matthew S. Dryer #> 72594 Matthew S. Dryer #> 72612 Matthew S. Dryer #> 72650 Matthew S. Dryer #> 72738 Matthew S. Dryer #> 72800 Matthew S. Dryer #> 72846 Matthew S. Dryer #> 72848 Matthew S. Dryer #> 72883 Matthew S. Dryer #> 72928 Matthew S. Dryer #> 72941 Matthew S. Dryer #> 73006 Matthew S. Dryer #> 73149 Matthew S. Dryer #> 73155 Matthew S. Dryer #> 73162 Matthew S. Dryer #> 73224 Matthew S. Dryer #> 73307 Matthew S. Dryer #> 73318 Matthew S. Dryer #> 73393 Matthew S. Dryer #> 73642 Matthew S. Dryer #> 73773 Matthew S. Dryer #> 73914 Matthew S. Dryer #> 73992 Matthew S. Dryer #> 74001 Matthew S. Dryer #> 74052 Matthew S. Dryer #> 74061 Matthew S. Dryer #> 74083 Matthew S. Dryer #> 74160 Matthew S. Dryer #> 74189 Matthew S. Dryer #> 74269 Matthew S. Dryer #> 74577 Matthew S. Dryer #> 74619 Matthew S. Dryer #> 74683 Matthew S. Dryer #> 74700 Matthew S. Dryer #> 74717 Matthew S. Dryer #> 74733 Matthew S. Dryer #> 74745 Matthew S. Dryer #> 74757 Matthew S. Dryer #> 74767 Matthew S. Dryer #> 74771 Matthew S. Dryer #> 74815 Matthew S. Dryer #> 74830 Matthew S. Dryer #> 74932 Matthew S. Dryer #> 74954 Matthew S. Dryer #> 75007 Matthew S. Dryer #> 75017 Matthew S. Dryer #> 75179 Matthew S. Dryer #> 75182 Matthew S. Dryer #> 75254 Matthew S. Dryer #> 75256 Matthew S. Dryer #> 75267 Matthew S. Dryer #> 75279 Matthew S. Dryer #> 75359 Matthew S. Dryer #> 75382 Matthew S. Dryer #> 75441 Matthew S. Dryer #> 75810 Matthew S. Dryer #> 75884 Matthew S. Dryer #> 75946 Matthew S. Dryer #> 76104 Bernard Comrie #> 76113 Bernard Comrie #> 76116 Bernard Comrie #> 76119 Bernard Comrie #> 76137 Bernard Comrie #> 76146 Bernard Comrie #> 76154 Bernard Comrie #> 76171 Bernard Comrie #> 76177 Bernard Comrie #> 76191 Bernard Comrie #> 76200 Bernard Comrie #> 76202 Bernard Comrie #> 76211 Bernard Comrie #> 76245 Bernard Comrie #> 76250 Bernard Comrie #> 76253 Bernard Comrie #> 76257 Bernard Comrie #> 76284 Bernard Comrie #> 76287 Bernard Comrie #> 76302 Bernard Comrie #> 76325 Bernard Comrie #> 76327 Bernard Comrie #> 76340 Bernard Comrie #> 76353 Bernard Comrie #> 76368 Bernard Comrie #> 76369 Bernard Comrie #> 76398 Bernard Comrie #> 76399 Bernard Comrie #> 76407 Bernard Comrie #> 76434 Bernard Comrie #> 76438 Bernard Comrie #> 76439 Bernard Comrie #> 76447 Bernard Comrie #> 76459 Bernard Comrie #> 76464 Bernard Comrie